Float in Hour

Dear All
Can system calculate Total float and free float in hours? System is calculating in days and critical path is dependent on that.
Thanks
Atif

Hi Asharif,
In Std SAP, Activity Floats always calculated in "Days".
Vemula

Similar Messages

  • Truncating numbers

    I have a program I have written to work on math operators. It is a simple input for hours worked and payrate and it spits out multiple answers of math functions.
    Everything works fine with the math, but I have extremely long numbers after the decimal points. (i defined them as doubles ... should they be floats?)
    Is there a way in Java to truncate a number after the 2nd decimal and round up? I looked into curency conversion, but i wasn't sure if that was correct
    import java.io.*;
    import java.text.*;
    public class Paycheck {
        public static void main (String args[]) {
            String input1;
            String input2;
            String input3;
            float PayRate, Hours;
            double Gross, gross1, Net, Taxed, Insured, Deposited, Ficad, OT, OT1, Tax, Fica, DD, Ins;
            boolean badInput1;
            boolean badInput2;
            boolean GoOn;
            // simple math variable to be deducted at runtime
            final double TAX1 = 1.06;
            final double INS1 = 1.03;
            final double FICA1 = 1.04;
            final double DEP1 = 1.07;      
            OT = 0;
            do {
                do {
                    System.out.println("Enter your hours worked: ");
                    try {
                        BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
                        input1 = in.readLine();
                    } catch(IOException ex) { return; }       
                    try {
                        Hours = Float.parseFloat(input1);
                        badInput1 = false;
                    } catch(NumberFormatException ex) {                
                     System.out.println(ex.getMessage() + " is an invalid number." );
                        badInput1 = true;
                    } while (badInput1);
                 do {
                    System.out.println("Enter your Pay Rate: ");
                   try {
                        BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
                        input2 = in.readLine();
                    } catch(IOException ex) { return; }
                    try {
                        PayRate = Float.parseFloat(input2);
                        badInput2 = false;
                    } catch(NumberFormatException ex) {
                        System.out.println(ex.getMessage() + " is an invalid number." );
                        badInput2 = true;
                } while (badInput2);
                    //Assign the variables the values
                    Hours = Float.parseFloat(input1);
                    PayRate = Float.parseFloat(input2);
                    // Check for overtime and calculate as needed
                    if (Hours > 40){
                       OT1 = (Hours - 40);
                       OT = OT1 * (PayRate * 1.5);
                       Gross = Gross + OT - (OT1 * PayRate);
                   else {
                       Gross = (Hours * PayRate);           
                     //deductions to be made from the paycheck                  
                    Tax = Gross - (Gross / TAX1);
                    Insured = Gross - (Gross / INS1);
                    Deposited = Gross - (Gross / DEP1);
                    Fica = Gross - (Gross / FICA1);
                    Net = Gross - (Tax + Insured + Fica + Deposited);
                     /*Returns the values and prints statements
                    $ is hard coded into the string.
                    No currency value has been assigned.
                    System.out.println(" ");
                    System.out.println( Hours + " Hours at $" + PayRate + " is $" + Gross);
                    System.out.println(" ");
                    System.out.println("Taxes paid was $" + Tax);
                    System.out.println("Insurance paid was $" + Insured);
                    System.out.println("Fica got $" + Fica);
                    System.out.println("$" + Deposited + " was direct deposited");
                    System.out.println(" ");
                    System.out.println("Your total Net pay was $" + Net);
                     //check for continue using program or not
                    System.out.println("Do more math?  (Y/N)");
                    try {
                        BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
                        input3 = in.readLine();
                        // keepGoing will be false for any input except Y or y
                        GoOn = input3 !=  null && input3.equalsIgnoreCase("Y");
                } catch(IOException ex) { return; }
            } while (GoOn);
    }

    Now, I have actually implemented both the currency format I found, as well as the decimal format that was mentioned and utilized an additional if statement to check the overtime values again and output if there was overtime earned, and to show how much was earned. Thanks again for the decimal value idea as it has now been used to "truncate" the value of the overtime hours worked.
    THANK YOU !! :-)
    import java.io.*;
    import java.text.*;
    public class Paycheck {
        public static void main (String args[]) {
            String input1;
            String input2;
            String input3;
            float PayRate, Hours;
            double Gross, gross1, Net, Taxed, Insured, Deposited, Ficad, OT, OT1, OTRate, Tax, Fica, DD, Ins;
            boolean badInput1;
            boolean badInput2;
            boolean GoOn;       
            final double TAX1 = 1.06;
            final double INS1 = 1.03;
            final double FICA1 = 1.04;
            final double DEP1 = 1.07;      
            OT = 0;
            OT1 = 0;
            OTRate = 0;
            NumberFormat fmt1 = NumberFormat.getCurrencyInstance();
            DecimalFormat df= new DecimalFormat("0.00"); // two decimal digits
            do {
                do {
                    System.out.println("Enter your hours worked: ");
                    try {
                        BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
                        input1 = in.readLine();
                    } catch(IOException ex) { return; }       
                    try {
                        Hours = Float.parseFloat(input1);
                        badInput1 = false;
                    } catch(NumberFormatException ex) {                
                     System.out.println(ex.getMessage()+ " is an invalid number." );
                        badInput1 = true;
                    } while (badInput1);
                 do {
                    System.out.println("Enter your Pay Rate: ");
                   try {
                        BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
                        input2 = in.readLine();
                    } catch(IOException ex) { return; }
                    try {
                        PayRate = Float.parseFloat(input2);
                        badInput2 = false;
                    } catch(NumberFormatException ex) {
                        System.out.println(ex.getMessage() + " is an invalid number." );
                        badInput2 = true;
                } while (badInput2);
                    Hours = Float.parseFloat(input1);
                    PayRate = Float.parseFloat(input2);
                    Gross = (Hours * PayRate);
                    if (Hours > 40){
                       OT1 = (Hours - 40);
                       OT = OT1 * (PayRate * 1.5);
                       Gross = Gross + OT - (OT1 * PayRate);
                       OTRate = (PayRate * 1.5);
                   else {
                       Gross = (Hours * PayRate);           
                    Tax = Gross - (Gross / TAX1);
                    Insured = Gross - (Gross / INS1);
                    Deposited = Gross - (Gross / DEP1);
                    Fica = Gross - (Gross / FICA1);
                    Net = Gross - (Tax + Insured + Fica + Deposited);
                    System.out.println(" ");
                    System.out.println( Hours + " Hours at " + fmt1.format(PayRate) + " per hour is " + fmt1.format(Gross));
                    System.out.println("Your total Net pay was 80% of your gross, or " + fmt1.format(Net));
                    if (Hours > 40){
                       System.out.println("From working " + df.format(OT1) + " hours of overtime, You earned " + fmt1.format(OTRate) + " per hour, or " + fmt1.format(OT));
                    System.out.println(" ");
                    System.out.println("Taxes paid at 6% was " + fmt1.format(Tax));
                    System.out.println("3% went to Insurance, or " + fmt1.format(Insured));
                    System.out.println("Fica got 4%, or " + fmt1.format(Fica));
                    System.out.println(fmt1.format(Deposited) + " (7%) was direct deposited");
                    System.out.println(" ");     
                    System.out.println("Do more math?  (Y/N)");
                    try {
                        BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
                        input3 = in.readLine();
                        // keepGoing will be false for any input except Y or y
                        GoOn = input3 !=  null && input3.equalsIgnoreCase("Y");
                } catch(IOException ex) { return; }
            } while (GoOn);
    }

  • Simple JSlider question

    Hello,
    I'm having a problem with a JSlider. I have a timer that updates the slider's position every so many seconds. The setValue(int) method doesn't seem to reset the slider position, though. When I check the value w/ getValue(), however, it is correct. Any ideas?
    public class TimeSlider extends JSlider implements TimeListener {
      protected Day day;
      public static void main(String[] args) {
        JFrame frame = new JFrame();
        Calendar c = new Calendar();
        TimeUpdater updater = new TimeUpdater(5000, c);
        updater.start();
        Day d = c.getYear(2003).getMonth(7).getDay(30);
        TimeSlider slider = new TimeSlider(d);
        updater.addTimeListener(slider);
        frame.getContentPane().add(new TimeSlider(d), BorderLayout.CENTER);
        frame.setSize(500,500);
        frame.setLocation(300,300);
        frame.setVisible(true);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
      public TimeSlider(Day day) {
        super(JSlider.VERTICAL, 0, 96, 0);
        this.day = day;
        init();
      public void timeChanged(TimeEvent e) {
        Day d = e.getDay();
        Date date = d.getDate();
        Date thisDate = day.getDate();
        if (!date.equals(thisDate)) return;
        else {
          // set new slider position
          Time time = e.getTime();
          int hour = time.getHour();
          int min = time.getMin();
          int amOrPm = time.getTag();
          float val = hour*4 + ((float)min/60*4);
          if (amOrPm == Time.PM) val += 12*4;
          setValue((int)val);
          revalidate();
          repaint();
          System.out.println(getValue());
       * Setup methods
      public void init() {
        setMajorTickSpacing(4);
        setMinorTickSpacing(1);
        setPaintLabels(true);
        setPaintTicks(true);
        setSnapToTicks(true);
       * end of Setup methods
    }Thanks in advance. Sorry if I don't respond promptly, I am leaving and will not be back until tomorrow.
    -kc

    Ok, another observation:
    any setValue(...) call found in the constructor OR a method called by the constructor, works properly. The slider is repainted in the correct position.
    for example:
    public TimeSlider(Day d) {
    setValue(10); // works
    init(); // works
    public void init() {
    setValue(5);
    any setValue(...) call AFTER the constructor has finished, i.e. from an outside class, does not work properly.
    // another class:
    public static void main(String[] args) {
    TimeSlider s = new TimeSlider(new Day(...));
    s.setValue(7); // does not work
    s.init(); // does not work
    }

  • MacBook Air keeps playing the restart sound every few hours

    So my Macbook Air keeps playing the restart sound every few hours. It's that "Dummmmmmmm" sound when you first boot up the computer. Things I noticed: when the sound played and I quickly went to open my laptop it was like nothing has happened - I had my Google Chrome window from the previous session open, everything was just normal as if I had just opened the laptop to resume using it. This has only happened when the Mac is folded up. Today it just happened at approximately 10:00 and here's the log:
    23/02/2014 10:00:04.000 am bootlog[0]: BOOT_TIME 1393167604 0
    23/02/2014 10:00:06.000 am syslogd[17]: Configuration Notice:
    ASL Module "com.apple.appstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    23/02/2014 10:00:06.000 am syslogd[17]: Configuration Notice:
    ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl".
    Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".
    23/02/2014 10:00:06.000 am syslogd[17]: Configuration Notice:
    ASL Module "com.apple.authd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    23/02/2014 10:00:06.000 am syslogd[17]: Configuration Notice:
    ASL Module "com.apple.bookstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    23/02/2014 10:00:06.000 am syslogd[17]: Configuration Notice:
    ASL Module "com.apple.eventmonitor" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    23/02/2014 10:00:06.000 am syslogd[17]: Configuration Notice:
    ASL Module "com.apple.install" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    23/02/2014 10:00:06.000 am syslogd[17]: Configuration Notice:
    ASL Module "com.apple.iokit.power" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    23/02/2014 10:00:06.000 am syslogd[17]: Configuration Notice:
    ASL Module "com.apple.mail" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    23/02/2014 10:00:06.000 am syslogd[17]: Configuration Notice:
    ASL Module "com.apple.MessageTracer" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    23/02/2014 10:00:06.000 am syslogd[17]: Configuration Notice:
    ASL Module "com.apple.performance" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    23/02/2014 10:00:06.000 am syslogd[17]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    23/02/2014 10:00:06.000 am syslogd[17]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    23/02/2014 10:00:06.000 am syslogd[17]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    23/02/2014 10:00:06.000 am syslogd[17]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    23/02/2014 10:00:06.000 am syslogd[17]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    23/02/2014 10:00:06.000 am syslogd[17]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    23/02/2014 10:00:06.000 am syslogd[17]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    23/02/2014 10:00:06.000 am kernel[0]: Longterm timer threshold: 1000 ms
    23/02/2014 10:00:06.000 am kernel[0]: PMAP: PCID enabled
    23/02/2014 10:00:06.000 am kernel[0]: PMAP: Supervisor Mode Execute Protection enabled
    23/02/2014 10:00:06.000 am kernel[0]: Darwin Kernel Version 13.0.0: Thu Sep 19 22:22:27 PDT 2013; root:xnu-2422.1.72~6/RELEASE_X86_64
    23/02/2014 10:00:06.000 am kernel[0]: vm_page_bootstrap: 901222 free pages and 139162 wired pages
    23/02/2014 10:00:06.000 am kernel[0]: kext submap [0xffffff7f807a5000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a5000]
    23/02/2014 10:00:06.000 am kernel[0]: zone leak detection enabled
    23/02/2014 10:00:06.000 am kernel[0]: "vm_compressor_mode" is 4
    23/02/2014 10:00:06.000 am kernel[0]: standard timeslicing quantum is 10000 us
    23/02/2014 10:00:06.000 am kernel[0]: standard background quantum is 2500 us
    23/02/2014 10:00:06.000 am kernel[0]: mig_table_max_displ = 74
    23/02/2014 10:00:06.000 am kernel[0]: TSC Deadline Timer supported and enabled
    23/02/2014 10:00:06.000 am kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    23/02/2014 10:00:06.000 am kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    23/02/2014 10:00:06.000 am kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=1 Enabled
    23/02/2014 10:00:06.000 am kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=3 Enabled
    23/02/2014 10:00:06.000 am kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=255 Disabled
    23/02/2014 10:00:06.000 am kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=255 Disabled
    23/02/2014 10:00:06.000 am kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=255 Disabled
    23/02/2014 10:00:06.000 am kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=255 Disabled
    23/02/2014 10:00:06.000 am kernel[0]: calling mpo_policy_init for TMSafetyNet
    23/02/2014 10:00:06.000 am kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    23/02/2014 10:00:06.000 am kernel[0]: calling mpo_policy_init for Sandbox
    23/02/2014 10:00:06.000 am kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    23/02/2014 10:00:06.000 am kernel[0]: calling mpo_policy_init for Quarantine
    23/02/2014 10:00:06.000 am kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    23/02/2014 10:00:06.000 am kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    23/02/2014 10:00:06.000 am kernel[0]: The Regents of the University of California. All rights reserved.
    23/02/2014 10:00:06.000 am kernel[0]: MAC Framework successfully initialized
    23/02/2014 10:00:06.000 am kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    23/02/2014 10:00:06.000 am kernel[0]: AppleKeyStore starting (BUILT: Sep 19 2013 22:20:34)
    23/02/2014 10:00:06.000 am kernel[0]: IOAPIC: Version 0x20 Vectors 64:103
    23/02/2014 10:00:06.000 am kernel[0]: ACPI: sleep states S0 S3 S4 S5
    23/02/2014 10:00:06.000 am kernel[0]: pci (build 22:16:29 Sep 19 2013), flags 0x63408, pfm64 (39 cpu) 0x7f80000000, 0x80000000
    23/02/2014 10:00:06.000 am kernel[0]: Sleep failure code 0x00000000 0x1f006500
    23/02/2014 10:00:06.000 am kernel[0]: [ PCI configuration begin ]
    23/02/2014 10:00:06.000 am kernel[0]: console relocated to 0x7f90000000
    23/02/2014 10:00:06.000 am kernel[0]: [ PCI configuration end, bridges 12, devices 14 ]
    23/02/2014 10:00:06.000 am kernel[0]: AppleIntelLpssSpiController::_notificationPublishedHandler: AppleIntelLpssDmac did show up, fDmacService 0xffffff8022796400
    23/02/2014 10:00:06.000 am kernel[0]: AppleIntelLpssSpiController::_notificationPublishedHandler: AppleIntelLpssGspi channel# 1 did show up, gspi 0xffffff8081c53000
    23/02/2014 10:00:06.000 am kernel[0]: AppleHSSPIController::start Start Succeeded
    23/02/2014 10:00:06.000 am kernel[0]: AppleThunderboltNHIType2::setupPowerSavings - GPE based runtime power management
    23/02/2014 10:00:06.000 am kernel[0]: mcache: 4 CPU(s), 64 bytes CPU cache line size
    23/02/2014 10:00:06.000 am kernel[0]: mbinit: done [64 MB total pool size, (42/21) split]
    23/02/2014 10:00:06.000 am kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    23/02/2014 10:00:06.000 am kernel[0]: rooting via boot-uuid from /chosen: D4475447-00EF-3DF8-B55C-AC39F0146EC8
    23/02/2014 10:00:06.000 am kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    23/02/2014 10:00:06.000 am kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    23/02/2014 10:00:06.000 am kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    23/02/2014 10:00:06.000 am kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    23/02/2014 10:00:06.000 am kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    23/02/2014 10:00:06.000 am kernel[0]: AppleHSSPIController::HandleMessage Device Wake by Host
    23/02/2014 10:00:06.000 am kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP06@1C,5/IOPCI2PCIBridg e/SSD0@0/AppleAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageD evice/IOBlockStorageDriver/APPLE SSD SD0128F Media/IOGUIDPartitionScheme/未命名@2
    23/02/2014 10:00:06.000 am kernel[0]: BSD root: disk0s2, major 1, minor 2
    23/02/2014 10:00:06.000 am kernel[0]: jnl: b(1, 2): replay_journal: from: 12412416 to: 14165504 (joffset 0x384000)
    23/02/2014 10:00:06.000 am kernel[0]: srom rev:11
    23/02/2014 10:00:06.000 am kernel[0]: ARPT: 0.895219: ChangeVCO => vco:960, xtalF:40, frac: 98, ndivMode: 3, ndivint: 24
    23/02/2014 10:00:06.000 am kernel[0]: ARPT: 0.895253: Data written into the PLL_CNTRL_ADDR2: 00000c31
    23/02/2014 10:00:06.000 am kernel[0]: ARPT: 0.895327: Data written into the PLL_CNTRL_ADDR3 (Fractional): 0000100e
    23/02/2014 10:00:06.000 am kernel[0]: ARPT: 0.908490: BTCOEXIST off
    23/02/2014 10:00:06.000 am kernel[0]: ARPT: 0.909092: BRCM tunables:
    23/02/2014 10:00:06.000 am kernel[0]: ARPT: 0.909117:   pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    23/02/2014 10:00:06.000 am kernel[0]: ARPT: 0.910906: wl0: Broadcom BCM43a0, vendorID[0x14e4] BAR0[0xb0600004]
    23/02/2014 10:00:06.000 am kernel[0]: 6.30.223.154 (r420397)
    23/02/2014 10:00:06.000 am kernel[0]: Apple Internal Keyboard / Trackpad::start Start Succeeded
    23/02/2014 10:00:06.000 am kernel[0]: [AppleMultitouchDevice::start] entered
    23/02/2014 10:00:06.000 am kernel[0]: jnl: b(1, 2): journal replay done.
    23/02/2014 10:00:06.000 am kernel[0]: hfs: mounted KeithDrive on device root_device
    23/02/2014 10:00:06.000 am kernel[0]: XCPM: registered
    23/02/2014 10:00:06.000 am kernel[0]: hfs: Removed 40 orphaned / unlinked files and 29 directories
    23/02/2014 10:00:06.000 am kernel[0]: USBMSC Identifier (non-unique): 00000000AP05 0x5ac 0x8406 0x5, 3
    23/02/2014 10:00:06.000 am kernel[0]: IOThunderboltSwitch<0xffffff80227db600>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    23/02/2014 10:00:06.000 am kernel[0]: IOThunderboltSwitch<0xffffff80227db600>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 12 unplug = 0
    23/02/2014 10:00:04.452 am com.apple.launchd[1]: *** launchd[1] has started up. ***
    23/02/2014 10:00:04.452 am com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    23/02/2014 10:00:06.189 am com.apple.SecurityServer[14]: Session 100000 created
    23/02/2014 10:00:06.000 am kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    23/02/2014 10:00:06.000 am kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    23/02/2014 10:00:07.428 am com.apple.SecurityServer[14]: Entering service
    23/02/2014 10:00:07.000 am kernel[0]: AirPort: Link Down on en0. Reason 8 (Disassociated because station leaving).
    23/02/2014 10:00:07.461 am configd[19]: dhcp_arp_router: en0 SSID unavailable
    23/02/2014 10:00:07.502 am UserEventAgent[11]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    23/02/2014 10:00:07.518 am UserEventAgent[11]: Captive: CNPluginHandler en0: Inactive
    23/02/2014 10:00:07.000 am kernel[0]: Previous Shutdown Cause: -128
    23/02/2014 10:00:07.000 am kernel[0]: AppleCamIn::init
    23/02/2014 10:00:07.000 am kernel[0]: AppleCamIn::probe
    23/02/2014 10:00:07.000 am kernel[0]: AppleCamIn::start
    23/02/2014 10:00:07.000 am kernel[0]: AppleCamIn::start: fS2DeviceRegs=0xffffff8096d25000 (len=65536)
    23/02/2014 10:00:07.000 am kernel[0]: AppleCamIn::start: fS2DeviceMemory=0xffffff8097617000 (len=268435456)
    23/02/2014 10:00:07.000 am kernel[0]: AppleCamIn::start: fISPRegsMem=0xffffff80236d6080 (len=1048576)
    23/02/2014 10:00:07.000 am kernel[0]: virtual bool AppleCamIn::start(IOService *): about to configure DDR
    23/02/2014 10:00:07.000 am kernel[0]: IOBluetoothUSBDFU::probe
    23/02/2014 10:00:07.000 am kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x828F FirmwareVersion - 0x0078
    23/02/2014 10:00:07.000 am kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0xbc00 ****
    23/02/2014 10:00:07.000 am kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0xbc00 ****
    23/02/2014 10:00:07.000 am kernel[0]: init
    23/02/2014 10:00:07.000 am kernel[0]: probe
    23/02/2014 10:00:07.000 am kernel[0]: start
    23/02/2014 10:00:07.000 am kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0xbc00
    23/02/2014 10:00:07.000 am kernel[0]: [IOBluetoothHCIController][start] -- completed
    23/02/2014 10:00:07.000 am kernel[0]: hmm.. mismatch sizes: 3100 vs 20
    23/02/2014 10:00:07.000 am kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    23/02/2014 10:00:07.000 am kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0x6ec0 -- 0xf000 -- 0xbc00 ****
    23/02/2014 10:00:07.000 am kernel[0]: DSMOS has arrived
    23/02/2014 10:00:07.000 am kernel[0]: IOPPF - IODeviceTree:/efi/platform/StartupPowerEvents: 0x0
    23/02/2014 10:00:07.000 am kernel[0]: IOPPF: XCPM mode
    23/02/2014 10:00:07.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    23/02/2014 10:00:07.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    23/02/2014 10:00:07.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    23/02/2014 10:00:07.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    23/02/2014 10:00:07.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    23/02/2014 10:00:07.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    23/02/2014 10:00:07.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    23/02/2014 10:00:07.000 am kernel[0]: save_ddr_phy_regs: saving 127 DDR PHY shmoo-calibrated registers
    23/02/2014 10:00:07.000 am kernel[0]: AppleCamIn::initACPI - status = 0x00000000, acpi_path_object = 0xffffff80223a84a0
    23/02/2014 10:00:07.000 am kernel[0]: AppleCamIn::initACPI - status = 0x00000000, acpi_path = IOACPIPlane:/_SB/PCI0@0/RP02@1c0001/CMRA@0
    23/02/2014 10:00:07.000 am kernel[0]: AppleCamIn::initACPI - status = 0x00000000, acpi_device_entry = 0xffffff8022717700
    23/02/2014 10:00:07.000 am kernel[0]: AppleCamIn::initACPI - status = 0x00000000, fACPIDevice = 0xffffff8022717700
    23/02/2014 10:00:07.000 am kernel[0]: AppleCamIn::initACPI - status = 0x00000000, fACPIPowerEnabled = 1
    23/02/2014 10:00:07.000 am kernel[0]: AppleCamIn::start - link control offset in PCI bridge = 0x50
    23/02/2014 10:00:07.000 am kernel[0]: AppleCamIn::start - pmcsr offset in PCI bridge = 0xa4
    23/02/2014 10:00:07.000 am kernel[0]: AppleCamIn::power_off_hardware
    23/02/2014 10:00:07.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    23/02/2014 10:00:07.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    23/02/2014 10:00:07.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    23/02/2014 10:00:07.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    23/02/2014 10:00:07.000 am kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    23/02/2014 10:00:07.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    23/02/2014 10:00:07.920 am configd[19]: network changed.
    23/02/2014 10:00:07.921 am configd[19]: setting hostname to "KeithdeMacBook-Air.local"
    23/02/2014 10:00:07.000 am kernel[0]: NTFS driver 3.11 [Flags: R/W].
    23/02/2014 10:00:07.000 am kernel[0]: NTFS volume name BOOTCAMP, version 3.1.
    23/02/2014 10:00:08.021 am fseventsd[47]: event logs in /.fseventsd out of sync with volume.  destroying old logs. (962 4 1670)
    23/02/2014 10:00:08.021 am fseventsd[47]: log dir: /.fseventsd getting new uuid: E03FF15F-787F-471A-B187-95824E52D0EF
    23/02/2014 10:00:08.000 am kernel[0]: AppleCamIn::initForPM
    23/02/2014 10:00:08.000 am kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    23/02/2014 10:00:08.000 am kernel[0]: en1: promiscuous mode enable succeeded
    23/02/2014 10:00:08.000 am kernel[0]: VM Swap Subsystem is ON
    23/02/2014 10:00:08.839 am hidd[78]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    23/02/2014 10:00:08.840 am hidd[78]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    23/02/2014 10:00:08.000 am kernel[0]: Unrecognized reportID 0x02
    23/02/2014 10:00:08.948 am loginwindow[73]: Login Window Application Started
    23/02/2014 10:00:08.948 am awacsd[87]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)
    23/02/2014 10:00:08.960 am awacsd[87]: InnerStore CopyAllZones: no info in Dynamic Store
    23/02/2014 10:00:08.966 am digest-service[92]: label: default
    23/02/2014 10:00:08.967 am digest-service[92]:           dbname: od:/Local/Default
    23/02/2014 10:00:08.967 am digest-service[92]:           mkey_file: /var/db/krb5kdc/m-key
    23/02/2014 10:00:08.967 am digest-service[92]:           acl_file: /var/db/krb5kdc/kadmind.acl
    23/02/2014 10:00:08.980 am mDNSResponder[70]: mDNSResponder mDNSResponder-522.1.11 (Aug 24 2013 23:49:34) starting OSXVers 13
    23/02/2014 10:00:08.988 am digest-service[92]: digest-request: uid=0
    23/02/2014 10:00:09.001 am com.apple.usbmuxd[55]: usbmuxd-327.4 on Jan  7 2014 at 01:25:07, running 64 bit
    23/02/2014 10:00:09.042 am apsd[89]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    23/02/2014 10:00:09.044 am digest-service[92]: digest-request: netr probe 0
    23/02/2014 10:00:09.045 am digest-service[92]: digest-request: init request
    23/02/2014 10:00:09.055 am digest-service[92]: digest-request: init return domain: BUILTIN server: KEITHDEMACBOOK-AIR indomain was: <NULL>
    23/02/2014 10:00:09.107 am configd[19]: network changed.
    23/02/2014 10:00:09.109 am configd[19]: network changed: DNS*
    23/02/2014 10:00:09.114 am mDNSResponder[70]: D2D_IPC: Loaded
    23/02/2014 10:00:09.114 am mDNSResponder[70]: D2DInitialize succeeded
    23/02/2014 10:00:09.119 am mDNSResponder[70]:   4: Listening for incoming Unix Domain Socket client requests
    23/02/2014 10:00:09.164 am networkd[115]: networkd.115 built Aug 24 2013 22:08:46
    23/02/2014 10:00:09.179 am WindowServer[100]: Server is starting up
    23/02/2014 10:00:09.183 am WindowServer[100]: Session 256 retained (2 references)
    23/02/2014 10:00:09.183 am WindowServer[100]: Session 256 released (1 references)
    23/02/2014 10:00:09.187 am mds[69]: (Normal) FMW: FMW 0 0
    23/02/2014 10:00:09.203 am mds[69]: (Normal) Volume: volume:0x7fc551812800 ********** Bootstrapped Creating a default store:1 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/BOOTCAMP
    23/02/2014 10:00:09.212 am WindowServer[100]: Session 256 retained (2 references)
    23/02/2014 10:00:09.216 am WindowServer[100]: init_page_flip: page flip mode is on
    23/02/2014 10:00:09.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    23/02/2014 10:00:09.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    23/02/2014 10:00:09.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    23/02/2014 10:00:09.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    23/02/2014 10:00:09.305 am WindowServer[100]: Found 17 modes for display 0x00000000 [9, 8]
    23/02/2014 10:00:09.309 am locationd[75]: NBB-Could not get UDID for stable refill timing, falling back on random
    23/02/2014 10:00:09.312 am WindowServer[100]: Found 1 modes for display 0x00000000 [1, 0]
    23/02/2014 10:00:09.316 am WindowServer[100]: Found 1 modes for display 0x00000000 [1, 0]
    23/02/2014 10:00:09.321 am WindowServer[100]: mux_initialize: Couldn't find any matches
    23/02/2014 10:00:09.323 am WindowServer[100]: Found 17 modes for display 0x00000000 [9, 8]
    23/02/2014 10:00:09.328 am WindowServer[100]: Found 1 modes for display 0x00000000 [1, 0]
    23/02/2014 10:00:09.329 am WindowServer[100]: Found 1 modes for display 0x00000000 [1, 0]
    23/02/2014 10:00:09.361 am locationd[75]: Location icon should now be in state 'Inactive'
    23/02/2014 10:00:09.365 am WindowServer[100]: WSMachineUsesNewStyleMirroring: true
    23/02/2014 10:00:09.367 am WindowServer[100]: Display 0x04273c00: GL mask 0x1; bounds (0, 0)[1440 x 900], 17 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9cf0, S/N 0, Unit 0, Rotation 0
    UUID 0x933c106c08bc09aaf750c2a74a119def
    23/02/2014 10:00:09.368 am WindowServer[100]: Display 0x003f003f: GL mask 0x8; bounds (0, 0)[1920 x 1200], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    23/02/2014 10:00:09.368 am WindowServer[100]: Display 0x003f003e: GL mask 0x4; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    23/02/2014 10:00:09.368 am WindowServer[100]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    23/02/2014 10:00:09.376 am locationd[75]: locationd was started after an unclean shutdown
    23/02/2014 10:00:09.390 am WindowServer[100]: WSSetWindowTransform: Singular matrix
    23/02/2014 10:00:09.390 am WindowServer[100]: WSSetWindowTransform: Singular matrix
    23/02/2014 10:00:09.407 am WindowServer[100]: Display 0x04273c00: GL mask 0x1; bounds (0, 0)[1440 x 900], 17 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9cf0, S/N 0, Unit 0, Rotation 0
    UUID 0x933c106c08bc09aaf750c2a74a119def
    23/02/2014 10:00:09.407 am WindowServer[100]: Display 0x003f003f: GL mask 0x8; bounds (2464, 0)[1 x 1], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    23/02/2014 10:00:09.407 am WindowServer[100]: Display 0x003f003e: GL mask 0x4; bounds (2465, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    23/02/2014 10:00:09.407 am WindowServer[100]: Display 0x003f003d: GL mask 0x2; bounds (2466, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    23/02/2014 10:00:09.408 am WindowServer[100]: CGXPerformInitialDisplayConfiguration
    23/02/2014 10:00:09.408 am WindowServer[100]:   Display 0x04273c00: Unit 0; Vendor 0x610 Model 0x9cf0 S/N 0 Dimensions 11.42 x 7.09; online enabled built-in, Bounds (0,0)[1440 x 900], Rotation 0, Resolution 1
    23/02/2014 10:00:09.408 am WindowServer[100]:   Display 0x003f003f: Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2464,0)[1 x 1], Rotation 0, Resolution 1
    23/02/2014 10:00:09.408 am WindowServer[100]:   Display 0x003f003e: Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2465,0)[1 x 1], Rotation 0, Resolution 1
    23/02/2014 10:00:09.408 am WindowServer[100]:   Display 0x003f003d: Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2466,0)[1 x 1], Rotation 0, Resolution 1
    23/02/2014 10:00:09.422 am airportd[91]: airportdProcessDLILEvent: en0 attached (up)
    23/02/2014 10:00:09.000 am kernel[0]: AirPort_Brcm4360_P2PInterface::init name <p2p0> role 1
    23/02/2014 10:00:09.000 am kernel[0]: AirPort_Brcm4360_P2PInterface::init() <p2p> role 1
    23/02/2014 10:00:09.435 am WindowServer[100]: GLCompositor: GL renderer id 0x01024500, GL mask 0x0000000f, accelerator 0x00004593, unit 0, caps QEX|MIPMAP, vram 1024 MB
    23/02/2014 10:00:09.436 am WindowServer[100]: GLCompositor: GL renderer id 0x01024500, GL mask 0x0000000f, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    23/02/2014 10:00:09.436 am WindowServer[100]: GLCompositor enabled for tile size [256 x 256]
    23/02/2014 10:00:09.436 am WindowServer[100]: CGXGLInitMipMap: mip map mode is on
    23/02/2014 10:00:09.447 am loginwindow[73]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    23/02/2014 10:00:09.469 am systemkeychain[96]: done file: /var/run/systemkeychaincheck.done
    23/02/2014 10:00:09.579 am WindowServer[100]: Display 0x04273c00: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    23/02/2014 10:00:09.635 am launchctl[125]: com.apple.findmymacmessenger: Already loaded
    23/02/2014 10:00:09.654 am com.apple.SecurityServer[14]: Session 100004 created
    23/02/2014 10:00:09.721 am loginwindow[73]: Setting the initial value of the magsave brightness level 2
    23/02/2014 10:00:09.727 am UserEventAgent[127]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    23/02/2014 10:00:09.762 am loginwindow[73]: Login Window Started Security Agent
    23/02/2014 10:00:09.855 am SecurityAgent[134]: This is the first run
    23/02/2014 10:00:09.856 am SecurityAgent[134]: MacBuddy was run = 0
    23/02/2014 10:00:09.877 am SecurityAgent[134]: User info context values set for keithy
    23/02/2014 10:00:09.878 am WindowServer[100]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x04273c00 device: 0x7f8b61e10da0  isBackBuffered: 1 numComp: 3 numDisp: 3
    23/02/2014 10:00:09.878 am WindowServer[100]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7f8b61e10da0) - enabling OpenGL
    23/02/2014 10:00:10.000 am kernel[0]: hfs: mounted Recovery HD on device disk0s3
    23/02/2014 10:00:10.123 am mds[69]: (Normal) Volume: volume:0x7fc551826000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/Recovery HD
    23/02/2014 10:00:10.208 am fseventsd[47]: Logging disabled completely for device:1: /Volumes/Recovery HD
    23/02/2014 10:00:10.000 am kernel[0]: hfs: unmount initiated on Recovery HD on device disk0s3
    23/02/2014 10:00:10.276 am loginwindow[73]: Login Window - Returned from Security Agent
    23/02/2014 10:00:10.313 am loginwindow[73]: USER_PROCESS: 73 console
    23/02/2014 10:00:10.000 am kernel[0]: AppleKeyStore:Sending lock change 0
    23/02/2014 10:00:10.457 am com.apple.launchd.peruser.501[146]: Background: Aqua: Registering new GUI session.
    23/02/2014 10:00:10.475 am com.apple.launchd.peruser.501[146]: (com.spotify.webhelper) Unknown key: SpotifyPath
    23/02/2014 10:00:10.476 am com.apple.launchd.peruser.501[146]: (com.apple.cmfsyncagent) Ignored this key: UserName
    23/02/2014 10:00:10.476 am com.apple.launchd.peruser.501[146]: (com.apple.EscrowSecurityAlert) Unknown key: seatbelt-profiles
    23/02/2014 10:00:10.477 am com.apple.launchd.peruser.501[146]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    23/02/2014 10:00:10.481 am launchctl[148]: com.apple.pluginkit.pkd: Already loaded
    23/02/2014 10:00:10.481 am launchctl[148]: com.apple.sbd: Already loaded
    23/02/2014 10:00:10.493 am distnoted[150]: # distnote server agent  absolute time: 7.309113255   civil time: Sun Feb 23 10:00:10 2014   pid: 150 uid: 501  root: no
    23/02/2014 10:00:10.000 am kernel[0]: en0: 802.11d country code set to 'US'.
    23/02/2014 10:00:10.000 am kernel[0]: en0: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 144 149 153 157 161 165
    23/02/2014 10:00:10.861 am WindowServer[100]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    23/02/2014 10:00:11.094 am SystemUIServer[165]: Cannot find executable for CFBundle 0x7fa8e8d917d0 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    23/02/2014 10:00:11.098 am sharingd[177]: Starting Up...
    23/02/2014 10:00:11.171 am SystemUIServer[165]: Cannot find executable for CFBundle 0x7fa8e8d97ce0 </System/Library/CoreServices/Menu Extras/Battery.menu> (not loaded)
    23/02/2014 10:00:11.173 am SystemUIServer[165]: Cannot find executable for CFBundle 0x7fa8e8d709e0 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    23/02/2014 10:00:11.187 am mds[69]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    23/02/2014 10:00:11.285 am WindowServer[100]: Display 0x04273c00: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    23/02/2014 10:00:11.390 am WindowServer[100]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    23/02/2014 10:00:11.535 am apsd[89]: Unexpected connection from logged out uid 501
    23/02/2014 10:00:11.544 am com.apple.SecurityServer[14]: Session 100005 created
    23/02/2014 10:00:11.631 am com.apple.audio.DriverHelper[182]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    23/02/2014 10:00:11.632 am com.apple.audio.DriverHelper[182]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    23/02/2014 10:00:11.632 am com.apple.audio.DriverHelper[182]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    23/02/2014 10:00:11.632 am com.apple.audio.DriverHelper[182]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    23/02/2014 10:00:11.632 am com.apple.audio.DriverHelper[182]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    23/02/2014 10:00:11.632 am com.apple.audio.DriverHelper[182]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    23/02/2014 10:00:11.632 am com.apple.audio.DriverHelper[182]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    23/02/2014 10:00:11.633 am com.apple.audio.DriverHelper[182]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    23/02/2014 10:00:11.633 am com.apple.audio.DriverHelper[182]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    23/02/2014 10:00:11.633 am com.apple.audio.DriverHelper[182]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    23/02/2014 10:00:11.633 am com.apple.audio.DriverHelper[182]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    23/02/2014 10:00:11.633 am com.apple.audio.DriverHelper[182]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    23/02/2014 10:00:11.662 am com.apple.audio.DriverHelper[182]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    23/02/2014 10:00:11.662 am com.apple.audio.DriverHelper[182]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    23/02/2014 10:00:11.662 am com.apple.audio.DriverHelper[182]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    23/02/2014 10:00:11.860 am SystemUIServer[165]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    23/02/2014 10:00:11.860 am SystemUIServer[165]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    23/02/2014 10:00:12.017 am xpcproxy[195]: assertion failed: 13B42: xpcproxy + 3438 [EE7817B0-1FA1-3603-B88A-BD5E595DA86F]: 0x2
    23/02/2014 10:00:12.037 am com.apple.IconServicesAgent[194]: IconServicesAgent launched.
    23/02/2014 10:00:12.183 am xpcproxy[198]: assertion failed: 13B42: xpcproxy + 3438 [EE7817B0-1FA1-3603-B88A-BD5E595DA86F]: 0x2
    23/02/2014 10:00:12.495 am accountsd[199]: assertion failed: 13B42: liblaunch.dylib + 25164 [FCBF0A02-0B06-3F97-9248-5062A9DEB32C]: 0x25
    23/02/2014 10:00:12.000 am kernel[0]: ARPT: 9.541431: MacAuthEvent en0   Auth result for: 00:1d:d3:c3:b5:80  MAC AUTH succeeded
    23/02/2014 10:00:12.729 am accountsd[199]: /SourceCache/Accounts/Accounts-336.9/ACDAuthenticationPluginManager.m - -[ACDAuthenticationPluginManager credentialForAccount:client:handler:] - 230 - The authentication plugin for account "[email protected]" (DA49B773-680F-41DA-BA31-10A500BCD013) could not be found!
    23/02/2014 10:00:12.730 am accountsd[199]: /SourceCache/Accounts/Accounts-336.9/ACDAccountStore.m - __62-[ACDAccountStore credentialForAccountWithIdentifier:handler:]_block_invoke389 - 857 - No plugin provides credentials for account [email protected]. Falling back to legacy behavior.
    23/02/2014 10:00:12.000 am kernel[0]: wlEvent: en0 en0 Link UP virtIf = 0
    23/02/2014 10:00:12.000 am kernel[0]: AirPort: Link Up on en0
    23/02/2014 10:00:12.000 am kernel[0]: en0: BSSID changed to 00:1d:d3:c3:b5:80
    23/02/2014 10:00:13.000 am kernel[0]: AirPort: RSN handshake complete on en0
    23/02/2014 10:00:13.403 am com.apple.SecurityServer[14]: Session 100009 created
    23/02/2014 10:00:13.801 am WindowServer[100]: Display 0x04273c00: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    23/02/2014 10:00:14.026 am UserEventAgent[11]: Captive: [CNInfoNetworkActive:1655] en0: SSID 'GetALife' making interface primary (protected network)
    23/02/2014 10:00:14.027 am configd[19]: network changed: DNS* Proxy
    23/02/2014 10:00:14.027 am UserEventAgent[11]: Captive: CNPluginHandler en0: Evaluating
    23/02/2014 10:00:14.028 am UserEventAgent[11]: Captive: en0: Probing 'GetALife'
    23/02/2014 10:00:14.035 am configd[19]: network changed: v6(en0!:2601:b:9400:3fc:fd37:1539:24f1:3341) DNS+ Proxy+ SMB
    23/02/2014 10:00:14.225 am WindowServer[100]: Display 0x04273c00: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    23/02/2014 10:00:14.251 am com.apple.IconServicesAgent[194]: main Failed to composit image for binding VariantBinding [0x311] flags: 0x8 binding: FileInfoBinding [0x21f] - extension: mov, UTI: com.apple.quicktime-movie, fileType: MooV.
    23/02/2014 10:00:14.252 am quicklookd[209]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x203] flags: 0x8 binding: FileInfoBinding [0x103] - extension: mov, UTI: com.apple.quicktime-movie, fileType: MooV request size:16 scale: 1
    23/02/2014 10:00:14.267 am talagent[164]: CGSBindSurface: Invalid window 0x1d
    23/02/2014 10:00:14.268 am WindowServer[100]: _CGXWindowRightsRelinquish: Invalid window 0x1d
    23/02/2014 10:00:14.269 am talagent[164]: CGSConnectionRelinquishWindowRights(cid, result, reservedRights): CGError 1001 on line 875
    23/02/2014 10:00:14.269 am talagent[164]: CGSBindSurface: Invalid window 0x1a
    23/02/2014 10:00:14.270 am WindowServer[100]: _CGXWindowRightsRelinquish: Invalid window 0x1a
    23/02/2014 10:00:14.270 am talagent[164]: CGSConnectionRelinquishWindowRights(cid, result, reservedRights): CGError 1001 on line 875
    23/02/2014 10:00:14.270 am WindowServer[100]: CGXReleaseWindowList: Invalid window 29 (index 0/2)
    23/02/2014 10:00:14.270 am WindowServer[100]: CGXReleaseWindowList: Invalid window 26 (index 1/2)
    23/02/2014 10:00:14.410 am UserEventAgent[149]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    23/02/2014 10:00:14.417 am com.apple.dock.extra[201]: <NSXPCConnection: 0x7fd693e12a50>: received an undecodable message (no exported object to receive message). Dropping message.
    23/02/2014 10:00:14.000 am kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    23/02/2014 10:00:14.000 am kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=216[ksadmin] final status 0x0, allow (remove VALID)ing page
    23/02/2014 10:00:14.592 am com.apple.time[149]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    23/02/2014 10:00:14.714 am com.apple.SecurityServer[14]: Session 100011 created
    23/02/2014 10:00:14.898 am mds[69]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    23/02/2014 10:00:14.924 am mds[69]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    23/02/2014 10:00:14.925 am mds[69]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    23/02/2014 10:00:14.985 am com.apple.time[149]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    23/02/2014 10:00:15.058 am gamed[189]: CKSoftwareMap: Registering with Daemon
    23/02/2014 10:00:15.064 am com.apple.NotesMigratorService[224]: Joined Aqua audit session
    23/02/2014 10:00:15.132 am com.apple.internetaccounts[198]: An instance 0x7fa799f9cf10 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7fa799f9d070> (
    <NSKeyValueObservance 0x7fa799f9d000: Observer: 0x7fa799f5b600, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff8695b44b, Property: 0x7fa799eb92b0>
    23/02/2014 10:00:15.271 am WindowServer[100]: disable_update_timeout: UI updates were forcibly disabled by application "talagent" for over 1.00 seconds. Server has re-enabled them.
    23/02/2014 10:00:15.652 am configd[19]: network changed: v6(en0!:2601:b:9400:3fc:bae8:56ff:fe0c:3ac2) DNS Proxy SMB
    23/02/2014 10:00:15.684 am mds[69]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    23/02/2014 10:00:15.876 am configd[19]: network changed: v6(en0:2601:b:9400:3fc:bae8:56ff:fe0c:3ac2) DNS! Proxy SMB
    23/02/2014 10:00:16.056 am Spotify[162]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    23/02/2014 10:00:16.085 am airportd[91]: _doAutoJoin: Already associated to “GetALife”. Bailing on auto-join.
    23/02/2014 10:00:16.386 am Spotify[162]: Mac OS version: 10.9
    23/02/2014 10:00:16.612 am System Preferences[158]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    23/02/2014 10:00:16.641 am WindowServer[100]: disable_update_timeout: UI updates were forcibly disabled by application "System Preferences" for over 1.00 seconds. Server has re-enabled them.
    23/02/2014 10:00:17.049 am Spotify Helper EH[228]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    23/02/2014 10:00:17.108 am WindowServer[100]: common_reenable_update: UI updates were finally reenabled by application "System Preferences" after 1.47 seconds (server forcibly re-enabled them after 1.00 seconds)
    23/02/2014 10:00:17.274 am Preview[159]: It does not make sense to draw an image when [NSGraphicsContext currentContext] is nil.  This is a programming error. Break on void _NSWarnForDrawingImageWithNoCurrentContext() to debug.  This will be logged only once.  This may break in the future.
    23/02/2014 10:00:17.282 am Google Chrome Helper[229]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    23/02/2014 10:00:17.282 am Google Chrome Helper[229]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    23/02/2014 10:00:17.301 am Google Chrome Helper[229]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    23/02/2014 10:00:17.363 am WindowServer[100]: disable_update_timeout: UI updates were forcibly disabled by application "µTorrent" for over 1.00 seconds. Server has re-enabled them.
    23/02/2014 10:00:17.491 am WindowServer[100]: disable_update_timeout: UI updates were forcibly disabled by application "Mail" for over 1.00 seconds. Server has re-enabled them.
    23/02/2014 10:00:17.560 am com.apple.Preview.TrustedBookmarksService[230]: Failure to de-serialize bookmark data file.
    23/02/2014 10:00:17.000 am kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=232[ksadmin] final status 0x0, allow (remove VALID)ing page
    23/02/2014 10:00:17.876 am WindowServer[100]: common_reenable_update: UI updates were finally reenabled by application "Mail" after 1.39 seconds (server forcibly re-enabled them after 1.00 seconds)
    23/02/2014 10:00:17.908 am Preview[159]:
    ***** AESendMessage [async] returned: -1712 [loc:0]
    23/02/2014 10:00:17.969 am uTorrent[161]: *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    23/02/2014 10:00:17.975 am uTorrent[161]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    23/02/2014 10:00:18.212 am Google Chrome Helper[233]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    23/02/2014 10:00:18.212 am Google Chrome Helper[233]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    23/02/2014 10:00:18.230 am Google Chrome Helper[233]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    23/02/2014 10:00:18.000 am kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=247[GoogleSoftwareUp] final status 0x0, allow (remove VALID)ing page
    23/02/2014 10:00:18.474 am com.apple.launchd.peruser.501[146]: (org.herf.Flux.30128[251]) Spawned and waiting for the debugger to attach before continuing...
    23/02/2014 10:00:18.536 am Spotify Helper[234]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    23/02/2014 10:00:18.588 am com.apple.launchd.peruser.501[146]: (com.apple.mrt.uiagent[239]) Exited with code: 255
    23/02/2014 10:00:19.505 am Google Chrome Helper[250]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    23/02/2014 10:00:19.506 am Google Chrome Helper[250]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    23/02/2014 10:00:19.517 am Google Chrome Helper[250]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    23/02/2014 10:00:19.641 am Google Chrome Helper[248]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    23/02/2014 10:00:19.641 am Google Chrome Helper[248]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    23/02/2014 10:00:19.655 am Google Chrome Helper[253]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    23/02/2014 10:00:19.656 am Google Chrome Helper[253]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    23/02/2014 10:00:19.659 am Google Chrome Helper[248]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    23/02/2014 10:00:19.668 am Google Chrome Helper[253]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    23/02/2014 10:00:19.724 am WindowServer[100]: common_reenable_update: UI updates were finally reenabled by application "µTorrent" after 3.36 seconds (server forcibly re-enabled them after 1.00 seconds)
    23/02/2014 10:00:19.848 am Google Chrome Helper[254]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    23/02/2014 10:00:19.848 am Google Chrome Helper[254]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    23/02/2014 10:00:19.863 am Google Chrome Helper[254]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    23/02/2014 10:00:19.868 am WiFiKeychainProxy[235]: [NO client logger] <Aug 30 2013 23:40:46> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    23/02/2014 10:00:19.869 am WiFiKeychainProxy[235]: [NO client logger] <Aug 30 2013 23:40:46> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    23/02/2014 10:00:19.975 am Spotify Helper[260]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    23/02/2014 10:00:19.997 am Google Chrome Helper[255]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    23/02/2014 10:00:19.997 am Google Chrome Helper[255]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    23/02/2014 10:00:20.018 am Spotify Helper[261]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    23/02/2014 10:00:20.020 am Google Chrome Helper[255]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    23/02/2014 10:00:21.018 am Spotify Helper[265]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    23/02/2014 10:00:21.798 am Spotify Helper[260]: The function `CGFontSetShouldUseMulticache' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    23/02/2014 10:00:21.802 am Spotify Helper[234]: The function `CGFontSetShouldUseMulticache' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    23/02/2014 10:00:22.173 am Spotify Helper[261]: The function `CGFontSetShouldUseMulticache' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    23/02/2014 10:00:22.415 am mds[69]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputerIndexed"
    23/02/2014 10:00:22.495 am mds[69]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    23/02/2014 10:00:22.499 am Spotify Helper[265]: The function `CGFontSetShouldUseMulticache' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    23/02/2014 10:00:23.971 am awacsd[87]: Exiting
    23/02/2014 10:00:25.471 am WindowServer[100]: common_reenable_update: UI updates were finally reenabled by application "talagent" after 11.19 seconds (server forcibly re-enabled them after 1.00 seconds)
    23/02/2014 10:00:26.466 am WindowServer[100]: CGError post_notification(const CGSNotificationType, void *const, const size_t, const bool, const CGSRealTimeDelta, const int, const CGSConnectionID *const, const pid_t): Timed out 1.000 second wait for reply from "(PID 226)" for synchronous notification type 102 (kCGSDisplayWillSleep) (CID 0x11c03, PID 226)
    23/02/2014 10:00:26.466 am WindowServer[100]: device_generate_desktop_screenshot: authw 0x0(0), shield 0x7f8b61e2d530(2001)
    23/02/2014 10:00:26.498 am WindowServer[100]: device_generate_lock_screen_screenshot: authw 0x0(0), shield 0x7f8b61e2d530(2001)
    23/02/2014 10:00:28.000 am kernel[0]: IOPMrootDomain: idle revert, state 21
    23/02/2014 10:00:28.714 am WindowServer[100]: CGXDisplayDidWakeNotification [25521870084]: posting kCGSDisplayDidWake
    23/02/2014 10:00:28.715 am WindowServer[100]: handle_will_sleep_auth_and_shield_windows: Deferring.
    23/02/2014 10:00:28.934 am parentalcontrolsd[278]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    23/02/2014 10:00:29.647 am ntpd[52]: proto: precision = 1.000 usec
    23/02/2014 10:00:31.058 am com.apple.IconServicesAgent[194]: main Failed to composit image for binding VariantBinding [0x15b] flags: 0x8 binding: FileInfoBinding [0x34b] - extension: jpg, UTI: public.jpeg, fileType: ????.
    23/02/2014 10:00:31.058 am quicklookd[209]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x803] flags: 0x8 binding: FileInfoBinding [0x703] - extension: jpg, UTI: public.jpeg, fileType: ???? request size:16 scale: 1
    23/02/2014 10:00:31.749 am configd[19]: network changed: v4(en0+:10.0.0.19) v6(en0:2601:b:9400:3fc:bae8:56ff:fe0c:3ac2) DNS! Proxy SMB
    23/02/2014 10:00:32.234 am com.apple.IconServicesAgent[194]: main Failed to composit image for binding VariantBinding [0x54d] flags: 0x8 binding: FileInfoBinding [0x64d] - extension: gif, UTI: com.compuserve.gif, fileType: ????.
    23/02/2014 10:00:32.234 am quicklookd[209]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0xc03] flags: 0x8 binding: FileInfoBinding [0xb03] - extension: gif, UTI: com.compuserve.gif, fileType: ???? request size:16 scale: 1
    23/02/2014 10:00:33.927 am mds_stores[117]: (Error) SecureStore: Access token 3 changed uid from -1 to 501
    23/02/2014 10:00:33.991 am Console[284]: setPresentationOptions called with NSApplicationPresentationFullScreen when there is no visible fullscreen window; this call will be ignored.
    23/02/2014 10:00:37.693 am apsd[89]: Unrecognized leaf certificate
    23/02/2014 10:00:38.075 am CalendarAgent[206]: Account refresh finished with an error
    com.apple.message.domain: com.apple.calendar.account_refresh
    com.apple.message.signature: signature
    com.apple.message.result: failure
    Sender_Mach_UUID: 1FFEB79A-E424-33F2-825D-A61EBB6A9438
    23/02/2014 10:00:38.076 am CalendarAgent[206]: [com.apple.calendar.store.log.caldav.queue] [Account refresh failed with error: Error Domain=NSURLErrorDomain Code=-1003 "A server with the specified hostname could not be found." UserInfo=0x7fe67a54b290 {NSUnderlyingError=0x7fe67a6eb8e0 "A server with the specified hostname could not be found.", NSErrorFailingURLStringKey=https://terda12%[email protected]/calendar/dav/terda12%40gmail.com /user///terda12%[email protected]/calendar/dav/terda12%40gmail.com/user/, NSErrorFailingURLKey=https://terda12%[email protected]/calendar/dav/terda12%40gmail.com /user///terda12%[email protected]/calendar/dav/terda12%40gmail.com/user/, AccountName=Calendar, CalDAVErrFromRefresh=YES, NSLocalizedDescription=A server with the specified hostname could not be found.}]
    23/02/2014 10:00:38.080 am CalendarAgent[206]: [com.apple.calendar.store.log.caldav.queue] [Adding [<CalDAVAccountRefreshQueueableOperation: 0x7fe67a44c820; Sequence: 0>] to failed operations.]
    23/02/2014 10:00:41.263 am Spotify Helper EH[290]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    23/02/2014 10:00:42.380 am Spotify Helper[291]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    23/02/2014 10:00:44.300 am ntpd[52]: ntpd: time set +0.646077 s
    23/02/2014 10:00:44.327 am com.apple.time[149]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    23/02/2014 10:00:44.354 am com.apple.time[149]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    23/02/2014 10:00:44.933 am Spotify Helper EH[290]: CoreText performance note: Client called CTFontCreateWithName() using name "Times Roman" and got font with PostScript name "Times-Roman". For best performance, only use PostScript names when calling this API.
    23/02/2014 10:00:44.934 am Spotify Helper EH[290]: CoreText performance note: Set a breakpoint on CTFontLog

    Also here's the log before it happened. As you can see there is no activity from 9:48 to 10:00 am when the sound occurred.
    23/02/2014 9:48:12.792 am ntpd[52]: FREQ state ignoring -0.145411 s
    23/02/2014 9:48:15.258 am WindowServer[96]: _CGXHWCaptureWindowList: No capable active display found.
    23/02/2014 9:48:20.000 am kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000280
    23/02/2014 9:48:20.000 am kernel[0]: ARPT: 61.319378: AirPort_Brcm43xx::powerChange: System Sleep
    23/02/2014 9:48:20.000 am kernel[0]: ARPT: 61.319390: wl0: powerChange: *** BONJOUR/MDNS OFFLOADS ARE NOT RUNNING.
    23/02/2014 9:48:20.000 am kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    23/02/2014 10:00:04.000 am bootlog[0]: BOOT_TIME 1393167604 0
    23/02/2014 10:00:06.000 am syslogd[17]: Configuration Notice:
    ASL Module "com.apple.appstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    23/02/2014 10:00:06.000 am syslogd[17]: Configuration Notice:
    ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl".
    Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".

  • Float Conversion

    I am passing 2 strings of data Social Security Number and a string to be parsed
    1) SSN 123456789
    2)String PH80.00 170915.76 AAE
    The string is parsed PH is extracted, 80.00 is extracted and 170915.76 is converted, however, it is converted to 170916.77. .01 is added to the value. Why does this occur? I think it has to do with the float. The code is as follows
    * Created on Jun 13, 2007
    * To change the template for this generated file go to
    * Window>Preferences>Java>Code Generation>Code and Comments
    package com.abbott.HRT.US018;
    * @author Administrator
    * To change the template for this generated type comment go to
    * Window>Preferences>Java>Code Generation>Code and Comments
    public class TransformData {
         * The below Function is for handling Compensation Update Records
         */ 2 examples of string passed MI80.00 242050.00 AAE Output produced is 242050.00
    PH80.00 170915.76 AAE Output produced is 170915.77
         private String compensationUpdate(String sRecord) {
              //1.Map directly the source data to target data and make changes to below lengths.
              StringBuffer sBuf = new StringBuffer(sRecord);
              //          Correction : Make the length of sBuf equal to 21 in order to reduce the risk of runtime exception
              if (sBuf.length() < 21) {
                   while (sBuf.length() != 21) {
                        sBuf.append(' ');
              //2.     Schedule Hours : Format the data into "ZZ9.99" at position 3-8
              String substring = sBuf.substring(2, 8);
              substring = formatNumber(substring, 4, 6, 2);
              sBuf.replace(2, 8, substring);
              //3.     Base Rate : Format the data into "ZZZZZZ9.99" at position 9-29. The target position will be 9-18
              substring = null;
              substring = sBuf.substring(8, 29);
              substring = formatNumber(substring, 8, 10, 2);
              sBuf.replace(8, 18, substring.substring(0, 10));
              sBuf.delete(18, 29);
              //4.     Performance Rating : For now no mapping is defined
              //At last append 434 spaces to the record
              sBuf = appendSpaces(sBuf, 434);
              return sBuf.toString();
         * The below Function is for formatting numbers Records
         private String formatNumber(
              String input,
              int position,
              int length,
              int decPlaces)
              throws NumberFormatException {
              //17.08.2007 : If empty string has come, send back the same
              int int1 = input.lastIndexOf(' ');
              int int2 = input.length();
              if (int1 == int2) {
                   return input;
              // position = actual position of dec place (e.g.4 for ZZ9.99)
              //length = actual length (e.g. 6 for ZZ9.99)
              //decPlaces = (e.g. 2 for ZZ9.99)
              //First get the input converted into float and back so as to add a decimal sign if it does not exist
              float f;
              try {
                   f = Float.parseFloat(input);
              } catch (NumberFormatException ex) {
                   throw new NumberFormatException(
                        "Exception Occurred:" + ex.getMessage());
              StringBuffer sb = new StringBuffer(length);
              sb.insert(0, f);
              //Identify the position of decimal sign and then shift it gradually
              int index = sb.indexOf(".");
              if (index < position && index != -1) {
                   while (index < (position - 1)) {
                        sb.insert(0, " ");
                        index = sb.indexOf(".");
                   /*If there is no decimal sign, put one at the desired position                         
                                            if(index == -1){
                                                 int int1 = Integer.parseInt(input);
                                                 sb.ins;
                                                 sb.insert(position,".");
              //Fill blank spaces after decimal sign with zero
              while (sb.length() < length) {
                   sb.append("0");
              return sb.toString();
    The code is as follows

    Volume is not precision. You need to be precise and informative. This end is not served by simply dumping huge volumes of code or data into a help request. If you have a large, complicated test case that is breaking a program, try to trim it and make it as small as possible.
    This is useful for at least three reasons. One: being seen to invest effort in simplifying the question makes it more likely that you'll get an answer, Two: simplifying the question makes it more likely you'll get a useful answer. Three: In the process of refining your bug report, you may develop a fix or workaround yourself.
    -- http://www.catb.org/~esr/faqs/smart-questions.html
    Example:
    assert 170915.77F == Float.parseFloat("170915.76"); // why?And here's the answer:
    http://en.wikipedia.org/wiki/Floating_point
    http://java.sun.com/developer/JDCTechTips/2003/tt0204.html#2
    http://docs.sun.com/source/806-3568/ncg_goldberg.html
    Cheers!
    ~

  • How do I remove floating music from my iMovie '11 project?

    I created a new project using iMovie '11.  When I started adding a 2nd song, for some reason, the whole project was updated with songs from my iTunes Library automatically, which is not what I desired to do.
    I deleted the songs multiple times and it seems to add more songs from a queue or floating music.  So, no matter how many time I delete the music, there was no end to it.
    Can you please help me and tell me how to remove floating music from my project?  I did spent quite a few hours on putting together a vacation movie and do not want to restart all over again.
    Thanks.
    Chessa98

    Open up the Music settings pane for the slideshow,
    uncheck the Play music during slideshow checkbox or select a different song and then click on the Choose button.

  • Is there a way to automatically open the Activity Viewer & make it float?

    I just upgraded from Panther Mail, and I really miss knowing what was going on and having to constantly open the activity viewer and reordering the windows every time I do something. Is there a way to somehow make the activity viewer open with mail each time and keep it floating above the other windows (so I can have an indication of what's going on like in Panther Mail)?
    I'm afraid I'm going to shut mail down in the middle of a crucial activity. No doubt that might well be behind all the problems that develop with it over time.
    Thanks!

    I had two problems relating directly to the Tiger upgrade, one I solved with help here. That was importing saved mail that failed to be imported into one mailbox, the saved messages were showing up as IMAP messages ("haven't been downloaded from the server yet"). When both my accounts were POP, I never even had an IMAP account. I solved that and everything else with mail is fine now, except I want to see what's going on like I was able to in Panther. I especially miss not seeing outgoing mail sent progress, especially with long messages.
    The other issue was font related, and I still cannot get Fontbook to save the fonts I have disabled, so I just removed the duplicates manually (leaving the ones in the system folder as the defaults). As long as I don't open fontbook again, and it doesn't automatically re-enable the fonts, my system is fine. I will leave it alone now for a couple of years like I was able to in Panther. I have over 3000 fonts installed and available at all times which I need for my print work.
    Other than that and a 25 minute log-in time (as it reads the fonts; in Panther it was 7 minutes and I learned to live with that) everything is finally ok.
    The long log-in might also be Spotless related; I don't know enough about it to figure it out; all I know is if it is, it is a small price to pay for the way the system flies not having to index all my loaded drives all the time, not to mention the wear and tear on my drives.
    Tiger is so much faster than Panther (once I shut down Spotlight) it's like having a processor upgrade. Once you work out all the glitches, it's definitely worth the money and time put in. I was very careful with the install... counting backup time the usual precautions and updates to everything afterward (including third-party programs), it took over 30 hours.
    Thanks!

  • ICal Invites to Outlook Users 5 Hours Off

    Hi,
    Have found a few posts on this, with even fewer answers. When I send iCal event invites to attendees who are on Win XP Outlook v 2003 sp2, the event is off by 5 hours. My 9 am appointments show up as 4 in the morning.
    Have tried resetting all time zone settings. Got some satisfaction setting time zone to floating (except now the invite is from 9 am - 9am). Have all Apple OS patches applied.
    Will trashing prefs fix this?? AND If I trash my iCal prefs will I loose all my appointments???
    I know this is likely a fight between Apple and slacker programmers at MS, but for the sake of the users, can't someone just make a fix??
    Oh yea, suggestions to fix are greatly appreciated.
    thanx,
    jeff

    Jeff,
    Oddly enough, I de-selected the option in the iCal preferences to Turn on Time Zone Support, and I was able to view events obtained from Outlook users in the correct timeframe. Not sure why this was the case, but any event sent to me as a calendar event from Outlook would always show up as GMT time zone, which is not where I'm located.
    This doesn't completely answer your question, as you were sending events out to Outlook users, but it might be worth trying?
    iMac G4 15" flatpanel 512k Combo   Mac OS X (10.1.x)  

  • HELP - Need to be able to RESET ALL CALENDARS to "FLOATING" - How To ???

    These two quotes are from the Apple Forums - they never received an Answer - my problem is IDENTICAL to these gentlemen:
    "Hi all,
    I'm just a guy who recently migrated from Palm Desktop and who doesn't like to be in Madrid, for example, only to see his Chicago appointments listed seven hours ahead. I've been managing time zones in my head my whole life and don't really need or want iCal to "help" me out with it.
    That said, does anyone know of a script available or other method that will allow one to change all events in iCal to "floating"? I would prefer to not have to do this one event at a time.
    Thanks much for your thoughts and insight.
    MacBook Mac OS X (10.4.7)
    tonyhj"
    "Re: Question re. converting multiple events to floating time zone
    Posted: Sep 9, 2006 4:25 PM in response to: Ryan Grub
    I'm glad this topic is here, and sad that it hasn't generated any useful replies in almost 20 days! I really had to dig before I found this unanswered question!
    I've posted my own - somewhat comparable - problem and possibly someone will notice and answer. My question, posted Sept 9, is entitled "Can I disable 'time zone' actions done by iCal?"
    Back to me, Real Time, August 5th, 2007:
    Does ANYONE have a solution for this? How to GLOABLLY set ALL EVENTS (or at least all events in a given Calendar) to FLOATING, including RETROACTIVELY all the way back to the very beginning of a Calendar (or even all of iCal) ???
    Perhaps an Automator Script???
    Help Please!!!
    Running:
    iCal 2.0.5, Powerbook G4, OS X 10.4.9
    Thanks!

    Turning off Time Zones does not even remotely address the problem. All that does is solve the issue of not continuing to repeat the problem in the future. But at this moment I have literally HUNDREDS (perhaps thousands) of past event entries that need to be accessed for legal reasons, and the date / time is Critically Important..... and all the dates and times are fubar due to this time zone issue. Only resetting the events (PAST) to "Floating" resolves the problem, but how to do this with hundreds (1000's) of Past Events Entries?
    i.e. How to Globally RESET all events to "Floating"?

  • Dreamweaver cs5.5 - div tags won't float next to eachother

    I have being trying to get 2 div tags to float next to eachother for hours! I've been messing with the float and messing with margins, but what ever i do the div is always somewhat under my other div tag. I want them completely side by side. I have tried changing the top and bottom margins but that doesn't work either. how can i get them side by side? One is called 'textbox' and the other 'imagewrapper'. The code is:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <link href="main.css" rel="stylesheet" type="text/css" />
    <link href="style2.css" rel="stylesheet" type="text/css" />
    <!--embedded styles for this page only-->
    <style type="text/css">
    body {
    margin:0;
    padding:0;
    font: 1em/1.5 "Lucida Sans", "Lucida Sans Unicode";
    #wrapper {
    width: 1064px;
    margin: 0 auto; /**with width, this centers page on screen**/
    background: #FFF;
    text-align:center;
    /**this styles image container**/
    #thumbs p {
              float:center;
              width: 50px;
              height: 75px;
              /**this styles caption text**/
    font: italic 14px/1.5 Geneva, Arial, Helvetica, sans-serif;
              color: #666;
              text-align:center;
              border: 1px solid silver;
              margin-top: 10px;
              margin-right: 5px;
              margin-bottom: 18px;
              margin-left: 5px;
    /**recommend using same size images**/
    #thumbs img {
              width:  50px; /**adjust width to photo**/
              height: 75px; /**adjust height to photo**/
              /**CSS3 drop shadows**/
    -moz-box-shadow: 5px 5px 5px #666;
              -webkit-box-shadow: 5px 5px 5px #666;
              -khtml-box-shadow: 5px 5px 5px #666;
              box-shadow: 5px 5px 5px #666;
    /**float clearing**/
    #thumbs:after{
              display:block;
              visibility:hidden;
              height:0;
              font-size:0;
              content: " ";
              clear: left;
    #wrapper #thumbs #imagewrapper {
              height: 362px;
              width: 280px;
              float: right;
              margin-right: 720px;
    #wrapper #thumbs #imagewrapper img {
              height: 362px;
              width: 280px;
    #wrapper #textbox {
              float: right;
              height: 300px;
              width: 600px;
              margin-right: 70px;
    .clearing {
    clear:left;
    height:px;
    width: 100%;
    </style>
    </head>
    <body>
    <div id="wrapper">
    <img src="product and website photos/header.png" width="1064" height="116" alt="header" />
    <!--begin menu -->
    <ul id="MenuBar1" class="MenuBarHorizontal">
    <li><a href="#home.html">Home</a></li>
    <li><a href="#" class="MenuBarItemSubmenu">Boutique</a><ul>
    <li><a href="#" class="MenuBarItemSubmenu">Women</a><ul>
    <li><a href="bwt.html">Tops</a></li>
    <li><a href="bws.html">Skirts/Shorts</a></li>
    <li><a href="bwl.html">Trousers/Leggings</a></li>
    <li><a href="bwa.html">Accessories</a></li>
    <li><a href="bwd.html">Dresses</a></li></ul></li>
    <li><a href="#" class="MenuBarItemSubmenu">Men</a>
    <ul>
    <li><a href="#">Tops</a></li>
    <li><a href="#">Bottoms</a></li>
    <li><a href="#">Accessories</a></li>
    </ul>
    </li>
    <li><a href="#">Semi-Unique</a></li>
    </ul>
    </li>
    <li><a class="MenuBarItemSubmenu" href="#">T-shirt Shop</a><ul>
    <li><a href="t-shirt shop.html">Men</a></li>
    <li><a href="t-shirt shop.html">Women</a></li>
    <li><a href="t-shirt shop.html">Unique</a></li>
    </ul></li>
    <li><a href="clearance.html">Clearance</a></li>
    <li><a href="#">About</a></li>
    </ul>
    <h2> </h2>
    <div id="textbox"></div>
    <div id="thumbs">
      <div id="imagewrapper"></div>
      <p> </p>
    <p> </p>
    <p> </p>
    <p> </p>
    <!--end wrapper --></div>
    <hr align="center" size="10" noshade="noshade" class="clearing" color="#999999" />
    <div align="left">&copy; 2012 your footer text goes here</div>
    </div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    </html>

    If you want to position 2 divs - one on left and other on right, the float for your left div should say float: left; and for the one on the right the CSS should say float:right;
    In your code, I see you want imagewrapper to come on right and textbox to come on left. But your float for BOTH these say right. This is where the issue lies.
    You can combine float:left and float:right to achieve side by side divs provided the overall width (container width+padding+margin) of both divs is less than or equal to the width of the wrapper div.
    In the OP's example:
    #wrapper = 1064+0+0 = 1064px
    #textbox + #imagewrapper = 600+70+280+720 = 1670px = float drop

  • Yosemite crashing every hour or so

    This all started with a frozen black screen. Wiped and re-formatted drive. Restored from Time machine. iMac now works but freezes about once an hour, and in between it is very slow with the bouncing beachball of death floating on the screen.
    I looked at a few other posts, and followed a suggestion by Linc to post specific information from Console. That follows.
    Can anyone, Linc Davis or someone else, offer any helpful insight. Please. Or do I have to box it all up and take it to Apple Repair?
    Thanks,
    Before BOOT_TIME:
    19/12/2014 3:55:39.483 pm osascript[715]: Performance: Please update this scripting addition to supply a value for ThreadSafe for each event handler: "/Library/ScriptingAdditions/SIMBL.osax" 
    19/12/2014 3:55:46.638 pm sharingd[289]: 15:55:46.638 : Starting Handoff advertising
    19/12/2014 3:55:53.568 pm discoveryd[49]: Basic NATTServer Got control URL: http://10.1.1.1:5431//uuid:78a05148-ecd9-d9ec-4851-a078a048d90002/WANPPPConnecti on:1 (ppp)
    19/12/2014 3:55:54.101 pm com.apple.backupd-helper[42]: Attempt to use XPC with a MachService that has HideUntilCheckIn set. This will result in unpredictable behavior: com.apple.backupd.status.xpc
    19/12/2014 3:55:54.633 pm sharingd[289]: 15:55:54.633 : Starting Handoff advertising
    19/12/2014 3:55:56.636 pm sharingd[289]: 15:55:56.635 : Stopping Handoff advertising
    19/12/2014 3:56:00.596 pm sharingd[289]: 15:56:00.595 : Starting Handoff advertising
    19/12/2014 3:56:05.942 pm com.apple.xpc.launchd[1]: (com.apple.PubSub.Agent[719]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.pubsub.ipc
    19/12/2014 3:56:05.942 pm com.apple.xpc.launchd[1]: (com.apple.PubSub.Agent[719]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.pubsub.notification
    19/12/2014 3:56:10.088 pm sharingd[289]: 15:56:10.088 : Starting Handoff advertising
    19/12/2014 3:56:13.581 pm sharingd[289]: 15:56:13.580 : Starting Handoff advertising
    19/12/2014 3:56:18.068 pm sharingd[289]: 15:56:18.068 : Starting Handoff advertising
    19/12/2014 3:56:24.240 pm com.apple.backupd[720]: Starting automatic backup
    19/12/2014 3:56:24.241 pm com.apple.backupd[720]: Attempting to mount network destination URL: afp://BigMac;[email protected]/Data
    19/12/2014 3:56:24.000 pm kernel[0]: AppleSRP started.
    19/12/2014 3:56:25.086 pm NetAuthSysAgent[721]: TUAMHandler::SetUAMType setting UAMType to 13
    19/12/2014 3:56:26.054 pm CleanMyDrive[357]: Skipped because nobrowse
    19/12/2014 3:56:26.055 pm 2BUA8C4S2C.com.agilebits.onepassword4-helper[503]: 510019 [HELPER:0x7f9ff1c07730:<OPHelperAppDelegate: 0x7f9ff1c10580>] S workspaceDidMount: | workspaceDidMount
    19/12/2014 3:56:26.065 pm com.apple.backupd[720]: Mounted network destination at mount point: /Volumes/Data using URL: afp://BigMac;[email protected]/Data
    19/12/2014 3:56:26.065 pm mds[32]: (Volume.Normal:2464) volume:0x7f980b045e00 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/Data
    19/12/2014 3:56:27.067 pm sharingd[289]: 15:56:27.067 : Starting Handoff advertising
    19/12/2014 3:56:27.788 pm sharingd[289]: 15:56:27.787 : Starting Handoff advertising
    19/12/2014 3:56:29.792 pm sharingd[289]: 15:56:29.792 : Stopping Handoff advertising
    19/12/2014 3:56:39.542 pm osascript[727]: Cannot find executable for CFBundle 0x7fcc90f33b10 </Library/ScriptingAdditions/QXPScriptingAdditions.osax> (not loaded)
    19/12/2014 3:56:39.542 pm osascript[727]: Performance: Please update this scripting addition to supply a value for ThreadSafe for each event handler: "/Library/ScriptingAdditions/SIMBL.osax"
    19/12/2014 3:56:59.461 pm sandboxd[271]: ([309]) com.apple.metada(309) deny file-read-data /
    19/12/2014 3:56:59.466 pm sandboxd[271]: ([309]) com.apple.metada(309) deny file-read-data /
    19/12/2014 3:56:59.470 pm sandboxd[271]: ([309]) com.apple.metada(309) deny file-read-data /
    19/12/2014 3:56:59.474 pm sandboxd[271]: ([309]) com.apple.metada(309) deny file-read-data /
    19/12/2014 3:56:59.553 pm sandboxd[271]: ([309]) com.apple.metada(309) deny file-read-data /
    19/12/2014 3:56:59.557 pm sandboxd[271]: ([309]) com.apple.metada(309) deny file-read-data /
    19/12/2014 3:56:59.561 pm sandboxd[271]: ([309]) com.apple.metada(309) deny file-read-data /
    19/12/2014 3:56:59.566 pm sandboxd[271]: ([309]) com.apple.metada(309) deny file-read-data /
    19/12/2014 3:57:09.254 pm Spotlight[303]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    19/12/2014 3:57:22.000 pm kernel[0]: jnl: disk7s2: replay_journal: from: 26140672 to: 26267648 (joffset 0x3a28000)
    19/12/2014 3:57:23.000 pm kernel[0]: jnl: disk7s2: journal replay done.
    19/12/2014 3:57:24.000 pm kernel[0]: hfs: mounted Time Machine Backups on device disk7s2
    19/12/2014 3:57:24.497 pm CleanMyDrive[357]: Disk description changed (null)
    19/12/2014 3:57:24.500 pm 2BUA8C4S2C.com.agilebits.onepassword4-helper[503]: 510019 [HELPER:0x7f9ff1c07730:<OPHelperAppDelegate: 0x7f9ff1c10580>] S workspaceDidMount: | workspaceDidMount
    19/12/2014 3:57:24.501 pm CleanMyDrive[357]: Skipped because nobrowse
    19/12/2014 3:57:24.537 pm CleanMyDrive[357]: Skipped volume because it is not at /Volumes
    19/12/2014 3:57:24.537 pm 2BUA8C4S2C.com.agilebits.onepassword4-helper[503]: 510019 [HELPER:0x7f9ff1c07730:<OPHelperAppDelegate: 0x7f9ff1c10580>] S workspaceDidMount: | workspaceDidMount
    19/12/2014 3:57:24.570 pm 2BUA8C4S2C.com.agilebits.onepassword4-helper[503]: 510019 [HELPER:0x7f9ff1c07730:<OPHelperAppDelegate: 0x7f9ff1c10580>] S workspaceDidMount: | workspaceDidMount
    19/12/2014 3:57:24.573 pm CleanMyDrive[357]: Skipped volume because it is not at /Volumes
    19/12/2014 3:57:25.502 pm com.apple.backupd[720]: Disk image /Volumes/Data/BiggerMac (3).sparsebundle mounted at: /Volumes/Time Machine Backups
    19/12/2014 3:57:26.763 pm mds[32]: (Volume.Error:880) Root store set to FSOnly with matching create! (loaded:1)
    19/12/2014 3:57:28.040 pm com.apple.backupd[720]: Backing up to /dev/disk7s2: /Volumes/Time Machine Backups/Backups.backupdb
    19/12/2014 3:57:39.600 pm osascript[762]: Cannot find executable for CFBundle 0x7feca1f1e810 </Library/ScriptingAdditions/QXPScriptingAdditions.osax> (not loaded)
    19/12/2014 3:57:39.601 pm osascript[762]: Performance: Please update this scripting addition to supply a value for ThreadSafe for each event handler: "/Library/ScriptingAdditions/SIMBL.osax"
    19/12/2014 3:57:41.754 pm com.apple.backupd[720]: Inheritance scan may be required for '/', associated with previous UUID: D8F29BBF-F34D-3241-A87A-14126F7C1698
    19/12/2014 3:57:41.845 pm com.apple.backupd[720]: Event store UUIDs don't match for volume: ST Bigger Mac HD
    19/12/2014 3:57:45.736 pm com.apple.backupd[720]: Deep event scan at path:/ reason:must scan subdirs|new event db|
    19/12/2014 3:57:45.736 pm com.apple.backupd[720]: Running event scan
    19/12/2014 3:57:45.736 pm com.apple.backupd[720]: First backup after disk inheritance for '/' - comprehensive scan required
    19/12/2014 3:58:25.000 pm kernel[0]: CoreStorageGroup::completeIORequest - error 0xe00002ca detected for LVG "Macintosh HD" (2EEDE4D9-79CA-476D-BD29-3E481E06C4F1), pv EBF34EFA-35FA-439A-98FF-7D471783713F, near LV byte offset = 10487767040.
    19/12/2014 3:58:25.000 pm kernel[0]: disk2: I/O error.
    19/12/2014 3:58:39.655 pm osascript[768]: Cannot find executable for CFBundle 0x7fd8505341c0 </Library/ScriptingAdditions/QXPScriptingAdditions.osax> (not loaded)
    19/12/2014 3:58:39.655 pm osascript[768]: Performance: Please update this scripting addition to supply a value for ThreadSafe for each event handler: "/Library/ScriptingAdditions/SIMBL.osax"
    19/12/2014 4:09:11.000 pm bootlog[0]: BOOT_TIME 1418965751 0
    System Diagnostic Reports
    1.
    Process:               fontworker [709] 
    Path:                  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Support/fontworker
    Identifier:            fontworker
    Version:               134
    Code Type:             X86-64 (Native)
    Parent Process:        launchd [1]
    Responsible:           fontworker [709]
    User ID:               0
    Date/Time:             2014-12-19 15:14:39.905 +1100
    OS Version:            Mac OS X 10.10.1 (14B25)
    Report Version:        11
    Anonymous UUID:      
    Time Awake Since Boot: 1600 seconds
    Crashed Thread:        2  Dispatch queue: XType
    Exception Type:        EXC_BAD_ACCESS (SIGBUS)
    Exception Codes:       0x000000000000000a, 0x0000000104bdc004
    VM Regions Near 0x104bdc004:
        VM_ALLOCATE            0000000104bd4000-0000000104bdc000 [   32K] r--/r-- SM=SHM
    --> mapped file            0000000104bdc000-0000000104bf9000 [  116K] rw-/rwx SM=COW  /Library/Fonts/Webdings/..namedfork/rsrc
        Dispatch continuations 0000000104c00000-0000000105400000 [ 8192K] rw-/rwx SM=PRV
    Thread 0:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff9aecc22e kevent64 + 10
    1   libdispatch.dylib              0x00007fff8d7dfa6a _dispatch_mgr_thread + 52
    Thread 1:: Dispatch queue: com.apple.root.default-qos.overcommit
    0   libsystem_kernel.dylib         0x00007fff9aecb73e __sigsuspend_nocancel + 10
    1   libdispatch.dylib              0x00007fff8d7ed3ad _dispatch_sig_thread + 45
    Thread 2 Crashed:: Dispatch queue: XType
    0   com.apple.CoreServices.CarbonCore 0x00007fff9a953d8a CheckMapHeaderCommon + 4
    1   com.apple.CoreServices.CarbonCore 0x00007fff9a9569a5 RMNewMappedRefFromMappedFork + 50
    2   libFontParser.dylib            0x00007fff90390e13 TResourceForkFileReference::TResourceForkFileReference(char const*, bool) + 79
    3   libFontParser.dylib            0x00007fff90390d4b TResourceForkSurrogate::TResourceForkSurrogate(char const*, bool) + 95
    4   libFontParser.dylib            0x00007fff9038af33 TFont::CreateFontEntitiesForFile(char const*, bool, TSimpleArray<TFont*>&, bool, short, char const*) + 541
    5   libFontParser.dylib            0x00007fff9038a783 FPFontCreateFontsWithPath + 210
    6   libCGXType.A.dylib             0x00007fff9125a931 create_private_data_with_path + 19
    7   com.apple.CoreGraphics         0x00007fff980a3e8f CGFontCreateFontsWithPath + 40
    8   com.apple.CoreGraphics         0x00007fff980a3a95 CGFontCreateFontsWithURL + 377
    9   fontworker                     0x0000000104b2901b 0x104b27000 + 8219
    10  fontworker                     0x0000000104b296e2 0x104b27000 + 9954
    11  fontworker                     0x0000000104b2b61f 0x104b27000 + 17951
    12  fontworker                     0x0000000104b2bd30 0x104b27000 + 19760
    13  libdispatch.dylib              0x00007fff8d7e9bed dispatch_mig_server + 403
    14  libdispatch.dylib              0x00007fff8d7dcc13 _dispatch_client_callout + 8
    15  libdispatch.dylib              0x00007fff8d7e787e _dispatch_source_latch_and_call + 721
    16  libdispatch.dylib              0x00007fff8d7e062b _dispatch_source_invoke + 412
    17  libdispatch.dylib              0x00007fff8d7e0154 _dispatch_queue_drain + 571
    18  libdispatch.dylib              0x00007fff8d7e1ecc _dispatch_queue_invoke + 202
    19  libdispatch.dylib              0x00007fff8d7df6b7 _dispatch_root_queue_drain + 463
    20  libdispatch.dylib              0x00007fff8d7edfe4 _dispatch_worker_thread3 + 91
    21  libsystem_pthread.dylib        0x00007fff9a1d56cb _pthread_wqthread + 729
    22  libsystem_pthread.dylib        0x00007fff9a1d34a1 start_wqthread + 13
    Thread 2 crashed with X86 Thread State (64-bit):
      rax: 0x00007fff7c014730  rbx: 0x00007fe141c06490  rcx: 0x00007fff9aecbb9e  rdx: 0x0000000105500008
      rdi: 0x0000000104bdc000  rsi: 0x000000000001c015  rbp: 0x00000001054fffb0  rsp: 0x00000001054fffb0
       r8: 0x0000000000000004   r9: 0x0000000000000000  r10: 0x00007fe141c06498  r11: 0x0000000000000202
      r12: 0x000000000001c015  r13: 0x00000000ffffffce  r14: 0x0000000105500008  r15: 0x0000000104bdc000
      rip: 0x00007fff9a953d8a  rfl: 0x0000000000010216  cr2: 0x0000000104bdc004
    Logical CPU:     0
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x104b27000 -        0x104b42ff7  fontworker (134) <22E23C9B-1F92-3514-816F-97B3DE0B865F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Support/fontworker
        0x7fff620a0000 -     0x7fff620d6837  dyld (353.2.1) <4696A982-1500-34EC-9777-1EF7A03E2659> /usr/lib/dyld
        0x7fff8b531000 -     0x7fff8b653ff7  com.apple.LaunchServices (644.12 - 644.12) <D7710B20-0561-33BB-A3C8-463691D36E02> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8b654000 -     0x7fff8b65aff7  libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
        0x7fff8b65b000 -     0x7fff8b71eff7  libvMisc.dylib (512) <A4E39464-52EA-34CB-9FFE-53E79B3C65F5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8b71f000 -     0x7fff8b725fff  libsystem_trace.dylib (72.1.3) <A9E6B7D8-C327-3742-AC54-86C94218B1DF> /usr/lib/system/libsystem_trace.dylib
        0x7fff8b726000 -     0x7fff8b728ff7  libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
        0x7fff8b7d8000 -     0x7fff8b7e6ff7  com.apple.opengl (11.0.7 - 11.0.7) <B5C4DF85-37BD-3984-98D1-90A5043DA984> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8b85a000 -     0x7fff8b886fff  libsandbox.1.dylib (358.1.1) <9A00BD06-579F-3EDF-9D4C-590DFE54B103> /usr/lib/libsandbox.1.dylib
        0x7fff8b894000 -     0x7fff8b899ff7  libunwind.dylib (35.3) <BE7E51A0-B6EA-3A54-9CCA-9D88F683A6D6> /usr/lib/system/libunwind.dylib
        0x7fff8b89a000 -     0x7fff8b89bffb  libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
        0x7fff8b8c0000 -     0x7fff8b8c2fff  libRadiance.dylib (1231) <746E9989-E89C-3027-A418-5F99CE131C93> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8bb1d000 -     0x7fff8beb3fff  com.apple.CoreFoundation (6.9 - 1151.16) <F2B088AF-A5C6-3FAE-9EB4-7931AF6359E4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8c1d1000 -     0x7fff8c1d3ff7  libsystem_sandbox.dylib (358.1.1) <DB9962EF-8898-31CC-9B87-E01F8CE74C9D> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8c212000 -     0x7fff8c23ffff  com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8c310000 -     0x7fff8c350ff7  libGLImage.dylib (11.0.7) <7CBCEB4B-D22F-3116-8B28-D1C22D28C69D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8c351000 -     0x7fff8c35dff7  com.apple.OpenDirectory (10.10 - 187) <1D0066FC-1DEB-381B-B15C-4C009E0DF850> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8c35e000 -     0x7fff8c366fff  libsystem_dnssd.dylib (561.1.1) <62B70ECA-E40D-3C63-896E-7F00EC386DDB> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8c66d000 -     0x7fff8c69bfff  com.apple.CoreServicesInternal (221.1 - 221.1) <51BAE6D2-84F3-392A-BFEC-A3B47B80A3D2> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8c69c000 -     0x7fff8c6a4ffb  com.apple.CoreServices.FSEvents (1210 - 1210) <782A9C69-7A45-31A7-8960-D08A36CBD0A7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvent s.framework/Versions/A/FSEvents
        0x7fff8c7d1000 -     0x7fff8c7deff7  libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
        0x7fff8c7df000 -     0x7fff8c7f9ff7  libextension.dylib (55.1) <ECBDCC15-FA19-3578-961C-B45FCC994BAF> /usr/lib/libextension.dylib
        0x7fff8c7fa000 -     0x7fff8c859ff3  com.apple.AE (681 - 681) <7F544183-A515-31A8-B45F-89A167F56216> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8c9ca000 -     0x7fff8cb58fff  libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8cbb4000 -     0x7fff8cbbffff  libGL.dylib (11.0.7) <C53344AD-8CE6-3111-AB94-BD4CA89ED84E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8cbc0000 -     0x7fff8cbc8ffb  libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
        0x7fff8cbc9000 -     0x7fff8cc41ff7  com.apple.SystemConfiguration (1.14 - 1.14) <C269BCFD-ACAB-3331-BC7C-0430F0E84817> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8cc42000 -     0x7fff8cc52ff7  libbsm.0.dylib (34) <A3A2E56C-2B65-37C7-B43A-A1F926E1A0BB> /usr/lib/libbsm.0.dylib
        0x7fff8cd1f000 -     0x7fff8cd73fff  libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
        0x7fff8cd74000 -     0x7fff8cdacffb  libsystem_network.dylib (411) <C0B2313D-47BE-38A9-BEE6-2634A4F5E14B> /usr/lib/system/libsystem_network.dylib
        0x7fff8ced6000 -     0x7fff8cf4afff  com.apple.ApplicationServices.ATS (360 - 375) <62828B40-231D-3F81-8067-1903143DCB6B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8cf4b000 -     0x7fff8cf70ff7  libJPEG.dylib (1231) <35F13BD9-AA92-3510-B5BB-420DA15AE7F2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8cfec000 -     0x7fff8d12efff  libsqlite3.dylib (168) <7B580EB9-9260-35FE-AE2F-276A2C242BAB> /usr/lib/libsqlite3.dylib
        0x7fff8d754000 -     0x7fff8d784ffb  com.apple.GSS (4.0 - 2.0) <D033E7F1-2D34-339F-A814-C67E009DE5A9> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8d789000 -     0x7fff8d7daff7  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <AF72B06E-C6C1-3FAE-8B47-AF461CAE0E22> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8d7db000 -     0x7fff8d805ff7  libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
        0x7fff8d806000 -     0x7fff8d808fff  libsystem_configuration.dylib (699.1.5) <9FBA1CE4-97D0-347E-A443-93ED94512E92> /usr/lib/system/libsystem_configuration.dylib
        0x7fff8d809000 -     0x7fff8d844fff  com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8d8d9000 -     0x7fff8d933ff7  com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling
        0x7fff8db67000 -     0x7fff8db8ffff  libxpc.dylib (559.1.22) <9437C02E-A07B-38C8-91CB-299FAA63083D> /usr/lib/system/libxpc.dylib
        0x7fff8dbfd000 -     0x7fff8dd14fe7  libvDSP.dylib (512) <52777555-F051-3BC2-A2D2-9645907E836D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8ddf0000 -     0x7fff8de0aff7  com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8de0b000 -     0x7fff8de79ffb  com.apple.Heimdal (4.0 - 2.0) <B852ACA1-4C64-3E2A-A9D3-6D4C80AD9429> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8de7a000 -     0x7fff8de81ff7  libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8de82000 -     0x7fff8df9affb  com.apple.CoreText (352.0 - 454.1) <AB07DF12-BB1F-3275-A8A3-45F14BF872BF> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8e0ea000 -     0x7fff8e136ff7  libcups.2.dylib (408) <9CECCDE3-51D7-3028-830C-F58BD36E3317> /usr/lib/libcups.2.dylib
        0x7fff8e665000 -     0x7fff8e665ff7  liblaunch.dylib (559.1.22) <8A988924-8BE7-35FE-BF7D-322E90EFE49E> /usr/lib/system/liblaunch.dylib
        0x7fff8f621000 -     0x7fff8f954ff7  libmecabra.dylib (666.1) <CAFBC813-4894-3352-9B22-FFF116773A06> /usr/lib/libmecabra.dylib
        0x7fff8f955000 -     0x7fff8f9c9ff3  com.apple.securityfoundation (6.0 - 55126) <E7FB7A4E-CB0B-37BA-ADD5-373B2A20A783> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8fa19000 -     0x7fff8fa24ff7  com.apple.speech.synthesis.framework (5.2.6 - 5.2.6) <9434AA45-B6BD-37F7-A866-172196A7F91B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8fa2b000 -     0x7fff8fa2bfff  com.apple.Accelerate (1.10 - Accelerate 1.10) <227E2491-1DDB-336F-BF83-773CECEC66F1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8fa2c000 -     0x7fff8fa2cff7  libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
        0x7fff8fae5000 -     0x7fff8faf6ff7  libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
        0x7fff8fb2d000 -     0x7fff8fb2efff  libSystem.B.dylib (1213) <DA954461-EC6A-3DF0-8551-6FC810627627> /usr/lib/libSystem.B.dylib
        0x7fff8fc1b000 -     0x7fff8fc23fff  libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
        0x7fff8fc24000 -     0x7fff8fe09267  libobjc.A.dylib (646) <3B60CD90-74A2-3A5D-9686-B0772159792A> /usr/lib/libobjc.A.dylib
        0x7fff8fe0a000 -     0x7fff8fe11fff  com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8fe12000 -     0x7fff8fe17ff7  libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
        0x7fff8fe32000 -     0x7fff8ff24ff7  libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
        0x7fff8ff92000 -     0x7fff90177ff3  libicucore.A.dylib (531.30) <EF0E7544-E317-3550-A962-6AE65E78AF17> /usr/lib/libicucore.A.dylib
        0x7fff90319000 -     0x7fff90380ff7  com.apple.datadetectorscore (6.0 - 396.1) <5D348063-1528-3E2F-B587-9E82970506F9> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff90389000 -     0x7fff9047dff7  libFontParser.dylib (134) <506126F8-FDCE-3DE1-9DCA-E07FE658B597> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff9047e000 -     0x7fff90681ff3  com.apple.CFNetwork (720.1.1 - 720.1.1) <A82E71B3-2CDB-3840-A476-F2304D896E03> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff90687000 -     0x7fff90704fff  com.apple.CoreServices.OSServices (640.3 - 640.3) <28445162-08E9-3E24-84E4-617CE5FE1367> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff9125a000 -     0x7fff9125cffb  libCGXType.A.dylib (772) <7CB71BC6-D8EC-37BC-8243-41BAB086FAAA> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
        0x7fff9128d000 -     0x7fff912b8fff  libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
        0x7fff912b9000 -     0x7fff912bcff7  libdyld.dylib (353.2.1) <19FAF435-C165-3374-9DEF-D7BBA7D61DB6> /usr/lib/system/libdyld.dylib
        0x7fff912bd000 -     0x7fff91525ffb  com.apple.security (7.0 - 57031.1.35) <96141D1F-614E-32C4-8AC2-F47481F23F43> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff92202000 -     0x7fff92232fff  libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
        0x7fff92233000 -     0x7fff92249ff7  libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/lib/system/libsystem_asl.dylib
        0x7fff92af9000 -     0x7fff92b6ffe7  libcorecrypto.dylib (233.1.2) <E1789801-3985-3949-B736-6B3378873301> /usr/lib/system/libcorecrypto.dylib
        0x7fff92cc2000 -     0x7fff92ccdff7  libkxld.dylib (2782.1.97) <CB1A1B57-54BE-3573-AE0C-B90ED6BAEEE2> /usr/lib/system/libkxld.dylib
        0x7fff92cf6000 -     0x7fff92d8bff7  com.apple.ColorSync (4.9.0 - 4.9.0) <F06733BD-A10C-3DB3-B050-825351130392> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff92d8c000 -     0x7fff92d96ff7  com.apple.NetAuth (5.0 - 5.0) <B9EC5425-D38D-308C-865F-207E0A98BAC7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff92daf000 -     0x7fff92db3ff7  com.apple.TCC (1.0 - 1) <AFC32F8F-BCD5-313C-B66E-5AB8591EC066> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff92dbd000 -     0x7fff92eaffff  libxml2.2.dylib (26) <B834E7C8-EC3E-3382-BC5A-DA38DC4D720C> /usr/lib/libxml2.2.dylib
        0x7fff9303e000 -     0x7fff93043ffb  libheimdal-asn1.dylib (398.1.2) <F9463B34-AAF5-3488-AD0C-85937C81FC5E> /usr/lib/libheimdal-asn1.dylib
        0x7fff93050000 -     0x7fff93052fff  com.apple.loginsupport (1.0 - 1) <35A2A071-606C-39A5-8C11-E4CAF98D934C> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
        0x7fff93053000 -     0x7fff93190fff  com.apple.ImageIO.framework (3.3.0 - 1038) <611BDFBA-4BAA-36A8-B7E0-3830F3375E53> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff93191000 -     0x7fff93192fff  libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff93aae000 -     0x7fff93aaefff  com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <A48738CA-5B6F-3D14-97E9-2BFDFC3DCC06> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff93b44000 -     0x7fff93b48fff  libsystem_stats.dylib (163.1.4) <1DB04436-5974-3F16-86CC-5FF5F390339C> /usr/lib/system/libsystem_stats.dylib
        0x7fff93b9a000 -     0x7fff93ba2fff  libMatch.1.dylib (24) <C917279D-33C2-38A8-9BDD-18F3B24E6FBD> /usr/lib/libMatch.1.dylib
        0x7fff93ba3000 -     0x7fff93bf0ff3  com.apple.print.framework.PrintCore (10.0 - 451) <3CA58254-D14F-3913-9DFB-CAC499570CC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff93cf8000 -     0x7fff93d96fff  com.apple.Metadata (10.7.0 - 916.1) <CD389631-0F23-3A29-B43A-E3FFB5BC9438> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff93e77000 -     0x7fff93e77ff7  libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
        0x7fff93ff7000 -     0x7fff94013ff7  libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
        0x7fff942c9000 -     0x7fff942e3ff7  com.apple.AppleVPAFramework (1.0.30 - 1.0.30) <D47A2125-C72D-3298-B27D-D89EA0D55584> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
        0x7fff9436a000 -     0x7fff94698ff7  com.apple.Foundation (6.9 - 1151.16) <18EDD673-A010-3E99-956E-DA594CE1FA80> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff95093000 -     0x7fff950a2fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <D1E527E4-C561-352F-9457-E8C50232793C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff950a9000 -     0x7fff950b2fff  libGFXShared.dylib (11.0.7) <EC449E3A-D9D2-3494-8B6C-DEB7B11EEDAB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff950d6000 -     0x7fff95529fc7  com.apple.vImage (8.0 - 8.0) <33BE7B31-72DB-3364-B37E-C322A32748C5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff95598000 -     0x7fff955c0fff  libsystem_info.dylib (459) <B85A85D5-8530-3A93-B0C3-4DEC41F79478> /usr/lib/system/libsystem_info.dylib
        0x7fff955ca000 -     0x7fff9560bfff  libGLU.dylib (11.0.7) <8037342E-1ECD-385F-B4C3-545CE97B76AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff958c8000 -     0x7fff95b42fff  com.apple.CoreData (110 - 526) <AEEDAF00-D38F-3A15-B3C9-73732940CC55> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff95c09000 -     0x7fff95c64fff  libTIFF.dylib (1231) <ACC9ED11-EED8-3A23-B452-3F40FF7EF435> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff95d68000 -     0x7fff95daeff7  libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib
        0x7fff95daf000 -     0x7fff95dc8ff7  com.apple.CFOpenDirectory (10.10 - 187) <0ECA5D80-A045-3A2C-A60C-E1605F3AB6BD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff95dc9000 -     0x7fff95dcdff7  libGIF.dylib (1231) <A349BA73-301E-3EDE-8A31-8ACE827C289E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff95dd0000 -     0x7fff95dd1fff  libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
        0x7fff95dd2000 -     0x7fff95e18ffb  libFontRegistry.dylib (134) <01B8034A-45FD-3360-A347-A1896F591363> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff95f47000 -     0x7fff95f47fff  libOpenScriptingUtil.dylib (162) <EFD79173-A9DA-3AE6-BE15-3948938204A6> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff95f48000 -     0x7fff95f4dfff  com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff95f4e000 -     0x7fff95f69ff7  libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib
        0x7fff961bb000 -     0x7fff961d8ffb  libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
        0x7fff96b6a000 -     0x7fff96b6efff  libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
        0x7fff96b7c000 -     0x7fff96b85ff7  libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib
        0x7fff96b86000 -     0x7fff96b9dff7  libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLinearAlgebra.dylib
        0x7fff96c82000 -     0x7fff96c86fff  libCoreVMClient.dylib (79) <FC4E08E3-749E-32FF-B5E9-211F29864831> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff96c8e000 -     0x7fff96cb3ff7  libPng.dylib (1231) <2D5AC0EE-4056-3F76-97E7-BBD415F072B5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff96e35000 -     0x7fff96ec1fff  libsystem_c.dylib (1044.1.2) <C185E862-7424-3210-B528-6B822577A4B8> /usr/lib/system/libsystem_c.dylib
        0x7fff96ec2000 -     0x7fff96ec5fff  com.apple.xpc.ServiceManagement (1.0 - 1) <7E9E6BB7-AEE7-3F59-BAC0-59EAF105D0C8> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff9726c000 -     0x7fff9726dfff  liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib
        0x7fff97278000 -     0x7fff9727bfff  com.apple.IOSurface (97 - 97) <D4B4D2B2-7B16-3174-9EA6-55E0A10B452D> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff97285000 -     0x7fff972b0fff  com.apple.DictionaryServices (1.2 - 229) <6789EC43-CADA-394D-8FE8-FC3A2DD136B9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff972ed000 -     0x7fff97318ff3  libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib
        0x7fff97eef000 -     0x7fff97f38ff3  com.apple.HIServices (1.22 - 519) <59D78E07-C3F1-3272-88F1-876B836D5517> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff97f39000 -     0x7fff97f4afff  libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
        0x7fff98088000 -     0x7fff988dfff3  com.apple.CoreGraphics (1.600.0 - 772) <6364CBE3-3635-3A53-B448-9D19EF9FEA96> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff988e5000 -     0x7fff98956ff7  com.apple.framework.IOKit (2.0.2 - 1050.1.21) <ED3B0B22-AACC-303B-BFC8-20ECD1AF6BA2> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff98c35000 -     0x7fff99042ff7  libLAPACK.dylib (1128) <F9201AE7-B031-36DB-BCF8-971E994EF7C1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff99a5a000 -     0x7fff99ac9fff  com.apple.SearchKit (1.4.0 - 1.4.0) <BFD6D876-36BA-3A3B-9F15-3E2F7DE6E89D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff99aca000 -     0x7fff99ad5fff  libcommonCrypto.dylib (60061) <D381EBC6-69D8-31D3-8084-5A80A32CB748> /usr/lib/system/libcommonCrypto.dylib
        0x7fff99c5e000 -     0x7fff99c67ff3  com.apple.CommonAuth (4.0 - 2.0) <F4C266BE-2E0E-36B4-9DE7-C6B4BF410FD7> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff9a1d2000 -     0x7fff9a1dbfff  libsystem_pthread.dylib (105.1.4) <26B1897F-0CD3-30F3-B55A-37CB45062D73> /usr/lib/system/libsystem_pthread.dylib
        0x7fff9a1dc000 -     0x7fff9a1edff7  libsystem_coretls.dylib (35.1.2) <EBBF7EF6-80D8-3F8F-825C-B412BD6D22C0> /usr/lib/system/libsystem_coretls.dylib
        0x7fff9a341000 -     0x7fff9a434ff7  libJP2.dylib (1231) <58849E48-9CD2-38A1-9D48-FCE630F473EB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff9a79c000 -     0x7fff9a7a9ff7  libxar.1.dylib (254) <CE10EFED-3066-3749-838A-6A15AC0DBCB6> /usr/lib/libxar.1.dylib
        0x7fff9a859000 -     0x7fff9a8f8df7  com.apple.AppleJPEG (1.0 - 1) <9BB3D7DF-630A-3E1C-A124-12D6C4D0DE70> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
        0x7fff9a8f9000 -     0x7fff9a922ffb  libxslt.1.dylib (13) <AED1143F-B848-3E73-81ED-71356F25F084> /usr/lib/libxslt.1.dylib
        0x7fff9a923000 -     0x7fff9a927fff  libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib
        0x7fff9a945000 -     0x7fff9a945fff  com.apple.CoreServices (62 - 62) <9E4577CA-3FC3-300D-AB00-87ADBDDA2E37> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff9a946000 -     0x7fff9ac2dffb  com.apple.CoreServices.CarbonCore (1108.1 - 1108.1) <55A16172-ACC0-38B7-8409-3CB92AF33973> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff9ac41000 -     0x7fff9adacff7  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5C6DBEB4-F2EA-3262-B9FC-AFB89404C1DA> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff9aeb5000 -     0x7fff9aed2fff  libsystem_kernel.dylib (2782.1.97) <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B> /usr/lib/system/libsystem_kernel.dylib
        0x7fff9aed3000 -     0x7fff9aed4ff7  libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib
        0x7fff9aeee000 -     0x7fff9af08ff7  liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
        0x7fff9af09000 -     0x7fff9af0bfff  libCVMSPluginSupport.dylib (11.0.7) <29D775BB-A11D-3140-A478-2A0DA1A87420> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff9af0c000 -     0x7fff9af0eff7  libquarantine.dylib (76) <DC041627-2D92-361C-BABF-A869A5C72293> /usr/lib/system/libquarantine.dylib
        0x7fff9af11000 -     0x7fff9af11fff  com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 1
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 876
        thread_create: 1
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=140.0M resident=68.4M(49%) swapped_out_or_unallocated=71.6M(51%)
    Writable regions: Total=53.8M written=472K(1%) resident=3992K(7%) swapped_out=0K(0%) unallocated=49.9M(93%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    Dispatch continuations             8192K
    Kernel Alloc Once                     4K
    MALLOC                             36.3M
    MALLOC (admin)                       32K
    Memory Tag 88                         4K
    STACK GUARD                          12K
    Stack                              65.1M
    VM_ALLOCATE                         332K
    __DATA                             6120K
    __LINKEDIT                         70.1M
    __TEXT                             69.9M
    __UNICODE                           544K
    mapped file                        22.6M
    shared memory                         4K
    ===========                      =======
    TOTAL                             278.9M
    System Profile:
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xF4), Broadcom BCM43xx 1.0 (7.15.124.12.10)
    Bluetooth: Version 4.3.1f2 15015, 3 services, 27 devices, 1 incoming serial ports
    Thunderbolt Bus: iMac, Apple Inc., 23.4
    Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x02FE, 0x45424A3831554738424255352D474E2D4620
    Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x02FE, 0x45424A3831554738424255352D474E2D4620
    USB Device: Hub
    USB Device: Keyboard Hub
    USB Device: Apple Keyboard
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: Hub
    USB Device: USB 2.0 Hub [MTT]
    USB Device: External HDD
    USB Device: Ext HDD 1021
    USB Device: External HDD
    USB Device: Hub
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    Serial ATA Device: APPLE HDD ST3000DM001, 3 TB
    Serial ATA Device: APPLE SSD SM128E, 121.33 GB
    Model: iMac13,2, BootROM IM131.010A.B05, 4 processors, Intel Core i5, 3.2 GHz, 16 GB, SMC 2.11f16
    Network Service: Ethernet, Ethernet, en0
    Graphics: NVIDIA GeForce GTX 675MX, NVIDIA GeForce GTX 675MX, PCIe, 1024 MB
    2.
    Process:               genatsdb [662] 
    Path:                  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Support/genatsdb
    Identifier:            genatsdb
    Version:               375
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [660]
    Responsible:           genatsdb [662]
    User ID:               97
    Date/Time:             2014-12-19 15:12:16.812 +1100
    OS Version:            Mac OS X 10.10.1 (14B25)
    Report Version:        11
    Anonymous UUID:      
    Time Awake Since Boot: 1400 seconds
    Crashed Thread:        0  Dispatch queue: com.apple.main-thread
    Exception Type:        EXC_BAD_ACCESS (SIGBUS)
    Exception Codes:       0x000000000000000a, 0x000000010c0de004
    VM Regions Near 0x10c0de004:
        VM_ALLOCATE            000000010c0da000-000000010c0de000 [   16K] rw-/rwx SM=PRV
    --> mapped file            000000010c0de000-000000010c0fb000 [  116K] rw-/rwx SM=COW  /Library/Fonts/Webdings/..namedfork/rsrc
        VM_ALLOCATE            000000010c0fb000-000000010c0fc000 [    4K] rw-/rwx SM=ALI
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.CoreServices.CarbonCore 0x00007fff9a953d8a CheckMapHeaderCommon + 4
    1   com.apple.CoreServices.CarbonCore 0x00007fff9a9569a5 RMNewMappedRefFromMappedFork + 50
    2   libATSServer.dylib             0x00007fff9a242d58 OpenMappedResourceFork(unsigned short, FSRef const*, unsigned short, OpaqueMappedResourceFileRef**, void**, unsigned long*, unsigned char) + 187
    3   libATSServer.dylib             0x00007fff9a217048 AddFileTokenByAccessType + 151
    4   libATSServer.dylib             0x00007fff9a2403cb AddFileTokenFromFSRef + 491
    5   libATSServer.dylib             0x00007fff9a241c2d InternalActivateFontsFromFSRef + 762
    6   libATSServer.dylib             0x00007fff9a244648 IterateFontsInDirectory(int (*)(unsigned short, FSRef const*, FMFilter const*, void*, FSCatalogInfo const*, HFSUniStr255 const*, unsigned int, unsigned short, unsigned short, unsigned short*), unsigned short, unsigned short, FMFilter const*, void*, unsigned int, unsigned short, unsigned short*) + 883
    7   libATSServer.dylib             0x00007fff9a242351 ActivateFonts(unsigned short, unsigned short, FMFilter const*, void*, unsigned int, unsigned int, unsigned short, unsigned short) + 1331
    8   libATSServer.dylib             0x00007fff9a241c6d InternalActivateFontsFromFSRef + 826
    9   libATSServer.dylib             0x00007fff9a220051 AddFontsFromKnownDirs(KnownDirsSpec*, unsigned int) + 945
    10  libATSServer.dylib             0x00007fff9a238836 AddFontsInFontsFolder + 169
    11  libATSServer.dylib             0x00007fff9a28549f FODBCreate(int, unsigned int) + 240
    12  libATSServer.dylib             0x00007fff9a283461 FODBInitialize + 142
    13  libATSServer.dylib             0x00007fff9a297783 InitializeATSServices(unsigned int, unsigned char) + 162
    14  libATSServer.dylib             0x00007fff9a29713d main_handler + 3232
    15  libATSServer.dylib             0x00007fff9a221d00 ATSServerGenerateDB + 315
    16  genatsdb                       0x000000010c0905e6 0x10c08f000 + 5606
    17  libdyld.dylib                  0x00007fff912bc5c9 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff9aecc22e kevent64 + 10
    1   libdispatch.dylib              0x00007fff8d7dfa6a _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff9aecb132 __psynch_cvwait + 10
    1   com.apple.CoreServices.CarbonCore 0x00007fff9a9ed9c7 TSWaitOnConditionTimedRelative + 147
    2   com.apple.CoreServices.CarbonCore 0x00007fff9a9ed5a2 TSWaitOnSemaphoreCommon + 403
    3   com.apple.CoreServices.CarbonCore 0x00007fff9a9a7a38 AsyncFileThread(void*) + 281
    4   libsystem_pthread.dylib        0x00007fff9a1d52fc _pthread_body + 131
    5   libsystem_pthread.dylib        0x00007fff9a1d5279 _pthread_start + 176
    6   libsystem_pthread.dylib        0x00007fff9a1d34b1 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x000000010c0de001  rbx: 0x00000000ffffff94  rcx: 0x000000010c0de000  rdx: 0x00007fff53b6da08
      rdi: 0x000000010c0de000  rsi: 0x000000000001c015  rbp: 0x00007fff53b6d920  rsp: 0x00007fff53b6d920
       r8: 0x000000000000000a   r9: 0x0000000000000000  r10: 0x0000000000000402  r11: 0x0000000000000202
      r12: 0x000000000001c015  r13: 0x00000000ffffffce  r14: 0x00007fff53b6da08  r15: 0x000000010c0de000
      rip: 0x00007fff9a953d8a  rfl: 0x0000000000010216  cr2: 0x000000010c0de004
    Logical CPU:     3
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x10c08f000 -        0x10c090fff  genatsdb (375) <E2281D0B-4919-3859-BF76-FD20B79AE49F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Support/genatsdb
        0x7fff68573000 -     0x7fff685a9837  dyld (353.2.1) <4696A982-1500-34EC-9777-1EF7A03E2659> /usr/lib/dyld
        0x7fff8b531000 -     0x7fff8b653ff7  com.apple.LaunchServices (644.12 - 644.12) <D7710B20-0561-33BB-A3C8-463691D36E02> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8b654000 -     0x7fff8b65aff7  libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
        0x7fff8b71f000 -     0x7fff8b725fff  libsystem_trace.dylib (72.1.3) <A9E6B7D8-C327-3742-AC54-86C94218B1DF> /usr/lib/system/libsystem_trace.dylib
        0x7fff8b726000 -     0x7fff8b728ff7  libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
        0x7fff8b85a000 -     0x7fff8b886fff  libsandbox.1.dylib (358.1.1) <9A00BD06-579F-3EDF-9D4C-590DFE54B103> /usr/lib/libsandbox.1.dylib
        0x7fff8b894000 -     0x7fff8b899ff7  libunwind.dylib (35.3) <BE7E51A0-B6EA-3A54-9CCA-9D88F683A6D6> /usr/lib/system/libunwind.dylib
        0x7fff8b89a000 -     0x7fff8b89bffb  libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
        0x7fff8bb1d000 -     0x7fff8beb3fff  com.apple.CoreFoundation (6.9 - 1151.16) <F2B088AF-A5C6-3FAE-9EB4-7931AF6359E4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8c1d1000 -     0x7fff8c1d3ff7  libsystem_sandbox.dylib (358.1.1) <DB9962EF-8898-31CC-9B87-E01F8CE74C9D> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8c35e000 -     0x7fff8c366fff  libsystem_dnssd.dylib (561.1.1) <62B70ECA-E40D-3C63-896E-7F00EC386DDB> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8c69c000 -     0x7fff8c6a4ffb  com.apple.CoreServices.FSEvents (1210 - 1210) <782A9C69-7A45-31A7-8960-D08A36CBD0A7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvent s.framework/Versions/A/FSEvents
        0x7fff8c7d1000 -     0x7fff8c7deff7  libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
        0x7fff8c7df000 -     0x7fff8c7f9ff7  libextension.dylib (55.1) <ECBDCC15-FA19-3578-961C-B45FCC994BAF> /usr/lib/libextension.dylib
        0x7fff8c7fa000 -     0x7fff8c859ff3  com.apple.AE (681 - 681) <7F544183-A515-31A8-B45F-89A167F56216> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8cbc0000 -     0x7fff8cbc8ffb  libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
        0x7fff8cbc9000 -     0x7fff8cc41ff7  com.apple.SystemConfiguration (1.14 - 1.14) <C269BCFD-ACAB-3331-BC7C-0430F0E84817> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8cc42000 -     0x7fff8cc52ff7  libbsm.0.dylib (34) <A3A2E56C-2B65-37C7-B43A-A1F926E1A0BB> /usr/lib/libbsm.0.dylib
        0x7fff8cd1f000 -     0x7fff8cd73fff  libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
        0x7fff8cd74000 -     0x7fff8cdacffb  libsystem_network.dylib (411) <C0B2313D-47BE-38A9-BEE6-2634A4F5E14B> /usr/lib/system/libsystem_network.dylib
        0x7fff8cfec000 -     0x7fff8d12efff  libsqlite3.dylib (168) <7B580EB9-9260-35FE-AE2F-276A2C242BAB> /usr/lib/libsqlite3.dylib
        0x7fff8d7db000 -     0x7fff8d805ff7  libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
        0x7fff8d806000 -     0x7fff8d808fff  libsystem_configuration.dylib (699.1.5) <9FBA1CE4-97D0-347E-A443-93ED94512E92> /usr/lib/system/libsystem_configuration.dylib
        0x7fff8d8d9000 -     0x7fff8d933ff7  com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling
        0x7fff8db67000 -     0x7fff8db8ffff  libxpc.dylib (559.1.22) <9437C02E-A07B-38C8-91CB-299FAA63083D> /usr/lib/system/libxpc.dylib
        0x7fff8de7a000 -     0x7fff8de81ff7  libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8e665000 -     0x7fff8e665ff7  liblaunch.dylib (559.1.22) <8A988924-8BE7-35FE-BF7D-322E90EFE49E> /usr/lib/system/liblaunch.dylib
        0x7fff8f621000 -     0x7fff8f954ff7  libmecabra.dylib (666.1) <CAFBC813-4894-3352-9B22-FFF116773A06> /usr/lib/libmecabra.dylib
        0x7fff8f9ca000 -     0x7fff8f9fcfff  libTrueTypeScaler.dylib (134) <6AA9A44F-EB8B-3B31-B1A3-915D03EEBA44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff8fa2c000 -     0x7fff8fa2cff7  libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
        0x7fff8fae5000 -     0x7fff8faf6ff7  libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
        0x7fff8fb2d000 -     0x7fff8fb2efff  libSystem.B.dylib (1213) <DA954461-EC6A-3DF0-8551-6FC810627627> /usr/lib/libSystem.B.dylib
        0x7fff8fc1b000 -     0x7fff8fc23fff  libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
        0x7fff8fc24000 -     0x7fff8fe09267  libobjc.A.dylib (646) <3B60CD90-74A2-3A5D-9686-B0772159792A> /usr/lib/libobjc.A.dylib
        0x7fff8fe0a000 -     0x7fff8fe11fff  com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8fe12000 -     0x7fff8fe17ff7  libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
        0x7fff8fe32000 -     0x7fff8ff24ff7  libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
        0x7fff8ff92000 -     0x7fff90177ff3  libicucore.A.dylib (531.30) <EF0E7544-E317-3550-A962-6AE65E78AF17> /usr/lib/libicucore.A.dylib
        0x7fff90319000 -     0x7fff90380ff7  com.apple.datadetectorscore (6.0 - 396.1) <5D348063-1528-3E2F-B587-9E82970506F9> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff90389000 -     0x7fff9047dff7  libFontParser.dylib (134) <506126F8-FDCE-3DE1-9DCA-E07FE658B597> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff9047e000 -     0x7fff90681ff3  com.apple.CFNetwork (720.1.1 - 720.1.1) <A82E71B3-2CDB-3840-A476-F2304D896E03> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff90687000 -     0x7fff90704fff  com.apple.CoreServices.OSServices (640.3 - 640.3) <28445162-08E9-3E24-84E4-617CE5FE1367> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff9128d000 -     0x7fff912b8fff  libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
        0x7fff912b9000 -     0x7fff912bcff7  libdyld.dylib (353.2.1) <19FAF435-C165-3374-9DEF-D7BBA7D61DB6> /usr/lib/system/libdyld.dylib
        0x7fff912bd000 -     0x7fff91525ffb  com.apple.security (7.0 - 57031.1.35) <96141D1F-614E-32C4-8AC2-F47481F23F43> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff92202000 -     0x7fff92232fff  libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
        0x7fff92233000 -     0x7fff92249ff7  libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/lib/system/libsystem_asl.dylib
        0x7fff92af9000 -     0x7fff92b6ffe7  libcorecrypto.dylib (233.1.2) <E1789801-3985-3949-B736-6B3378873301> /usr/lib/system/libcorecrypto.dylib
        0x7fff92cc2000 -     0x7fff92ccdff7  libkxld.dylib (2782.1.97) <CB1A1B57-54BE-3573-AE0C-B90ED6BAEEE2> /usr/lib/system/libkxld.dylib
        0x7fff92d8c000 -     0x7fff92d96ff7  com.apple.NetAuth (5.0 - 5.0) <B9EC5425-D38D-308C-865F-207E0A98BAC7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff92daf000 -     0x7fff92db3ff7  com.apple.TCC (1.0 - 1) <AFC32F8F-BCD5-313C-B66E-5AB8591EC066> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff92dbd000 -     0x7fff92eaffff  libxml2.2.dylib (26) <B834E7C8-EC3E-3382-BC5A-DA38DC4D720C> /usr/lib/libxml2.2.dylib
        0x7fff93050000 -     0x7fff93052fff  com.apple.loginsupport (1.0 - 1) <35A2A071-606C-39A5-8C11-E4CAF98D934C> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
        0x7fff93191000 -     0x7fff93192fff  libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff93b44000 -     0x7fff93b48fff  libsystem_stats.dylib (163.1.4) <1DB04436-5974-3F16-86CC-5FF5F390339C> /usr/lib/system/libsystem_stats.dylib
        0x7fff93b9a000 -     0x7fff93ba2fff  libMatch.1.dylib (24) <C917279D-33C2-38A8-9BDD-18F3B24E6FBD> /usr/lib/libMatch.1.dylib
        0x7fff93cf8000 -     0x7fff93d96fff  com.apple.Metadata (10.7.0 - 916.1) <CD389631-0F23-3A29-B43A-E3FFB5BC9438> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff93e77000 -     0x7fff93e77ff7  libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
        0x7fff93ff7000 -     0x7fff94013ff7  libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
        0x7fff9436a000 -     0x7fff94698ff7  com.apple.Foundation (6.9 - 1151.16) <18EDD673-A010-3E99-956E-DA594CE1FA80> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff9552a000 -     0x7fff95597fff  libType1Scaler.dylib (114.1.8) <3A867FBF-AF9C-30E5-9801-44F5184E5CF3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
        0x7fff95598000 -     0x7fff955c0fff  libsystem_info.dylib (459) <B85A85D5-8530-3A93-B0C3-4DEC41F79478> /usr/lib/system/libsystem_info.dylib
        0x7fff958c8000 -     0x7fff95b42fff  com.apple.CoreData (110 - 526) <AEEDAF00-D38F-3A15-B3C9-73732940CC55> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff95d68000 -     0x7fff95daeff7  libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib
        0x7fff95daf000 -     0x7fff95dc8ff7  com.apple.CFOpenDirectory (10.10 - 187) <0ECA5D80-A045-3A2C-A60C-E1605F3AB6BD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff95dd0000 -     0x7fff95dd1fff  libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
        0x7fff95f47000 -     0x7fff95f47fff  libOpenScriptingUtil.dylib (162) <EFD79173-A9DA-3AE6-BE15-3948938204A6> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff95f48000 -     0x7fff95f4dfff  com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff95f4e000 -     0x7fff95f69ff7  libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib
        0x7fff96b6a000 -     0x7fff96b6efff  libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
        0x7fff96b7c000 -     0x7fff96b85ff7  libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib
        0x7fff96e35000 -     0x7fff96ec1fff  libsystem_c.dylib (1044.1.2) <C185E862-7424-3210-B528-6B822577A4B8> /usr/lib/system/libsystem_c.dylib
        0x7fff96ec2000 -     0x7fff96ec5fff  com.apple.xpc.ServiceManagement (1.0 - 1) <7E9E6BB7-AEE7-3F59-BAC0-59EAF105D0C8> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff9726c000 -     0x7fff9726dfff  liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib
        0x7fff97285000 -     0x7fff972b0fff  com.apple.DictionaryServices (1.2 - 229) <6789EC43-CADA-394D-8FE8-FC3A2DD136B9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff972ed000 -     0x7fff97318ff3  libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib
        0x7fff97f39000 -     0x7fff97f4afff  libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
        0x7fff988e5000 -     0x7fff98956ff7  com.apple.framework.IOKit (2.0.2 - 1050.1.21) <ED3B0B22-AACC-303B-B

    I have no idea if this EtreCheck report adds any useful information to my previous post, but just in case it does I'll include it. I apologise in advance for the vast lengths of these posts!
    Problem description:
    Since Yosemite iMac is very slow and freezes about once an hour
    EtreCheck version: 2.1.5 (108)
    Report generated 19 December 2014 5:30:56 pm AEDT
    Click the [Support] links for help with non-Apple products.
    Click the [Details] links for more information about that line.
    Click the [Adware] links for help removing adware.
    Hardware Information: ℹ️
      iMac (27-inch, Late 2012) (Verified)
      iMac - model: iMac13,2
      1 3.2 GHz Intel Core i5 CPU: 4-core
      16 GB RAM Upgradeable
      BANK 0/DIMM0
      8 GB DDR3 1600 MHz ok
      BANK 1/DIMM0
      8 GB DDR3 1600 MHz ok
      BANK 0/DIMM1
      empty empty empty empty
      BANK 1/DIMM1
      empty empty empty empty
      Bluetooth: Good - Handoff/Airdrop2 supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      NVIDIA GeForce GTX 675MX - VRAM: 1024 MB
      iMac 2560 x 1440
    System Software: ℹ️
      OS X 10.10.1 (14B25) - Uptime: 0:20:32
    Disk Information: ℹ️
      APPLE HDD ST3000DM001 disk1 : (3 TB)
      EFI (disk1s1) <not mounted> : 210 MB
      Recovery HD (disk1s3) <not mounted>  [Recovery]: 650 MB
      ST Bigger Mac HD (disk2) / : 3.11 TB (2.52 TB free)
      Core Storage: disk0s2 120.99 GB Online
      Core Storage: disk1s2 3.00 TB Online
      APPLE SSD SM128E disk0 : (121.33 GB)
      EFI (disk0s1) <not mounted> : 210 MB
      Boot OS X (disk0s3) <not mounted> : 134 MB
      ST Bigger Mac HD (disk2) / : 3.11 TB (2.52 TB free)
      Core Storage: disk0s2 120.99 GB Online
      Core Storage: disk1s2 3.00 TB Online
    USB Information: ℹ️
      Western Digital Ext HDD 1021 1.5 TB
      EFI (disk5s1) <not mounted> : 210 MB
      iTunes Media ST (disk5s2) /Volumes/iTunes Media ST : 1.50 TB (508.72 GB free)
      Western Digital External HDD 250.06 GB
      ST Passport (disk4s1) /Volumes/ST Passport : 250.06 GB (57.58 GB free)
      Western Digital External HDD 250.06 GB
      disk3s1 (disk3s1) <not mounted> : 32 KB
      ST RED Backup (disk3s3) /Volumes/ST RED Backup : 249.93 GB (57.54 GB free)
      Apple Inc. BRCM20702 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple, Inc. Keyboard Hub
      Apple Inc. Apple Keyboard
      Apple Inc. FaceTime HD Camera (Built-in)
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Configuration files: ℹ️
      /etc/launchd.conf - Exists
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Adware: ℹ️
      Conduit [Remove]
    Kernel Extensions: ℹ️
      /Applications/Utilities/DiskWarrior.app
      [not loaded] com.alsoft.Preview (4.3) [Support]
      /Applications/VMware Fusion.app
      [not loaded] com.vmware.kext.vmci (2.0.6) [Support]
      [not loaded] com.vmware.kext.vmioplug (2.0.6) [Support]
      [not loaded] com.vmware.kext.vmnet (2.0.6) [Support]
      [not loaded] com.vmware.kext.vmx86 (2.0.6) [Support]
      /System/Library/Extensions
      [not loaded] com.aliph.driver.jstub (1.1.2 - SDK 10.7) [Support]
      [not loaded] com.pctools.iantivirus.kfs (1.0.1) [Support]
      [not loaded] com.xerox.officeprinting.PrinterSpecificMerge (1.4.0) [Support]
    Startup Items: ℹ️
      HP IO: Path: /Library/StartupItems/HP IO
      Startup items are obsolete in OS X Yosemite
    Launch Agents: ℹ️
      [not loaded] com.adobe.AAM.Updater-1.0.plist [Support]
      [running] com.adobe.AdobeCreativeCloud.plist [Support]
      [loaded] com.adobe.CS5ServiceManager.plist [Support]
      [loaded] com.divx.dms.agent.plist [Support]
      [loaded] com.divx.update.agent.plist [Support]
      [failed] com.extensis.FMCore.plist [Support] [Details]
      [invalid?] com.maintain.LogOut.plist [Support]
      [invalid?] com.maintain.PurgeInactiveMemory.plist [Support]
      [invalid?] com.maintain.Restart.plist [Support]
      [invalid?] com.maintain.ShutDown.plist [Support]
      [invalid?] com.maintain.Sleep.plist [Support]
      [running] com.maintain.SystemEvents.plist [Support]
      [loaded] com.oracle.java.Java-Updater.plist [Support]
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist [Support]
      [invalid?] com.adobe.SwitchBoard.plist [Support]
      [running] com.edovia.screensconnect.daemon.plist [Support]
      [invalid?] com.maintain.AutoLoginUserScreenLocked.plist [Support]
      [invalid?] com.maintain.CocktailScheduler.plist [Support]
      [invalid?] com.maintain.HideSpotlightMenuBarIcon.plist [Support]
      [loaded] com.oracle.java.Helper-Tool.plist [Support]
    User Launch Agents: ℹ️
      [loaded] com.adobe.AAM.Updater-1.0.plist [Support]
      [invalid?] com.ecamm.printopia.plist [Support]
      [loaded] com.maintain.ShowUserLibraryDirectory.plist [Support]
      [running] com.plexapp.helper.plist [Support]
      [invalid?] com.shirtpocket.backupbytime.plist [Support]
      [loaded] de.metaquark.appfresh.plist [Support]
      [running] ws.agile.1PasswordAgent.plist [Support]
    User Login Items: ℹ️
      ChronoSyncBackgrounder Application (/Library/Application Support/ChronoSync/ChronoSyncBackgrounder.app)
      Air Video Server HD ApplicationHidden (/Applications/Air Video Server HD.app)
      HazelHelper UNKNOWN (missing value)
      CleanMyDrive Application (/Applications/CleanMyDrive.app)
      Jawbone Updater Application (/Applications/Jawbone Updater.app)
      Screens Connect Application (/Library/PreferencePanes/Screens Connect.prefPane/Contents/MacOS/Screens Connect.app)
      HazelHelper Application (/Library/PreferencePanes/Hazel.prefPane/Contents/MacOS/HazelHelper.app)
      Moom UNKNOWN (missing value)
      XtraFinder Application (/Applications/XtraFinder.app)
      HP Scheduler Application (/Library/Application Support/Hewlett-Packard/Software Update/HP Scheduler.app)
    Internet Plug-ins: ℹ️
      o1dbrowserplugin: Version: 4.0.3.13724 [Support]
      Google Earth Web Plug-in: Version: 6.0 [Support]
      Default Browser: Version: 600 - SDK 10.10
      Flip4Mac WMV Plugin: Version: 3.2.0.16   - SDK 10.8 [Support]
      OfficeLiveBrowserPlugin: Version: 12.2.9 [Support]
      OVSHelper: Version: 1.1 [Support]
      AdobeAAMDetect: Version: AdobeAAMDetect 2.0.0.0 - SDK 10.7 [Support]
      FlashPlayer-10.6: Version: 16.0.0.235 - SDK 10.6 [Support]
      DivX Web Player: Version: 3.2.4.1250 - SDK 10.6 [Support]
      RealPlayer Plugin: Version: Unknown [Support]
      Flash Player: Version: 16.0.0.235 - SDK 10.6 [Support]
      iPhotoPhotocast: Version: 7.0 - SDK 10.8
      googletalkbrowserplugin: Version: 4.0.3.13724 [Support]
      npgtpo3dautoplugin: Version: 0.1.44.29 - SDK 10.5 [Support]
      AdobePDFViewer: Version: 9.5.5 [Support]
      QuickTime Plugin: Version: 7.7.3
      SharePointBrowserPlugin: Version: 14.4.1 - SDK 10.6 [Support]
      JavaAppletPlugin: Version: Java 8 Update 25 Check version
    User internet Plug-ins: ℹ️
      Google Earth Web Plug-in: Version: 7.0 [Support]
    Safari Extensions: ℹ️
      Beautifier [Installed]
      Reload Button [Installed]
      TinEye [Installed]
      Reload Button [Cached]
      AutoPagerize [Installed]
      Evernote Web Clipper [Installed]
      AutoPagerize-1 [Cached]
      Amazon Search Bar [Installed]
      1Password [Installed]
      iMedia Converter Deluxe   [Installed]
    3rd Party Preference Panes: ℹ️
      Cameras  [Support]
      Flash Player  [Support]
      Flip4Mac WMV  [Support]
      FunctionFlip  [Support]
      FUSE for OS X (OSXFUSE)  [Support]
      Hazel  [Support]
      Java  [Support]
      Perian  [Support]
      Screens Connect  [Support]
    Time Machine: ℹ️
      Skip System Files: NO
      Auto backup: YES
      Volumes being backed up:
      ST Bigger Mac HD: Disk size: 3.11 TB Disk used: 584.05 GB
      Destinations:
      Data [Network]
      Total size: 2.00 TB
      Total number of backups: 63
      Oldest backup: 2014-08-04 07:04:32 +0000
      Last backup: 2014-12-17 05:40:52 +0000
      Size of backup disk: Adequate
      Backup size 2.00 TB > (Disk used 584.05 GB X 3)
    Top Processes by CPU: ℹ️
          16% AppFresh
          9% WindowServer
          0% loginwindow
          0% hidd
          0% Mail
    Top Processes by Memory: ℹ️
      567 MB mds_stores
      206 MB Safari
      189 MB Finder
      120 MB Dock
      120 MB Mail
    Virtual Memory Information: ℹ️
      9.91 GB Free RAM
      4.82 GB Active RAM
      956 MB Inactive RAM
      1.49 GB Wired RAM
      2.99 GB Page-ins
      0 B Page-outs
    Diagnostics Information: ℹ️
      Dec 19, 2014, 05:26:53 PM /Library/Logs/DiagnosticReports/mdworker_2014-12-19-172653_[redacted].crash
      Dec 19, 2014, 05:26:36 PM /Library/Logs/DiagnosticReports/mdworker_2014-12-19-172636_[redacted].crash
      Dec 19, 2014, 05:12:08 PM /Users/[redacted]/Library/Logs/DiagnosticReports/fontworker_2014-12-19-171208_[ redacted].crash
      Dec 19, 2014, 05:11:54 PM /Users/[redacted]/Library/Logs/DiagnosticReports/fontworker_2014-12-19-171154_[ redacted].crash
      Dec 19, 2014, 05:10:56 PM Self test - passed
      Dec 19, 2014, 04:10:24 PM /Users/[redacted]/Library/Logs/DiagnosticReports/fontworker_2014-12-19-161024_[ redacted].crash
      Dec 19, 2014, 04:10:09 PM /Users/[redacted]/Library/Logs/DiagnosticReports/fontworker_2014-12-19-161009_[ redacted].crash
      Dec 19, 2014, 03:26:53 PM /Users/[redacted]/Library/Logs/DiagnosticReports/fontworker_2014-12-19-152653_[ redacted].crash
      Dec 19, 2014, 03:26:38 PM /Users/[redacted]/Library/Logs/DiagnosticReports/fontworker_2014-12-19-152638_[ redacted].crash
      Dec 19, 2014, 03:16:31 PM /Library/Logs/DiagnosticReports/mdworker_2014-12-19-151631_[redacted].crash
      Dec 19, 2014, 03:16:15 PM /Library/Logs/DiagnosticReports/mdworker_2014-12-19-151615_[redacted].crash
      Dec 19, 2014, 03:14:40 PM /Library/Logs/DiagnosticReports/fontworker_2014-12-19-151440_[redacted].crash
      Dec 19, 2014, 03:14:10 PM /Library/Logs/DiagnosticReports/fontworker_2014-12-19-151410_[redacted].crash
      Dec 19, 2014, 03:12:32 PM /Library/Logs/DiagnosticReports/fontworker_2014-12-19-151232_[redacted].crash
      Dec 19, 2014, 03:12:32 PM /Library/Logs/DiagnosticReports/genatsdb_2014-12-19-151232_[redacted].crash
      Dec 19, 2014, 03:11:47 PM /Library/Logs/DiagnosticReports/fontworker_2014-12-19-151147_[redacted].crash
      Dec 19, 2014, 03:10:49 PM /Library/Logs/DiagnosticReports/genatsdb_2014-12-19-151049_[redacted].crash
      Dec 19, 2014, 03:10:34 PM /Library/Logs/DiagnosticReports/fontworker_2014-12-19-151034_[redacted].crash
      Dec 19, 2014, 03:10:04 PM /Library/Logs/DiagnosticReports/fontworker_2014-12-19-151004_[redacted].crash
      Dec 19, 2014, 03:09:42 PM /Library/Logs/DiagnosticReports/genatsdb_2014-12-19-150942_[redacted].crash
      Dec 19, 2014, 03:09:06 PM /Library/Logs/DiagnosticReports/fontworker_2014-12-19-150906_[redacted].crash
      Dec 19, 2014, 03:08:36 PM /Library/Logs/DiagnosticReports/fontworker_2014-12-19-150836_[redacted].crash
      Dec 19, 2014, 03:03:07 PM /Library/Logs/DiagnosticReports/mdworker_2014-12-19-150307_[redacted].crash
      Dec 19, 2014, 03:02:39 PM /Library/Logs/DiagnosticReports/mdworker_2014-12-19-150239_[redacted].crash
      Dec 19, 2014, 02:49:18 PM /Users/[redacted]/Library/Logs/DiagnosticReports/fontworker_2014-12-19-144918_[ redacted].crash
      Dec 19, 2014, 02:49:03 PM /Users/[redacted]/Library/Logs/DiagnosticReports/fontworker_2014-12-19-144903_[ redacted].crash
      Dec 19, 2014, 02:24:56 PM /Library/Logs/DiagnosticReports/genatsdb_2014-12-19-142456_[redacted].crash
      Dec 19, 2014, 02:24:55 PM /Library/Logs/DiagnosticReports/genatsdb_2014-12-19-142455_[redacted].crash
      Dec 19, 2014, 02:23:47 PM /Library/Logs/DiagnosticReports/fontworker_2014-12-19-142347_[redacted].crash
      Dec 19, 2014, 02:23:31 PM /Library/Logs/DiagnosticReports/fontworker_2014-12-19-142331_[redacted].crash
      Dec 19, 2014, 02:22:58 PM /Library/Logs/DiagnosticReports/fontworker_2014-12-19-142258_[redacted].crash
      Dec 19, 2014, 02:22:42 PM /Library/Logs/DiagnosticReports/fontworker_2014-12-19-142242_[redacted].crash
      Dec 19, 2014, 02:11:47 PM /Library/Logs/DiagnosticReports/genatsdb_2014-12-19-141147_[redacted].crash
      Dec 19, 2014, 02:08:25 PM /Library/Logs/DiagnosticReports/fontworker_2014-12-19-140825_[redacted].crash
      Dec 19, 2014, 02:08:09 PM /Library/Logs/DiagnosticReports/fontworker_2014-12-19-140809_[redacted].crash
      Dec 19, 2014, 01:49:33 PM /Library/Logs/DiagnosticReports/fontworker_2014-12-19-134933_[redacted].crash
      Dec 19, 2014, 01:49:02 PM /Library/Logs/DiagnosticReports/genatsdb_2014-12-19-134902_[redacted].crash
      Dec 19, 2014, 01:48:47 PM /Library/Logs/DiagnosticReports/fontworker_2014-12-19-134847_[redacted].crash
      Dec 19, 2014, 01:47:29 PM /Library/Logs/DiagnosticReports/fontworker_2014-12-19-134729_[redacted].crash
      Dec 19, 2014, 01:47:12 PM /Library/Logs/DiagnosticReports/fontworker_2014-12-19-134712_[redacted].crash
      Dec 19, 2014, 01:20:03 PM /Users/[redacted]/Library/Logs/DiagnosticReports/fontworker_2014-12-19-132003_[ redacted].crash
      Dec 19, 2014, 01:19:48 PM /Users/[redacted]/Library/Logs/DiagnosticReports/fontworker_2014-12-19-131948_[ redacted].crash
      Dec 19, 2014, 12:46:33 PM /Library/Logs/DiagnosticReports/fontworker_2014-12-19-124633_[redacted].crash
      Dec 19, 2014, 12:46:33 PM /Library/Logs/DiagnosticReports/genatsdb_2014-12-19-124633_[redacted].crash
      Dec 19, 2014, 12:46:02 PM /Library/Logs/DiagnosticReports/fontworker_2014-12-19-124602_[redacted].crash
      Dec 19, 2014, 12:36:28 PM /Users/[redacted]/Library/Logs/DiagnosticReports/fontworker_2014-12-19-123628_[ redacted].crash
      Dec 19, 2014, 12:36:12 PM /Users/[redacted]/Library/Logs/DiagnosticReports/fontworker_2014-12-19-123612_[ redacted].crash
      Dec 19, 2014, 12:26:02 PM /Users/[redacted]/Library/Logs/DiagnosticReports/fontworker_2014-12-19-122602_[ redacted].crash
      Dec 19, 2014, 12:25:27 PM /Users/[redacted]/Library/Logs/DiagnosticReports/genatsdb_2014-12-19-122527_[re dacted].crash
      Dec 19, 2014, 12:22:58 PM /Users/[redacted]/Library/Logs/DiagnosticReports/fontworker_2014-12-19-122258_[ redacted].crash
      Dec 19, 2014, 12:22:40 PM /Users/[redacted]/Library/Logs/DiagnosticReports/fontworker_2014-12-19-122240_[ redacted].crash
      Dec 19, 2014, 12:22:20 PM /Users/[redacted]/Library/Logs/DiagnosticReports/fontworker_2014-12-19-122220_[ redacted].crash
      Dec 19, 2014, 12:22:04 PM /Users/[redacted]/Library/Logs/DiagnosticReports/fontworker_2014-12-19-122204_[ redacted].crash
      Dec 19, 2014, 01:47:44 PM /Library/Logs/DiagnosticReports/genatsdb_2014-12-19-134744_[redacted].crash

  • Floating Footer ; help me stick the little guy to the bottom Once and For all

    Hey there
    have floating footer in browsers : I have tried couple of things but not yet got it to stick
    here is the website
    www.huntfilms.ie
    and here is the code
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    body {
              background-color: #3366CC;
              text-align: center;
              margin-top: 25px;
    html, body {
              margin: 0px;
              padding: 0px;
    #wrapper {
              background-color: #3366CC;
              text-align: left;
    #header {
              background-color: #000;
              height: 95px;
              border-bottom-width: thin;
              border-bottom-style: solid;
              border-bottom-color: #FFF;
              background-image: url(titleforwebby.png);
              background-repeat: no-repeat;
              background-position: center;
    #veimo1 {
              background-color: #3366CC;
              height: 450px;
    #content1 {
              background-color: #3366CC;
              height: 475px;
              width: 820px;
              margin-right: auto;
              margin-left: auto;
              margin-top: 15px;
    #vimeoinside {
              background-color: #696;
              height: 450px;
              width: 420px;
    #vimeotester {
              background-color: #369;
              height: 350px;
              width: 350px;
    #finalvimeo {
              background-color: #3366CC;
              height: 250px;
              width: 250px;
    #dropper {
              background-image: url(morebosrder.png);
              background-repeat: repeat-x;
              background-position: center bottom;
              height: 105px;
    #footer {
              background-color: #333;
              height: 95px;
              border-top-width: thin;
              border-top-style: solid;
              border-top-color: #FFF;
              position:fixed
                        bottom : 0 ;
                        left: 0 ;
    #apDiv1 {
              position:absolute;
              width:397px;
              height:450px;
              z-index:1;
              top: 100px;
              color: #FFF;
              font-family: Tahoma, Geneva, sans-serif;
              font-size: .8em;
              left: 702px;
              float: right;
    #apDiv2 {
              position:absolute;
              width:386px;
              height:115px;
              z-index:1;
              font-size: .75em;
              color: #FFF;
              font-family: Tahoma, Geneva, sans-serif;
              left: 285px;
              top: 126px;
              text-align: justify;
    </style>
    </head>
    <body>
    <div id="wrapper">
      <div id="dropper">
        <div id="header"></div>
      </div>
      <div id="veimo1">
        <div id="content1"><object width="400" height="380" align="right"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=17962693&server=vimeo.com&show_title=0&show_byline= 0&show_portrait=0&color=00adef&fullscreen=1&autoplay=0&loop=0" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=17962693&server=vimeo.com&show_title=0&show_byline= 0&show_portrait=0&color=00adef&fullscreen=1&autoplay=0&loop=0" width="400" type="application/x-shockwave-flash" height="380" allowfullscreen="true" allowscriptaccess="always" align="right"></embed></object>
          <div id="apDiv2">
            <p>Welcome,</p>
            <p>Hunt Films was set up in January 2011 by documentary maker Barry Hunt.</p>
            <p>Barry received training in TV and Video Production with FÁS in Tralee, Co Kerry. During this training Barry produced a series of short films about local artists. In 2006 he worked as assistant editor on the successful RTÉ drama series, ‘Love is the Drug’.</p>
            <p>Since 2010 Barry has embarked on solo projects producing two entertaining half hour documentaries. 'Liberation', explores the world of pigeon racing in Dublin. This film was very well received at the Galway Film Festival 2011 and is due for broadcast on Setanta Sports. More recently Barry produced 'The Gregory Seat', a documentary which follows Maureen O'Sullivan’s campaign to be elected in the 2011 General Election.</p>
            <p>Barry looks forward to producing more documentaries. He is interested in human stories and hopes that this will form the basis of his future work. At present, Barry is developing projects for film festivals and general broadcast.</p>
          </div>
        </div>
      </div>
    </div>
    </body>
    <div id="footer"></div>
    </html>

    Still can get to work
    http://www.huntfilms.ie/
    body {
    background-color: #79BAEC;
    text-align: center;
    margin-top: 25px;
    border-bottom-width: thin;
    border-bottom-style: solid;
    border-right-color: #000;
    border-bottom-color: #C09;
    html, body
    #wrapper {
    background-color: #325C74;
    text-align: left;
    min-height: 100%;
    margin-bottom: -160;
    position: relative;
    #header {
    background-color: #000;
    height: 95px;
    border-bottom-width: thin;
    border-bottom-style: solid;
    border-bottom-color: #CC66CC;
    background-image: url(titleforwebby.png);
    background-repeat: no-repeat;
    background-position: center;
    #veimo1 {
    background-color: #325C74;
    height: 450px;
    #content1 {
    background-color: #325C74;
    height: 475px;
    width: 840px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 35px;
    #newvimo {
    background-color: #325C74;
    height: 420px;
    width: 320px;
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 0.8em;
    color: #FFF;
    padding-right: 10px;
    text-align: justify;
    padding-left: 15px;
    padding-top: 15px;
    border-left-width: thin;
    border-left-style: solid;
    border-left-color: #FFF;
    #footer1 {
    background-color: #000;
    height: 120px;
    position: relative;
    border-top-width: thin;
    border-top-style: solid;
    border-top-color: #C6F;
    font-family: Tahoma, Geneva, sans-serif;
    color: #FFF;
    font-size: 1.1em;
    #vimeoinside {
    background-color: #696;
    height: 450px;
    width: 420px;
    #vimeotester {
    background-color: #369;
    height: 350px;
    width: 350px;
    #finalvimeo {
    background-color: #3366CC;
    height: 250px;
    width: 250px;
    #dropper {
    background-image: url(morebosrder.png);
    background-repeat: repeat-x;
    background-position: center bottom;
    height: 103px;
    #writing {
    background-color: #325C74;
    height: 500px;
    width: 440px;
    float: right;
    padding-top: 25px;
    padding-left: 0px;
    padding-right: 20px;
    #apDiv1
    #apDiv2
    #clearfooter
              !galwayff.png|height=70|width=70|src=galwayff.png!        
              Welcome,
              Hunt Films was set up in January 2011 by documentary maker Barry Hunt.
              Barry received training in TV and Video Production with FÁS in Tralee, Co Kerry. During this training Barry produced a series of short films about local artists. In 2006 he worked as assistant editor on the successful RTÉ drama series, ‘Love is the Drug’.
              Since 2010 Barry has embarked on solo projects producing two entertaining half hour documentaries. 'Liberation', explores the world of pigeon racing in Dublin. This film was very well received at the Galway Film Festival 2011 and is due for broadcast on Setanta Sports. More recently Barry produced 'The Gregory Seat', a documentary which follows Maureen O'Sullivan’s campaign to be elected in the 2011 General Election.
              Barry looks forward to producing more documentaries. He is interested in human stories and hopes that this will form the basis of his future work. At present, Barry is developing projects for film festivals and general broadcast
    Hunt FIlms is a Certified registered name under the Registration of Business Names Act , 1963. Ireland
                All work is write protected and © Hunt Films 2011
    [Home | homt.html]
    [Contact | contact.html]
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", );
    </script>
      </body>
      </html>
    </div

  • Footer now floating in middle of page and no background color

    Hello all,
    Been working on this for days with no luck. I hope someone can spot the silly mistake, because I know it has to be something silly but it's driving me round the bend! The page has always been just fine until I recoded part of the body (the four columns with titles, photos, and text) to help with 508 compliance. Since then, the orange footer that was firmly at the bottom has started floating half way up the page and the background orange color has disappeared.
    I've gone through my code line by line, marking off each beginning and ending div tag and everything is fine there. Below, is a screenshot of the lower half of the page showing how the footer should look.
    Here is a screenshot of how it looks offline right now:
    as you can hopefully see, the footer has lost it's orange background and is sitting halfway up the page.
    Here is the HTML code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="viewport" content="width=1100">
    <meta name="keywords" content="Meadows museum, Southern Methodist university, SMU, Dallas, Texas, Algur Hurtle Meadows, The Meadows Foundation, Dr. Mark A. Rogl&aacute;n, medieval, baroque, tenth to twentieth century spanish art, 10th to 20th century Spanish art, Spanish art collection, Spanish paintings, Meadows school of art, masterpieces, world's greatest painters, El Greco, Velázquez, Ribera, Murillo, Goya, Miró, Picasso, Juan Gris, Renaissance, altarpieces, rococo oil sketches, polychrome wood sculptures, Impressionist landscapes, modernist abstractions, sculptures, twentieth-century sculptors, Rodin, Maillol, Giacometti, Henry Moore, David Smith, Claes Oldenburg, James Surls, Santiago Calatrava, Texas artists, Frank Reaugh, Jerry Bywaters, Otis Dozier, Alexandre Hogue, William Lester, exhibitions, education, educational workshops, lectures, gallery talks, symposia, symposium, museum shop, Spain's Golden Age, neo-Palladian structure, Jones Great Hall, Founder's Room, auditorium, Gates Restaurant, Moss Chumley Award, William B. Jordan internships, Fortuny, Sorolla, Steve Mumford, Don Quijote, eighteenth-century tapestries, Roger Winter, Stanley Marcus, Mark Lemmon, The Barrett Collection, Mexican art, DeGolyer Library, greek vase painting, Juan van der Hamen y Le&oacute;n, Division of Cinema-Television, musical and danse performances, performing artists, studio art activities, storytelling, artist demonstrations, community education, Spanish discussion and book club, Master of Liberal Arts courses, MLA program, corporate membership, Museum membership, Museo Nacional del Prado, Prado Museum Designer=Pam Muirheid">
    <meta name="description" content="The Meadows Museum is committed to the advancement of knowledge and understanding of art through the collection and interpretation of works of the greatest aesthetic and historical importance, as exemplified by the founding collection of Spanish art">
    <meta name="robots" content="index, follow">
    <title>Home – Meadows Museum</title>
    <meta name="google-site-verification" content="WJGKz4uefsWUilZUdPa5ggL23MSk1IsHeLMzUz3B1QE" />
    <style type="text/css">
    <!--
    body {
    background-color:#
    a:link {
        color: #505262;
        text-decoration: underline;
    a:active {
        color: #505262;
        text-decoration: underline;
    a:visited {
        color: #505262;
        text-decoration: underline;
    a:hover {
        color: #505262;
        text-decoration: none;
    -->
    </style>
    <link href="css/layout.css" rel="stylesheet" type="text/css" />
    <script src="ajxmenu1.js" type="text/javascript"></script>
    <style type="text/css">
    <!--
    .style1 {
        color: #FFFFFF
    -->
    </style>
    <link rel="stylesheet" href="ajxmenu1.css" type="text/css" />
    <style type="text/css">
    <!--
    .style23 {
        font-size: 10px
    -->
    </style>
    <link rel="stylesheet" href="ajxmenu3.css" type="text/css" />
    <link rel="stylesheet" href="ajxmenu4.css" type="text/css" />
    <style type="text/css">
    <!--
    .style24 {
        color: #AE543C
    .style26 {
        color: #f1efe0
    .style27 {
        color: #b6241d
    -->
    </style>
    <link rel="stylesheet" href="ajxmenu8.css" type="text/css" />
    <link rel="stylesheet" href="ajxmenu13.css" type="text/css" />
    <style type="text/css">
    <!--
    .style28 {
        color: #AF4D33
    .style29 {
        font-family: Geneva, Arial, Helvetica, sans-serif
    -->
    </style>
    <link rel="stylesheet" href="ajxmenu16.css" type="text/css" />
    <script type="text/javascript">
      var _gaq = _gaq || [];
      _gaq.push(['_setAccount', 'UA-32262060-1']);
      _gaq.push(['_trackPageview']);
      (function() {
        var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
        ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
    </script>
    <script type="text/javascript" language="javascript">AC_FL_RunContent = 0;</script>
    <script type="text/javascript" src="slideshow/AC_RunActiveContent.js" language="javascript"></script>
    <script type="text/javascript" language="JavaScript"></script>
    <script type="text/javascript" language="JavaScript">
    <!--
    function errorSafe() {return true;}
    window.onerror = errorSafe;
    function newWin(url,name,rs,sc,mn,tl,lo,wd,hi) {
    openWindow = window.open(url,name,'resizable='+rs+',scrollbars='+sc+',menubar='+mn+',toolbar='+tl+',lo cation='+lo+',width='+wd+',height='+hi);}
    name.window="menu"
    function open_window(url) {
    email = window.open(url,"eMail","toolbar=5,location=0,directories=0,status=1,menubar=0,scrollbars =yes,resizable=yes,width=800,height=600");
    //-->
    </script>
    <script src="ajxmenu1.js" type="text/javascript"></script>
    <script src="ajxmenu3.js" type="text/javascript"></script>
    <script src="ajxmenu4.js" type="text/javascript"></script>
    <script language="JavaScript1.2" type="text/javascript" src="mm_css_menu.js"></script>
    <script src="ajxmenu8.js" type="text/javascript"></script>
    <script src="ajxmenu13.js" type="text/javascript"></script>
    <script src="ajxmenu16.js" type="text/javascript"></script>
    <!-- Google Translator start-->
    <meta name="google-translate-customization" content="9966f40ce63f3936-63b7db40478c71ff-g3ab4db8eb77d6f75-1b">
    </meta>
    <!-- Google translator end -->
    </head>
    <body bgcolor="#f1eee1">
    <div class="hidden">Skip to main content.</div>
    <!-- begin logo-->
    <div id="logo">
      <header role="banner"><a href="http://smu.edu/meadowsmuseum/">Home Page - Meadows Museum</a></header>
    </div><!-- end logo -->
    <!-- begin navbackground-->
    <div id="navbackground">
      <!-- begin nav-->
      <div id="nav">
        <div class="AJXCSSMenuBOOIZUD"><!-- AJXFILE:ajxmenu1.css -->
          <ul>
            <li class="tsub"><a class="ajxsub" href="mission_statement.htm">About  Us</a>
              <ul>
                <li><a href="mission_statement.htm">Mission Statement</a></li>
                <li><a href="Director.htm">Message from the Director</a></li>
                <li><a href="contacts.htm">Contact Us</a></li>
                <li><a href="news.htm">News</a></li>
                <li><a href="media.htm">Multimedia</a></li>
                <li><a href="history.htm">Museum History</a></li>
                <li><a href="Plaza.htm">Plaza & Sculpture Garden</a></li>
                <li><a href="Moss_Chumley.htm">Moss/Chumley Award</a></li>
                <li><a href="javascript:open_window(%27http://www.meadows.smu.edu%27)">Meadows School of the Arts</a></li>
                <li><a href="javascript:open_window(%27http://www.smu.edu%27)">Southern Methodist University</a></li>
              </ul>
            </li>
            <li class="tsub"><a class="ajxsub" href="visit.htm">Visit Us</a>
              <ul>
                <li><a href="visit.htm">General Information</a></li>
                <li><a href="tours.htm">Groups &amp; Tours</a></li>
                <li><a href="access_programs.htm">Accessibility</a></li>
                <li><a href="shop.htm">Museum Shop</a></li>
                <li><a href="students_teachers.htm">K-12 Resources</a></li>
                <li><a href="dining.htm">Dining</a></li>
                <li><a href="lodging.htm">Lodging</a></li>
                <li><a class="ajxsub" href="events.htm">Facility Rentals</a>
                  <ul>
                    <li><a href="events_rental_images.htm">Rental Facility Images</a></li>
                  </ul>
                </li>
              </ul>
            </li>
            <li class="tsub"><a class="ajxsub" href="collections_intro.htm">Collections</a>
              <ul>
                <li><a href="collections_intro.htm">About the Collections</a></li>
                <li><a class="ajxsub" href="collections_highlights.htm">Highlights of the Collections</a>
                  <ul>
                    <li><a href="collections_highlights_Algur.htm">Algur H. Meadows Collection</a></li>
                    <li><a href="collections_highlights.htm">Meadows Museum Collection</a></li>
                    <li><a href="collections_highlights_sculpture.htm">Elizabeth Meadows Sculpture Coll.</a></li>
                  </ul>
                </li>
                <li><a href="collections_provenance.htm">Provenance &amp; Research</a></li>
                <li><a class="ajxsub" href="#">Recent Acquisitions</a>
                  <ul>
                    <li><a href="collections_acquisitions_Goya.htm">Goya</a></li>
                    <li><a href="collections_acquisitions_Barcelo.htm">Barceló</a></li>
                    <li><a href="collections_acquisitions_Madrazo.htm">Madrazo</a></li>
                    <li><a href="collections_acquisitions_Munoz.htm">Muñoz</a></li>
                  </ul>
                </li>
              </ul>
            </li>
            <li class="tsub"><a class="ajxsub" href="exhibitions_current.htm">Exhibitions</a>
              <ul>
                <li><a href="exhibitions_current.htm">Current</a></li>
                <li><a href="exhibitions_upcoming.htm">Upcoming</a></li>
                <li><a class="ajxsub" href="#">Past</a>
                  <ul>
                    <li><a href="exhibitions_2013-present.htm"><span>2013-Present</span></a></li>
                    <li><a href="exhibitions_recent_past.htm">2010-12</a></li>
                    <li><a href="exhibitions_past_07-09.htm">2007-09</a></li>
                    <li><a href="exhibitions_recent_past2.htm">2004-06</a></li>
                    <li><a href="exhibitions_2001-3.htm">2001-03</a></li>
                  </ul>
                </li>
                <li><a href="longterm_loans.htm">Visiting Masterpieces</a></li>
                <li><a class="ajxsub" href="#">Prado at the Meadows</a>
                  <ul>
                    <li><a href="about_Prado_Meadows.htm">Prado at the Meadows</a></li>
                    <li><a href="docs/Pradopartnershipexpansionrelease.pdf">Expansion of Partnership</a></li>
                    <li><a href="exh_Prado_Meadows_press.htm">Press Release El Greco</a></li>
                    <li><a href="exh_Prado_Meadows_Ribera_press.htm">Press Release - Ribera</a></li>
                    <li><a href="about_Velazquez_Prado_release.htm"><span>Press Release - Velaquez </span></a></li>
                    <li><a href="prado_press.htm">News Articles</a></li>
                    <li><a href="prado_fellowship.htm">Fellowships</a></li>
                  </ul>
                </li>
              </ul>
            </li>
            <li class="tsub"><a class="ajxsub" href="public_programs.htm">Education</a>
              <ul>
                <li><a href="public_programs.htm">Program Calendar</a></li>
                <li><a href="internships.htm">Internships</a></li>
                <li><a href="fellowships.htm">Fellowships</a></li>
                <li><a href="students_teachers.htm">K-12 Resources</a></li>
                <li><a href="symposia.htm">Symposia</a></li>
              </ul>
            </li>
            <li class="tsub"><a class="ajxsub" href="membership.htm">Get Involved</a>
              <ul>
                <li><a href="membership.htm">Join or Renew a Membership</a></li>
                <li><a href="member_travel.htm">Member Travel</a></li>
                <li><a href="volunteer.htm">Volunteer</a></li>
                <li><a href="internships.htm">Internships</a></li>
                <li><a href="work_here.htm">Employment</a></li>
                <li><a href="support.htm">Donate</a></li>
              </ul>
            </li>
            <li class="tlast"><a href="50th_anniversary.htm">50th Anniversary</a></li>
            <li class="timg"><img src="data:image/gif;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt=""/></li>
          </ul>
        </div>
      </div> <!-- End nav-->
    </div> <!-- End navbackground-->
    <br />
    <!-- Begin wrapper-->
    <div id="wrapper">
    <!-- Begin slideshow-->
      <div id="slideshow">
      <!-- Start dwuser_XML_Flash_Slideshow_v4 -->
            <!-- Do not remove the line below!!!  It is required for the DWUser XML Flash Slideshow v4. -->
            <script type="text/javascript" src="v4flashslideshow/slideshow.js"></script>
            <div class="dwuser_xfs_v4_holder" style="width: 1100px; height: 358px;"> <strong><a href="http://www.adobe.com/go/getflashplayer/">You need to upgrade your Flash Player and enable Javascript to view this content &raquo;</a></strong> </div>
            <script type="text/javascript">
                // <![CDATA[
                if (typeof(window['XMLFlashSlideshow_v4']) == 'undefined') { XMLFlashSlideshow_v4 = function(){}; alert('To use the XML Flash Slideshow v4, you must upload the v4flashslideshow/slideshow.js file, and have a properly defined ' + String.fromCharCode(60) + 'script' + String.fromCharCode(62) + ' reference to it in your HTML.');};
                XMLFlashSlideshow_v4({width:'1100', height:'358', level:'a', xml:'v4flashslideshow/slideshow_data1.xml', backgroundColor:'#F1EFE0', backgroundAlpha:'1', preloaderColor:'#FFFFFF', preloaderTextColor:'#FFFFFF', externalSkinURL:'', touchMode:'inline', touchBackgroundColor:'#F1EFE0', backgroundImage:'images/slideshow/Calatrava3_big.jpg', rightClickLabel:'slideshow of upcoming events'});
                // ]]>
                </script>
            <!-- End dwuser_XML_Flash_Slideshow_v4 -->
      </div><!-- End slideshow-->
    <!-- Begin bodyArea-->
      <div id="bodyArea">
        <!-- Begin programseventstitle --> 
        <div id="programseventstitle">
        <h3>PROGRAMS & EVENTS<br />
    </h3><a href="public_programs.htm"><img src="images/index/class.png" alt="programs and events" width="275" height="143" /></a>
        <ul id="programsevents">
      <p><a
    href="public_programs.htm#symposium">International
        Symposium</a><BR>Sat, Feb 7, 10 A.M.-3 P.M.</p>
      <p><a
    href="public_programs.htm#toast">Champagne
        Toast</a><BR>Sat, Feb 7, 3:30-5:00 P.M.</p>
      <p><a href="public_programs.htm#music">Music
        at the Meadows</a><BR>Sat, Feb 7, 6:30 P.M</p>
      <p><a
    href="http://www.meadowsmuseumdallas.org/public_programs.htm#drawing">Drawing
        from the Masters</a><BR>Sun, Feb 8, 1:30-3 P.M.</p>
      <p><a
    href="public_programs.htm#conn">Access
        Program: Connections</a><br />
        Wed, Feb 11, 10:30 A.M.-12:30 P.M.</p>
        </ul>
        </div>  <!-- End programseventstitle -->
        <!-- Begin newstitle -->
          <div id="newstitle">
          <h3>NEWS</h3> <a href="news.htm"><img src="images/index/Bacon_thumb.jpg" width="275" height="143" alt="news" title="news" /></a>
          <ul id="news">
        <p>12/23/14 - <a href="docs/50th_updated.pdf" target="_blank">Meadows Museum Looks Ahead to Golden Anniversary in 2015</a> (PDF)</p>
          <p>12/15/14 - <a href="docs/MossChumley2014Award.pdf" target="_blank">Meadows Museum Announces 2014 Moss/Chumley Artist Award Winner: Darryl Lauster</a> (PDF)</p>
          <p>11/3/14 - <a href="docs/Abello_2014.pdf" target="_blank">Meadows Museum to Present First Exhibition in U.S. of Paintings from
            Juan Abelló Collection, Among World’s Top Private Collections</a> (PDF)</p>
          </ul>
    </div>    <!-- End newstitle -->
      <!-- Begin multimediatitle -->   
        <div id="multimediatitle">
        <h3>MULTIMEDIA</h3><a href="http://vimeo.com/109750163" target="_blank"><img src="images/50th_anniversary/thumb_homepage.jpg" alt="multimedia" title="multimedia" width="275" height="143" /></a>
        <ul id="multimedia">
        <p><a href="media.htm">Watch videos, live webcasts, and podcasts</a>.</p>
          <p><strong>50th Anniversary</strong><br />
            Experience the Meadows Museum at SMU as the Museum approaches its <a href="http://vimeo.com/109750163" target="_blank">50th  anniversary</a>. Find out what's going on this year, what's in the news, and discover the fascinating history of the Museum in <a href="50th_anniversary_timeline.htm">Meadows Milestones</a>.</p>
          <p><a href="media.htm">June 20, 2014 <em>WFAA News</em> story about artist John Bramblitt.</a></p>
          </ul>
    </div>  <!-- End multimediatitle -->
      <!-- Begin supportustitle --> 
    <div id="supportustitle">
    <h3>SUPPORT US!</h3>
        <a href="support.htm"><img src="images/news_programs/MeadowsandLois.jpg" width="275" height="143" /></a>
        <ul id="supportus">
        <p><a href="membership.htm">Join/Renew your Membership</a></p>
          <p><a href="support.htm">Donate to the Museum</a></p>
          <p><a href="shop.htm">Browse our online shop</a></p>
            <p><a href="volunteer.htm">Become a Docent</a></p>
          <p><a href="shop.htm"></a><a href="volunteer.htm">Volunteer</a></p>
            <p><a href="javascript:open_window(%27http://visitor.constantcontact.com/manage/optin/ea?v=001WVdpo956d6mu5VjDxJQqvxlxNOVSB0HGHh q6v_z9sTXd8YFRILmxqroHCfw5TVmt2p88AqzgSHcInE_zTaFkPw%3D%3D%27)">Join our E-newsletter</a></p>
          </ul>
          <!-- Start Google Translator -->
        <div id="google_translate_element"></div>
        <script type="text/javascript">
    function googleTranslateElementInit() {
      new google.translate.TranslateElement({pageLanguage: 'en'}, 'google_translate_element');
    </script><script type="text/javascript" src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></scrip t>
    <!-- End Google Translator -->
        </div>  <!-- End supportustitle -->
          <div class="push"></div>
    </div><!-- End Body Area-->
    <!--Begin footer-->
        <div id="footer">
          <!--Begin searchbar-->
          <div id="searchbar">
            <form role=“search” style="margin-right:0px; margin-top:12px; float:left; width:265px;" action="http://search.freefind.com/find.html" method="get"  accept-charset="utf-8" target="_self">
              <input type="hidden" name="si" value="47230699">
              <input type="hidden" name="pid" value="r">
              <input type="hidden" name="n" value="0">
              <input type="hidden" name="_charset_" value="">
              <input type="hidden" name="bcd" value="&#247;">
              <input type="text" name="query" size="15" style="border:thin">
              <input aria-label=”search” type="submit" value="search">
            </form>
            <br />
            <br />
            <a href="https://www.facebook.com/MeadowsMuseumDallas"><img src="images/symbols/facebook_white.png" alt="like us on Facebook" title="like us on Facebook" width="28" height="28" /></a><a href="https://twitter.com/MeadowsMuseum"><img src="images/symbols/twitter_white.png" alt="Follow us on Twitter" title="Follow us on Twitter" width="25" height="25" /></a> <a href="https://blog.smu.edu/tabularasa/"><img src="images/symbols/blog_white.png" alt="Museum blog" title="Museum blog" width="23" height="23" /></a> <a href="http://visitor.constantcontact.com/manage/optin/ea?v=001WVdpo956d6mu5VjDxJQqvxlxNOVSB0HGHh q6v_z9sTXd8YFRILmxqroHCfw5TVmt2p88AqzgSHcInE_zTaFkPw=="><img src="images/symbols/e-mail_white.png" alt="E-mail us" title="E-mail us" width="27" height="25" /></a> <a href="membership.htm"><img src="images/symbols/JOIN.png" alt="join the museum" title="join the museum" width="38" height="32" /></a> <a href="https://www.google.com/maps/preview#!q=5900+Bishop+Blvd.,+Dallas,+TX+75205&data=!1m4!1m3!1 d10476!2d-96.785088!3d32.837337!4m10!1m9!4m8!1m3!1d107264!2d-96.783199!3d32.845558!3m2!1i1 024!2i768!4f13.1"><img src="images/symbols/google-maps-iphone-icon.png" alt="Find us on Google maps" title="Find us on Google maps"  width="24" height="24" /></a>
            </div><!--End searchbar-->
        <!--Begin admissionhours-->
        <div id="admissionhours">
        Hours: Tue-Sat 10:00 a.m. - 5:00 p.m.,
            Thu until  9:00 p.m.,     
            Sun 1:00 - 5:00 p.m.
            Closed Monday.
            Admission: $10,  adults, $8,  seniors 65 &amp; over, $4,  non-SMU students. Free: Museum members, children under 12, SMU faculty/staff/students. Free Thu eve after 5:00 p.m. <br />
          </div><!--End admissionhours-->
        <!--Begin adresstel-->
          <div id="addresstel">
          Meadows Museum, 5900 Bishop Blvd., Dallas, TX 75205, <br />
            P.O. Box 750357, Dallas, TX 75275-0357 <img src="images/index/Untitled-1.png" alt="" width="6" height="10" /> 214.768.2516<br />
            <a href="contacts.htm" class="white">e-mail</a> <img src="images/index/Untitled-1.png" alt="" width="6" height="10" /><a href="site_map.htm" class="white"> Site map</a> <img src="images/index/Untitled-1.png" alt="" width="6" height="10" /> Website by <a href="http://www.mypawprint.com" class="white">My Pawprint Productions</a><br />
            © 2015 Meadows Museum
            </div>  <!--End adresstel-->
        </div>  <!--End footer-->
      </div> <!--End wrapper-->
    </body>
    </html>
    and here is the layout.css file:
    @charset "utf-8";
        margin: 0px;
        padding: 0px;
    a:link {color: #656252; text-decoration: underline; }
    a:active {color: #656252; text-decoration: underline; }
    a:visited {color: #656252; text-decoration: underline; }
    a:hover {color: #656252; text-decoration: none;
    a.white:link {color: #FFFFFF; text-decoration: underline; }
    a.white:active {color: #FFFFFF; text-decoration: underline; }
    a.white:visited {color: #FFFFFF; text-decoration: underline; }
    a.white:hover {color: #FFFFFF; text-decoration: underline; }
    /* Smartphones (portrait and landscape) ----------- */
    @media only screen
    and (min-width : 320px)
    and (max-width : 480px) {
    /* Styles */
    /* Smartphones (landscape) ----------- */
    @media only screen
    and (min-width : 321px) {
    /* Styles */
    /* Smartphones (portrait) ----------- */
    @media only screen
    and (max-width : 320px) {
    /* Styles */
    /* iPads (portrait and landscape) ----------- */
    @media only screen
    and (min-width : 768px)
    and (max-width : 1100px) {
    /* Styles */
    /* iPads (landscape) ----------- */
    @media only screen
    and (min-width : 768px)
    and (max-width : 1100px)
    and (orientation : landscape) {
    /* Styles */
    /* iPads (portrait) ----------- */
    @media only screen
    and (min-width : 768px)
    and (max-width : 1024px)
    and (orientation : portrait) {
    /* Styles */
    /* Desktops and laptops ----------- */
    @media only screen
    and (min-width : 1224px) {
    /* Styles */
    /* Large screens ----------- */
    @media only screen
    and (min-width : 1824px) {
    /* Styles */
    /* iPhone 4 ----------- */
    @media
    only screen and (-webkit-min-device-pixel-ratio : 1.5),
    only screen and (min-device-pixel-ratio : 1.5) {
    /* Styles */
    .hidden
    {position:absolute;
    left:-10000px;
    top:auto;
    width:1px;
    height:1px;
    overflow:hidden;}
    a img {
        border-top-style: none;
        border-right-style: none;
        border-bottom-style: none;
        border-left-style: none;
    header {
        width: 1100px;
        background-repeat: no-repeat;
        margin-top: 0;
        margin-right: auto;
        margin-bottom: 0;
        margin-left: auto;
        padding-top: 0px;
        padding-right: 0;
        padding-bottom: 0px;
        padding-left: 0;
    header a {
        text-decoration: none;
        background-image: url(../images/index/orange_50th_2011_1100.png);
        background-repeat: no-repeat;
        background-position: right top;
        padding: 0;
        display: block;
        height: 130px;
        text-indent: -700px;
    header a:focus {
        background-position: right top;
        padding: 0;
        height: 132px;
        text-decoration: none;
        display: block;
        background-image: url(../images/index/orange_50th_2011_1100.png);
        background-repeat: no-repeat;
        text-indent: 0px;
        text-decoration: underline;
        color: white;
    a:focus {
      outline: thin dotted;
      outline: 5px auto -webkit-focus-ring-color;
      outline-offset: -2px;
    header b {
        text-decoration: none;
    h1 {
        height: 75px;
        width: 285px;
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
        font-size: 50px;
        font-weight: normal;
        color: #f1efe0;
        float: left;
        padding-left: 35px;
        padding-top: 75px;
    h2 {
        height: 51px;
        width: 480px;
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
        font-size: 25px;
        font-weight: normal;
        font-style: italic;
        float: left;
        color: #f1efe0;
        padding-top: 99px;
    h3 {
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
        font-size: 14px;
        color: #666;
        height: 25px;
        padding-left: 10px;
    h4 {
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
        font-size: 15px;
        margin: 25px;
        color: #666666;
    #logo {
        background-color: #af4d33; /*change the color to match your orange*/
        display: block;
    #navbackground {
        background-color: #776353; /*change the color to match your brown*/
        background-repeat: repeat;
    #nav {
        margin-top: 0;
        margin-right: auto;
        margin-bottom: 0;
        margin-left: auto;
        padding-top: 0px;
        padding-right: 0;
        padding-bottom: 0px;
        padding-left: 0;
        width: 1100px;
    .caption {
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
        font-size: 11px;
        color: #666666;
        margin: 25px;
    p {
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
        font-size: 13px;
        color: #414040;
        margin: 25px;
    .caption {
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
        font-size: 11px;
        color: #666666;
        margin: 25px;
    #wrapper {
        background-color: #e2dfcf;
        min-height: 100%;
        height: auto !important;
        height: 100%;
        width: 1100px;
        margin-right: auto;
        margin-left: auto;
        border-right-width: 1px;
        border-left-width: 1px;
        border-right-style: solid;
        border-left-style: solid;
        border-right-color: #999999;
        border-left-color: #999999;
    #wrapper #white {
        background-repeat: repeat;
        padding: 0;
        display: block;
        height: 10px;
        background-color: #FFF;
        width: 2500 px;
    #wrapper #slideshow {
        height: 358px;
        background-repeat: no-repeat;
    #wrapper #programseventstitle {
        width: 275px;
        height: 25px;
        float: left;
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
        font-size: 14px;
        color: #414040;
        font-weight: normal;
        font-variant: normal;
        background-color: #e2dfcf;
        padding-top: 10px;
    #wrapper #newstitle {
        width: 275px;
        height: 40px;
        float: left;
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
        font-size: 14px;
        color: #414040;
        vertical-align: middle;
        font-weight: normal;
        margin: 0px;
        background-color: #f1efe0;
        padding-top: 10px;
    #wrapper #multimediatitle {
        width: 275px;
        height: 40px;
        float: left;
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
        font-size: 14px;
        color: #414040;
        font-weight: normal;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        background-color: #e2dfcf;
        padding-top: 10px;
    #wrapper #supportustitle {
        width: 275px;
        height: 40px;
        float: left;
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
        font-size: 14px;
        color: #414040;
        font-weight: normal;
        margin: 0px;
        background-color: #f1efe0;
        padding-top: 10px;
    #wrapper #bodyArea #photoprogramsevents {
        float: left;
        background-color: #f1efe0;
        width: 275px;
        height: 143px;
    #wrapper #bodyArea #photonews {
        float: left;
        background-color: #f1efe0;
        width: 275px;
        height: 143px;
    #wrapper #bodyArea #photomultimedia {
        float: left;
        background-color: #f1efe0;
        width: 275px;
        height: 143px;
    #wrapper #bodyArea #photosupport {
        float: left;
        background-color: #f1efe0;
        width: 275px;
        height: 143px;
    #wrapper #bodyArea #programsevents {
        float: left;
        background-color: #e2dfcf;
        width: 275px;
        height: 350px;
    #wrapper #bodyArea #news {
        float: left;
        background-color: #f1efe0;
        width: 275px;
        height: 350px;
    #wrapper #bodyArea #multimedia {
        float: left;
        background-color: #e2dfcf;
        width: 275px;
        height: 350px;
    #wrapper #bodyArea #supportus {
        float: left;
        background-color: #f1efe0;
        width: 275px;
        height: 350px;
    #wrapper #bodyArea #footer {
        height: 100px;
        width: 1100px;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 10px;
        background-color: #af4d33;
        padding: 0px;
        color: #FFFFFF;
        background-repeat: repeat;
        clear: both;
    .footer, .push {
        clear: both;
    #wrapper #bodyArea #footer #searchbar {
        height: 70px;
        width: 230px;
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
        font-size: 12px;
        background-color: #af4d33;
        padding: 15px;
        color: #FFFFFF;
        background-repeat: no-repeat;
        float: left;
        text-align: left;
        clear: none;
    #wrapper #bodyArea #footer #admissionhours
        height: 70px;
        width: 415px;
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
        font-size: 12px;
        background-color: #af4d33;
        padding: 15px;
        color: #FFFFFF;
        background-repeat: no-repeat;
        float: left;
        text-align: left;
        clear: none;
    #wrapper #bodyArea #footer #addresstel{
        height: 60px;
        width: 330px;
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
        font-size: 12px;
        background-color: #af4d33;
        color: #FFFFFF;
        background-repeat: no-repeat;
        float: right;
        text-align: right;
        padding-top: 22px;
        padding-right: 25px;
        padding-bottom: 0px;
        padding-left: 15px;
    #google_translate_element{
        padding: 25px;
    html {
    overflow-y:scroll;
    a img {border: none;

    Horgykitkat wrote:
    What I found after taking out the heights from the text areas is that I was left with uneven text column lengths (alternating beige areas). So I created a repeatable jpg with the same alternating beiges and put it as the background of the bodyArea tag. Again, if there is a better way, please let me know!
    A repeating background image to 'fake' equal height columns is perfectly ok.
    It won't work IF your page is responsive but it isn't so no problem. If it were responsive a better solution would be to take advantage of the css property display: table; and display: table-cell;
    In reference to your footer background color not showing I would assume you have floated items within the footer container. If so then you need to clear those floated items which allows the footer container to wrap itself around the floated items inside it.
    You would do this by using css - overflow: hidden; - on the parent container which has the floats inside it.

  • Adobe media encoder cs4 extremely slow (5 hours for 8 minute video)

    I know you have seen slowencoder issues before, but I have tried everything I can to fix this and need help.
    Lets start with basic info:
    8 minute vieo takes over 5 hours to generate final video.
    Observations:  3 processes are running most of the time, with over 2GB memory left over and available, I/O is low, CPU is at 90 to 100 percent for hours during encode.
    PProHeadless.exe 48-50%
    Adobe Media Encoder.exe  30-40%
    ImporterProcessServer.exe  can be from 30-50% CPU but not constant.
    I live in San Jose, and am willng to take this laptop to your Office to debug it personally. (FYI)
    CS4: 4.2.1 with all updates applied
    ALL Encoder OUTPUT is set to a 128GB Solid State Drive drive so there are very low delays on I/O: SAMSUNG MMCRE28G8MXP-0VB.
    This setting is in the general disk setting, media cache files, etc.  All I/O is to this drive, except the project file which for some reason gets copied to temp on c drive... (no I/O there however)
    OS Boot drive is the seagate hybrid drive and is also very fast: ST95005620AS
    H.264 with preset Youtube HD wide screen standard preset
    All Video source files are this format from either a sony HDV or a panasonic HDV.
    SONY HDV:  30 Interlaced
    Type: MPEG Movie
    File Size: 78.3 MB
    Image Size: 1440 x 1080
    Pixel Depth: 32
    Frame Rate: 29.97
    Source Audio Format: 48000 Hz - compressed - Stereo
    Project Audio Format: 48000 Hz - 32 bit floating point - Stereo
    Total Duration: 00;00;24;13
    Average Data Rate: 3.2 MB / second
    Pixel Aspect Ratio: 1.3333
    Panasonic: 60P:
    Type: MPEG Movie
    File Size: 142.0 MB
    Image Size: 1920 x 1080
    Pixel Depth: 32
    Frame Rate: 59.94
    Source Audio Format: 48000 Hz - compressed - 6 channels
    Project Audio Format: 48000 Hz - 32 bit floating point - 6 channels
    Total Duration: 00;00;45;30
    Average Data Rate: 3.1 MB / second
    Pixel Aspect Ratio: 1.0
    Sysinfo:
    OS Name    Microsoft Windows 7 Enterprise
    Version    6.1.7600 Build 7600
    Other OS Description     Not Available
    OS Manufacturer    Microsoft Corporation
    System Name    JBRANDT-WS
    System Manufacturer    LENOVO
    System Model    4389AB8
    System Type    x64-based PC
    Processor    Intel(R) Core(TM) i7 CPU       Q 720  @ 1.60GHz, 1600 Mhz, 4 Core(s), 8 Logical Processor(s)
    BIOS Version/Date    LENOVO 6NET74WW (1.34 ), 10/27/2010
    SMBIOS Version    2.6
    Windows Directory    C:\Windows
    System Directory    C:\Windows\system32
    Boot Device    \Device\HarddiskVolume1
    Locale    United States
    Hardware Abstraction Layer    Version = "6.1.7600.16385"
    User Name    CISCO\jbrandt
    Time Zone    Pacific Standard Time
    Installed Physical Memory (RAM)    8.00 GB
    Total Physical Memory    7.93 GB
    Available Physical Memory    1.99 GB
    Total Virtual Memory    7.93 GB
    Available Virtual Memory    1.58 GB
    Page File Space    0 bytes
    DISPLAY:
    Name    NVIDIA Quadro FX 880M
    PNP Device ID    PCI\VEN_10DE&DEV_0A3C&SUBSYS_214517AA&REV_A2\4&5AED965&0&0018
    Adapter Type    Quadro FX 880M, NVIDIA compatible
    Adapter Description    NVIDIA Quadro FX 880M
    Adapter RAM    1.00 GB (1,073,741,824 bytes)
    Installed Drivers    nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um
    Driver Version    8.17.12.5738
    INF File    oem77.inf (Section052 section)
    Color Planes    Not Available
    Color Table Entries    4294967296
    Resolution    1600 x 900 x 49 hertz
    Bits/Pixel    32
    Memory Address    0xCC000000-0xCDEFFFFF
    Memory Address    0xD0000000-0xDFFFFFFF
    Memory Address    0xCE000000-0xDFFFFFFF
    I/O Port    0x00002000-0x00002FFF
    IRQ Channel    IRQ 16
    I/O Port    0x000003B0-0x000003BB
    I/O Port    0x000003C0-0x000003DF
    Memory Address    0xA0000-0xBFFFF
    Driver    c:\windows\system32\drivers\nvlddmkm.sys (8.17.12.5738, 12.46 MB (13,065,064 bytes), 6/28/2010 6:21 AM)
    Adobe Project file:
      XML 400 pages so skipped
    Encoding additional info:
    I use time Warping ON SOME OF THE CLIPS, and I TOOK 2 of the 60P videos and set the time to 10% and 20% IN THIS PROJECT FOR SLOW MOTION OF THE ENTIRE CLIP.
    Another note that you need to look at separately:
    I have seen issues trying to time warp and 60P video interpreted at 30P and time warped.  It displays fine, but WILL NOT RENDER.  I deleted these and re-did them at 10 and 15% time respectively to get the video rendered.
    Looking forward to help.
    Jim

    Harm:
    Cost: I got 2 of the Kingston 128GB SSD V100 from Costco at around 165 each  (after rebate). They are on sale, and there is a 40 rebate each drive  (up to 2) rebate.
    Yes you are right, I did not expect improvements for Premiere pro, but I installed because I use this configuration on other systems for 1 year... and here are the results...
    ALL of the data on this sytem is backed up on my 8TB server.  I can loose anything here and get it back. I see the OS as just another replaceable disk.
    I used the system motherboard hardware Raid 0 for C: AND...  I put 3 of the 1TB drives on the motherboard hardware raid as a data disk.  Data disk is ALL scratch disk, for the encoded files and cache.  Source files are on the other software striped drive.  Of course I loaded a fresh install and moved to Windows 7 64bit...
    Overall observations:
         As you predicted encode times did not improve much, It was 15 minutes vs 17 minutes at 2.66 clock. I am unimpressed with the Intel Motherboard Raid 0. I saw the SSD was blazingly fast, but I think moving these to a RAID controll they will go faster.  Each SSD drive in 200+MB/S rated.
    What I do see is dramatic improvements in load times of the OS and ANY  program you run.  The pagefile was moved back to this raid 0 drive after  benchmarks. RUNNING ANY application (adobe, microsoft, ALL are blazingly fast to load).
    Example: Premiere pro CS5 from click on launch to CS5 prompting for a project name was  5.5  seconds...  I would not take this out of the system for any money saved.  It is amazing.  Almost as good as the nvidia quadro FX 4000 Display card and the CS5.
    My NEXT investment IS the RAID controller, and 6 of the Hitachi deskstar 3TB 6GPS Sata III drives to replace all my current drives. Next month or so for that.
    I want components that I can keep in the system when I do replace the motherboard and CPU.  I will tune this system as I have funds, and ask for help when this system no longer is viable and replace the motherboard.  I will ask for the fastest motherboard and CPU combo that you can buy, and keep my 730X(treme) case and add a water cooler.  As drives add 1TB a year in size, they seem to meet myneeds and I replace the old every 2 years to get the space I need.
    As always your comments are spot on and I appreciate your reviews.
    Bechmarks are from CPUID's toolkit, here are the disk benchmarks:
    Disk Performance in   MB/S
    OS
    Sequential read
    Sequential Write
    buffered read
    buffered write
    random read
    Improvements:   Sequential write MB/Sec
    Sequential read
    buffered read
    buffered write
    random read
    C: 1   velociraptor
    Vista   Ultimate
    97.38
    72.45
    139.05
    128.52
    33
    Baseline
    Baseline
    Baseline
    Baseline
    Baseline
    C: Motherboard Hardware Raid 0 128G Kingston (220gb)
    Windows   7 64bit
    230.98
    98.92
    229.59
    229.59
    53
    237.19%
    136.54%
    165.11%
    178.64%
    160.61%
    Data 1: software raid 2 drives
    Vista   Ultimate
    108.36
    54.66
    121.05
    73.01
    34
    Baseline
    Baseline
    Baseline
    Baseline
    Baseline
    Data 1: software raid 2 drives
    Windows   7 64bit
    111.35
    55.6
    131.83
    74.58
    25
    102.76%
    101.72%
    108.91%
    102.15%
    73.53%
    Data 2:3 software raid 0 3 drives
    Vista   Ultimate
    129.4
    160.7
    154.49
    143.7
    29
    Baseline
    Baseline
    Baseline
    Baseline
    Baseline
    Data 2: Motherboard Hardware Raid 0 raid 0, 3 drives
    Windows   7 64bit
    132.5
    212.66
    179.59
    162.85
    44
    102.40%
    132.33%
    116.25%
    113.33%
    151.72%

  • Calculating CPI and SPI based on Costs Only - No Hours

    Sometimes on our projects, our vendors provide a SOW in dollars, no hours and our internal customers work on projects as needed, also only assigning a dollar value to their efforts without hours. Based on the calculations for CPI (EV/AC) and SPI (EV/PV),
    you need to assign work (hours) to tasks with dates as well as the costs. I am just curious as to if anyone knows of a way for Project 2007 to calc CPI and SPI on generic resources (cost) by just updating the actual dollars spent.

    Hi,
    I have tried to put together some scripts that may help you. The sql script may need to be improved and be protected against errors, null values etc.
    declare @AC float, @PV float, @EV float, @TPC float,@ProjectUID uniqueidentifier
    Select @ProjectUID =''
    select @AC=SUM(abd.AssignmentActualCost), @PV=SUM(ISNULL(abd.AssignmentBaseline0Cost,0)) from MSP_EpmAssignmentByDay_UserView abd
    inner join MSP_EpmAssignment_UserView a on abd.AssignmentUID=a.AssignmentUID
    inner Join msp_epmproject p on a.projectuid=p.projectuid
    inner Join msp_epmresource r on a.resourceuid=r.resourceuid
    where r.ResourceType in (25,26) and abd.TimeByday <= getdate() and a.Projectuid=@ProjectUID
    select @TPC=SUM(ISNULL(abd.AssignmentBaseline0Cost,0)) from MSP_EpmAssignmentByDay_UserView abd
    inner join MSP_EpmAssignment_UserView a on abd.AssignmentUID=a.AssignmentUID
    inner Join msp_epmproject p on a.projectuid=p.projectuid
    inner Join msp_epmresource r on a.resourceuid=r.resourceuid
    where r.ResourceType in (25,26) and a.Projectuid=@ProjectUID
    select @EV=(ProjectPercentCompleted*@TPC)/100 from MSP_epmProject_userview where ProjectUID=@ProjectUID
    select @EV/@AC as CPI, @PV/@EV as CPI
    Hope this helps
    Paul

Maybe you are looking for

  • My report contains a BLOB (image), why it can't generate an XML file?

    Hi guys, I created a report (Purchase Order) and it has a Signature field. which is a BLOB column of an image (.JPEG) of the signature of the Purchase Order Approver. When i run the report in the report builder its working and it shows the image of t

  • Sun JSC2 - How to download files to client

    Hi, imagine a document management site. I want to have a list of files with links that users can click to download them. Users can upload files (with handy File Upload component), and they get saved as byte streams to a file or database or whatever.

  • Requeriments OS for installation Oracle 11g RAC  in Windows 2003

    I plan to install Oracle 11g Standard with RAC in Windows 2003 Server. I will use 2 nodes with the same OS. I will use a SAN with fibre channel, to store the DB. It is possible to install Oracle RAC in W2003 Standard ? I need obligatory W2003 Enterpr

  • Autostart of Oracle 10.2 on MAC (XServe with Snow Leopard (10.6.3 Server))

    Followed the instruction given in http://download.oracle.com/docs/cd/B19306_01/server.102/b15658/strt_stp.htm#CFAHCEFC (Section 2.2.1) Get the following error listed in the error console: 23/05/2010 02:28:55 com.apple.SystemStarter[93] bash: /Volumes

  • .conf files

    how are these used ? how do I create a device which has a none-pseudo /dev entry ? are the instance numbers controlled from this file ?