Error: The AcquireConnection method call to the connection manager failed with error code 0xC0202009 using DB2 connection

I have a SSIS project that I am newly running on the SQL server (2005) .  It was previously run on my PC.  I am importing data from a DB2 server to the SQL server.
I am in the SA group on the server
My connection to DB2 works
When open the package and run it in preview mode, I can retrieve the data.
When I execute the package I get the below errors:
[MIDAS OLE DB Source [1]] Error: The AcquireConnection method call to the connection manager "NGMDSPA.alharris" failed with error code 0xC0202009.
[DTS.Pipeline] Error: component "MIDAS OLE DB Source" (1) failed validation and returned error code 0xC020801C.
What I have already done that has not worked:
The original Protection level was set to EncryptSensitiveWithPassword. 
I have reset the Package Password.
I have set the protection level to DontSaveSensitive
I saved the package on the server and set a Package Password.
I created a new package, set the Protection level to DontSaveSensitive, set a package password in a configuration file using the Package Configuration Wizard.
Error continues

Yes.  The Drivers are installed and I have a successfull connection.  I am trouble shooting the issue on the server in BIDS.  I can connect to the DB2 server via the Connectionmanager.  I can also preview the data in the OLE
DB source connection.  Therefore I know that I have a proper connection
If you're setting option as DontSaveSensitive then you need to pass the connection information from configuration file/ config table. Otherwise it wont be able to use it for connecting to your source/destination servers. This is the recommended way as it
will enable you to change connection info at runtime.
If you want connection info to persist you need to use protection level as EncryptSensitiveUsingUserKey or EncryptSensitiveUsingPassword and set a password.
Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

