Case and if statements in Ehancment points

Hi Friends
I have a standard code
"Standard code
IF <condition>.
"In between i have an enhacment point
Enhancment point.
enhancment.
ELSEIF <condition1>
endenhacment.
ENDIF.
I get an error no if condition or no endif within the
enhacment point.
Is there a workaound for this

Hi.  Hema is right; it's a nesting problem.  I'm not sure exactly what statements you're using for your enhancement, but your conditions can't overlap like that. If the "ELSEIF" condition belongs to the original "IF" statement, then the enhancement needs to be completely contained either before or after the "ELSEIF".  If the "ELSEIF" belongs to the enhancement, then you need to have an "IF" and "ENDIF" within the enhancement.  Here's what I mean.
"ELSEIF" belongs to first "IF":
IF <condition1>.
  enhancement.
  endenhancement.
ELSEIF <condition2>.
if the enhancement code needs to be here as well,
then repeat it on this side of the ELSEIF or put the
code in a form and call it from both places
ENDIF.
"ELSEIF" belongs to enhancement:
IF <condition1>.
  enhancement.
    IF <condition1a>.
    ELSEIF <condition1b>.
    ENDIF.
  endenhancement.
ENDIF.
I hope this clarifies things a bit.
- April King

Similar Messages

  • Case and decode statement

    Hi all,
    could anyone would be able to tell me which statement is faster among decode and case and why?
    thanx
    Newbie

    user531731 wrote:
    The difference is in the syntax, and case statement is standards compliance and decode function is a user defined function.I guess you mean: CASE is an ANSI standard, while DECODE is an Oracle Specific function

  • Using Case and Joins in update statement

    Hi all,
    I need to update one column in my table...but need to use case and joins...I wrote the query and it is not working
    I am getting an error msg saying...the SQL command not ended properly...
    I am not that good at SQL...Please help...
    update t1 a
    set a.name2=
    (case
    when b.msg2 in ('bingo') then '1'
    when b.msg2 in ('andrew') then '2'
    when b.msg2 in ('sam') then '3'
    else '4'
    end )
    from t1 a left outer join t2 b
    on a.name1 = b.msg1 ;
    Waiting for help on this...!
    Thanks in Advance... :)

    Another approach is to update an inline view defining the join:
    update
    ( select a.name2, b.msg2
      from   t1 a
      join   t2 b on b.msg1 = a.name1 ) q
    set q.name2 =
        case
          when q.msg2 = 'bingo' then '1'
          when q.msg2 = 'andrew' then '2'
          when q.msg2 = 'sam' then '3'
          else '4'
        end;which could also be rewritten as
    update
    ( select a.name2
           , case q.msg2
                when 'bingo'  then '1'
                when 'andrew' then '2'
                when 'sam'    then '3'
                else '4'
             end as new_name
      from   t1 a
      join   t2 b on b.msg1 = a.name1 ) q
    set name2 = new_name;The restriction is that the lookup (in this case, t2.msg1) has to be declared unique, via either a primary or unique key or unique index.
    (You don't strictly need to give the view an alias, but I used 'q' in case you tried 'a' or 'b' and wondered why they weren't recognised outside the view.)

  • Help needed in writing SQL CASE or DECODE statement

    Hi experts,
    I need to write a SQL to select order_num, cntry_cde, prod_id and Qty by joining order_num on PROD_ORDER and PROD_ORDER_TXT.
    Here is my sample data
    PRODORDER_               
    order_num     cntry_cde     Prod_id     Qty
    100     US     A1     5
    101     US     A2     10
    102     AU     A3     4
    103     AU     A4     9
    104     IN     A5     3
    PRODORDER_TXT_               
    order_num     cntry_cde     Prod_id     
    100     US     A1     
    101     US     A2     
    102     NZ     A3     
    103     AU     A4     
    104          A5     
    Here is the requirement,
    1) If the cntry_cde in PROD_ORDER is same as cntry_cde in PROD_ORDER_TXT then select PROD_ORDER.cntry_cde (orders 100, 101, 103)
    2) If they are different, pick the country code from PROD_ORDER_TXT (order 102, AU <> NZ)
    3) If they are different and PROD_ORDER_TXT.cntry_cde is NULL, I cannot use it as cntry_cde in my report (order 104). It happenend just because of the bad data at source.
    I cannot avoid it. Then simply use the cntry_cde from PROD_ORDER
    Output expected
    100     US     A1     5
    101     US     A2     10
    102     NZ     A3     4 -- AU changed to NZ
    103     AU     A4     9
    104     IN     A5     3 -- IN retained as PROD_ORDER_TXT.cntry_cde is null
    sample table creation and insert statements are below
    create table prod_order
    (order_num number,
    cntry_cde CHAR(2),
    prod_id VARCHAR2(6),
    qty number)
    create table prod_order_txt
    (order_num number,
    cntry_cde CHAR(2),
    prod_id VARCHAR2(6))
    insert into prod_order values (100, 'US', 'A1',5);
    insert into prod_order values (101, 'US', 'A2',1);
    insert into prod_order values (102, 'AU', 'A3',4);
    insert into prod_order values (103, 'AU', 'A4',9);
    insert into prod_order values (104, 'IN', 'A5',3);
    insert into prod_order_txt values (100,'US','A1');
    insert into prod_order_txt values (101,'US','A2');
    insert into prod_order_txt values (102,'NZ','A3');
    insert into prod_order_txt values (103,'AU','A4');
    insert into prod_order_txt values (104,NULL,'A5');
    commit;
    Thanks for your help in advance
    Edited by: sarvan on Mar 28, 2012 1:39 PM

    Hello
    Thank you for posting all of the ddl and test data along with your expected output - very helpful!. One small point would be to remember to type {noformat}{noformat} before and after any section of code or data in your post so that formatting is retained.  Anyway, this should be a simple join and a combination of CASE and NVL...Select
    po.order_num,
    CASE
    WHEN po.cntry_cde != NVL(pot.cntry_cde,po.cntry_cde)
    THEN
    pot.cntry_cde
    ELSE
    po.cntry_cde
    END cntry_code,
    po.prod_id,
    po.qty
    FROM
    prod_order po
    JOIN
    prod_order_txt pot
    ON
    ( po.order_num = pot.order_num
    ORDER_NUM CN PROD_I QTY
    100 US A1 5
    101 US A2 1
    102 NZ A3 4
    103 AU A4 9
    104 IN A5 3
    5 rows selected.
    HTH
    David
    Edited by: Bravid on Mar 28, 2012 8:32 AM
    corrected !=                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Best Buy hijacked my bank account and disposed my Best Buy points

    I placed an online order on 09/05/2014 (Order number: (removed per forum guidelines) around 4pm eastern, and about 3 hours later, I got another email stating "YOUR ITEM HAS BEEN CANCELED". It was for an in-store open box item, which I was able to pay for online and pick-up at the store, or so I thought. I used two $5.00 reward certificates, a gift card, and my credit card to finalize the transaction. The email titled, "YOUR ITEM HAS BEEN CANCELED" contained this information:
    Be assured that if you paid by credit card, it has not been charged, and any other method of payment has been credited. If you used a Gift Card for this order and no longer have it, please call the number below and we'll send you a replacement.
    If you have any questions about your order or need further assistance — or if you'd like help finding a similar item — please contact us at
    1-888-BEST BUY (1-888-237-8289).
    Once again, we're sorry for this inconvenience, and are working hard to serve you better in the future.
    Sincerely,
    Karalyn Sartor
    Vice President Customer Care
    Well, lets just start wih Karalyn did not answer my call or attempted to help.
    My gift card was immeditely re-credited, however it has been a different story for the other method of payment. My certificates which were accumulated through purchases totaling over $500 dollars, never regenerated (i've called 3 separate times about when are they going back to my points bank and responses range from 24hr to 45days) it's now Wednesday this happen last Friday. The cancelation email stated my credit card would not be charged, but Best Buy did something worse they placed a hold on my card for this order that wasn't fulfilled and actually canceled by Best Buy employees at the store(553) due to not in stock (as stated in cancelation email).
    The transaction was completed online because it indicated stock was available and the, "Thank you for your order" email implied that ownership was mine. I don't understand why Best Buy placed a hold on my card, if the transaction was manually checked and canceled? What makes it worse there was no attempt to contact me to substitute canceled order or give me a definitive reason why it was canceled. In fact, my reward certificates that I accumulated over some time were gone due to this cancelled order and no definitive answer has been given to when they will show back on my account. I was told Friday the hold would release in 3-5 days and it "should" drop, but it now Wednesday. I would understand if this was a return transaction and I have to wait for my funds to be available again, but I had no possession of item and it the transaction didn't go through why is Best BUy holding my money hostage? I'm not in the business of lending out money, and I needed those funds to actually acquire what I attempted to in my order. I shouldn't have to wait on my money, I feel like I'm being bullied and down right punished.
    So, now it gets worse for me because. I called I-800 for Elite Plus reward members ( been a member since it was Premier Silver) to make sure stock was available on a similar item (at full price), and asked about the points, I lost and how I would be able to apply them to my purchase. The rep adjusted the price to accommodate my transaction and said that the points would be still go back on my account in 24 hrs. This new order was finalized on the same day as original order Friday 09/05/2014.
    Well, I checked my bank account Monday , and was surprised to see the original cancelled order was still there, as well as two identical transaction that I'm assuming represented my new order. I was patient and waited till Tuesday to check again, and hoped that all mistaken holds would drop, but I was wrong. Instead, now a hold actually posted as a completely different amount (lower) with the new order number associated to it, and the other amount(what I expected) is also there plus the original transaction amount. Who gave Best By create a third order without my consent? Why did Best Buy assume I had money to lend their cooperation? Why did Best Buy assume that my funds were at their disposal and authorized their own transaction? How dos Best Buy not consider unapproved transactions could overdraft my account? I called and asked, but no answer could be given to why that happen except that the rep charged me twice, and thats why theres two holds, but then that doesn't explain why one of those holds post at a cheaper price with my new order number on it. This is crazy, there is no reason why a third order should have been created because I didn't approve it. This has been too many days without my money, and these holds total a little pass $300.00 dollars (not chump change).
    Yesterday (09/09/14) I contacted my bank to find a solution to these unwarranted charges, and the only way to expedite and release my funds would be in a from of a letter from best buy on their letter head to be faxed to 18663097443 with the transaction amounts, card number, my name, date of transaction, signed by a manager, and a statement informing the bank that Best Buy would not collect on those charges. The other solution was to dispute the charge that posted because that amount was not contracted to be fulfilled under the agreement of the order form.
    So, I called Best Buy again. Well, after over an hour on the phone and the rep spoke to her superiors which declined the request, so I asked for the case number, but the rep told me that after during the conversation her computer crashed and no number could be given. So, I asked for some type of compensation for this crazy ordeal and for the financial position it put me in by creating a new order and holding funds from a canceled order. Well, she said my situation didn't correspond to reasons that warranted compensation, not even a coupon. I thought what happen to customer service as being a reason? The Best Buy rep did seem to empathize with my situation, and asked again for that authorization letter, and she said she got it approved; this was around 5pm yesterday. She then even said she was able to generate a case number with this approval (case number 144087240).
    Guess what Best Buy community its now Wednesday, and the holds are all there no communication was sent to the resolution department on the behalf of Best buy and I'm still out $300. plus dollars since Friday. Normally banks charge interest on loans, what will Best Buy do for me now that I have stolen my money? I never gave consent to create a third order, which now I will have to dispute and report to the Better Business Bureau. The most unbelieveble part of this mess is that the item in my original order that satrted all this is still up on the Best Buy page. An employee supoosley checked and made the determination that the item is out of stock, but its still on the webpage to trap another customer in lending Best Buy capital to fund their organization. I would clike to challenage any employee to attempt to but this item and see what happens to their funds. I mean, come on Best Buy if you don't pay the employee to trap people, then have them remove the item off the website where people are becoming victims to this money pit. Here is the link go for it and see what happens to you Karalyn Sartor, Vice President Customer Care. 
    http://www.bestbuy.com/site/apple-open-box-ipad-mini-with-wi-fi-16gb-white-silver/6208541.p?id=12187...
    I shop at Best Buy so much I held the silver Premier status since it was introduced, and every year the amount of how much you spend gets raised as benefits get removed, I've been able to surpass that threshold to maintain Elite Plus status since it too has been created topping almost $5000.00 this year alone, and we haven't hit Christmas yet. This experience is something to consider next time I think about going to Best Buy.

    Good afternoon robertocar78,
    After reading through your detailed post, I can fully understand why you would be frustrated with this experience. First off, stores should ensure that their clearance and open-box items listed on BestBuy.com are up-to-date to prevent such experiences as yours. Secondly, to have such an amount of funds unavailable would be quite worrisome, and I hope that I can bring some light to your particular situation.
    Using the email address you registered with the forum, I was able to locate your cancelled order as well as the replaced order. Typically when an order is placed, the funds are immediately authorized to ensure the funds are available. While this authorization may make the funds unavailable, the funds have not actually been collected.
    Once an order ships, the funds will be collected at that time. Should there be more than one item on an order, if the items ship separately or at different times, you may be charged for the individual items. That being said, you could see multiple smaller charges for one order that together make up the order total. If an order is cancelled, the authorization should be dropped on our end. However, this may take 3-5 business days to reflect on your end, depending on your financial institution’s processing times.
    I was able to see that you have been working extensively with Todd on our Consumer Relations team in regards to your situation. I spoke with him personally about your particular situation and let him know that you have also posted here in regards to your concerns. I’m happy to hear that he has been able to assist you in resolving most of your issues thus far.
    Also, please know that I am reaching out to the Tropicaire store in Miami, FL store in regards to this iPad listing to ensure they have a chance to correct any inventory or listing issues they may have. I am truly sorry for any inconvenience this experience may have caused you. I hope that this experience has not influenced your future shopping destinations.
    If you should have any further concerns or questions, please feel welcome to reach out to me here on the thread or by sending me a private message via the link in my signature below.
    Cheers!
    Tasha|Social Media Specialist | Best Buy® Corporate
     Private Message

  • Difference between CASE and DECODE

    Hi All,
    Could you please explain me the basic differences between the CASE and DECODE, which performs fast...?
    DECODE is Oracle one, and the CASE is ANSI standard.
    As per my knowledge, CASE is a statement and DECODE is a function which was defined in the Standard package.
    If we use DECODE, the package has to load first, so it will take a little longer than the CASE. CASE is a simple statement which is ANSI standard.
    We can use the CASE in the where clause and can not use the DECODE in the where clause.
    Please clarify me and correct me if anything wrong.
    Thanks,

    IMO, the main important point is the way CASE and DECODE handles NULL
    SQL> select ename,comm,
      2         decode(comm,300,'A',null,'B','C') dcd,
      3         case comm when 300 then 'A'
      4                   when null then 'B'
      5                   else 'C'
      6         end cs
      7  from emp;
    ENAME            COMM D C
    SMITH                 B C --"DECODE treats NULL=NULL. But for CASE, NULL is not equal to "another" NULL
    ALLEN             300 A A
    WARD              500 C C
    JONES                 B C
    MARTIN           1400 C C
    BLAKE                 B C
    CLARK                 B C
    SCOTT                 B C
    KING                  B C
    TURNER              0 C C
    ADAMS                 B C
    JAMES                 B C
    FORD                  B C
    MILLER                B C
    14 rows selected.
    {code}
    Edited by: jeneesh on Jun 3, 2013 1:13 PM
    Note: in CASE, you should use IS NULL
    {code}
    case when comm=300 then 'A'
           when comm is null then 'B'
          else 'C'
    end
    {code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Dump at if condition statement. Null pointer Exception

    hi all,
    I have a recursive node as a child node for a value node. I have created an instance of the value node.
    I also have accessed current elem of this value node. Since every elem of this value node will have recursive node also in it, I want to access the recursive node present in the elem.
    I want to do this using general node and element API - ie IWDNode and IWDNodeElement.
    No specific node name can be used coz this  is done for a generic method which takes a value node a as parameter and tries to create child elems for the node accessing the recursive node present in it.
    How can this be done ?
    I am using the following code.
    String ChildName = SourceNode.getNodeInfo().getName().split("_")[1] + "Rec";
    IWDNode childNode = SourceNode.getChildNode(ChildName, 0);
    if (childNode == null || childNode.size() == 0 ) {
    It throws a dump at if condition statement. ( Null pointer Exception)
    Any help appreciated !!
    Edited by: ymb on Mar 25, 2009 1:23 PM

    Hi,
    Its actually pity simple. If you will read the Javadocs you will find that there are various ways in which you can get the list of all chil nodes of a parent node.
    You just have to iterate over the chil nodes and get the names of the node.
    Please check this link for JAVA docs: http://help.sap.com/javadocs/nwce/current/wdr/index.html
    However for your requirement there can be following ways to get the list of the chil nodes. Please check these two code snippets:
        IWDNode node = wdContext.nodeNode1();
        Iterator itr = node.getNodeInfo().iterateChildren();
        String nodeName = null;
        String parentName = null;
        while(itr.hasNext()){
             nodeName = ((IWDNode)itr.next()).getNodeInfo().getName();
             parentName = ((IWDNode)itr.next()).getNodeInfo().getParent().getName();
             wdThis.wdGetAPI().getComponent().getMessageManager().reportSuccess("Node Name is: "
    + nodeName +"and it is under the parent Node named: " +parentName);
    Also there is another approach to do teh same, please have a look to this code snippet:
    List list = node.getNodeInfo().getChildren();
    String nodeName = null;
    String parentName = null;
    Iterator itr1 = list.iterator();
    while (itr1.hasNext()) {
         nodeName = ((IWDNode) itr1.next()).getNodeInfo().getName();;
         parentName = ((IWDNode)itr1.next()).getNodeInfo().getParent().getName();
         wdThis.wdGetAPI().getComponent().getMessageManager().reportSuccess("Node Name is: "
    + nodeName +"and it is under the parent Node named: " +parentName);
    I am sure this will all your issues and also you will not get the null pointer exception which was your initial issue.
    Please revert back in case you have any further issues.
    Thanks and Regards,
    Pravesh

  • Left joins : Case or if statement

    Hi
    I want to know if one can build in a case or if statement into a left join. I want to multiply a value with -1 if the condition is met.

    I think it is not possible in SELECT statement...but you can do the below to resolve it.
    add a field for FKART in your internal table.
    TYPES: BEGIN OF tab ,
           kunag LIKE vbrk-kunag,
           fkdat like vbrk-fkdat,
           matnr LIKE vbrp-matnr,
           werks LIKE vbrp-werks,
           fkart like vbrk-fkart,
           volum LIKE vbrp-volum,
           END OF tab.
    DATA: wa_outtab TYPE table of tab WITH HEADER LINE.
    SELECT akunag  afkdat
           bmatnr bwerks a~fkart
           SUM( b~volum )
       INTO  table wa_outtab
    FROM vbrk AS a
    INNER JOIN vbrp AS b
          ON  avbeln  = bvbeln
    WHERE
    avbeln = bvbeln                                                                               
    AND ( afkart LIKE 'F2' OR afkart LIKE 'RE' )
    GROUP BY  akunag afkdat bmatnr bwerks a~fkart.
    sort wa_outtab.
    Loop at wa_outtab.
      if wa_outtab-fkart = 'RE'.
        lpos = lpos +  wa_outtab-volum.
      else.
        lneg = lneg +  wa_outtab-volum.
      endif.
      at end of werks.
         lvaule = lpos - lneg.
        lpos = lneg = 0.
      endat.
    endloop.

  • I just purchased a new macbook pro, I transfered files from my old damaged macbook pro using an external case and the original HD.  Safari will not open, and shows a message of "quit unexpectedly"

    I just purchased a new macbook pro, I transfered files from my old damaged macbook pro using an external case and the original HD.  Safari will not open, and shows a message of "quit unexpectedly"

    Process:         Safari [3180]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.1.7 (7534.57.4)
    Build Info:      WebBrowser-7534057004000000~7
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [135]
    Date/Time:       2012-08-17 05:41:01.380 -0700
    OS Version:      Mac OS X 10.7.4 (11E2617)
    Report Version:  9
    Interval Since Last Report:          16209 sec
    Crashes Since Last Report:           27
    Per-App Interval Since Last Report:  12 sec
    Per-App Crashes Since Last Report:   27
    Anonymous UUID:                      A973086A-14E1-4BBA-9C64-CD98A4D5A970
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    objc[3180]: garbage collection is OFF
    *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid parameter not satisfying: (index >= 0) && (index < [_itemArray count])'
    *** First throw call stack:
    0   CoreFoundation                      0x00007fff9664af56 __exceptionPreprocess + 198
    1   libobjc.A.dylib                     0x00007fff91c7fdee objc_exception_throw + 43
    2   CoreFoundation                      0x00007fff9664ad8a +[NSException raise:format:arguments:] + 106
    3   Foundation                          0x00007fff8b70c71f -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 169
    4   AppKit                              0x00007fff8fef5cdf -[NSMenu itemAtIndex:] + 165
    5   AppKit                              0x00007fff8fef5e38 -[NSMenu removeItemAtIndex:] + 63
    6   Safari                              0x000000010debfc2e -[AppController awakeFromNib] + 387
    7   CoreFoundation                      0x00007fff96641fb1 -[NSObject performSelector:] + 49
    8   CoreFoundation                      0x00007fff96641f32 -[NSSet makeObjectsPerformSelector:] + 274
    9   AppKit                              0x00007fff8fedd9ff -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1245
    10  AppKit                              0x00007fff8fed3f73 loadNib + 322
    11  AppKit                              0x00007fff8fed3470 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 217
    12  AppKit                              0x00007fff8fed338b +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 141
    13  AppKit                              0x00007fff8fed32ce +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 364
    14  AppKit                              0x00007fff9014406f NSApplicationMain + 398
    15  Safari                              0x000000010e0c2806 SafariMain + 166
    16  Safari                              0x000000010deacf24 Safari + 3876
    17  ???                                 0x0000000000000002 0x0 + 2
    terminate called throwing an exception
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib        0x00007fff8bbabce2 __pthread_kill + 10
    1   libsystem_c.dylib             0x00007fff93e887d2 pthread_kill + 95
    2   libsystem_c.dylib             0x00007fff93e79a7a abort + 143
    3   libc++abi.dylib               0x00007fff97da27bc abort_message + 214
    4   libc++abi.dylib               0x00007fff97d9ffcf default_terminate() + 28
    5   libobjc.A.dylib               0x00007fff91c80249 _objc_terminate + 94
    6   libc++abi.dylib               0x00007fff97da0001 safe_handler_caller(void (*)()) + 11
    7   libc++abi.dylib               0x00007fff97da005c std::terminate() + 16
    8   libc++abi.dylib               0x00007fff97da1152 __cxa_throw + 114
    9   libobjc.A.dylib               0x00007fff91c7ff0a objc_exception_throw + 327
    10  com.apple.CoreFoundation      0x00007fff9664ad8a +[NSException raise:format:arguments:] + 106
    11  com.apple.Foundation          0x00007fff8b70c71f -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 169
    12  com.apple.AppKit              0x00007fff8fef5cdf -[NSMenu itemAtIndex:] + 165
    13  com.apple.AppKit              0x00007fff8fef5e38 -[NSMenu removeItemAtIndex:] + 63
    14  com.apple.Safari.framework    0x000000010debfc2e -[AppController awakeFromNib] + 387
    15  com.apple.CoreFoundation      0x00007fff96641fb1 -[NSObject performSelector:] + 49
    16  com.apple.CoreFoundation      0x00007fff96641f32 -[NSSet makeObjectsPerformSelector:] + 274
    17  com.apple.AppKit              0x00007fff8fedd9ff -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1245
    18  com.apple.AppKit              0x00007fff8fed3f73 loadNib + 322
    19  com.apple.AppKit              0x00007fff8fed3470 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 217
    20  com.apple.AppKit              0x00007fff8fed338b +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 141
    21  com.apple.AppKit              0x00007fff8fed32ce +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 364
    22  com.apple.AppKit              0x00007fff9014406f NSApplicationMain + 398
    23  com.apple.Safari.framework    0x000000010e0c2806 SafariMain + 166
    24  com.apple.Safari              0x000000010deacf24 0x10deac000 + 3876
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib        0x00007fff8bbac7e6 kevent + 10
    1   libdispatch.dylib             0x00007fff8ed4478a _dispatch_mgr_invoke + 923
    2   libdispatch.dylib             0x00007fff8ed4331a _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib        0x00007fff8bbac192 __workq_kernreturn + 10
    1   libsystem_c.dylib             0x00007fff93e88594 _pthread_wqthread + 758
    2   libsystem_c.dylib             0x00007fff93e89b85 start_wqthread + 13
    Thread 3:: Dispatch queue: com.apple.CFURLCACHE_work_queue
    0   libsystem_kernel.dylib        0x00007fff8bbaca8e pread + 10
    1   libsqlite3.dylib              0x00007fff90b5ace5 unixRead + 69
    2   libsqlite3.dylib              0x00007fff90b56c33 sqlite3BtreeOpen + 2195
    3   libsqlite3.dylib              0x00007fff90b52fc6 openDatabase + 1430
    4   com.apple.CFNetwork           0x00007fff8e6d64bd __CFURLCache::OpenDatabase() + 63
    5   com.apple.CFNetwork           0x00007fff8e6d6040 ProcessCacheTasks(__CFURLCache*, bool) + 265
    6   com.apple.CFNetwork           0x00007fff8e6d5a72 _ZL24_CFURLCacheTimerCallbackPv + 662
    7   libdispatch.dylib             0x00007fff8ed42a86 _dispatch_call_block_and_release + 18
    8   libdispatch.dylib             0x00007fff8ed442d6 _dispatch_queue_drain + 264
    9   libdispatch.dylib             0x00007fff8ed44132 _dispatch_queue_invoke + 54
    10  libdispatch.dylib             0x00007fff8ed4392c _dispatch_worker_thread2 + 198
    11  libsystem_c.dylib             0x00007fff93e883da _pthread_wqthread + 316
    12  libsystem_c.dylib             0x00007fff93e89b85 start_wqthread + 13
    Thread 4:: WebCore: IconDatabase
    0   libsystem_kernel.dylib        0x00007fff8bbaca8e pread + 10
    1   libsqlite3.dylib              0x00007fff90b5ace5 unixRead + 69
    2   libsqlite3.dylib              0x00007fff90b7c4f6 readDbPage + 102
    3   libsqlite3.dylib              0x00007fff90b7ac9b sqlite3PagerAcquire + 315
    4   libsqlite3.dylib              0x00007fff90ba9872 moveToChild + 146
    5   libsqlite3.dylib              0x00007fff90babb68 sqlite3BtreeNext + 600
    6   libsqlite3.dylib              0x00007fff90ba4909 sqlite3VdbeExec + 41561
    7   libsqlite3.dylib              0x00007fff90b99a5b sqlite3_step + 1883
    8   com.apple.WebCore             0x000000010ef5aeff WebCore::SQLiteStatement::step() + 63
    9   com.apple.WebCore             0x000000010ef5b6cc WebCore::IconDatabase::performURLImport() + 908
    10  com.apple.WebCore             0x000000010ef59d3b WebCore::IconDatabase::iconDatabaseSyncThread() + 475
    11  com.apple.JavaScriptCore      0x000000010e8a311f _ZN3WTFL19wtfThreadEntryPointEPv + 15
    12  libsystem_c.dylib             0x00007fff93e868bf _pthread_start + 335
    13  libsystem_c.dylib             0x00007fff93e89b75 thread_start + 13
    Thread 5:: CoreAnimation render server
    0   libsystem_kernel.dylib        0x00007fff8bbaa67a mach_msg_trap + 10
    1   libsystem_kernel.dylib        0x00007fff8bba9d71 mach_msg + 73
    2   com.apple.QuartzCore          0x00007fff8eb2bdf5 CA::Render::Server::server_thread(void*) + 184
    3   com.apple.QuartzCore          0x00007fff8eb2bd35 thread_fun + 24
    4   libsystem_c.dylib             0x00007fff93e868bf _pthread_start + 335
    5   libsystem_c.dylib             0x00007fff93e89b75 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff6daaa418  rdx: 0x0000000000000000
      rdi: 0x000000000000060b  rsi: 0x0000000000000006  rbp: 0x00007fff6daaa440  rsp: 0x00007fff6daaa418
       r8: 0x00007fff7c0d2fb8   r9: 0x00007fff6daa9ea8  r10: 0x00007fff8bbabd0a  r11: 0xffffff80002dad60
      r12: 0x00007fcc8c415da0  r13: 0x0000000000000006  r14: 0x00007fff7c0d5960  r15: 0x00007fff6daaa590
      rip: 0x00007fff8bbabce2  rfl: 0x0000000000000246  cr2: 0x0000000111c3b000
    Logical CPU: 0
    Binary Images:
           0x10deac000 -        0x10deacfff  com.apple.Safari (5.1.7 - 7534.57.4) <468C5147-26BF-321F-A7E6-42DA82AD4B1B> /Applications/Safari.app/Contents/MacOS/Safari
           0x10deb3000 -        0x10e34dff7  com.apple.Safari.framework (7536 - 7536.25) <C95F0D4E-6984-3D2F-B0BA-5D12A164EAC8> /System/Library/StagedFrameworks/Safari/Safari.framework/Safari
           0x10e670000 -        0x10e8fffff  com.apple.JavaScriptCore (7536 - 7536.24) <C613502E-BC98-3269-A25C-4BDB2D87590B> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/JavaScriptCore
           0x10e9ae000 -        0x10eb30ff7  com.apple.WebKit (7536 - 7536.25) <8D171955-A1CA-31AA-B701-B9D4F760B10B> /System/Library/StagedFrameworks/Safari/WebKit.framework/WebKit
           0x10ec1e000 -        0x10edf7fff  com.apple.WebKit2 (7536 - 7536.25) <15991DAF-D0C9-3D65-A96B-AF7428ADCC4E> /System/Library/StagedFrameworks/Safari/WebKit2.framework/WebKit2
           0x10ef56000 -        0x10fefbff7  com.apple.WebCore (7536 - 7536.24) <F2C26660-05D7-34A7-9158-9C3D21BEB32F> /System/Library/StagedFrameworks/Safari/WebCore.framework/WebCore
        0x7fff6daac000 -     0x7fff6dae0baf  dyld (195.6 - ???) <C58DAD8A-4B00-3676-8637-93D6FDE73147> /usr/lib/dyld
        0x7fff8adf6000 -     0x7fff8b2bdfff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <BDD0E1DE-CF33-3AF8-B33B-4D1574CCC19D> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff8b2ea000 -     0x7fff8b35dfff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
        0x7fff8b460000 -     0x7fff8b4d6fff  libc++.1.dylib (28.1.0 - compatibility 1.0.0) <DA22E4D6-7F20-3BEA-9B89-2FBA735C2EE1> /usr/lib/libc++.1.dylib
        0x7fff8b524000 -     0x7fff8b630fff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <557A7749-70EE-3ADF-BC3E-0A5E7DDCD8C1> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8b631000 -     0x7fff8b640fff  libxar-nossl.dylib (??? - ???) <518C0791-AB8D-3E8A-BB40-D4F312704FE2> /usr/lib/libxar-nossl.dylib
        0x7fff8b641000 -     0x7fff8b95afff  com.apple.Foundation (6.7.2 - 833.25) <F6584E06-7C8F-3422-AF84-3AA58EC67935> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8b95b000 -     0x7fff8b96fff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <A7C58D71-6D4A-317D-AA06-D648B1F78573> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8b970000 -     0x7fff8b9b1fff  com.apple.QD (3.40 - ???) <05970F98-B752-37AF-B577-2B940DF020A1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8b9ff000 -     0x7fff8b9fffff  com.apple.Cocoa (6.6 - ???) <9E3D4787-A2CE-38E0-BEF8-E5DA63B6E6A1> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8bb02000 -     0x7fff8bb03fff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
        0x7fff8bb7c000 -     0x7fff8bb7cfff  com.apple.CoreServices (53 - 53) <97E086D0-20B4-3BB4-BEE2-04EE5700D55B> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8bb7d000 -     0x7fff8bb94fff  com.apple.MultitouchSupport.framework (231.4 - 231.4) <10A978D1-8781-33F0-BE45-60C9171F7278> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8bb95000 -     0x7fff8bbb5fff  libsystem_kernel.dylib (1699.31.2 - compatibility 1.0.0) <185823F1-409E-3AFD-93A9-C214013C17C8> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8c046000 -     0x7fff8c0a8ff7  com.apple.Symbolication (1.3 - 91) <0945ACAF-AA0A-3D01-9960-72B51722EC1F> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8c0a9000 -     0x7fff8c0acfff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff8c0ad000 -     0x7fff8c0bafff  com.apple.CrashReporterSupport (10.7.4 - 352) <C806C4A3-25FE-3D62-BFF4-0DB41589CF83> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8c0f4000 -     0x7fff8c11afff  com.apple.framework.familycontrols (3.0 - 300) <84E55A2E-643E-36E9-AFD8-CED667AF6B8E> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff8c14c000 -     0x7fff8c1a0fff  libFontRegistry.dylib (??? - ???) <2CCED595-0992-3A04-A8E8-887429652789> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8c1a1000 -     0x7fff8c20afff  com.apple.coreui (1.2.2 - 165.10) <F427BF39-3E01-3DC6-A63D-BFC50FE6C72E> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8c20b000 -     0x7fff8c40dfff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <38CD6ED3-C8E4-3CCD-89AC-9C3198803101> /usr/lib/libicucore.A.dylib
        0x7fff8c40e000 -     0x7fff8c41bff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <DFAB8CA8-CC9D-3F58-8C12-CE120442AACD> /usr/lib/libbz2.1.0.dylib
        0x7fff8c691000 -     0x7fff8c714fef  com.apple.Metadata (10.7.0 - 627.35) <6769AD6A-58D2-3D25-B289-15C65B82CF8D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8c715000 -     0x7fff8c71afff  com.apple.OpenDirectory (10.7 - 146) <7960A302-F9AC-3F72-838E-3A382032DCA6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8c71b000 -     0x7fff8ca37fff  com.apple.CoreServices.CarbonCore (960.24 - 960.24) <CDCB53C0-D212-3485-A594-DDE33AAC5AF0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8ca38000 -     0x7fff8cc62fe7  com.apple.CoreData (104.1 - 358.14) <1C100A86-EEDF-352E-8BC0-DFE82FF92362> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8cc63000 -     0x7fff8ccbeff7  com.apple.opencl (2.0.16 - 2.0.16) <63F5AAE4-23DC-3279-AED7-6170D086C397> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8ccd1000 -     0x7fff8cdb5fff  com.apple.CoreServices.OSServices (478.46 - 478.46) <DAE95FD5-AA73-30E2-B563-EA2BDBD4D3CF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8cdb6000 -     0x7fff8d0e2ff7  com.apple.HIToolbox (1.9 - ???) <32527EBE-4E99-31F6-BBE7-60A796803905> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8d0e3000 -     0x7fff8d0e4ff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <8901B7EE-6CA0-31F3-BBFE-BB71C90B1E49> /usr/lib/system/libremovefile.dylib
        0x7fff8d22d000 -     0x7fff8d289ff7  com.apple.HIServices (1.21 - ???) <25FBDEA4-871F-3A58-A525-0E1799945522> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8d28a000 -     0x7fff8d295ff7  com.apple.speech.recognition.framework (4.0.21 - 4.0.21) <6540EAF2-E3BF-3D2E-B4C1-F106180D6F20> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8dbbc000 -     0x7fff8e559b47  com.apple.CoreGraphics (1.600.0 - ???) <C08FBA1B-E6C0-3020-AD4D-3A041734577D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8e55a000 -     0x7fff8e562fff  libsystem_dnssd.dylib (??? - ???) <8A0F6F23-53C1-34FD-B641-4C0771C71E2A> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8e674000 -     0x7fff8e686ff7  libbsm.0.dylib (??? - ???) <666E88F0-F8F3-3490-B688-2CF9418CB7E8> /usr/lib/libbsm.0.dylib
        0x7fff8e69d000 -     0x7fff8e6d2fff  com.apple.securityinterface (5.0 - 55022.4) <DAAEC695-EB88-311E-B929-B4CD9073924E> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8e6d3000 -     0x7fff8e83afff  com.apple.CFNetwork (520.4.3 - 520.4.3) <31D7A595-375E-341A-8E97-21E73CC62E4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff8e83b000 -     0x7fff8e88dff7  libGLU.dylib (??? - ???) <E9C325A6-D3D6-3C6A-A655-D2CB5BBEB992> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8e8e6000 -     0x7fff8e8f0ff7  liblaunch.dylib (392.38.0 - compatibility 1.0.0) <6ECB7F19-B384-32C1-8652-2463C1CF4815> /usr/lib/system/liblaunch.dylib
        0x7fff8ea8f000 -     0x7fff8ea95ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
        0x7fff8ea96000 -     0x7fff8eab5fff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <0635C52D-DD53-3721-A488-4C6E95607A74> /usr/lib/libresolv.9.dylib
        0x7fff8eab6000 -     0x7fff8eabaff7  com.apple.CommonPanels (1.2.5 - 94) <CA9C910D-E406-33E7-B8EE-C86EAA62AB68> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8eabb000 -     0x7fff8ead8fff  libxpc.dylib (77.19.0 - compatibility 1.0.0) <9F57891B-D7EF-3050-BEDD-21E7C6668248> /usr/lib/system/libxpc.dylib
        0x7fff8ead9000 -     0x7fff8eae0fff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <65602684-33B1-32DE-802B-050CE07659AC> /usr/lib/system/libcopyfile.dylib
        0x7fff8eb29000 -     0x7fff8ecc9ff7  com.apple.QuartzCore (1.7 - 270.5) <E038F95C-B66D-3B04-AB32-5BB30FD7CB2A> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8ecca000 -     0x7fff8ed40fff  com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8ed41000 -     0x7fff8ed4ffff  libdispatch.dylib (187.9.0 - compatibility 1.0.0) <1D5BE322-A9B9-3BCE-8FAC-076FB07CF54A> /usr/lib/system/libdispatch.dylib
        0x7fff8ed50000 -     0x7fff8ed8afe7  com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8ee89000 -     0x7fff8ef8bfff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <AFBB22B7-07AE-3F2E-B88C-70BEEBFB8A86> /usr/lib/libxml2.2.dylib
        0x7fff8f06b000 -     0x7fff8f0b7ff7  com.apple.SystemConfiguration (1.11.3 - 1.11) <0A7F1982-B4EA-3424-A0C7-FE46C6224F03> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8f0b8000 -     0x7fff8f0bfff7  com.apple.CommerceCore (1.0 - 17) <95285481-4162-308B-85E9-E0A47D4F3766> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8f901000 -     0x7fff8f908fff  libGFXShared.dylib (??? - ???) <0EA5DB50-D9AA-3BD5-9B1A-D5A82BD10E14> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8f909000 -     0x7fff8f91bff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
        0x7fff8f91c000 -     0x7fff8f98cfff  com.apple.datadetectorscore (3.0 - 179.4) <D14F635D-D403-3780-85C9-91EB0CA07F8E> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8f994000 -     0x7fff8facafff  com.apple.vImage (5.1 - 5.1) <A08B7582-67BC-3EED-813A-4833645964A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8facb000 -     0x7fff8fadeff7  libCRFSuite.dylib (??? - ???) <322486D1-359C-3059-BF53-D4B038621E18> /usr/lib/libCRFSuite.dylib
        0x7fff8fb6d000 -     0x7fff8fb98ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <E71220D3-8015-38EC-B97D-7FDB383C2BDC> /usr/lib/libxslt.1.dylib
        0x7fff8fd2b000 -     0x7fff8fd47ff7  com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8fd48000 -     0x7fff8fda8fff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <1E3EEDA7-1DC6-3593-9DED-0BAFA0972A76> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8fe71000 -     0x7fff8fe9afff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8fe9b000 -     0x7fff8febbfff  libPng.dylib (??? - ???) <F4D84592-C450-3076-88E9-8E6517C7EF33> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8fec3000 -     0x7fff90ac9ff7  com.apple.AppKit (6.7.3 - 1138.47) <2618FECE-B780-3682-B493-4200D473ED6F> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff90aca000 -     0x7fff90acdfff  com.apple.help (1.3.2 - 42) <416BA8D2-9A2F-3F07-9E6B-E1231A92AAC0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff90ace000 -     0x7fff90b10ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <A5B9778E-11C3-3F61-B740-1F2114E967FB> /usr/lib/system/libcommonCrypto.dylib
        0x7fff90b11000 -     0x7fff90b51fe7  libGLImage.dylib (??? - ???) <11B7E8A0-F475-32BD-9234-1E245384F586> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff90b52000 -     0x7fff90c59fe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
        0x7fff90c5a000 -     0x7fff90c71fff  com.apple.CFOpenDirectory (10.7 - 146) <BBB7C97E-7B46-3286-9128-32B5D16B5CBE> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff90c72000 -     0x7fff90c78fff  IOSurface (??? - ???) <77C6757B-D357-3E34-9424-48F962B5CC9C> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff90c79000 -     0x7fff90d0fff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <C06C0706-3462-3F24-A8BE-4DA8076DE59F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff90d23000 -     0x7fff90d23fff  com.apple.Carbon (153 - 153) <51D75B5A-3F04-32C9-BBA4-A96AF6E3FDFA> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff90daf000 -     0x7fff90dbefff  com.apple.opengl (1.8.0 - 1.8.0) <F487C903-3082-3528-916D-AC96AFF23927> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff90ea5000 -     0x7fff90f9afff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
        0x7fff915c3000 -     0x7fff915d9fff  libGL.dylib (??? - ???) <E0183967-5EA6-3428-AC3B-0403A06F0E3F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff917ed000 -     0x7fff9180aff7  com.apple.openscripting (1.3.3 - ???) <F5E34F54-CE85-334B-8F25-53581D43960C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff9180b000 -     0x7fff91c38fff  libLAPACK.dylib (??? - ???) <C7456566-4B04-3971-8D62-DE0DEBE811B7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff91c39000 -     0x7fff91c5dfff  com.apple.RemoteViewServices (1.4 - 44.1) <EA3837DF-A3A3-37FF-AE11-D50048D5F21A> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff91c69000 -     0x7fff91d4ded7  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <76082BBC-446B-3355-AED5-0DBCEE600CB2> /usr/lib/libobjc.A.dylib
        0x7fff91e20000 -     0x7fff91e21ff7  libsystem_sandbox.dylib (??? - ???) <96D38E74-F18F-3CCB-A20B-E8E3ADC4E166> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff91fba000 -     0x7fff91fbafff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <4F7416F1-A069-3A39-B5F1-008279F6B819> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff923ac000 -     0x7fff9244dff7  com.apple.LaunchServices (480.34 - 480.34) <67D5B865-B4B6-3522-8652-654A4E3F4B6D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff9267a000 -     0x7fff926adff7  com.apple.GSS (2.2 - 2.0) <971395D0-B9D0-3FDE-B23F-6F9D0A2FB95F> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff926b1000 -     0x7fff926b4fff  libCoreVMClient.dylib (??? - ???) <28CB0F3F-A202-391F-8CAC-FC9A1398A962> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff9275c000 -     0x7fff9279efff  com.apple.corelocation (330.12 - 330.12) <61E65321-958C-3E89-9F02-05BD2B7D898D> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff9279f000 -     0x7fff927dffff  libtidy.A.dylib (??? - ???) <E500CDB9-C010-3B1A-B995-774EE64F39BE> /usr/lib/libtidy.A.dylib
        0x7fff927e0000 -     0x7fff92dc4fff  libBLAS.dylib (??? - ???) <09028536-1215-324C-B7BD-384CF5DBC5D0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff935cc000 -     0x7fff935ccfff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff93bc3000 -     0x7fff93e37fff  com.apple.CoreImage (7.98 - 1.0.1) <1E7BFFE3-4A46-317F-A1C0-A6FE040DE908> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff93e38000 -     0x7fff93f15fef  libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <535C622E-2C14-3DD4-98D0-EA181DF8D582> /usr/lib/system/libsystem_c.dylib
        0x7fff93f16000 -     0x7fff93f91ff7  com.apple.print.framework.PrintCore (7.1 - 366.3) <51681D6E-62D3-3B7D-9981-D3FC3568BAB6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff93f92000 -     0x7fff93f97ff7  libsystem_network.dylib (??? - ???) <DD7492F9-39FB-3E73-9028-3E1027D012B9> /usr/lib/system/libsystem_network.dylib
        0x7fff93f98000 -     0x7fff93fc1fff  com.apple.CoreVideo (1.7 - 70.3) <9A9D4058-9935-3B0A-B1A6-27EB78D02249> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff93feb000 -     0x7fff93ff9fff  com.apple.NetAuth (3.2 - 3.2) <B247BEAB-E3DA-3075-A2E5-BD3371AB0FA4> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff93ffa000 -     0x7fff9409ffff  com.apple.ink.framework (1.4 - 110) <93447D68-3018-30EB-9359-56385DDE4BA7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff940bb000 -     0x7fff9410fff7  com.apple.ScalableUserInterface (1.0 - 1) <EB468227-3203-38C9-A5BC-E28576D507CF> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff9411f000 -     0x7fff9412efff  libxar.1.dylib (??? - ???) <58B07AA0-BC12-36E3-94FC-C252719A1BDF> /usr/lib/libxar.1.dylib
        0x7fff9412f000 -     0x7fff94234fff  libFontParser.dylib (??? - ???) <DA05BC85-D79C-3F8E-A641-3E1E63B8E842> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff94237000 -     0x7fff9423cfff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
        0x7fff942a1000 -     0x7fff942e0fff  com.apple.AE (527.7 - 527.7) <9B3F7EC2-EDE2-3123-BAA5-C36A09BA038E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff942ed000 -     0x7fff942eeff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
        0x7fff94313000 -     0x7fff94315ff7  com.apple.print.framework.Print (7.4 - 247.3) <626C58D5-2841-3329-8C32-9F4A8353F3E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff94316000 -     0x7fff9436efff  libTIFF.dylib (??? - ???) <A0FF68DE-2935-30E7-B61C-4D9D70E14AD0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff9436f000 -     0x7fff94658ff7  com.apple.security (7.0 - 55148.1) <19F7B16B-B974-3274-886F-B8B2FA56032F> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff94659000 -     0x7fff94b62ff7  com.apple.RawCamera.bundle (3.14.0 - 646) <75A96BFC-1832-808B-F430-C4C9379C5A98> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff94b6b000 -     0x7fff94b80fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <4DD43F2F-7688-3028-868C-4E2876AFBF21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff94b81000 -     0x7fff94c23fff  com.apple.securityfoundation (5.0 - 55116) <1E062087-A9B1-3E38-8133-E9D282EA34B0> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff94c90000 -     0x7fff94c90fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <A42ACCF8-7C09-3891-B2B3-F6048A650BA2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff94c91000 -     0x7fff94d58ff7  com.apple.ColorSync (4.7.4 - 4.7.4) <F00820E4-7753-3F41-8D3D-95CD6F174886> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff94de9000 -     0x7fff94de9fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
        0x7fff94df7000 -     0x7fff94e45fff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
        0x7fff94e46000 -     0x7fff94e73fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <BD83ECD7-B044-364F-9392-9AE1FB3BBBD6> /usr/lib/libSystem.B.dylib
        0x7fff94e74000 -     0x7fff94e82ff7  libkxld.dylib (??? - ???) <9F65E9DF-2A92-3CE2-BA34-247D392DAB48> /usr/lib/system/libkxld.dylib
        0x7fff94e83000 -     0x7fff94e88fff  libGIF.dylib (??? - ???) <8763F67F-A881-30B6-B20E-D395B4D9FD58> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff94e89000 -     0x7fff94f96fff  libJP2.dylib (??? - ???) <5BE8CFA7-00C2-3BDE-BC20-5FF6DC18B415> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff94f97000 -     0x7fff94f9cfff  libcache.dylib (47.0.0 - compatibility 1.0.0) <3D114C8A-AD1F-3C78-9E8C-B8F3810740E5> /usr/lib/system/libcache.dylib
        0x7fff94fb2000 -     0x7fff9510bfff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <E5B0E9FC-9823-33DD-BE31-C856CF9BB451> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff9510c000 -     0x7fff95117fff  com.apple.CommonAuth (2.2 - 2.0) <77E6F0D0-85B6-30B5-B99C-F57104DD2EBA> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff95119000 -     0x7fff9519dff7  com.apple.ApplicationServices.ATS (317.11.0 - ???) <46ED8F7A-01E9-3733-A531-3512DA8BC113> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff9519e000 -     0x7fff951ceff7  com.apple.DictionaryServices (1.2.1 - 158.2) <3107DEB8-A19E-3C51-8F2D-67CCE49FD401> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff951cf000 -     0x7fff95254ff7  com.apple.Heimdal (2.2 - 2.0) <A9FC8FF4-8D02-3D91-B409-AF19B72AEFDE> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff952cc000 -     0x7fff952cefff  libquarantine.dylib (36.6.0 - compatibility 1.0.0) <0EBF714B-4B69-3E1F-9A7D-6BBC2AACB310> /usr/lib/system/libquarantine.dylib
        0x7fff952cf000 -     0x7fff953e7fff  com.apple.DesktopServices (1.6.4 - 1.6.4) <E1A724B2-0DCD-338B-86E2-76AB498DBA2E> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff9544d000 -     0x7fff9544efff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff9544f000 -     0x7fff954e9ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C5585E08-76A0-34E0-B92C-22BA9D3E083C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff954ea000 -     0x7fff954f0fff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <548BAEB6-8C4C-3B0F-AB0C-7E1C960BCAB5> /usr/lib/system/libmacho.dylib
        0x7fff959fd000 -     0x7fff95a65ff7  com.apple.audio.CoreAudio (4.0.3 - 4.0.3) <18776038-F2E5-360B-92BF-9263325E7F7D> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff95af9000 -     0x7fff95afbfff  com.apple.TrustEvaluationAgent (2.0 - 1) <3087AE86-B57F-3D39-9885-C93DC6FD5163> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff95afc000 -     0x7fff95affff7  com.apple.securityhi (4.0 - 1) <CA808DC8-7DCF-3B96-A6E8-C9A777C55DF9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff95b00000 -     0x7fff95b07fff  com.apple.NetFS (4.0 - 4.0) <30AAE235-3F64-38BC-B0C9-271C8979C1C9> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff95b47000 -     0x7fff95b5dff7  com.apple.ImageCapture (7.0.1 - 7.0.1) <BF4EC1CC-C998-3529-A69F-765774C66A6F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff95be2000 -     0x7fff95c0bff7  com.apple.framework.Apple80211 (7.4 - 740.2) <341665EC-C964-34E0-92E1-743A66F94A44> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff95c0c000 -     0x7fff95c15ff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
        0x7fff962db000 -     0x7fff962dbfff  com.apple.vecLib (3.7 - vecLib 3.7) <F968254A-2A06-3E2A-A587-151D7A2DB55A> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff964ee000 -     0x7fff964eefff  com.apple.ApplicationServices (41 - 41) <E23F1CED-C0FB-35A8-9657-484C5E6A32AE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff964ef000 -     0x7fff96538ff7  com.apple.framework.CoreWLAN (2.1.2 - 212.2) <F8F7E96C-C256-329B-AAEE-3F770B79EE04> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff96539000 -     0x7fff9653afff  libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <853BAAA5-270F-3FDC-B025-D448DB72E1C3> /usr/lib/system/libdnsinfo.dylib
        0x7fff9653b000 -     0x7fff96576fff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
        0x7fff96577000 -     0x7fff9657dfff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <22E77322-56E7-3730-9289-D8825A08408F> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff9657e000 -     0x7fff965a6fff  com.apple.PerformanceAnalysis (1.11 - 11) <8D4C6382-DD92-37A2-BCFC-E89951320848> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff965a7000 -     0x7fff9677bff7  com.apple.CoreFoundation (6.7.2 - 635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff96b26000 -     0x7fff96b33fff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <36A15341-34AB-3D2B-96AD-15E198AA5180> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff96b34000 -     0x7fff96b5fff7  com.apple.CoreServicesInternal (113.17 - 113.17) <3D222F99-6155-363D-8B84-263B80500226> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff96b60000 -     0x7fff96c3fff7  com.apple.ImageIO.framework (3.1.2 - 3.1.2) <CDA0CC54-1442-3467-91D6-44456BD93733> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff96e43000 -     0x7fff96e48fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
        0x7fff96e4e000 -     0x7fff96e50fff  libCVMSPluginSupport.dylib (??? - ???) <CBAE2CCA-3B42-328E-8FA5-5EF22622EAEB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff96e51000 -     0x7fff96f04ff7  com.apple.CoreText (220.20.0 - ???) <4C3E0213-2627-37D1-8550-E30A0EA6C262> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff96f05000 -     0x7fff96f70ff7  com.apple.framework.IOKit (2.0 - ???) <BA8FC1EB-0360-394F-9D6C-1D58BB187466> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff97ca9000 -     0x7fff97cadfff  libdyld.dylib (195.6.0 - compatibility 1.0.0) <FFC59565-64BD-3B37-90A4-E2C3A422CFC1> /usr/lib/system/libdyld.dylib
        0x7fff97cf3000 -     0x7fff97d17fff  com.apple.Kerberos (1.0 - 1) <5A114BAB-19C7-30B1-B9FB-F40019499734> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff97d18000 -     0x7fff97d1cfff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
        0x7fff97d9a000 -     0x7fff97da5ff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
        0x7fff97da8000 -     0x7fff97de8ff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <BDD11BE5-A9AB-347C-AB30-FDA1C5603E68> /usr/lib/libcups.2.dylib
        0x7fff97f73000 -     0x7fff97f74fff  libunc.dylib (24.0.0 - compatibility 1.0.0) <0482C762-746D-37EB-A8C9-E1048CF70462> /usr/lib/system/libunc.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 3
        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: 4932
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=186.9M resident=93.2M(50%) swapped_out_or_unallocated=93.8M(50%)
    Writable regions: Total=1.1G written=4188K(0%) resident=5404K(0%) swapped_out=0K(0%) unallocated=1.1G(100%)
    REGION TYPE                        VIRTUAL
    ===========                        =======
    CG shared images                      128K
    CoreServices                         1336K
    JS JIT generated code                   8K
    JS JIT generated code (reserved)      1.0G        reserved VM address space (unallocated)
    MALLOC                               44.2M
    MALLOC guard page                      64K
    SQLite page cache                     192K
    STACK GUARD                          56.0M
    Stack                                10.5M
    VM_ALLOCATE                            64K
    __CI_BITMAP                            80K
    __DATA                               16.1M
    __IMAGE                               528K
    __LINKEDIT                           61.1M
    __RC_CAMERAS                          248K
    __TEXT                              125.9M
    __UNICODE                             544K
    mapped file                          24.7M
    shared memory                         312K
    ===========                        =======
    TOTAL                                 1.3G
    TOTAL, minus reserved VM space      342.0M
    Model: MacBookPro9,2, BootROM MBP91.00D3.B06, 2 processors, Intel Core i5, 2.5 GHz, 4 GB, SMC 2.2f38
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In, 384 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1600 MHz, 0x02FE, 0x45424A3230554638424455302D474E2D4620
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1600 MHz, 0x02FE, 0x45424A3230554638424455302D474E2D4620
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xF5), Broadcom BCM43xx 1.0 (5.106.198.19.21)
    Bluetooth: Version 4.0.7f2, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: APPLE HDD TOSHIBA MK5065GSXF, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-8A8
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1a100000 / 2
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0x1a110000 / 3
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1d100000 / 2
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0x1d180000 / 3
    USB Device: BRCM20702 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x1d181000 / 6
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821d, 0x1d181300 / 9
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0252, 0x1d183000 / 5
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x1d182000 / 4

  • I was using my wifi last night when I got an error message stating my ip address had been taken over.  Then safari stopped working and i can no longer access the internet. I looked at my ip address and it states 000.000.000....can someone please help?

    I was using my wifi last night when I got an error message stating my ip address had been taken over.  Then safari stopped working and i can no longer access the internet. I looked at my ip address and it states 000.000.000....can someone please help?

    Sounds like a bogus pop up. In any case power down your Mac, your modem, your router. Then power back up in 1 minute sequence; modem, router, Mac.

  • Best way to format my 16GB flash drive for Mac and PC transferring large power point files?

    best way to format my 16GB flash drive for Mac and PC transferring large power point files?

    format flash drive in Exfat for transferring files between Mac and Pc.
    FORMAT TYPES
    FAT32 (File Allocation Table)
    Read/Write FAT32 from both native Windows and native Mac OS X.
    Maximum file size: 4GB.
    Maximum volume size: 2TB
    You can use this format if you share the drive between Mac OS X and Windows computers and have no files larger than 4GB.
    NTFS (Windows NT File System)
    Read/Write NTFS from native Windows.
    Read only NTFS from native Mac OS X
    To Read/Write/Format NTFS from Mac OS X, here are some alternatives:
    For Mac OS X 10.4 or later (32 or 64-bit), install Paragon (approx $20) (Best Choice for Lion)
    Native NTFS support can be enabled in Snow Leopard and Lion, but is not advisable, due to instability.
    AirPort Extreme (802.11n) and Time Capsule do not support NTFS
    Maximum file size: 16 TB
    Maximum volume size: 256TB
    You can use this format if you routinely share a drive with multiple Windows systems.
    HFS+ ((((MAC FORMAT)))) (Hierarchical File System, a.k.a. Mac OS Extended (Journaled) Don't use case-sensitive)
    Read/Write HFS+ from native Mac OS X
    Required for Time Machine or Carbon Copy Cloner or SuperDuper! backups of Mac internal hard drive.
    To Read HFS+ (but not Write) from Windows, Install HFSExplorer
    Maximum file size: 8EiB
    Maximum volume size: 8EiB
    You can use this format if you only use the drive with Mac OS X, or use it for backups of your Mac OS X internal drive, or if you only share it with one Windows PC (with MacDrive installed on the PC)
    EXFAT (FAT64)
    Supported in Mac OS X only in 10.6.5 or later.
    Not all Windows versions support exFAT. 
    exFAT (Extended File Allocation Table)
    AirPort Extreme (802.11n) and Time Capsule do not support exFAT
    Maximum file size: 16 EiB
    Maximum volume size: 64 ZiB
    You can use this format if it is supported by all computers with which you intend to share the drive.  See "disadvantages" for details.

  • Case in Update statement

    hi,
    How to use the case or decode statement in Update statement.

    Welcome to Oracle Technology network!
    This forum is for SQL*Developer issues - things realed directly to Oracle's SQL*Developer product. Your quesiton about CASE statements in UPDATES is a general SQL question. You will get a better answer if you close this thread and open it again in the SQL and PL/SQL forum which is for SQL questions

  • G/L account in cash and bank statement

    Dear All,
    How to fill the field GL account in the cash and bank statement ? I have press tab but still can't open the list of G/L account. Thanks
    Rgds,
    Mark

    Jimmy, tks for your wonderful and quick answer. I am using PE 680.01.70 version. It is still under my exploration if our company top management would like to use it, I think we will use. I'll be back to check your answers. if nothing well, I will unassign the points.
    CU

  • IPhone 4, Flip leather case and the 'Compass' app..just some info

    Hello Members, and anyone new to the iPhone 4 with a 'Flip' type case that has a magnetic clasp.
    I had just got my new Iphone 4, and after fully updating it to iOS 4.1, I'd successfully managed to fix the screen protector that came with the all 'leather' flip case, and proceeded to slide the Iphone into it's new luxury coat closing it securely.
    Leaving it while, and then coming back to my Iphone, I started to explore the device and went straight for the 'compass' app, just to see it working....
    I notice it wasn't operating correctly, the app would either be really difficult to calibrate, and when it did, the pointer would not be stable and jerked around a lot.
    Anyway...I found the 'flip' case to have been a bad choice purely because of a design flaw, see the phone kept wanting to slide out as I would use it, so off I went to buy another one.
    I settled for one which was made of plastic, it was a black 'enclosure' type and even included the screen protector built into it, so no having to mess about with sticky thin films either..great, just snap the two half's together...job done!
    Again, back at home and in the same location, I again started to explore the iPhone going from browser to app, and again fell back onto the 'compass' application, only this time it worked flawlessly, no having to 'calibrate' and re-calibrate, no jerking from the pointer, it worked smoothly and faultlessly, and then it had occurred to me as to why this might be.....?
    The Iphone's directional tech is influenced by magnetic fields, regardless of whether it's 'geographic' north or 'magnetic' north, and was being influenced by the magnet that was contained in the clasp of the leather 'flip' case, I new this could only be the possible reasoning, as I'd been trying to get the 'app' to work all the time even when I'd crossed my local park while still in the 'flip' case on my way to the store, with always the same bad results, it was only when the Iphone was in it's new case did the compass app work correctly.
    So, just a consideration to any new users of the iPhone 4, that's using a case that's got any kind of magnet, and that's having the same issues that I suffered, remember to 'calibrate' and try the 'compass' application out of these type's of case's before thinking there's a software problem, or fault with your Iphone4.
    Kind regards
    Livio

    Figured it out! Compass Calibration was off in Settings - Location Services

  • CASE and CONVERT in Q of Q / CF7

    Am converting CF5 code to CF7, and from documentation,
    understand you can do more things in Query-of-Queries in CF7 than
    you could in CF5.
    But one QofQ that worked in CF5 won't work in CF7, returns an
    error. It uses a variable that on occassion causes a division by
    zero. This was never a problem with CF5, but CF7 won't take it. In
    a normal query, I would handle by using a CASE statement. So my
    question is: CAN YOU USE "CASE" statements in CF7 QofQ's? And what
    about CONVERT or CAST? Can you use those as well, in CF7 QofQ's?
    Thanks for any help/advice.
    Gary

    Thanks to you both for confirming what my testing and
    doc-reading seemed to confirm. That you can't use CASE or CONVERT
    in a CF7 QofQ. I think you're right about CAST but not sure if that
    will solve my problem. QofQ in CF5 was "flaky" enough to permit a
    division by zero. But I had to "account" for it in my
    <CFOUTPUT>, in order to get the report to run and print 0%.
    Here's my situation. Current CF5 (and CF7) in main query, I'm
    calculating the values of a number of variables, let's say one of
    them is A, the other B. In the old CF5 QofQ, I could do an "A
    divided by B" as C, where C was my Percent Complete. And if B was
    ever ZERO, the CF5 QofQ would still run. For some reason, QofQ in
    CF5 was "flaky" enough to permit this.
    But in my <CFOUTPUT>, I would have to check the value
    of B. If it was equal to zero, then I'd set C = to "0%" or "N/A",
    and output the results, which printed fine on the report. If B was
    not = to ZERO, then I'd re-calculate the percentage, and set C = A
    divided by B, and output "C%" in the report.
    But with CF7, the template throws an error in the QofQ, when
    it encounters an instance where B = 0. The error message is:
    "Query Of Queries runtime error. java.lang.Double ->
    BigDecimal "
    I can resolve by adding a HAVING statement to first query,
    only accepting records where B > 0. Problem with that, is I lose
    the display of the record that I would like to have shown, but
    showing 0%, versus not bein there at all. I did read in the docs,
    before posting message, that CAST can be used in CF7 QofQ, but not
    sure if that will resolve the problem.
    I'll figure something out, but the main reason for posting
    the initial question was to verify from others, that CASE and
    CONVERT can NOT be used in CF7's QofQ's. The docs simply didn't
    mention one way or the other regarding these 2 query functions.
    If you or anyone else has any other suggestions, I would be
    most grateful. Otherwise, as mentioned, will hopefully be able to
    figure something out. Thanks again,
    Gary

Maybe you are looking for