Please help me regarding ServiceDemo example application

Hi Friends..
Currently i use Java Card 2.2.1, and i use JCDK 2.2.1..
There's a ServiceDemo example application that shipped with JCDK 2.2.1..
There are some files, as follows :
1. Main class that extends javacard.framework.Applet
2. TestService class that extends BasicService
3. PreProcess class
4. PostProcess class
The PreProcess class and PostProcess class contains nothing, there's only it's default constructor in it..
    private Dispatcher disp;
    private Service serv;
    public Main()
        disp = new Dispatcher( (short) 1);
        serv = new TestService();
        disp.addService(serv, Dispatcher.PROCESS_COMMAND);
        register();
    }In that code, it seems that the all processes handled by TestService class...
What is the advantages while we use "Service" based java card?.. Is it more good than RMI based Java Card?..
Do i've to send the APDU command while i want to do the specific process provided?..
Is this often used in the kind of Java Card Application?..
Thanks in advance..

Thanks Shane for your reply.. :)
If i rely on SecureRMIPurse directly without know the basic of Pre-process and Post-process, i think its difficult enough for me.. :(
Could you guide me the very simple Pre-process and Post-process?..
Assume that i describe this function in the PreProcess and PostProcess class :
public class PreProcess {
    public PreProcess() {
    public byte addOne(byte add){
         return ++add;
public class PostProcess {
    public PostProcess() {
    public byte subtractOne(byte subtract){
         return --subtract;
}And then how to call either PreProcess's addOne method or PostProcess's subtractOne method from TestService class?..
Is it only through new operator?..
PreProcess preproc=new PreProcess();
preproc.addOne(1);
PostProcess postproc=new PostProcess();
postproc.subtractOne(5);Is this way a good implementation?..
Please correct me if i'm wrong..
Thanks in advance..

Similar Messages

  • Please help me regarding RMI Applet Application?

    Hi Friends..
    Please help me describe the work-flow of RMI Applet Application..
    Currently, i use Java Card 2.2.1.. In the package Java Card 2.2.1 there's an example of RMI Applet Application..
    in that RMI Applet Application there are 3 Java files, namely :
    1. public interface Purse extends Remote
    2. public class PurseImpl extends CardRemoteObject implements Purse
    3. public class PurseApplet extends Applet
    There's also RMIDemo.opt file.. and in the contain of that RMIDemo.opt file, there's only PurseApplet class that would be converted to CAP file..
    so, what is the use of Purse Interface and PurseImp class?.. and how to use both of them?..
    Please help me regarding this..
    Thanks in advance..

    Hi Shane, thanks for clarifying that.. :).. Ok. i'm going to learn hard..
    Sorry, i've a doubt regarding this thread ..
    In that thread, that's mentioned purse.jar containing :
    - Purse.class
    - PurseApplet.class
    - PurseImpl_Stub.class
    - PurseImpl.class
    The only class that i'm wondering is PurseImpl_Stub.class..
    Why this class required, whereas i don't found it in the RMIDemo application that shipped with JCDK 2.2.1, and JCDK 2.2.2 as well..
    I've tried to create other Java Card RMI Application, but it requires the "Stub" class..
    Here's the error message :
    java.rmi.StubNotFoundException: com.latihan.rmi.DataMahasiswaImpl_Stub
         at com.sun.javacard.ocfrmiclientimpl.JCCardObjectFactory.getRemoteObject(Unknown Source)
         at com.sun.javacard.javax.smartcard.rmiclient.CardObjectFactory.getObject(Unknown Source)
         at com.sun.javacard.javax.smartcard.rmiclient.JavaCardRMIConnect.getInitialReference(Unknown Source)
         at testRMIClient.DataMahasiswaClient.main(DataMahasiswaClient.java:43)How to create and what's the contain of that "Stub" class?..
    Can i know the source code of PurseImpl_Stub.java file?..
    Thanks in advance..
    Edited by: Leonardo_Carreira on Apr 13, 2010 8:27 PM

  • Please help me regarding Secure RMI Applet Application

    Hi Friends..
    Currently i use Java Card 2.2.1..
    I'm learning about SecureRMIDemo application that shipped with JCDK 2.2.1..
    Assume that i've loaded the SecureRMIApplet.cap successfully, and i've created the Secure RMI Client using SmartCardIO..
    And then i tried to do any process provided by Purse interface, such as debit, credit, setAccountNumber, etc..
    But i got this error message :
    java.rmi.RemoteException: Signature mismatch
         at com.sun.javacard.javax.smartcard.rmiclient.CardObjectFactory.throwError(Unknown Source)
         at com.sun.javacard.javax.smartcard.rmiclient.CardObjectFactory.throwException(Unknown Source)
         at com.sun.javacard.javax.smartcard.rmiclient.CardObjectFactory.getObject(Unknown Source)
         at com.sun.javacard.ocfrmiclientimpl.JCRemoteRefImpl.parseAPDU(Unknown Source)
         at com.sun.javacard.ocfrmiclientimpl.JCRemoteRefImpl.invoke(Unknown Source)
         at com.sun.javacard.samples.SecureRMIDemo.SecurePurseImpl_Stub.setAccountNumber(Unknown Source)
         at testRMIClient.SecureRMIClienrt.main(SecureRMIClienrt.java:27)Yes, i know that, that error message required to ensure that the application run in the Security context..
    But for me, who just getting started to Java Card Security, it becomes a problem... :(
    The message error tells that the Signature is mismatch..
    And then how to set this Signature before do any process in the SecureRMI Client application?..
    Since there's no way to set the Signature through Purse interface..
    Please help me regarding this..
    Thanks in advance..

    Thanks Shane for your reply..
    does it mean i've to send APDU?.. Because in the MySecurityService class code there's method that checks the CLA and INS byte..
    Or can i send an APDU Object while we're using the Java Card RMI Application mode?..
    Actually, in my opinion, i would say that if we use RMI mode, we don't need APDU Command anymore..
    Please correct me if i'm wrong..
    Thanks in advance..

  • Please help me regarding error in jcManager 1.1

    Hi Friends..
    perhaps this question especially for bebecanu, but perhaps i hope all of you could help me too.. :)
    i tried to learn how way jcManager works, so i downloaded the jcManager1.1 source..
    i created new application in Netbeans 6.9, and then i copied all of files in the jcmanager.source..
    i've set the libraries needed also in Netbeans, i've added the libraries of jpcsc.jar and looks-2.1.4.jar , so assume that there's no error while compile time..
    but while runtime, there's message error displayed in the TextArea..
    this is the message error :
    Exception in thread "Thread-3" java.lang.NoClassDefFoundError: Could not initialize class com.linuxnet.jpcsc.PCSC
         at com.braicu.jcm.card.CardWorker.disconnectCard(CardWorker.java:507)
         at com.braicu.jcm.JCManager$22.construct(JCManager.java:620)
         at com.braicu.jcm.layout.MySwingWorker$2.run(MySwingWorker.java:108)
         at java.lang.Thread.run(Thread.java:619)so, how to initialize class com.linuxnet.jpcsc.PCSC in Netbeans?..
    Please help me regarding this..
    Thanks in advance..

    Hi
    You need to have jpcsc.dll (you may find it in the res folder) in your java library path.
    So, all you need to do is to specify this VM argument on running:
    -Djava.library.path=res
    Hope it helps
    Stefan

  • Please help error regarding GPShell 1.4.2 with Java Card 2.2.1

    Hi masters..
    please help me regarding GPShell + Smart Card Reader (namely Omnikey Cardman 5321)..
    currently i've a smart card reader (Omnikey) and a sample java card that support for Java Card 2.2.1..
    i've installed Smart card reader's driver, and it has already completely function..
    When i try to run this command in GPShell 1.4.2, i get this report :
    C:\GPShell-1.4.2>GPShell helloInstallgemXpressoProR3_2E64.txt
    mode_201
    gemXpressoPro
    enable_trace
    establish_context
    card_connect
    * reader name OMNIKEY CardMan 5x21 0
    card_connect() returns 0x80100069 (The smart card has been removed, so that furt
    her communication is not possible.
    select -AID A000000018434D00
    Command --> 00A4040008A000000018434D00
    Wrapped command --> 00A4040008A000000018434D00
    select_application() returns 0x00000006 (The handle is invalid.
    Yes, i know that in that script (helloInstallgemXpressoProR3_2E64.txt), there's a script for load helloworld.cap into Java card..
    i tried that because i just want to make sure whether my Java Card run well or not..
    Please help me regarding this..
    Thanks in advance..

    Hi safarmer, thanks for your reply :)..
    Sorry before, i still don't understand about your last reply.. :(
    especially for check the crytpogram.. :(
    could you describe what mean of each line of code from that snippet code?..
    Sequence   : 0002
    challenge  : 598dd3961bfd
    cryptogram : 24cccf18c18437bb
    host       : 5a7787ba91497948
    DEBUG [] - Input to session S-ENC derivation: 01820002000000000000000000000000
    DEBUG [] - S-ENC: adc1163ba2a146fbb94af44c8676fb7cadc1163ba2a146fb
    DEBUG [] - Input to session DEK derivation : 01810002000000000000000000000000
    DEBUG [] - S-DEK: fd01086b6db03bdfe0d5cb61d03ed3abfd01086b6db03bdf
    DEBUG [] - Input to session CMAC derivation: 01010002000000000000000000000000
    DEBUG [] - S-MAC: 3e07b0c8fdfd798a573b9b9889d0cb513e07b0c8fdfd798a
    Input to card cryptogram verification: 5a7787ba914979480002598dd3961bfd8000000000000000
    DEBUG [] - Signature : 24cccf18c18437bb
    DEBUG [] - Cryptogram: 24cccf18c18437bb
    Card cryptogram authenticated=======================================================================================
    =======================================================================================
    i've added script "mode_211" to my script, as follow :
    mode_211
    enable_trace
    establish_context
    card_connect -readerNumber 2
    select -AID a0000000030000
    open_sc -security 1 -keyind 0 -keyver 0 -mac_key 404142434445464748494a4b4c4d4e4f -enc_key 404142434445464748494a4b4c4d4e4f // Open secure channel
    delete -AID a00000006203010c0101
    delete -AID a00000006203010c01
    delete -AID a00000006203010c0101
    install -file HelloWorld.cap -nvDataLimit 500 -instParam 00 -priv 2
    card_disconnect
    release_contextbut when i executed that script in the console, i got this :
    C:\GPShell-1.4.2>GPShell helloInstallChan.txt
    mode_211
    enable_trace
    establish_context
    card_connect -readerNumber 2
    * reader name OMNIKEY CardMan 5x21-CL 0
    select -AID a0000000030000
    Command --> 00A4040007A0000000030000
    Wrapped command --> 00A4040007A0000000030000
    Response <-- 6F108408A000000003000000A5049F6501FF9000
    open_sc -security 1 -keyind 0 -keyver 0 -mac_key 404142434445464748494a4b4c4d4e4
    f -enc_key 404142434445464748494a4b4c4d4e4f // Open secure channel
    Command --> 80CA006600
    Wrapped command --> 80CA006600
    Response <-- 664C734A06072A864886FC6B01600C060A2A864886FC6B02020101630906072A864
    886FC6B03640B06092A864886FC6B040215650B06092B8510864864020102660C060A2B060104012
    A026E01029000
    Command --> 80500000083C4E03633407EC1800
    Wrapped command --> 80500000083C4E03633407EC1800
    Response <-- 0000715457173C2B8FC1FF020002598DD3961BFD8B6F2963C070FF949000
    Command --> 8482010010E17B69E2A3DFEA320B0B457657362614
    Wrapped command --> 8482010010E17B69E2A3DFEA320B0B457657362614
    Response <-- 9000
    delete -AID a00000006203010c0101
    Command --> 80E400800C4F0AA00000006203010C010100
    Wrapped command --> 84E40080144F0AA00000006203010C0101D259A163E654B99900
    Response <-- 6A88
    delete_applet() returns 0x80206A88 (6A88: Referenced data not found.)
    delete -AID a00000006203010c01
    Command --> 80E400800B4F09A00000006203010C0100
    Wrapped command --> 84E40080134F09A00000006203010C01094A9BF13AD2CC3E00
    Response <-- 6A88
    delete_applet() returns 0x80206A88 (6A88: Referenced data not found.)
    delete -AID a00000006203010c0101
    Command --> 80E400800C4F0AA00000006203010C010100
    Wrapped command --> 84E40080144F0AA00000006203010C010156679B9711B83FAB00
    Response <-- 6A88
    delete_applet() returns 0x80206A88 (6A88: Referenced data not found.)
    install -file HelloWorld.cap -nvDataLimit 500 -instParam 00 -priv 2
    file name HelloWorld.cap
    Command --> 80E602001F09A00000006203010C0107A0000000030000000AEF08C60201A8C80201
    F40000
    Wrapped command --> 84E602002709A00000006203010C0107A0000000030000000AEF08C60201
    A8C80201F400D35F07F1D11A31E500
    Response <-- 6985
    install_for_load() returns 0x80206985 (6985: Command not allowed - Conditions of use not satisfied.)What it does mean?..
    so, can i reset THE RETRY COUNTER of my Java Card?..
    could you give me an example script that reset the Retry Counter?..
    Thanks in advance..
    Sorry i really confuse.. :(

  • My notes has crashed.  i made a guest account and it is fine there.  Here is the info on the crash screen.  Please help, Process:         Notes [377] Path:            /Applications/Notes.app/Contents/MacOS/Notes Identifier:      com.apple.Notes Version:

    My notes has crashed and here is the printout.  It works fine in a guest account I created.
    Please help
    Process:         Notes [377]
    Path:            /Applications/Notes.app/Contents/MacOS/Notes
    Identifier:      com.apple.Notes
    Version:         1.5 (107)
    Build Info:      Notes-107000000000000~3
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [186]
    User ID:         501
    Date/Time:       2013-08-18 22:07:25.392 -0700
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:          8448 sec
    Crashes Since Last Report:           24
    Per-App Interval Since Last Report:  34 sec
    Per-App Crashes Since Last Report:   24
    Anonymous UUID:                      14E94F91-30E8-3221-31AA-EC9E86F52275
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: EXC_I386_GPFLT
    Application Specific Information:
    objc_msgSend() selector name: retain
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                         0x000000010e6a2710 objc_msgSend_vtable13 + 16
    1   com.apple.CoreFoundation                0x000000010e8fd1de +[__NSArrayI __new:::] + 174
    2   com.apple.CoreFoundation                0x000000010e8694d3 -[NSArray initWithObjects:] + 707
    3   com.apple.WebKit                        0x000000010e425035 -[WebHTMLView(WebPrivate) _setAsideSubviews] + 133
    4   com.apple.WebKit                        0x000000010e4251eb -[WebHTMLView drawRect:] + 363
    5   com.apple.Notes                         0x000000010dbdcc04 0x10dbc4000 + 101380
    6   com.apple.AppKit                        0x000000010f7f7064 -[NSView _drawRect:clip:] + 4217
    7   com.apple.AppKit                        0x000000010f7f56c1 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1656
    8   com.apple.WebKit                        0x000000010e424f5b -[WebHTMLView(WebPrivate) _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 267
    9   com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    10  com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    11  com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    12  com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    13  com.apple.AppKit                        0x000000010f7f36f2 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 817
    14  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    15  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    16  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    17  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    18  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    19  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    20  com.apple.AppKit                        0x000000010f7f3143 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 314
    21  com.apple.AppKit                        0x000000010f7eed6d -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4675
    22  com.apple.AppKit                        0x000000010f7b8c93 -[NSView displayIfNeeded] + 1830
    23  com.apple.AppKit                        0x000000010f731322 -[NSAnimationManager animationTimerFired:] + 2256
    24  com.apple.Foundation                    0x000000010ebad463 __NSFireTimer + 96
    25  com.apple.CoreFoundation                0x000000010e835804 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    26  com.apple.CoreFoundation                0x000000010e83531d __CFRunLoopDoTimer + 557
    27  com.apple.CoreFoundation                0x000000010e81aad9 __CFRunLoopRun + 1529
    28  com.apple.CoreFoundation                0x000000010e81a0e2 CFRunLoopRunSpecific + 290
    29  com.apple.Foundation                    0x000000010ebd47ee -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
    30  com.apple.Notes                         0x000000010dbe9d3e 0x10dbc4000 + 154942
    31  com.apple.Notes                         0x000000010dbe9b55 0x10dbc4000 + 154453
    32  com.apple.Notes                         0x000000010dbe9528 0x10dbc4000 + 152872
    33  com.apple.Notes                         0x000000010dbe9591 0x10dbc4000 + 152977
    34  com.apple.Notes                         0x000000010dbdc9e8 0x10dbc4000 + 100840
    35  com.apple.AppKit                        0x000000010f7f7064 -[NSView _drawRect:clip:] + 4217
    36  com.apple.AppKit                        0x000000010f7f56c1 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1656
    37  com.apple.WebKit                        0x000000010e424f5b -[WebHTMLView(WebPrivate) _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 267
    38  com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    39  com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    40  com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    41  com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    42  com.apple.AppKit                        0x000000010f7f36f2 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 817
    43  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    44  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    45  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    46  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    47  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    48  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    49  com.apple.AppKit                        0x000000010f7f3143 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 314
    50  com.apple.AppKit                        0x000000010f7eed6d -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4675
    51  com.apple.AppKit                        0x000000010f7b8c93 -[NSView displayIfNeeded] + 1830
    52  com.apple.AppKit                        0x000000010f7b81cc _handleWindowNeedsDisplayOrLayoutOrUpdateConstraints + 738
    53  com.apple.AppKit                        0x000000010fd83901 __83-[NSWindow _postWindowNeedsDisplayOrLayoutOrUpdateConstraintsUnlessPostingDisabled]_block_ invoke_01208 + 46
    54  com.apple.CoreFoundation                0x000000010e83f417 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
    55  com.apple.CoreFoundation                0x000000010e83f381 __CFRunLoopDoObservers + 369
    56  com.apple.CoreFoundation                0x000000010e81a7b8 __CFRunLoopRun + 728
    57  com.apple.CoreFoundation                0x000000010e81a0e2 CFRunLoopRunSpecific + 290
    58  com.apple.HIToolbox                     0x00000001113ceeb4 RunCurrentEventLoopInMode + 209
    59  com.apple.HIToolbox                     0x00000001113ceb94 ReceiveNextEventCommon + 166
    60  com.apple.HIToolbox                     0x00000001113ceae3 BlockUntilNextEventMatchingListInMode + 62
    61  com.apple.AppKit                        0x000000010f7b5533 _DPSNextEvent + 685
    62  com.apple.AppKit                        0x000000010f7b4df2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    63  com.apple.AppKit                        0x000000010f7ac1a3 -[NSApplication run] + 517
    64  com.apple.AppKit                        0x000000010f750bd6 NSApplicationMain + 869
    65  libdyld.dylib                           0x0000000110a177e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x0000000110bedd16 kevent + 10
    1   libdispatch.dylib                       0x00000001109e0dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00000001109e09ee _dispatch_mgr_thread + 54
    Thread 2:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x0000000110bed0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x0000000110a7b023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x000000010eb6f589 -[__NSOperationInternal waitUntilFinishedOrTimeout:] + 227
    3   com.apple.IMAP                          0x000000010dd7b328 -[IMAPClientOperationQueue waitUntilOperationIsFinished:] + 167
    4   com.apple.IMAP                          0x000000010dd9480e -[IMAPGateway waitUntilClientOperationIsFinished:] + 168
    5   com.apple.IMAP                          0x000000010dd94756 -[IMAPGateway addClientOperation:toQueueAndWaitUntilFinished:] + 411
    6   com.apple.IMAP                          0x000000010dd84dc4 -[IMAPConnection separatorChar] + 116
    7   com.apple.IMAP                          0x000000010dd839e8 -[IMAPConnection _authenticateWithAuthenticator:] + 197
    8   com.apple.CoreMessage                   0x000000010dc5c295 -[Connection authenticate] + 598
    9   com.apple.IMAP                          0x000000010dd83830 -[IMAPConnection authenticate] + 66
    10  com.apple.Notes.framework               0x000000010df31cc7 -[NFIMAPAccountProxy connectAndAuthenticate:] + 963
    11  com.apple.Notes.framework               0x000000010df350e5 -[NFIMAPAccountProxy _recoverFromConnectionlessState] + 115
    12  com.apple.Notes.framework               0x000000010df34c8b -[NFIMAPAccountProxy checkOutGatewayForFolder:highPriority:needsCheckIn:] + 403
    13  com.apple.Notes.framework               0x000000010df3c891 -[NFIMAPFolderProxy synchronizeWithServer] + 318
    14  com.apple.Foundation                    0x000000010ebf29cf -[NSBlockOperation main] + 124
    15  com.apple.Foundation                    0x000000010ebc8926 -[__NSOperationInternal start] + 684
    16  com.apple.Foundation                    0x000000010ebd00f1 __block_global_6 + 129
    17  libdispatch.dylib                       0x00000001109e1f01 _dispatch_call_block_and_release + 15
    18  libdispatch.dylib                       0x00000001109de0b6 _dispatch_client_callout + 8
    19  libdispatch.dylib                       0x00000001109df1fa _dispatch_worker_thread2 + 304
    20  libsystem_c.dylib                       0x0000000110a78d0b _pthread_wqthread + 404
    21  libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x0000000110bed6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110a78f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110a78d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x0000000110bed6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110a78f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110a78d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x0000000110bed6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110a78f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110a78d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 6:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x0000000110bed0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x0000000110a7b023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x000000010eb6f589 -[__NSOperationInternal waitUntilFinishedOrTimeout:] + 227
    3   com.apple.IMAP                          0x000000010dd7b328 -[IMAPClientOperationQueue waitUntilOperationIsFinished:] + 167
    4   com.apple.IMAP                          0x000000010dd9480e -[IMAPGateway waitUntilClientOperationIsFinished:] + 168
    5   com.apple.IMAP                          0x000000010dd94756 -[IMAPGateway addClientOperation:toQueueAndWaitUntilFinished:] + 411
    6   com.apple.IMAP                          0x000000010dd83039 -[IMAPConnection _fetchCapabilitiesIfNeeded] + 262
    7   com.apple.IMAP                          0x000000010dd82c30 -[IMAPConnection capabilities] + 33
    8   com.apple.IMAP                          0x000000010dd839d0 -[IMAPConnection _authenticateWithAuthenticator:] + 173
    9   com.apple.CoreMessage                   0x000000010dc5c295 -[Connection authenticate] + 598
    10  com.apple.IMAP                          0x000000010dd83830 -[IMAPConnection authenticate] + 66
    11  com.apple.Notes.framework               0x000000010df31cc7 -[NFIMAPAccountProxy connectAndAuthenticate:] + 963
    12  com.apple.Notes.framework               0x000000010df350e5 -[NFIMAPAccountProxy _recoverFromConnectionlessState] + 115
    13  com.apple.Notes.framework               0x000000010df34c8b -[NFIMAPAccountProxy checkOutGatewayForFolder:highPriority:needsCheckIn:] + 403
    14  com.apple.Notes.framework               0x000000010df3c891 -[NFIMAPFolderProxy synchronizeWithServer] + 318
    15  com.apple.Foundation                    0x000000010ebf29cf -[NSBlockOperation main] + 124
    16  com.apple.Foundation                    0x000000010ebc8926 -[__NSOperationInternal start] + 684
    17  com.apple.Foundation                    0x000000010ebd00f1 __block_global_6 + 129
    18  libdispatch.dylib                       0x00000001109e1f01 _dispatch_call_block_and_release + 15
    19  libdispatch.dylib                       0x00000001109de0b6 _dispatch_client_callout + 8
    20  libdispatch.dylib                       0x00000001109df1fa _dispatch_worker_thread2 + 304
    21  libsystem_c.dylib                       0x0000000110a78d0b _pthread_wqthread + 404
    22  libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x0000000110beb686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x0000000110beac42 mach_msg + 70
    2   com.apple.CoreFoundation                0x000000010e815233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x000000010e81a916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x000000010e81a0e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x000000010ebd47ee -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
    6   com.apple.Foundation                    0x000000010eb6d1aa -[NSRunLoop(NSRunLoop) run] + 74
    7   com.apple.CoreMessage                   0x000000010dc40d57 +[_NSSocket _runIOThread] + 77
    8   com.apple.Foundation                    0x000000010ebcf562 __NSThread__main__ + 1345
    9   libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 8:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x0000000110beb686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x0000000110beac42 mach_msg + 70
    2   com.apple.CoreFoundation                0x000000010e815233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x000000010e81a916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x000000010e81a0e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreMessage                   0x000000010dc400e9 _handleRequestWithTimeout + 1527
    6   com.apple.CoreMessage                   0x000000010dc428cb -[_NSSocket readBytes:length:error:] + 161
    7   com.apple.CoreMessage                   0x000000010dc5ca7b -[Connection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 76
    8   com.apple.CoreMessage                   0x000000010dc5c961 -[Connection _fillBuffer:] + 764
    9   com.apple.CoreMessage                   0x000000010dc5c4f3 -[Connection _readLineIntoData:error:] + 202
    10  com.apple.IMAP                          0x000000010dd82486 -[IMAPConnection _readLineIntoData:error:] + 53
    11  com.apple.IMAP                          0x000000010dd88e14 -[IMAPConnection(MFPrivate) _readDataOfLength:intoData:error:] + 112
    12  com.apple.IMAP                          0x000000010ddab428 -[IMAPResponse initWithConnection:error:] + 144
    13  com.apple.IMAP                          0x000000010dd8257a -[IMAPConnection _copyNextServerResponse:] + 55
    14  com.apple.IMAP                          0x000000010dd827eb -[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand:exists:] + 551
    15  com.apple.IMAP                          0x000000010dd87a87 -[IMAPConnection _responseFromSendingOperation:] + 863
    16  com.apple.IMAP                          0x000000010dd84f8f -[IMAPConnection executeListOrLSub:] + 215
    17  com.apple.IMAP                          0x000000010dd765ae -[IMAPClientListOperation executeOnConnection:] + 26
    18  com.apple.IMAP                          0x000000010dd819f5 -[IMAPConnection prepareAndExecuteOperation:outWrongState:] + 1247
    19  com.apple.IMAP                          0x000000010dd94501 -[IMAPGateway _allowClientOperationThrough:] + 1237
    20  com.apple.IMAP                          0x000000010dd93fd4 -[IMAPGateway allowClientOperationThrough:] + 369
    21  com.apple.IMAP                          0x000000010dd78ae3 -[IMAPClientOperation main] + 84
    22  com.apple.Foundation                    0x000000010ebc8926 -[__NSOperationInternal start] + 684
    23  com.apple.Foundation                    0x000000010ebd00f1 __block_global_6 + 129
    24  libdispatch.dylib                       0x00000001109e1f01 _dispatch_call_block_and_release + 15
    25  libdispatch.dylib                       0x00000001109de0b6 _dispatch_client_callout + 8
    26  libdispatch.dylib                       0x00000001109df1fa _dispatch_worker_thread2 + 304
    27  libsystem_c.dylib                       0x0000000110a78d0b _pthread_wqthread + 404
    28  libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x0000000110bed6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110a78f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110a78d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x0000000110bed6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110a78f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110a78d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 11:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x0000000110bed0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x0000000110a7afe9 _pthread_cond_wait + 869
    2   com.apple.Foundation                    0x000000010eb70453 -[__NSOperationInternal waitUntilFinished] + 151
    3   com.apple.Notes                         0x000000010dbc9cf0 0x10dbc4000 + 23792
    4   com.apple.Foundation                    0x000000010ebf29cf -[NSBlockOperation main] + 124
    5   com.apple.Foundation                    0x000000010ebc8926 -[__NSOperationInternal start] + 684
    6   com.apple.Foundation                    0x000000010ec1c2a7 -[_NSCFURLProtocolBridgeWithTrampoline processEventQ] + 279
    7   com.apple.Foundation                    0x000000010ec1c8b8 -[_NSCFURLProtocolBridgeWithTrampoline pushEvent:from:] + 180
    8   com.apple.Foundation                    0x000000010ec1d0aa -[_NSCFURLProtocolBridge start] + 98
    9   com.apple.Foundation                    0x000000010ec1e09c _bridger + 65
    10  com.apple.CFNetwork                     0x0000000112384376 URLProtocol_Classic::_protocolInterface_startLoad(_CFCachedURLResponse const*) + 74
    11  com.apple.CFNetwork                     0x000000011232b589 ___private_ScheduleOriginLoad_block_invoke_0108 + 157
    12  com.apple.CFNetwork                     0x000000011232b4ba __withExistingProtocolAsync_block_invoke_0 + 28
    13  com.apple.CFNetwork                     0x00000001123caf3a __block_global_1 + 28
    14  com.apple.CoreFoundation                0x000000010e816154 CFArrayApplyFunction + 68
    15  com.apple.CFNetwork                     0x000000011232b2b4 RunloopBlockContext::perform() + 124
    16  com.apple.CFNetwork                     0x000000011232b18b MultiplexerSource::perform() + 221
    17  com.apple.CoreFoundation                0x000000010e7f7b31 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    18  com.apple.CoreFoundation                0x000000010e7f7455 __CFRunLoopDoSources0 + 245
    19  com.apple.CoreFoundation                0x000000010e81a7f5 __CFRunLoopRun + 789
    20  com.apple.CoreFoundation                0x000000010e81a0e2 CFRunLoopRunSpecific + 290
    21  com.apple.Foundation                    0x000000010eb71546 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
    22  com.apple.Foundation                    0x000000010ebcf562 __NSThread__main__ + 1345
    23  libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    24  libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 12:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x0000000110bed322 __select + 10
    1   com.apple.CoreFoundation                0x000000010e859f46 __CFSocketManager + 1302
    2   libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    3   libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 13:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x0000000110bed0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x0000000110a7afe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00000001173cfb66 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore                0x00000001175f2bfa JSC::BlockAllocator::blockFreeingThreadMain() + 90
    4   com.apple.JavaScriptCore                0x000000011760825f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 14:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x0000000110bed0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x0000000110a7afe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00000001175559d4 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x00000001175558b6 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x000000011760825f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 15:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x0000000110bed0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x0000000110a7afe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00000001175559d4 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x00000001175558b6 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x000000011760825f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 16:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x0000000110bed0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x0000000110a7afe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00000001175559d4 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x00000001175558b6 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x000000011760825f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 17:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib                  0x0000000110beb686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x0000000110beac42 mach_msg + 70
    2   com.apple.QuartzCore                    0x000000010f17f17b CA::Render::Server::server_thread(void*) + 403
    3   com.apple.QuartzCore                    0x000000010f203dc6 thread_fun + 25
    4   libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    5   libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 18:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x0000000110beb686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x0000000110beac42 mach_msg + 70
    2   com.apple.CoreFoundation                0x000000010e815233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x000000010e81a916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x000000010e81a0e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreMessage                   0x000000010dc400e9 _handleRequestWithTimeout + 1527
    6   com.apple.CoreMessage                   0x000000010dc428cb -[_NSSocket readBytes:length:error:] + 161
    7   com.apple.CoreMessage                   0x000000010dc5ca7b -[Connection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 76
    8   com.apple.CoreMessage                   0x000000010dc5c961 -[Connection _fillBuffer:] + 764
    9   com.apple.CoreMessage                   0x000000010dc5c4f3 -[Connection _readLineIntoData:error:] + 202
    10  com.apple.IMAP                          0x000000010dd82486 -[IMAPConnection _readLineIntoData:error:] + 53
    11  com.apple.IMAP                          0x000000010dd88e14 -[IMAPConnection(MFPrivate) _readDataOfLength:intoData:error:] + 112
    12  com.apple.IMAP                          0x000000010ddab428 -[IMAPResponse initWithConnection:error:] + 144
    13  com.apple.IMAP                          0x000000010dd8257a -[IMAPConnection _copyNextServerResponse:] + 55
    14  com.apple.IMAP                          0x000000010dd827eb -[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand:exists:] + 551
    15  com.apple.IMAP                          0x000000010dd87a87 -[IMAPConnection _responseFromSendingOperation:] + 863
    16  com.apple.IMAP                          0x000000010dd8310b -[IMAPConnection executeCapability:] + 42
    17  com.apple.IMAP                          0x000000010dd79bc8 -[IMAPClientCapabilityOperation executeOnConnection:] + 26
    18  com.apple.IMAP                          0x000000010dd819f5 -[IMAPConnection prepareAndExecuteOperation:outWrongState:] + 1247
    19  com.apple.IMAP                          0x000000010dd94501 -[IMAPGateway _allowClientOperationThrough:] + 1237
    20  com.apple.IMAP                          0x000000010dd93fd4 -[IMAPGateway allowClientOperationThrough:] + 369
    21  com.apple.IMAP                          0x000000010dd78ae3 -[IMAPClientOperation main] + 84
    22  com.apple.Foundation                    0x000000010ebc8926 -[__NSOperationInternal start] + 684
    23  com.apple.Foundation                    0x000000010ebd00f1 __block_global_6 + 129
    24  libdispatch.dylib                       0x00000001109e1f01 _dispatch_call_block_and_release + 15
    25  libdispatch.dylib                       0x00000001109de0b6 _dispatch_client_callout + 8
    26  libdispatch.dylib                       0x00000001109df1fa _dispatch_worker_thread2 + 304
    27  libsystem_c.dylib                       0x0000000110a78d0b _pthread_wqthread + 404
    28  libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 19:
    0   libsystem_kernel.dylib                  0x0000000110bed6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110a78f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110a78d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x3000000000000000  rbx: 0x00007f7ffe8b7390  rcx: 0x3000000000000000  rdx: 0x000000010ea1a180
      rdi: 0x00007f7ffd6b21d0  rsi: 0x000000010e9e5640  rbp: 0x00007fff52031600  rsp: 0x00007fff520315b8
       r8: 0x000000011aebaa00   r9: 0x000000010e9ff4d0  r10: 0x00007f7ffbc19d30  r11: 0x00007f7ffe8b7380
      r12: 0x0000000000000001  r13: 0x00007fff52031610  r14: 0x000000010ea14110  r15: 0x00007f7ffd6b21d0
      rip: 0x000000010e6a2710  rfl: 0x0000000000010246  cr2: 0x00007f7ffe8eb0af
    Logical CPU: 0
    Binary Images:
           0x10dbc4000 -        0x10dc07fff  com.apple.Notes (1.5 - 107) <69EAB705-A00B-3584-91C6-F532B94806F9> /Applications/Notes.app/Contents/MacOS/Notes
           0x10dc2d000 -        0x10dc2efff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
           0x10dc3a000 -        0x10dc3afff  com.apple.Cocoa (6.7 - 19) <3CFC90D2-2BE9-3E5C-BFDB-5E161A2C2B29> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
           0x10dc3e000 -        0x10dcf6fff  com.apple.CoreMessage (6.5 - 1508) <E05A89F9-46AB-310C-B147-8B1E89C5A565> /System/Library/PrivateFrameworks/CoreMessage.framework/Versions/A/CoreMessage
           0x10dd71000 -        0x10ddd0fff  com.apple.IMAP (6.5 - 1508) <42C96BC0-5E8B-38CC-BA03-BE32A7115521> /System/Library/PrivateFrameworks/IMAP.framework/Versions/A/IMAP
           0x10de10000 -        0x10de4afff  com.apple.framework.internetaccounts (2.1 - 210) <546769AA-C561-3C17-8E8E-4E65A700E2F1> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
           0x10de7f000 -        0x10deedff7  com.apple.framework.IOKit (2.0.1 - 755.24.1) <04BFB138-8AF4-310A-8E8C-045D8A239654> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
           0x10df1e000 -        0x10df60ff7  com.apple.Notes.framework (1.5 - 107) <A665344C-A62E-33EE-A0F3-66959EB4D12E> /System/Library/PrivateFrameworks/Notes.framework/Versions/A/Notes
           0x10df96000 -        0x10df96fff  com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
           0x10df99000 -        0x10e26aff7  com.apple.security (7.0 - 55179.13) <F428E306-C407-3B55-BA82-E58755E8A76F> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x10e39e000 -        0x10e3d2fff  com.apple.securityinterface (6.0 - 55024.4) <FCF87CA0-CDC1-3F7C-AADA-2AC3FE4E97BD> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
           0x10e403000 -        0x10e403fff  SleepServices (1.46) <A49C34BF-A696-3266-BCC1-D0788853D626> /System/Library/PrivateFrameworks/SleepServices.framework/Versions/A/SleepServi ces
           0x10e408000 -        0x10e40afff  apop.so (169) <2A1CAD32-5734-3D4E-868B-E773DCD192B5> /usr/lib/sasl2/apop.so
           0x10e40f000 -        0x10e59afff  com.apple.WebKit (8536 - 8536.30.1) <56B86FA1-ED74-3001-8942-1CA2281540EC> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
           0x10e690000 -        0x10e691ff7  libSystem.B.dylib (169.3) <92475A81-385C-32B9-9D6D-38E4BAC90996> /usr/lib/libSystem.B.dylib
           0x10e69b000 -        0x10e7b392f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
           0x10e7d3000 -        0x10e7d5fff  libanonymous.2.so (166) <6417EA9E-4202-31DA-A086-B58F1E92C931> /usr/lib/sasl2/libanonymous.2.so
           0x10e7da000 -        0x10e7dafff  com.apple.CoreServices (57 - 57) <45F1466A-8264-3BB7-B0EC-E5E5BFBED143> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
           0x10e7de000 -        0x10e7e0fff  login.so (166) <1F868238-FB26-3477-B31C-67DB400D6F68> /usr/lib/sasl2/login.so
           0x10e7e5000 -        0x10e9cfff7  com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x10eb33000 -        0x10eb33fff  com.apple.ApplicationServices (45 - 45) <5302CC85-D534-3FE5-9E56-CA16762177F6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
           0x10eb39000 -        0x10ee98fff  com.apple.Foundation (6.8 - 945.18) <1D7E58E6-FA3A-3CE8-AC85-B9D06B8C0AA0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
           0x10f0bb000 -        0x10f0bdfff  libplain.2.so (166) <074D7604-3435-3E01-A86B-FF102001FC5B> /usr/lib/sasl2/libplain.2.so
           0x10f0c2000 -        0x10f270fff  com.apple.QuartzCore (1.8 - 304.3) <F450F2DE-2F24-3557-98B6-310E05DAC17F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
           0x10f329000 -        0x10f55eff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
           0x10f660000 -        0x11028dfff  com.apple.AppKit (6.8 - 1187.39) <199962F0-B06B-3666-8FD5-5C90374BA16A> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
           0x110982000 -        0x110984fff  pwauxprop.so (387.2) <F29F2067-8A39-3BDC-B1CA-9FC7C3470675> /usr/lib/sasl2/pwauxprop.so
           0x110989000 -        0x11098efff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
           0x110993000 -        0x110995fff  smb_nt.so (169) <757409B3-32F6-3FA1-97A4-92FEEF9FD624> /usr/lib/sasl2/smb_nt.so
           0x11099a000 -        0x1109a8fff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
           0x1109b5000 -        0x1109b5ff7  com.apple.SafariServices.framework (8536 - 8536.30.1) <2EB5365E-7D56-3283-89BB-AF6ED10F6D73> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer vices
           0x1109bb000 -        0x1109c0fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
           0x1109c8000 -        0x1109cffff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
           0x1109d6000 -        0x1109d6fff  com.apple.SafariDAVNotifier (1.1.1 - 1) <89F59707-91A2-387B-9415-ABD5D92D1776> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
           0x1109dc000 -        0x1109f1ff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
           0x110a0a000 -        0x110a0bff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
           0x110a15000 -        0x110a18ff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
           0x110a1f000 -        0x110a1ffff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
           0x110a25000 -        0x110a2dfff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
           0x110a37000 -        0x110a3dfff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
           0x110a45000 -        0x110a47fff  libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
           0x110a4c000 -        0x110a4dfff  libodfde.dylib (18) <46A5538E-3719-3BE8-AD13-537930B4082C> /usr/lib/libodfde.dylib
           0x110a53000 -        0x110a54ff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
           0x110a5a000 -        0x110a5bfff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
           0x110a62000 -        0x110b2eff7  libsystem_c.dylib (825.26) <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
           0x110b77000 -        0x110b7fff7  libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
           0x110b8b000 -        0x110bc1ff7  libsystem_info.dylib (406.17) <C9BA1024-043C-3BD5-908F-AF709E05DEE4> /usr/lib/system/libsystem_info.dylib
           0x110bdb000 -        0x110bf6ff7  libsystem_kernel.dylib (2050.24.15) <A9F97289-7985-31D6-AF89-151830684461> /usr/lib/system/libsystem_kernel.dylib
           0x110c09000 -        0x110c37ff7  libsystem_m.dylib (3022.6) <11B6081D-6212-3EAB-9975-BED6234BD6A5> /usr/lib/system/libsystem_m.dylib
           0x110c46000 -        0x110c54ff7  libsystem_network.dylib (77.10) <2AAA67A1-525E-38F0-8028-1D2B64716611> /usr/lib/system/libsystem_network.dylib
           0x110c66000 -        0x110c71fff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
           0x110c81000 -        0x110c82ff7  libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
           0x110c8d000 -        0x110c8fff7  libunc.dylib (25) <2FDC94A7-3039-3680-85F3-2164E63B464D> /usr/lib/system/libunc.dylib
           0x110c96000 -        0x110c9cff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
           0x110ca8000 -        0x110ccaff7  libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
           0x110ce9000 -        0x110d38ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
           0x110d49000 -        0x110d95ff7  libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
           0x110db2000 -        0x110dd7ff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
           0x110e0a000 -        0x110e72ff7  libc++.1.dylib (65.1) <E5A0C88E-0837-3015-A987-F8C5A0D35DD6> /usr/lib/libc++.1.dylib
           0x110ecb000 -        0x110f0eff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
           0x110f46000 -        0x111098fff  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <62770C0F-5600-3EF9-A893-8A234663FFF5> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
           0x111128000 -        0x111128ffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <EC55FB59-2443-3F08-9142-7BCC93C76E4E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
           0x111132000 -        0x11119fff7  com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
           0x1111dc000 -        0x1112fcfff  com.apple.desktopservices (1.7.4 - 1.7.4) <ED3DA8C0-160F-3CDC-B537-BF2E766AB7C1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
           0x11136f000 -        0x11169ffff  com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
           0x1117fa000 -        0x111804fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <5A4B532E-3428-3F0A-8032-B0AFFF72CA3D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
           0x11180e000 -        0x111810fff  com.apple.Notes.webplugin (1.5 - 107) <F7192C71-204F-312E-94F1-50E701287E91> /Applications/Notes.app/Contents/PlugIns/Notes.webplugin/Contents/MacOS/Notes
           0x111815000 -        0x111a15fff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
           0x111abb000 -        0x111bb8ff7  libxml2.2.dylib (22.3) <7FD09F53-83DA-3ECD-8DD9-870E1A2F0427> /usr/lib/libxml2.2.dylib
           0x111bf1000 -        0x111c03ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
           0x111c09000 -        0x111c0aff7  ATSHI.dylib (341.1) <6852B534-7542-338A-903F-26615745901F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
           0x111c0f000 -        0x111cd4ff7  com.apple.coreui (2.0 - 181.1) <7C4196D5-79E8-3557-963B-71F494DC9B04> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
           0x111d4a000 -        0x111dadff7  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <9ACD3AED-6C04-3BBB-AB2A-FC253B16D093> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
           0x111dd4000 -        0x111ddafff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
           0x111de8000 -        0x111de9fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
           0x111def000 -        0x111e05fff  com.apple.MultitouchSupport.framework (235.29 - 235.29) <617EC8F1-BCE7-3553-86DD-F857866E1257> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
           0x111e15000 -        0x111e3cff7  com.apple.PerformanceAnalysis (1.16 - 16) <1BDA3662-18B7-3F38-94E5-9ACD477A7682> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
           0x111e5f000 -        0x111e76fff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
           0x111e87000 -        0x111e96fff  com.apple.opengl (1.8.9 - 1.8.9) <6FD163A7-16CC-3D1F-B4B5-B0FDC4ADBF79> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x111ea0000 -        0x111f72ff7  com.apple.CoreText (260.0 - 275.16) <990F3C7D-EEF1-33C4-99D6-8E81C96ED3E3> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
           0x111fd9000 -        0x1120f2fff  com.apple.ImageIO.framework (3.2.1 - 850) <C3FFCEEB-AA0C-314B-9E94-7005EE48A403> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
           0x112151000 -        0x11222bfff  com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
           0x1122ae000 -        0x112423ff7  com.apple.CFNetwork (596.4.3 - 596.4.3) <A57B3308-2F08-3EC3-B4AC-39A3D9F0B9F7> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
           0x1124e7000 -        0x112538ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <A4341BBD-A330-3A57-8891-E9C1A286A72D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
           0x11256d000 -        0x11258eff7  libCRFSuite.dylib (33) <B49DA255-A4D9-33AF-95AB-B319570CDF7B> /usr/lib/libCRFSuite.dylib
           0x11259e000 -        0x1125a2ff7  com.apple.TCC (1.0 - 1) <76A86876-2280-3849-8478-450E1A8C0E01> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
           0x1125ac000 -        0x112615fff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
           0x112681000 -        0x112694ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
           0x1126a0000 -        0x11279dfff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
           0x1127b8000 -        0x1127c7ff7  libxar.1.dylib (105) <B6A7C8AA-3E20-3A1D-A7BA-4FD0052FA508> /usr/lib/libxar.1.dylib
           0x1127d3000 -        0x1127d7fff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
           0x1127e1000 -        0x1127e1fff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
           0x1127e5000 -        0x1127f2fff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
           0x1127fc000 -        0x112b13ff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <1E567A52-677F-3168-979F-5FBB0818D52B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
           0x112b92000 -        0x112c13fff  com.apple.Metadata (10.7.0 - 707.11) <2DD25313-420D-351A-90F1-300E95C970CA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
           0x112c6d000 -        0x112d13ff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <1BDB5456-0CE9-301C-99C1-8EFD0D2BFCCD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
           0x112d7a000 -        0x112e07ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <54A8069C-E497-3B07-BEA7-D3BC9DB5B649> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
           0x112e4e000 -        0x112eadfff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
           0x112eda000 -        0x112f8bfff  com.apple.LaunchServices (539.9 - 539.9) <07FC6766-778E-3479-8F28-D2C9917E1DD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
           0x112fe4000 -        0x113015ff7  com.apple.DictionaryServices (1.2 - 184.4) <2EC80C71-263E-3D63-B461-6351C876C50D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
           0x11303b000 -        0x113042fff  com.apple.NetFS (5.0 - 4.0) <195D8EC9-72BB-3E04-A64D-E1A89B4850C1> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
           0x113049000 -        0x113057ff7  libkxld.dylib (2050.24.15) <A619A9AC-09AF-3FF3-95BF-F07CC530EC31> /usr/lib/system/libkxld.dylib
           0x113061000 -        0x11306eff7  com.apple.NetAuth (4.0 - 4.0) <A4A21A2F-B26A-3DC9-95E4-DAFA43A4A2C3> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
           0x113080000 -        0x113097fff  com.apple.CFOpenDirectory (10.8 - 151.10) <10F41DA4-AD54-3F52-B898-588D9A117171> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
           0x1130b3000 -        0x1130defff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
           0x1130ee000 -        0x113115fff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
           0x113136000 -        0x1131d4ff7  com.apple.ink.framework (10.8.2 - 150) <3D8D16A2-7E01-3EA1-B637-83A36D353308> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
           0x113208000 -        0x113b984af  com.apple.CoreGraphics (1.600.0 - 332) <5AB32E51-9154-3733-B83B-A9A748652847> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
           0x113ca0000 -        0x113d20ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <AFDC05E6-F842-33D9-9379-81DF26E510CA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
           0x113d52000 -        0x113e0fff7  com.apple.ColorSync (4.8.0 - 4.8.0) <73BE495D-8985-3B88-A7D0-23DF0CB50304> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
           0x113e55000 -        0x113eabfff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
           0x113ee1000 -        0x113ef4ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <023D909C-3AFA-3438-88EB-05D0BDA5AFFE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
           0x113f08000 -        0x113f62fff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
           0x113f96000 -        0x113fd5ff7  com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/Ap

    Here goes:
    Hardware Information:
              MacBook Pro (Retina, 13-inch, Early 2013)
              MacBook Pro - model: MacBookPro10,2
              1 3 GHz Intel Core i7 CPU: 2 cores
              8 GB RAM
    Video Information:
              Intel HD Graphics 4000 - VRAM: 768 MB
    System Software:
              OS X 10.8.4 (12E55) - Uptime: 0 days 1:25:41
    Disk Information:
              APPLE SSD SM512E disk0 : (500.28 GB)
                        disk0s1 (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) /: 499.42 GB (458.41 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
    USB Information:
              Microsoft Microsoft® Nano Transceiver v2.0
              Apple Inc. Apple Internal Keyboard / Trackpad
              Apple Inc. BRCM20702 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Inc. FaceTime HD Camera (Built-in)
    FireWire Information:
    Thunderbolt Information:
              Apple Inc. thunderbolt_bus
    Kernel Extensions:
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist
    Launch Agents:
    User Launch Agents:
    User Login Items:
              iTunesHelper
    3rd Party Preference Panes:
              Flash Player
              Java
    Internet Plug-ins:
              Flash Player.plugin
              FlashPlayer-10.6.plugin
              Flip4Mac WMV Plugin.plugin
              JavaAppletPlugin.plugin
              QuickTime Plugin.plugin
              Silverlight.plugin
              SlingPlayer.plugin
    User Internet Plug-ins:
    Bad Fonts:
              None
    Top Processes by CPU:
                   2%          WindowServer
                   1%          EtreCheck
                   1%          fontd
                   1%          Mail
                   0%          Safari
                   0%          ManagedClient
                   0%          WebProcess
                   0%          SystemUIServer
                   0%          System Events
                   0%          configd
    Top Processes by Memory:
              352 MB             Finder
              319 MB             WebProcess
              213 MB             Mail
              213 MB             Safari
              164 MB             WindowServer
              115 MB             Dock
              106 MB             Messages
              66 MB              mds
              57 MB              SystemUIServer
              49 MB              com.apple.dock.extra
    Virtual Memory Statistics
              3.96 GB            Free RAM
              2.18 GB            Active RAM
              256 MB             Inactive RAM
              1.60 GB            Wired RAM
              198 MB             Page-ins
              0 B                Page-outs

  • Please help me regarding implemenatation of plsql webservices

    hello every one,
    My name is anil, I am working on the topic "building pl/sql web services". I successfully deployed my pl/sql function. But i got an error while invoking the function from a web service.
    my error is
    08/04/22 10:40:23 javax.servlet.ServletException: Cannot generate Class: java.lang.NoClassDefFoundError: com/sun/tools/javac/M
    ain
    Exception in thread "main"
    08/04/22 10:40:23 at oracle.j2ee.ws.RpcWebService.generateWrapperClass(RpcWebService.java:569)
    08/04/22 10:40:23 at oracle.j2ee.ws.RpcWebService.generate(RpcWebService.java:467)
    08/04/22 10:40:23 at oracle.j2ee.ws.RpcWebService.getWrapper(RpcWebService.java:614)
    08/04/22 10:40:23 at oracle.j2ee.ws.RpcWebService.doGetRequest(RpcWebService.java:725)
    08/04/22 10:40:23 at oracle.j2ee.ws.BaseWebService.doGet(BaseWebService.java:1199)
    08/04/22 10:40:23 at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
    08/04/22 10:40:23 at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    08/04/22 10:40:23 at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:691)
    08/04/22 10:40:23 at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370
    08/04/22 10:40:23 at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
    08/04/22 10:40:23 at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
    08/04/22 10:40:23 at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)
    08/04/22 10:40:23 at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)
    08/04/22 10:40:23 at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)
    08/04/22 10:40:23 at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    08/04/22 10:40:23 at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.ja
    va:303)
    08/04/22 10:40:23 at java.lang.Thread.run(Unknown Source)
    please help me

    SowmyRaj wrote:
    But i am unable to run it successfully...please help me regarding this... No wonder. Script is full of entries:
    **MOBILE CODE**Modify script:
    1. Change:
    **MOBILE CODE** immediateto:
    execute immediate2. Change:
    **MOBILE CODE**to:
    end ifRun the script. If you will run it second time, change:
    u_exist PLS_INTEGER;
    t_exist PLS_INTEGER;
    ts_exist PLS_INTEGER;
    ss_exist PLS_INTEGER;to:
    u_exist PLS_INTEGER := 1;
    t_exist PLS_INTEGER := 1;
    ts_exist PLS_INTEGER := 1;
    ss_exist PLS_INTEGER := 1;This way existing objects will be dropped before recreating them.
    SY.

  • Hi can anyone help me. I have a apple macbook laptop OSX 10.5.8 . When i push print, it shows my printer but says cannot communicate with printer. (epson stylus nx125). Do I need new drivers? Please help .  regards Cindy

    Hi can anyone help me. I have a apple macbook laptop OSX 10.5.8 . When i push print, it shows my printer but says cannot communicate with printer. (epson stylus nx125). Do I need new drivers? Please help .  regards Cindy

    Welcome to Apple Support Communities. We're users here and do not speak for "Apple Inc."
    Some basic printer troubleshooting steps before worrying about a printer driver:
    1. Have you tried turning the printer off and back on?
    2A. Is the printer attached with a cable?
         If yes, have you tried unplugging and re-plugging both ends of the printer cable?
         If that does not help, can you test the printer with another cable?
    2B. If your printer is not connected to the computer with a cable, have you tried restarting your printer (assuming wireless connection)?
         Have you tried restarting your wireless router?
    3. Have you tried restarting your MacBook? (Be sure to save your work first.)
    4. Does the printer have ink? (Doesn't usually generate a 'communications error' though)
    5. Have you updated OS X or the program you're trying to print from recently?

  • Please help me regarding the running of a sql file

    Hi I downloaded one sql file from
    http://www.cs.uwf.edu/~sbagui/db/practical_oracle.htm
    But i am unable to run it successfully...please help me regarding this... thanking you
    Edited by: SowmyRaj on Dec 24, 2009 5:24 AM

    Hi vali thanks for your reply...
    I am using Windows XP sp2 Os.
    and Oracle database 11g ...
    when executing this file the follwing error is occuring
    Enter value for user_name: system
    old 2: uname VARCHAR(50) := '&user_name';
    new 2: uname VARCHAR(50) := 'system';
    **MOBILE CODE** immediate 'drop user ' ||uname;
    ERROR at line 13:
    ORA-06550: line 13, column 1:
    PLS-00103: Encountered the symbol "*" when expecting one of the following:
    ( begin case declare exit for goto if loop mod null pragma
    raise return select update while with <an identifier>
    <a double-quoted delimited-identifier> <a bind variable> <<
    continue close current delete fetch lock insert open rollback
    savepoint set sql execute commit forall merge pipe purge

  • I am facing a problem in my IPod . it is not detected by computer i tried every possible thing i changed cable i installed new itunes still its not coming up in itunes. can you please help me regarding this problem.

    i am facing a problem in my IPod . it is not detected by computer i tried every possible thing i changed cable i installed new itunes still its not coming up in itunes. can you please help me regarding this problem.

    This is for Windows: http://support.apple.com/kb/TS1538

  • Please help me regarding role upload ?

    Hi All,
       installed CRM business package in portal. took CUA as user base. now assigning of users to roles is a concern for me.
    i.e. CRM 4.0 and BW 3.5 already comes with some predefined roles for portal, for ex : PCCCAMPAIGNMANAGER*
    I assigned an user X in CRM and BW system and I want the same user assignment to be used in portal. so I used "Role upload". i.e. I uploaded CRM user to role assignments to Portal, so I got that under migrated content --> sap component systems --> name of crm system --> under that my role (PCCCAMPAIGNMANAGER).
    Now I added the portal role com.sap.***.CampaignManager (portal specific) to this role by "Add role to role". so now when the user logs in, he will be able to see the worksets assigned.
    please note that we didnt do any user to role assignments in portal.
    so all the users assigned to this role in crm and doing manual "role upload" can login into portal and view the worksets. 
    portal role consists of iviews from both crm and bw. but now we just had the users assigned to role in crm mapped to role in portal, but what about bw iviews?
    i.e. what happens when i assign user x,y,z for this role in CRM and only users x,y in BW, so in portal x,y,z will be assigned to the respective role as we took only crm-portal user to role assignments. then the user Z will get an error obiviously for bw iviews, so how to ensure that CRM and BW roles are in sync with roles in portal.
    is there some concept of role mapping or something like that to solve my problem?
    sorry if my question is not clear, but hope that you can help me in this regard
    Thank you

    could some one please help me regarding this..
    I am in very urgent need..
    Thank you

  • Hi, i just try to update my 3g in itunes unfortunatly it got error while updating it asked me to restore update but unable to restore it , now my 3g i locked and on screen it displying usb symbol connect to itunes ,please help me regarding this

    hi, i just try to update my 3g in itunes unfortunatly it got error while updating it asked me to restore update but unable to restore it , now my 3g i locked and on screen it displying usb symbol connect to itunes ,please help me regarding this

    I suspect your error was 1015, not 1051. This usually involves a jailbroken iPhone, use Google to find your solution.

  • Please help me regarding VAR customer create new message in work center

    Hi, guru
    I have encountered with a problem regarding, for example, when VAR customer 'X' create new message in work center and specify message processor to partner no '1'  (partner no 1 has employee role with username 'A' in BP) but when username 'A' log on and open work center via SAPGUI to find a new message created to him, username 'A' did't got a new message from VAR customer 'X' whom choose specify message processor to him and work center show My Messages (0)
    why, do I set something config wrong ?
    Any recommend would be appreciated
    thank you very much

    Hi
    1) can you check in CRM_DNO_MONITOR and oepn the ticket , whethere the processor name appearing in the ticket?
    2) Does your customer assign the processor manually or any automatic support team assgnemt, if so please verify your automatic support tean assignment against the blog
    [/people/dolores.correa/blog/2007/10/06/service-desk-support-team-determination|/people/dolores.correa/blog/2007/10/06/service-desk-support-team-determination]
    3)Might be an authoraisation issue of the Processor. assign SAP_ALL access and check again
    [Service desk roles|http://help.sap.com/saphelp_sm32/helpdata/en/0a/f12c41ab78f66fe10000000a1550b0/content.htm]
    Thanks,
    Jansi

  • PLEASE HELP ME REGARDING THIS PROBLEM

    Hi friends,
    I got a step by step guide for BSP and followed the steps and successfully created the Program .But while Testing the BSP Application its showing normal
    " page cannot be displayed" error is coming .I checked whether server is working or not by ping on Server in command prompt . Its showing connection between my work machine and server succesfully.
    What may be the error.How to check our server port on which our program reside.
    Please help me in this regard.

    Hi Deepu,
        I am getting error while double clicking on
    BSP--> (ur namespace  folder)
    and suddenly sap is terminated.
    Detailed stack dump:
      7C59BC81:  KERNEL32.dll!  RaiseException + 86 bytes () // ?
    =>5B9CE4DC:  sapfront.dll!  ExitSapInstallCheck + 21948 bytes () // symbols not found
      7C34D5D2:   MSVCR71.dll!  __security_error_handler + 45 bytes () // symbols not found
      60DF113F:   wdttree.ocx!  DllUnregisterServer + 106810 bytes () // symbols not found
      60DD2D0E:   wdttree.ocx!  <no symbol> () // symbols not found
      60DC0D00:   wdttree.ocx!  <no symbol> () // symbols not found

  • Sun Team: Please help me regarding the login action previously i posted

    Hi sun team i have posted one thread recently. Please verify my code and guide me whether it is correct or not. And if any changes needed Please help me out regarding this.
    http://forum.java.sun.com/thread.jspa?threadID=5118906&tstart=0
    Thank You in Advance

    We do have a sample app that demos this scenario.
    Please check out:
    http://developers.sun.com/prodtech/javatools/jscreator/reference/code/sampleapps/index.jsp
    Databases: Two Page Create, Retrieve, Update, and Delete (CRUD) Database Operations with Table Display
    Two Page CRUD with Table Display is an application that demonstrates how to perform create, read, update, and delete operations on a cached rowset data provider. The data provider is bound to a JavaServer Faces table component. Rather than having functionality confined to one page, this application has two additional pages, one for creating a trip and another for updating a trip.
    http://developers.sun.com/prodtech/javatools/jscreator/reference/code/sampleapps/2/TwoPageCrudTable.zip
    http://developers.sun.com/prodtech/javatools/jscreator/reference/code/sampleapps/2/2update1/TwoPageCrudTable.zip
    Hope this helps,
    Sakthi

Maybe you are looking for