Animation runs jerky, want smooth playback. Help!

I am still new to Fireworks and I'm building a website using
it. I've created the animated text but would like the jerkyness to
disappear and for it to run smoothly. I've tried using from 7 -23
frames but it didn't make a difference. I played with the frame
settings and it helped a little but didn't fix the problem.
Could anyone tell me how to tweek it so that the text float
smoothly accross the screen? I've read through the Fireworks Help
many times but couldn't find a topic dealing with this issue.
Thanks for your time and response.

link?
speets wrote:
> I am still new to Fireworks and I'm building a website
using it. I've created
> the animated text but would like the jerkyness to
disappear and for it to run
> smoothly. I've tried using from 7 -23 frames but it
didn't make a difference.
> I played with the frame settings and it helped a little
but didn't fix the
> problem.
>
> Could anyone tell me how to tweek it so that the text
float smoothly accross
> the screen? I've read through the Fireworks Help many
times but couldn't find
> a topic dealing with this issue.
>
> Thanks for your time and response.
>
>

Similar Messages

  • I have to render to watch smooth playback help!

    I meet all the requirements so hardware isn't the problem. Plus I can watch it smoothly in the monitor and once rendered, what's going on!
    Is there a way I can render it all once and for all, so I don't have to render every 2 seconds?
    I've tried every single sequence preset and that didn't work either.
    And yes I have the new update, hardware or software, or whatever isn't the problem. I've been working with Premiere Pro for 6 years now.
    Please help.
    thanks, I really appreciate it, is very important

    My previous computer (Intel D875PBZ motherboard with Pentium4 3.2Ghz and ATI Radeon 9600xt and 2 Gig DDR 400 Ram and 2 hard drives and PPro3) worked OK with standard definition AVI from a tape camcorder... albeit a bit slow when it came time to have Encore transcode the AVI to create a DVD (so I would just start the process before I went to bed and it was done and the ISO was created when I got up in the morning)
    When I decided to switch to HD and CS5, I read every hardware message there was for about 6 months... even before CS5 was released... to decide what hardware to buy to build a new computer (link in my last message)
    Knowing ahead of time that a highly compressed codec was going to require a "strong" computer, I made sure to buy the best I could afford... and I have not been disappointed in the advice I've received from this forum
    To the OP - refuse to believe all you want, but you have people here who use PPro to make a living (not me, I'm just a home hobbyist) plus the people who wrote the http://ppbm5.com/ benchmark all telling you that you need a more powerful computer to EFFECTIVELY use PPro5
    Yes, you can use PPro5 with a "minimal" computer... as long as you are prepared to wait and render and wait some more
    But, if you don't want to wait and render and wait some more you need to start saving to build a better computer
    Added - as far as editing a highly compressed -vs- less compressed format...
    The DV AVI files I create for my wife's computer are about 13Gig per hour, so the files are large but the CPU requirements are much less... for her to edit, I simply bought a 1Terabyte hard drive for all of her video files (that will give her several years of video file space at her usual 5-15 minutes per subject)
    The MTS/MP4 files are actually smaller at about 12Gig per hour, for HiDef, so while the data transfer requirement is similar, those files require a MUCH faster and more powerful CPU to decode during editing
    Her Flip camera was about $140 and my Canon Vixia was about $1k but they BOTH require a strong computer to edit natively without conversion
    So, Hunt is right... people buy an inexpensive camera like the Flip and are then surprised that their old computer is not up to the job of editing such a "consumer" format

  • My free trail for $29.99 as run out. want to join but i can't find serial numbers. help!

    my free trail for $29.99 as run out. want to join but i can't find serial numbers. help!

    Cloud programs do not use serial numbers... you download & install & activate by logging in to your paid Cloud account
    http://www.adobe.com/products/creativecloud/faq.html
    http://helpx.adobe.com/creative-cloud/help/install-apps.html
    http://forums.adobe.com/community/download_install_setup/creative_cloud_faq
    what is http://helpx.adobe.com/creative-cloud/help/creative-cloud-desktop.html
    Cloud Getting Started https://helpx.adobe.com/creative-cloud/topics/getting-started.html

  • When I open about this mac - more info and I switch through the tabs (display,memory,storage,support,service) it lags (fps drops, animation looks choppy not smooth). Why does this happen? (over 300 gb free,same programs installed,free desk-downloads)

    When I open about this mac -> more info and I switch through the tabs (display,memory,storage,support,service) it lags (fps drops, animation looks choppy not smooth) even though all the mac (programs , interface ) works smooth . Why does this happen? (over 300 gb free,same programs installed,free desktop-downloads -no garbage there- everything neat and tidy.) Need some help. Only there it the animations goes like 2 fps and is not smooth. I do not understand why because the programs are the same so its the usage. Nothing is changed, yet i experience this little issue for a couple of days.

    OK, I'm confused. When I do About this Mac > More Info in OS10.9, I don't see any animation other than the window resizing. Is that the animation you are describing?
    Which if any of the following apply to your computer:
    1) Are you running any anti-virus/internet security applications?
    2) Are you running any "cleaning/tune-up/optimizations" applications?
    3) Any peer-to-peer or torrent downloading software?
    4) Any third-party disk backup software that came bundled with an external hard drive?
    5) Any online backup scheme other than iCloud (Carbonite; GoogleDrive; MS One Drive)?
    6) Did your financial institution ask you to install Trusteer EndPoint Protection (also known as Trusteer Rapport)?

  • Why is my push animation so jerky?

    I am in a 2nd level screen, and I want to animate the return to my main screen, but for some reason the animation is jerky, and doesn't go nice and smooth like card flipping animation. the code is:
    + (void) doPush: (id) arg_masterview
    direction: (NSString *) arg_direction // e.g. MOVINGLEFT,VINGRIGHT
    duration: (float) arg_duration { // e.g. TIME_TRANSITIONS
    // Set up the animation and fire it off
    CATransition *animation = [CATransition animation];
    [animation setDelegate:self];
    [animation setDuration: arg_duration];
    [animation setType: kCATransitionPush];
    [animation setSubtype: arg_direction];
    [animation setTimingFunction: [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut]];
    [[arg_masterview layer] addAnimation: animation forKey: @"KEY_doPush"];
    anyway it moves jerkly like, consistently and yet I am not doing anything in the background with other threads, etc.

    I hope you don't mind me asking you this in your thread, but I think you might know the answer. If I have a UIViewController class that is the main view of the application and it contains two views (one of type UIViewController, and another of type UITableViewController, which both are wrapped in their own classes), and if I switch to one of the views when a button clicked by doing something like this:
    if(self.View1 == nil) {
    View1ViewController *main = [[View1ViewController alloc] initWithNibName:@"View1" bundle:[NSBundle mainBundle]];
    self.View1 = main;
    [main release];
    UIView *theWindow = [self.view superview];
    [self.view removeFromSuperview];
    [theWindow addSubview:self.View1.view];
    How can I return to this main view once I'm displaying View1 or View2?

  • Premiere Pro CC crashes immediateley playing AVCHD media in browser (running OSX 10.8 please help!

    Premiere Pro CC crashes immediateley playing AVCHD media in browser (running OSX 10.8 > please help!
    I've been running CS6 perfectly on OSX 10.8.4. but decided to update to a trial CC. That's when all the fuss began.
    Trying to play AVCHD material in the browser and it good stuck. Forced quit and then opened again. Then it good stuck in the startingwindow already.
    Reinstalled CC, because it might have been the installation. But again failed.
    Then used Adobe cleaner tool. But still failed.
    Then decided to go back to cs6. But now that one gets stuck too.
    Again deinstalled everything with Cleaner tool, and installed my CC trial again. Still gets stuck.
    Tried to make a new user without any Adobe on it, but still fails.
    What can I do? Because of all this mess I'm a week late on my editing-schedule, which is very frustrating. I might have to go back to FCP, and I don't want to.
    Please help me!
    Thanks so much.

    This is the crashreport>
    Date/Time:       2013-08-26 18:02:20 +0200
    OS Version:      10.8.4 (Build 12E55)
    Architecture:    x86_64
    Report Version:  11
    Command:         Premiere Pro
    Path:            /Applications/Adobe Premiere Pro CC/Adobe Premiere Pro CC.app/Contents/MacOS/Adobe Premiere Pro CC
    Version:         7.0.0 (7.0.0)
    Parent:          launchd [134]
    PID:             1059
    Event:           hang
    Duration:        3.61s
    Steps:           37 (100ms sampling interval)
    Hardware model:  MacBookPro10,1
    Active cpus:     8
    Free pages:      1062421 pages (-48327)
    Pageins:         11264 pages
    Pageouts:        0 pages
    Process:         Adobe Premiere Pro CC [1059]
    Path:            /Applications/Adobe Premiere Pro CC/Adobe Premiere Pro CC.app/Contents/MacOS/Adobe Premiere Pro CC
    Architecture:    x86_64
    Parent:          launchd [134]
    UID:             501
    Task size:       36474 pages (+6)
    Note:            Suspended for 19 samples
      Thread 0xda7c     DispatchQueue 1          priority <multiple>
       37 start + 52 (Adobe Premiere Pro CC) [0x100001864]
        37 main + 625 (Adobe Premiere Pro CC) [0x100001ae1]
          37 FE::Run(ASL::ObjectPtr<ASL::Module, ASL::AtomicValue> const&, std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&, int) + 754 (Frontend) [0x1000c50c2]
             37 FE::AppMain(ASL::ObjectPtr<ASL::Module, ASL::AtomicValue> const&, std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&, int, void*) + 245 (Frontend) [0x1000bea25]
               37 FE::Initializer::Initializer(ASL::ObjectPtr<ASL::Module, ASL::AtomicValue> const&, std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&) + 40 (Frontend) [0x10009eff8]
                 37 FE::Initializer::PrivateImpl::PrivateImpl(ASL::ObjectPtr<ASL::Module, ASL::AtomicValue> const&, std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&) + 2728 (Frontend) [0x1000a00b8]
                   37 MZ::Initializer::Initializer(std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&, bool, bool, bool) + 84 (Mezzanine) [0x105bbad44]
                     37 MZ::(anonymous namespace)::FullInitializer::FullInitializer(std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&, bool, bool, bool) + 5020 (Mezzanine) [0x105bbca7c]
                       37 ML::PluginSupport::LoadAllPlugins(std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&, std::vector<std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> >, std::allocator<std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > > > const&, std::vector<std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> >, std::allocator<std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > > > const&) + 57 (PluginSupport) [0x1036f3599]
                         37 ML::PluginSupport::LoadAllPlugins(std::vector<std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> >, std::allocator<std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > > >&, std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&, std::vector<std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> >, std::allocator<std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > > > const&, std::vector<std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> >, std::allocator<std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > > > const&) + 236 (PluginSupport) [0x1036f375c]
                           37 ML::LoadPlugins(std::vector<std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> >, std::allocator<std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > > >&, std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&, std::vector<std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> >, std::allocator<std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > > > const&, std::vector<std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> >, std::allocator<std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > > > const&) + 6216 (PluginSupport) [0x1036d7d58]
                             37 ML::(anonymous namespace)::LoadPluginList(ML::PluginNameList const&, std::vector<std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> >, std::allocator<std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > > >&) + 711 (PluginSupport) [0x1036d8d57]
                               37 ML::(anonymous namespace)::AddPlugin(ML::PluginEntry const&, bool&) + 11061 (PluginSupport) [0x1036dcf95]
                                37 ML::ExporterModuleFactory::CreateUnknown(ASL::InterfaceRef<ML::IPlugin, ML::IPlugin>, int, int&) + 480 (ExporterHost) [0x1051487e0]
                                   37 ML::ExporterPluginModule::StartupFromDisk(unsigned int, bool) + 400 (ExporterHost) [0x105183090]
                                    37 ML::ExporterPluginModule::CallExportModule(int, void*, void*) + 583 (ExporterHost) [0x105183bd7]
                                       37 xSDKExport + 70 (ExporterQuickTimeHost) [0x11d5ee226]
                                        37 PrExporterModule<ExporterQuickTimeHost>::ExportEntry(int, exportStdParms*, void*, void*) + 94 (ExporterQuickTimeHost) [0x11d5ee31e]
                                           37 ExporterQuickTimeHost::OnStartup(exportStdParms*, exExporterInfoRec*) + 28 (ExporterQuickTimeHost) [0x11d5e9adc]
                                            37 QT32Client::Create() + 279 (QT32Client) [0x10edb2f07]
                                               37 QT32Client::QT32Client::Initialize(ASL::InterfaceRef<QT32Client::QT32ServerManager, QT32Client::IQT32ServerManager> const&, bool) + 37 (QT32Client) [0x10edb2fe5]
                                                 19 dyld::notifyBatchPartial(dyld_image_states, bool, char const* (*)(dyld_image_states, unsigned int, dyld_image_info const*)) + 721 (dyld) [0x7fff6bdfa96e]
                                                   19 _sigtramp + 26 (libsystem_c.dylib) [0x7fff8ffde94a]
                                                    19 FE::Application::AttemptPanicProjectSave() + 13 (Frontend) [0x10004b73d]
                                                      *19 return_from_trap + 156 (mach_kernel) [0xffffff80002ce14c]
                                                       *19 i386_astintr + 35 (mach_kernel) [0xffffff80002b8c63]
                                                          *19 ast_taken + 209 (mach_kernel) [0xffffff800021b6e1]
                                                           *19 bsd_ast + 839 (mach_kernel) [0xffffff8000568d97]
                                                              *19 postsig_locked + 663 (mach_kernel) [0xffffff8000568907]
                                                               *19 exit1_internal + 559 (mach_kernel) [0xffffff80005566cf]
                                                                  *19 proc_prepareexit + 133 (mach_kernel) [0xffffff8000556795]
                                                                   *19 task_exception_notify + 63 (mach_kernel) [0xffffff800021e72f]
                                                                      *19 exception_triage + 123 (mach_kernel) [0xffffff800021e62b]
                                                                       *19 exception_deliver + 740 (mach_kernel) [0xffffff800021e514]
                                                                          *19 mach_exception_raise_state_identity + 294 (mach_kernel) [0xffffff800024de56]
                                                                           *19 mach_msg_rpc_from_kernel_body + 278 (mach_kernel) [0xffffff8000220f96]
                                                                              *19 ipc_mqueue_receive + 66 (mach_kernel) [0xffffff8000213112]
                                                                               *19 thread_block_reason + 300 (mach_kernel) [0xffffff800022db8c]
                                                                                  *19 ??? (mach_kernel + 190657) [0xffffff800022e8c1]
                                                                                   *19 machine_switch_context + 366 (mach_kernel) [0xffffff80002b47fe]
                                                                                      *19 <suspended>
                                                18 __psynch_mutexwait + 10 (libsystem_kernel.dylib) [0x7fff85ac7122]
                                                  *18 psynch_mtxcontinue + 0 (mach_kernel) [0xffffff80005b4550]
      Thread 0xda8e     DispatchQueue 2          priority <multiple>
      37 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff86be99ee]
         37 kevent + 10 (libsystem_kernel.dylib) [0x7fff85ac7d16]
         *19 special_handler_continue + 0 (mach_kernel) [0xffffff800023cb00]
           *19 <suspended>
         *18 ??? (mach_kernel + 3471808) [0xffffff800054f9c0]
      Thread 0xdab9     DispatchQueue 6          priority <multiple>
      37 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8ffdd1d1]
        37 _pthread_wqthread + 404 (libsystem_c.dylib) [0x7fff8fff2d0b]
          37 _dispatch_worker_thread2 + 304 (libdispatch.dylib) [0x7fff86be81fa]
             37 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff86be70b6]
              37 dvacore::threads::WrapExecuteTopLevelFunction(void*) + 68 (dvacore) [0x1003383d4]
                37 dvacore::threads::(anonymous namespace)::SubExecutorImpl::OnThreadExecute(boost::shared_ptr<dvacore::threads::(anonymo us namespace)::SubExecutorImpl> const&) + 232 (dvacore) [0x1003250a8]
                   37 dvacore::threads::(anonymous namespace)::SubExecutorImpl::CallFunctionWithExceptionHandler(boost::function<void ()> const&) + 66 (dvacore) [0x100326642]
                    37 MZ::(anonymous namespace)::ExternalProcessAsyncInitializer::LaunchQT32Server() + 79 (Mezzanine) [0x105bc06bf]
                       37 QT32Client::Create() + 279 (QT32Client) [0x10edb2f07]
                        37 QT32Client::QT32Client::Initialize(ASL::InterfaceRef<QT32Client::QT32ServerManager, QT32Client::IQT32ServerManager> const&, bool) + 292 (QT32Client) [0x10edb30e4]
                           37 dvacore::threads::Gate::PassThrough(int) const + 12 (dvacore) [0x10032ae0c]
                            37 dvacore::threads::WaitableGateBase::PassThrough(int) const + 297 (dvacore) [0x10032b149]
                               37 void boost::condition_variable_any::wait<boost::unique_lock<boost::mutex> >(boost::unique_lock<boost::mutex>&) + 146 (dvacore) [0x1002d7862]
                                37 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff85ac70fa]
                                  *37 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5bb0]
                                   *19 <suspended>
      Thread 0xda8f     priority <multiple>
      37 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8ffdd1d1]
         37 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff8fff2d13]
          37 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff85ac76d6]
           *36 ??? (mach_kernel + 3910896) [0xffffff80005bacf0]
             *19 <suspended>
            *1  hndl_unix_scall64 + 19 (mach_kernel) [0xffffff80002ce9c3]
             *1  unix_syscall64 + 522 (mach_kernel) [0xffffff80005e16aa]
               *1  workq_kernreturn + 478 (mach_kernel) [0xffffff80005ba62e]
                  *1  ??? (mach_kernel + 3907044) [0xffffff80005b9de4]
                    *1  thread_block_reason + 275 (mach_kernel) [0xffffff800022db73]
                     *1  ??? (mach_kernel + 187905) [0xffffff800022de01]
                       *1  processor_idle + 237 (mach_kernel) [0xffffff800022f34d]
                          *1  machine_idle + 443 (mach_kernel) [0xffffff80002b9c9b]
      Thread 0xda90     priority <multiple>
      37 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8ffdd1d1]
        37 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff8fff2d13]
           37 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff85ac76d6]
           *37 ??? (mach_kernel + 3910896) [0xffffff80005bacf0]
             *19 <suspended>
      Thread 0xdabf     priority <multiple>
       37 thread_start + 13 (libsystem_c.dylib) [0x7fff8ffdd1e1]
        37 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8fff07a2]
          37 thread_proxy + 164 (boost_threads) [0x1002496d4]
            37 SkyConnectionEnv::StaticThreadFunc(SkyConnectionEnv*) + 9 (dvatransport) [0x100c71879]
               37 SkyConnectionEnv::MainLoop() + 162 (dvatransport) [0x100c71c92]
                37 boost::asio::detail::task_io_service::run(boost::system::error_code&) + 285 (dvatransport) [0x100c80ccd]
                  37 boost::asio::detail::task_io_service::do_run_one(boost::asio::detail::scoped_lock<boost:: asio::detail::posix_mutex>&, boost::asio::detail::task_io_service::thread_info&, boost::asio::detail::op_queue<boost::asio::detail::task_io_service_operation>&, boost::system::error_code const&) + 340 (dvatransport) [0x100c81214]
                     37 kevent + 10 (libsystem_kernel.dylib) [0x7fff85ac7d16]
                     *37 ??? (mach_kernel + 3471808) [0xffffff800054f9c0]
                       *19 <suspended>
      Thread 0xdac0     priority <multiple>
       37 thread_start + 13 (libsystem_c.dylib) [0x7fff8ffdd1e1]
        37 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8fff07a2]
          37 boost_asio_detail_posix_thread_function + 19 (dvatransport) [0x100c81b63]
            37 boost::asio::detail::posix_thread::func<boost::asio::detail::resolver_service_base::work_ io_service_runner>::run() + 42 (dvatransport) [0x100c80b9a]
               37 boost::asio::detail::task_io_service::run(boost::system::error_code&) + 285 (dvatransport) [0x100c80ccd]
                37 boost::asio::detail::task_io_service::do_run_one(boost::asio::detail::scoped_lock<boost:: asio::detail::posix_mutex>&, boost::asio::detail::task_io_service::thread_info&, boost::asio::detail::op_queue<boost::asio::detail::task_io_service_operation>&, boost::system::error_code const&) + 284 (dvatransport) [0x100c811dc]
                   37 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff85ac70fa]
                   *37 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5bb0]
                     *19 <suspended>
      Thread 0xdac3     priority <multiple>
       37 thread_start + 13 (libsystem_c.dylib) [0x7fff8ffdd1e1]
        37 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8fff07a2]
          37 thread_proxy + 164 (boost_threads) [0x1002496d4]
            37 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 265 (dvacore) [0x100332329]
               37 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 172 (dvacore) [0x100334cbc]
                 37 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()> > >&, int) + 171 (dvacore) [0x100336bcb]
                  37 MPWaitOnQueue + 252 (CarbonCore) [0x7fff90843a98]
                     37 TSWaitOnConditionTimedRelative + 132 (CarbonCore) [0x7fff908e13e7]
                      37 TSWaitOnCondition + 108 (CarbonCore) [0x7fff908e1210]
                        37 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff85ac70fa]
                          *37 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5bb0]
                           *19 <suspended>
      Thread 0xdac6     priority <multiple>
      37 thread_start + 13 (libsystem_c.dylib) [0x7fff8ffdd1e1]
         37 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8fff07a2]
          37 thread_proxy + 164 (boost_threads) [0x1002496d4]
            37 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 265 (dvacore) [0x100332329]
               37 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 172 (dvacore) [0x100334cbc]
                 37 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()> > >&, int) + 171 (dvacore) [0x100336bcb]
                  37 MPWaitOnQueue + 252 (CarbonCore) [0x7fff90843a98]
                     37 TSWaitOnConditionTimedRelative + 132 (CarbonCore) [0x7fff908e13e7]
                      37 TSWaitOnCondition + 108 (CarbonCore) [0x7fff908e1210]
                        37 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff85ac70fa]
                          *37 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5bb0]
                           *19 <suspended>
      Thread 0xdac7     priority <multiple>
      37 thread_start + 13 (libsystem_c.dylib) [0x7fff8ffdd1e1]
         37 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8fff07a2]
          37 thread_proxy + 164 (boost_threads) [0x1002496d4]
            37 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 265 (dvacore) [0x100332329]
               37 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 172 (dvacore) [0x100334cbc]
                 37 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()> > >&, int) + 171 (dvacore) [0x100336bcb]
                  37 MPWaitOnQueue + 252 (CarbonCore) [0x7fff90843a98]
                     37 TSWaitOnConditionTimedRelative + 132 (CarbonCore) [0x7fff908e13e7]
                      37 TSWaitOnCondition + 108 (CarbonCore) [0x7fff908e1210]
                        37 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff85ac70fa]
                          *37 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5bb0]
                           *19 <suspended>
      Thread 0xdac9     priority <multiple>
      37 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8ffdd1d1]
         37 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff8fff2d13]
          37 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff85ac76d6]
           *37 ??? (mach_kernel + 3910896) [0xffffff80005bacf0]
             *19 <suspended>
      Thread 0xdaca     priority <multiple>
      37 thread_start + 13 (libsystem_c.dylib) [0x7fff8ffdd1e1]
        37 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8fff07a2]
          37 ??? (libclh.dylib + 6379289) [0x7fff872db719]
             37 ??? (libclh.dylib + 831956) [0x7fff86d911d4]
              37 ??? (libclh.dylib + 6375623) [0x7fff872da8c7]
                37 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff85ac5686]
                 *19 special_handler_continue + 0 (mach_kernel) [0xffffff800023cb00]
                    *19 <suspended>
                 *17 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
                 *1  hndl_mach_scall64 + 19 (mach_kernel) [0xffffff80002ce9e3]
                   *1  ??? (mach_kernel + 681270) [0xffffff80002a6536]
                      *1  mach_msg_overwrite_trap + 427 (mach_kernel) [0xffffff800021970b]
                       *1  ipc_mqueue_receive + 59 (mach_kernel) [0xffffff800021310b]
                         *1  thread_block_reason + 275 (mach_kernel) [0xffffff800022db73]
                            *1  ??? (mach_kernel + 187905) [0xffffff800022de01]
                             *1  processor_idle + 237 (mach_kernel) [0xffffff800022f34d]
                               *1  machine_idle + 443 (mach_kernel) [0xffffff80002b9c9b]
      Thread 0xdacb     priority <multiple>
      37 thread_start + 13 (libsystem_c.dylib) [0x7fff8ffdd1e1]
        37 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8fff07a2]
          37 thread_proxy + 164 (boost_threads) [0x1002496d4]
             37 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 265 (dvacore) [0x100332329]
               37 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 172 (dvacore) [0x100334cbc]
                 37 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()> > >&, int) + 171 (dvacore) [0x100336bcb]
                  37 MPWaitOnQueue + 252 (CarbonCore) [0x7fff90843a98]
                     37 TSWaitOnConditionTimedRelative + 132 (CarbonCore) [0x7fff908e13e7]
                      37 TSWaitOnCondition + 108 (CarbonCore) [0x7fff908e1210]
                        37 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff85ac70fa]
                          *37 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5bb0]
                           *19 <suspended>
      Thread 0xdacc     priority <multiple>
      37 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8ffdd1d1]
         37 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff8fff2d13]
          37 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff85ac76d6]
           *37 ??? (mach_kernel + 3910896) [0xffffff80005bacf0]
             *19 <suspended>
      Thread 0xdae1     priority <multiple>
      37 thread_start + 13 (libsystem_c.dylib) [0x7fff8ffdd1e1]
        37 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8fff07a2]
          37 AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*) + 194 (AVCVideoServices) [0x11d080a62]
             37 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8bd550e2]
              37 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8bd55916]
                37 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8bd50233]
                   37 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff85ac5686]
                   *37 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
                     *19 <suspended>
      Thread 0xdae2     priority <multiple>
       37 thread_start + 13 (libsystem_c.dylib) [0x7fff8ffdd1e1]
        37 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8fff07a2]
          37 AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*) + 194 (AVCVideoServices) [0x11d080a62]
             37 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8bd550e2]
              37 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8bd55916]
                37 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8bd50233]
                   37 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff85ac5686]
                   *36 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
                     *19 <suspended>
                   *1  hndl_mach_scall64 + 19 (mach_kernel) [0xffffff80002ce9e3]
                      *1  ??? (mach_kernel + 681270) [0xffffff80002a6536]
                       *1  mach_msg_overwrite_trap + 427 (mach_kernel) [0xffffff800021970b]
                         *1  ipc_mqueue_receive + 59 (mach_kernel) [0xffffff800021310b]
                            *1  thread_block_reason + 275 (mach_kernel) [0xffffff800022db73]
                             *1  ??? (mach_kernel + 187905) [0xffffff800022de01]
                               *1  processor_idle + 237 (mach_kernel) [0xffffff800022f34d]
                                  *1  machine_idle + 443 (mach_kernel) [0xffffff80002b9c9b]
      Binary Images:
             0x100000000 -        0x100002ff7  com.adobe.AdobePremierePro 7.0.0 (7.0.0) <C96DB6B7-BDA4-35C8-96E0-17F88164D1F0> /Applications/Adobe Premiere Pro CC/Adobe Premiere Pro CC.app/Contents/MacOS/Adobe Premiere Pro CC
              0x100012000 -        0x100121fff  com.adobe.Frontend.framework 7.0.0 (7.0.0.342) <2DB5F3E8-CEDA-3412-A437-5609D628BEA7> /Applications/Adobe Premiere Pro CC/Adobe Premiere Pro CC.app/Contents/Frameworks/Frontend.framework/Versions/A/Frontend
              0x100248000 -        0x100256fff  com.adobe.boost_threads.framework 7.0.0 (7.0.0.342) <A4BFC900-7853-3A79-97AD-4E1BD5EC9DD0> /Applications/Adobe Premiere Pro CC/Adobe Premiere Pro CC.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
              0x10027a000 -        0x1004c4fff  com.adobe.dvacore.framework 7.0.0 (7.0.0.342) <99A9FB2A-AF30-30B8-87D8-20460A7493A7> /Applications/Adobe Premiere Pro CC/Adobe Premiere Pro CC.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
              0x100c5b000 -        0x100cbcff7  com.adobe.dvatransport.framework 7.0.0 (7.0.0.342) <D651C0AE-02CA-35DE-91BC-665CA98562EB> /Applications/Adobe Premiere Pro CC/Adobe Premiere Pro CC.app/Contents/Frameworks/dvatransport.framework/Versions/A/dvatransport
              0x1036d0000 -        0x103709ff7  com.adobe.PluginSupport.framework 7.0.0 (7.0.0.342) <FD72CED8-C295-3790-8BF6-FA03B4F5C17A> /Applications/Adobe Premiere Pro CC/Adobe Premiere Pro CC.app/Contents/Frameworks/PluginSupport.framework/Versions/A/PluginSupport
              0x1050f7000 -        0x1051ccff7  com.adobe.ExporterHost.framework 7.0.0 (7.0.0.342) <A97258D1-5CF8-3F5B-9653-A081A9BC5137> /Applications/Adobe Premiere Pro CC/Adobe Premiere Pro CC.app/Contents/Frameworks/ExporterHost.framework/Versions/A/ExporterHost
              0x105a61000 -        0x10611bff7  com.adobe.Mezzanine.framework 7.0.0 (7.0.0.342) <021F6FA2-8856-3C76-9D19-B7EC802EBA42> /Applications/Adobe Premiere Pro CC/Adobe Premiere Pro CC.app/Contents/Frameworks/Mezzanine.framework/Versions/A/Mezzanine
              0x10edb1000 -        0x10ee19ff7  com.adobe.QT32Client.framework 7.0.0 (7.0.0.342) <BA702F9D-6496-3A92-9AFC-8159074A7764> /Applications/Adobe Premiere Pro CC/Adobe Premiere Pro CC.app/Contents/Frameworks/QT32Client.framework/Versions/A/QT32Client
              0x11d070000 -        0x11d0a7fff  com.apple.AVCVideoServices 1.0 (42) <54AD1D6A-6CA6-3125-B1D2-2A6176427A6C> /Applications/Adobe Premiere Pro CC/Adobe Premiere Pro CC.app/Contents/Frameworks/AVCVideoServices.framework/Versions/A/AVCVideoServices
              0x11d5e8000 -        0x11d615fff  com.adobe.ExporterQuickTimeHost.framework 7.0.0 (7.0.0.342) <DD61DE98-FAC3-35C8-8146-536B20F14A06> /Applications/Adobe Premiere Pro CC/Adobe Premiere Pro CC.app/Contents/Plug-Ins/Common/ExporterQuickTimeHost.bundle/Contents/MacOS/ExporterQuick TimeHost
           0x7fff6bdf6000 -     0x7fff6be2a93f  dyld <36CAA36E-72BC-3E48-96D9-B96A2DF77730> /usr/lib/dyld
          0x7fff85ab5000 -     0x7fff85ad0ff7  libsystem_kernel.dylib <A9F97289-7985-31D6-AF89-151830684461> /usr/lib/system/libsystem_kernel.dylib
           0x7fff86be5000 -     0x7fff86bfaff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff86cc6000 -     0x7fff874abff7  libclh.dylib <D29F081B-2AFD-3190-87CF-ED244FA03DB0> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
           0x7fff8bd20000 -     0x7fff8bf0aff7  com.apple.CoreFoundation 6.8 (744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8ffdc000 -     0x7fff900a8ff7  libsystem_c.dylib <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
           0x7fff90834000 -     0x7fff90b4bff7  com.apple.CoreServices.CarbonCore 1037.6 (1037.6) <1E567A52-677F-3168-979F-5FBB0818D52B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
      *0xffffff8000200000 - 0xffffff8000736dbc  mach_kernel <896CB1E3-AB79-3DF1-B595-549DFFDF3D36> /mach_kernel
    Process:         AAM Updates Notifier [200]
    Path:            /Applications/Utilities/Adobe Application Manager/*/AAM Updates Notifier.app/Contents/MacOS/AAM Updates Notifier
    Architecture:    i386
    Parent:          launchd [134]
    UID:             501
    Task size:       604 pages
    Process:         accountsd [180]
    Path:            /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
    Architecture:    x86_64
    Parent:          launchd [134]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       69 pages
      Thread 0x590      DispatchQueue 1          priority 31       
       37 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff85ac5686]
       *37 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x5ba      DispatchQueue 2          priority 33       
      37 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff86be99ee]
         37 kevent + 10 (libsystem_kernel.dylib) [0x7fff85ac7d16]
         *37 ??? (mach_kernel + 3471808) [0xffffff800054f9c0]
      Binary Images:
             0x107bac000 -        0x107bacfff  accountsd <0982A50A-159D-3E63-A2EC-6447F3706436> /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
           0x7fff85ab5000 -     0x7fff85ad0ff7  libsystem_kernel.dylib <A9F97289-7985-31D6-AF89-151830684461> /usr/lib/system/libsystem_kernel.dylib
          0x7fff86be5000 -     0x7fff86bfaff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
      *0xffffff8000200000 - 0xffffff8000736dbc  mach_kernel <896CB1E3-AB79-3DF1-B595-549DFFDF3D36> /mach_kernel
    Process:         Adobe QT32 Server [987]
    Path:            /Applications/Adobe Premiere Pro CC/Adobe Premiere Pro CC.app/Contents/Adobe QT32 Server.app/Contents/MacOS/Adobe QT32 Server
    Architecture:    i386
    Parent:          launchd [134]
    UID:             501
    Task size:       24574 pages (-2)
    Process:         AdobeCrashDaemon [1061]
    Path:            /Applications/Adobe Premiere Pro CC/Adobe Premiere Pro CC.app/Contents/Frameworks/AdobeCrashReporter.framework/Required/AdobeCrashDaemon.app/Con tents/MacOS/AdobeCrashDaemon
    Architecture:    x86_64
    Parent:          Adobe Premiere Pro CC [1059]
    UID:             501
    Task size:       1046 pages
    CPU Time:        0.002s
    Process:         AirPort Base Station Agent [192]
    Path:            /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
    Architecture:    x86_64
    Parent:          launchd [134]
    UID:             501
    Sudden Term:     Clean
    Task size:       1 pages
      Thread 0x61f      priority 29       
      37 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff85ac5686]
        *37 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x628      priority 33       
      37 kevent + 10 (libsystem_kernel.dylib) [0x7fff85ac7d16]
       *37 ??? (mach_kernel + 3471808) [0xffffff800054f9c0]
      Thread 0x631      priority 31       
      37 __select + 10 (libsystem_kernel.dylib) [0x7fff85ac7322]
       *37 ??? (mach_kernel + 3580832) [0xffffff800056a3a0]
      Binary Images:
             0x109607000 -        0x10961dff7  com.apple.AirPortBaseStationAgent 1.5.5 (155.7) <71B3B12F-7934-3F6C-B6F1-165DB5DEE6B2> /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
           0x7fff85ab5000 -     0x7fff85ad0ff7  libsystem_kernel.dylib <A9F97289-7985-31D6-AF89-151830684461> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000736dbc  mach_kernel <896CB1E3-AB79-3DF1-B595-549DFFDF3D36> /mach_kernel
    Process:         aosnotifyd [82]
    Path:            /usr/sbin/aosnotifyd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Task size:       510 pages
      Thread 0x30d      DispatchQueue 1          priority 31       
       37 start + 1 (libdyld.dylib) [0x7fff84c797e1]
        37 ??? (aosnotifyd + 37439) [0x10dec823f]
          37 ??? (aosnotifyd + 36529) [0x10dec7eb1]
            37 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268 (Foundation) [0x7fff8fb0d7ee]
               37 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8bd550e2]
                37 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8bd55916]
                  37 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8bd50233]
                     37 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff85ac5686]
                     *37 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x331      DispatchQueue 2          priority 33       
       37 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff86be99ee]
        37 kevent + 10 (libsystem_kernel.dylib) [0x7fff85ac7d16]
         *37 ??? (mach_kernel + 3471808) [0xffffff800054f9c0]
      Thread 0x368      priority 63       
       37 thread_start + 13 (libsystem_c.dylib) [0x7fff8ffdd1e1]
        37 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8fff07a2]
          37 __NSThread__main__ + 1345 (Foundation) [0x7fff8fb08562]
            37 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356 (Foundation) [0x7fff8faaa546]
               37 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8bd550e2]
                37 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8bd55916]
                  37 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8bd50233]
                     37 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff85ac5686]
                     *37 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x736      priority 31       
       37 __select + 10 (libsystem_kernel.dylib) [0x7fff85ac7322]
       *37 ??? (mach_kernel + 3580832) [0xffffff800056a3a0]
      Binary Images:
             0x10debf000 -        0x10df07fff  aosnotifyd <A3543B5E-3291-3025-A09C-1B7087B1A9EA> /usr/sbin/aosnotifyd
           0x7fff84c77000 -     0x7fff84c7aff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
          0x7fff85ab5000 -     0x7fff85ad0ff7  libsystem_kernel.dylib <A9F97289-7985-31D6-AF89-151830684461> /usr/lib/system/libsystem_kernel.dylib
           0x7fff86be5000 -     0x7fff86bfaff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff8bd20000 -     0x7fff8bf0aff7  com.apple.CoreFoundation 6.8 (744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x7fff8fa72000 -     0x7fff8fdd1fff  com.apple.Foundation 6.8 (945.18) <1D7E58E6-FA3A-3CE8-AC85-B9D06B8C0AA0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8ffdc000 -     0x7fff900a8ff7  libsystem_c.dylib <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
      *0xffffff8000200000 - 0xffffff8000736dbc  mach_kernel <896CB1E3-AB79-3DF1-B595-549DFFDF3D36> /mach_kernel
    Process:         appleeventsd [65]
    Path:            /System/Library/CoreServices/appleeventsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             71
    Sudden Term:     Dirty (allows idle exit)
    Task size:       276 pages (-8)
      Thread 0x2c4      DispatchQueue 2          priority 33       
       37 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff86be99ee]
        37 kevent + 10 (libsystem_kernel.dylib) [0x7fff85ac7d16]
         *37 ??? (mach_kernel + 3471808) [0xffffff800054f9c0]
      Thread 0x2c5      priority 31       
       37 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x7fff85ac7566]
       *37 ??? (mach_kernel + 3580832) [0xffffff800056a3a0]
      Thread 0xdc90     priority 31       
      21 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8ffdd1d1]
         21 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff8fff2d13]
          21 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff85ac76d6]
           *21 ??? (mach_kernel + 3910896) [0xffffff80005bacf0]
      Thread 0xdc91     priority 31       
       21 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8ffdd1d1]
        21 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff8fff2d13]
          21 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff85ac76d6]
           *21 ??? (mach_kernel + 3910896) [0xffffff80005bacf0]
      Binary Images:
             0x106971000 -        0x106971fff  appleeventsd <33899092-67A8-3A39-A63C-27BAC6C22174> /System/Library/CoreServices/appleeventsd
          0x7fff85ab5000 -     0x7fff85ad0ff7  libsystem_kernel.dylib <A9F97289-7985-31D6-AF89-151830684461> /usr/lib/system/libsystem_kernel.dylib
           0x7fff86be5000 -     0x7fff86bfaff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff8ffdc000 -     0x7fff900a8ff7  libsystem_c.dylib <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
      *0xffffff8000200000 - 0xffffff8000736dbc  mach_kernel <896CB1E3-AB79-3DF1-B595-549DFFDF3D36> /mach_kernel
    Process:         AppleIDAuthAgent [168]
    Path:            /System/Library/CoreServices/AppleIDAuthAgent
    Architecture:    x86_64
    Parent:          launchd [134]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       157 pages
      Thread 0x542      DispatchQueue 2          priority 33       
       37 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff86be99ee]
        37 kevent + 10 (libsystem_kernel.dylib) [0x7fff85ac7d16]
         *37 ??? (mach_kernel + 3471808) [0xffffff800054f9c0]
      Thread 0x544      priority 31       
       37 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x7fff85ac7566]
       *37 ??? (mach_kernel + 3580832) [0xffffff800056a3a0]
      Thread 0x7e9      priority 31       
      37 semaphore_wait_trap + 10 (libsystem_kernel.dylib) [0x7fff85ac56c2]
        *37 semaphore_wait_continue + 0 (mach_kernel) [0xffffff8000234040]
      Binary Images:
             0x10e673000 -        0x10e6a3fff  AppleIDAuthAgent <8C9DEBCF-35BE-37C5-869E-9B8D2931EDA6> /System/Library/CoreServices/AppleIDAuthAgent
           0x7fff85ab5000 -     0x7fff85ad0ff7  libsystem_kernel.dylib <A9F97289-7985-31D6-AF89-151830684461> /usr/lib/system/libsystem_kernel.dylib
          0x7fff86be5000 -     0x7fff86bfaff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
      *0xffffff8000200000 - 0xffffff8000736dbc  mach_kernel <896CB1E3-AB79-3DF1-B595-549DFFDF3D36> /mach_kernel
    Process:         AppleSpell [212]
    Path:            /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
    Architecture:    x86_64
    Parent:          launchd [134]
    UID:             501
    Sudden Term:     Clean
    Task size:       755 pages
      Thread 0x75b      DispatchQueue 1          priority 46       
      37 start + 1 (libdyld.dylib) [0x7fff84c797e1]
         37 ??? (AppleSpell + 7271) [0x100cebc67]
          37 -[NSSpellServer run] + 73 (Foundation) [0x7fff8fbf4ee6]
            37 CFRunLoopRun + 97 (CoreFoundation) [0x7fff8bd63dd1]
              37 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8bd550e2]
                 37 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8bd55916]
                  37 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8bd50233]
                    37 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff85ac5686]
                      *37 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x75f      DispatchQueue 2          priority 48       
      37 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff86be99ee]
         37 kevent + 10 (libsystem_kernel.dylib) [0x7fff85ac7d16]
         *37 ??? (mach_kernel + 3471808) [0xffffff800054f9c0]
      Binary Images:
             0x100cea000 -        0x100d9fff7  com.apple.AppleSpell 1.9 (173.1) <9390CDCC-0038-3174-864D-05CD9454CA7F> /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
           0x7fff84c77000 -     0x7fff84c7aff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
          0x7fff85ab5000 -     0x7fff85ad0ff7  libsystem_kernel.dylib <A9F97289-7985-31D6-AF89-151830684461> /usr/lib/system/libsystem_kernel.dylib
           0x7fff86be5000 -     0x7fff86bfaff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff8bd20000 -     0x7fff8bf0aff7  com.apple.CoreFoundation 6.8 (744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x7fff8fa72000 -     0x7fff8fdd1fff  com.apple.Foundation 6.8 (945.18) <1D7E58E6-FA3A-3CE8-AC85-B9D06B8C0AA0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    *0xffffff8000200000 - 0xffffff8000736dbc  mach_kernel <896CB1E3-AB79-3DF1-B595-549DFFDF3D36> /mach_kernel
    Process:         apsd [71]
    Path:            /System/Library/PrivateFrameworks/ApplePushService.framework/apsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Task size:       1001 pages
      Thread 0x25a      DispatchQueue 1          priority 31       
      37 start + 1 (libdyld.dylib) [0x7fff84c797e1]
        37 ??? (apsd + 21686) [0x10a3284b6]
          37 -[NSRunLoop(NSRunLoop) run] + 74 (Foundation) [0x7fff8faa61aa]
             37 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268 (Foundation) [0x7fff8fb0d7ee]
              37 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8bd550e2]
                37 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8bd55916]
                   37 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8bd50233]
                    37 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff85ac5686]
                     *37 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x2cb      DispatchQueue 2          priority 33       
      37 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff86be99ee]
        37 kevent + 10 (libsystem_kernel.dylib) [0x7fff85ac7d16]
         *37 ??? (mach_kernel + 3471808) [0xffffff800054f9c0]
      Thread 0x34e      priority 63       
      37 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff85ac5686]
       *37 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x447      priority 31       
       37 thread_start + 13 (libsystem_c.dylib) [0x7fff8ffdd1e1]
        37 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8fff07a2]
          37 __select + 10 (libsystem_kernel.dylib) [0x7fff85ac7322]
           *37 ??? (mach_kernel + 3580832) [0xffffff800056a3a0]
      Binary Images:
             0x10a323000 -        0x10a3a1ff7  apsd <79FEFFFF-D855-3F06-BF98-C24F741AB4E7> /System/Library/PrivateFrameworks/ApplePushService.framework/apsd
          0x7fff84c77000 -     0x7fff84c7aff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
           0x7fff85ab5000 -     0x7fff85ad0ff7  libsystem_kernel.dylib <A9F97289-7985-31D6-AF89-151830684461> /usr/lib/system/libsystem_kernel.dylib
          0x7fff86be5000 -     0x7fff86bfaff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
           0x7fff8bd20000 -     0x7fff8bf0aff7  com.apple.CoreFoundation 6.8 (744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8fa72000 -     0x7fff8fdd1fff  com.apple.Foundation 6.8 (945.18) <1D7E58E6-FA3A-3CE8-AC85-B9D06B8C0AA0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
           0x7fff8ffdc000 -     0x7fff900a8ff7  libsystem_c.dylib <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
    *0xffffff8000200000 - 0xffffff8000736dbc  mach_kernel <896CB1E3-AB79-3DF1-B595-549DFFDF3D36> /mach_kernel
    Process:         autofsd [70]
    Path:            /usr/libexec/autofsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Sudden Term:     Clean
    Task size:       69 pages
       Thread 0x284      DispatchQueue 2          priority 33       
      37 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff86be99ee]
        37 kevent + 10 (libsystem_kernel.dylib) [0x7fff85ac7d16]
         *37 ??? (mach_kernel + 3471808) [0xffffff800054f9c0]
      Thread 0x285      priority 31       
      37 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x7fff85ac7566]
       *37 ??? (mach_kernel + 3580832) [0xffffff800056a3a0]
      Binary Images:
             0x10882b000 -        0x10882cfff  autofsd <2B1CE5B1-C166-3D12-8A89-8CDD707B5B6B> /usr/libexec/autofsd
           0x7fff85ab5000 -     0x7fff85ad0ff7  libsystem_kernel.dylib <A9F97289-7985-31D6-AF89-151830684461> /usr/lib/system/libsystem_kernel.dylib
          0x7fff86be5000 -     0x7fff86bfaff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
      *0xffffff8000200000 - 0xffffff8000736dbc  mach_kernel <896CB1E3-AB79-3DF1-B595-549DFFDF3D36> /mach_kernel
    Process:         CalendarAgent [169]
    Path:            /System/Library/PrivateFrameworks/CalendarAgent.framework/Executables/CalendarAgent
    Architecture:    x86_64
    Parent:          launchd [134]
    UID:             501
    Sudden Term:     Dirty (allows idle exit)
    Task size:       6589 pages (+3)
      Thread 0x52c      DispatchQueue 1          priority 46       
       37 start + 1 (libdyld.dylib) [0x7fff84c797e1]
        37 ??? (CalendarAgent + 2739) [0x10ea4bab3]
          37 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8bd550e2]
            37 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8bd55916]
               37 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8bd50233]
                37 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff85ac5686]
                 *37 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x5b1      DispatchQueue 2          priority 48       
      37 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff86be99ee]
        37 kevent + 10 (libsystem_kernel.dylib) [0x7fff85ac7d16]
         *37 ??? (mach_kernel + 3471808) [0xffffff800054f9c0]
      Thread 0x66a      priority 63       
      37 thread_start + 13 (libsystem_c.dylib) [0x7fff8ffdd1e1]
        37 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8fff07a2]
          37 __NSThread__main__ + 1345 (Foundation) [0x7fff8fb08562]
             37 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356 (Foundation) [0x7fff8faaa546]
              37 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8bd550e2]
                37 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8bd55916]
                   37 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8bd50233]
                    37 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff85ac5686]
                     *37 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x693      priority 46       
      37 thread_start + 13 (libsystem_c.dylib) [0x7fff8ffdd1e1]
        37 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8fff07a2]
          37 __select + 10 (libsystem_kernel.dylib) [0x7fff85ac7322]
            *37 ??? (mach_kernel + 3580832) [0xffffff800056a3a0]
      Thread 0x69f      priority 46       
      37 thread_start + 13 (libsystem_c.dylib) [0x7fff8ffdd1e1]
        37 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8fff07a2]
           37 __NSThread__main__ + 1345 (Foundation) [0x7fff8fb08562]
            37 -[CalAgentAPSConnectionManager _calAPSMain] + 731 (CalendarAgent) [0x10ea580fc]
              37 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff8bd550e2]
                 37 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff8bd55916]
                  37 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff8bd50233]
                    37 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff85ac5686]
                      *37 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0xdf59     priority 48       
      4 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8ffdd1d1]
        4 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff8fff2d13]
           4 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff85ac76d6]
           *4 ??? (mach_kernel + 3910896) [0xffffff80005bacf0]
      Thread 0xdf5a     priority 46       
    *4 ??? (mach_kernel + 3911408) [0xffffff80005baef0]
      Binary Images:
             0x10ea4b000 -        0x10ea4bfff  CalendarAgent <D7916728-291A-3B77-B1A8-53FD7017C4A0> /System/Library/PrivateFrameworks/CalendarAgent.framework/Executables/CalendarAgent
             0x10ea53000 -        0x10ea69ff7  com.apple.CalendarAgent 1.0 (57) <762A246C-65FC-339D-A0F2-8ED9C907A9C2> /System/Library/PrivateFrameworks/CalendarAgent.framework/Versions/A/CalendarAgent
           0x7fff84c77000 -     0x7fff84c7aff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
          0x7fff85ab5000 -     0x7fff85ad0ff7  libsystem_kernel.dylib <A9F97289-7985-31D6-AF89-151830684461> /usr/lib/system/libsystem_kernel.dylib
           0x7fff86be5000 -     0x7fff86bfaff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff8bd20000 -     0x7fff8bf0aff7  com.apple.CoreFoundation 6.8 (744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x7fff8fa72000 -     0x7fff8fdd1fff  com.apple.Foundation 6.8 (945.18) <1D7E58E6-FA3A-3CE8-AC85-B9D06B8C0AA0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8ffdc000 -     0x7fff900a8ff7  libsystem_c.dylib <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
      *0xffffff8000200000 - 0xffffff8000736dbc  mach_kernel <896CB1E3-AB79-3DF1-B595-549DFFDF3D36> /mach_kernel
    Process:         cfprefsd [21]
    Path:            /usr/sbin/cfprefsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Sudden Term:     Clean (allows idle exit)
    Task size:       353 pages
      Thread 0x14e      DispatchQueue 2          priority 33       
      37 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff86be99ee]
         37 kevent + 10 (libsystem_kernel.dylib) [0x7fff85ac7d16]
         *37 ??? (mach_kernel + 3471808) [0xffffff800054f9c0]
      Thread 0x150      priority 31       
      37 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x7fff85ac7566]
        *37 ??? (mach_kernel + 3580832) [0xffffff800056a3a0]
      Thread 0xdc82     priority 31       
      37 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8ffdd1d1]
        37 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff8fff2d13]
           37 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff85ac76d6]
           *37 ??? (mach_kernel + 3910896) [0xffffff80005bacf0]
      Thread 0xdc83     priority 31       
      37 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8ffdd1d1]
         37 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff8fff2d13]
          37 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff85ac76d6]
           *37 ??? (mach_kernel + 3910896) [0xffffff80005bacf0]
      Thread 0xdc8a     priority 31       
       37 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8ffdd1d1]
        37 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff8fff2d13]
          37 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff85ac76d6]
           *37 ??? (mach_kernel + 3910896) [0xffffff80005bacf0]
      Binary Images:
             0x10fe3a000 -        0x10fe3aff7  cfprefsd <B96D16CE-D6B9-38D9-898E-C6F984EB15BC> /usr/sbin/cfprefsd
          0x7fff85ab5000 -     0x7fff85ad0ff7  libsystem_kernel.dylib <A9F97289-7985-31D6-AF89-151830684461> /usr/lib/system/libsystem_kernel.dylib
           0x7fff86be5000 -     0x7fff86bfaff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff8ffdc000 -     0x7fff900a8ff7  libsystem_c.dylib <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
      *0xffffff8000200000 - 0xffffff8000736dbc  mach_kernel <896CB1E3-AB79-3DF1-B595-549DFFDF3D36> /mach_kernel
    Process:         cfprefsd [109]
    Path:            /usr/sbin/cfprefsd
    Architecture:    x86_64
    Parent:          launchd [105]
    UID:             88
    Sudden Term:     Clean (allows idle exit)
    Task size:       1 pages
      Thread 0x39d      priority 33       
      37 kevent + 10 (libsystem_kernel.dylib) [0x7fff85ac7d16]
        *37 ??? (mach_kernel + 3471808) [0xffffff800054f9c0]
      Thread 0x39f      priority 31       
      37 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x7fff85ac7566]
       *37 ??? (mach_kernel + 3580832) [0xffffff800056a3a0]
      Binary Images:
             0x10a6e3000 -        0x10a6e3ff7  cfprefsd <B96D16CE-D6B9-38D9-898E-C6F984EB15BC> /usr/sbin/cfprefsd
          0x7fff85ab5000 -     0x7fff85ad0ff7  libsystem_kernel.dylib <A9F97289-7985-31D6-AF89-151830684461> /usr/lib/system/libsystem_kernel.dylib
      *0xffffff8000200000 - 0xffffff8000736dbc  mach_kernel <896CB1E3-AB79-3DF1-B595-549DFFDF3D36> /mach_kernel
    Process:         cfprefsd [140]
    Path:            /usr/sbin/cfprefsd
    Architecture:    x86_64
    Parent:          launchd [134]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       3271 pages
      Thread 0x4aa      DispatchQueue 2          priority 33       
      37 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff86be99ee]
         37 kevent + 10 (libsystem_kernel.dylib) [0x7fff85ac7d16]
         *37 ??? (mach_kernel + 3471808) [0xffffff800054f9c0]
      Thread 0x4ac      priority 31       
      37 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x7fff85ac7566]
        *37 ??? (mach_kernel + 3580832) [0xffffff800056a3a0]
      Thread 0xdc79     priority 31       
      37 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8ffdd1d1]
        37 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff8fff2d13]
           37 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0

  • Video portion of Nightwish DVD not playing correctly on Quicktime. It is not a smooth playback. Can I correct this?

    Video portion of Nightwish DVD not playing correctly on Quicktime.  It is not a smooth playback. A little jerky. Is there an easy slution to the problem?

    I worded my question incorrectly. It isn't a DVD I'm having the problem with, it' s a Nightwish concert download form iTunes I am having the video portion of the video that plays not smoothy. Like it is moothing it short little segments, not a steady flow!

  • I have a error code 150:30 on a Mac running Yosemite 10.10 any help?

    Thanks!

    In that case I will need the serial number to re launch Illustrator correct? I have no clue where that number is and it was purchased by a former employer of mine. Thanks for your help.
    Sent from Yahoo Mail on Android
    From:"Larry G. Schneider" <[email protected]>
    Date:Sat, Feb 28, 2015 at 12:07 AM
    Subject:[Illustrator] I have a error code 150:30 on a Mac running Yosemite 10.10 any help?
    I have a error code 150:30 on a Mac running Yosemite 10.10 any help?
    created by Larry G. Schneider in Illustrator - View the full discussion
    Uninstall, run the Cleaner tool and reinstall.
    If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7238126#7238126 and clicking ‘Correct’ below the answer
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7238126#7238126
    To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"      
    Start a new discussion in Illustrator by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

  • Performance issues in iOS- Animations run really slow. (CS5.5/AS3)

    I have created an app in CS5.5 for Android and iOS. I have tested on two Android devices and everyingthing works fine. However, on an iPad and iPhone the animations are really slow. Here are some more facts:
    1)  My project has many scenes and in the problems scene there are upwards of 1,200 frames. But even simple animations run slowly.
    2) The frame rate is set for 24 fps.
    3) I have created a universal app (iphone and ipad), publish resolution is standard at full screen.
    4) Ironically, I have already tried caching as bitmap. That actually slowed my animations even more.
    I am truely at the end of the line here and don't have any possible solutions.
    I could use some help here. Any possible solutions would help.

    here are some links to help you optimize your content for iOS:
    http://help.adobe.com/en_US/as3/mobile/flashplatform_optimizing_content.pdf
    http://download.macromedia.com/pub/labs/packagerforiphone/packagerforiphone_devguide.pdf
    http://floatlearning.com/2010/10/key-differences-in-air-for-android-and-ios/

  • IPhoto error- won't run at all! Please help

    I just got my mac a few weeks ago. I love the iLife applications, and they all worked well. But I upgraded to Leopard a few days ago and since then my iPhoto will not run. It opens and asks if I want to import recovered photos. It doesn't matter if I click "yes" or "no", the application quits and I get this message:
    "The application iPhoto quit unexpectedly.
    Mac OS X and other applications are not affected.
    Click Relaunch to launch the application again. Click report to see more details or send a report to Apple."
    Clicking Relaunch simply re-opens it with the same problem. In the report is this information, in part:
    "Process: iPhoto [374]
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier: com.apple.iPhoto
    Version: 7.1 (7.1)
    Build Info: iPhotoProject-3470000~9
    Code Type: X86 (Native)
    Parent Process: launchd [101]
    Date/Time: 2007-11-05 21:58:36.661 -0500
    OS Version: Mac OS X 10.5 (9A581)
    Report Version: 6
    Exception Type: EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread: 8
    Application Specific Information:
    * Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '* -[NSCFArray replaceObjectAtIndex:withObject:]: attempt to insert nil' "
    And also the number of recovered photos that it asks me to import increases every time I try to run the program. Please help! I can't be without this awesome application.

    That did not work By the way here is the error report in it's entirety as someone asked me to post it:
    Process: iPhoto [361]
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier: com.apple.iPhoto
    Version: 7.1 (7.1)
    Build Info: iPhotoProject-3470000~9
    Code Type: X86 (Native)
    Parent Process: launchd [272]
    Date/Time: 2007-11-06 17:58:34.415 -0500
    OS Version: Mac OS X 10.5 (9A581)
    Report Version: 6
    Exception Type: EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread: 9
    Application Specific Information:
    * Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '* -[NSCFArray replaceObjectAtIndex:withObject:]: attempt to insert nil'
    Thread 0:
    0 libSystem.B.dylib 0x94eb78e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x94ebf0dc mach_msg + 72
    2 com.apple.CoreFoundation 0x9232b0fe CFRunLoopRunSpecific + 1806
    3 com.apple.CoreFoundation 0x9232bd38 CFRunLoopRunInMode + 88
    4 com.apple.HIToolbox 0x919fe8a4 RunCurrentEventLoopInMode + 283
    5 com.apple.HIToolbox 0x919fe6bd ReceiveNextEventCommon + 374
    6 com.apple.HIToolbox 0x919fe531 BlockUntilNextEventMatchingListInMode + 106
    7 com.apple.AppKit 0x92d71d5b _DPSNextEvent + 657
    8 com.apple.AppKit 0x92d716a0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    9 com.apple.AppKit 0x92fadd2e -[NSApplication _realDoModalLoop:peek:] + 563
    10 com.apple.AppKit 0x92fa8484 -[NSApplication runModalForWindow:] + 286
    11 com.apple.AppKit 0x930dd300 _NXDoLocalRunAlertPanel + 1025
    12 com.apple.AppKit 0x930dcefd NSRunAlertPanel + 69
    13 com.apple.iPhoto 0x000a346f 0x1000 + 664687
    14 com.apple.iPhoto 0x000b1a70 0x1000 + 723568
    15 com.apple.iPhoto 0x000a490d 0x1000 + 669965
    16 com.apple.iPhoto 0x0009ee86 0x1000 + 646790
    17 com.apple.iPhoto 0x000947be 0x1000 + 604094
    18 com.apple.iPhoto 0x00095c05 0x1000 + 609285
    19 com.apple.iPhoto 0x00061397 0x1000 + 394135
    20 com.apple.Foundation 0x91cdf77c nsnotecallback + 364
    21 com.apple.CoreFoundation 0x9230ca4a __CFXNotificationPost + 362
    22 com.apple.CoreFoundation 0x9230cd23 _CFXNotificationPostNotification + 179
    23 com.apple.Foundation 0x91cdca70 -[NSNotificationCenter postNotificationName:object:userInfo:] + 128
    24 com.apple.Foundation 0x91ce6108 -[NSNotificationCenter postNotificationName:object:] + 56
    25 com.apple.AppKit 0x92dfb323 -[NSApplication _postDidFinishNotification] + 125
    26 com.apple.AppKit 0x92dfb232 -[NSApplication _sendFinishLaunchingNotification] + 77
    27 com.apple.AppKit 0x92d74d1e -[NSApplication(NSAppleEventHandling) _handleAEOpen:] + 284
    28 com.apple.AppKit 0x92d74517 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 98
    29 com.apple.Foundation 0x91d04c7f -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 655
    30 com.apple.Foundation 0x91d0498f _NSAppleEventManagerGenericHandler + 223
    31 com.apple.AE 0x954e7668 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 144
    32 com.apple.AE 0x954e759e dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 44
    33 com.apple.AE 0x954e7445 aeProcessAppleEvent + 177
    34 com.apple.HIToolbox 0x91a01211 AEProcessAppleEvent + 38
    35 com.apple.AppKit 0x92d71f6f _DPSNextEvent + 1189
    36 com.apple.AppKit 0x92d716a0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    37 com.apple.AppKit 0x92d6a6d1 -[NSApplication run] + 795
    38 com.apple.AppKit 0x92d379ba NSApplicationMain + 574
    39 com.apple.iPhoto 0x000028ee 0x1000 + 6382
    40 com.apple.iPhoto 0x00002815 0x1000 + 6165
    Thread 1:
    0 libSystem.B.dylib 0x94ee78e6 kevent + 10
    1 libSystem.B.dylib 0x94ee8075 pthreadstart + 321
    2 libSystem.B.dylib 0x94ee7f32 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x94eb78e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x94ebf0dc mach_msg + 72
    2 com.apple.CoreFoundation 0x9232b0fe CFRunLoopRunSpecific + 1806
    3 com.apple.CoreFoundation 0x9232bd38 CFRunLoopRunInMode + 88
    4 com.apple.IMUtils 0x96865dcb -[IMRemoteObjectBroadcaster _workerThread] + 246
    5 com.apple.Foundation 0x91ce004d -[NSThread main] + 45
    6 com.apple.Foundation 0x91cdfbf4 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x94ee8075 pthreadstart + 321
    8 libSystem.B.dylib 0x94ee7f32 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x94ebeace _semwaitsignal + 10
    1 libSystem.B.dylib 0x94ebe896 usleep$UNIX2003 + 61
    2 com.apple.AppKit 0x92dd8122 -[NSUIHeartBeat _heartBeatThread:] + 2035
    3 com.apple.Foundation 0x91ce004d -[NSThread main] + 45
    4 com.apple.Foundation 0x91cdfbf4 _NSThread__main_ + 308
    5 libSystem.B.dylib 0x94ee8075 pthreadstart + 321
    6 libSystem.B.dylib 0x94ee7f32 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x94ebeace _semwaitsignal + 10
    1 libSystem.B.dylib 0x94ee8ced pthreadcondwait$UNIX2003 + 73
    2 com.apple.QuartzCore 0x94b1f285 fefragmentthread + 54
    3 libSystem.B.dylib 0x94ee8075 pthreadstart + 321
    4 libSystem.B.dylib 0x94ee7f32 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x94eb792e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x94ee91e6 pthread_condwait + 1267
    2 libSystem.B.dylib 0x94f2ec4b pthreadcondwait + 48
    3 com.apple.iPhoto 0x00296e9b 0x1000 + 2711195
    4 com.apple.iPhoto 0x0026f6c2 0x1000 + 2549442
    5 com.apple.iPhoto 0x0026f7a0 0x1000 + 2549664
    6 com.apple.iPhoto 0x00297ead 0x1000 + 2715309
    7 libSystem.B.dylib 0x94ee8075 pthreadstart + 321
    8 libSystem.B.dylib 0x94ee7f32 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x94eb7946 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x94ee91cf pthread_condwait + 1244
    2 libSystem.B.dylib 0x94eeaa53 pthreadcond_timedwait_relativenp + 47
    3 ...ple.CoreServices.CarbonCore 0x93557252 TSWaitOnConditionTimedRelative + 246
    4 ...ple.CoreServices.CarbonCore 0x93557032 TSWaitOnSemaphoreCommon + 422
    5 ...ickTimeComponents.component 0x905e1b2e ReadSchedulerThreadEntryPoint + 4724
    6 libSystem.B.dylib 0x94ee8075 pthreadstart + 321
    7 libSystem.B.dylib 0x94ee7f32 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x94eb7946 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x94ee91cf pthread_condwait + 1244
    2 libSystem.B.dylib 0x94eeaa53 pthreadcond_timedwait_relativenp + 47
    3 ...ple.CoreServices.CarbonCore 0x93557252 TSWaitOnConditionTimedRelative + 246
    4 ...ple.CoreServices.CarbonCore 0x93557032 TSWaitOnSemaphoreCommon + 422
    5 ...ple.CoreServices.CarbonCore 0x9357f634 AIOFileThread(void*) + 1056
    6 libSystem.B.dylib 0x94ee8075 pthreadstart + 321
    7 libSystem.B.dylib 0x94ee7f32 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x94eb792e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x94ee91e6 pthread_condwait + 1267
    2 libSystem.B.dylib 0x94f2ec4b pthreadcondwait + 48
    3 com.apple.iPhoto 0x00296e9b 0x1000 + 2711195
    4 com.apple.iPhoto 0x0026f6c2 0x1000 + 2549442
    5 com.apple.iPhoto 0x0026f7a0 0x1000 + 2549664
    6 com.apple.iPhoto 0x00297ead 0x1000 + 2715309
    7 libSystem.B.dylib 0x94ee8075 pthreadstart + 321
    8 libSystem.B.dylib 0x94ee7f32 thread_start + 34
    Thread 9 Crashed:
    0 com.apple.CoreFoundation 0x923a5114 __TERMINATING_DUE_TO_UNCAUGHT_EXCEPTION__ + 4
    1 libobjc.A.dylib 0x925e409b objcexceptionthrow + 40
    2 com.apple.CoreFoundation 0x923a504b +[NSException raise:format:arguments:] + 155
    3 com.apple.CoreFoundation 0x923a508a +[NSException raise:format:] + 58
    4 com.apple.Foundation 0x91dbb9a0 _NSArrayRaiseInsertNilException + 80
    5 com.apple.Foundation 0x91cdac66 -[NSCFArray replaceObjectAtIndex:withObject:] + 214
    6 com.apple.iPhoto 0x004446d7 0x1000 + 4470487
    7 com.apple.iPhoto 0x00445472 0x1000 + 4473970
    8 com.apple.iPhoto 0x0019424e 0x1000 + 1651278
    9 com.apple.iPhoto 0x0019bc08 0x1000 + 1682440
    10 com.apple.iPhoto 0x0019bf9c 0x1000 + 1683356
    11 com.apple.iPhoto 0x00107155 0x1000 + 1073493
    12 com.apple.iPhoto 0x00297f1c 0x1000 + 2715420
    13 libSystem.B.dylib 0x94ee8075 pthreadstart + 321
    14 libSystem.B.dylib 0x94ee7f32 thread_start + 34
    Thread 9 crashed with X86 Thread State (32-bit):
    eax: 0xa04270f0 ebx: 0x925e407c ecx: 0xa04261a0 edx: 0x00eba000
    edi: 0x0ed2c350 esi: 0xa0397c28 ebp: 0xb0463c08 esp: 0xb0463c08
    ss: 0x0000001f efl: 0x00000286 eip: 0x923a5114 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x1c023000
    Binary Images:
    0x1000 - 0x6a1fea com.apple.iPhoto 7.1 (7.1) /Applications/iPhoto.app/Contents/MacOS/iPhoto
    0x78c000 - 0x855ff5 com.apple.DiscRecording 4.0 (4000.4.10) <d4130992c67baeb1ec39e6b63e080550> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x8c0000 - 0x8ebff7 com.apple.DiscRecordingUI 4.0 (4000.4.10) <f7d79479e05b83b6b5af98cc92308bdb> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x909000 - 0x90bfff com.apple.ExceptionHandling 1.5 (10) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x912000 - 0x91cfff com.apple.UpgradeChecker 1.0 (1.0) /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0x924000 - 0x993fff com.apple.iLifeMediaBrowser 1.0.3 (194) <8f7064542d5355bac3abbacd7d3e4a59> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x9d0000 - 0xa6ffdf com.apple.DotMacKit 46 (3.0.2L) /Applications/iPhoto.app/Contents/Frameworks/DotMacKit.framework/Versions/A/Dot MacKit
    0xadd000 - 0xd2aff3 com.apple.MessageFramework 3.0 (912) <25ab3c59583f8c0e50bb0b409a070a4b> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0xe7c000 - 0xe7cffd com.apple.AppleAppSupport 1.5 (1.5) /System/Library/PrivateFrameworks/AppleAppSupport.framework/Versions/A/AppleApp Support
    0xe80000 - 0xea4fe7 com.apple.speech.LatentSemanticMappingFramework 2.6.4 (2.6.4) <1591e65449707141112554274c637e5a> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0xced9000 - 0xcedaff3 ATSHI.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0xcfcd000 - 0xd0b3ff7 com.apple.RawCamera.bundle 2.0 (2.0) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0xdaa5000 - 0xdab0fff com.apple.BookService 6.0 (6.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/BookService.NetService/Co ntents/MacOS/BookService
    0xdaba000 - 0xdac1fe7 com.apple.NetServices.BDControl 1.0.5 (1.0.5) /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDControl.framework/Ve rsions/A/BDControl
    0xdacb000 - 0xdacefff com.apple.NetServices.BDRuleEngine 1.0.2 (1.0.2) /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDRuleEngine.framework /Versions/A/BDRuleEngine
    0xdad5000 - 0xdadffff com.apple.CalendarsService 6.0 (6.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/CalendarsService.NetServi ce/Contents/MacOS/CalendarsService
    0xdae9000 - 0xdaf3fff com.apple.CardsService 6.0 (6.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/CardsService.NetService/C ontents/MacOS/CardsService
    0xe59d000 - 0xe5ffffb com.apple.NetServices.NetServices 6.0 (6.0) /Applications/iPhoto.app/Contents/NetServices/Frameworks/NetServices.framework/ Versions/A/NetServices
    0xe64d000 - 0xe652ff7 com.apple.NetSlidesService 6.0 (6.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/NetSlidesService.NetServi ce/Contents/MacOS/NetSlidesService
    0xe65a000 - 0xe665fff com.apple.PrintsService 6.0 (6.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/PrintsService.NetService/ Contents/MacOS/PrintsService
    0xe90c000 - 0xe911ff3 libCGXCoreImage.A.dylib ??? (???) <978986709159e5fe9e094df5efddac1d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0xea46000 - 0xeab3fff +com.DivXInc.DivXDecoder 6.6.0 (6.6.0) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0xeaf5000 - 0xeafaffb com.apple.AppleMPEG2Codec 1.0 (211) /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0xef9d000 - 0xefd8fff com.apple.QuickTimeFireWireDV.component 7.2.1 (7.2.1) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0xefe5000 - 0xeffffc3 com.apple.AppleIntermediateCodec 1.2 (145) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0xf004000 - 0xf03ffe3 com.apple.AppleVAFramework 4.0.14 (4.0.14) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0xf046000 - 0xf060fe3 com.apple.applepixletvideo 1.2.10 (1.2d10) <fdac8dfc20ba5d49672d57e04d5c09a2> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x8fe00000 - 0x8fe2d883 dyld 95.3 (???) <81592e798780564b5d46b988f7ee1a6a> /usr/lib/dyld
    0x90003000 - 0x900acfff com.apple.JavaScriptCore 5523.10.3 (5523.10.3) <9e6719a7a0740f5c224099a7b853e45b> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x900ad000 - 0x900f7fe1 com.apple.securityinterface 3.0 (32532) <f521dae416ce7a3bdd594b0d4e2fb517> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x900f8000 - 0x901aefe3 com.apple.CoreServices.OSServices 209 (209) <89296b20d2db6c180eee073b699e3484> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x901af000 - 0x901f1fef com.apple.NavigationServices 3.5 (160) <26d03493eac3e290fd1d0fd5ff311863> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x901f2000 - 0x90206ff3 com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x90237000 - 0x90290fff libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90291000 - 0x903e6fee com.apple.CalendarStore 3.0 (804) /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x903e7000 - 0x9047afff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9047b000 - 0x904eafff com.apple.PDFKit 2.0 (2.0) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x904eb000 - 0x905a6fe3 com.apple.WebKit 5523.10.3 (5523.10.3) <2741777559b3948d520a4d126330dbce> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x905a7000 - 0x905cafff com.apple.CoreMediaPrivate 1.1 (1.1) <b8a8648bd9a3fe636afb9a1346667d82> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x905cb000 - 0x913c3ffe com.apple.QuickTimeComponents.component 7.2.1 (7.2.1) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x914b9000 - 0x919cefff com.apple.WebCore 5523.10.3 (5523.10.3) <89179acba0e5ae2163d4a75ad460cbdb> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x919cf000 - 0x91cd5fff com.apple.HIToolbox 1.5.0 (???) <1b872a7151ee3f80c9c736a3e46d00d9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x91cd6000 - 0x91f4ffe7 com.apple.Foundation 6.5 (677) <d182b2cc21817f7e5b6c7a1b3f421a98> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x91f50000 - 0x91ff7ff7 com.apple.QD 3.11.49 (???) <ca01e72078d30d6b183aa5224344608b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91ff8000 - 0x91ffdffc com.apple.KerberosHelper 1.0 (1.0) <1cb4daff689a346f24e17131d83c0c5b> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x91ffe000 - 0x91ffeffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x91fff000 - 0x9200effe com.apple.DSObjCWrappers.Framework 1.2 (1.2) <f5b58d1d3a855a63d493ccbec417a1e9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9200f000 - 0x92099fff com.apple.QTKit 7.2.1 (7.2.1) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x9209a000 - 0x920a7ff7 com.apple.DMNotification 1.1.0 (143) <07530f513cd71e41bccbf19225ac1cb4> /System/Library/PrivateFrameworks/DMNotification.framework/Versions/A/DMNotific ation
    0x920a8000 - 0x92124feb com.apple.audio.CoreAudio 3.1.0 (3.1) <70bb7c657061631491029a61babe0b26> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x92125000 - 0x92209ffb com.apple.CoreData 100 (185) <a4e63784275e25e62f57e75e0af0b94d> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9220a000 - 0x92219fff libsasl2.2.dylib ??? (???) <b9e1ca0b6612e280b6cbea6df0eec5f6> /usr/lib/libsasl2.2.dylib
    0x9221a000 - 0x922a6ff7 com.apple.LaunchServices 283 (283) <30168051779817916e04eb8e85fcc17f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x922a7000 - 0x922b8ffe com.apple.CFOpenDirectory 10.5 (10.5) <6a7f55108d77db7384d0e2219d07e9f8> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x922b9000 - 0x923ebfe7 com.apple.CoreFoundation 6.5 (476) <8bfebc0dbad6fc33bea0fa00a1b9ec37> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x923ec000 - 0x923ecffe com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <a2b462be6c51187eddf7d097ef0e0a04> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x923ed000 - 0x9242aff7 libGLImage.dylib ??? (???) <f99c10abd4208093e1ccabc41679c051> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9242b000 - 0x9243bfff com.apple.speech.synthesis.framework 3.6.59 (3.6.59) <4ffef145fad3d4d787e0c33eab26b336> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9243c000 - 0x92443ffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x92444000 - 0x92444ffd com.apple.Accelerate 1.4 (Accelerate 1.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x92445000 - 0x92464ffa libJPEG.dylib ??? (???) <0cfb80109d624beb9ceb3c43b6c5ec10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x92465000 - 0x9247bfff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9247c000 - 0x92547fff com.apple.ColorSync 4.5.0 (4.5.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x92548000 - 0x925daff3 com.apple.ApplicationServices.ATS 3.0 (???) <fb5f572243dbc370a0ea5efc8e81ae11> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x925db000 - 0x926bafff libobjc.A.dylib ??? (???) <5eda47fec2d0e7853b3506aa1fd2dafa> /usr/lib/libobjc.A.dylib
    0x926bb000 - 0x9270bff7 com.apple.HIServices 1.6.0 (???) <d74aa73e4cfd30a08fb169198a8d2539> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9270c000 - 0x927edff7 libxml2.2.dylib ??? (???) <450ec38b57fb46013847cce851001a2f> /usr/lib/libxml2.2.dylib
    0x927ee000 - 0x92bacfea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92bad000 - 0x92bb4fe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x92bcd000 - 0x92bcdffe com.apple.quartzframework 1.5 (1.5) <4b8f505e32e4f2d67967a276401f9aaf> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x92bce000 - 0x92bd1fff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92bd2000 - 0x92c17fef com.apple.Metadata 10.5.0 (398) <4fd74fba0062c2e08ec4b1c10b40ff63> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x92c18000 - 0x92c1aff1 com.apple.QuickTimeH264.component 7.2.1 (7.2.1) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x92c1b000 - 0x92c37fff com.apple.IMFramework 4.0 (578) <b8e7d1e85ec753dc0116843125927ae8> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x92c38000 - 0x92c43ff9 com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x92c44000 - 0x92c5afe7 com.apple.CoreVideo 1.5.0 (1.5.0) <bcc3dd0978bb626c26378227740e1e80> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x92c5b000 - 0x92c69ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x92c6a000 - 0x92c6bfef libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x92c6c000 - 0x92ca6ff7 com.apple.coreui 0.1 (60) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x92ca7000 - 0x92ce6fef libTIFF.dylib ??? (???) <6d0f80e9d4d81f3f64c876aca005bd53> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x92ce7000 - 0x92ceffff com.apple.DiskArbitration 2.2 (2.2) <1551b2af557fdf6f368f93e093933852> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x92cf0000 - 0x92d22fff com.apple.LDAPFramework 1.4.3 (106) <3a5c9df6032143cd6bc2658a9d328d8e> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x92d23000 - 0x92d30fe7 com.apple.opengl 1.5.5 (1.5.5) <1dc40b18517e988ae2ef5534646a3db2> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x92d31000 - 0x9352bfef com.apple.AppKit 6.5 (949) <f8d0f6d0bb5ac092f48f42ca684bdb54> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9352c000 - 0x9352cffd com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9352d000 - 0x93806fe7 com.apple.CoreServices.CarbonCore 783 (783) <8370e664eeb25edc98d5c1f5405b06ae> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x93807000 - 0x93813ff5 libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x93814000 - 0x93850ff7 com.apple.CoreMediaIOServicesPrivate 1.1 (1.1) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x93851000 - 0x93855fff com.apple.CoreMediaAuthoringPrivate 1.0.1 (1.0.1) /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x93856000 - 0x93861fff com.apple.dotMacLegacy 3 (242) <d59587ecfd0e0e31ce7d61f544cfa298> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x93862000 - 0x93862ffa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x93863000 - 0x93c73fef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x93c74000 - 0x93d12fef com.apple.QuickTimeImporters.component 7.2.1 (7.2.1) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x93d13000 - 0x93d31fff libresolv.9.dylib ??? (???) <54e6a08c2f108bdf5916fb483d51961b> /usr/lib/libresolv.9.dylib
    0x93d32000 - 0x93de2fff edu.mit.Kerberos 6.0.11 (6.0.11) <33c25789baedcd70a7e24881775dd9ad> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x93de3000 - 0x93dfeffb libPng.dylib ??? (???) <b6abcac36ec7654ff3e1cfa786b0117b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x93dff000 - 0x93e33fef com.apple.bom 9.0 (136) <b72e1fd1d3bfd8c288381adb23775fd4> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x93e34000 - 0x93e91ffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x93e92000 - 0x93e99fff com.apple.agl 3.0.9 (AGL-3.0.9) <7dac4a7cb0de2f6d08ae71c1249379e3> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x93e9a000 - 0x93f61ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x93f62000 - 0x93f66fff libGIF.dylib ??? (???) <d4234e6f5e5f530bdafb969157f1f17b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x93f67000 - 0x93f8bfeb libssl.0.9.7.dylib ??? (???) <acee7fc534674498dcac211318aa23e8> /usr/lib/libssl.0.9.7.dylib
    0x93f8c000 - 0x93ff8ffb com.apple.WhitePagesFramework 1.0 (112.0) /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x93ff9000 - 0x94073ff8 com.apple.print.framework.PrintCore 5.5 (245) <9441d178f4b430cf92b67bf346646693> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x94074000 - 0x9409bfff libcups.2.dylib ??? (???) <6b61eb99e6f5dd2d66cd224e9f82427d> /usr/lib/libcups.2.dylib
    0x9409c000 - 0x940d2fef libtidy.A.dylib ??? (???) <e4d3e7399fb83d7f145f9b4ec8196242> /usr/lib/libtidy.A.dylib
    0x9433c000 - 0x9433cff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9433d000 - 0x94346fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x94347000 - 0x9440cfff com.apple.QuickTimeMPEG4.component 7.2.1 (7.2.1) /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x9440d000 - 0x94446ffe com.apple.securityfoundation 3.0 (32585) <cc88aa94d417917bdf35035819ccf4b4> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94447000 - 0x9457fff7 libicucore.A.dylib ??? (???) <afcea652ff2ec36885b2c81c57d06d4c> /usr/lib/libicucore.A.dylib
    0x94580000 - 0x94580fff com.apple.Carbon 136 (136) <98a5e3bc0c4fa44bbb09713bb88707fe> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x94581000 - 0x946b7fe3 com.apple.imageKit 1.0 (1.0) <2f2656deebcf595b88f010ba08cef0e4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x946b8000 - 0x946e5feb libvDSP.dylib ??? (???) <a26683d121ee0f96df9a9d0bfca36049> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x946e6000 - 0x94704ff7 com.apple.QuickLookFramework 1.0 (168.0) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x94705000 - 0x94709fff com.apple.OpenDirectory 10.5 (10.5) <e7e4507f5ecd8c8cdcdb2fc0675da0b4> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x9470a000 - 0x9470affb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x9470b000 - 0x94733ff7 com.apple.shortcut 1 (1.0) <057783867138902b52bc0941fedb74d1> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x94734000 - 0x94758fff libxslt.1.dylib ??? (???) <4933ddc7f6618743197aadc85b33b5ab> /usr/lib/libxslt.1.dylib
    0x94759000 - 0x94759ff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9475a000 - 0x947d1fe3 com.apple.CFNetwork 217 (219) <f3c16ae4b2faeb134957ee96d90dc5ca> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x947d2000 - 0x94837ffb com.apple.ISSupport 1.6 (34) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x94838000 - 0x94875fff com.apple.DAVKit 3.0.0 (641) /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x94876000 - 0x94977ff7 com.apple.PubSub 1.0.0 (59) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x94978000 - 0x94a2affb libcrypto.0.9.7.dylib ??? (???) <330b0e48e67faffc8c22dfc069ca7a47> /usr/lib/libcrypto.0.9.7.dylib
    0x94a2b000 - 0x94dc0fef com.apple.QuartzCore 1.5.0 (1.5.0) <363cc63c669523cc3fec577949bb1308> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94dc1000 - 0x94df7fff com.apple.SystemConfiguration 1.9.0 (1.9.0) <7919d9588c3b0d556646e555b7193f1f> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x94df8000 - 0x94e28ff3 com.apple.DotMacSyncManager 1.2.2 (280) <fa19f847dcb535449201e99f5270065d> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x94e29000 - 0x94eb2fff com.apple.framework.IOKit 1.5.0 (???) <5d9b85c55183f9732eb9efc38d18ba53> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x94eb3000 - 0x94eb3ffd com.apple.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x94eb7000 - 0x95011fe3 libSystem.B.dylib ??? (???) <8ecc83dc0399be3946f7a46e88cf4bbb> /usr/lib/libSystem.B.dylib
    0x95012000 - 0x95017ffb com.apple.DisplayServicesFW 2.0 (2.0) <8953865f53e940007a4e4ac5390d3c95> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x95018000 - 0x954e4ffe libGLProgrammability.dylib ??? (???) <3e4a826dcf09d81a8e0276f0c0c28b5a> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x954e5000 - 0x95514fe3 com.apple.AE 402 (402) <994ba8e884aefe7bf1fc5987df099e7b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x95515000 - 0x95520fe7 libCSync.A.dylib ??? (???) <df82fc093e498a9eb5490761cb292218> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x95521000 - 0x95562fe7 libRIP.A.dylib ??? (???) <bdc6d70bf4ed3dace321b4ff76a353b3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x95563000 - 0x95573ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <cbeb17ab39f28351fe2ab5b82bf465bc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x95574000 - 0x95580fff libbz2.1.0.dylib ??? (???) <9ea4fe135c9e52bd0590eec12c738e82> /usr/lib/libbz2.1.0.dylib
    0x95581000 - 0x95586fff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x95587000 - 0x955a5ff3 com.apple.DirectoryService.Framework 3.5 (3.5) <899d8c9ee31b004a6ff73dab88982b1a> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x955a6000 - 0x955a7ffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x955a8000 - 0x95763ff3 com.apple.QuartzComposer 2.0 (106) <e31bf3733d0676dd7993afca6ce48c3e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x95764000 - 0x957d8fef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x957d9000 - 0x95957fff com.apple.AddressBook.framework 4.1 (687) <3f005092d08e963eabe8f7f66c09cc1e> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x95958000 - 0x959a8feb com.apple.framework.familycontrols 1.0 (1.0) <c30d59855f0a2dd9130901543714b7ea> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x959a9000 - 0x959abff5 libRadiance.dylib ??? (???) <20eadb285da83df96c795c2c5fa20590> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x959ac000 - 0x95a2bff5 com.apple.SearchKit 1.2.0 (1.2.0) <277b460da86bc222785159fe77e2e2ed> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x95a2c000 - 0x95ab3ff7 libsqlite3.0.dylib ??? (???) <273efcb717e89c21207c851d7d33fda4> /usr/lib/libsqlite3.0.dylib
    0x95abe000 - 0x95ac8feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x95b17000 - 0x95b41fef libauto.dylib ??? (???) <d468bc4a8a69343f1748c293db1b57fb> /usr/lib/libauto.dylib
    0x95b42000 - 0x95c21fff com.apple.syncservices 3.0 (388) <fc1294b5b89dcab17de9e04c282a3cad> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x95c22000 - 0x95debfef com.apple.security 5.0 (31122) <0759867b3944f1e54ce3d9078bbdb867> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x95dec000 - 0x95f10fe3 com.apple.audio.toolbox.AudioToolbox 1.5 (1.5) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x95f11000 - 0x96056ff7 com.apple.ImageIO.framework 2.0.0 (2.0.0) <154d4d8cda2bd99518cbabc9f2d69833> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x96057000 - 0x9605eff7 libCGATS.A.dylib ??? (???) <9b29a5500efe01cc3adea67bbc42568e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x9605f000 - 0x960a3feb com.apple.DirectoryService.PasswordServerFramework 3.0 (3.0) <2552e290905f80c2c2e66871003446a9> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x960a4000 - 0x960f0fff com.apple.QuickLookUIFramework 1.0 (168.0) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x960f1000 - 0x96109fff com.apple.openscripting 1.2.6 (???) <b8e553df643f2aec68fa968b3b459b2b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9610a000 - 0x96166ff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x96167000 - 0x967fefef com.apple.CoreGraphics 1.351.0 (???) <7a6f399039eed6dbe845c169f7d21a70> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x967ff000 - 0x96859ff7 com.apple.CoreText 2.0.0 (???) <7fa39cd5bc847615ec02e7c7a37c0508> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9685a000 - 0x9685cfff com.apple.securityhi 3.0 (30817) <2b2854123fed609d1820d2779e2e0963> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9685d000 - 0x96863fff com.apple.print.framework.Print 218 (220) <c35172175abbe554ddadd9b6401351fa> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x96864000 - 0x96877fff com.apple.IMUtils 4.0 (578) <cf6de2e36b4922509a027dcf59951de8> /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x96878000 - 0x96927fff com.apple.DesktopServices 1.4.2 (1.4.2) <ec69c4072b0df6f52ef3f48fadf4c4b8> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x96928000 - 0x96c36fe2 com.apple.QuickTime 7.2.1 (7.2.1) <6521656603a30c11ea6d3be1fdde0fa9> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x96c37000 - 0x96c68ffb com.apple.quartzfilters 1.5.0 (1.5.0) <22581f8fe9dd2cb261f97a897407ec3e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x96c69000 - 0x96c6efff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0xba900000 - 0xba916fff libJapaneseConverter.dylib ??? (???) <7b0248c392848338f5d6ed093313eeef> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

  • Im buying an ibook g4 ( can it run warcraft 3 smoothly?)

    Im buying an ibook g4. The specs are 1.33 ghz with 1 gb of ram. Can this run warcraft 3 smoothly?

    Not sure if this will help, but taken from their website (if right one):
    Systyem requirements:
    Macintosh® OS 9.0 or higher/ Mac OS X 10.1.3. or higher:
    400 MHz G3 processor
    128 MB of RAM
    16 MB ATI Technologies or nVidia chipset 3D video card
    700 MB HD space
    4X CD-ROM drive
    Recommended:
    600 MHz processor
    256 MB of RAM
    32 MB 3D video card
    DirectX® 8.1 compatible sound card (Windows)
    Multiplayer:
    Low-latency, active Internet connection rated at 28.8 Kbps or faster. LAN play requires TCP/IP connection.

  • I am having a hard time with fcpx, it is running so slow.  i upgraded my ram to 12 and have cleaned up my computer to run faster and have changed all my files to proxy files but it is still running SO slow.  please help!

    I am having a hard time with my fcp x running so slow.  i can't even move my mouse without the time wheel coming on and staying up for at least 20 some seconds.  I have upgraded my ram to 12 and changed all my files to proxy files; also i cleaned the crap out of my computer removing all other media files I didn't need and it is still running the same.  Please help!  I have a deadline on my short film to be submitted and I can't finish it like this.  Oh also it ran fine in the beginning but and one day it just started doing this out of no where.  Anything will help!  Thanks

    In addition have you got FileVault switched on as that will kill performance.

  • HT1937 i lost all my massages in my emails by mistake , i want you to help  me in retrieving my massages to my emails

    i lost all my massages in my emails by mistake , i want you to help  me in retrieving my massages to my emails
    thankx

    restore the latest backup you made of the phone

  • Hi. Whenever I go through one of the menus in firefox, the links remain highlighted after my mouse passes over them. Is there a bug fix for this or is there something wrong with my computer? I am running windows 7 if that helps.

    Hi. Whenever I go through one of the menus in firefox, the links remain highlighted after my mouse passes over them. Is there a bug fix for this or is there something wrong with my computer? I am running windows 7 if that helps. This problem started ever since I upgraded to version 5.

    I have downloaded and used the iPod Reset Utility, alot that did. My current state is iTunes on my XP Home with SP3 sees the iPod. When I drag a song to the iPod, the Sync message appears for about 5 minutes, then the Apple symbol appears. But no song has been transferred to the iPod.
    I tried to tap into the XP iTunes database from my iBook, but although it acted like it would add the XP library to the iBook library, it did not. I've got 19 Gs of songs on the XP. If I have to load each song from its original CD to get it on my iBook I'm going to start looking for some other app or device so that I can listen to my music.
    It is a shame, in the old days, Apple techs use to look at what was going on, now it appears they don't, so they never know they have problems until Apple's profits fall.

  • Want to playback archived webcast recorded using Cisco webex recording. Downloaded Cisco webex meeting software from apple download page but still cannot play recording

    Want to playback archived webcast recorded using Cisco webex recording. Downloaded Cisco webex meeting software from apple download page but still cannot play recording

    You will probably find better support about the features of the Webex app on their support page here: http://www.webex.com/products/web-conferencing/mobile-iphone-ipad-faq.html
    Doesn;t look like it's listed as a feature of the iPad app.

Maybe you are looking for

  • Prevent abuse of a signed applet?

    Hi I am creating an application using HTML, javascript, and a set of java classes. Communication betwwen the javascript and java is done by an applet, signed with a real certificate. I would like to prevent someone copying my signed jar, and abusing

  • Can't access my full contact list

    I added a new contact to my contact list, then hit "Done," but now I can't access any other contacts.  When I press "All Contacts," nothing happens and I remain on the same page.  How do I get back to my full contact list?

  • External firewire drive constant spin-down/up

    I often connect an external Lacie firewire drive to my MacBook Pro for regular time machine backups. When the drive is connected and I'm using my Mac, the drive is constantly spinning and in an 'awake' state. The drive remains in this state for as lo

  • Status flag green for asyncronous scenarios

    Hi  all,       In my practice system, I have changed the date( before 2 weeks). then all asynchronous scenarios have not been working. If i checked status flag it was showing in SXMB_MONI as green flag.   Please help me from this problem. Regards Dev

  • How to create pages & portal

    Hi I am new to Oracle portal. i am using Oracle 3.0. i am working on an application in portal. i have created n number of forms, reports, dynamic pages, menus, sub menus & lovs etc. currently i access my application in a raw manner. first login , the