Similar Messages

  • [Load data from excel file [1]] Error: SSIS Error Code DTS_E_CANNOTACQUIRECONNECTIONFROMCONNECTIONMANAGER. The AcquireConnection method call to the connection manager "Excel Connection Manager" failed with error code 0xC0202009. There may be error messa

    Error
    [Load data from excel file [1]] Error: SSIS Error Code DTS_E_CANNOTACQUIRECONNECTIONFROMCONNECTIONMANAGER.  The AcquireConnection method call to the connection manager "Excel Connection Manager" failed with error code 0xC0202009.  There
    may be error message
    I am using BIDS Microsoft Visual Studio 2008 and running the package to load the data from excel .
    My machine has 32 bit excel hence have set property to RUN64BITRUNTIME AS FALSE.
    But the error still occurs .
    I checked on Google and  many have used Delay validation property at Data flow task level to true but even using it at both excel connection manager and DFT level it doesnt work
    Mudassar

    Thats my connection string
    Provider=Microsoft.ACE.OLEDB.12.0;Data Source=E:\SrcData\Feeds\Utilization.xlsx;Extended Properties="Excel 12.0;HDR=NO";
    Excel 2010 installed and its 32 bit edition
    Are you referring to install this component -AccessDatabaseEngine_x64.exe?
    http://www.microsoft.com/en-us/download/details.aspx?id=13255
    Mudassar
    You can try an OLEDB provider in that case
    see
    http://dataintegrity.wordpress.com/2009/10/16/xlsx/
    you might need to download and install ms access redistributable
    http://www.microsoft.com/en-in/download/details.aspx?id=13255
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • SSIS 2012: SSIS Error Code "Excel Connection Manager" failed with error code 0xC0202009.

    Hi,
    This is kind of weird issue that I am experiencing with excel connection manager in SSIS 2012. This issue occurs sometimes but when I close and re-open SSDT (SQL Server Data Tools - newer BIDS) then this issues goes off temporarily.
    Just FYI, through SSDT environment I executed the package successfully with both settings Run64bit runtime setting to Yes and No when error does not occur.
    So far I have installed
    http://www.microsoft.com/en-us/download/details.aspx?id=13255 (Microsoft Access Database Engine 2010 Redistributable).
    I still remember for older versions of SQL Server (2005 & 2008) that I have executed Excel connection SSIS packages with Run64bit runtime = false i.e. in 32-bit mode. As far as I know I think Excel 64-bit issue has been resolved with SQL Server
    2012 release.
    Here is the detail of error message:
    TITLE: Package Validation Error
    Package Validation Error
    ADDITIONAL INFORMATION:
    Error at Data Flow Task [Excel Source [2]]: SSIS Error Code DTS_E_CANNOTACQUIRECONNECTIONFROMCONNECTIONMANAGER.  The AcquireConnection method call to the connection manager "Excel Connection
    Manager" failed with error code 0xC0202009.  There may be error messages posted before this with more information on why the AcquireConnection method call failed.
    Error at Data Flow Task [SSIS.Pipeline]: Excel Source failed validation and returned error code 0xC020801C.
    Error at Data Flow Task [SSIS.Pipeline]: One or more component failed validation.
    Error at Data Flow Task: There were errors during task validation.
    Error at Package [Connection manager "Excel Connection Manager"]: SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. Error code: 0x80004005.
    An OLE DB record is available.  Source: "Microsoft Access Database Engine"  Hresult: 0x80004005  Description: "Unspecified error".
     (Microsoft.DataTransformationServices.VsIntegration)
    Here are my environment details:
    SQL Server 2012 {Microsoft SQL Server 2012 (SP1) - 11.0.3368.0 (X64) } , Excel 2010 (32-bit). I am developing SSIS code on Virtual desktops with Windows 7 32-bit OS.
    Also it occurred to me that since Virtual Desktops are on Shared Infrastructure, the source files and SSIS packages (code) can be on Shared drives for e.g. \\<Corpnet>\userdata\<Corp_Users_Grp>\<Username>\Visual Studio 2010\Projects\Integration
    Services Project2\Integration Services Project2\Package.dtsx.
    Does this kind of Shared drives have any impact to give this issue?
    Thanks in advance!
    Ketan
    P.S.: I had look at this forum question -->
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/903bbe1d-e070-4c43-9d3b-0a5193550029/64bit-error-in-excel-connection-manager-in-ssis

    Hi Arthur,
    Thanks for your response.
    Yes, it looks like SSIS still has bunch of issues with Excel files like as follows:
    1) Some times excel source files cannot be parsed by excel source connection manager.
    2) For derive column conversion, we can't replace the existing column. rather, we have to add the derived column as " add as new column" which is tough to manage  while destination mapping.
    3) If an column in excel contains a data which is not of the data type assigned for the column in excel, the excel source reads that data as "null". For the same, we can't validate the data and redirect the erroneous data in reject file.  <-- For
    this we tried IMEX setting also
    4) In multi-tab/sheet excel file, excel source is unable to detect a tab and identify the metadata of the excel.
    I am also checking Microsoft connect for Excel issues with SSIS 2012(https://connect.microsoft.com/SQLServer/SearchResults.aspx?SearchQuery=excel#&&PageIndex=22
    As worst case scenario, I am thinking of converting Excel to CSV file or Flat text file. (http://www.mssqltips.com/sqlservertip/2772/importing-data-from-excel-using-ssis--part-2/).
    Do you think it is advisable to convert Excel into CSV or Flat file.
    Thanks,
    Ketan

  • AcquireConnection method call to the connection manager Excel connection Manager failed

    I used VS Studio 2008 (BIDS version 10.50.2500.0) on an WinXp machine (v 5.1.2600 SP3 Build 2600) to create a package that writes multiple query results to different tabbed sheets of a single excel spreadsheet. The package was working just fine and has run
    successfully multiple times, but all of a sudden when opening the project, every single Data Flow task with an Excel Connection Manager displayed error icons. Each raises the following error message when attempting to open the Advanced Editor:
    SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has occurred. Error code: 0x80004005 Description: "Unspecified error". Error at DataFlow task name: SSIS error Code DTS_E_CANNOTACQUIRECONNECTIONFROMCONNECTIONMANAGER. The AcquireConnection method
    call to the connection manager Excel connection Manager failed with error code 0xC0202009. There may be error messages posted before this with more information on why the Acquire Connection method call failed. Exception from HRESULT: 0Xc020801c (Microsoft.SQlServer.DTSPipelineWrap)
    From the time I created the original package (when it worked fine) until now:
     1) I have been using the same computer, the same login account and the same permissions.
     2) I have been writing to the same (32 bit) 2010 Excel file (which I created) in a folder on my local machine.
     3) The filename and location have not changed; a template file is used each time to move and overwrite the previous file. Both are in the same locations.
     4) I can independently open the target Excel file and the template Excel files with no errors.
     6) The ConnectionString has not changed. The Connnection String I am using is
      Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Conversion\Conversion\Results_dt01.xlsx;Extended Properties="EXCEL 12.0 XML;HDR=YES;".
     7) Run64BitRuntime is set to False.
    8)  Delay Validation is set to true
    9) This is not running under a SQL job  
    10) There are no child packages being run
    I CAN create a NEW Excel Connection Manager, assigning it the exact same target Excel spreadsheet, successfully, but when I attempt to assign it to the Data Flow destination this error occurs:
    "Test connection failed because of an error in initializing provider. Unspecified error."
    Thinking that the driver might be corrupt, I opened a second SSIS package, which also uses the Excel Connection Manager (same driver) and this package continues to work fine on the same workstation with no errors.
    I have searched online for causes of this error for many hours and found nothing that helps me to solve this issue.
    Does anyone have any suggestions for me?

    Yes, I have verified that the Excel file is not in use or opened by anyone, including me. It has been two months since I opened this particular package, although I have been working with other packages in this project. I just discovered that another
    package in the same project has the same problem - all Data Flows that output to an Excel Destination now have the same error icons. This second packages outputs to an entirely different Excel file than in the first package.  A summay:
    Package #1 has error on every Excel Destination and uses templateA to overwrite fileA and then writes to fileA
    Package #2 has error on every Excel Desintation and uses templateB to overwrite fileB and then writes to fileB
    Package #3 has no error on any Excel Destination and is linked to multiple files (none are A or B)
    Package #1 and #2 are in the same project, but Package #3 is in a separate project .
    I will try replacing the Excel files with new ones for Package 1 and 2.

  • The AcquireConnection method call failed with error code 0xC0202009.

    I've seen the previous threads on this (although maybe not all of them). However, i don't think I'm getting the error for the same reason. The full error I'm getting is:
    - Pre-execute (Error)
    Messages
    Error 0xc0202009: {F1B3B35C-FAE3-48F6-A169-4E4D8D99F9B6}: An OLE DB error has occurred. Error code: 0x80004005.
    An OLE DB record is available.  Source: "Microsoft JET Database Engine"  Hresult: 0x80004005  Description: "Unspecified error".
     (SQL Server Import and Export Wizard)
    Error 0xc020801c: Data Flow Task: The AcquireConnection method call to the connection manager "DestinationConnectionExcel" failed with error code 0xC0202009.
     (SQL Server Import and Export Wizard)
    Error 0xc004701a: Data Flow Task: component "Destination 64 - production_effectivities" (7042) failed the pre-execute phase and returned error code 0xC020801C.
     (SQL Server Import and Export Wizard)
    The entire package is running on one machine. The data source is SQL Server 2005 and the destination (this happens with both of them) is Excel or Access. Either way I cannot get the package which the wizard generated to run at all. This error occurs after the first table is exported. I'm running on WinXP SP2 with 2005 Developer and ALL components installed except analysis services.
    Anyone else have this problem or know the solution?
    Jeff

    I am getting the same error. My Destination and source both are on SQL Server 2005 on the same box.
    I am using SQL- Code for Source and and table as destination. When the package runnes under Transaction- TransactionOption-Supported then the packages excuted fine but it fails when i change the Transaction- TransactionOption to Required.
    It fails with following error code.
    [OLE DB Destination [22]] Error: The AcquireConnection method call to the connection manager "FMFCLSQADB01.DWH_Rakesh" failed with error code 0xC0202009.
    [DTS.Pipeline] Error: component "OLE DB Destination" (22) failed the pre-execute phase and returned error code 0xC020801C.
    [Connection manager "FMFCLSQADB01.DWH_Rakesh"] Error: The SSIS Runtime has failed to enlist the OLE DB connection in a distributed transaction with error 0x8004D00A "Unable to enlist in the transaction.".
    [Connection manager "FMFCLSQADB01.DWH_Rakesh"] Error: An OLE DB error has occurred. Error code: 0x8004D00A.
    When i change the source SQL query to Table or View then it works fine.
    Thanks for any suggestion.
    Regards
    Rakesh
    Now, my issues related to “SSIS Runtime has failed to enlist the OLE DB connection in a distributed transaction with error 0x8004D00A "Unable to enlist in the transaction."…..”. are fixed.
    This is one of the very common errors that comes up in SSIS (SQL Server Integration service) 
    I have faced this issue for at-least two occasions. Both of them have one common setting: “TransactionOption” was set to “Required”.
    In first case, I had multiple dataflow tasks but there were no sequence given. There were no error if I ran the package with TransactionOption=Supported. But when I ran the package in TransactionOption= Required, it got failed.
    To fix the issue I have changed my package and put the entire dataflow task one after another (connected thru Constraint).  
    In another case, where I was doing data transfer from one server to another, I had to configure the MSDTC.

  • Error in /tmp/applianceagent/scripts/Database.sh: Start database  failed with exit code 2

    Hello
    I have set up the Demo appliance landscape for the openSAP course "Introduction to SAP Fiori UX", on AWS.
    The frontend machine is OK, but the configuration and startup of the server machine has failed for some reason. When logging in with ssh to the server, this message is presented:
    The Appliance Agent detected an error and terminated.
    When asked, please provide the file /tmp/applianceagent_20141002-145658.tar.bz2.
    Note that a restrictive iptables based firewall is still active.
    I have attached the file (had to add .txt to the name to circumvent file type restrictions).
    I noticed that the appliancedeploy.log ended with these lines:
    Start database  Execute /usr/sap/hostctrl/exe/sapcontrol -nr 02 -function StartWait 3600 20
    02.10.2014 13:56:58
    Start
    OK
    02.10.2014 14:56:58
    StartWait
    FAIL: Timeout
    error in /tmp/applianceagent/scripts/Database.sh: Start database  failed with exit code 2
    Notice the 1 hour jump in time, and then the timeout error message.
    Do any of you have any idea what could be causing this, and how to fix it?
    Please let me know if you need any further information.
    Best regards,
    Bo

    Hi Hannes.
    Trying to create and activate a new instance (version 5 of the Fiori appliance), I first got this message in the CAL instance overview list:
    Instance Operation Failed
    Operation Start failed on step Start start VAs with message: Start failed for VM SAP Server due to Amazon Web Services issue : AMAZON : The snapshot 'snap-c779ff64' does not exist.
    Then I terminated the instance and tried over again. And this time the deployment worked - I have a running server, which responds to the SAP GUI, and shows the Fiori web page.
    Thanks a lot for your quick help.
    Best regards,
    Bo

  • XCode error: clang: error: linker command failed with exit code 1 (use -v to see invocation)

    I am trying to make my game,
    but EVERY time it says this:
    clang: error: linker command failed with exit code 1 (use -v to see invocation)
    I have been pulling out my hair for the hours trying to figure out the awnser. There are a bunch of unrelated searches in google when I search it.
    Want to see the ENTIRE dubugging code?
    Ld "/Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccj iwwgdhzsbhnhxmkdpznhsg/Build/Products/Debug-iphonesimulator/The hardest game EVER.app/The hardest game EVER" normal i386     cd "/Users/Rilian/Desktop/Project folder/The hardest game EVER"     setenv IPHONEOS_DEPLOYMENT_TARGET 6.1     setenv PATH "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/ Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/bin:/b in:/usr/sbin:/sbin"     /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/ usr/bin/clang++ -arch i386 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/D eveloper/SDKs/iPhoneSimulator6.1.sdk -L/Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmcc jiwwgdhzsbhnhxmkdpznhsg/Build/Products/Debug-iphonesimulator -F/Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmcc jiwwgdhzsbhnhxmkdpznhsg/Build/Products/Debug-iphonesimulator -filelist "/Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccj iwwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/The hardest game EVER.LinkFileList" -Xlinker -objc_abi_version -Xlinker 2 -lz -lsqlite3 -ObjC -fobjc-link-runtime -Xlinker -no_implicit_dylibs -mios-simulator-version-min=6.1 -framework QuartzCore -framework OpenGLES -framework OpenAL -framework AudioToolbox -framework AVFoundation -framework UIKit -framework Foundation -framework CoreGraphics -framework GameKit -o "/Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccj iwwgdhzsbhnhxmkdpznhsg/Build/Products/Debug-iphonesimulator/The hardest game EVER.app/The hardest game EVER"  duplicate symbol _OBJC_CLASS_$_HelloWorldLayer in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/HelloWorldLayer-288328F8C797DA0F.o duplicate symbol _OBJC_METACLASS_$_HelloWorldLayer in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/HelloWorldLayer-288328F8C797DA0F.o duplicate symbol _OBJC_IVAR_$_AppController.window_ in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/AppDelegate-37806AA464A7BA0D.o duplicate symbol _OBJC_IVAR_$_AppController.director_ in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/AppDelegate-37806AA464A7BA0D.o duplicate symbol _OBJC_IVAR_$_AppController.navController_ in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/AppDelegate-37806AA464A7BA0D.o duplicate symbol _OBJC_METACLASS_$_MyNavigationController in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/AppDelegate-37806AA464A7BA0D.o duplicate symbol _OBJC_CLASS_$_MyNavigationController in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/AppDelegate-37806AA464A7BA0D.o duplicate symbol _OBJC_CLASS_$_AppController in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/AppDelegate-37806AA464A7BA0D.o duplicate symbol _OBJC_METACLASS_$_AppController in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/AppDelegate-37806AA464A7BA0D.o duplicate symbol _OBJC_IVAR_$_CCAction._target in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_IVAR_$_CCAction._originalTarget in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_IVAR_$_CCAction._tag in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_IVAR_$_CCFiniteTimeAction._duration in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_IVAR_$_CCRepeatForever._innerAction in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_IVAR_$_CCSpeed._speed in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_IVAR_$_CCSpeed._innerAction in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_IVAR_$_CCFollow._followedNode in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_IVAR_$_CCFollow._boundarySet in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_IVAR_$_CCFollow._boundaryFullyCovered in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_IVAR_$_CCFollow._fullScreenSize in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_IVAR_$_CCFollow._halfScreenSize in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_IVAR_$_CCFollow._leftBoundary in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_IVAR_$_CCFollow._rightBoundary in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_IVAR_$_CCFollow._topBoundary in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_IVAR_$_CCFollow._bottomBoundary in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_CLASS_$_CCAction in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_METACLASS_$_CCAction in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_METACLASS_$_CCFiniteTimeAction in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_CLASS_$_CCFiniteTimeAction in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_CLASS_$_CCRepeatForever in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_METACLASS_$_CCRepeatForever in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_CLASS_$_CCSpeed in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_METACLASS_$_CCSpeed in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_CLASS_$_CCFollow in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_METACLASS_$_CCFollow in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCAction-21CC60872826DAFF.o duplicate symbol _OBJC_IVAR_$_CCActionCamera._centerXOrig in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCActionCamera._centerYOrig in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCActionCamera._centerZOrig in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCActionCamera._eyeXOrig in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCActionCamera._eyeYOrig in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCActionCamera._eyeZOrig in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCActionCamera._upXOrig in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCActionCamera._upYOrig in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCActionCamera._upZOrig in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCOrbitCamera._radius in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCOrbitCamera._deltaRadius in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCOrbitCamera._angleZ in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCOrbitCamera._deltaAngleZ in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCOrbitCamera._angleX in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCOrbitCamera._deltaAngleX in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCOrbitCamera._radDeltaZ in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCOrbitCamera._radDeltaX in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCOrbitCamera._radZ in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCOrbitCamera._radX in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_CLASS_$_CCActionCamera in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_METACLASS_$_CCActionCamera in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_CLASS_$_CCOrbitCamera in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_METACLASS_$_CCOrbitCamera in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCamera-12CF1EDB8B16FB01.o duplicate symbol _OBJC_IVAR_$_CCPointArray._controlPoints in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _ccCardinalSplineAt in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _OBJC_IVAR_$_CCCardinalSplineTo._tension in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _OBJC_IVAR_$_CCCardinalSplineTo._points in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _OBJC_IVAR_$_CCCardinalSplineTo._deltaT in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _OBJC_IVAR_$_CCCardinalSplineTo._previousPosition in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _OBJC_IVAR_$_CCCardinalSplineTo._accumulatedDiff in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _OBJC_IVAR_$_CCCardinalSplineBy._startPosition in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _OBJC_CLASS_$_CCPointArray in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _OBJC_METACLASS_$_CCPointArray in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _OBJC_CLASS_$_CCCardinalSplineTo in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _OBJC_METACLASS_$_CCCardinalSplineTo in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _OBJC_CLASS_$_CCCardinalSplineBy in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _OBJC_METACLASS_$_CCCardinalSplineBy in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _OBJC_CLASS_$_CCCatmullRomTo in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _OBJC_METACLASS_$_CCCatmullRomTo in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _OBJC_CLASS_$_CCCatmullRomBy in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _OBJC_METACLASS_$_CCCatmullRomBy in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionCatmullRom-3D1DD2FEE071B03.o duplicate symbol _OBJC_IVAR_$_CCActionEase._inner in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_IVAR_$_CCEaseRateAction._rate in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_IVAR_$_CCEaseElastic._period in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCActionEase in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCActionEase in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseRateAction in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseRateAction in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseIn in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseIn in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseInOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseInOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseExponentialOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseExponentialOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseExponentialIn in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseExponentialIn in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseExponentialInOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseExponentialInOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseSineOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseSineOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseSineIn in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseSineIn in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseSineInOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseSineInOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseElastic in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseElastic in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseElasticOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseElasticOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseElasticIn in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseElasticIn in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseElasticInOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseElasticInOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseBounce in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseBounce in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseBounceOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseBounceOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseBounceIn in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseBounceIn in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseBounceInOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseBounceInOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseBackOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseBackOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseBackIn in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseBackIn in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_METACLASS_$_CCEaseBackInOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_CLASS_$_CCEaseBackInOut in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionEase-405E35ABAB3FAB0C.o duplicate symbol _OBJC_IVAR_$_CCGridAction._gridSize in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_IVAR_$_CCAccelDeccelAmplitude._rate in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_IVAR_$_CCAccelDeccelAmplitude._other in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_IVAR_$_CCAccelAmplitude._rate in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_IVAR_$_CCAccelAmplitude._other in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_IVAR_$_CCDeccelAmplitude._rate in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_IVAR_$_CCDeccelAmplitude._other in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_IVAR_$_CCReuseGrid._times in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_CLASS_$_CCGridAction in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_METACLASS_$_CCGridAction in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_METACLASS_$_CCGrid3DAction in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_CLASS_$_CCGrid3DAction in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_METACLASS_$_CCTiledGrid3DAction in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_CLASS_$_CCTiledGrid3DAction in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_CLASS_$_CCAccelDeccelAmplitude in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_METACLASS_$_CCAccelDeccelAmplitude in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_CLASS_$_CCAccelAmplitude in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_METACLASS_$_CCAccelAmplitude in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_CLASS_$_CCDeccelAmplitude in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_METACLASS_$_CCDeccelAmplitude in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_CLASS_$_CCStopGrid in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_METACLASS_$_CCStopGrid in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_CLASS_$_CCReuseGrid in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_METACLASS_$_CCReuseGrid in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid-3160F4000E2FCB0E.o duplicate symbol _OBJC_IVAR_$_CCWaves3D._waves in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCWaves3D._amplitude in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCWaves3D._amplitudeRate in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCLens3D._position in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCLens3D._radius in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCLens3D._lensEffect in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCLens3D._dirty in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCRipple3D._radius in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCRipple3D._waves in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCRipple3D._amplitude in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCRipple3D._amplitudeRate in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCRipple3D._position in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCShaky3D._randrange in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCShaky3D._shakeZ in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCLiquid._waves in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCLiquid._amplitude in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCLiquid._amplitudeRate in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCWaves._waves in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCWaves._amplitude in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCWaves._amplitudeRate in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCWaves._horizontal in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCWaves._vertical in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCTwirl._twirls in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCTwirl._amplitude in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCTwirl._amplitudeRate in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCTwirl._position in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_CLASS_$_CCWaves3D in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_METACLASS_$_CCWaves3D in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_CLASS_$_CCFlipX3D in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_METACLASS_$_CCFlipX3D in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_METACLASS_$_CCFlipY3D in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_CLASS_$_CCFlipY3D in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_CLASS_$_CCLens3D in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_METACLASS_$_CCLens3D in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_CLASS_$_CCRipple3D in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_METACLASS_$_CCRipple3D in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_CLASS_$_CCShaky3D in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_METACLASS_$_CCShaky3D in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_CLASS_$_CCLiquid in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_METACLASS_$_CCLiquid in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_CLASS_$_CCWaves in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_METACLASS_$_CCWaves in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_CLASS_$_CCTwirl in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_METACLASS_$_CCTwirl in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionGrid3D-2263B254711FEB10.o duplicate symbol _OBJC_IVAR_$_CCFlipX._flipX in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionInstant-39A76D3A0BCEABFC.o duplicate symbol _OBJC_IVAR_$_CCFlipY._flipY in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionInstant-39A76D3A0BCEABFC.o duplicate symbol _OBJC_IVAR_$_CCPlace._position in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionInstant-39A76D3A0BCEABFC.o duplicate symbol _OBJC_IVAR_$_CCCallFunc._selector in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionInstant-39A76D3A0BCEABFC.o duplicate symbol _OBJC_IVAR_$_CCCallFunc._targetCallback in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionInstant-39A76D3A0BCEABFC.o duplicate symbol _OBJC_IVAR_$_CCCallFuncND._data in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The hardest game EVER.build/Debug-iphonesimulator/The hardest game EVER.build/Objects-normal/i386/CCActionInstant-39A76D3A0BCEABFC.o duplicate symbol _OBJC_IVAR_$_CCCallFuncND._callbackMethod in:     /Users/Rilian/Library/Developer/Xcode/DerivedData/The_hardest_game_EVER-ctmccji wwgdhzsbhnhxmkdpznhsg/Build/Intermediates/The har

    thank you
    I already did same wt you suggest me.
    Thanks alot for this.:)

  • Error:Package migration from version 8 to version 6 failed with error 0xC001700A

    I was about to post a similar question where the package runs fine on VS2013 but errors when I run DTEXEC from the command prompt. 
    Error:
     Code: 0xC0016020
     Source: Package
     Description: Package migration from version 8 to version 6 failed with error 0xC001700A

    Hi TheDenver,
    Based on the error message that “Package migration from version 8 to version 6 failed with error 0xC001700A ", we can infer that the underlying cause is that the current SSIS package is created in SSDT BI 2014 for Visual Studio 2013, while you are trying
    to execute it with SQL Server 2012 DTEXEC. It seems that SQL Server 2014 Integration Services (SSIS) is installed on a machine that has SQL Server 2012 Integration Services (SSIS) installed, multiple versions of the dtexec utility are installed.
    SSIS versions are not backwards compatible. SSDT BI for VS 2013 is used for SQL Server 2014, SSDT BI for VS 2012/SSDT 2010 is used for SQL Server 2012. Please notice that once a package is upgraded from SSIS 2012 package schema to SSIS 2014 package schema,
    the package cannot be downgraded. So we cannot open or execute the SSIS 2014 packages with SSIS 2012 anymore.
    To fix this, please ensure that you run the correct version of the utility, at the command prompt run the utility by entering the full path (<drive>:\Program Files\Microsoft SQL Server\120\DTS\Binn).
    Reference:
    dtexec Utility
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Signing the windows mobile 8.1 application from commandline fails with error

    Hi,
    I am trying to package the Windows Mobile from commandline using the following commands
    a) Package the application and create an unsigned appx.
    "C:\Program Files (x86)\Windows Kits\8.1\\bin\x86\MakeAppx.exe"  pack /l /h sha256 /f ARM\Debug\package.map.txt /o /p "D:\apps\win\mobile\testWebView\AppPackages\testWV.appx"
    b) Create the self-singed certificate *pvk and *cer
    "C:\Program Files (x86)\Windows Kits\8.1\bin\x86\makecert.exe"  /n "CN=rmahajan" /r /h 0 /eku "1.3.6.1.5.5.7.3.3,1.3.6.1.4.1.311.10.3.13" /e "12/31/2016" /sv myCertRM.pvk myCertRM.cer
    c) Create *pvx from *pvk
    "C:\Program Files (x86)\Windows Kits\8.1\bin\x86\pvk2pfx.exe"  /pvk  myCertRM.pvk /pi "rajatm" /spc myCertRM.cer /pfx myCertRM.pfx /po "rajatm"
    d) Signing the unsigned appx created in first step.
    "C:\Program Files (x86)\Windows Kits\8.1\bin\x86\signtool.exe" sign /fd sha256 /f "myCertRM.pfx" /p "rajatm"  "D:\apps\win\mobile\testWebView\AppPackages\testWV.appx"
    Done Adding Additional Store
    SignTool Error: An unexpected internal error has occurred.
    Error information: "Error: SignerSign() failed." (-2147024693/0x800700cb)
    All the above commands work while the signing command fails with the above error. Could someone please tell me what i am doing wrong here?

    Your Windows Phone 8.1 app will be signed when you upload it to the Windows Store.
    Jeff Sanders (MSFT)
    @jsandersrocks - Windows Store Developer Solutions
    @WSDevSol
    Getting Started With Windows Azure Mobile Services development?
    Click here
    Getting Started With Windows Phone or Store app development?
    Click here
    My Team Blog: Windows Store & Phone Developer Solutions
    My Blog: Http Client Protocol Issues (and other fun stuff I support)

  • Download Manager - failing with error 400 Bad Request

    Each time I try to download some patches from the download basket I get this error: The request failed: 400.  Download Manager says the files are Partially Downloaded but the downloads never complete (they just cycle round one after another attempting each download before failing).  The connection to SAP ssems to be made correctly (see trace file extract below)
    I'm running JRE version 1.4.2_12; download manager ver 2.1.130.  I've tried uninstalling & reinstalling JRE & download manager (numerous times).  Does anyone have any suggestions about what might be the cause?
    Thanks, Chris
    PS - This is the relevant part of the trace file:
    24-Aug-2007 09:29:06   Opening connection to 'https://smpdla.sap.com:443/00000084/217/KGPHA68.CAR?object_id=011000358700000405252007E&filepath=00000084\217\KGPHA68.CAR&uid=S0003245349'
    24-Aug-2007 09:29:06   Sending request to SAP Service Marketplace Server (no tunneling)
    24-Aug-2007 09:29:13   A response was received from the SAP Service Marketplace Server.
    24-Aug-2007 09:29:13   Response received: 400 Bad Request
    24-Aug-2007 09:29:13   Response Http Headers:
    24-Aug-2007 09:29:13      Server=AkamaiGHost
    24-Aug-2007 09:29:13      Mime-Version=1.0
    24-Aug-2007 09:29:13      Content-Type=text/html
    24-Aug-2007 09:29:13      Content-Length=340
    24-Aug-2007 09:29:13      Expires=Fri, 24 Aug 2007 08:28:49 GMT
    24-Aug-2007 09:29:13      Date=Fri, 24 Aug 2007 08:28:49 GMT
    24-Aug-2007 09:29:13      Connection=close
    24-Aug-2007 09:29:13   Response code: 400
    24-Aug-2007 09:29:18   Notifying subscribers of download state ...
    24-Aug-2007 09:29:18   The download has terminated ...
    24-Aug-2007 09:29:18   getUserProxy: true
    24-Aug-2007 09:29:18   getEffectiveProtocol: http
    24-Aug-2007 09:29:18   detected: http / https w/o proxy request
    24-Aug-2007 09:29:18   SMPResponse::sendRequestNormal
    24-Aug-2007 09:29:18   Opening connection to 'http://service.sap.com:80/~form/download_basket?_MODE=OBJECT_VERSION&OBJID=011000358700000485532007E&'
    24-Aug-2007 09:29:18   Sending request to SAP Service Marketplace Server (no tunneling)
    24-Aug-2007 09:29:25   A response was received from the SAP Service Marketplace Server.
    24-Aug-2007 09:29:25   Redirecting to 'https://WEBSMP108.SAP-AG.DE/~form/download_basket?_MODE=OBJECT_VERSION&OBJID=011000358700000485532007E&'...
    24-Aug-2007 09:29:25   getUserProxy: true
    24-Aug-2007 09:29:25   getEffectiveProtocol: https
    24-Aug-2007 09:29:25   detected: http / https w/o proxy request
    24-Aug-2007 09:29:25   SMPResponse::sendRequestNormal
    24-Aug-2007 09:29:25   Opening connection to 'https://WEBSMP108.SAP-AG.DE/~form/download_basket?_MODE=OBJECT_VERSION&OBJID=011000358700000485532007E&'
    24-Aug-2007 09:29:25   Sending request to SAP Service Marketplace Server (no tunneling)
    24-Aug-2007 09:29:25   A response was received from the SAP Service Marketplace Server.
    24-Aug-2007 09:29:25   Response received: 200 OK
    24-Aug-2007 09:29:25   Response Http Headers:
    24-Aug-2007 09:29:25      Date=Fri, 24 Aug 2007 08:29:02 GMT
    24-Aug-2007 09:29:25      Server=Microsoft-IIS/6.0
    24-Aug-2007 09:29:25      Content-Type=text/plain
    24-Aug-2007 09:29:25      Content-Length=44
    24-Aug-2007 09:29:25   getUserProxy: true
    24-Aug-2007 09:29:25   getEffectiveProtocol: http
    24-Aug-2007 09:29:25   detected: http / https w/o proxy request
    24-Aug-2007 09:29:25   SMPResponse::sendRequestNormal
    24-Aug-2007 09:29:25   Opening connection to 'http://service.sap.com:80/~form/download_basket?_MODE=DOWNLOAD_START2&OBJID=011000358700000485532007E&_VERSION=2.1.130&'
    24-Aug-2007 09:29:25   Sending request to SAP Service Marketplace Server (no tunneling)
    24-Aug-2007 09:29:25   A response was received from the SAP Service Marketplace Server.
    24-Aug-2007 09:29:25   Redirecting to 'https://WEBSMP209.SAP-AG.DE/~form/download_basket?_MODE=DOWNLOAD_START2&OBJID=011000358700000485532007E&_VERSION=2.1.130&'...
    24-Aug-2007 09:29:25   getUserProxy: true
    24-Aug-2007 09:29:25   getEffectiveProtocol: https
    24-Aug-2007 09:29:25   detected: http / https w/o proxy request
    24-Aug-2007 09:29:25   SMPResponse::sendRequestNormal
    24-Aug-2007 09:29:25   Opening connection to 'https://WEBSMP209.SAP-AG.DE/~form/download_basket?_MODE=DOWNLOAD_START2&OBJID=011000358700000485532007E&_VERSION=2.1.130&'
    24-Aug-2007 09:29:25   Sending request to SAP Service Marketplace Server (no tunneling)
    24-Aug-2007 09:29:26   A response was received from the SAP Service Marketplace Server.
    24-Aug-2007 09:29:26   Response received: 200 OK
    24-Aug-2007 09:29:26   Response Http Headers:
    24-Aug-2007 09:29:26      Date=Fri, 24 Aug 2007 08:29:03 GMT
    24-Aug-2007 09:29:26      Server=Microsoft-IIS/6.0
    24-Aug-2007 09:29:26      Content-Type=text/html
    24-Aug-2007 09:29:26      Content-Length=2416
    24-Aug-2007 09:29:26   Number of URLs: 1
    24-Aug-2007 09:29:26   Description lines: 56
    24-Aug-2007 09:29:26   Adding HTTP1/1 Header: Range: bytes=0-*
    24-Aug-2007 09:29:26   getUserProxy: true
    24-Aug-2007 09:29:26   getEffectiveProtocol: https
    24-Aug-2007 09:29:26   detected: http / https w/o proxy request
    24-Aug-2007 09:29:26   SMPResponse::sendRequestNormal
    24-Aug-2007 09:29:26   Opening connection to 'https://smpdla.sap.com:443/00000085/652/KGPHA69.CAR?object_id=011000358700000485532007E&filepath=00000085\652\KGPHA69.CAR&uid=S0003245349'
    24-Aug-2007 09:29:26   Sending request to SAP Service Marketplace Server (no tunneling)
    24-Aug-2007 09:29:33   A response was received from the SAP Service Marketplace Server.
    24-Aug-2007 09:29:33   Response received: 400 Bad Request
    24-Aug-2007 09:29:33   Response Http Headers:

    Yes - I've checked the address w're pointing to & have rechecked several times with our network people re: the proxy.
    The trace seems to show that we're certainly making the initial connections to SAP OK - it just gives up after a few redirections.
    Chris

  • Creating a Linked Report in SC 2012 - Operations Manager fails with Error

    Hello everyone,
    I was trying to create a linked report based on an availability report recently. I found Emre Guclu's scom linked report creation guide here:
    http://blogs.technet.com/b/emreguclu/archive/2011/10/13/using-linked-reports-in-scom-to-create-custom-availability-reports-for-specified-monitors.aspx
    I go to SSRS web console and select a report (Which is Microsoft.SystemCenter.DataWarehouse.Availability in Microsoft.SystemCenter.Datawarehouse.Reports), select "Create a Linked Report" from context menu, select another location for storing the
    report just like on this guide but i get an error rsWrongItemType with exact text:
    "The operation you are attempting on item ' Microsoft.SystemCenter.Datawarehouse.Reports/ Microsoft.SystemCenter.Datawarehouse.Availability' is not allowed for this item type. rsWrongItemType"
    Does anyone know why is this error happening and better how to fix this?
    Below is the screenshot of SSRS.

    Hi,
    Please check the report path you have set, the location must specify the full report path, such as
    /custom report folder/MyReport.
    Alex Zhao
    TechNet Community Support

  • How to print a method trace to a file (first method called to the end)

    I have a tomcat war that I am deploying. I want to use some command line parameter or some tool that will show me a method trace of each method that gets executed.
    There is some static initializer in the code that starts everything in the war (the war is not a web app) but simply a process that runs in the background that does stuff.
    I want to find out what the first method called in the war is and to locate the static initializer. Having a method trace would do this because this method would be printed out first.
    After the static initializer gets called I want to see a method trace of all methods called. Having this printed to a file like Class:Method(params) would be nice.
    Even better would be some sort of tool that I could open a trace file with and see method calls in the order they were called.
    I tried several Java profiling tools but none of them show me the order (first to last) of the methods called. All I need is to see a method trace from beginning to end.
    Any help would be appreciated.

    JProbe provided almost everything I needed to see a method call trace. The method graph feature was great.
    I have a single static class with a static initializer that runs in a loop but did not know what the class name was (I inherited some code and was told about the static initializer).
    So when I fired it up in JProbe it showed me the class running off the root thread. In fact I found another static initializer that was unknown to me and another oddity as well.
    The only problem is that the method call graph is collapsed and you need to click [+] to expand every method call.
    I am told by JProbe support that there was an "expand all" option in JProbe 7.0 but it is not there in 7.1.
    Not sure why they took the time, money and energy to take a needed feature out.
    It would be great to have something that did the same thing from the command line or to be able to print a method call trace out to a file but not sure how to do this.

  • Help !!!  Re: Fianacial Analytics failed with Error Code = 36331

    I am getting an error exactly reported under another Post 'Re: Fianacial Analytics failed with Error Code = 36331'
    workflow log shows DB error to OLTP database..
    ERROR : LM_36488 [Wed Aug 19 15:05:52 2009] : (5928|2384) Session task instance [SDE_ORA_GLJournals_Full] : [TM_6193 An error occurred while expanding the connection parameter [Database connection name ORA_R12 for database connection variable $DBConnection_OLTP is not well defined.
    Can someone point to where the probem is
    I have Physical datasource definition of OLTP Warehouse -> Test Connection works fine -->

    I am unit Testing the activity SDE_ORA_GLJournals under Execution Plan, i can see an error.
    ANOMALY INFO::: Error while executing : INFORMATICA TASK:SDE_ORAR12_Adaptor:SDE_ORA_GLJournals_Full:(Source : FULL Target : FULL)
              MESSAGE:::
              Irrecoverable Error
              Error while contacting Informatica server for getting workflow status for SDE_ORA_GLJournals_Full
              Error Code = 36331:Unknown reason for error code 36331
              Pmcmd output :
    any ideas
    girish

  • Outbound call failing with cause code 57

    Hi,
    our outbound calls to some numbers getting failed with cause code 57 and in ccsip messages i am getting 403 forbidden.
    i tried to change the payload type to 97 which was 98 but no success.
    the called number is 9-8955900
    the calling number is 8062300
    can any one help me..
    the ccsip messages and ccapi inout debug is..
    509022: *Jan  8 14:23:20.513: :FEATURE_VSA attributes are: feature_name:0,featur                                                                                        e_time:1255632752,feature_id:53127
    509023: *Jan  8 14:23:20.513: //678454/xxxxxxxxxxxx/CCAPI/ccIFCallSetupRequestPr                                                                                        ivate:
       SPI Call Setup Request Is Success; Interface Type=9, FlowMode=1
    509024: *Jan  8 14:23:20.513: //678454/xxxxxxxxxxxx/CCAPI/ccCallSetContext:
       Context=0x4AC5D304
    509025: *Jan  8 14:23:20.517: //678454/xxxxxxxxxxxx/CCAPI/cc_api_call_connected:
       Interface=0x48D4E620, Data Bitmask=0x0, Progress Indication=NULL(0),
       Connection Handle=0
    509026: *Jan  8 14:23:20.517: //678454/xxxxxxxxxxxx/CCAPI/cc_api_call_connected:
       Call Entry(Connected=TRUE, Responsed=TRUE, Retry Count=0)
    509027: *Jan  8 14:23:20.537: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:
    Received:
    INVITE sip:[email protected]:5060 SIP/2.0
    Via: SIP/2.0/TCP 192.168.12.190:5060;branch=z9hG4bK6aded64034252
    From: "Asif CIPC" <sip:[email protected]>;tag=2524413~70e9433b-1d79-44ae-9a16-                                                                                        09a52be377c5-22878662
    To: <sip:[email protected]>
    Date: Wed, 08 Jan 2014 14:02:15 GMT
    Call-ID: [email protected]
    Supported: timer,resource-priority,replaces
    Min-SE:  1800
    User-Agent: Cisco-CUCM8.6
    Allow: INVITE, OPTIONS, INFO, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE,                                                                                         NOTIFY
    CSeq: 101 INVITE
    Expires: 180
    Allow-Events: presence
    Supported: X-cisco-srtp-fallback
    Supported: Geolocation
    Cisco-Guid: 2031538944-0000065536-0000027607-3188500672
    Session-Expires:  1800
    P-Asserted-Identity: "Asif CIPC" <sip:[email protected]>
    Remote-Party-ID: "Asif CIPC" <sip:[email protected]>;party=calling;screen=yes;                                                                                        privacy=off
    Contact: <sip:[email protected]:5060;transport=tcp>
    Max-Forwards: 70
    Content-Type: application/sdp
    Content-Length: 240
    v=0
    o=CiscoSystemsCCM-SIP 2524413 1 IN IP4 192.168.12.190
    s=SIP Call
    c=IN IP4 192.168.33.5
    t=0 0
    m=audio 17706 RTP/AVP 18 101
    a=rtpmap:18 G729/8000
    a=ptime:20
    a=fmtp:18 annexb=no
    a=rtpmap:101 telephone-event/8000
    a=fmtp:101 0-15
    509028: *Jan  8 14:23:20.553: //-1/7916D3000000/CCAPI/cc_api_display_ie_subfield                                                                                        s:
       cc_api_call_setup_ind_common:
       cisco-username=3064
       ----- ccCallInfo IE subfields -----
       cisco-ani=3064
       cisco-anitype=0
       cisco-aniplan=0
       cisco-anipi=0
       cisco-anisi=1
       dest=8955900
       cisco-desttype=0
       cisco-destplan=0
       cisco-rdie=FFFFFFFF
       cisco-rdn=
       cisco-rdntype=0
       cisco-rdnplan=0
       cisco-rdnpi=-1
       cisco-rdnsi=-1
       cisco-redirectreason=-1   fwd_final_type =0
       final_redirectNumber =
       hunt_group_timeout =0
    509029: *Jan  8 14:23:20.553: /
    ASICO-DAM#/-1/7916D3000000/CCAPI/cc_api_call_setup_ind_common:
       Interface=0x48667600, Call Info(
       Calling Number=3064,(Calling Name=)(TON=Unknown, NPI=Unknown, Screening=User,                                                                                         Passed, Presentation=Allowed),
       Called Number=8955900(TON=Unknown, NPI=Unknown),
       Calling Translated=FALSE, Subscriber Type Str=Unknown, FinalDestinationFlag=T                                                                                        RUE,
       Incoming Dial-peer=1, Progress Indication=NULL(0), Calling IE Present=TRUE,
       Source Trkgrp Route Label=, Target Trkgrp Route Label=, CLID Transparent=FALS                                                                                        E), Call Id=678455
    509030: *Jan  8 14:23:20.553: //-1/7916D3000000/CCAPI/ccCheckClipClir:
       In: Calling Number=3064(TON=Unknown, NPI=Unknown, Screening=User, Passed, Pre                                                                                        sentation=Allowed)
    509031: *Jan  8 14:23:20.553: //-1/7916D3000000/CCAPI/ccCheckClipClir:
       Out: Calling Number=3064(TON=Unknown, NPI=Unknown, Screening=User, Passed, Pr                                                                                        esentation=Allowed)
    509032: *Jan  8 14:23:20.553: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    509033: *Jan  8 14:23:20.553: :cc_get_feature_vsa malloc success
    509034: *Jan  8 14:23:20.553: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    509035: *Jan  8 14:23:20.553:  cc_get_feature_vsa count is 13
    509036: *Jan  8 14:23:20.553: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    509037: *Jan  8 14:23:20.553: :FEATURE_VSA attributes are: feature_name:0,featur                                                                                        e_time:1255634768,feature_id:53128
    509038: *Jan  8 14:23:20.553: //678455/7916D3000000/CCAPI/cc_api_call_setup_ind_                                                                                        common:
       Set Up Event Sent;
       Call Info(Calling Number=3064(TON=Unknown, NPI=Unknown, Screening=User, Passe                                                                                        d, Presentation=Allowed),
       Called Number=8955900(TON=Unknown, NPI=Unknown))
    509039: *Jan  8 14:23:20.557: //678455/7916D3000000/CCAPI/cc_process_call_setup_                                                                                        ind:
       Event=0x48EE6200
    509040: *Jan  8 14:23:20.557: //-1/xxxxxxxxxxxx/CCAPI/cc_setupind_match_search:
       Try with the demoted called number 8955900
    509041: *Jan  8 14:23:20.561: //678455/7916D3000000/CCAPI/ccCallSetContext:
       Context=0x476E35D0
    509042: *Jan  8 14:23:20.561: //678455/7916D3000000/CCAPI/cc_process_call_setup_                                                                                        ind:
       >>>>CCAPI handed cid 678455 with tag 1 to app "_ManagedAppProcess_Default"
    509043: *Jan  8 14:23:20.561: //678455/7916D3000000/CCAPI/ccCallProceeding:
       Progress Indication=NULL(0)
    509044: *Jan  8 14:23:20.565: //678455/7916D3000000/CCAPI/ccCallSetupRequest:
       Destination=, Calling IE Present=TRUE, Mode=0,
       Outgoing Dial-peer=20, Params=0x476E4AE0, Progress Indication=NULL(0)
    509045: *Jan  8 14:23:20.565: //678455/7916D3000000/CCAPI/ccCheckClipClir:
       In: Calling Number=8062301(TON=Unknown, NPI=Unknown, Screening=User, Passed,                                                                                         Presentation=Allowed)
    509046: *Jan  8 14:23:20.565: //678455/7916D3000000/CCAPI/ccCheckClipClir:
       Out: Calling Number=8062301(TON=Unknown, NPI=Unknown, Screening=User, Passed,                                                                                         Presentation=Allowed)
    509047: *Jan  8 14:23:20.565: //678455/7916D3000000/CCAPI/ccCallSetupRequest:
       Destination Pattern=.T, Called Number=8955900, Digit Strip=FALSE
    509048: *Jan  8 14:23:20.565: //678455/7916D3000000/CCAPI/ccCallSetupRequest:
       Calling Number=8062301(TON=Unknown, NPI=Unknown, Screening=User, Passed, Pres                                                                                        entation=Allowed),
       Called Number=8955900(TON=Unknown, NPI=Unknown),
       Redirect Number=, Display Info=Asif CIPC
       Account Number=3064, Final Destination Flag=TRUE,
       Guid=7916D300-0001-0000-0000-6BD7BE0CA8C0, Outgoing Dial-peer=20
    509049: *Jan  8 14:23:20.565: //678455/7916D3000000/CCAPI/cc_api_display_ie_subf                                                                                        ields:
       ccCallSetupRequest:
       cisco-username=3064
       ----- ccCallInfo IE subfields -----
       cisco-ani=8062301
       cisco-anitype=0
       cisco-aniplan=0
       cisco-anipi=0
       cisco-anisi=1
       dest=8955900
       cisco-desttype=0
       cisco-destplan=0
       cisco-rdie=FFFFFFFF
       cisco-rdn=
       cisco-rdntype=0
       cisco-rdnplan=0
       cisco-rdnpi=-1
       cisco-rdnsi=-1
       cisco-redirectreason=-1   fwd_final_type =0
       final_redirectNumber =
       hunt_group_timeout =0
    509050: *Jan  8 14:23:20.569: //678455/7916D3000000/CCAPI/ccIFCallSetupRequestPr                                                                                        ivate:
       Interface=0x48667600, Interface Type=3, Destination=, Mode=0x0,
       Call Params(Calling Number=8062301,(Calling Name=Asif CIPC)(TON=Unknown, NPI=                                                                                        Unknown, Screening=User, Passed, Presentation=Allowed),
       Called Number=8955900(TON=Unknown, NPI=Unknown), Calling Translated=FALSE,
       Subscriber Type Str=Unknown, FinalDestinationFlag=TRUE, Outgoing Dial-peer=20                                                                                        , Call Count On=FALSE,
       Source Trkgrp Route Label=, Target Trkgrp Route Label=, tg_label_flag=0, Appl                                                                                        ication Call Id=)
    509051: *Jan  8 14:23:20.569: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    509052: *Jan  8 14:23:20.569: :cc_get_feature_vsa malloc success
    509053: *Jan  8 14:23:20.569: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    509054: *Jan  8 14:23:20.569:  cc_get_feature_vsa count is 14
    509055: *Jan  8 14:23:20.569: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    509056: *Jan  8 14:23:20.569: :FEATURE_VSA attributes are: feature_name:0,featur                                                                                        e_time:1255629840,feature_id:53129
    509057: *Jan  8 14:23:20.569: //678456/7916D3000000/CCAPI/ccIFCallSetupRequestPr                                                                                        ivate:
       SPI Call Setup Request Is Success; Interface Type=3, FlowMode=1
    509058: *Jan  8 14:23:20.573: //678456/7916D3000000/CCAPI/ccCallSetContext:
       Context=0x476E4A90
    509059: *Jan  8 14:23:20.573: //678455/7916D3000000/CCAPI/ccSaveDialpeerTag:
       Outgoing Dial-peer=20
    509060: *Jan  8 14:23:20.577: //678456/7916D3000000/CCAPI/cc_api_call_proceeding                                                                                        :
       Interface=0x48667600, Progress Indication=NULL(0)
    509061: *Jan  8 14:23:20.585: //678456/7916D3000000/SIP/Msg/ccsipDisplayMsg:
    Sent:
    INVITE sip:[email protected]:5060 SIP/2.0
    Via: SIP/2.0/UDP 172..XX.XX.XX:5060;branch=z9hG4bK67CD11AE
    Remote-Party-ID: "Asif CIPC" <sip:[email protected]>;party=calling;screen=ye                                                                                        s;privacy=off
    From: "Asif CIPC" <sip:[email protected]>;tag=EA475228-24AE
    To: <sip:[email protected]>
    Date: Wed, 08 Jan 2014 14:23:20 GMT
    Call-ID: [email protected]
    Supported: timer,resource-priority,replaces,sdp-anat
    Min-SE:  1800
    Cisco-Guid: 2031538944-0000065536-0000027607-3188500672
    User-Agent: Cisco-SIPGateway/IOS-12.x
    Allow: INVITE, OPTIONS, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIF                                                                                        Y, INFO, REGISTER
    CSeq: 101 INVITE
    Timestamp: 1389191000
    Contact: <sip:[email protected]:5060>
    Expires: 180
    Allow-Events: telephone-event
    Max-Forwards: 69
    Session-Expires:  1800
    Content-Type: application/sdp
    Content-Disposition: session;handling=required
    Content-Length: 274
    v=0
    o=CiscoSystemsSIP-GW-UserAgent 5380 1731 IN IP4 172..XX.XX.XX
    s=SIP Call
    c=IN IP4 172..XX.XX.XX
    t=0 0
    m=audio 19502 RTP/AVP 18 101
    c=IN IP4 172..XX.XX.XX
    a=rtpmap:18 G729/8000
    a=fmtp:18 annexb=yes
    a=rtpmap:101 telephone-event/8000
    a=fmtp:101 0-15
    a=ptime:20
    509062: *Jan  8 14:23:20.589: //678455/7916D3000000/SIP/Msg/ccsipDisplayMsg:
    Sent:
    SIP/2.0 100 Trying
    Via: SIP/2.0/TCP 192.168.12.190:5060;branch=z9hG4bK6aded64034252
    From: "Asif CIPC" <sip:[email protected]>;tag=2524413~70e9433b-1d79-44ae-9a16-                                                                                        09a52be377c5-22878662
    To: <sip:[email protected]>
    Date: Wed, 08 Jan 2014 14:23:20 GMT
    Call-ID: [email protected]
    CSeq: 101 INVITE
    Allow-Events: kpml, telephone-event
    Server: Cisco-SIPGateway/IOS-12.x
    Content-Length: 0
    509063: *Jan  8 14:23:20.605: //678456/7916D3000000/SIP/Msg/ccsipDisplayMsg:
    Received:
    SIP/2.0 100 Trying
    Via: SIP/2.0/UDP 172..XX.XX.XX:5060;branch=z9hG4bK67CD11AE
    Call-ID: [email protected]
    From: "Asif CIPC"<sip:[email protected]>;tag=EA475228-24AE
    To: <sip:[email protected]>
    CSeq: 101 INVITE
    Content-Length: 0
    509064: *Jan  8 14:23:20.677: //678456/7916D3000000/SIP/Msg/ccsipDisplayMsg:
    Received:
    SIP/2.0 403 Forbidden
    Via: SIP/2.0/UDP 172..XX.XX.XX:5060;branch=z9hG4bK67CD11AE
    Record-Route: <sip:10.205.20.50:5060;transport=udp;lr>
    Call-ID: [email protected]
    From: "Asif CIPC"<sip:[email protected]>;tag=EA475228-24AE
    To: <sip:[email protected]>;tag=sbc0804k7h28358
    CSeq: 101 INVITE
    Reason: Q.850;cause=57;text="bearer capability not authorized"
    Warning: 399 - "SoftX3000 R601-CCU Rel POS:[3103] Release from CR"
    Content-Length: 0
    509065: *Jan  8 14:23:20.677: //678456/7916D3000000/CCAPI/cc_api_call_disconnect                                                                                        ed:
       Cause Value=57, Interface=0x48667600, Call Id=678456
    509066: *Jan  8 14:23:20.677: //678456/7916D3000000/CCAPI/cc_api_call_disconnect                                                                                        ed:
       Call Entry(Responsed=TRUE, Cause Value=57, Retry Count=0)
    509067: *Jan  8 14:23:20.681: //678455/7916D3000000/CCAPI/ccCallReleaseResources                                                                                        :
       release reserved xcoding resource.
    509068: *Jan  8 14:23:20.681: //678456/7916D3000000/CCAPI/ccCallSetAAA_Accountin                                                                                        g:
       Accounting=0, Call Id=678456
    509069: *Jan  8 14:23:20.681: //678456/7916D3000000/CCAPI/ccCallDisconnect:
       Cause Value=57, Tag=0x0, Call Entry(Previous Disconnect Cause=0, Disconnect C                                                                                        ause=57)
    509070: *Jan  8 14:23:20.681: //678456/7916D3000000/CCAPI/ccCallDisconnect:
       Cause Value=57, Call Entry(Responsed=TRUE, Cause Value=57)
    509071: *Jan  8 14:23:20.681: //678456/7916D3000000/CCAPI/cc_api_call_disconnect                                                                                        _done:
       Disposition=0, Interface=0x48667600, Tag=0x0, Call Id=678456,
       Call Entry(Disconnect Cause=57, Voice Class Cause Code=0, Retry Count=0)
    509072: *Jan  8 14:23:20.685: //678456/7916D3000000/CCAPI/cc_api_call_disconnect                                                                                        _done:
       Call Disconnect Event Sent
    509073: *Jan  8 14:23:20.685: //-1/xxxxxxxxxxxx/CCAPI/cc_free_feature_vsa:
    509074: *Jan  8 14:23:20.685: :cc_free_feature_vsa freeing 4AD76408
    509075: *Jan  8 14:23:20.685: //-1/xxxxxxxxxxxx/CCAPI/cc_free_feature_vsa:
    509076: *Jan  8 14:23:20.685:  vsacount in free is 13
    509077: *Jan  8 14:23:20.685: //678455/7916D3000000/CCAPI/ccCallDisconnect:
       Cause Value=57, Tag=0x0, Call Entry(Previous Disconnect Cause=0, Disconnect C                                                                                        ause=0)
    509078: *Jan  8 14:23:20.689: //678455/7916D3000000/CCAPI/ccCallDisconnect:
       Cause Value=57, Call Entry(Responsed=TRUE, Cause Value=57)
    509079: *Jan  8 14:23:20.693: //678455/7916D3000000/SIP/Msg/ccsipDisplayMsg:
    Sent:
    SIP/2.0 403 Forbidden
    Via: SIP/2.0/TCP 192.168.12.190:5060;branch=z9hG4bK6aded64034252
    From: "Asif CIPC" <sip:[email protected]>;tag=2524413~70e9433b-1d79-44ae-9a16-                                                                                        09a52be377c5-22878662
    To: <sip:[email protected]>;tag=EA475298-106E
    Date: Wed, 08 Jan 2014 14:23:20 GMT
    Call-ID: [email protected]
    CSeq: 101 INVITE
    Allow-Events: kpml, telephone-event
    Server: Cisco-SIPGateway/IOS-12.x
    Reason: Q.850;cause=57
    Content-Length: 0
    509080: *Jan  8 14:23:20.693: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:
    Sent:
    ACK sip:[email protected]:5060 SIP/2.0
    Via: SIP/2.0/UDP 172..XX.XX.XX:5060;branch=z9hG4bK67CD11AE
    From: "Asif CIPC" <sip:[email protected]>;tag=EA475228-24AE
    To: <sip:[email protected]>;tag=sbc0804k7h28358
    Date: Wed, 08 Jan 2014 14:23:20 GMT
    Call-ID: [email protected]
    Max-Forwards: 70
    CSeq: 101 ACK
    Allow-Events: telephone-event
    Content-Length: 0
    509081: *Jan  8 14:23:20.709: //678454/xxxxxxxxxxxx/CCAPI/ccCallDisconnect:
       Cause Value=0, Tag=0x0, Call Entry(Previous Disconnect Cause=0, Disconnect Ca                                                                                        use=0)
    509082: *Jan  8 14:23:20.709: //678454/xxxxxxxxxxxx/CCAPI/ccCallDisconnect:
       Cause Value=0, Call Entry(Responsed=TRUE, Cause Value=0)
    509083: *Jan  8 14:23:20.709: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:
    Received:
    ACK sip:[email protected]:5060 SIP/2.0
    Via: SIP/2.0/TCP 192.168.12.190:5060;branch=z9hG4bK6aded64034252
    From: "Asif CIPC" <sip:[email protected]>;tag=2524413~70e9433b-1d79-44ae-9a16-                                                                                        09a52be377c5-22878662
    To: <sip:[email protected]>;tag=EA475298-106E
    Date: Wed, 08 Jan 2014 14:02:15 GMT
    Call-ID: [email protected]
    Max-Forwards: 70
    CSeq: 101 ACK
    Allow-Events: presence
    Content-Length: 0
    509084: *Jan  8 14:23:20.713: //678455/7916D3000000/CCAPI/cc_api_call_disconnect                                                                                        _done:
       Disposition=0, Interface=0x48667600, Tag=0x0, Call Id=678455,
       Call Entry(Disconnect Cause=57, Voice Class Cause Code=0, Retry Count=0)
    509085: *Jan  8 14:23:20.717: //678455/7916D3000000/CCAPI/cc_api_call_disconnect                                                                                        _done:
       Call Disconnect Event Sent
    509086: *Jan  8 14:23:20.717: //-1/xxxxxxxxxxxx/CCAPI/cc_free_feature_vsa:
    509087: *Jan  8 14:23:20.717: :cc_free_feature_vsa freeing 4AD77748
    509088: *Jan  8 14:23:20.717: //-1/xxxxxxxxxxxx/CCAPI/cc_free_feature_vsa:
    509089: *Jan  8 14:23:20.717:  vsacount in free is 12
    509090: *Jan  8 14:23:20.721: //678454/xxxxxxxxxxxx/CCAPI/cc_api_call_disconnect                                                                                        _done:
       Disposition=0, Interface=0x48D4E620, Tag=0x0, Call Id=678454,
       Call Entry(Disconnect Cause=0, Voice Class Cause Code=0, Retry Count=0)
    509091: *Jan  8 14:23:20.721: //678454/xxxxxxxxxxxx/CCAPI/cc_api_call_disconnect                                                                                        _done:
       Call Disconnect Event Sent
    509092: *Jan  8 14:23:20.721: //-1/xxxxxxxxxxxx/CCAPI/cc_free_feature_vsa:
    509093: *Jan  8 14:23:20.721: :cc_free_feature_vsa freeing 4AD76F68
    509094: *Jan  8 14:23:20.721: //-1/xxxxxxxxxxxx/CCAPI/cc_free_feature_vsa:
    509095: *Jan  8 14:23:20.721:  vsacount in free is 11
    509096: *Jan  8 14:23:20.725: //-1/xxxxxxxxxxxx/CCAPI/ccIFCallSetupRequestPrivat                                                                                        e:
       Interface=0x48D4E620, Interface Type=9, Destination=0.0.0.0, Mode=0x0,
       Call Params(Calling Number=,(Calling Name=)(TON=Unknown, NPI=Unknown, Screeni                                                                                        ng=Not Screened, Presentation=Allowed),
       Called Number=(TON=Unknown, NPI=Unknown), Calling Translated=FALSE,
       Subscriber Type Str=, FinalDestinationFlag=FALSE, Outgoing Dial-peer=0, Call                                                                                         Count On=FALSE,
       Source Trkgrp Route Label=, Target Trkgrp Route Label=, tg_label_flag=0, Appl                                                                                        ication Call Id=)
    509097: *Jan  8 14:23:20.725: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    509098: *Jan  8 14:23:20.725: :cc_get_feature_vsa malloc success
    509099: *Jan  8 14:23:20.725: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    509100: *Jan  8 14:23:20.729:  cc_get_feature_vsa count is 12
    509101: *Jan  8 14:23:20.729: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    509102: *Jan  8 14:23:20.729: :FEATURE_VSA attributes are: feature_name:0,featur                                                                                        e_time:1255632752,feature_id:53130
    509103: *Jan  8 14:23:20.729: //678457/xxxxxxxxxxxx/CCAPI/ccIFCallSetupRequestPr                                                                                        ivate:
       SPI Call Setup Request Is Success; Interface Type=9, FlowMode=1
    509104: *Jan  8 14:23:20.729: //678457/xxxxxxxxxxxx/CCAPI/ccCallSetContext:
       Context=0x4AC5D1C4
    509105: *Jan  8 14:23:20.729: //678457/xxxxxxxxxxxx/CCAPI/cc_api_call_connected:
       Interface=0x48D4E620, Data Bitmask=0x0, Progress Indication=NULL(0),
       Connection Handle=0
    509106: *Jan  8 14:23:20.729: //678457/xxxxxxxxxxxx/CCAPI/cc_api_call_connected:
       Call Entry(Connected=TRUE, Responsed=TRUE, Retry Count=0)
    509107: *Jan  8 14:23:20.753: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:
    Received:
    INVITE sip:[email protected]:5060 SIP/2.0
    Via: SIP/2.0/TCP 192.168.12.190:5060;branch=z9hG4bK6adee3e42a498
    From: "Asif CIPC" <sip:[email protected]>;tag=2524415~70e9433b-1d79-44ae-9a16-                                                                                        09a52be377c5-22878662
    To: <sip:[email protected]>
    Date: Wed, 08 Jan 2014 14:02:15 GMT
    Call-ID: [email protected]
    Supported: timer,resource-priority,replaces
    Min-SE:  1800
    User-Agent: Cisco-CUCM8.6
    Allow: INVITE, OPTIONS, INFO, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE,                                                                                         NOTIFY
    CSeq: 101 INVITE
    Expires: 180
    Allow-Events: presence
    Supported: X-cisco-srtp-fallback
    Supported: Geolocation
    Cisco-Guid: 2031538944-0000065536-0000027608-3188500672
    Session-Expires:  1800
    P-Asserted-Identity: "Asif CIPC" <sip:[email protected]>
    Remote-Party-ID: "Asif CIPC" <sip:[email protected]>;party=calling;screen=yes;                                                                                        privacy=off
    Contact: <sip:[email protected]:5060;transport=tcp>
    Max-Forwards: 70
    Content-Type: application/sdp
    Content-Length: 240
    v=0
    o=CiscoSystemsCCM-SIP 2524415 1 IN IP4 192.168.12.190
    s=SIP Call
    c=IN IP4 192.168.33.5
    t=0 0
    m=audio 17932 RTP/AVP 18 101
    a=rtpmap:18 G729/8000
    a=ptime:20
    a=fmtp:18 annexb=no
    a=rtpmap:101 telephone-event/8000
    a=fmtp:101 0-15
    509108: *Jan  8 14:23:20.769: //-1/7916D3000000/CCAPI/cc_api_display_ie_subfield                                                                                        s:
       cc_api_call_setup_ind_common:
       cisco-username=3064
       ----- ccCallInfo IE subfields -----
       cisco-ani=3064
       cisco-anitype=0
       cisco-aniplan=0
       cisco-anipi=0
       cisco-anisi=1
       dest=8955900
       cisco-desttype=0
       cisco-destplan=0
       cisco-rdie=FFFFFFFF
       cisco-rdn=
       cisco-rdntype=0
       cisco-rdnplan=0
       cisco-rdnpi=-1
       cisco-rdnsi=-1
       cisco-redirectreason=-1   fwd_final_type =0
       final_redirectNumber =
       hunt_group_timeout =0
    509109: *Jan  8 14:23:20.769: //-1/7916D3000000/CCAPI/cc_api_call_setup_ind_comm                                                                                        on:
       Interface=0x48667600, Call Info(
       Calling Number=3064,(Calling Name=)(TON=Unknown, NPI=Unknown, Screening=User,                                                                                         Passed, Presentation=Allowed),
       Called Number=8955900(TON=Unknown, NPI=Unknown),
       Calling Translated=FALSE, Subscriber Type Str=Unknown, FinalDestinationFlag=T                                                                                        RUE,
       Incoming Dial-peer=1, Progress Indication=NULL(0), Calling IE Present=TRUE,
       Source Trkgrp Route Label=, Target Trkgrp Route Label=, CLID Transparent=FALS                                                                                        E), Call Id=678458
    509110: *Jan  8 14:23:20.769: //-1/7916D3000000/CCAPI/ccCheckClipClir:
       In: Calling Number=3064(TON=Unknown, NPI=Unknown, Screening=User, Passed, Pre                                                                                        sentation=Allowed)
    509111: *Jan  8 14:23:20.773: //-1/7916D3000000/CCAPI/ccCheckClipClir:
       Out: Calling Number=3064(TON=Unknown, NPI=Unknown, Screening=User, Passed, Pr                                                                                        esentation=Allowed)
    509112: *Jan  8 14:23:20.773: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    509113: *Jan  8 14:23:20.773: :cc_get_feature_vsa malloc success
    509114: *Jan  8 14:23:20.773: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    509115: *Jan  8 14:23:20.773:  cc_get_feature_vsa count is 13
    509116: *Jan  8 14:23:20.773: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    509117: *Jan  8 14:23:20.773: :FEATURE_VSA attributes are: feature_name:0,featur                                                                                        e_time:1255634768,feature_id:53131
    509118: *Jan  8 14:23:20.773: //678458/7916D3000000/CCAPI/cc_api_call_setup_ind_                                                                                        common:
       Set Up Event Sent;
       Call Info(Calling Number=3064(TON=Unknown, NPI=Unknown, Screening=User, Passe                                                                                        d, Presentation=Allowed),
       Called Number=8955900(TON=Unknown, NPI=Unknown))
    509119: *Jan  8 14:23:20.773: //678458/7916D3000000/CCAPI/cc_process_call_setup_                                                                                        ind:
       Event=0x48EE6200
    509120: *Jan  8 14:23:20.777: //-1/xxxxxxxxxxxx/CCAPI/cc_setupind_match_search:
       Try with the demoted called number 8955900
    509121: *Jan  8 14:23:20.777: //678458/7916D3000000/CCAPI/ccCallSetContext:
       Context=0x476D5190
    509122: *Jan  8 14:23:20.777: //678458/7916D3000000/CCAPI/cc_process_call_setup_                                                                                        ind:
       >>>>CCAPI handed cid 678458 with tag 1 to app "_ManagedAppProcess_Default"
    509123: *Jan  8 14:23:20.777: //678458/7916D3000000/CCAPI/ccCallProceeding:
       Progress Indication=NULL(0)
    509124: *Jan  8 14:23:20.781: //678458/7916D3000000/CCAPI/ccCallSetupRequest:
       Destination=, Calling IE Present=TRUE, Mode=0,
       Outgoing Dial-peer=20, Params=0x476DCE60, Progress Indication=NULL(0)
    509125: *Jan  8 14:23:20.781: //678458/7916D3000000/CCAPI/ccCheckClipClir:
       In: Calling Number=8062301(TON=Unknown, NPI=Unknown, Screening=User, Passed,                                                                                         Presentation=Allowed)
    509126: *Jan  8 14:23:20.781: //678458/7916D3000000/CCAPI/ccCheckClipClir:
       Out: Calling Number=8062301(TON=Unknown, NPI=Unknown, Screening=User, Passed,                                                                                         Presentation=Allowed)
    509127: *Jan  8 14:23:20.785: //678458/7916D3000000/CCAPI/ccCallSetupRequest:
       Destination Pattern=.T, Called Number=8955900, Digit Strip=FALSE
    509128: *Jan  8 14:23:20.785: //678458/7916D3000000/CCAPI/ccCallSetupRequest:
       Calling Number=8062301(TON=Unknown, NPI=Unknown, Screening=User, Passed, Pres                                                                                        entation=Allowed),
       Called Number=8955900(TON=Unknown, NPI=Unknown),
       Redirect Number=, Display Info=Asif CIPC
       Account Number=3064, Final Destination Flag=TRUE,
       Guid=7916D300-0001-0000-0000-6BD8BE0CA8C0, Outgoing Dial-peer=20
    509129: *Jan  8 14:23:20.785: //678458/7916D3000000/CCAPI/cc_api_display_ie_subf                                                                                        ields:
       ccCallSetupRequest:
       cisco-username=3064
       ----- ccCallInfo IE subfields -----
       cisco-ani=8062301
       cisco-anitype=0
       cisco-aniplan=0
       cisco-anipi=0
       cisco-anisi=1
       dest=8955900
       cisco-desttype=0
       cisco-destplan=0
       cisco-rdie=FFFFFFFF
       cisco-rdn=
       cisco-rdntype=0
       cisco-rdnplan=0
       cisco-rdnpi=-1
       cisco-rdnsi=-1
       cisco-redirectreason=-1   fwd_final_type =0
       final_redirectNumber =
       hunt_group_timeout =0
    509130: *Jan  8 14:23:20.785: //678458/7916D3000000/CCAPI/ccIFCallSetupRequestPr                                                                                        ivate:
       Interface=0x48667600, Interface Type=3, Destination=, Mode=0x0,
       Call Params(Calling Number=8062301,(Calling Name=Asif CIPC)(TON=Unknown, NPI=                                                                                        Unknown, Screening=User, Passed, Presentation=Allowed),
       Called Number=8955900(TON=Unknown, NPI=Unknown), Calling Translated=FALSE,
       Subscriber Type Str=Unknown, FinalDestinationFlag=TRUE, Outgoing Dial-peer=20                                                                                        , Call Count On=FALSE,
       Source Trkgrp Route Label=, Target Trkgrp Route Label=, tg_label_flag=0, Appl                                                                                        ication Call Id=)
    509131: *Jan  8 14:23:20.785: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    509132: *Jan  8 14:23:20.785: :cc_get_feature_vsa malloc success
    509133: *Jan  8 14:23:20.785: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    509134: *Jan  8 14:23:20.785:  cc_get_feature_vsa count is 14
    509135: *Jan  8 14:23:20.785: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    509136: *Jan  8 14:23:20.785: :FEATURE_VSA attributes are: feature_name:0,featur                                                                                        e_time:1255629840,feature_id:53132
    509137: *Jan  8 14:23:20.789: //678459/7916D3000000/CCAPI/ccIFCallSetupRequestPr                                                                                        ivate:
       SPI Call Setup Request Is Success; Interface Type=3, FlowMode=1
    509138: *Jan  8 14:23:20.789: //678459/7916D3000000/CCAPI/ccCallSetContext:
       Context=0x476DCE10
    509139: *Jan  8 14:23:20.789: //678458/7916D3000000/CCAPI/ccSaveDialpeerTag:
       Outgoing Dial-peer=20
    509140: *Jan  8 14:23:20.793: //678459/7916D3000000/CCAPI/cc_api_call_proceeding                                                                                        :
       Interface=0x48667600, Progress Indication=NULL(0)
    509141: *Jan  8 14:23:20.801: //678459/7916D3000000/SIP/Msg/ccsipDisplayMsg:
    Sent:
    INVITE sip:[email protected]:5060 SIP/2.0
    Via: SIP/2.0/UDP 172..XX.XX.XX:5060;branch=z9hG4bK67CE197B
    Remote-Party-ID: "Asif CIPC" <sip:[email protected]>;party=calling;screen=ye                                                                                        s;privacy=off
    From: "Asif CIPC" <sip:[email protected]>;tag=EA475304-26C5
    To: <sip:[email protected]>
    Date: Wed, 08 Jan 2014 14:23:20 GMT
    Call-ID: [email protected]
    Supported: timer,resource-priority,replaces,sdp-anat
    Min-SE:  1800
    Cisco-Guid: 2031538944-0000065536-0000027608-3188500672
    User-Agent: Cisco-SIPGateway/IOS-12.x
    Allow: INVITE, OPTIONS, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIF                                                                                        Y, INFO, REGISTER
    CSeq: 101 INVITE
    Timestamp: 1389191000
    Contact: <sip:[email protected]:5060>
    Expires: 180
    Allow-Events: telephone-event
    Max-Forwards: 69
    Session-Expires:  1800
    Content-Type: application/sdp
    Content-Disposition: session;handling=required
    Content-Length: 274
    v=0
    o=CiscoSystemsSIP-GW-UserAgent 9218 9584 IN IP4 172..XX.XX.XX
    s=SIP Call
    c=IN IP4 172..XX.XX.XX
    t=0 0
    m=audio 16868 RTP/AVP 18 101
    c=IN IP4 172..XX.XX.XX
    a=rtpmap:18 G729/8000
    a=fmtp:18 annexb=yes
    a=rtpmap:101 telephone-event/8000
    a=fmtp:101 0-15
    a=ptime:20
    509142: *Jan  8 14:23:20.805: //678458/7916D3000000/SIP/Msg/ccsipDisplayMsg:
    Sent:
    509163: *Jan  8 14:23:20.945: //678458/7916D3000000/CCAPI/cc_api_call_disconnect                                                                                        _done:
       Call Disconnect Event Sent
    509164: *Jan  8 14:23:20.945: //-1/xxxxxxxxxxxx/CCAPI/cc_free_feature_vsa:
    509165: *Jan  8 14:23:20.945: :cc_free_feature_vsa freeing 4AD77748
    509166: *Jan  8 14:23:20.945: //-1/xxxxxxxxxxxx/CCAPI/cc_free_feature_vsa:
    509167: *Jan  8 14:23:20.945:  vsacount in free is 12
    509168: *Jan  8 14:23:32.517: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:
    Received:
    OPTIONS sip:172..XX.XX.XX:5060 SIP/2.0
    Via: SIP/2.0/UDP 10.205.20.50:5060;branch=z9hG4bKhs8ak5845ch42p7cff35k1ap3T02677
    Call-ID: isbchh12748fcsk155w58p151kks36fww24s@SoftX3000
    From: <sip:172..XX.XX.XX:5060>;tag=sbc0806pa8fp7w7
    To: <sip:172..XX.XX.XX>
    CSeq: 1 OPTIONS
    Max-Forwards: 70
    Content-Length: 0
    509169: *Jan  8 14:23:32.525: //678460/495AB05FB187/SIP/Msg/ccsipDisplayMsg:
    Sent:
    SIP/2.0 200 OK
    Via: SIP/2.0/UDP 10.205.20.50:5060;branch=z9hG4bKhs8ak5845ch42p7cff35k1ap3T02677
    From: <sip:172..XX.XX.XX:5060>;tag=sbc0806pa8fp7w7
    To: <sip:172..XX.XX.XX>;tag=EA4780CC-582
    Date: Wed, 08 Jan 2014 14:23:32 GMT
    Call-ID: isbchh12748fcsk155w58p151kks36fww24s@SoftX3000
    Server: Cisco-SIPGateway/IOS-12.x
    CSeq: 1 OPTIONS
    Allow: INVITE, OPTIONS, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIF                                                                                        Y, INFO, REGISTER
    Allow-Events: telephone-event
    Accept: application/sdp
    Supported: timer,resource-priority,replaces,sdp-anat
    Content-Type: application/sdp
    Content-Length: 170
    v=0
    o=CiscoSystemsSIP-GW-UserAgent 8937 2437 IN IP4 172..XX.XX.XX
    s=SIP Call
    c=IN IP4 192.168.33.5
    t=0 0
    m=audio 0 RTP/AVP 18 0 8 9 4 2 15 3
    c=IN IP4 192.168.33.5
    u all
    and the config is
    voice service voip
    ip address trusted list
      ipv4 172.XX.XX.XX 255.255.255.255
    dtmf-interworking rtp-nte
    allow-connections h323 to h323
    allow-connections h323 to sip
    allow-connections sip to h323
    allow-connections sip to sip
    no supplementary-service h450.2
    no supplementary-service h450.3
    no supplementary-service h225-notify cid-update
    redirect ip2ip
    h323
      session transport udp
      h245 tunnel disable
    sip
      session transport tcp
      rel1xx disable
      registrar server expires max 3600 min 3500
      transport switch udp tcp
      redirect contact order best-match
      asymmetric payload full
      g729 annexb-all
    voice class codec 1
    codec preference 1 g711alaw
    codec preference 2 g711ulaw
    codec preference 3 g729r8
    codec preference 4 g729br8
    and the dial-peer through the calls will go out is
    dial-peer voice 20 voip
    description ***TO-OUT***
    translation-profile outgoing OUT-SIP
    destination-pattern .T
    progress_ind progress enable 8
    rtp payload-type cisco-codec-fax-ack 112
    rtp payload-type nte 97
    session protocol sipv2
    session target ipv4:10.205.20.50:5060
    session transport udp
    voice-class codec 1
    voice-class sip bind control source-interface FastEthernet0/0
    voice-class sip bind media source-interface FastEthernet0/0
    dtmf-relay rtp-nte
    no vad

    Hi Nadeem,
    our setup is like
                                                                vpn link
    call manager ------head office(router)----------------------------------brach router(gateway)------------------ip phone(branch)
    The call flow is
                                                                                                                  sip
    IP Phone---->brach GW-------------->call manager------------------>branch GW------------------->ITSP
    there is no subscriber at branch side, so the outbound call should travel to call manager at head office and then get exit from branch gateway to ITSP through sip line.

  • OPatch failed with error code =1

    I am installing OBIEE 11g on a WIN XP VM - 32bit, 2gb RAM.Configuration process failed with the following msg.
    I set OPATCH path in the environment variables and continued with the installation and it still fails. Appreciate any/all suggestions.
    [2010-11-23T16:00:48.578-08:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] Applying one-off patches for BI
    [2010-11-23T16:00:48.578-08:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] Applying one-off patches for Product Oracle Home
    [2010-11-23T16:00:48.578-08:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] Applying one-off patches for Oracle Home Dir: C:/Middleware1\Oracle_BI1
    [2010-11-23T16:00:48.594-08:00] [as] [TRACE] [] [oracle.as.install.engine] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] [SRC_CLASS: oracle.as.install.asoneoff.OneoffTool] [SRC_METHOD: executeOneoffTool] Oneofff Folder is C:/Middleware1\Oracle_BI1\oneoffpatches
    [2010-11-23T16:00:48.594-08:00] [as] [TRACE] [] [oracle.as.install.engine] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] [SRC_CLASS: oracle.as.install.asoneoff.OneoffTool] [SRC_METHOD: executeOneoffTool] Creating script for windows platforms
    [2010-11-23T16:00:52.797-08:00] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] stdout=[[[
    C:\DOCUME~1\AVINAS~1.KRI\LOCALS~1\Temp>C:/Middleware1\Oracle_BI1\OPatch\opatch apply C:/Middleware1\Oracle_BI1\oneoffpatches\p9738850_111130_Generic.zip -oh C:/Middleware1\Oracle_BI1 -silent
    Invoking OPatch 11.1.0.8.0
    Oracle Home Path specified is relative path.
    OPatch cannot work with relative Oracle Home Paths, please specify the absolute path to Oracle Home.
    OPatch failed with error code = 1
    [2010-11-23T16:00:52.797-08:00] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] stderr=[]
    [2010-11-23T16:00:52.797-08:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] Patch tool message from Oracle Home: Applying patch C:/Middleware1\Oracle_BI1\oneoffpatches\p9738850_111130_Generic.zip and the Opatch applied sucessfully
    [2010-11-23T16:00:52.797-08:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] Finished applying one-off patches for BI
    [2010-11-23T16:00:52.797-08:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] Applying one-off patches for oracle_common
    [2010-11-23T16:00:52.797-08:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] Applying one-off patches for Oracle Home Dir: C:/Middleware1\Oracle_BI1\..\oracle_common
    [2010-11-23T16:00:52.812-08:00] [as] [TRACE] [] [oracle.as.install.engine] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] [SRC_CLASS: oracle.as.install.asoneoff.OneoffTool] [SRC_METHOD: executeOneoffTool] Oneofff Folder is C:/Middleware1\Oracle_BI1\..\oracle_common\oneoffpatches
    [2010-11-23T16:00:52.812-08:00] [as] [TRACE] [] [oracle.as.install.engine] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] [SRC_CLASS: oracle.as.install.asoneoff.OneoffTool] [SRC_METHOD: executeOneoffTool] Creating script for windows platforms
    [2010-11-23T16:00:56.156-08:00] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] stdout=[[[
    C:\DOCUME~1\AVINAS~1.KRI\LOCALS~1\Temp>C:/Middleware1\Oracle_BI1\..\oracle_common\OPatch\opatch apply C:/Middleware1\Oracle_BI1\..\oracle_common\oneoffpatches\9702106.zip -oh C:/Middleware1\Oracle_BI1\..\oracle_common -silent
    Invoking OPatch 11.1.0.8.0
    Oracle Home Path specified is relative path.
    OPatch cannot work with relative Oracle Home Paths, please specify the absolute path to Oracle Home.
    OPatch failed with error code = 1
    [2010-11-23T16:00:56.156-08:00] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] stderr=[]
    [2010-11-23T16:00:57.687-08:00] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] stdout=[[[
    C:\DOCUME~1\AVINAS~1.KRI\LOCALS~1\Temp>C:/Middleware1\Oracle_BI1\..\oracle_common\OPatch\opatch apply C:/Middleware1\Oracle_BI1\..\oracle_common\oneoffpatches\9808384.zip -oh C:/Middleware1\Oracle_BI1\..\oracle_common -silent
    Invoking OPatch 11.1.0.8.0
    Oracle Home Path specified is relative path.
    OPatch cannot work with relative Oracle Home Paths, please specify the absolute path to Oracle Home.
    OPatch failed with error code = 1
    [2010-11-23T16:00:57.687-08:00] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] stderr=[]
    [2010-11-23T16:00:59.187-08:00] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] stdout=[[[
    C:\DOCUME~1\AVINAS~1.KRI\LOCALS~1\Temp>C:/Middleware1\Oracle_BI1\..\oracle_common\OPatch\opatch apply C:/Middleware1\Oracle_BI1\..\oracle_common\oneoffpatches\p9824531_111130_Generic.zip -oh C:/Middleware1\Oracle_BI1\..\oracle_common -silent
    Invoking OPatch 11.1.0.8.0
    Oracle Home Path specified is relative path.
    OPatch cannot work with relative Oracle Home Paths, please specify the absolute path to Oracle Home.
    OPatch failed with error code = 1

    I am installing OBIEE 11g on a WIN XP VM - 32bit, 2gb RAM.Configuration process failed with the following msg.
    I set OPATCH path in the environment variables and continued with the installation and it still fails. Appreciate any/all suggestions.
    [2010-11-23T16:00:48.578-08:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] Applying one-off patches for BI
    [2010-11-23T16:00:48.578-08:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] Applying one-off patches for Product Oracle Home
    [2010-11-23T16:00:48.578-08:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] Applying one-off patches for Oracle Home Dir: C:/Middleware1\Oracle_BI1
    [2010-11-23T16:00:48.594-08:00] [as] [TRACE] [] [oracle.as.install.engine] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] [SRC_CLASS: oracle.as.install.asoneoff.OneoffTool] [SRC_METHOD: executeOneoffTool] Oneofff Folder is C:/Middleware1\Oracle_BI1\oneoffpatches
    [2010-11-23T16:00:48.594-08:00] [as] [TRACE] [] [oracle.as.install.engine] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] [SRC_CLASS: oracle.as.install.asoneoff.OneoffTool] [SRC_METHOD: executeOneoffTool] Creating script for windows platforms
    [2010-11-23T16:00:52.797-08:00] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] stdout=[[[
    C:\DOCUME~1\AVINAS~1.KRI\LOCALS~1\Temp>C:/Middleware1\Oracle_BI1\OPatch\opatch apply C:/Middleware1\Oracle_BI1\oneoffpatches\p9738850_111130_Generic.zip -oh C:/Middleware1\Oracle_BI1 -silent
    Invoking OPatch 11.1.0.8.0
    Oracle Home Path specified is relative path.
    OPatch cannot work with relative Oracle Home Paths, please specify the absolute path to Oracle Home.
    OPatch failed with error code = 1
    [2010-11-23T16:00:52.797-08:00] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] stderr=[]
    [2010-11-23T16:00:52.797-08:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] Patch tool message from Oracle Home: Applying patch C:/Middleware1\Oracle_BI1\oneoffpatches\p9738850_111130_Generic.zip and the Opatch applied sucessfully
    [2010-11-23T16:00:52.797-08:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] Finished applying one-off patches for BI
    [2010-11-23T16:00:52.797-08:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] Applying one-off patches for oracle_common
    [2010-11-23T16:00:52.797-08:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] Applying one-off patches for Oracle Home Dir: C:/Middleware1\Oracle_BI1\..\oracle_common
    [2010-11-23T16:00:52.812-08:00] [as] [TRACE] [] [oracle.as.install.engine] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] [SRC_CLASS: oracle.as.install.asoneoff.OneoffTool] [SRC_METHOD: executeOneoffTool] Oneofff Folder is C:/Middleware1\Oracle_BI1\..\oracle_common\oneoffpatches
    [2010-11-23T16:00:52.812-08:00] [as] [TRACE] [] [oracle.as.install.engine] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] [SRC_CLASS: oracle.as.install.asoneoff.OneoffTool] [SRC_METHOD: executeOneoffTool] Creating script for windows platforms
    [2010-11-23T16:00:56.156-08:00] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] stdout=[[[
    C:\DOCUME~1\AVINAS~1.KRI\LOCALS~1\Temp>C:/Middleware1\Oracle_BI1\..\oracle_common\OPatch\opatch apply C:/Middleware1\Oracle_BI1\..\oracle_common\oneoffpatches\9702106.zip -oh C:/Middleware1\Oracle_BI1\..\oracle_common -silent
    Invoking OPatch 11.1.0.8.0
    Oracle Home Path specified is relative path.
    OPatch cannot work with relative Oracle Home Paths, please specify the absolute path to Oracle Home.
    OPatch failed with error code = 1
    [2010-11-23T16:00:56.156-08:00] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] stderr=[]
    [2010-11-23T16:00:57.687-08:00] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] stdout=[[[
    C:\DOCUME~1\AVINAS~1.KRI\LOCALS~1\Temp>C:/Middleware1\Oracle_BI1\..\oracle_common\OPatch\opatch apply C:/Middleware1\Oracle_BI1\..\oracle_common\oneoffpatches\9808384.zip -oh C:/Middleware1\Oracle_BI1\..\oracle_common -silent
    Invoking OPatch 11.1.0.8.0
    Oracle Home Path specified is relative path.
    OPatch cannot work with relative Oracle Home Paths, please specify the absolute path to Oracle Home.
    OPatch failed with error code = 1
    [2010-11-23T16:00:57.687-08:00] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] stderr=[]
    [2010-11-23T16:00:59.187-08:00] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 15] [ecid: 0000Ilv3fUlCKu3_zlt1iW1Cv4^m000006,0] stdout=[[[
    C:\DOCUME~1\AVINAS~1.KRI\LOCALS~1\Temp>C:/Middleware1\Oracle_BI1\..\oracle_common\OPatch\opatch apply C:/Middleware1\Oracle_BI1\..\oracle_common\oneoffpatches\p9824531_111130_Generic.zip -oh C:/Middleware1\Oracle_BI1\..\oracle_common -silent
    Invoking OPatch 11.1.0.8.0
    Oracle Home Path specified is relative path.
    OPatch cannot work with relative Oracle Home Paths, please specify the absolute path to Oracle Home.
    OPatch failed with error code = 1

Maybe you are looking for