Preview in Browser and Adobe Browser Lab show website differently? Please help

Hi...working on my first website and I have a question about the differences in viewing the site through
choosing file...preview in browser....
from within Dreamweaver, and using the Adobe Browser Lab to view the website.
There seems to be a very significant difference between the two. When I preview firefox from within dreamweaver, my site is just how I want it.
When I go to browser lab, it is...well... a disaster.
I'm attaching screenshots of the two as well as my code, so it can show how different they are. Here is a screenshot of the website as it looks when I use the preview in browser function from within dreamweaver to view it in firefox. This is how I'd like it to look.
And here is a screenshot of what it looks like when I preview it in Adobe Browser Lab in Firefox.
The quote is underneath the logo, the left div text is flowing over the center div, the nav bar graphics are too narrow, the photo is hanging outside the div it should be contained in. Not what I want.
Does anyone have any insight into how I would fix this or which version is correct?
I'm stumped. This is my first website: shouldn't these two things be similar? And which one is correct?
and here is my code:
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>Your Career Direction Career and College Counseling</title>
<style type="text/css">
<!--
@font-face {
    font-family: 'museo_sans_500regular';
    src: url('museosans-500-webfont.eot');
    src: url('museosans-500-webfont.eot?#iefix') format('embedded-opentype'),
         url('museosans-500-webfont.woff') format('woff'),
         url('museosans-500-webfont.ttf') format('truetype'),
         url('museosans-500-webfont.svg#museo_sans_500regular') format('svg');
    font-weight: normal;
    font-style: normal;
@font-face {
    font-family: 'museo_sans_500italic';
    src: url('museosans-500italic-webfont.eot');
    src: url('museosans-500italic-webfont.eot?#iefix') format('embedded-opentype'),
         url('museosans-500italic-webfont.woff') format('woff'),
         url('museosans-500italic-webfont.ttf') format('truetype'),
         url('museosans-500italic-webfont.svg#museo_sans_500italic') format('svg');
    font-weight: normal;
    font-style: normal;
@font-face {
    font-family: 'binary_itcregular';
    src: url('binaritcbol-webfont.eot');
    src: url('binaritcbol-webfont.eot?#iefix') format('embedded-opentype'),
         url('binaritcbol-webfont.woff') format('woff'),
         url('binaritcbol-webfont.ttf') format('truetype'),
         url('binaritcbol-webfont.svg#binary_itcregular') format('svg');
    font-weight: normal;
    font-style: normal;
}body {
    margin: 0;
    padding: 0;
    color: #000;
    font-size: 100%;
    line-height: 1.4;
    background-image: url(images/background.gif);
    background-repeat: repeat;
/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
    padding: 0;
    margin: 0;
h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;     /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
    padding-right: 15px;
    padding-left: 15px;
    font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300", Arial;
h1 strong {
    color: #C60651;
    font-size: 90%;
    font-family: "Binary ITC Bold";
h1 strong em {
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
    border: none;
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
    color:#414958;
    text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
a:visited {
    color: #4E5869;
    text-decoration: underline;
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
    text-decoration: none;
/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
    width: 80%;
    max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
    min-width: 780px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
    background: #FFF; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
    margin-top: 0;
    margin-bottom: 0;
    margin-right: auto;
    margin-left: auto;
    font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300";
    border-right-width: thick;
    border-left-width: thick;
    border-right-style: solid;
    border-left-style: solid;
    border-right-color: #C60651;
    border-left-color: #C60651;
/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
    padding-top: 40px;
    font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300", Arial;
#Quote {
    float: right;
    clear: left;
    margin-right: 50px;
/* ~~ These are the columns for the layout. ~~
1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.
3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.
4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.
.sidebar1 {
    float: left;
    width: 15%;
    padding-bottom: 10px;
    margin-top: 40px;
    border-top-color: #FFF;
    border-left: #FFF;
    margin-left: 25px;
    background-color: #FFF;
    font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300", Arial;
.content {
    width: 60%;
    float: left;
    margin-top: 40px;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 0;
    font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300", Arial;
.sidebar2 {
    float: left;
    width: 30%;
    background-color: #D3CCB2;
    margin-top: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
    border-top-color: #FFF;
    border-right-color: #FFF;
    border-bottom-color: #FFF;
    border-left-color: #FFF;
    border-right-width: 5px;
    font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300", Arial;
/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
    padding-top: 0;
    padding-right: 25px;
    padding-bottom: 15px;
    padding-left: 60px;
    font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300";
    font-size: 100%;
    color: #666;
#Quote {
    float: right;
    clear: both;
/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
    list-style: none; /* this creates the space between the navigation on the content below */
    font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300", Arial;
    line-height: 250%;
.nav {
    font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300", Arial;
ul.nav li {
    font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300", Arial;
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
    padding: 5px 5px 5px 15px;
    display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
    text-decoration: none;
    color: #333333;
    background-color: #FFF;
    font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300", Arial;
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
    color: #C60651;
    font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300", Arial;
    background-color: #FFF;
    background-image: url(images/navbar2.gif);
/* ~~The footer ~~ */
.footer {
    padding: 10px 0;
    position: relative;/* this gives IE6 hasLayout to properly clear */
    clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
/* ~~miscellaneous float/clear classes~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
    float: right;
    margin-left: 8px;
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
    float: left;
    margin-right: 8px;
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
    clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
.container .content {
    width: 50%;
    font-size: large;
#footer {    width: 100%;
    background-color: #FFF;
.container .sidebar2 h4 img {
    padding-left: 20px;
    padding-top: 0px;
.sidebar2 p img {
    border: medium solid #C60651;
#Insert_logo2 {
    border-top-width: 4px;
    border-right-width: 4px;
    border-bottom-width: 4px;
    border-left-width: 4px;
    border-top-color: #fff;
    border-right-color: #fff;
    border-bottom-color: #fff;
    border-left-color: #fff;
.container .content p .content strong {
    font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300", Arial;
.container .content .content {
    font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300", Arial;
.container .content ul li strong {
    font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300", Arial;
    font-size: 95%;
    line-height: 150%;
    list-style-type: disc;
test {
    font-family: "Binary ITC Bold";
.container .sidebar2 p img {
    margin-right: auto;
    margin-left: auto;
    border-top-width: medium;
    border-right-width: medium;
    border-bottom-width: medium;
    border-left-width: medium;
    border-top-color: #C60651;
    border-right-color: #C60651;
    border-bottom-color: #C60651;
    border-left-color: #C60651;
li strong {
    line-height: 130%;
    list-style-type: circle;
    color: #978980;
.container .content ul {
.container .sidebar1 .nav {
    margin-top: 10px;
    margin-bottom: 10px;
.nav li a {
    background-image: url(images/navbar2.gif);
    background-repeat: no-repeat;
    background-position: right center;
    left: auto;
    right: auto;
    clip: rect(auto,auto,auto,auto);
.container .sidebar1 h6 {
    padding: 0px;
    color: #000000;
#footer h3 strong {
    font-size: 60%;
    color: #978980;
.container .content p {
    padding-left: 5%;
    padding-right: 5%;
    font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300", Arial;
.container .sidebar2 p {
    padding-right: 8%;
    padding-left: 8%;
    padding-top: 5px;
#Insert_logo2 #Insert_logo2 {
    padding-left: 15px;
.container .content ul {
    color: #C60651;
h6 {
    color: #000;
    font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300", Arial;
.sidebar1 h8 strong {
    font-size: 80%;
    font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300";
.container .sidebar1 h7 {
    font-size: 40%;
    color: #978980;
.h7 {
    font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300", Arial;
    font-size: 15%;
.container .sidebar1 h8 {
    font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300", Arial;
-->
</style><!--[if lte IE 7]>
<style>
.content { margin-right: -1px; } /* this 1px negative margin can be placed on any of the columns in this layout with the same corrective effect. */
ul.nav a { zoom: 1; }  /* the zoom property gives IE the hasLayout trigger it needs to correct extra whiltespace between the links */
</style>
<![endif]--></head>
<body>
<div class="container">
  <div class="header"><!-- end .header -->
    <p class="clearfloat"><a href="#" id="Insert_logo2"><img src="images/YCD-logo-tag-RGB-web-SM.gif" alt="Insert Logo Here" name="Insert_logo" width="638" height="110" id="Insert_logo2" style="background: #FFF
    ; display:block;" /></a></p>
    <div id="Quote"><img src="images/quote.gif" alt="Choose a job you love" width="355" height="81"></div>
    <p class="clearfloat"> </p>
  </div>
  <div class="sidebar1">
    <ul class="nav">
      <li><a href="#">Home</a></li>
      <li><a href="#">Students</a></li>
      <li><a href="#">Parents/Educators</a></li>
      <li><a href="#">Professionals</a></li>
      <li><a href="#">Bio/Contact</a></li>
      <li><a href="#">Q &amp; A Blog</a></li>
      <li><a href="#">Testimonials</a></li>
    </ul>
    <p> </p>
    <p> </p>
    <p> </p>
    <h8><strong>Your Career Direction</strong><br></h8>
    <h6>96 Harvard Avenue<br>
    Maplewood NJ 07040<br>
    [email protected]<br>
    (973) 996-0207</h6>
    <h7>© Your Career Direction, LLC, 2012<br>
  </h7>
    <p> </p>
  </div>
  <div class="content">
    <h1><strong><img src="images/Whether-you-are.gif" width="266" height="48" alt="Whether you are"></strong></h1>
    <ul>
      <li><strong>Considering your college choices &amp; career options</strong></li>
      <li><strong>Preparing for the world of work after college</strong></li>
      <li><strong>Seeking a new position to further your career</strong></li>
      <li><strong>In-transition and considering new opportunities</strong></li>
      <li><strong>Seeking to make a significant and meaningful career</strong> <strong>change</strong></li>
    </ul>
    <p> </p>
    <h1><img src="images/One-thing-is-for-sure.gif" width="310" height="38" alt="One thing is for sure"></h1>
    <p>We all need to direct our own careers, our own lives!</p>
<p>Given today's competitive job market, global economy, and changed corporate culture, we can no longer depend upon others to ensure our professional futures. Choosing or changing your career direction requires self-reflection, career education and an action plan. </p>
<p> Building a successful and rewarding career requires linking your interests, education and skills, with trending industries, job opportunities and your experience.  It takes making smart decisions about your college major, vocational training and continuing education options. With motivation, persistence and top notch job search skills, you can succeed in finding a path to building a career that is right for you.</p>
<p>At Your Career Direction, we are your advocate. We listen, assess, strategize, inspire, counsel, and network on your behalf. With a personalized, holistic approach, we'll work with you to help you create an action plan; a path designed to get you to where you want to go. </p>
<p> </p> 
<!-- end .content --></div>
  <div class="sidebar2">
    <p><img src="images/Counselingastudent.gif" width="321" height="256" alt="Lisa Mark counseling a student"></p>
    <p>By combining an understanding of your interests and current skills with what&rsquo;s happening in today's marketplace we&rsquo;re able to partner with you to develop new career ideas, target companies, and generate job and internship opportunities. We provide step by step assistance to ensure success in your written communications, presentation skills, job search, interviews and life choices.</p>
<p>At Your Career Direction, YOUR career is our passion. Our mission is to educate and counsel you to choose your own path in life and become what you want to be. </p>
<p> </p>
<p> </p>
  <!-- end .sidebar2 --></div>
  <div class="footer">
    <div id="footer">
      <h3 align="center"> </h3>
    </div>
    <p> </p>
  <!-- end .footer --></div>
<!-- end .container --></div>
</body>
</html>
Thanks for your help.

You are using % widths for your layout which means it will look different depending of the size of each users monitor. Although this is probably the better way to go these days, it is not one size fits all and will work more effectively if you include min and max widths, and also media queries that change your layout depending on the monitor size. This is more advanced coding and will take time if you want to do that. Alternatively, you could design using pixel widths and have it look consistent across all desktop browsers and throw a few media queries in for the mobile side.
Responsive Web Design
http://coding.smashingmagazine.com/2011/01/12/guidelines-for-responsive-web-design/#more-7 5660
More on Media Queries
http://mobile.smashingmagazine.com/2010/07/19/how-to-use-css3-media-queries-to-create-a-mo bile-version-of-your-website/

Similar Messages

  • Trying to open pdf and Adobe Reader Stops Working...Please Help

    Trying to open PDF and it keeps popping up that Adobe Reader Stopped Working.  And doesn't seem to find a solution to fix.  Has been going on for a couple days.  Can't access pdf files needed for my business.

    With Reader XI I assume you mean 11.0.0; try updating to 11.0.06.
    Also, can you open Reader by itself?  If so, try to disable Protected Mode [Edit | Preferences | Security (Enhanced)].

  • My ipod touch 4th gen shows that it is connected to a wifi network but when i try to browse safari it doesnt work.please help me out.

    My ipod touch 4th gen shows that it is connected to a wifi network but when i try to browse safari it doesnt work.please help me out.
    I am using wifi from a mobile by using the tethering option.

    Hi there amalrockzz,
    You may find the troubleshooting steps in the article below helpful.
    iOS: Troubleshooting Wi-Fi networks and connections
    http://support.apple.com/kb/TS1398
    Follow these steps to troubleshoot the above issues:
    Be sure you're in range of your Wi-Fi router (access point).
    Tap Settings > Wi-Fi and turn Wi-Fi off and on. If your Wi-Fi setting is dimmed, follow these steps.
    Confirm that your Wi-Fi router and cable or DSL modem are connected to power, turned on, and connected to the Internet. If not, refer to your network administrator or Internet service provider (ISP) for assistance.
    Restart your iOS device.
    Tap Settings > Wi-Fi and locate the Wi-Fi network to which you're connected.
    Tap  and Forget this Network.
    Try to connect to your desired Wi-Fi network.
    Note: You may need to enter your Wi-Fi password again if your network requires one.
    Turn your Wi-Fi router off and on2. If your ISP also provides cable or phone service, check with them before attempting this step to avoid interruption of service.
    Update your device to the latest version of software.
    Update your Wi-Fi router to the latest firmware2. For AirPort Base Stations, install updates using the AirPort Utility.
    Unable to access the Internet while connected to Wi-Fi
    If you're using a public or commercial network, you may need to log in or subscribe.
    Check to see if you have a self-assigned IP address:
    Tap Settings > Wi-Fi and locate the Wi-Fi network to which you're connected and tap .
    If your IP address is 169.254.xxx.xxx, you may not be able to access the Internet.
    If you do not have a self-assigned IP address, see if other Wi-Fi devices on your network have Internet access.
    If they do not, consult with your network administrator or ISP for further assistance.
    If they do, reset network settings on your device by tapping Settings > General > Reset > Reset Network Settings. Note: This will reset all network settings including:
    previously connected Wi-Fi networks and passwords
    recently used Bluetooth accessories
    VPN and APN settings
    Additional Information
    Find information on connecting to a Wi-Fi network.
    Some third-party routers may not be compatible with all iOS devices, even after updating to the latest firmware. If your iOS devices can successfully connect to other Wi-Fi networks, contact your router's manufacturer to ensure that your router is compatible with your iOS device.
    See recommended settings for configuring your Wi-Fi router for use with iOS devices.
    -Griff W. 

  • 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

  • HT5312 The option to reset security information tab isn't showing up for me, is there I way that I can make it show up. I have a rescue email address and it still doesn't show up. Please help!

    The option to reset my security information tab is not available for me, I have a rescue email address in place and it still doesn't show up. Please help!

    You need to ask Apple to reset your security questions; ways of doing so include clicking here and picking a method for your country, and filling out and submitting this form.
    (96335)

  • I ordered the IX500 Scan Snap through Amazon and received the incorrect XI Standard disc in Windows format instead of for my Mac.  I contacted Amazon and they suggested I contact Scan Snap who suggests I contact Adobe for the correct disc.  Please help.

    I ordered the IX500 Scan Snap through Amazon and received the incorrect Adobe Acrobat XI Standard disc in Windows format instead of for my Mac.  I contacted Amazon and they suggested I contact Scan Snap who suggests I contact Adobe for the correct disc.  Please help.

    Fujitsu delivers only Adobe Acrobat for Windows, not Mac.
    http://www.fujitsu.com/global/services/computing/peripheral/scanners/product/ix500/

  • I click on one song and another one starts playing.  Cover art for one artist shows up on another album.  All of my music isn't showing up.  Please help.  Why is this happening?  How can I fix it?

    I click on one song and another one starts playing.  Cover art for one artist shows up on another album.  All of my music isn't showing up.  Please help.  Why is this happening?  How can I fix it?

    Sorry for not getting back with you...
    That moves only the iTunes media, not the iTunes library (which is really kinda nebulous).
    iTunes library = iTunes folder and all the media, wherever it is located.
    The /Music/iTunes/ folder contains the iTunes library.itl file, which keeps track of everything in iTunes.
    I do however still have the original MAIN startup drive still in the computer, it's just not the startup.
    This is good you still have it.
    Try this...
    Hold Option and launch iTunes.
    Select Choose library... and select the /iTunes/ folder on the original drive. It should be in /Users/your_user_name/Music/.
    Don't mess with anything. We can get it cleared up.
    Does everything work okay?

  • I am using windows 7 and itunes 11.7 my i phone 5s is not getting synced with my laptop it keeps showing backing up  please help i need to put music in my phone?

    i am using windows 7 and itunes 11.7 my i phone 5s is not getting synced with my laptop it keeps showing backing up  please help i need to put music ?

    Hi,
    Have you managed to solve this problem? if yes, please highlight how you solved it...i'm facing same problem with my new Iphone 5S but udner Windows, thanks.

  • My dad got me a MacBook Air for my birthday but he used it a few times before he gave it to me. He doesnt remember the user password that he kept and now i cant download adobe flash player in it. Please help me!

    My dad got me a MacBook Air for my birthday but he used it a few times before he gave it to me. He doesnt remember the user password that he kept and now i cant download adobe flash player in it. Please help me!

    Reset Password using Recovery HD
    OS X 10.7 Lion /10.8 Mountain Lion
    Follow the instructions in the first and third boxes.
    http://pondini.org/OSX/Password.html
    Note
    Keychain
    I don't remember my original (former) account password
    https://support.apple.com/kb/HT1631

  • I brought my iphone5c from Kuwait  and only imessage is working facetime is not showing could you please help me how to activate facetime

    I brought my iphone5c from kuwait but using India  and only imessage is working facetime is not showing could you please help me how to activate facetime

    Note- FaceTime may not be available, or may become unavailable, on devices purchased or used in certain countries, including Saudi Arabia and the United Arab Emirates. Check your device's region of purchase for more information. http-//support.apple.com/kb/HT1937

  • I tried to submit my podcast but showed difficulty in downloading and later showed already submitted please help!

    I tried to submit my podcast but showed difficulty in downloading and later showed already submitted please help!

    If your podcast was submitted but rejected for any reason then the automated part of the submissions process will give you that error despite the rejection - I assume it's a bug. The workaround is to change the title slightly.
    But if they had difficulty downloading (what? - the feed, or the episodes - didn't they say) then you have a technical problem you need to address. Obviously I can't advise any further unless you care to post your feed URL.

  • When turning on my Macbook, the Apple logo shows up, but then the circle just keeps spinning and I cannot move forward...PLEASE HELP!

    When turning on my Macbook, the Apple logo shows up, but then the circle just keeps spinning and I cannot move forward...PLEASE HELP! Can I take it to the Apple Store to get fixed? Can I do something? It's driving me nuts!

    Do you hear any clicking?
    Boot from the install disk and repair the disk and permissions.

  • I lost my ability to view PDFs with update and Lion install. Says "plugin missing", please help?!?!

    I lost my ability to view PDFs with update and Lion install. Says "plugin missing", please help?!?!
    I am trying to finish up a paper for my masters and now I am stuck because the library website won't work without PDF

    Adobe has a knowledgebase article on this.
    http://kb2.adobe.com/cps/905/cpsid_90508.html
    Acrobat family
    Adobe Reader plug-in and Acrobat plug-in are not compatible with the Safari 5.1 browser, which will ship with Mac OS X 10.7 and for 10.6 in July 2011. Adobe Reader and Acrobat will continue to work as standalone applications on Mac OS X 10.7 and 10.6, and will render PDF documents outside of the browser. In addition, Safari 5.1 renders PDF documents natively. However, the Adobe Reader and Acrobat plug-ins will not function as expected in LiveCycle and Acrobat workflows that require either plug-in to render PDF documents in Safari 5.1.
    Recommendation to Customers/Users:
    For Acrobat customers who utilize functionality like forms, digital signatures, portfolios, guides, 3D, extended PDFs and rights management, and who require the Acrobat plug-in to render PDF documents in the Safari browser, Adobe recommends that you continue to use Safari 5.0.x and Mac OS X 10.6. We will provide updates as we continue to investigate this issue.

  • I lost my iPod and it's offline. Can someone PLEASE help me?

    I lost my iPod and it's offline. Can someone PLEASE help me?

    No.
    lost/stolen                                     
    No app on the iPod is required.                           
    - If you previously turned on FIndMyiPod on the iPod in Settings>iCloud and wifi is on and connected, on a computer browser go to iCloud: Find My iPhone, sign in and go to FIndMyiPhone. If the iPod has been restored it will never show up or conbtinue to show off-line.
    - You can also wipe/erase the iPod and have the iPod play a sound via iCloud.
    iCloud: Erase your device
    iCloud: Use Lost Mode
    - If not shown/or off-line, then you will have to use the old fashioned way, like if you lost a wallet or purse.
    - Change the passwords for all accounts used on the iPod and report to police
    - There is no way to prevent someone from restoring the iPod (it erases it) using it unless you had iOS 7 on the device. With iOS 7, one has to enter the Apple ID and password to restore the device.
    - Apple will do nothing without a court order                                               
    Reporting a lost or stolen Apple product                                              
    - iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number

  • I have the 10.7.4 and I cannot get the Flash Player ,, please help me.

    I have the 10.7.4 and I cannot get the Flash Player ,, please help me.

    If you downloaded it, it's likely in your Downloads folder as a Disk Image .dmg. Just open it and intall Flash player and restart your browser. Everything should work.
    Clinton

Maybe you are looking for

  • PL/SQL web service: question about stub

    hello, I'm currently learning how to work with PL/SQL Web Services. I have a question about stubs. The point is, I can deploy a web service to the OC4J server and it works. It also works when I create a stub following the WSDL I made with creating th

  • How to increase no of properties for LOB in BCS code

    HI Team, I have BCS code in visual studio. which is working fine and now i have a requirement to add few more properties. After adding new properties into .bdcm xml file, it is giving error that the no of properties exceeds 50 and it is not allowing

  • I've lost my old firefox, how do i get it back? My MAC mini is OS 10.5

    i've lost my old firefox, how do i get it bak. My Mac mini has OS 10.5.

  • ActiveX renaming worksheet name in Excel

    Hi! I'm trying to use ActiveX to add a sheet to existing Excel file.  There is an ActiveX Add function for sheets, but it doesn't give me a chance to name the new sheet.  Does anyone know how to rename a sheet in Excel with ActiveX? or Add a new shee

  • RE: (forte-users) FW: central environment hanging

    Doug, We have our repository servers on Windows NT 4.0 (Alpha), however our environment manager is on the same node as the repository servers, so our experiences may not fit your case. We use Windows NT services to start/stop the repository servers a