Script cast member not found

Can anyone tell me why the %^$& I get a "script cast
member not found"
error?
I've been working in Director for 17 years and I get this
from time to time.
I generally just copy the code from the behavior, paste it
into a new
behavior, name the new one the same as the old on, then copy
the new cast
member over the old one and it solves it. But it happened
rarely enough
that I didn't bother questioning why. I know it's not a
syntax error
because the code runs fine after the above process. But it
does only
happens when I've made a change to the code in that behavior.
Now I'm working with a simple movie with one parent script
and a
prepareMovie handler that instantiates one child object and
I'm getting this
darn error all the time. My above solution isn't working
anymore. The
error points to the first line of a particular handler. That
first line was
a comment. So I got rid of the comment and the new first line
of the
handler is code and the error points to it. If you see where
I'm headding,
no matter how many lines of "errored" code I get rid of the
error alert will
always point to the first line of that handler.
I'm sure many have seen this because it's happened in almost
every version
of Director I've owned. And by the way, I'm in MX on a PC.
Craig Wollman
Lingo Specialist
Word of Mouth Productions
212-928-9581
www.wordofmouthpros.com

Dean, I might do that. No, this has been going on long enough
that I sure
it's not any definable user error.
But, I did, after all of these years, discover something last
night. In one
case, I did get a legitimate script error that I fixed. When
I ran the
project again, I received the same script error, even though
it was a simple
fix and I was sure I corrected it. I recompiled several times
and ran it
again and received the error again. Then it dawned on me that
since parent
scripts remain in memory until disposed of, Director must
have been, for
some reason, referring to the old parent script. I had
already set the
object's global variable to 0 in my stopMovie handler and
even though that
handler might not always run when errors occur, I ran it from
the message
window to insure that the object's global was 0. But that
still didn't
solve the problem. Then I used clearGlobals in the message
window and
voila, the issue went away. Dare I say that this is a
shortcoming of
Lingo's design to allow variables to persist/linger after an
error?
But what still baffles me is that most of the time when I get
that
particular error,, even though I seemed to have found a
workaround, it is
not an actual issue with any code.
When it happens again, I'll send you the code. Obviously, if
I'm correct
about the scripts lingering in memory, then you won't receive
the error when
you run the movie.
I just find it interesting that there haven't been a bunch of
"Yeah, I get
that darn thing too" here.
Craig
Craig Wollman
Lingo Specialist
Word of Mouth Productions
212-928-9581
www.wordofmouthpros.com
"Dean Utian" <[email protected]> wrote in message
news:[email protected]...
> Hi Craig,
>
> Could it be a simple mistake of the script type not
being properly defined
> (movie/parent/behavior)?
>
> If you have a very baic movie where this error occurs
repeatedly, you
> could
> email me ([email protected]) and I'll take a fresh
perspective look at
> it.
>
> regards
> Dean
>
> Director Lecturer / Consultant
>
http://www.fbe.unsw.edu.au/learning/director
>
http://www.multimediacreative.com.au
>
>
>
>

