Can anyone help me understand "Continue Statements"?

Hi,
I was wondering if anyone could help me understand continue statements. I've been studying the java tutorials this weekend but can not get my head around the following explanation: (My thoughts are at the end of this message and it might be easiest to read them first!)
"The continue statement skips the current iteration of a for, while , or do-while loop. The unlabeled form skips to the end of the innermost loop's body and evaluates the boolean expression that controls the loop. The following program, ContinueDemo , steps through a String, counting the occurences of the letter "p". If the current character is not a p, the continue statement skips the rest of the loop and proceeds to the next character. If it is a "p", the program increments the letter count.
{code}class ContinueDemo {
public static void main(String[] args) {
String searchMe = "peter piper picked a peck of pickled peppers";
int max = searchMe.length();
int numPs = 0;
for (int i = 0; i < max; i++) {
//interested only in p's
if (searchMe.charAt(i) != 'p')
continue;
//process p's
numPs++;
System.out.println("Found " + numPs + " p's in the string.");
}{code}
Here is the output of this program:
Found 9 p's in the string.
To see this effect more clearly, try removing the continue statement and recompiling. When you run the program again, the count will be wrong, saying that it found 35 p's instead of 9.
A labeled continue statement skips the current iteration of an outer loop marked with the given label. The following example program, ContinueWithLabelDemo, uses nested loops to search for a substring within another string. Two nested loops are required: one to iterate over the substring and one to iterate over the string being searched. The following program, ContinueWithLabelDemo, uses the labeled form of continue to skip an iteration in the outer loop.
{code}class ContinueWithLabelDemo {
public static void main(String[] args) {
String searchMe = "Look for a substring in me";
String substring = "sub";
boolean foundIt = false;
int max = searchMe.length() - substring.length();
test:
for (int i = 0; i <= max; i++) {
int n = substring.length();
int j = i;
int k = 0;
while (n-- != 0) {
if (searchMe.charAt(j++)
!= substring.charAt(k++)) {
continue test;
foundIt = true;
break test;
System.out.println(foundIt ? "Found it" :
"Didn't find it");
}{code}
Here is the output from this program.
Found it"
Here are Woodie's thoughts........................................
1) With the first program I don't understand how the program counts the number of "p's". Like for example how it stores the number of "p's". Shouldn't it say:
if (searchMe.charAt(i) = 'p') then store it in some sort of containers??? 2) With the second program, I don't understand the test section. For example: Why does it have --? why does it have != after while and why does it have != after if?
while (n-- != 0)
                if (searchMe.charAt(j++) != substring.charAt(k++))
                    continue test;
            foundIt = true;
                 break test;Edited by: woodie_woodpeck on Nov 23, 2008 3:29 AM

Woodie, I think they're just silly "theoretical" examples... ergo don't worry too much not understanding them, coz they don't actually make a lot of sense... as you've allready pointed out there are other "more normal" control structures which achieve the same thing, and which in this case (in my humble opinion) would make for clearer, more concise, more maintainable code.
All you need to know about continue is "it means go back to the top of the loop"... If you're not comfortable using "continue" then don't.
There's more than one way to do it.
  public static void main(String[] args) {
    try {
      final String s = "peter piper picked a peck of pickled peppers";
      int count = 0;
      for ( char c : s.toStringArray() ) {
        if (c=='p') count++;
      System.out.println("There are "+count+ " p's in '"+s+"'");
    } catch (Exception e) {
      e.printStackTrace();
  }Having said all that... I did use continue in anger the other day... I was reading Geometries from a shape file... the reader was throwing an ArrayIndexOutOfBoundsException given an "empty Feature" (ie a feature with the geospatial presence)... All I did was catch the exception and continue trying to read the new feature... the alternative would have been to rewrite the control logic of the whole reader loop... quick, simple effective... but I don't routinely build continue statements into new code... just a matter of personal taste.
Cheers. Keith.

Similar Messages

  • Please can anyone help with the continuing password rejection problem with email.Ipad and other systems work fine but despite reloading my password on imac it bounces back.Apple store has been visited and I have tried everything they suggest.

    Please can anyone help with the continuing password rejection problem with email on my imac.My Ipad and other systems work fine but despite reloading my password on imac it bounces back.Apple store has been visited and I have tried everything they suggest.

    I use free Yahoo mail webMail access because folders I created in webmail access doesn't get set up in Apple Mail. While I was searching for post about password and keychain issues, I stumbled on several threads that complain about Mail folder issues, so I'm holding off on Apple Mail.
    On the password and keychain issue that your post is all about.  I've been using login keychain to save and automatical fill my login screens for a year or so successfully, with Safari and Chrome. Automatic form fill also works for Facebook login. Unfortunately, about 4 to 6 months ago, automatic password form fill stopped working with Yahoo webmail, while still worked for GMail (Safari and Chrome). I tried deleting the password entry for my two Yahoo email accounts to start fresh, but neither Safari not Chrome will even ask me if I want to save the password. I was so frustrated that I eventually installed the keypassX 0.43 (password manager) that is quite primitive sompare to OS X's keychain (when it works). Probably no surprise to you yet.
    The surprise, to me at least, is that, for whatever reason, password auto form-fill from keychain started working again for Yahoo webmail login on Safari about 5-7 days ago. Still doesn't work on Chrome!
    Two tips I can share, at least with webmail access:
    1. Password is save only for one of my yahoo mail accounts. When I login in with my other yahoo account, I get no prompt to save the password, and form fill doesn't work when I try to log in a second time with my other Yahoo mail account.
    2. On inspection of my login keychain, I see a webform password item saved for my Yahoo account that works with keychain. The name of the password is: login.yahoo.com(MyAccountName1#). When I open the password item and look in the Access Control tab, I see Safari and Chome are listed as allowed to access this password item..
         I also an "Internet password" item with a name of just login.yahoo.com. When I open the the password item, it looks just like the password item created for MyAccountName#1, but the MyAccountName#2 is listed in the Account field. Inside the Access Control tab, no apps are listed in access permission. I added Safari and Chrome to the lists of allowed app, saved the password item.
    Now when I bring up the Yahoo login page(by bookmark) on Safari, form fill fills in MyAccountname#1 for name and the proper password and I can login in. When I change the name to MyAccountName#2, the correct password is retrieved and I can log in! Alas, it still doesn't work on Chrome.
    BTW, I changed the password item type from "Internet password" to "Web Form password" and saw no difference! I also edited the name to be "login.yahoo.com (MyAccountName#2)" to look like the web form password item that works, but it has no effect either.
    From my experimentation, here's my observation:
    1. A Web Form password item is created for the first account name(MyAccountName#1) for login.yahoo.com and typed as Web Form password. When I log in using MyAccountName#2, an Internet Password is created, but no applications are listed as allowed to access the password item, even when the password item was created after just logged in and logged out to yahoo with the account name and password for MyAccountName#2.
    2. Manually adding Safari as an app that is allowed to use the password item works. Doesn't work with Chrome!
    The version of Safari I'm using is Version 5.1.7 (6534.57.2). My installed version of Chrome is Version 21.0.1180.79 beta.

  • Can anyone help me understand what "Excessive Probe Frames detected" means?

    I am seeing many APs in a SWAN implementation generating the following errors. Clients seem to be getting disconnected regularly... Can anyone give me a guess as to what this means? The location where this is happening is a bit light on access points, but has ample radio coverage. A site survey and walkthrough was performed. Radio parameters were generated through site survey wizard... Thanks!
    Excessive Deauthentication Frames from STA:00-11-20-ee-af-3e [Frames:63,Interval:500ms],
    Excessive Deauthentication Frames in Channel:64 [Frames:97,Interval:500ms],
    Excessive Disassociation Frames from STA:00-13-ce-35-29-25 [Frames:77,Interval:500ms],
    Excessive Disassociation Frames in Channel:64 [Frames:95,Interval:500ms],
    Excessive Probe Frames detected from STA:00-11-24-c8-cb-d1 [Frames:72,Interval:500ms],
    Excessive Probe Frames detected in Channel:11 [Frames:75,Interval:500ms]

    In medium-size wireless systems, 70+ in a half second may not by unusual.
    Managment frames cover all sorts of status polls, beacons & the like.
    If you're looking for good references, O'Reilly has a "Definitive Guide to 802.11" that's pretty good.
    I also have & use the Planet3 CWNA/CWSP/CWAP certification study books, published by Osborne. They're excellent study guides for the wireless stuff, and also make pretty good references.
    (CWNA - Certified Wireless Network Administrator, CWSP - Security Professional, CWAP - Analysis Professional)
    If you're gathering tools, a wireless "sniffer" can also be a Very Good Thing.
    AirMagnet is (by my understanding) a "cadallac" system, and pretty expensive (~$5000.00)
    WildPackets "EtherPeek" for wireless also appers to be an excellet system (but it's also ~US$ 2500 or so).
    I use Tamosoft's "CommView" for wireless. It's a very good basic analyzer; it doesn't have all the bells & whistles, but definately gets the job done.
    Full retail it's ~US$500.00.
    If you mention that you are studying for CWAP, there's usually a good discount (~$300.00 for the full package).
    You can also get a one-year license for ~$200.00.
    You can put in all of your systems with aliases (MAC and/or IP) for rapid ID and see which system is sending what (and log it). It can also show you other interfering or malicious traffic.
    It's hard to make an evaluation without actually seeing the traffic and the source/destination info.
    It could be something as simple as bad drivers, it could be something much more complex ... no way to tell unless you can see what's actually happening.
    The probe frames can be someone gathering information about your system, or it could just be a bunch of clients trying to associate.
    What kind of authentication do you use (if any)?
    Good Luck
    Scott

  • Can anyone help me understand how font sizes work in Mail?

    Hi
    I am used to writing and sending emails in Arial 10 (on my PC using Outlook) - it seems like a professional sort of size to send to people.
    So I have set the Mail Preferences Fonts to Arial 10 for the message font
    But when I receive emails, the font is so small I can barely read it. I have a new 24" iMac and just cannot get to grips with keeping font sizes at a reasonable level between applications. And I though Mac was supposed to be joined up....
    As I write the text of this posting, the font is a good size to read (although still looks blurred - see my other postings) - it is in Arial which I want.... But I cannot get Mail to wrk in the same way.
    I do not want to change the font size to the email messages to a bigger font size, as I want my outgoing messages to be received in font size 10.
    Please help me understand how this is all supposed to work in MAC? It was all so easy on a PC!

    No, it is one of several unfathomable shortcomings in Mail that you are unable to set a minimum text viewing size. I too have 24in iMac and I have to enlarge each incoming message manually using Cmd+ and this is frankly Stone Age stuff, especially when dealing with hundreds of emails every day. Another very poor alternative is to use Ctrl and the scroll wheel to zoom in but your head will soon be spinning as the screen moves around.
    FWIW, I am also dismayed that Apple has disabled the Contextual Menu in 3 of the 4 mail address fields. There must be some obscure justification for limiting CM copy and paste to just the Subject field but I just think it's risible.
    And why can't I save a message I have just written to a place of my choosing? Instead I must save it to the Drafts folder or send it first and then Save As from the Sent mailbox. Is this someone's idea of fun?
    I could go on about Mail's shortcomings but that's enough ranting for now...
    Simon

  • Can anyone help me understanding the links between Launchpad roles, PFCG roles, and portal roles!?!

    Hi experts,
    I am looking at the newer EhP5 and EhP6 functionality for ESS and MSS, specifically the WD ABAP portal applications.  I've turned on all the business functions and services I think our team wants, however I'm confused on how to move forward in using them.  For a little tech info, we are on EhP6 for the backend, but our portal is 7.02.
    My first step was to assign the com.sap.pct.erp.ess.wda.Employee_Self_Service_WDA portal role to our test ESS user group in our sandbox environment.  The ESS user got a new ESS tab in the portal and it's linked to the Launchpad role ESS, Instance MENU.  I'm comfortable with ESS at this point, still need to learn more about customizing the menu for different employee groups without creating additional Launchpad or SAP roles.
    Question 1: Correct me if I'm wrong, but is the Launchpad roll ESS, instance menu linked to the PFCG role SAP_EMPLOYEE_ESS_WDA_2?
    Next, I was looking to see if there was a similar portal role for MSS, but it seems I can't find one.  I implemented the MSS Addon 1.0 for ABAP and the portal and got a new MSS portal addon role, but it doesn't seem to be connected to any MSS Launchpad role.
    Question 2: Is there a portal role to assign to users/groups that is linked to one of the MSS Launchpad roles? If yes, what business function or service is it a part of?
    I'd like to use of the existing MSS Launchpad role to test some of the new portal functionality, but I'm not sure how to do it.
    Question 3: How is a Launchpad role assigned to a SAP role in PFCG?  Anyone have some documentation they can point me too?
    Kind regards,
    Garrett Meredith

    Thank you Samuli, this was very helpful in connecting many of the pieces.
    For now I have a very good understanding of how the new ESS is controlled and modified.
    It appears that FPM_LAUNCHPAD_UIBB could be used to develop a similar component to call a custom launchpad role for MSS containing a customized list of WDA applications.
    Is a MSS Launchpad a good way to pursue since we use a SAP enterprise portal?
    I found a PAOC_MSS package containing other MSS embedded packages.
    Could I use one of the embedded packages in there and by creating a Component configuration in the FPM_LAUNCHPAD_UIBB for one of the MSS WD applications?
    Based on the documentation link above, PFCG roles are for NWBC HTML or Desktop versions.
    Kind regards,
    Garrett

  • Can anyone help me understand "mail" issue?

    I can send and receive emails using "Mail" on my macbook pro (4.1, 2.5 Ghz) when using my home internet connection.
    When away from home I can only receive emails, not send them.
    I have checked this with my email host who says the issue must be with my isp wherever I happen to be when away from home.
    However, that cannot be true since I can send emails using that isp on my iphone when away from home.
    What is wrong? Is it something to do with my laptop? Has anyone had this experience and solved it?
    I would be very grateful for any help.
    Johan

    Thank you sig,
    it seems I can though, because it works from my iphone using a different isp. Ought to be the same on the laptop?

  • I am getting the following crash report whenever Safari tried to run. This is on my bosses Macbook Pro running Lion. Can anyone help me understand what is wrong and how to fix it?? TIA.

    Process: Safari [231]
    Path: /Users/USER/Desktop/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 5.1.1 (6534.51.22)
    Build Info: WebBrowser-75345122~2
    Code Type: X86-64 (Native)
    Parent Process: launchd [151]
    Date/Time: 2012-03-22 16:20:53.606 -0400
    OS Version: Mac OS X 10.7.3 (11D50b)
    Report Version:  9
    Interval Since Last Report:          62081 sec
    Crashes Since Last Report:           14
    Per-App Interval Since Last Report:  403388 sec
    Per-App Crashes Since Last Report:   14
    Anonymous UUID:  1FADBB78-0799-48A9-818C-5F67E8B4CB34
    Crashed Thread:  0 Dispatch queue: com.apple.main-thread
    Exception Type: EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    objc[231]: garbage collection is OFF
    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '+[WebView _registerURLSchemeAsAllowingLocalStorageAccessInPrivateBrowsing:]: unrecognized selector sent to class 0x7fff77e72a30'
    *** First throw call stack:
                    0   CoreFoundation 0x00007fff89760fc6 __exceptionPreprocess + 198
                    1   libobjc.A.dylib 0x00007fff8c5fbd5e objc_exception_throw + 43
                    2   CoreFoundation 0x00007fff897ed1ee +[NSObject doesNotRecognizeSelector:] + 190
                    3   CoreFoundation 0x00007fff8974de73 ___forwarding___ + 371
                    4   CoreFoundation 0x00007fff8974dc88 _CF_forwarding_prep_0 + 232
                    5   Safari  0x00007fff92c115d8 _ZN6Safari20ExtensionsControllerC2Ev + 168
                    6   Safari  0x00007fff92c117c1 _ZN6Safari20ExtensionsController6sharedEv + 53
                    7   Safari  0x00007fff92aec862 -[AppController(FileInternal) _updateExtensionBarMenuItems] + 232
                    8   Safari  0x00007fff92ae9f89 -[AppController awakeFromNib] + 482
                    9   CoreFoundation 0x00007fff89758021 -[NSObject performSelector:] + 49
                    10  CoreFoundation 0x00007fff89757fa2 -[NSSet makeObjectsPerformSelector:] + 274
                    11  AppKit  0x00007fff8f423b2f -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1245
                    12  AppKit  0x00007fff8f41a09f loadNib + 322
                    13  AppKit  0x00007fff8f4197a2 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 735
                    14  AppKit  0x00007fff8f4194b7 +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 141
                    15  AppKit  0x00007fff8f4193fa +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 364
                    16  AppKit  0x00007fff8f68c9b3 NSApplicationMain + 398
                    17  Safari  0x00007fff92ce348d SafariMain + 197
                    18  Safari  0x0000000100000f1c Safari + 3868
                    19  ???  0x0000000000000002 0x0 + 2
    terminate called throwing an exception
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0 libsystem_kernel.dylib                 0x00007fff8c5cbce2 __pthread_kill + 10
    1 libsystem_c.dylib                          0x00007fff8a0357d2 pthread_kill + 95
    2 libsystem_c.dylib                          0x00007fff8a026a7a abort + 143
    3   libc++abi.dylib 0x00007fff86ece7bc abort_message + 214
    4   libc++abi.dylib 0x00007fff86ecbfcf default_terminate() + 28
    5   libobjc.A.dylib 0x00007fff8c5fc1b9 _objc_terminate + 94
    6   libc++abi.dylib 0x00007fff86ecc001 safe_handler_caller(void (*)()) + 11
    7   libc++abi.dylib 0x00007fff86ecc05c std::terminate() + 16
    8   libc++abi.dylib 0x00007fff86ecd152 __cxa_throw + 114
    9   libobjc.A.dylib 0x00007fff8c5fbe7a objc_exception_throw + 327
    10 com.apple.CoreFoundation                      0x00007fff897ed1ee +[NSObject doesNotRecognizeSelector:] + 190
    11  com.apple.CoreFoundation 0x00007fff8974de73 ___forwarding___ + 371
    12 com.apple.CoreFoundation                      0x00007fff8974dc88 _CF_forwarding_prep_0 + 232
    13 com.apple.Safari.framework                    0x00007fff92c115d8 Safari::ExtensionsController::ExtensionsController() + 168
    14 com.apple.Safari.framework                    0x00007fff92c117c1 Safari::ExtensionsController::shared() + 53
    15 com.apple.Safari.framework                    0x00007fff92aec862 -[AppController(FileInternal) _updateExtensionBarMenuItems] + 232
    16 com.apple.Safari.framework                    0x00007fff92ae9f89 -[AppController awakeFromNib] + 482
    17 com.apple.CoreFoundation                      0x00007fff89758021 -[NSObject performSelector:] + 49
    18 com.apple.CoreFoundation                      0x00007fff89757fa2 -[NSSet makeObjectsPerformSelector:] + 274
    19  com.apple.AppKit 0x00007fff8f423b2f -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1245
    20 com.apple.AppKit                        0x00007fff8f41a09f loadNib + 322
    21 com.apple.AppKit                        0x00007fff8f4197a2 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 735
    22 com.apple.AppKit                        0x00007fff8f4194b7 +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 141
    23 com.apple.AppKit                        0x00007fff8f4193fa +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 364
    24 com.apple.AppKit                        0x00007fff8f68c9b3 NSApplicationMain + 398
    25 com.apple.Safari.framework                    0x00007fff92ce348d SafariMain + 197
    26 com.apple.Safari                          0x0000000100000f1c 0x100000000 + 3868
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0 libsystem_kernel.dylib                 0x00007fff8c5cc7e6 kevent + 10
    1 libdispatch.dylib                            0x00007fff88d055be _dispatch_mgr_invoke + 923
    2 libdispatch.dylib                            0x00007fff88d0414e _dispatch_mgr_thread + 54
    Thread 2:
    0 libsystem_kernel.dylib                 0x00007fff8c5cc192 __workq_kernreturn + 10
    1 libsystem_c.dylib                          0x00007fff8a035594 _pthread_wqthread + 758
    2 libsystem_c.dylib                          0x00007fff8a036b85 start_wqthread + 13
    Thread 3:
    0 libsystem_kernel.dylib                 0x00007fff8c5cc192 __workq_kernreturn + 10
    1 libsystem_c.dylib                          0x00007fff8a035594 _pthread_wqthread + 758
    2 libsystem_c.dylib                          0x00007fff8a036b85 start_wqthread + 13
    Thread 4:: WebCore: IconDatabase
    0 libsystem_kernel.dylib                 0x00007fff8c5cca8e pread + 10
    1 libsqlite3.dylib                0x00007fff8bd50ce5 unixRead + 69
    2 libsqlite3.dylib                0x00007fff8bd724f6 readDbPage + 102
    3   libsqlite3.dylib 0x00007fff8bd70c9b sqlite3PagerAcquire + 315
    4 libsqlite3.dylib                0x00007fff8bd9f872 moveToChild + 146
    5 libsqlite3.dylib                0x00007fff8bda1b68 sqlite3BtreeNext + 600
    6 libsqlite3.dylib                0x00007fff8bd9a909 sqlite3VdbeExec + 41561
    7 libsqlite3.dylib                0x00007fff8bd8fa5b sqlite3_step + 1883
    8 com.apple.WebCore                    0x00007fff8e5d794e WebCore::SQLiteStatement::step() + 62
    9 com.apple.WebCore                    0x00007fff8e5d81ca WebCore::IconDatabase::performURLImport() + 1116
    10 com.apple.WebCore                   0x00007fff8e5d6a69 WebCore::IconDatabase::iconDatabaseSyncThread() + 469
    11 com.apple.WebCore                   0x00007fff8e5d688b WebCore::IconDatabase::iconDatabaseSyncThreadStart(void*) + 9
    12 libsystem_c.dylib                         0x00007fff8a0338bf _pthread_start + 335
    13 libsystem_c.dylib                         0x00007fff8a036b75 thread_start + 13
    Thread 5:: CoreAnimation render server
    0 libsystem_kernel.dylib                 0x00007fff8c5ca67a mach_msg_trap + 10
    1 libsystem_kernel.dylib                 0x00007fff8c5c9d71 mach_msg + 73
    2 com.apple.QuartzCore                0x00007fff8ce0c5c9 CA::Render::Server::server_thread(void*) + 184
    3 com.apple.QuartzCore                0x00007fff8ce0c509 thread_fun + 24
    4 libsystem_c.dylib                          0x00007fff8a0338bf _pthread_start + 335
    5 libsystem_c.dylib                          0x00007fff8a036b75 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff5fbfe3b8 rdx: 0x0000000000000000
      rdi: 0x0000000000000b07  rsi: 0x0000000000000006  rbp: 0x00007fff5fbfe3e0 rsp: 0x00007fff5fbfe3b8
       r8: 0x00007fff76da8fb8   r9: 0x00007fff5fbfde48  r10: 0x00007fff8c5cbd0a r11: 0xffffff80002d8220
      r12: 0x00007fff8fca572c  r13: 0x0000000000000006  r14: 0x00007fff76dab960 r15: 0x00007fff5fbfe530
      rip: 0x00007fff8c5cbce2  rfl: 0x0000000000000246  cr2: 0x00000001000fd000
    Logical CPU: 0
    Binary Images:
    0x100000000 -        0x100000fff  com.apple.Safari (5.1.1 - 6534.51.22) <D2BE27EF-F983-092E-8583-DA49B9E12CCC> /Users/USER/Desktop/Safari.app/Contents/MacOS/Safari
    0x7fff6432e000 -     0x7fff64362baf  dyld (195.6 - ???) <0CD1B35B-A28F-32DA-B72E-452EAD609613> /usr/lib/dyld
        0x7fff86742000 -     0x7fff8675fff7  com.apple.openscripting (1.3.3 - ???) <4FACC89E-FDAA-3CA5-B5CD-1F4EEAEDF7CF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff86dd2000 -     0x7fff86e48fff  com.apple.ISSupport (1.9.8 - 56) <2BEEF162-893F-356C-BD4E-8668F044A917> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x7fff86e49000 -     0x7fff86e49fff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff86e4a000 -     0x7fff86e73fff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff86e7f000 -     0x7fff86ebefff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff86ebf000 -     0x7fff86ec5ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
    0x7fff86ec6000 -     0x7fff86ed1ff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
    0x7fff86ed2000 -     0x7fff86efbff7 com.apple.framework.Apple80211 (7.1.2 - 712.1) <B4CD34B3-D555-38D2-8FF8-E3C6A93B94EB> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff87257000 -     0x7fff8727bfff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff872d7000 -     0x7fff8738afff  com.apple.CoreText (220.11.0 - ???) <0322442E-0530-37E8-A7D6-AEFD909F0AFE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x7fff8738b000 -     0x7fff8739aff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
    0x7fff8739b000 -     0x7fff873edff7  libGLU.dylib (??? - ???) <3C9153A0-8499-3DC0-AAA4-9FA6E488BE13> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff873ee000 -     0x7fff873f3fff  libcache.dylib (47.0.0 - compatibility 1.0.0) <1571C3AB-BCB2-38CD-B3B2-C5FC3F927C6A> /usr/lib/system/libcache.dylib
    0x7fff873f4000 -     0x7fff87421fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <7BEBB139-50BB-3112-947A-F4AA168F991C> /usr/lib/libSystem.B.dylib
    0x7fff87422000 -     0x7fff87422fff com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff87460000 -     0x7fff87555fff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
    0x7fff87556000 -     0x7fff87556fff  com.apple.Carbon (153 - 153) <C1A30E01-E113-38A0-95CA-99360F92A37A> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff87567000 -     0x7fff8758eff7 com.apple.PerformanceAnalysis (1.10 - 10) <DD87C994-66D6-330A-BAF9-AB86BE125A62> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x7fff875ce000 -     0x7fff875eaff7 com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x7fff875eb000 -     0x7fff87608fff  libxpc.dylib (77.18.0 - compatibility 1.0.0) <26C05F31-E809-3B47-AF42-1460971E3AC3> /usr/lib/system/libxpc.dylib
    0x7fff87609000 -     0x7fff876a3ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff876a4000 -     0x7fff8771fff7 com.apple.print.framework.PrintCore (7.1 - 366.1) <3F140DEB-9F87-3672-97CC-F983752581AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff8776c000 -     0x7fff877aefff  com.apple.corelocation (330.12 - 330.12) <CFDF7694-382A-30A8-8347-505BA0CAF312> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff878f2000 -     0x7fff879fffff  libJP2.dylib (??? - ???) <F2B34A61-75F0-3BFE-A309-EE0DF4AF9E37> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff87a00000 -     0x7fff87a04ff7  com.apple.CommonPanels (1.2.5 - 94) <37C6540B-F8D1-355A-806C-F93D8FB522AB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x7fff87a12000 -     0x7fff87a38ff7 com.apple.framework.familycontrols (3.0 - 300) <DC06CF3A-2F10-3867-9498-CADAE30D0CE4> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff87a47000 -     0x7fff87a88fff  com.apple.QD (3.40 - ???) <47674D2C-BE88-388E-B1B0-03F08BFFE5FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff87ab2000 -     0x7fff87dceff7 com.apple.CoreServices.CarbonCore (960.20 - 960.20) <C45CA09E-8867-3D67-BB2E-48D2E6B0D78C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff87dcf000 -     0x7fff87e0fff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <29DE948E-38C4-3CC5-B528-40C691380607> /usr/lib/libcups.2.dylib
    0x7fff87e10000 -     0x7fff87e15ff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
    0x7fff87e16000 -     0x7fff87e28ff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
    0x7fff87e29000 -     0x7fff87e7dff7 com.apple.ScalableUserInterface (1.0 - 1) <33563775-C662-313D-B7FA-3D575A9F3D41> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x7fff87e7e000 -     0x7fff87fb4fff  com.apple.vImage (5.1 - 5.1) <A08B7582-67BC-3EED-813A-4833645964A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff87fb9000 -     0x7fff87fb9fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x7fff88042000 -     0x7fff88045ff7  com.apple.securityhi (4.0 - 1) <7146CB8E-B754-3B0E-A74E-77E9138A81C5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff88046000 -     0x7fff88049fff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff88052000 -     0x7fff8807aff7  com.apple.CoreVideo (1.7 - 70.1) <98F917B2-FB53-3EA3-B548-7E97B38309A7> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff8807c000 -     0x7fff883a6ff7  com.apple.HIToolbox (1.8 - ???) <D6A0D513-4893-35B4-9FFE-865FF419F2C2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff883a7000 -     0x7fff883c6fff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <0635C52D-DD53-3721-A488-4C6E95607A74> /usr/lib/libresolv.9.dylib
    0x7fff887e5000 -     0x7fff88858fff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
    0x7fff8888f000 -     0x7fff88896fff  com.apple.NetFS (4.0 - 4.0) <433EEE54-E383-3505-9154-45B909FD3AF0> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff888db000 -     0x7fff888eafff  libxar.1.dylib (??? - ???) <58B07AA0-BC12-36E3-94FC-C252719A1BDF> /usr/lib/libxar.1.dylib
    0x7fff888eb000 -     0x7fff888fcff7  SyndicationUI (??? - ???) <31B8E697-A12A-3389-87A9-823CBE515686> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x7fff888fd000 -     0x7fff88973fff  com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x7fff889d1000 -     0x7fff889d8ff7  com.apple.CommerceCore (1.0 - 17) <3894FE48-EDCE-30E9-9796-E2F959D92704> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x7fff88a6c000 -     0x7fff88cf7fff  com.apple.JavaScriptCore (7534.53 - 7534.53.8) <619D6392-D833-3C55-B1C0-4DAA0477796C> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff88d02000 -     0x7fff88d10fff  libdispatch.dylib (187.7.0 - compatibility 1.0.0) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
    0x7fff88d11000 -     0x7fff8913efff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff89492000 -     0x7fff894a2ff7  com.apple.opengl (1.7.6 - 1.7.6) <C168883D-9BC5-3C38-9937-42852D719718> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff894a3000 -     0x7fff894a5fff  libquarantine.dylib (36.2.0 - compatibility 1.0.0) <48656562-FF20-3B55-9F93-407ACA7341C0> /usr/lib/system/libquarantine.dylib
        0x7fff894a6000 -     0x7fff8960dff7  com.apple.CFNetwork (520.3.2 - 520.3.2) <516B611D-E53E-3467-9211-3C5B86ABA865> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x7fff8968b000 -     0x7fff896b8ff7  com.apple.opencl (1.50.69 - 1.50.69) <687265AF-E9B6-3537-89D7-7C12EB38193D> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff896b9000 -     0x7fff896bcfff  libCoreVMClient.dylib (??? - ???) <E034C772-4263-3F48-B083-25A758DD6228> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff896bd000 -     0x7fff89891fff  com.apple.CoreFoundation (6.7.1 - 635.19) <57B77925-9065-38C9-A05B-02F4F9ED007C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff89892000 -     0x7fff89907ff7  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <C0EFFF1B-0FEB-3F99-BE54-506B35B555A9> /usr/lib/libc++.1.dylib
    0x7fff89908000 -     0x7fff8990aff7 com.apple.print.framework.Print (7.1 - 247.1) <8A4925A5-BAA3-373C-9B5D-03E0270C6B12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff8991c000 -     0x7fff8995bff7  libGLImage.dylib (??? - ???) <348729DC-BC44-3744-B249-9DFA6498344A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff8995c000 -     0x7fff8995cfff com.apple.ApplicationServices (41 - 41) <89B6AD5B-5C75-3E83-8C2B-AA7F4C55E400> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff8995d000 -     0x7fff899cdfff  com.apple.datadetectorscore (3.0 - 179.4) <B4C6417F-296C-31C1-BB94-980BFCDC9175> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff899ce000 -     0x7fff89a51fef  com.apple.Metadata (10.7.0 - 627.28) <1C14033A-69C9-3757-B24D-5583AEAC2CBA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff89aaf000 -     0x7fff89ab0fff  libunc.dylib (24.0.0 - compatibility 1.0.0) <337960EE-0A85-3DD0-A760-7134CF4C0AFF> /usr/lib/system/libunc.dylib
    0x7fff89af6000 -     0x7fff89b51ff7  com.apple.HIServices (1.11 - ???) <DE8FA7FA-0A41-35D9-8473-5104F81DA934> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff89d55000 -     0x7fff89e6efff  com.apple.DesktopServices (1.6.2 - 1.6.2) <6B83172E-F539-3AF8-A76D-1F9EA357B076> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff89e6f000 -     0x7fff89e82ff7  libCRFSuite.dylib (??? - ???) <0B76941F-218E-30C8-B6DE-E15919F8DBEB> /usr/lib/libCRFSuite.dylib
    0x7fff89f0c000 -     0x7fff89f3fff7  com.apple.GSS (2.1 - 2.0) <57AD81CE-6320-38C9-9B66-0E5A4DEA898A> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff89fe5000 -     0x7fff8a0c2fef  libsystem_c.dylib (763.12.0 - compatibility 1.0.0) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
    0x7fff8a1a8000 -     0x7fff8a301fff com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <0AD8197C-1BA9-30CD-98F1-4CA2C6559BA8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff8a33c000 -     0x7fff8a33dff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
    0x7fff8a37a000 -     0x7fff8a47ffff  libFontParser.dylib (??? - ???) <0920DA16-2066-33E6-BF95-AD4B0F3C22B0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff8a480000 -     0x7fff8a520fff  com.apple.LaunchServices (480.27.1 - 480.27.1) <4DC96C1E-6FDE-305E-9718-E4C5C1341F56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff8a6c9000 -     0x7fff8a731ff7  com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <DFD8F4DE-3B45-3A2E-9CBE-FD8D5DD30923> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff8a732000 -     0x7fff8a934fff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <38CD6ED3-C8E4-3CCD-89AC-9C3198803101> /usr/lib/libicucore.A.dylib
    0x7fff8a95e000 -     0x7fff8a973fff com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8a974000 -     0x7fff8a99fff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <4DB5ED11-004B-36B5-AE5F-2AB714754241> /usr/lib/libxslt.1.dylib
    0x7fff8ad1e000 -     0x7fff8ada2ff7 com.apple.ApplicationServices.ATS (317.5.0 - ???) <C2B254F0-6ED8-3313-9CFC-9ACD519C8A9E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff8ada3000 -     0x7fff8ae47fff  com.apple.ink.framework (1.3.2 - 110) <C8840EA4-AE7B-360C-A191-D36B5F10B6B5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff8b037000 -     0x7fff8b139ff7  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <22F1D1B6-1761-3687-9EFD-036EA15FB2E4> /usr/lib/libxml2.2.dylib
    0x7fff8b157000 -     0x7fff8b15ffff  libsystem_dnssd.dylib (??? - ???) <998E3778-7B43-301C-9053-12045AB8544D> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff8b1a7000 -     0x7fff8b289fff com.apple.CoreServices.OSServices (478.37 - 478.37) <1DAC695E-0D0F-3AE2-974F-A173E69E67CC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff8b28a000 -     0x7fff8b28bff7  libsystem_sandbox.dylib (??? - ???) <5087ADAD-D34D-3844-9D04-AFF93CED3D92> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff8b28c000 -     0x7fff8b4fffff  com.apple.CoreImage (7.93 - 1.0.1) <0B7D855E-A2B6-3C14-A242-2CF2165C6E7E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x7fff8b500000 -     0x7fff8b50cff7 com.apple.CrashReporterSupport (10.7.3 - 349) <5EB46C20-5ED2-37EE-A033-4B3B355059FA> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff8b50d000 -     0x7fff8b542fff  com.apple.securityinterface (5.0 - 55007) <D46E73F4-D8E9-3F53-A083-B9D71ED74492> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff8b54f000 -     0x7fff8b553fff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <380C3F44-0CA7-3514-8080-46D1C9DF4FCD> /usr/lib/system/libdyld.dylib
    0x7fff8bd48000 -     0x7fff8be4ffe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
    0x7fff8c07c000 -     0x7fff8c081fff  com.apple.OpenDirectory (10.7 - 146) <A674AB55-6E3D-39AE-9F9B-9865D0193020> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff8c0b2000 -     0x7fff8c1befff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff8c1d4000 -     0x7fff8c1deff7  liblaunch.dylib (392.35.0 - compatibility 1.0.0) <8F8BB206-CECA-33A5-A105-4A01C3ED5D23> /usr/lib/system/liblaunch.dylib
    0x7fff8c223000 -     0x7fff8c223fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
    0x7fff8c351000 -     0x7fff8c3b3ff7  com.apple.Symbolication (1.3 - 91) <B072970E-9EC1-3495-A1FA-D344C6E74A13> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x7fff8c3c8000 -     0x7fff8c3e8fff  libPng.dylib (??? - ???) <F4D84592-C450-3076-88E9-8E6517C7EF33> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff8c3f7000 -     0x7fff8c3fefff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <0AB51EE2-E914-358C-AC19-47BC024BDAE7> /usr/lib/system/libcopyfile.dylib
    0x7fff8c3ff000 -     0x7fff8c453ff7  libFontRegistry.dylib (??? - ???) <F98926EF-FFA0-37C5-824C-02E436E21DD1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff8c454000 -     0x7fff8c49dff7 com.apple.framework.CoreWLAN (2.1.2 - 212.1) <B254CC2C-F1A4-3A87-96DE-B6A4113D2811> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff8c4dc000 -     0x7fff8c4e2fff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <165514D7-1BFA-38EF-A151-676DCD21FB64> /usr/lib/system/libmacho.dylib
    0x7fff8c5b5000 -     0x7fff8c5d5fff  libsystem_kernel.dylib (1699.24.8 - compatibility 1.0.0) <C56819BB-3779-3726-B610-4CF7B3ABB6F9> /usr/lib/system/libsystem_kernel.dylib
    0x7fff8c5e5000 -     0x7fff8c6c9e5f  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
    0x7fff8c6ca000 -     0x7fff8c6e1fff com.apple.MultitouchSupport.framework (220.62.1 - 220.62.1) <3F8C015B-88AC-370F-B39D-B4665FB7616A> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff8c6e2000 -     0x7fff8c6e2fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff8cdce000 -     0x7fff8ce09fff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
    0x7fff8ce0a000 -     0x7fff8cfa9fff  com.apple.QuartzCore (1.7 - 270.2) <F2CCDEFB-DE43-3E32-B242-A22C82617186> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff8cfaa000 -     0x7fff8d002fff  libTIFF.dylib (??? - ???) <DD797FBE-9B63-3785-A9EA-0321D113538B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff8d003000 -     0x7fff8d0e1fff  com.apple.ImageIO.framework (3.1.1 - 3.1.1) <DB530A63-8ECF-3B53-AC9A-1692A5397E2F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x7fff8d0e2000 -     0x7fff8d0ebff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
    0x7fff8d0ec000 -     0x7fff8d18eff7 com.apple.securityfoundation (5.0 - 55107) <6C2E7362-CB11-3CBD-BB1C-348E4B10F25A> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff8d18f000 -     0x7fff8d194fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
    0x7fff8d195000 -     0x7fff8d19bfff  libGFXShared.dylib (??? - ???) <B95E9B22-AE68-3E48-8733-00CCCA08D50E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff8d19c000 -     0x7fff8d1aafff  com.apple.NetAuth (3.1 - 3.1) <FE7EC4D7-5632-3B8D-9094-A0AC8D60EDEE> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff8d2b2000 -     0x7fff8d2b5fff  com.apple.help (1.3.2 - 42) <BF14DE49-F7E8-336F-81FB-BBDF2DB3AC09> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff8d2b6000 -     0x7fff8d2b6fff  com.apple.Cocoa (6.6 - ???) <7EC4D759-B2A6-3A99-AC75-809FED1500C6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff8d2b7000 -     0x7fff8d4dffe7  com.apple.CoreData (104.1 - 358.13) <F1DA3110-C4DF-3F0A-A057-AEE78DE8C99D> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff8d4e0000 -     0x7fff8d9a7fff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <E9D2A69C-6E81-358C-A162-510969F91490> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x7fff8d9a8000 -     0x7fff8d9a9fff libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff8d9aa000 -     0x7fff8e33a7a7  com.apple.CoreGraphics (1.600.0 - ???) <177D9BAD-72C9-3ADF-A391-5B88C5EE623F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff8e374000 -     0x7fff8e3d4fff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff8e45a000 -     0x7fff8e55cff7  com.apple.PubSub (1.0.5 - 65.28) <98BFFA0E-6E32-3779-9594-B0629EFF1B6E> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x7fff8e55d000 -     0x7fff8e568fff  com.apple.CommonAuth (2.1 - 2.0) <272CB600-6DA8-3952-97C0-5DC594DCA024> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff8e5d2000 -     0x7fff8f2e6fef  com.apple.WebCore (7534.53 - 7534.53.11) <E37D145A-0BFD-3BE0-98A9-7F04CE9B6E6E> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x7fff8f364000 -     0x7fff8f3caff7  com.apple.coreui (1.2.1 - 165.3) <378C9221-ADE6-36D9-9944-F33AE6904E4F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff8f409000 -     0x7fff9000dfff  com.apple.AppKit (6.7.3 - 1138.32) <A9EB81C6-C519-3F29-89F1-42C3E8930281> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff9002a000 -     0x7fff90037ff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <3373D310-3B10-3DD1-B754-B7B138CD448D> /usr/lib/libbz2.1.0.dylib
    0x7fff90038000 -     0x7fff90045fff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <CBA71562-050B-3515-92B7-8BC1E2EEEF2A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff90052000 -     0x7fff90057fff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
    0x7fff904db000 -     0x7fff9050bff7 com.apple.DictionaryServices (1.2.1 - 158.2) <3FC86118-7553-38F7-8916-B329D2E94476> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff90563000 -     0x7fff90569fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff9056f000 -     0x7fff9057aff7 com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <48607E6E-8612-3267-9184-E948B1863B32> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff90580000 -     0x7fff90582fff com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff90583000 -     0x7fff905aeff7 com.apple.CoreServicesInternal (113.12 - 113.12) <C37DAC1A-35D2-30EC-9112-5EEECED5C461> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x7fff905af000 -     0x7fff905effff  libtidy.A.dylib (??? - ???) <E500CDB9-C010-3B1A-B995-774EE64F39BE> /usr/lib/libtidy.A.dylib
    0x7fff905f0000 -     0x7fff905f1fff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
    0x7fff905f2000 -     0x7fff90616fff com.apple.RemoteViewServices (1.3 - 44) <21D7A0E7-6699-37AB-AE6C-BF69AF3D61C2> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x7fff9061d000 -     0x7fff90633ff7  com.apple.ImageCapture (7.0 - 7.0) <F15FC6FB-9E88-3BE9-BABE-0454D3A502A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff9063d000 -     0x7fff9091ffff  com.apple.security (7.0 - 55110) <252F9E04-FF8A-3EA7-A38E-51DD0653663C> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff90920000 -     0x7fff90926fff  IOSurface (??? - ???) <03F95CAC-569C-3573-B3D7-2D211B8BDC56> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff90927000 -     0x7fff90969ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <BB770C22-8C57-365A-8716-4A3C36AE7BFB> /usr/lib/system/libcommonCrypto.dylib
    0x7fff911a8000 -     0x7fff911e2fe7  com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x7fff91727000 -     0x7fff91735ff7  libkxld.dylib (??? - ???) <B1BD4862-9D3F-3EEF-895C-A8E2E53684B6> /usr/lib/system/libkxld.dylib
    0x7fff91736000 -     0x7fff91736fff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff9178b000 -     0x7fff9179fff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff917a0000 -     0x7fff9192aff7  com.apple.WebKit (7534.53 - 7534.53.11) <2969964C-2759-3407-9EBB-C1304A556755> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff919bd000 -     0x7fff91b71ff7  com.apple.WebKit2 (7534.53 - 7534.53.11) <DF90BF18-E0D7-3E40-902A-CE5272AFEFBD> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
    0x7fff91b72000 -     0x7fff92156fff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff92157000 -     0x7fff921a5fff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib

    When you have the problem, note the exact time: hour, minute, second.  
    These instructions must be carried out as an administrator. If you have only one user account, you are the administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Each message in the log begins with the date and time when it was entered. Scroll back to the time you noted above.
    Select the messages entered from then until the end of the episode, or until they start to repeat, whichever comes first.
    Copy the messages to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of it useless for solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

  • Can anyone help me understand what this problem is with Desktop Manager that I am having???

    Hi everyone! I have downloaded the Desktop Manager Software on to my desktop. I've clicked on the "media"  option in the main menu.
    I am brought to a screen that has 2 options. "Media Manager" and " Blackberry Media Sync".
    Now, I want to download themes and wallpaper,  but in order to do that, I need to select "Media Manager" correct? ... Unfortunately this option is not available. I have my blackberry on, and is connected to the USB port. I am able to click "start" on the "Blackberry Media Sync" option, but not on Media Manager. If anyone could help me out, this would be greatly appreciated. I am going absolutely insane trying to figure this out! Thx for your help!!!!
    Much appreciated
    ~Linz

    It seems clear to me that if you unplug your AirPort Extreme and those Wi-Fi networks still appear, they are not being created by your Extreme but by someone else's router. They won't be useful to you.
    To eliminate confusion, open System Preferences > Network, and select Wi-Fi from the left column. Click the Advanced... button. In the "Preferred Networks" list, select each Network Name and click the "–" (minus) button. Check the box "Remember networks this computer has joined". Click OK, then Apply.
    Then select your PalmSprings network in your Mac's Wi-Fi menu. Ignore any others that may appear there.
    If you still have funky problems, try renaming your AirPort Extreme's network to something other than PalmSprings. Use "Palm Springs" (including the space character - spaces are OK) or something else. Other networks with similar or identical names will just confuse things.
    Use a non-trivial WPA/WPA2 password for your Wi-Fi network. Give your Extreme base station a non-trivial password as well. These ought to be different from one another, but are not required to be. Doing so will preclude any concern about your network being "hacked".

  • I had a MacBook Pro and just bought a MacBook Air. When I tried to transfer my photos and music to my new Mac only a little bit fits on the Air. Can anyone help me understand why?

    I am trying to transfer all my photos, documents, and music from my previous Mac to my new one and this new one can barely hold any of the files. Why would that be happening? What can I do to have all of my documents avalaible to me?

    what is the storage capacity of the Air and how much is available, and what is the size of all the items your are trying to transfer?

  • Can anyone help me understand this output from Console?

    My Macbook Pro freezes and I have to manually shut it down and restart it.  This is the error output from Console after I restart the Mac and find the time that the Mac froze.
    Here is the error code again, if it was too hard to read from the image above:

    Hi, did you find any answer to this? I have the same problem with globeinvestor.com gold tracker program. It stops to run from very beginning and give me a 23 code error.
    Their supprot can not fix this. Actually i have tried this in three different computers and all of them are same.

  • Can anyone help me understand what is going on?

    My wifi router (Airport Extreme) is named "PalmSprings."  I noticed today that when I try to connect to a network on my iMac from the drop down list of wireless networks, there are 2 networks called (1) "PalmSprings_2GEXT" and "PalmSprings_5GEXT."  Both of these networks are locked, so is my network "PalmSprings."  ALso, I don't have any other routers installed, or range extenders.  What could this be?  When I unplug my router and internet, those 2 networks still remain online.  Have I been hacked?  It could be my imagine, but my internet has been acting funky lately.

    It seems clear to me that if you unplug your AirPort Extreme and those Wi-Fi networks still appear, they are not being created by your Extreme but by someone else's router. They won't be useful to you.
    To eliminate confusion, open System Preferences > Network, and select Wi-Fi from the left column. Click the Advanced... button. In the "Preferred Networks" list, select each Network Name and click the "–" (minus) button. Check the box "Remember networks this computer has joined". Click OK, then Apply.
    Then select your PalmSprings network in your Mac's Wi-Fi menu. Ignore any others that may appear there.
    If you still have funky problems, try renaming your AirPort Extreme's network to something other than PalmSprings. Use "Palm Springs" (including the space character - spaces are OK) or something else. Other networks with similar or identical names will just confuse things.
    Use a non-trivial WPA/WPA2 password for your Wi-Fi network. Give your Extreme base station a non-trivial password as well. These ought to be different from one another, but are not required to be. Doing so will preclude any concern about your network being "hacked".

  • Kernel Panic - Can anyone help decipher this?

    Second Kernel Panic in just over a week. I wish I knew how to decipher these logs.
    Can anyone help me understand these two short logs?
    I see the name Keyspan in the backtrace of both logs. Keyspan is the company that makes a USB server which allows me to connect and access two USB printers on my network. I use that because I have two workstations that need to use those printers.
    The latest panic occurred when attempting to print but after noticing the Keyspan print dialog read: Printer not connected. I checked the cables and then saw the panic.
    Keyspan was a good company that was bought by Tripplite who doesn't appear to give a hoot about Mac and will therefore NOT make driver updates.
    Bad driver?
    Thanks,
    Jeff
    -10.3.09 LOG-
    Sat Oct 3 02:42:19 2009
    panic(cpu 1 caller 0x002D322C): "soclose: NOFDREF"@/SourceCache/xnu/xnu-1228.15.4/bsd/kern/uipc_socket.c:991
    Latest stack backtrace for cpu 1:
    Backtrace:
    0x0009CC88 0x0009D63C 0x00029DA0 0x002D322C 0x002D32CC 0x00824E50 0x00825084 0x000B1DD4
    Kernel loadable modules in backtrace (with dependencies):
    com.keyspan.iokit.KeyspanNHCI(1.3.4)@0x814000->0x83afff
    dependency: com.apple.iokit.IOUSBFamily(3.4.9)@0x4fd000
    Proceeding back via exception chain:
    Exception state (sv=0x524b6c80)
    PC=0x00000000; MSR=0x0000D030; DAR=0x00000000; DSISR=0x00000000; LR=0x00000000; R1=0x00000000; XCP=0x00000000 (Unknown)
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    9L30
    Kernel version:
    Darwin Kernel Version 9.8.0: Wed Jul 15 16:57:01 PDT 2009; root:xnu-1228.15.4~1/RELEASE_PPC
    System model name: PowerMac7,3
    System uptime in nanoseconds: 43795641869636
    unloaded kexts:
    com.apple.iokit.IOUSBMassStorageClass 2.0.8 - last unloaded 1055886335692
    loaded kexts:
    com.keyspan.iokit.KeyspanNHCI 1.3.4
    at.obdev.nke.LittleSnitch 2.2.05
    com.firmtek.driver.FTATASil3112E 5.1.3
    com.firmtek.driver.Sil3112DeviceNub 5.1.3
    com.apple.driver.LSIFW500 2.0.9 - last loaded 1458317793869
    com.apple.driver.initioFWBridge 2.0.9
    com.apple.driver.IOFireWireSerialBusProtocolSansPhysicalUnit 2.0.9
    com.apple.driver.StorageLynx 2.0.9
    com.apple.filesystems.msdosfs 1.5.5
    com.apple.filesystems.autofs 2.0.2
    com.apple.driver.AppleFCU 1.3.2b0
    com.apple.driver.AppleTopazAudio 2.5.8f1
    com.apple.driver.AppleTAS3004Audio 2.5.8f1
    com.apple.driver.AudioIPCDriver 1.0.6
    com.apple.iokit.IOFireWireIP 1.7.7
    com.apple.driver.AppleK2Fan 1.0.10f1
    com.apple.driver.AppleSlewClock 1.5.2d0
    com.apple.driver.AppleHWSensor 1.9d0
    com.apple.driver.AppleLM7x 1.9d0
    com.apple.driver.AppleUSBOpticalMouse 3.2.0
    com.apple.ATIRadeon9700 5.4.8
    com.apple.driver.AppleUSBDisplays 2.0.2
    com.apple.driver.AppleK2Driver 1.7.2f1
    com.apple.driver.PowerMac72PlatformPlugin 3.4.0d0
    com.apple.driver.AppleI2S 1.0.1f1
    com.apple.driver.AppleMaxim6690 1.9d0
    com.apple.driver.AppleAD741x 1.9d0
    com.apple.driver.AppleCPUVoltage 1.5.2d0
    com.apple.driver.AppleUSBMergeNub 3.4.6
    com.apple.iokit.IOSCSIReducedBlockCommandsDevice 2.1.1
    com.apple.driver.Oxford_Semi 2.0.9
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 2.1.1
    com.apple.iokit.SCSITaskUserClient 2.1.1
    com.apple.driver.XsanFilter 2.7.91
    com.apple.iokit.IOATABlockStorage 2.0.6
    com.apple.driver.AppleUSBHub 3.4.9
    com.apple.iokit.IOATAPIProtocolTransport 1.5.3
    com.apple.iokit.IOUSBUserClient 3.4.9
    com.apple.driver.ApplePMU 2.5.6d2
    com.apple.driver.AppleK2SATA 1.0.4f2
    com.apple.driver.AppleGPIO 1.3.0d0
    com.apple.driver.AppleVIA 1.5.1d1
    com.apple.driver.MacIOGPIO 1.3.0d0
    com.apple.driver.AppleMPIC 1.5.3
    com.apple.driver.AppleI2C 4.0.0d2
    com.apple.driver.AppleK2SATARoot 1.0.5b1
    com.apple.iokit.AppleGMACEthernet 1.5.9f1
    com.apple.driver.AppleFWOHCI 3.9.7
    com.apple.driver.AppleKauaiATA 1.2.1f4
    com.apple.driver.AppleUSBEHCI 3.4.6
    com.apple.driver.AppleUSBOHCI 3.4.6
    com.apple.driver.AppleK2 1.7.2f1
    com.apple.driver.AppleSPU 2.5.6d2
    com.apple.driver.AppleMacRiscPCI 3.4.0
    com.apple.driver.AppleFlashNVRAM 1.0.5
    com.apple.security.seatbelt 107.12
    com.apple.nke.applicationfirewall 1.6.77
    com.apple.security.TMSafetyNet 3
    com.apple.BootCache 30.4
    com.apple.driver.Dip
    -10.11.09 Today's LOG-
    Sun Oct 11 18:17:42 2009
    panic(cpu 1 caller 0x002D322C): "soclose: NOFDREF"@/SourceCache/xnu/xnu-1228.15.4/bsd/kern/uipc_socket.c:991
    Latest stack backtrace for cpu 1:
    Backtrace:
    0x0009CC88 0x0009D63C 0x00029DA0 0x002D322C 0x002D32CC 0x00806E50 0x00807084 0x000B1DD4
    Kernel loadable modules in backtrace (with dependencies):
    com.keyspan.iokit.KeyspanNHCI(1.3.4)@0x7f6000->0x81cfff
    dependency: com.apple.iokit.IOUSBFamily(3.4.9)@0x4fd000
    Proceeding back via exception chain:
    Exception state (sv=0x766b3280)
    PC=0x00000000; MSR=0x0000D030; DAR=0x00000000; DSISR=0x00000000; LR=0x00000000; R1=0x00000000; XCP=0x00000000 (Unknown)
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    9L30
    Kernel version:
    Darwin Kernel Version 9.8.0: Wed Jul 15 16:57:01 PDT 2009; root:xnu-1228.15.4~1/RELEASE_PPC
    System model name: PowerMac7,3
    System uptime in nanoseconds: 17567374981236
    unloaded kexts:
    com.apple.driver.Apple02DBDMAAudio 2.5.8f1 - last unloaded 3676850952
    loaded kexts:
    com.keyspan.iokit.KeyspanNHCI 1.3.4
    at.obdev.nke.LittleSnitch 2.2.05
    com.firmtek.driver.FTATASil3112E 5.1.3
    com.firmtek.driver.Sil3112DeviceNub 5.1.3
    com.apple.filesystems.autofs 2.0.2 - last loaded 891122427
    com.apple.driver.AppleTopazAudio 2.5.8f1
    com.apple.driver.AppleTAS3004Audio 2.5.8f1
    com.apple.driver.AppleTexasAudio 2.5.8f1
    com.apple.driver.AppleTexas2Audio 2.5.8f1
    com.apple.driver.AudioIPCDriver 1.0.6
    com.apple.driver.AppleDACAAudio 2.5.8f1
    com.apple.driver.AppleFCU 1.3.2b0
    com.apple.iokit.IOFireWireIP 1.7.7
    com.apple.driver.AppleK2Fan 1.0.10f1
    com.apple.driver.AppleSCCSerial 1.3.2
    com.apple.driver.AppleSlewClock 1.5.2d0
    com.apple.driver.AppleHWClock 1.5.2d0
    com.apple.driver.AppleFan 1.0.10f1
    com.apple.driver.AppleADT746x 1.0.10f1
    com.apple.driver.AppleHWSensor 1.9d0
    com.apple.driver.AppleAD741x 1.9d0
    com.apple.driver.AppleUSBOpticalMouse 3.2.0
    com.apple.driver.AppleCPUVoltage 1.5.2d0
    com.apple.ATIRadeon9700 5.4.8
    com.apple.driver.AppleUSBDisplays 2.0.2
    com.apple.driver.AppleVSP 2.2.2
    com.apple.driver.AppleThermal 1.0.1f2
    com.apple.driver.AppleK2Driver 1.7.2f1
    com.apple.driver.AppleADM103x 1.0.10f1
    com.apple.driver.PowerMac72PlatformPlugin 3.4.0d0
    com.apple.driver.AppleMaxim6690 1.9d0
    com.apple.driver.AppleI2S 1.0.1f1
    com.apple.driver.AppleLM7x 1.9d0
    com.apple.driver.AppleFileSystemDriver 1.1.0
    com.apple.driver.AppleUSBMergeNub 3.4.6
    com.apple.iokit.IOSCSIReducedBlockCommandsDevice 2.1.1
    com.apple.driver.LSIFW500 2.0.9
    com.apple.driver.Oxford_Semi 2.0.9
    com.apple.driver.initioFWBridge 2.0.9
    com.apple.driver.IOFireWireSerialBusProtocolSansPhysicalUnit 2.0.9
    com.apple.driver.StorageLynx 2.0.9
    com.apple.driver.PioneerSuperDrive 2.0.9
    com.apple.iokit.SCSITaskUserClient 2.1.1
    com.apple.driver.XsanFilter 2.7.91
    com.apple.iokit.IOATABlockStorage 2.0.6
    com.apple.driver.AppleUSBHub 3.4.9
    com.apple.iokit.IOATAPIProtocolTransport 1.5.3
    com.apple.iokit.IOUSBUserClient 3.4.9
    com.apple.driver.ApplePMU 2.5.6d2
    com.apple.driver.AppleK2SATA 1.0.4f2
    com.apple.driver.AppleGPIO 1.3.0d0
    com.apple.driver.AppleVIA 1.5.1d1
    com.apple.driver.MacIOGPIO 1.3.0d0
    com.apple.driver.AppleCPUThermo 2.0.0a0
    com.apple.driver.AppleMPIC 1.5.3
    com.apple.driver.AppleI2C 4.0.0d2
    com.apple.driver.AppleK2SATARoot 1.0.5b1
    com.apple.iokit.AppleGMACEthernet 1.5.9f1
    com.apple.driver.AppleFWOHCI 3.9.7
    com.apple.driver.AppleKauai@

    Yes. It's clearly a driver incompatibility issue.
    http://discussions.apple.com/thread.jspa?threadID=2045759&tstart=0
    There are no Mac viruses in the wild.
    ClamXav might be causing some of the problems... try deleting ClamXav and see if the kernel panics persist. You can always reinstall it. Anti virus software on a Mac tends to cause more problems then it's worth.

  • Absolute cookie nightmare...can anyone help? :(

    I'm trying to write a program in java that will log onto this page: (http://infotrac.galegroup.com/itweb/uwcn). However, the cookies on this page are proving an impossible task to handle. When I go there in my browser, it sets an intial cookie (alteonP=blahblah) and then two further cookies (Ctemp & Cperm).
    However, when I connect to the URL using an HttpURLConnection object as follows:
    URL url = new URL("http://infotrac.galegroup.com/itweb/uwcn");
    HttpURLConnection http = (HttpURLConnection) url.openConnection();
    String cookie=http.getHeaderField("Set-Cookie");
    System.out.print(cookie);
    I get no cookies sent by the server ? the program returns null! I've tried turning off redirection, but the response code is always 200 OK, which means its not trying to redirect me is it?
    If I create an input stream from the above connection and output the HTTP Body returned by the server on the above request, I get the error message:
    <CENTER><H2>We are unable to recognize you as having access to this Gale Group Product</H2></CENTER>
    The best information we have about this problem is: <CENTER><FONT COLOR="#FF4500">Temporary cookie support must be enabled in your browser in order to use this product.</FONT></CENTER>
    So somehow I am missing the cookie!?!?!
    I've tried printing out the entire header returned by the server, which returns the following every time:
    null HTTP/1.1 200 OK
    Date Wed, 29 Jan 2003 12:17:56 GMT
    Content-Type text/html
    Connection close
    Server Netscape-Enterprise/3.6 SP1
    Via 1.1 webcacheH10 (NetCache NetApp/5.3.1R2)
    And there is no sign of anything that resembles a cookie or any other identifiable information, so can anyone help me understand where I am missing the cookie support? I've tried turning off redirection and cacheing, tried connecting and reconnecting and also tried changing the user agent, but nothing makes a blind bit of difference!
    I ultimately want to log onto the site, which requires passing the connection to the following URL http://infotrac.galegroup.com/itweb/uwcn?id=100117976 but seeing as I can't even get the site to send me a cookie, I'm a long way from achieving this I think :( I'm beginning to think the HttpURLConnection object isn't the way to go about this, given the grief its caused, but it must be possible mustn't it?
    So, if anyone can offer some support on the above, it would really be appreciated.

    Curious...
    I run a tool that I have developed to analyze http/https sessions and I get the following:
    Requesting : [http://infotrac.galegroup.com:80/itweb/uwcn] (1) times.
    <----------- Server Response ----------->
    HTTP/1.1 200 OK
    Set-Cookie : AlteonP=5b2cd03b5b2cd0fa; path=/
    Server : Netscape-Enterprise/3.6 SP1
    Date : Wed, 29 Jan 2003 20:47:48 GMT
    Content-type : text/html
    Connection : close
    <--------------------------------------->
    using another utility in the same tool I send 20 requests
    looking for the cookie field and I get the following:
    Set-Cookie : 5b2cd03b5b2cd0f8
    Set-Cookie : 5b2cd03b5b2cd0fa
    Set-Cookie : 5b2cd03b5b2cd0fc
    Set-Cookie : 5b2cd03b5b2cd0fe
    Set-Cookie : 5b2cd03b5b2cd0fb
    Set-Cookie : 5b2cd03b5b2cd0fd
    Set-Cookie : 5b2cd03b5b2cd0ff
    ....(rest of responses were truncated) ...
    here is the section of my code:
    URLpathClearText = new URL( "http",
                   targetHost,
                   targetPort,
                   path
                                       targetURLClearText = (HttpURLConnection) URLpathClearText.openConnection();
    targetURLClearText.setRequestMethod("GET");
    // get the cookie value cookiestring="Set-Cookie"
    targetURLClearText.getHeaderField(cookieString)
    I hope this helps.
    If not I may be able to send you the tool to test it your self.
    Let me know (I'm at [email protected])
    Peter

  • HT4059 Being new to iBook publishing I need to know if stats are available to determine how many times my iBook has been downloaded. Can anyone help please? Mr Ignorant

    Being new to iBook publishing I need to know if stats are available to determine how many times my iBook has been downloaded. Can anyone help please? I need to persuade someone that this really is worthwhile. Mr Ignorant.

    The only people who can possibly assist you with this is Apple Customer Relations, call your local Apple contact number and ask for Customer Relations then explain your situation clearly and politely (be firm but don't rant).
    You might want to investiage what the local laws are regarding defective goods and 'fit for use' definitions on warranties etc. Consumer Protection can be a useful tool to use or bargain with if needed ...

  • CAN ANYONE HELP ME DISCOVER WHO HAS HACKED MY MAC? I HAVE THE LOGS BUT I'M NOT KNOWLEDGABLE TO UNDERSTAND OR FIGURE

    CAN ANYONE HELP ME DISCOVER WHO HAS HACKED MY MAC? I HAVE THE LOGS BUT I'M NOT KNOWLEDGABLE TO UNDERSTAND OR FIGURE!!!!!!!!!!!!!!!!!! this has been going on since july of 2012 and it affects everthing i do
    the following are some of my logs entries im really trying to find out where my information is being sent and why and ofcoarse WHO please help i am really at my wits end!!!!!!
    these are from today...
    Path:            /Applications/Contacts.app/Contents/MacOS/Contacts
    Identifier:      com.apple.AddressBook
    Version:         7.1 (1167)
    Build Info:      AddressBook-1167000000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [134]
    User ID:         501
    Date/Time:       2013-01-08 02:02:35.270 -0800
    OS Version:      Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Interval Since Last Report:          210774 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  3577 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      1E8D88E3-290E-18BF-B416-F924890193EA
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x00007fff5bb27ff8
    VM Regions Near 0x7fff5bb27ff8:
        MALLOC_TINY            00007fd676800000-00007fd676900000 [ 1024K] rw-/rwx SM=PRV 
    --> STACK GUARD            00007fff58328000-00007fff5bb28000 [ 56.0M] ---/rwx SM=NUL  stack guard for thread 0
        Stack                  00007fff5bb28000-00007fff5c328000 [ 8192K] rw-/rwx SM=COW  thread 0
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation                0x00007fff8f78324c __CFStringEqual + 12
    1   com.apple.CoreFoundation                0x00007fff8f7831a8 CFEqual + 664
    2   com.apple.CoreFoundation                0x00007fff8f7ba715 _CFAppVersionCheckLessThan + 53
    3   com.apple.CoreFoundation                0x00007fff8f7b740f +[NSArray allocWithZone:] + 79
    4   com.apple.CoreFoundation                0x00007fff8f7dc869 +[NSArray arrayWithObject:] + 25
    5   com.apple.AddressBook.framework          0x00007fff93bf1f84 +[PHXSource sourceForObject:] + 43
    6   com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    7   com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    8   com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    9   com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    10  com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    11  com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    12  com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    13  com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    14  com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    15  com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    16  com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    17  com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    18  com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    19  com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    20  com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    21  com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    22  com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    23  com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    24  com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    25  com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    26  com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    27  com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    28  com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    29  com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    30  com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    31  com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    32  com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    33  com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    34  com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    35  com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    36  com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    37  com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    38  com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    39  com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    40  com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    41  com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    42  com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    43  com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    44  com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    45  com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    46  com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    47  com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    48  com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    49  com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    50  com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    51  com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    52  com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    53  com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    54  com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    55  com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    56  com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    57  com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    58  com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    59  com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    60  com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    61  com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    62  com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    63  com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    64  com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    65  com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    66  com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    67  com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    68  com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    69  com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    70  com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    71  com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    72  com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    73  com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    74  com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    75  com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    76  com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    77  com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    78  com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    79  com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    80  com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    81  com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    82  com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    83  com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    84  com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    85  com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    86  com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    87  com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    88  com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    89  com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    90  com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    91  com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    92  com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    93  com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    94  com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    95  com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    96  com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    97  com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    98  com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    99  com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    100 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    101 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    102 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    103 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    104 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    105 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    106 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    107 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    108 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    109 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    110 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    111 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    112 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    113 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    114 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    115 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    116 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    117 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    118 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    119 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    120 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    121 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    122 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    123 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    124 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    125 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    126 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    127 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    128 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    129 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    130 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    131 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    132 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    133 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    134 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    135 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    136 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    137 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    138 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    139 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    140 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    141 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    142 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    143 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    144 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    145 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    146 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    147 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    148 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    149 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    150 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    151 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    152 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    153 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    154 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    155 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    156 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    157 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    158 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    159 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    160 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    161 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    162 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    163 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    164 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    165 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    166 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    167 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    168 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    169 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    170 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    171 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    172 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    173 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    174 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    175 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    176 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    177 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    178 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    179 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    180 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    181 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    182 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    183 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    184 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    185 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    186 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    187 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    188 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    189 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    190 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    191 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    192 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    193 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    194 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    195 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    196 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    197 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    198 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    199 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    200 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    201 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    202 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    203 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    204 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    205 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    206 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    207 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    208 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    209 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    210 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    211 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    212 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    213 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    214 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    215 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    216 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    217 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    218 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    219 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    220 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    221 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    222 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    223 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    224 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    225 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    226 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    227 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    228 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    229 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    230 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    231 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    232 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    233 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    234 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    235 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    236 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    237 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    238 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    239 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    240 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    241 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    242 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    243 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    244 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    245 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    246 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    247 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    248 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    249 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    250 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    251 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    252 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    253 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    254 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    255 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    256 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    257 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    258 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    259 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    260 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    261 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    262 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    263 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    264 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    265 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    266 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    267 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    268 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    269 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    270 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    271 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    272 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    273 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    274 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    275 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    276 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    277 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    278 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    279 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    280 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    281 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    282 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    283 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    284 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    285 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    286 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    287 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    288 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    289 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    290 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    291 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    292 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    293 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    294 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    295 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    296 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    297 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    298 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    299 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    300 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    301 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    302 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    303 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    304 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    305 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    306 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    307 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    308 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    309 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    310 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    311 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    312 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    313 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    314 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    315 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    316 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    317 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    318 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    319 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    320 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    321 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    322 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    323 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    324 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    325 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    326 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    327 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    328 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    329 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    330 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    331 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    332 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    333 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    334 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    335 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    336 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    337 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    338 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    339 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    340 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    341 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    342 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    343 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    344 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    345 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    346 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    347 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    348 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    349 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    350 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    351 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    352 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    353 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    354 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    355 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    356 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    357 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    358 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    359 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    360 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    361 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    362 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    363 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    364 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    365 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    366 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    367 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    368 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    369 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    370 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    371 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    372 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    373 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    374 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    375 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    376 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    377 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    378 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    379 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    380 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    381 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    382 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    383 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    384 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    385 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    386 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    387 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    388 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    389 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    390 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    391 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    392 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    393 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    394 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    395 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    396 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    397 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    398 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    399 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    400 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    401 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    402 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    403 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    404 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    405 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    406 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    407 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    408 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    409 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    410 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    411 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    412 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    413 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    414 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    415 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    416 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    417 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    418 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    419 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    420 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    421 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    422 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    423 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    424 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    425 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    426 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    427 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    428 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    429 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    430 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    431 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    432 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    433 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    434 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    435 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    436 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    437 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    438 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    439 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    440 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    441 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    442 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    443 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    444 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    445 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    446 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    447 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    448 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    449 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    450 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    451 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    452 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    453 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    454 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    455 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    456 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    457 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    458 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    459 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    460 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    461 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    462 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    463 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    464 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    465 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    466 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    467 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    468 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    469 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    470 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    471 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    472 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    473 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    474 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    475 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    476 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    477 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    478 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    479 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    480 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    481 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    482 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    483 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    484 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    485 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    486 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    487 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    488 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    489 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    490 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    491 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    492 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    493 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    494 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    495 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    496 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    497 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    498 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    499 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    500 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    501 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    502 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    503 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    504 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    505 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    506 com.apple.AddressBook.framework          0x00007fff93b49fcd -[ABCDRecord account] + 112
    507 com.apple.AddressBook.framework          0x00007fff93c0b803 +[PHXSource(DataSourceClientPrivate) contactsBySource:] + 259
    508 com.apple.AddressBook.framework          0x00007fff93bf1e47 +[PHXSource sourcesForManagedObjects:] + 54
    509 com.apple.AddressBook.framework          0x00007fff93bf1f94 +[PHXSource sourceForObject:] + 59
    510 com.apple.AddressBook.framework          0x00007fff93b4a286 -[ABCDRecord addressBook] + 290
    511 com.apple.AddressBook.framework          0x00007fff93b4a129 -[ABCDRecord accountRepository] + 22
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8fe7b336 __select_nocancel + 10
    1   libdispatch.dylib                       0x00007fff99b50b93 _dispatch_mgr_invoke + 284
    2   libdispatch.dylib                       0x00007fff99b509ee _dispatch_mgr_thread + 54
    Thread 2:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff8fe79686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8fe78c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8f7a3803 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8f7a8ee6 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8f7a86b2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x00007fff9613c586 +[NSURLConnection(Loader) _r

    I don't see any evidence that your computer has been hacked from any of the logs. The only way it could have been is if you gave somebody physical access to your computer or allowed sharing over your local network.
    The first is an Address Book crash log.  The next two involve Spotlight and a permissions problem. Suggest you repair permissions for those two.
    The last log is from an iPhone, so I'm not sure what you expect us to learn from that.
    As Russa said, we need to understand why you believe your computer has been hacked for us to even know what to look for or how to advise you.

Maybe you are looking for