Similar Messages

  • Script error property not found

    I have a script that get a list of choosen check boxes, it
    was working fine but now when i press the button that calls the
    script i get a error saying "script error property not found" then
    it lists the line i have put a * next to and says #hilite
    This is the top part of that script and to my knowlegde i
    have not chnaged any of it and it worked before but now it does
    not, i also use a script almost identical to this but use it for
    radiobuttons instead and the line is the same in that and that
    script works, can anybody tell me what as gone wrong?

    I suspect you have a cast member that uses one of the three
    names in the
    list and it is not a check box. It's probably before the
    actual checkbox
    member in the cast so it's finding it first.
    Craig Wollman
    Lingo Specialist
    Word of Mouth Productions
    212-928-9581
    www.wordofmouthpros.com
    "ajrobson" <[email protected]> wrote in
    message
    news:etn9j1$op2$[email protected]..
    >I have a script that get a list of choosen check boxes,
    it was working fine
    >but
    > now when i press the button that calls the script i get
    a error saying
    > "script
    > error property not found" then it lists the line i have
    put a * next to
    > and
    > says #hilite
    >
    > This is the top part of that script and to my knowlegde
    i have not chnaged
    > any
    > of it and it worked before but now it does not, i also
    use a script almost
    > identical to this but use it for radiobuttons instead
    and the line is the
    > same
    > in that and that script works, can anybody tell me what
    as gone wrong?
    >
    >
    >
    > global err
    >
    > on CheckBoxState -- name of custom handler
    > TickedBoxes = [] -- a empty list will be filled where
    ever a checkbox is
    > ticked
    > CheckBoxNames = ["Dr no", "From russia with
    love","Casino royale" ]
    > repeat with i = 1 to 3 -- repeat for each checkbox
    > CurrentCheckbox = CheckBoxNames
    > ** if the hilite of member(CurrentCheckbox) then -- if
    currentcheckbox
    > hilite
    > is true (checked)...
    > append(TickedBoxes,CurrentCheckbox )
    > end if
    > end repeat
    > return TickedBoxes
    > end
    >

  • Call SAP function from VB - Structure member not found " unknown "

    Hello,
    (I don't know if this is the appropriate forum, but I didn't find any which seem to match my topic ...)
    I use the following VB code to call the SAP function ARCHIV_PROCESS_RFCINPUT:
        Dim bapiControl As SAPBAPIControl
        Dim logonControl As SAPLogonControl
        Dim functions As SAPFunctions
        Set bapiControl = New SAPBAPIControl
        Set logonControl = New SAPLogonControl
        Set functions = New SAPFunctions
        Set bapiControl.Connection = logonControl.NewConnection
        ' do login
        Set functions.Connection = bapiControl.Connection
        Dim myFunction As SAPFunctionsOCX.Function
        Set myFunction = functions.Add("ARCHIV_PROCESS_RFCINPUT")
        Dim myStructure As SAPFunctionsOCX.Structure
        Set myStructure = functions.CreateStructure("OARFCIN")
        ' the following values are just examples
        myStructure("ARCHIV_ID") = "01"
        myStructure("ARC_DOC_ID") = "1234567890123457890"
        myStructure("AR_OBJECT") = "TIF"
        myStructure("DOC_TYPE") = "FIIINVOICE"
        myStructure("BARCODE") = "1"
        myFunction.Exports("DOCUMENT_ENTRY") = myStructure
    At this point execution stops with the following error message:
    Err.Number: 1006
    Err.Description: Structure member not found "<unknown>"
    Err.Source: wdtfuncs
    What is wrong? The function ARCHIV_PROCESS_RFCINPUT needs one input parameter called "DOCUMENT_ENTRY" which is of type OARFCIN ...
    ARCHIV_CONNECTION_INSERT, which has only Strings as input parameters (no structures), works fine ...
    I tried all variations I could think of:
    myStructure.Value("ARCHIV_ID") = G_csDefaultRepository
    instead of myStructure("ARCHIV_ID") = G_csDefaultRepository
    declaring bapiControl, logonControl and functions as Object, and instanciating them with CreateObject(...)
    myFunction.Exports(0).Insert "DOCUMENT_ENTRY", myStructure
    instead of myFunction.Exports("DOCUMENT_ENTRY") = myStructure
    (which gave me a "Collection member not found" error) ...
    Nothing worked ...
    What is wrong with this code??
    Thanks for help!
    Regards
    Steffi

    Hi Ralf,
    try substituting following code:
    ' the following values are just examples
    myStructure("ARCHIV_ID") = "01"
    myStructure("ARC_DOC_ID") = "1234567890123457890"
    myStructure("AR_OBJECT") = "TIF"
    myStructure("DOC_TYPE") = "FIIINVOICE"
    myStructure("BARCODE") = "1"
    myFunction.Exports("DOCUMENT_ENTRY") = myStructure
    with that one:
    Set myStructure = myFunction.Exports("DOCUMENT_ENTRY")
    ' the following values are just examples
    myStructure.Fields("ARCHIV_ID") = "01"
    myStructure.Fields("ARC_DOC_ID") = "1234567890123457890"
    myStructure.Fields("AR_OBJECT") = "TIF"
    myStructure.Fields("DOC_TYPE") = "FIIINVOICE"
    myStructure.Fields("BARCODE") = "1"
    Let me know!
    Enjoy!!

  • Member not found error while loading data

    Hi All,
    I created a data load file and loaded data to the cube from EAS. I have some member's having all measure values as zero as shown below:
    "1018"     0     0     0     294.4739236
    "1019"      0      0     0     0
    Data is loading properly for member "1018" but for "1019" even though it is already present in outline, its throwing an error as shown below:
    +\\ Member 1019 Not Found In Database+
    Please help me to resolve this issue....
    Thanks in advance
    Regards,
    Lolita

    Hi Lolita,
    Are you sure you have member '1019' in the outline first?
    Do a right click in Outline and find the member 1019. If you are able to track it, then check the rules files mapping is proper or not.
    Also, try loading data for other combination for the same member.

  • Error: Warning Unresponsive script, dom.max_script_run_time : not found

    The fix for error: Warning Unresponsive script says goto config page
    about:config page, search for the preference dom.max_script_run_time
    - this parameter not found on the config page
    Please advise
    == This happened ==
    A few times a week
    == always

    I have pretty much the same problem -- I run three different types of Browsers (Firefox 3.6; Internet Explorer 6; Chrome) and I've found that they are all affected by this ... thing.
    I suspect that there is some kind of war going on, or a very aggressive move by Yahoo onto the Browsers and Search Engine scene. With Yahoo trying to be an 800 lb (Pound weight) Gorilla - again, Yawn!
    I this because I've recently installed an AntiVirus application (which is a really good one -- but, unfortunately for the AntiVirus maker they did not look closely enough at who they were getting into bed with -- The 800 Pound Gorilla, Yahoo.
    This AntiVirus's installer had a default setting to make Yahoo Search my default search engine -- it was a tiny notice about this and I happened to look otherwise Yahoo would have installed openly onto my computer (and I don't want them. I've been using computers since before the Internet was publicly and generally available and I know only too well Yahoo's Huge Ego and Navel gazing behaviour.
    Basically, Mozilla are on Yahoo's side, because -- in the minds of the anarchists of Mozilla -- Google had no right to make a Browser.
    This is Mozilla getting its own back on Google and Google Chrome. Mozilla are culpable in this assault on our own property -- our own computers. By two organizations who are bitter at Google. Actually, they are jealous of Google because Google succeeded on the quality and purity of Google products and their terrific business sense and strategy.
    Now, Mozilla and Yahoo have got in cahoots (and chumps like the supplier of my AntiVirus have been sucked into this) to "Do something about Google" as Mozilla proclaimed they would do (should they get the chance) some few years ago.
    Now, I have in my computer: Yahoo software and a Mozilla Browser which are both acting truly as Malware. Now that AntiVirus company which loaded Yahoo software onto my computer can understand why I wrote to them pointing all this out (and they, a multi-million or billion pound organization missed what tiny little me could see) that they have helped Malware get onto my system -- now their up-to-that-moment very well thought of AntiVirus and organization ... Well, their name is now mud (but I shall not say their name here. Let them suffer their stupidity and shame, that should be enough for them. They are going to have a time of it cleaning this little ol' mess up.)

  • Executing CR HOST script, encountering command not found

    Hi All,
    I new to writing Host scripts, especially for use within the Applications.
    I need to go out to an FTP site and grab a file.
    The FTP portion of the script works fine.
    The problem I'm encountering is with the execution of regular commands like 'cd' or 'mv'.
    The error comes back, ...line xx: cd: command not found
    When I have an actual directory path with the cd command - I always get, No such file or directory...
    (I have verified the directory paths I'm attempting to change to exist and available.)
    The FTP portion executes, but the received file goes into some obscure server directory. Can't even perform a move of the file.
    The echo command works fine.
    I have created just a dummy script to do a cd /u32/... command and still the same Error.
    Any suggestions will be very helpful.
    Thanks,
    Bradley

    Here is a main code script....
    #$HEADER: XX_BANK_STMTS_IMPORT
    # PROGRAM NAME: XX_BANK_STMTS_IMPORT
    # PURPOSE:
    # Load XXXX Bank Statements
    # XX Bank Statements Import Concurrent Program
    # This script requires to run as Concurrent Request
    P_LOGIN="$1"
    P_USER_ID="$3"
    P_REQUEST_ID="$4"
    REMOTE_USER=ftpuser
    REMOTE_PASSWD=ftpuser
    FTP_DIR=u32/oracle/DBCTEST/apps/apps_st/xxcust/12.0.0/ftp/inbound
    REMOTE_PATH=public/dbco_cng/reporting
    REMOTE_FILE=*.PGP
    echo "USER = "${USER}
    echo "HOST = "${HOSTNAME}
    echo "Directory = "${PWD}
    cd /u32/oracle/XXXTEST/apps/apps_st/appl/xxcust/12.0.0/ftp/inbound
    echo "Directory = "${PWD}
    echo " Transferring File"
    ftp -n -i -v <<-EOF
    open XX.XX.XXX.XXX
    user $REMOTE_USER $REMOTE_PASSWD
    ##lcd $FTP_DIR
    cd $REMOTE_PATH
    mget $REMOTE_FILE
    EOF
    I get errors like
    /u32/oracle/XXXTEST/apps/apps_st/appl/xxcust/12.0.0/bin/XX_BANKFILE_LOAD.prog: line 108: cd: /u32/oracle/XXXTEST/apps/apps_st/appl/xxcust/12.0.0/ftp/inbound
    : No such file or directory
    or if I just put the cd command:
    cd: commad not found
    The commented out lcd was from previous tries at doing it that way... No luck.
    Thanks.

  • Safari issue, an error script appear : Symbol not found

    Process:         com.apple.WebKit.WebContent [3975]
    Path:            /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/XPCServices/com. apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
    Identifier:      com.apple.WebKit.WebContent
    Version:         9537 (9537.71)
    Build Info:      WebKit2-7537071000000000~3
    Code Type:       X86-64 (Native)
    Parent Process:  ??? [1]
    Responsible:     Safari [3927]
    User ID:         501
    Date/Time:       2014-01-05 20:42:22.336 -0500
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Anonymous UUID:  4D563E89-B70D-E1F3-9667-B7E57D104F95
    Sleep/Wake UUID: 2F7FE8B2-2718-4D88-A464-A13AF9B97AC9
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    Bundle controller class:
    BrowserBundleController
    Process Model:
    Multiple Web Processes
    Dyld Error Message:
      Symbol not found: __ZN7WebCore9FrameView21resumeAnimatingImagesEv
      Referenced from: /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
      Expected in: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   dyld                                    0x00007fff63ed709d dyld_fatal_error + 1
    1   dyld                                    0x00007fff63ed9df6 dyld::fastBindLazySymbol(ImageLoader**, unsigned long) + 171
    2   libdyld.dylib                           0x000000010eae731d dyld_stub_binder_ + 13
    3   ???                                     0x000000010d6539c0 0 + 4519705024
    4   com.apple.WebKit2                       0x000000010d48ea50 WebKit::WebProcess::didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageDecoder&) + 28
    5   com.apple.WebKit2                       0x000000010d48e9b9 CoreIPC::Connection::dispatchMessage(***::PassOwnPtr<CoreIPC::MessageDecoder>) + 101
    6   com.apple.WebKit2                       0x000000010d48e8e2 CoreIPC::Connection::dispatchOneMessage() + 106
    7   com.apple.WebCore                       0x00000001100ab1ed WebCore::RunLoop::performWork() + 557
    8   com.apple.WebCore                       0x00000001100aafa2 WebCore::RunLoop::performWork(void*) + 34
    9   com.apple.CoreFoundation                0x000000010db488f1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    10  com.apple.CoreFoundation                0x000000010db3a062 __CFRunLoopDoSources0 + 242
    11  com.apple.CoreFoundation                0x000000010db397ef __CFRunLoopRun + 831
    12  com.apple.CoreFoundation                0x000000010db39275 CFRunLoopRunSpecific + 309
    13  com.apple.HIToolbox                     0x0000000115002f0d RunCurrentEventLoopInMode + 226
    14  com.apple.HIToolbox                     0x0000000115002cb7 ReceiveNextEventCommon + 479
    15  com.apple.HIToolbox                     0x0000000115002abc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    16  com.apple.AppKit                        0x0000000111a1128e _DPSNextEvent + 1434
    17  com.apple.AppKit                        0x0000000111a108db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    18  com.apple.AppKit                        0x0000000111a049cc -[NSApplication run] + 553
    19  com.apple.AppKit                        0x00000001119ef803 NSApplicationMain + 940
    20  com.apple.XPCService                    0x0000000117839c0f _xpc_main + 385
    21  libxpc.dylib                            0x000000010ee01b2e xpc_main + 399
    22  com.apple.WebKit.WebContent             0x000000010cf16ba0 0x10cf16000 + 2976
    23  libdyld.dylib                           0x000000010eae95fd start + 1
    Thread 1:
    0   libsystem_kernel.dylib                  0x000000010ec92e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x000000010eda6f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x000000010eda9fb9 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x000000010ec93662 kevent64 + 10
    1   libdispatch.dylib                       0x000000010eaaf43d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x000000010eaaf152 _dispatch_mgr_thread + 52
    Thread 3:
    0   libsystem_kernel.dylib                  0x000000010ec92e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x000000010eda6f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x000000010eda9fb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x000000010ec92e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x000000010eda6f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x000000010eda9fb9 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x000000010ec8ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x000000010ec8dd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x000000010db3a315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x000000010db39939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x000000010db39275 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x0000000111bb11ce _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x000000010eda5899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x000000010eda572a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x000000010eda9fc9 thread_start + 13
    Thread 6:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x000000010ec92716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x000000010eda7c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x000000010f9a9266 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore                0x000000010f9a8d85 JSC::BlockAllocator::blockFreeingThreadMain() + 117
    4   com.apple.JavaScriptCore                0x000000010f99e0af ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x000000010eda5899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x000000010eda572a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x000000010eda9fc9 thread_start + 13
    Thread 7:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x000000010ec92716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x000000010eda7c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x000000010f9a9887 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x000000010f9a9718 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x000000010f99e0af ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x000000010eda5899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x000000010eda572a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x000000010eda9fc9 thread_start + 13
    Thread 8:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x000000010ec92716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x000000010eda7c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x000000010f9a9887 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x000000010f9a9718 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x000000010f99e0af ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x000000010eda5899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x000000010eda572a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x000000010eda9fc9 thread_start + 13
    Thread 9:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x000000010ec92716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x000000010eda7c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x000000010f9a9887 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x000000010f9a9718 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x000000010f99e0af ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x000000010eda5899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x000000010eda572a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x000000010eda9fc9 thread_start + 13
    Thread 10:: WebCore: Scrolling
    0   libsystem_kernel.dylib                  0x000000010ec8ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x000000010ec8dd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x000000010db3a315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x000000010db39939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x000000010db39275 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x000000010dbee9d1 CFRunLoopRun + 97
    6   com.apple.WebCore                       0x0000000110157ab4 WebCore::ScrollingThread::initializeRunLoop() + 244
    7   com.apple.JavaScriptCore                0x000000010f99e0af ***::wtfThreadEntryPoint(void*) + 15
    8   libsystem_pthread.dylib                 0x000000010eda5899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x000000010eda572a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x000000010eda9fc9 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x00007fff63f0bdb0  rbx: 0x00007fd533606db0  rcx: 0x0000000000000000  rdx: 0x0000000000000000
      rdi: 0x00007fff63f0bf20  rsi: 0x0000000000000000  rbp: 0x00007fff52ce8060  rsp: 0x00007fff52ce8048
       r8: 0x00007fff63ef6b4c   r9: 0x0000000000000000  r10: 0x00007fff52ce7dd9  r11: 0x00007fff63f0bf20
      r12: 0x000000011ad65f30  r13: 0x000000011ad65f40  r14: 0x00007fff63f0bf20  r15: 0x000000011ad7bbd0
      rip: 0x00007fff63ed709d  rfl: 0x0000000000000246  cr2: 0x000000012dc53000
    Logical CPU:     2
    Error Code:      0x00000000
    Trap Number:     3
    Binary Images:
           0x10cf16000 -        0x10cf16ff4  com.apple.WebKit.WebContent (9537 - 9537.71) <AEC9C0B3-A6B5-30E4-A5EE-480DAF65203F> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/XPCServices/com. apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
           0x10cf1b000 -        0x10cf1bfff  WebProcessShim.dylib (7537.71) <023402A6-15F8-33C5-A734-560E0F234631> /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcessShim.dylib
           0x10cf20000 -        0x10d21ffff  com.apple.Foundation (6.9 - 1056) <D608EDFD-9634-3573-9B7E-081C7D085F7A> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
           0x10d463000 -        0x10d652ffc  com.apple.WebKit2 (9537 - 9537.71) <B8FFCE39-9DC6-304E-953A-0BAFDCD19D2F> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
           0x10d83d000 -        0x10d9eaf27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
           0x10da0c000 -        0x10da5efff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
           0x10dabe000 -        0x10dabfff7  libSystem.B.dylib (1197.1.1) <BFC0DC97-46C6-3BE0-9983-54A98734897A> /usr/lib/libSystem.B.dylib
           0x10dac9000 -        0x10dcaeff7  com.apple.CoreFoundation (6.9 - 855.11) <E22C6A1F-8996-349C-905E-96C3BBE07C2F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x10de22000 -        0x10de64ff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
           0x10de81000 -        0x10de82ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
           0x10de87000 -        0x10e03fff3  libicucore.A.dylib (511.25) <3ED7B656-416E-3071-AEC8-E85C90232F78> /usr/lib/libicucore.A.dylib
           0x10e0e9000 -        0x10e1d0ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
           0x10e209000 -        0x10e21aff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
           0x10e223000 -        0x10e393ff6  com.apple.CFNetwork (673.0.3 - 673.0.3) <42CFC3DB-35C8-3652-AF37-4BCC73D8BDEF> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
           0x10e49b000 -        0x10e4feff7  com.apple.SystemConfiguration (1.13 - 1.13) <F05F4149-981B-380B-8F50-51CE804BBB89> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
           0x10e539000 -        0x10e53afff  libquit.dylib (161) <12162287-B8C8-36D0-B000-ADC28731FC66> /usr/lib/libquit.dylib
           0x10e53f000 -        0x10e797ff1  com.apple.security (7.0 - 55471) <233831C5-C457-3AD5-AFE7-E3E2DE6929C9> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x10e8e3000 -        0x10e8e3fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
           0x10e8ee000 -        0x10e8effff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
           0x10e8fa000 -        0x10e964ff7  com.apple.framework.IOKit (2.0.1 - 907.1.13) <C1E95F5C-B79B-31BE-9F2A-1B25163C1F16> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
           0x10e998000 -        0x10e9b3ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
           0x10e9c0000 -        0x10e9e9ff7  libc++abi.dylib (48) <8C16158F-CBF8-3BD7-BEF4-022704B2A326> /usr/lib/libc++abi.dylib
           0x10e9f8000 -        0x10e9fcff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
           0x10ea06000 -        0x10ea10fff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
           0x10ea22000 -        0x10ea29fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
           0x10ea3a000 -        0x10ea41ff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
           0x10ea4c000 -        0x10ea9afff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
           0x10eaac000 -        0x10eac6fff  libdispatch.dylib (339.1.9) <46878A5B-4248-3057-962C-6D4A235EEF31> /usr/lib/system/libdispatch.dylib
           0x10eae6000 -        0x10eae9ff7  libdyld.dylib (239.3) <62F4D752-4089-31A8-8B73-B95A68893B3C> /usr/lib/system/libdyld.dylib
           0x10eaf6000 -        0x10eaf6ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
           0x10eb01000 -        0x10eb08ff7  liblaunch.dylib (842.1.4) <FCBF0A02-0B06-3F97-9248-5062A9DEB32C> /usr/lib/system/liblaunch.dylib
           0x10eb11000 -        0x10eb16fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
           0x10eb20000 -        0x10eb22ff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
           0x10eb2f000 -        0x10eb30ffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
           0x10eb3a000 -        0x10eb4bff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
           0x10eb57000 -        0x10eb58ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
           0x10eb63000 -        0x10ebecff7  libsystem_c.dylib (997.1.1) <61833FAA-7281-3FF9-937F-686B6F20427C> /usr/lib/system/libsystem_c.dylib
           0x10ec1c000 -        0x10ec1eff3  libsystem_configuration.dylib (596.12) <C4F633D9-94C8-35D9-BB2D-84C5122533C7> /usr/lib/system/libsystem_configuration.dylib
           0x10ec2b000 -        0x10ec33fff  libsystem_dnssd.dylib (522.1.11) <270DCF6C-502D-389A-AA9F-DE4624A36FF7> /usr/lib/system/libsystem_dnssd.dylib
           0x10ec3d000 -        0x10ec64ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
           0x10ec7d000 -        0x10ec99ff7  libsystem_kernel.dylib (2422.1.72) <D14913DB-47F1-3591-8DAF-D4B4EF5F8818> /usr/lib/system/libsystem_kernel.dylib
           0x10ecc1000 -        0x10ecf0fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
           0x10ed00000 -        0x10ed1bff7  libsystem_malloc.dylib (23.1.10) <FFE5C472-B23A-318A-85BF-77CDE61900D1> /usr/lib/system/libsystem_malloc.dylib
           0x10ed28000 -        0x10ed4fff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
           0x10ed6f000 -        0x10ed78ff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
           0x10ed86000 -        0x10ed8cff7  libsystem_platform.dylib (24.1.4) <331BA4A5-55CE-3B95-99EB-44E0C89D7FB8> /usr/lib/system/libsystem_platform.dylib
           0x10eda4000 -        0x10edabff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
           0x10edbb000 -        0x10edbcff7  libsystem_sandbox.dylib (278.10) <A47E7E11-3C76-318E-B67D-98972B86F094> /usr/lib/system/libsystem_sandbox.dylib
           0x10edc2000 -        0x10edc6fff  libsystem_stats.dylib (93.1.26) <B9E26A9E-FBBC-3938-B8B7-6CF7CA8C99AD> /usr/lib/system/libsystem_stats.dylib
           0x10edd3000 -        0x10edd4fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
           0x10ede1000 -        0x10ede6ff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
           0x10edee000 -        0x10ee12fff  libxpc.dylib (300.1.17) <4554927A-9467-365C-91F1-5A116989DD7F> /usr/lib/system/libxpc.dylib
           0x10ee30000 -        0x10ee40fff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
           0x10ee4b000 -        0x10ef35fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
           0x10ef51000 -        0x10ef5eff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
           0x10ef6a000 -        0x10ef6efff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
           0x10ef74000 -        0x10ef74ffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
           0x10ef7f000 -        0x10ef8cff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
           0x10ef96000 -        0x10f280fff  com.apple.CoreServices.CarbonCore (1077.14 - 1077.14) <B00BEB34-A9F5-381F-99FD-11E405768A9A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
           0x10f302000 -        0x10f391fff  com.apple.Metadata (10.7.0 - 800.12.2) <A9F5D471-8732-3F95-A4A2-33864B92A181> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
           0x10f3fc000 -        0x10f473fff  com.apple.CoreServices.OSServices (600.4 - 600.4) <36B2B009-C35E-3F21-824E-E0D00E7808C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
           0x10f51a000 -        0x10f587fff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
           0x10f5cd000 -        0x10f628ffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
           0x10f65d000 -        0x10f726fff  com.apple.LaunchServices (572.23 - 572.23) <8D955BDE-2C4C-3DD4-B4D7-2D916174FE1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
           0x10f7a2000 -        0x10f7cbfff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
           0x10f7f0000 -        0x10f7f5fff  com.apple.DiskArbitration (2.6 - 2.6) <F8A47F61-83D1-3F92-B7A8-A169E0D187C0> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
           0x10f804000 -        0x10f80bfff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
           0x10f817000 -        0x10f822fff  libkxld.dylib (2422.1.72) <C88EF3E6-B31F-3E12-BE9B-562D912BA733> /usr/lib/system/libkxld.dylib
           0x10f82c000 -        0x10f837ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
           0x10f847000 -        0x10f8abff3  com.apple.datadetectorscore (5.0 - 354.0) <9ACF24B8-3268-3134-A5BC-D72C9371A195> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
           0x10f8f1000 -        0x10f8f4fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
           0x10f902000 -        0x10f919fff  com.apple.CFOpenDirectory (10.9 - 173.1.1) <3FB4D5FE-860B-3BDE-BAE2-3531D919EF10> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
           0x10f937000 -        0x10f941ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
           0x10f94e000 -        0x10f976ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
           0x10f987000 -        0x10f987fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
           0x10f98c000 -        0x10f98cfff  com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
           0x10f991000 -        0x10f991fff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
           0x10f995000 -        0x10fd0bffa  com.apple.JavaScriptCore (9537 - 9537.73.10) <4A4AE781-6F76-3412-B0E5-67E0BAEE22A2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
           0x10fe0a000 -        0x10ffa6ff7  com.apple.QuartzCore (1.8 - 332.0) <994D1E0A-64B6-398C-B9A2-C362F02DE943> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
           0x110080000 -        0x110ecdffb  com.apple.WebCore (9537 - 9537.73.13) <A468175D-078A-3377-A883-0BC5C8A4339F> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
           0x111840000 -        0x111891ff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <BF4C2FE3-8BC8-30D1-8347-2A7221268794> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
           0x1118bc000 -        0x11197eff1  com.apple.CoreText (352.0 - 367.15) <E5C70FC8-C861-39B8-A491-595E5B55CFC8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
           0x1119ed000 -        0x112561ff7  com.apple.AppKit (6.9 - 1265) <0E9FC8BF-DA3C-34C5-91CC-12BC922B5F01> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
           0x112ced000 -        0x11360905f  com.apple.CoreGraphics (1.600.0 - 599.7) <7D0FD5A7-A061-39BA-8E00-723825D2C4DD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
           0x113735000 -        0x11383afff  com.apple.ImageIO.framework (3.3.0 - 1038) <2C058216-C6D8-3380-A7EA-92A3F04520C1> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
           0x1138a9000 -        0x113918ff1  com.apple.ApplicationServices.ATS (360 - 363.1) <88976B22-A9B8-3E7B-9AE6-0B8E09A968FC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
           0x113944000 -        0x1139cdfff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
           0x113a15000 -        0x113a5aff6  com.apple.HIServices (1.22 - 466) <21807AF8-3BC7-32BB-AB96-7C35CB59D7F6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
           0x113a8d000 -        0x113a9cff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
           0x113aaf000 -        0x113afcff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
           0x113b2d000 -        0x113b66ff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
           0x113b83000 -        0x113b8cfff  com.apple.speech.synthesis.framework (4.6.2 - 4.6.2) <0AAE45F0-FC6E-36B6-A6A7-73E6950A74AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
           0x113b9f000 -        0x113ba2ffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
           0x113bab000 -        0x113babfff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
           0x113bb3000 -        0x113e87fc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
           0x113ecd000 -        0x113ecdfff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
           0x113ed6000 -        0x113fa1fff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
           0x113fb1000 -        0x114061ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
           0x114074000 -        0x114455ffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
           0x1144bc000 -        0x11462aff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
           0x114654000 -        0x114743fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
           0x1147bd000 -        0x114804fff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
           0x11482d000 -        0x114851ff7  libJPEG.dylib (1038) <86F349A8-882D-3326-A0B0-63257F68B1A7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
           0x114860000 -        0x1148b9fff  libTIFF.dylib (1038) <5CBFE0C2-9DD8-340B-BA63-A94CE2E476F2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
           0x1148ce000 -        0x1148e9ff7  libPng.dylib (1038) <EF781AF8-C2E6-3179-B8A1-A584783070F1> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
           0x1148f9000 -        0x1148fdff7  libGIF.dylib (1038) <C29B4323-1B9E-36B9-96C2-7CEDBAA124F0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
           0x114906000 -        0x1149f4fff  libJP2.dylib (1038) <6C8179F5-8063-3ED6-A7C2-D5603DECDF28> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
           0x114a21000 -        0x114a23fff  libRadiance.dylib (1038) <55F99274-5074-3C73-BAC5-AF234E71CF38> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
           0x114a2d000 -        0x114a74ff7  libcups.2.dylib (372) <348EED62-6C20-35D6-8EFB-E80943965100> /usr/lib/libcups.2.dylib
           0x114a8e000 -        0x114aa7ff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
           0x114ac2000 -        0x114af1ff5  com.apple.GSS (4.0 - 2.0) <ED98D992-CC14-39F3-9ABC-8D7F986487CC> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
           0x114b17000 -        0x114b33fff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
           0x114b3e000 -        0x114c2fff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
           0x114c43000 -        0x114ca7ff9  com.apple.Heimdal (4.0 - 2.0) <E7D20A4D-4674-37E1-A949-635FFF7C439A> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
           0x114cd7000 -        0x114cd8fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
           0x114cdf000 -        0x114ce3ff7  libheimdal-asn1.dylib (323.12) <063A01C2-E547-39D9-BB42-4CC8E64ADE70> /usr/lib/libheimdal-asn1.dylib
           0x114cea000 -        0x114cf6ff7  com.apple.OpenDirectory (10.9 - 173.1.1) <6B78BD7B-5622-38E6-8FC6-86A117E3ACCA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
           0x114d0c000 -        0x114d15fff  com.apple.CommonAuth (4.0 - 2.0) <1D263127-5F27-3128-996D-7397660D0C6E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
           0x114d1f000 -        0x114d92ffb  com.apple.securityfoundation (6.0 - 55122) <119D1C53-B292-3378-AEE1-A3B1FB02F43F> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
           0x114dd3000 -        0x114f26ff7  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <A0B7B007-9BD8-30E2-B644-47856DA29FEE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
           0x114fbc000 -        0x114fc0fff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
           0x114fc8000 -        0x114fcbfff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
           0x114fd4000 -        0x11527effd  com.apple.HIToolbox (2.1 - 696) <1CFFF37B-C392-3088-B0A4-C08C55B2AF8F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
           0x1153da000 -        0x1153ecfff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
           0x11540c000 -        0x115498ff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
           0x1154ce000 -        0x1154e6ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
           0x1154fb000 -        0x1154fcff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
           0x115506000 -        0x115508ff7  com.apple.securityhi (9.0 - 55005) <405E2BC6-2B6F-3B6B-B48E-2FD39214F052> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
           0x115511000 -        0x115519ff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
           0x11552a000 -        0x11560efff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
           0x1156d7000 -        0x115807ff7  com.apple.desktopservices (1.8 - 1.8) <09DC9BB8-432F-3C7A-BB08-956A2DDFC2DE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
           0x115888000 -        0x11589aff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <D5E7416D-45AB-3690-86C6-CC4B5FCEA2D2> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
           0x1158ae000 -        0x1158c6ff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
           0x1158d7000 -        0x115911ff3  com.apple.bom (12.0 - 192) <989690DB-B9CC-3DB5-89AE-B5D33EDC474E> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
           0x115928000 -        0x115936fff  com.apple.opengl (9.0.83 - 9.0.83) <AF467644-7B1D-327A-AC47-CECFCAF61990> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x115941000 -        0x115966ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
           0x115986000 -        0x115c54ff4  com.apple.CoreImage (9.0.54) <74BB8685-69A9-3A45-8DED-EA26BD39D710> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
           0x115d4b000 -        0x115d9efff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
           0x115dc9000 -        0x115e08fff  libGLU.dylib (9.0.83) <8B457205-513B-3477-AE9C-3AD979D5FE11> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
           0x115e1e000 -        0x115e26ffc  libGFXShared.dylib (9.0.83) <11A621C3-37A0-39CE-A69B-8739021BD79D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
           0x115e31000 -        0x115e3cfff  libGL.dylib (9.0.83) <984A960A-C159-3AE5-8B40-E2B451F6C712> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
           0x115e53000 -        0x115e91ff7  libGLImage.dylib (9.0.83) <C08048A7-03CC-3E40-BCDC-7791D87AC8E4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
           0x115e9c000 -        0x115e9efff  libCVMSPluginSupport.dylib (9.0.83) <E2AED858-6EEB-36C6-8C06-C3CF649A3CD5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
           0x115ea4000 -        0x115ea7fff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
           0x115eae000 -        0x1162e1ffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
           0x1164f9000 -        0x116503ff7  com.apple.CrashReporterSupport (10.9 - 538) <B487466B-3AA1-3854-A808-A61F049FA794> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
           0x116511000 -        0x11655ffff  com.apple.opencl (2.3.57 - 2.3.57) <FC03A80D-543A-3448-83FF-D399C3A240D9> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
           0x11657d000 -        0x116589ff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
           0x116594000 -        0x1165adff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
           0x1165c7000 -        0x1165d4fff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
           0x1165eb000 -        0x11661bfff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
           0x116645000 -        0x11666aff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
           0x116676000 -        0x1168befff  com.apple.CoreData (107 - 481) <E5AFBA07-F73E-3B3F-9099-F51224EE8EAD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
           0x1169e6000 -        0x116a1eff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
           0x116a5d000 -        0x116a5dffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <6E89F3CB-CC41-3728-9F9A-FDFC151E8261> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
           0x116a66000 -        0x116aa7fff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
           0x1172fb000 -        0x1173beff7  com.apple.backup.framework (1.5.1 - 1.5.1) <FC4E949B-B41A-3F21-8AF8-AEDB13146FEA> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
           0x11744b000 -        0x1174cbfff  com.apple.CoreSymbolication (3.0 - 141) <B018335C-698B-3F87-AF1C-6115C4FA8954> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
           0x1174e9000 -        0x117541ff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
           0x11758d000 -        0x1175bcfff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
           0x117838000 -        0x11783eff7  com.apple.XPCService (2.0 - 1) <2CE632D7-FE57-36CF-91D4-C57D0F2E0BFE> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
           0x117848000 -        0x117852fff  com.apple.AppSandbox (3.0 - 1) <55717299-8164-3D79-918F-BD64706735CF> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
           0x11785d000 -        0x117887ff7  libsandbox.1.dylib (278.10) <B4183FA8-F7E2-3301-8BF9-0EEFB793A5D5> /usr/lib/libsandbox.1.dylib
           0x117890000 -        0x1178a3ff7  com.apple.AppContainer (3.0 - 1) <A90C058D-46E8-3BAB-AF17-AF9C7C273069> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
           0x1178b8000 -        0x1178baff7  com.apple.SecCodeWrapper (3.0 - 1) <F5107AD0-20CD-328C-8B2E-74CB6F3169F6> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
           0x1178c0000 -        0x1178c8fff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
           0x1198f9000 -        0x119925fff  com.apple.CoreServicesInternal (184.8 - 184.8) <707E05AE-DDA8-36FD-B0FF-7F15A061B46A> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesIn ternal
           0x11998f000 -        0x11999cff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Librarian
           0x11ae7a000 -        0x11b37affb  com.apple.Safari.framework (9537 - 9537.71) <C27DBF3C-7BE7-3422-9081-DE09461F9B62> /System/Library/PrivateFrameworks/Safari.framework/Safari
           0x11b761000 -        0x11b77fff7  com.apple.Accounts (113 - 113) <FEB37642-C973-3CD2-B279-142492266A16> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
           0x11b79d000 -        0x11b7baff7  com.apple.framework.Apple80211 (9.0 - 900.47) <C897AFE6-DD73-387D-816A-67252A564207> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
           0x11b7c6000 -        0x11b824ff7  com.apple.corelocation (1486.17 - 1486.24) <9FBB29F0-E000-3190-A96C-9EAA5CCCA2A0> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
           0x11b861000 -        0x11b892ff7  libtidy.A.dylib (15.12) <BF757E3C-733A-3B6B-809A-A3949D46466E> /usr/lib/libtidy.A.dylib
           0x11b8a2000 -        0x11b8d0ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
           0x11b8fe000 -        0x11ba34ffa  com.apple.WebKit (9537 - 9537.73.11) <5F583526-8D71-30AD-B97C-56EC51E94E85> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
           0x11bb28000 -        0x11bb2afff  com.apple.OAuth (25 - 25) <22D42C60-CA67-31D7-A4A4-AFD8F35408D7> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
           0x11bb30000 -        0x11bb8ffff  com.apple.framework.CoreWLAN (4.0 - 400.45.1) <775F9444-8059-30A2-8058-7F7ACD68CCF1> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
           0x11bbcd000 -        0x11bbf7ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
           0x11bc05000 -        0x11bc6bfff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
           0x11bcca000 -        0x11be85ff6  com.apple.GeoServices (1.0 - 702.14.9) <A3A4D6AC-72B2-39F3-AAE0-9AF3B88C5C8E> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
           0x11bfd9000 -        0x11bfe3ff7  com.apple.ProtocolBuffer (1 - 182.1.3) <82E68598-A8AA-3AF1-843E-2A64F19472D4> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
           0x11c073000 -        0x11c075fff  com.apple.Mangrove (1.0 - 1) <72F5CBC7-4E78-374E-98EA-C3700136904E> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
           0x11c650000 -        0x11c658ff3  libCGCMS.A.dylib (599.7) <92AA4E85-7633-36E2-BAD0-7B1A2E48E75C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
           0x11c660000 -        0x11c6fbff7  com.apple.PDFKit (2.9 - 2.9) <AD968A31-6567-30A7-A699-154C88DB56D0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/PDFKit
           0x11c76f000 -        0x11c7f7ff7  com.apple.CorePDF (4.0 - 4) <92D15ED1-D2E1-3ECB-93FF-42888219A99F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
           0x11d203000 -        0x11d22bffb  libRIP.A.dylib (599.7) <6F528EE3-99F8-3871-BD60-1306495C27D5> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
           0x11d23b000 -        0x11d35dff1  com.apple.avfoundation (2.0 - 651.12) <03E595B7-A559-3D4D-90E9-BCA603E3A39E> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
           0x11d475000 -        0x11d48cffa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
           0x11d49e000 -        0x11d4e7fff  com.apple.CoreMedia (1.0 - 1273.29) <4ACD30BA-E9FE-3842-A8B7-E3BD63747867> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
           0x11d515000 -        0x11d82fff7  com.apple.MediaToolbox (1.0 - 1273.29) <6260E68B-7E50-3D49-8C0A-7145614C13D8> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
           0x11d8da000 -        0x11dd28fff  com.apple.VideoToolbox (1.0 - 1273.29) <6E38291D-7A81-3033-AFB9-61ABD38B6371> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
           0x11dd83000 -        0x11ddcfffe  com.apple.CoreMediaIO (401.0 - 4544) <44EBC0FE-DAD5-3711-96CB-05250F350A16> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
           0x11ddf7000 -        0x11de0dfff  com.apple.CoreMediaAuthoring (2.2 - 947) <B01FBACC-DDD5-30A8-BCCF-57CE24ABA329> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
           0x11de25000 -        0x11df51fff  com.apple.MediaControlSender (1.9 - 190.4) <F5E934E1-D004-3C84-815A-961319F8C522> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
           0x11df87000 -        0x11dfb6ff7  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <404369C0-ED9F-3010-8D2F-BC55285F7808> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
           0x11dfc1000 -        0x11dfc6ff7  com.apple.MediaAccessibility (1.0 - 43) <D309D83D-5FAE-37A4-85ED-FFBDA8B66B82> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
           0x11dfd1000 -        0x11e541fff  com.apple.CoreAUC (6.22.08 - 6.22.08) <F306D552-2220-3160-88EA-C916193C5EFD> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
           0x11e550000 -        0x11e5b0ff2  com.apple.CoreUtils (1.9 - 190.4) <CBB5B4DC-2801-32B3-A31C-8811CCF99873> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
           0x11e5d7000 -        0x11e624fff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <D01B7D87-4BDC-3E48-A79B-951D05075F9D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff63ed6000 -     0x7fff63f09817  dyld (239.3) <D1DFCF3F-0B0C-332A-BCC0-87A851B570FF> /usr/lib/dyld
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 1
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 23652
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=180.0M resident=86.6M(48%) swapped_out_or_unallocated=93.4M(52%)
    Writable regions: Total=1.1G written=10.6M(1%) resident=13.3M(1%) swapped_out=0K(0%) unallocated=1.1G(99%)
    REGION TYPE                        VIRTUAL
    ===========                        =======
    CG image                              260K
    CG shared images                      140K
    Dispatch continuations               8192K
    JS JIT generated code                   8K
    JS JIT generated code (reserved)      1.0G        reserved VM address space (unallocated)
    JS VM register file (reserved)       4096K        reserved VM address space (unallocated)
    JS garbage collector                  256K
    Kernel Alloc Once                       8K
    MALLOC                               40.4M
    MALLOC (admin)                         32K
    Memory Tag 242                         12K
    Memory Tag 251                         40K
    SQLite page cache                     256K
    STACK GUARD                          56.0M
    Stack                                12.6M
    VM_ALLOCATE                          16.4M
    WebKit Malloc                        1232K
    __DATA                               24.6M
    __IMAGE                               528K
    __LINKEDIT                           44.6M
    __TEXT                              135.5M
    __UNICODE                             544K
    mapped file                          34.3M
    shared memory                           4K
    ===========                        =======
    TOTAL                                 1.4G
    TOTAL, minus reserved VM space      375.7M
    Model: MacBookPro9,2, BootROM MBP91.00D3.B08, 2 processors, Intel Core i7, 2.9 GHz, 8 GB, SMC 2.2f41
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In, 1024 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333531533643465238432D50422020
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333531533643465238432D50422020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xF5), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.0f6 12982, 3 services, 23 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: APPLE HDD HTS547575A9E384, 750,16 GB
    Serial ATA Device: MATSHITADVD-R   UJ-8A8
    USB Device: Hub
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: Hub
    USB Device: Hub
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: IR Receiver
    Thunderbolt Bus: MacBook Pro, Apple Inc., 25.1

    Hi
    The crash occurs because either multiple JavaPlugins are installed on your HD, or you need to reinstall the latest Java Update.
    Go to your Finder: Your User Account>Library>Internet Plug Ins folder. If you see JavaPluginCocoa there, move it to the trash, then restart Safari.
    If there is no such plugin in that folder, reinstall the Java update using this download. In the event Safari is stable only for a short time preventing you from downloading the file again, first, go to Safari Preferences>Security and uncheck the Java option. Then try the download. After the install, restart Safari, go back to the Security Panel and select Java again.

  • PowerShell script : Directory object not found error in Get-ADGroupMember

    I am new in powershell scripting. I am writing a script to add users in different AD Groups. while doing so I do the following:
    Check if the user already exist in the group:
    $mbr_exist = Get-ADGroupMember $grpname | Where-Object {$_.SamAccountName -eq $sam}
    If user does not exist then add the user to the group.
    When I manually run the script its runs flawless, without any errors. But when I schedule the script to run it gives an error as follows:
    3/30/2015 8:32:15 AM Directory object not foundAt + $mbr_exist = Get-ADGroupMember $grpname | Where-Object {$_.SamAc ... + ~~~~~~~~~~~~~~~~~~~~~~~~~~ Error at Line:$mbr_exist = Get-ADGroupMember
    $grpname | Where-Object {$_.SamAccountName -eq $sam}
    The strange thing is the user for which it throws the error is present in the group.I am not sure why this error is occurring when scheduled. Can any one please help? All the suggestions will be appreciated
    Note: (The script is scheduled using Windows Task Scheduler)
    try
    # # Initialize the variables we will use
    $status = 'false'
    $drivename = "H:"
    $sysdate = Get-Date -UFormat "%m_%d_%Y"
    $foldername = $drivename + "\Script_Result\PowershellData"+ $sysdate
    $backup_folder = "$foldername\AD_Groups_Backup"
    $updatedGroup = "$foldername\Updated_AD_Groups_LogFiles"
    $LogFilePath = "$foldername\Log_Update_ADGroups"+$sysdate+".log"
    # # Initialize the arrays we will use
    $GroupArray = @()
    # # maintain log of program startup
    $logdate = get-date
    $logdate.ToString() + "`tStarted script to Update AD user Groups..." | Out-File -FilePath $LogFilePath
    # # Create a sub folder to store the backup files
    $fileexist = Test-Path $backup_folder -PathType Container
    if($fileexist -ne 'False')
    New-Item -ItemType Directory $backup_folder
    # # Create a sub folder to store Updated AD group Log files
    $fileexist = Test-Path $updatedGroup -PathType Container
    if($fileexist -ne 'False')
    New-Item -ItemType Directory $updatedGroup
    # # Take back up of the AD groups data
    Get-ADGroupMember -Identity "Group1" | Export-csv "$backup_folder\Group1_BackUP$sysdate.csv"
    Get-ADGroupMember -Identity "Group2" | Export-csv "$backup_folder\Group1_BackUP$sysdate.csv"
    Get-ADGroupMember -Identity "Group3" | Export-csv "$backup_folder\Group1_BackUP$sysdate.csv"
    Get-ADGroupMember -Identity "Group4" | Export-csv "$backup_folder\Group1_BackUP$sysdate.csv"
    (an so on..... 11 such groups )
    # # Fetch AD Users data
    $ADusers = Get-ADUser -filter {(EmployeeNumber -gt 1) -and (EmployeeNumber -ne "N/A") -and (Enabled -eq $true)} -Properties * | Sort-Object -Property EmployeeNumber
    $ADusers.Count
    foreach($u in $ADusers)
    $sam = $u.SamAccountName
    $empnum = $u.EmployeeNumber
    $mgr = $u.mgr
    $fsal = $u.'fsalary-Hourly'
    $comp = $u.Company
    $ofc = $u.Office
    Write-Host "$sam : $empnum : $mgr :$fsal : $comp : $ofc" -ForegroundColor Yellow
    $GroupArray = @()
    # # Check if the user fits in any of the 11 scenarios
    if($comp -eq "US")
    # scenario 7
    write-host "7. Add to US Employees"
    $GroupArray += "US Employees"
    if($mgr -eq "Y")
    Write-Host "1. ADD to US MAnagers"
    $group = "US Managers"
    $GroupArray += $group
    if(($fsal -eq "Hourly") -and ($ofc -ne "Canton"))
    Write-Host "3. Add to US Hourly (excluding Canton)"
    $group = "US Hourly (excluding Canton)"
    $GroupArray += $group
    if(($fsal -eq "Hourly") -and ($ofc -eq "Canton"))
    write-host "4. Add to US Canton Hourly"
    $group = "US Canton Hourly"
    $GroupArray += $group
    if(($fsal -eq "Salaried") -and ($ofc -eq "Corporate" -or $ofc -eq "Landis Lakes 1" -or $ofc -eq "Landis Lakes 2"))
    Write-Host "5. Add to US Salaried Corporate"
    $group = "US Salaried Corporate"
    $GroupArray += $group
    if(($fsal -eq "Salaried") -and ($ofc -ne "Corporate" -and $ofc -ne "Landis Lakes 1" -and $ofc -ne "Landis Lakes 2"))
    Write-Host "6. Add to US Salaried Plant"
    $group = "US Salaried Plant"
    $GroupArray +=$group
    elseif($comp -eq "canada")
    # scenario 9
    write-host "9. Canada Employees"
    $GroupArray += "Canada Employees"
    if($mgr -eq "Y")
    Write-Host "2. Add to Canada Managers"
    $group = "Canada Managers"
    $GroupArray += $group
    if($fsal -eq "Hourly")
    Write-Host "10. Add to Canada Hourly"
    $group = "Canada Hourly"
    $GroupArray += $group
    if($fsal -eq "Salaried")
    Write-Host "11. Add to Canada Salaried Plant"
    $group = "Canada Salaried Plant"
    $GroupArray += $group
    elseif($ofc -eq "Corporate" -or $ofc -eq "Landis Lakes 1" -or $ofc -eq "Landis Lakes 2")
    Write-Host "8. Add to Corporate Employees"
    $GroupArray += "Corporate Employees"
    write-host "Final Group List" -ForegroundColor Green
    $grplen = $GroupArray.Length
    #$GroupArray
    $grplen
    for($i= 0; $i -lt $grplen; $i++)
    $grpname = $GroupArray[$i]
    write-host "$sam will be added to Group : $grpname" -ForegroundColor Magenta
    # # Check if the user is already present in the Group
    $mbr_exist = Get-ADGroupMember $grpname | Where-Object {$_.SamAccountName -eq $sam}
    if($mbr_exist -eq $null)
    # #Add user to US Managers group
    Add-ADGroupMember -Identity $grpname -Members $sam
    Write-Host "1. User $sam is added to $grpname group" -ForegroundColor Green
    # # documenting the user list that are added to this group
    $grpmbr = New-Object PSObject
    $grpmbr | Add-Member -MemberType NoteProperty -Name "EmployeeNumber" -Value $empnum
    $grpmbr | Add-Member -MemberType NoteProperty -Name "SamAccountName" -Value $sam
    $grpmbr | Add-Member -MemberType NoteProperty -Name "Name" -Value $u.Name
    $grpmbr | Add-Member -MemberType NoteProperty -Name "DistinguishedName" -Value $u.DistinguishedName
    $grpmbr | Add-Member -MemberType NoteProperty -Name "mgr" -Value $mgr
    $grpmbr | Add-Member -MemberType NoteProperty -Name "Company" -Value $comp
    $grpmbr | Add-Member -MemberType NoteProperty -Name "Salary/Hourly" -Value $fsal
    $grpmbr | Add-Member -MemberType NoteProperty -Name "Office" -Value $ofc
    $grpmbr | Add-Member -MemberType NoteProperty -Name "ADGroup" -Value $grpname
    $grpmbr | Export-Csv "$updatedGroup\ADUsers_To_Group($grpname)_$sysdate.csv" -Append -NoTypeInformation
    else
    Write-Host "Member $sam already exist in $grpname group" -ForegroundColor Red
    $logdate = get-date
    $logdate.ToString() + "`tCompleted script to Update Update AD Groups..." | Out-File -FilePath $LogFilePath -Append
    $status = 'true'
    return $status
    catch
    $err_lineno = $error[0].InvocationInfo.ScriptLineNumber
    $err_line = $error[0].InvocationInfo.Line
    $ExceptionMessage = $_.Exception.Message
    #$ExceptionMessage
    $error_info = $error[0].ToString() + $error[0].InvocationInfo.PositionMessage
    Write-Host "$error_info " -ForegroundColor Red
    $FailedItem = $_.Exception.ItemName
    if($ExceptionMessage)
    $logdate.ToString() + "`t $error_info " | out-file "$foldername\ErrorLog_Update_AD_Groups$sysdate.log" -append
    "Line Number: $err_lineno . `nError at Line: $err_line" | out-file "$foldername\ErrorLog_Update_AD_Groups$sysdate.log" -append
    #Invoke-Item "C:\ErrorLog.log"
    $status = 'false'
    return $status

    Hi mdkelly, Sorry for such a late reply (due to credential issues).
    I am using Windows task scheduler to schedule the task. I am given the administrator access to the server (Windows Server 2012). So I think I set to run the script under system account.
    My apologies for asking this, am I missing something while scheduling the script through task scheduler?  how to check if the scheduled task is running under who's credentials? How to pass my (admin) credentials, so that the script execution won't face
    a problem? Any suggestion on the above questions will be helpful. (I tried to search on net for the questions but didn't get any conclusive answers)  
    Thanks in advance.

  • "Error -2147352573 occured at Member not found" when trying to open an excel template

    I'm trying to open an excel document as a template using the report generation tools but coming up with this error.  I've traced the error to NI_ReportGenerationToolkit.lvlib:Excel_Open_Workbook.vi but have to idea why it's happening.  The document seems to be fine as I can open and edit it in Excel.  Has anyone else seen this?  I'm using Labview 8.6 and Excel 2000.  I've attached an image of the error and it's source.  Thanks.
    Attachments:
    Excel open error.doc ‏558 KB

    Hi Mike,
    Thanks for pointing out the compatibility issue. I got the error with version 1.1.3 and therefore upgraded to 1.1.4 - after taking a glance at the readme document. I guess that I was mistaking the supported OS version ("Windows Vista/XP/2000") with the supported version of MS Office ("2007/2003/XP").
    I originally received the error when running an executable on a Office 2000 machine. The executable was built on a Office 2003 machine since I have previously been able to build on Office 2003 and run on 2000. I'm not sure what was different with this executable. Anyway, after installing the LV development system on the Office 2000 machine, the issue turned out to be that some ActiveX methods had been disconnected. All I had to do was re-point the Invoke Nodes to the appropriate ActiveX methods.
    Please note that my application in this case is very simple and therefore only exposes a small part of the Office 2000 ActiveX API. I'm sure that I would run into a non-compatibility wall if I were to implement more Office 2000 functions with RGT 1.1.4.
    Message Edited by Philip Courtois on 06-18-2009 01:26 PM
    - Philip Courtois, Thinkbot Solutions

  • Property not found (member) on a sprite

    Hey, I have the following script on a sprite:
    property pMyMemberCount, pMyMember, MySpriteNum
    on beginSprite me
      MySpriteNum = me.spriteNum
      pMyMemberCount = 1
    end
    end
    on exitframe me
      pMyMemberCount = (pMyMemberCount mod 2) + 1
      pMyMember = "GravPush"&pMyMemberCount
      MySpriteNum.member = member(pMyMember)
    end
    Which is meant to change the member of a sprite between 2 images in the cast which I've named "GravPush1" and "GravPush2".
    Whenever I go to run the movie I get an error:
    Script Error: Property not found
    MySpriteNum.member = member(pMyMember)
    #member
    Does anyone know how do I fix this? Thanks

    I think you want that last line to be:
    sprite(MySpriteNum).member = member(pMyMember)

  • Field Text Property Not Found

    I have a Director MX 2004 based training course that is
    periodically getting the following error:
    property not found: #text
    This training program was developed in Director 6.5 and
    updated last year to MX 2004. The training program had been running
    without error for six years prior to the update. I didn't update
    the script that is causing the error until after receiving the
    error reports.
    After getting the error report I was able to reproduce the
    error while running in MX 2004 and the error said:
    Script error: Property not found
    set the text of member "IN" = tempIN & sp &
    pretempIN
    #text
    I checked the debugger and the local variables were all valid
    and nothing seem out of place. The field cast member "IN" exists
    and the member's sprite is static in the score (i.e., it's not
    being dynamically created).
    Since I couldn't figure out what the problem was I updated
    the field update scripts to the new syntax:
    member("INText", "Internal").text = tempIN & sp &
    pretempIN
    I also changed the name of the cast member thinking that the
    name "IN" may be causing the problem. There are no other cast
    members of the same name. Unfortunately, I'm still getting the same
    error. There are other field member sprites that are getting
    updated successfully before this line of code but for some reason
    this particular field member sprite is causing the error, even
    after changing the name of the member. I've since moved my text
    formatting script to the frame script in the score where the field
    members are located and tried preloading the member but neither of
    those changes helped.
    This error is very sporadic and I've only been able to
    reproduce it few times on my local machine, and not since I updated
    the script syntax and the field name, but my client is still
    encountering the error. I checked that my client's program file
    installation is up-to-date and they're running the newest
    executable.
    Any ideas of what might be causing the problem? I'm
    stumped...
    Mark

    quote:
    You seem to be using #field member and #text member
    interchangably. They're
    not the same type of member and they have different
    properties.
    Actually, I'm not. It's a field member. The member's name
    "INText" probably led you to believe it's a text member. I changed
    the member's name from "IN" to "INText" as I thought perhaps the
    "IN" may be causing the problem. The member has always been a field
    member. I'm not formatting the field or anything like that, I'm
    only replacing the field contents. I don't use Director much
    anymore, other than this project, but having used both 7.5 and MX,
    I assumed that I could access the text property of a field using
    the member("myField", "castName").text syntax as per the docs.
    As for the concatenation, the variables are all strings so it
    shouldn't really matter. The real problem is that the field
    member's text property can't be found, not what I'm putting into
    it. And the fact that it only happens occasionally is what I can't
    figure out. Since I encountered the error myself inside of Director
    and was able to run the debugger I was able to see all of the
    variables in the debugger and check for the field member and its
    properties in the Message window and everything looked okay.
    quote:
    To double check the member coflickt issue (director always
    operates on the first occurance of a member name
    It's definitely the only member using the name "INText",
    plus, I checked all cast libs and it's a unique name.
    When I originally converted the movie I do recall that I had
    another cast member named "IN", the original name of the field
    member, when I converted the movie. I can't remember the type of
    member it was but I'm pretty sure it wasn't a field. Perhaps the
    movie still has some kind of reference to that not field member and
    may point to it occasionally, even though I've since renamed the
    original field cast member to "INText".
    Mark

  • Script Error : Handler Not Definied

    Hi Gurus,
    I try to play a Lingo Script with Director MX 2004 but i got
    this message: Script Error : Handler Not Definied
    The Debug stops at this line in my code: dosRegister
    "70BE7B1-13977F4"
    Is anything missing from my Xtras folder?
    I have DirectOS though.
    Any idea ??
    Thx

    I suspect you have a cast member that uses one of the three
    names in the
    list and it is not a check box. It's probably before the
    actual checkbox
    member in the cast so it's finding it first.
    Craig Wollman
    Lingo Specialist
    Word of Mouth Productions
    212-928-9581
    www.wordofmouthpros.com
    "ajrobson" <[email protected]> wrote in
    message
    news:etn9j1$op2$[email protected]..
    >I have a script that get a list of choosen check boxes,
    it was working fine
    >but
    > now when i press the button that calls the script i get
    a error saying
    > "script
    > error property not found" then it lists the line i have
    put a * next to
    > and
    > says #hilite
    >
    > This is the top part of that script and to my knowlegde
    i have not chnaged
    > any
    > of it and it worked before but now it does not, i also
    use a script almost
    > identical to this but use it for radiobuttons instead
    and the line is the
    > same
    > in that and that script works, can anybody tell me what
    as gone wrong?
    >
    >
    >
    > global err
    >
    > on CheckBoxState -- name of custom handler
    > TickedBoxes = [] -- a empty list will be filled where
    ever a checkbox is
    > ticked
    > CheckBoxNames = ["Dr no", "From russia with
    love","Casino royale" ]
    > repeat with i = 1 to 3 -- repeat for each checkbox
    > CurrentCheckbox = CheckBoxNames
    > ** if the hilite of member(CurrentCheckbox) then -- if
    currentcheckbox
    > hilite
    > is true (checked)...
    > append(TickedBoxes,CurrentCheckbox )
    > end if
    > end repeat
    > return TickedBoxes
    > end
    >

  • Property not found

    Hello how are you:
    I Make a text input and name it “textdisplay” and
    assign the following lingo to it:
    on mouseEnter
    member(“textdisplay”).fontsize=28
    end mouseEnter
    on mouseLeave
    member(“textdisplay”).fontsize=36
    end mouseLeave
    It send me back this error:
    Script Error
    roperty not found
    Member(“textdisplay”).fonsize=28
    #fontSize
    Thank you very much for your attention

    Is it a #text member, or a Flash Component?

  • Outlook Sync Problem: Member Not Fo

    Anyone experience any problems when trying to synch Outlook 2003 with their ZM? I start the process, select Contacts, Tasks, and Calendar. After selecting the Contacts Folder for synch on the next page, I get a message from Outlook stating that another program is attempting to access. I "allow" the access, and then a sync appears to start. After hitting about 55% on Contacts, I get a message that states MEMBER NOT FOUND, and then the sync fails. Anyone have this problem? Could it be because I'm running in Cached Exchange Mode on my Outlook client?
    HELP!

    Glad to hear it

  • Outlook synchronisation error "Member not fou

    I am trying to synchronise a MS Outlook 2000 (Not Express) calendar with my brand new Zen Micro.
    I have managed to synchronise Contacts and Tasks, and I initially had problems with
    the Calendar due to conflicts within my Outlook calendar. These have been resolved,
    so at least this proves the Creative software is able to connect to the Outlook Calendar.
    I am running Windows and Office 2000, with a Zen Micro.
    I can not find this error message in the Knowledge Base, and the support team have spent four weeks pushing me through the standard resets/upgrades etc etc, all to no avail.
    The message I get is "Member Not Found" in a message box titled "CTSync" whenever I kick of the actual synchronisation. Pretty obscure from an end user point of view....has anyone any ideas what-so-ever.... I am getting desperate!
    Thanks,
    Stewart

    StewDSims wrote:
    Hi,
    I have downloaded and updated all firmware/software etc, reset every last option, rebooted about a million times etc etc....all to no avail....aghhh!
    Which Firmware ?

Maybe you are looking for

  • Infocube data extract to a flat file

    Hi, I have a requirement to extract data from a infocube into a flat file and send it to a 3rd party. The data in infocube is coming from erp and another 3rd party system. This combined data in inficube needs to be extracted and send to another 3rd p

  • How can I change the reminder time of an all day event?

    How can I make an all day event remind me the evening before.  The only reminder options are 9:00 the day of (which is too late) or 9:00 the day before (which gives you a whole day to forget about it).  Why can I not select when I want a reminder?  I

  • HP Officejet Pro 8600 Plus_N911g All-In-One

    Help, PLEASE. 1. Recent computer purchase. Windows 8.1.  2. Switching printer from Windows 7 Professional to Windows 8.1. 3. A different error message appears, each time I attempt to install above referenced printer.4. [Most recent error] "Installati

  • Really slow to open files on new iMac

    Hi I've have a new 3.06Mhz 27" iMac (8gb RAM) at work. It's painfully slow when either opening or saving files - ie something requiring the file dialogue box. Adobe CS4 being the worst with Dreamweaver & Photoshop taking between 7 and 10 seconds for

  • Acrobat 9 will not import bookmarks from Word 2000

    I have a customer who creates sophisticated Word 2000 documents including bookmarks. When converting to Acrobat using 8 professional, the bookmarks convert fine. They are there and point to the correct locations. She insisted that she needed 9 Profes