Jump to content

S. Robinson

Member
  • Posts

    10
  • Joined

  • Last visited

Everything posted by S. Robinson

  1. To be thorough, I replaced MoveTo() with TextOrigin() in the example script and tested again. The issue remains.
  2. For me, this exercise is about building some experience in Python and Vectorworks scripting, so I'm ok with the occasional WTF moment. You are 100% correct. The behavior is different. cue: Heavens open, angel choir, etc. Thanks for lending me your hammer, Raymond. Seth
  3. Can someone more experienced than myself explain what is happening here? Open the attached vwx file and run the included script from the script palette -or- paste the Python code below into a script in your own document and run it from the script palette. It does the following: Set the origin to 0,0 and place objects at 9 points in a grid surrounding that. Set the origin to 1,1 and do the same. However, rather than seeing the points shifted to x +1, y +1 and being centered around that, every point shifts outward from the document origin by 1,1. Regardless of positive or negative value, the point moves away from the document origin. Continue with 2,2 through 5,5 and you'll see the "burst pattern" this creates. I've read everything I can find on the multitude of issues associated with user origin (specifically http://www.vectorlab.info/index.php?title=Absolute_Origin), but this seems like a bug. Additionally, vs.ScreenPtToModelPt2D() and its siblings seem to be suffering from this same malady. Or am I simply implementing all of this incorrectly? import vs def makePoints(i) : vs.SetOriginAbsolute(i,i) makeText([-1,1], i) makeText([0,1], i) makeText([1,1], i) makeText([-1,0], i) makeText([0,0], i) makeText([1,0], i) makeText([-1,-1], i) makeText([0,-1], i) makeText([1,-1], i) def makeText(pt, i) : vs.MoveTo(pt[0], pt[1]) vs.CreateText(vs.Concat("origin:", vs.Num2Str(1,i), ",", vs.Num2Str(1,i), chr(13), "X:", vs.Num2Str(1,pt[0]), " Y:", vs.Num2Str(1,pt[1]))) origin = vs.GetOrigin() vs.PushAttrs() vs.TextFont(vs.GetFontID('Arial')) vs.TextJust(2) vs.TextVerticalAlign(3) vs.FillPat(0) vs.Opacity(100) vs.PenSize(5) vs.PenPat(1) vs.PenFore(vs.RGBToColorIndex(1,1,1)) vs.PenBack(vs.RGBToColorIndex(1,1,1)) vs.TextSize(6) points = [0, 1, 2, 3, 4, 5] for i in points : makePoints(i) vs.SetOriginAbsolute(origin[0], origin[1]) vs.PopAttrs() vs.SetZoom(50)
  4. I have seen this when importing modules from my linked external text file (in my case "_main.py"). The simple workaround is to explicitly reload() your module: import vs, modulename from imp import reload reload (modulename) Adding this at the top of _main.py has solved the problem for me. I suppose you would want to comment this out once you are done editing the module.
  5. For me, the SpaceNavigator does not work at all in VW2011. It is as if the functionality has simply been turned off. It worked well in VW2008 before I "upgraded." I have seen this issue with both service packs. The SpaceNavigator is functioning normally in other applications. MacPro 8 core 2.26 6GB OSX 10.6.5 VW2011 Spotlight SP2 SpaceNavigator PE 3DXware SE 1.6.2
  6. Hi Fergy, I see that your event has passed. I hope it went well. As this is a topic that I have a special interest in, I am logging my findings here. The question about foreground/background renders has been answered, so I won't address it. Final Gather For our purposes, Final Gather (FG) doesn't give enough bang for the buck; the rendering times are ridiculous and there's little effect. In a small room with only a couple of lights, FG can give some really nice results because it deals with bounced and scattered light. FG will compute the ambient light, creating very realistic-looking lighting, so you can light whole a room by pointing a single instrument at the ceiling. In situations like ours, with large rooms and few large, light-colored, reflective surfaces, FG makes very little difference in the final product. I leave it turned off and save _days_ of rendering time. If I need ambient bounce, I'll fake it with another light. The aded benefit here is that I have control over what gets lit and what doesn't. Below the following images, I have attached screengrabs of the custom Renderworks settings that I have been using. Even the most complex scenes (100s of lights) are rendering in minutes ( < 10 min with (8) 2.26GHz cores ). The results are actually really good: Depth of field in the above image was done in Photoshop. Yes, the floor truss has no fill. D'oh! I have seen some anomalies with lit haze buildup. If anyone has thoughts on that, I'd appreciate input.
  7. Oh my gosh. Thank you so much, Sam. I have been beating my head against this wall for so long.
  8. Yesterday morning I repaired permissions in order to solve an unrelated problem. After the permissions repair and a restart, suddenly Vectorworks would crash when opening certain files. It would also crash when given the "Import PDF..." menu command. After a long and extremely frustrating day of troubleshooting, I finally hit the solution: Open the "Font Book" application Disable all fonts: Select the "User" collection Choose the menu item Edit/Disable "User" Select the "Computer" collection Choose the menu item Edit/Disable "Computer" Reenable: Select the "User" collection Choose the menu item Edit/Enable "User" Select the "Computer" collection Choose the menu item Edit/Enable "Computer" Viola! Vectorworks now functions as it should. I can't even begin to hypothesize on what happened. Hopefully, if this happens to you, you will find this post helpful. Seth Robinson Pasted below is the crash report followed by my system stats: Process: VectorWorks [48507] Path: /Users/sethrobinson/Desktop/VectorWorks 2008/VectorWorks 2008.app/Contents/MacOS/VectorWorks Identifier: net.nemetschek.vectorworks Version: 13.0.1 (83388) (???) Code Type: X86 (Native) Parent Process: launchd [94] Date/Time: 2008-04-28 19:36:31.684 -0500 OS Version: Mac OS X 10.5.2 (9C7010) Report Version: 6 Exception Type: EXC_BAD_ACCESS (SIGBUS) Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000 Crashed Thread: 0 Thread 0 Crashed: 0 com.apple.CoreFoundation 0x93d32ac7 CFStringGetLength + 39 1 com.apple.CoreFoundation 0x93d3f4d2 CFStringCompare + 18 2 DL61CoolType 0x1b71a4fb CompareUTF8Strings(char const*, char const*, CTScript, bool) + 237 3 DL61CoolType 0x1b67cae6 FontEnumeration::CompareGroupNames(UniStringAtom const&, UniStringAtom const&, CTScript) + 78 4 DL61CoolType 0x1b67cc43 FontEnumeration::operator<(FontEnumeration::GroupKey const&, FontEnumeration::GroupKey const&) + 297 5 DL61CoolType 0x1b7f3b94 redblack_tree::operator[](FontEnumeration::GroupKey const&) const + 38 6 DL61CoolType 0x1b67fb9a FontEnumeration::FontGroupCollection::operator[](FontEnumeration::GroupKey const&) + 32 7 DL61CoolType 0x1b68f402 FontSet::AddFontToEnumerationList(CTRCImpl const&, bool) + 376 8 DL61CoolType 0x1b6ee328 InitCTSysList(FontSet&, FontSet&, FSRef const*, FSRef const*, unsigned int, CTFontConfig, CTSyncFlags, char) + 1926 9 DL61CoolType 0x1b6404b5 InternalInit(CTFontConfig, CTScript, CTFileConfig const*) + 16955 10 DL61CoolType 0x1b640af6 CTInit + 64 11 DL61PDFL 0x1bad4dc2 PDFLInit + 426 12 ...k.vectorworks.PDFUtilityLib 0x1a8c745c AdobePDFLibInit() + 42 13 ...k.vectorworks.PDFUtilityLib 0x1a8c8d94 PluginLibraryMain(long, void*, long&) + 38 14 ...k.vectorworks.PDFUtilityLib 0x1a8c7276 plugin_main + 58 15 net.nemetschek.vectorworks 0x004ef146 start + 5161966 16 net.nemetschek.vectorworks 0x004ef23b start + 5162211 17 net.nemetschek.vectorworks 0x001f260b start + 2029747 18 net.nemetschek.vectorworks 0x004225fb start + 4323491 19 net.nemetschek.vectorworks 0x004189b3 start + 4283483 20 net.nemetschek.vectorworks 0x002a117d start + 2745381 21 net.nemetschek.vectorworks 0x002a2f06 start + 2752942 22 net.nemetschek.vectorworks 0x003dc2f5 start + 4035997 23 net.nemetschek.vectorworks 0x003dce62 start + 4038922 24 net.nemetschek.vectorworks 0x003dd43b start + 4040419 25 net.nemetschek.vectorworks 0x003dbd0d start + 4034485 26 net.nemetschek.vectorworks 0x003d6a98 start + 4013376 27 net.nemetschek.vectorworks 0x004e2369 start + 5109265 28 net.nemetschek.vectorworks 0x004df94b start + 5098483 29 net.nemetschek.vectorworks 0x00c791ff IwSolutionArray::Dump() const + 808443 30 net.nemetschek.vectorworks 0x00c78ef0 IwSolutionArray::Dump() const + 807660 31 net.nemetschek.vectorworks 0x003e3fd9 start + 4067969 32 net.nemetschek.vectorworks 0x003e4289 start + 4068657 33 net.nemetschek.vectorworks 0x003e0862 start + 4053770 34 net.nemetschek.vectorworks 0x003edfc4 start + 4108908 35 net.nemetschek.vectorworks 0x003ee0bf start + 4109159 36 net.nemetschek.vectorworks 0x002c6903 start + 2898859 37 net.nemetschek.vectorworks 0x003d7776 start + 4016670 38 net.nemetschek.vectorworks 0x004e8cd9 start + 5136257 39 net.nemetschek.vectorworks 0x004ec24d start + 5149941 40 net.nemetschek.vectorworks 0x003c2f47 start + 3932655 41 net.nemetschek.vectorworks 0x003d8851 start + 4020985 42 net.nemetschek.vectorworks 0x003d945d start + 4024069 43 net.nemetschek.vectorworks 0x003d87a8 start + 4020816 44 net.nemetschek.vectorworks 0x003d91e6 start + 4023438 45 net.nemetschek.vectorworks 0x003dd080 start + 4039464 46 net.nemetschek.vectorworks 0x003dd381 start + 4040233 47 net.nemetschek.vectorworks 0x00b06338 iwos_ErrorMessage(long, unsigned short const*, unsigned long, unsigned short const*) + 825024 48 net.nemetschek.vectorworks 0x00b067fa iwos_ErrorMessage(long, unsigned short const*, unsigned long, unsigned short const*) + 826242 49 net.nemetschek.vectorworks 0x003837e3 start + 3672715 50 net.nemetschek.vectorworks 0x00383961 start + 3673097 51 net.nemetschek.vectorworks 0x0038458e start + 3676214 52 net.nemetschek.vectorworks 0x00169d9f start + 1470535 53 net.nemetschek.vectorworks 0x00052298 start + 324928 54 net.nemetschek.vectorworks 0x000ac76c start + 694804 55 net.nemetschek.vectorworks 0x000ac79f start + 694855 56 net.nemetschek.vectorworks 0x000ac79f start + 694855 57 net.nemetschek.vectorworks 0x00062cde start + 393094 58 net.nemetschek.vectorworks 0x0005b65f start + 362759 59 net.nemetschek.vectorworks 0x000b492a start + 728018 60 net.nemetschek.vectorworks 0x000b41d6 start + 726142 61 net.nemetschek.vectorworks 0x0005b1bf start + 361575 62 net.nemetschek.vectorworks 0x00002e5a start + 258 63 net.nemetschek.vectorworks 0x00002d81 start + 41 Thread 1: 0 libSystem.B.dylib 0x9406ebce __semwait_signal + 10 1 libSystem.B.dylib 0x940998cd pthread_cond_wait$UNIX2003 + 73 2 libGLProgrammability.dylib 0x929a3432 glvmDoWork + 162 3 libSystem.B.dylib 0x94098c55 _pthread_start + 321 4 libSystem.B.dylib 0x94098b12 thread_start + 34 Thread 2: 0 libSystem.B.dylib 0x9406ebce __semwait_signal + 10 1 libSystem.B.dylib 0x940998cd pthread_cond_wait$UNIX2003 + 73 2 com.apple.ColorSync 0x93f17460 pthreadSemaphoreWait(t_pthreadSemaphore*) + 42 3 com.apple.ColorSync 0x93f29d92 CMMConvTask(void*) + 54 4 libSystem.B.dylib 0x94098c55 _pthread_start + 321 5 libSystem.B.dylib 0x94098b12 thread_start + 34 Thread 3: 0 libSystem.B.dylib 0x940aa725 syscall + 5 1 com.apple.OpenTransport 0x1ca37ac9 CarbonSelectThreadFunc + 205 2 libSystem.B.dylib 0x94098c55 _pthread_start + 321 3 libSystem.B.dylib 0x94098b12 thread_start + 34 Thread 4: 0 libSystem.B.dylib 0x9406ebce __semwait_signal + 10 1 libSystem.B.dylib 0x940998cd pthread_cond_wait$UNIX2003 + 73 2 com.apple.OpenTransport 0x1ca33938 CarbonOperationThreadFunc + 177 3 libSystem.B.dylib 0x94098c55 _pthread_start + 321 4 libSystem.B.dylib 0x94098b12 thread_start + 34 Thread 5: 0 libSystem.B.dylib 0x9406ebce __semwait_signal + 10 1 libSystem.B.dylib 0x940998cd pthread_cond_wait$UNIX2003 + 73 2 com.apple.OpenTransport 0x1ca3f137 WaitForSyncDone + 107 3 com.apple.OpenTransport 0x1ca4692b RecvData + 1024 4 com.apple.OpenTransport 0x1ca46cac OTRcvUData + 61 5 net.nemetschek.vectorworks 0x015520e1 haspregnew + 9003 6 net.nemetschek.vectorworks 0x0139a147 hasp + 8861 7 net.nemetschek.vectorworks 0x0139a566 hasp + 9916 8 net.nemetschek.vectorworks 0x0139a7fb hasp + 10577 9 ...ple.CoreServices.CarbonCore 0x92304beb PrivateMPEntryPoint + 56 10 libSystem.B.dylib 0x94098c55 _pthread_start + 321 11 libSystem.B.dylib 0x94098b12 thread_start + 34 Thread 6: 0 libSystem.B.dylib 0x94067a2e semaphore_wait_signal_trap + 10 1 libSystem.B.dylib 0x94099dc6 _pthread_cond_wait + 1267 2 libSystem.B.dylib 0x940df8bb pthread_cond_wait + 48 3 ...ickTimeComponents.component 0x95389165 jpegdecompress_MPLoop + 79 4 libSystem.B.dylib 0x94098c55 _pthread_start + 321 5 libSystem.B.dylib 0x94098b12 thread_start + 34 Thread 7: 0 libSystem.B.dylib 0x9406ebce __semwait_signal + 10 1 libSystem.B.dylib 0x940998cd pthread_cond_wait$UNIX2003 + 73 2 ...ple.CoreServices.CarbonCore 0x923069d7 TSWaitOnCondition + 126 3 ...ple.CoreServices.CarbonCore 0x92370a17 MPRemoteCall + 296 4 net.nemetschek.vectorworks 0x01551f14 haspregnew + 8542 5 net.nemetschek.vectorworks 0x0155309d haspregnew + 13031 6 net.nemetschek.vectorworks 0x01398a8f hasp + 3045 7 net.nemetschek.vectorworks 0x0139945d hasp + 5555 8 net.nemetschek.vectorworks 0x013999c3 hasp + 6937 9 ...ple.CoreServices.CarbonCore 0x92304beb PrivateMPEntryPoint + 56 10 libSystem.B.dylib 0x94098c55 _pthread_start + 321 11 libSystem.B.dylib 0x94098b12 thread_start + 34 Thread 8: 0 libSystem.B.dylib 0x940679e6 mach_msg_trap + 10 1 libSystem.B.dylib 0x9406f1dc mach_msg + 72 2 com.apple.CoreFoundation 0x93d1b0de CFRunLoopRunSpecific + 1806 3 com.apple.CoreFoundation 0x93d1bd18 CFRunLoopRunInMode + 88 4 com.apple.HIToolbox 0x949586a0 RunCurrentEventLoopInMode + 283 5 com.apple.HIToolbox 0x94a43535 RunCurrentEventLoop + 65 6 net.nemetschek.vectorworks 0x000ee900 start + 965544 7 ...ple.CoreServices.CarbonCore 0x92304beb PrivateMPEntryPoint + 56 8 libSystem.B.dylib 0x94098c55 _pthread_start + 321 9 libSystem.B.dylib 0x94098b12 thread_start + 34 Thread 9: 0 libSystem.B.dylib 0x94067a3a semaphore_timedwait_trap + 10 1 ...ple.CoreServices.CarbonCore 0x92317f7b MPWaitOnSemaphore + 125 2 DL61ACE 0x1b02d856 ACESemaphoreList::Wait(unsigned int) + 32 3 DL61ACE 0x1b02deff ACEMPThread::Task() + 55 4 DL61ACE 0x1b02d7f9 TaskGlue + 17 5 ...ple.CoreServices.CarbonCore 0x92304beb PrivateMPEntryPoint + 56 6 libSystem.B.dylib 0x94098c55 _pthread_start + 321 7 libSystem.B.dylib 0x94098b12 thread_start + 34 Thread 0 crashed with X86 Thread State (32-bit): eax: 0xa04774ec ebx: 0x93d32aaa ecx: 0x00000001 edx: 0x00000007 edi: 0x00000000 esi: 0x00000000 ebp: 0xbfff9d58 esp: 0xbfff9d40 ss: 0x0000001f efl: 0x00010283 eip: 0x93d32ac7 cs: 0x00000017 ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037 cr2: 0x00000000 Binary Images: 0x1000 - 0x1d30ff4 +net.nemetschek.vectorworks 13.0.1 (83388) (???) /Users/sethrobinson/Desktop/VectorWorks 2008/VectorWorks 2008.app/Contents/MacOS/VectorWorks 0x228a000 - 0x2ae1fe8 +libRenderWorks.dylib ??? (???) /Users/sethrobinson/Desktop/VectorWorks 2008/VectorWorks 2008.app/Contents/MacOS/libRenderWorks.dylib 0x179b5000 - 0x17b37fef GLEngine ??? (???) /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine 0x17b65000 - 0x17de5ff7 com.apple.ATIRadeonX1000GLDriver 1.5.24 (5.2.4) /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/Contents/MacOS/ATIRadeonX1000GLDriver 0x17e31000 - 0x17e4dff7 GLRendererFloat ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat 0x1a0f8000 - 0x1a0faffb com.apple.PDFImporter 1.7 (???) <490de796fe9a6b3b8a9844a1630d38e2> /System/Library/Components/PDFImporter.component/Contents/MacOS/PDFImporter 0x1a15f000 - 0x1a162fff com.apple.LiveType.component 2.1.2 (2.1.2) /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType 0x1a167000 - 0x1a1ccffe com.apple.LiveType.framework 2.1.2 (2.1.2) /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType 0x1a262000 - 0x1a29dfff com.apple.QuickTimeFireWireDV.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTimeFireWireDV 0x1a2a8000 - 0x1a2c1fe3 com.apple.AppleIntermediateCodec 1.1 (141) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleIntermediateCodec 0x1a2c6000 - 0x1a2e0fe3 com.apple.applepixletvideo 1.2.10 (1.2d10) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixletVideo 0x1a2e5000 - 0x1a2e7ff7 +com.3dconnexion.3DxQuickTime 1.0.4 (1.0.4) /Library/QuickTime/3DxQuickTime.component/Contents/MacOS/3DxQuickTime 0x1a31e000 - 0x1a325ff8 +net.nemetschek.vectorworks.editshader ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/EditShader.vwlibrary/Contents/MacOS/EditShader 0x1a335000 - 0x1a528ff7 +net.telestream.wmv.import 2.1.0.33 (2.1.0.33) /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import 0x1a558000 - 0x1a646fef com.apple.RawCamera.bundle 2.0.3 (2.0.3) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera 0x1a657000 - 0x1a669fd9 com.apple.FCP Uncompressed 422.component 1.4 (1.4) /Library/QuickTime/FCP Uncompressed 422.component/Contents/MacOS/FCP Uncompressed 422 0x1a66f000 - 0x1a674fe7 com.apple.DesktopVideoOut 1.2.4 (1.2.4) /Library/QuickTime/DesktopVideoOut.component/Contents/MacOS/DesktopVideoOut 0x1a821000 - 0x1a82aff2 +net.nemetschek.vectorworks.aligndistribute ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/AlignDistribute.vwlibrary/Contents/MacOS/AlignDistribute 0x1a832000 - 0x1a86cfe3 +net.nemetschek.vectorworks.ColorPalettes ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/ColorPalettes.vwlibrary/Contents/MacOS/ColorPalettes 0x1a8a2000 - 0x1a8b1ffa +net.nemetschek.VectorWorks.ExtendedProperties ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/ExtendedProperties.vwlibrary/Contents/MacOS/ExtendedProperties 0x1a8c6000 - 0x1a8cbffc +net.nemetschek.vectorworks.PDFUtilityLib ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/PDFUtilityLib.vwlibrary/Contents/MacOS/PDFUtilityLib 0x1a8d8000 - 0x1a8dbffb +com.yourcompany.Plug-InSupport ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/Plug-In Support.vwlibrary/Contents/MacOS/Plug-In Support 0x1a8e1000 - 0x1a8e5fff +net.nemetschek.vectorworks.rendersettings ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/RenderSettings.vwlibrary/Contents/MacOS/RenderSettings 0x1a8eb000 - 0x1a8f3fd9 +net.nemetschek.vectorworks.TrueType ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/TrueType.vwlibrary/Contents/MacOS/TrueType 0x1aa00000 - 0x1abd7ffb +net.nemetschek.vectorworks.DWG Library ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/DWG Library.vwlibrary/Contents/MacOS/DWG Library 0x1acf9000 - 0x1ad75ff2 +>net.nemetschek.vectorworks.GeometryLib ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/GeometryLib.vwlibrary/Contents/MacOS/GeometryLib 0x1add2000 - 0x1aedbfdf +net.nemetschek.vectorworks.IFCLibrary ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/IFCLibrary.vwlibrary/Contents/MacOS/IFCLibrary 0x1b00a000 - 0x1b0c4ff7 +DL61ACE ??? (???) /Users/sethrobinson/Desktop/VectorWorks 2008/VectorWorks 2008.app/Contents/Frameworks/DL61ACE.framework/Versions/A/DL61ACE 0x1b116000 - 0x1b324fef +DL61AGM ??? (???) /Users/sethrobinson/Desktop/VectorWorks 2008/VectorWorks 2008.app/Contents/Frameworks/DL61AGM.framework/Versions/A/DL61AGM 0x1b4f2000 - 0x1b522037 +DL61ARE ??? (???) /Users/sethrobinson/Desktop/VectorWorks 2008/VectorWorks 2008.app/Contents/Frameworks/DL61ARE.framework/Versions/A/DL61ARE 0x1b555000 - 0x1b56f087 +DL61BIB ??? (???) /Users/sethrobinson/Desktop/VectorWorks 2008/VectorWorks 2008.app/Contents/Frameworks/DL61BIB.framework/Versions/A/DL61BIB 0x1b599000 - 0x1b5b9ff7 +DL61BIBUtils ??? (???) /Users/sethrobinson/Desktop/VectorWorks 2008/VectorWorks 2008.app/Contents/Frameworks/DL61BIBUtils.framework/Versions/A/DL61BIBUtils 0x1b5e7000 - 0x1b884ffa +DL61CoolType ??? (???) /Users/sethrobinson/Desktop/VectorWorks 2008/VectorWorks 2008.app/Contents/Frameworks/DL61CoolType.framework/Versions/A/DL61CoolType 0x1b9dd000 - 0x1ba8cfff +DL61JP2K ??? (???) /Users/sethrobinson/Desktop/VectorWorks 2008/VectorWorks 2008.app/Contents/Frameworks/DL61JP2K.framework/Versions/A/DL61JP2K 0x1bab8000 - 0x1bfbbfc3 +DL61PDFL ??? (???) /Users/sethrobinson/Desktop/VectorWorks 2008/VectorWorks 2008.app/Contents/Frameworks/DL61PDFL.framework/Versions/A/DL61PDFL 0x1c2e9000 - 0x1c384fc3 +DL61XMP ??? (???) /Users/sethrobinson/Desktop/VectorWorks 2008/VectorWorks 2008.app/Contents/Frameworks/DL61XMP.framework/Versions/A/DL61XMP 0x1c407000 - 0x1c43cff3 +net.nemetschek.vectorworks.Plant Library ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/Plant Library.vwlibrary/Contents/MacOS/Plant Library 0x1c470000 - 0x1c4e2fcc +net.nemetschek.vectorworks.VectorScriptEditor ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/VectorScriptEditor.vwlibrary/Contents/MacOS/VectorScriptEditor 0x1c5b8000 - 0x1c5c0ff8 +net.nemetschek.vectorworks.VSSharedLibrary ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/VS Shared Library.vwlibrary/Contents/MacOS/VS Shared Library 0x1c5c9000 - 0x1c5cbffc +net.nemetschek.vectorworks.vwlibrary ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/VWLibrary.vwlibrary/Contents/MacOS/VWLibrary 0x1c5d0000 - 0x1c606ffc +net.nemetschek.vectorworks.VCOM Provider Library ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/Workspaces.vwlibrary/Contents/MacOS/Workspaces 0x1c655000 - 0x1c828fcf +net.nemetschek.vectorworks.xmllibrary ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/XML Library.vwlibrary/Contents/MacOS/XML Library 0x1c9bf000 - 0x1c9c0fe1 com.apple.textencoding.unicode 2.2 (2.2) <542f2b8930d6bdf16c318ffea541acab> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings 0x1c9e5000 - 0x1c9edffa +net.nemetschek.vectorworks.ceilinggrid ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/CeilingGrid.vwobject/Contents/MacOS/CeilingGrid 0x1c9f9000 - 0x1c9fbfff +com.yourcompany.DesignLayerViewport ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/DesignLayerViewport.vwobject/Contents/MacOS/DesignLayerViewport 0x1ca01000 - 0x1ca07ff3 +net.nemetschek.vectorworks.extrudealongpath ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/ExtrudeAlongPath.vwobject/Contents/MacOS/ExtrudeAlongPath 0x1ca30000 - 0x1ca4efe7 com.apple.OpenTransport 3.0 (3.0) /System/Library/PrivateFrameworks/OpenTransport.framework/OpenTransport 0x1ca5e000 - 0x1ca9ffe4 +net.nemetschek.vectorworks.Callout ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/Callout.vwobject/Contents/MacOS/Callout 0x1caf3000 - 0x1caf9fff +net.nemetschek.vectoworks.helixspiral ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/HelixSpiral.vwobject/Contents/MacOS/HelixSpiral 0x1cc00000 - 0x1cc20ffa +com.yourcompany.ChainDimension ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/ChainDimension.vwobject/Contents/MacOS/ChainDimension 0x1cc30000 - 0x1cc5bffa +net.nemetschek.vectorworks.FramingMember ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/FramingMember.vwobject/Contents/MacOS/FramingMember 0x1ccbd000 - 0x1ccf5fe4 +net.nemetschek.vectorworks.General Notes ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/General Notes.vwobject/Contents/MacOS/General Notes 0x1cd35000 - 0x1cdacff4 +net.nemetschek.vectorworks.HumanFigure ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/HumanFigure.vwobject/Contents/MacOS/HumanFigure 0x1cdf1000 - 0x1ce0dff7 +net.nemetschek.vectorworks.IFCEntity ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/IFCEntity.vwobject/Contents/MacOS/IFCEntity 0x1ce42000 - 0x1ce76ff4 +net.nemetschek.vectorworks.Keynote Legend ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/Keynote Legend.vwobject/Contents/MacOS/Keynote Legend 0x1ceb2000 - 0x1cebbfea +com.yourcompany.PDFPage ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/PDFPage.vwobject/Contents/MacOS/PDFPage 0x1cec5000 - 0x1cf04ff3 +net.nemetschek.vectorworks.Plant Object ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/Plant Object.vwobject/Contents/MacOS/Plant Object 0x1cf3a000 - 0x1cf3afff +net.nemetschek.vectorworks.SectionLine ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/SectionLine.vwobject/Contents/MacOS/SectionLine 0x1cf3e000 - 0x1cf8bfec +net.nemetschek.vectorworks.Space ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/Space.vwobject/Contents/MacOS/Space 0x1cfd6000 - 0x1cfe6fea +net.nemetschek.vectorworks.TaperedExtrude ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/TaperedExtrude.vwobject/Contents/MacOS/TaperedExtrude 0x1cff1000 - 0x1cff6fe7 +net.nemetschek.vectorworks.TextAlongPath ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/TextAlongPath.vwobject/Contents/MacOS/TextAlongPath 0x1cffd000 - 0x1d003ffe +net.nemetschek.vectorworks.TexturedProp ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/Textured Prop.vwobject/Contents/MacOS/Textured Prop 0x1d664000 - 0x1d667ff2 +net.nemetschek.vectorworks.movepage ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/MovePage.vwplugin/Contents/MacOS/MovePage 0x1d674000 - 0x1d677ffa +net.nemetschek.vectorworks.Trim ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/Trim Tool.vwplugin/Contents/MacOS/Trim Tool 0x1d67e000 - 0x1d682ff6 +net.nemetschek.vectorworks.Shear ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/Shear.vwplugin/Contents/MacOS/Shear 0x1d689000 - 0x1d689fff +net.nemetschek.vectorworks.fittoobjects ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/Fit To Objects.vwplugin/Contents/MacOS/Fit To Objects 0x1d6f3000 - 0x1d6f7fea +net.nemetschek.vectorworks.resize ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/Resize.vwplugin/Contents/MacOS/Resize 0x1db88000 - 0x1db98fe7 +net.nemetschek.vectorworks.eyedropper ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/Eyedropper Tool.vwplugin/Contents/MacOS/Eyedropper Tool 0x1dba5000 - 0x1dbbcfe4 +net.nemetschek.vectorworks.offsettool ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/Offset Tool.vwplugin/Contents/MacOS/Offset Tool 0x1dbcb000 - 0x1dbd1ffa +net.nemetschek.vectorworks.duplicatesymbolinwall ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/Duplicate Symbol In Wall.vwplugin/Contents/MacOS/Duplicate Symbol In Wall 0x1dbd9000 - 0x1dbdc06f +net.nemetschek.vectorworks.TapeMeasureTool ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/TapeMeasureTool.vwplugin/Contents/MacOS/TapeMeasureTool 0x1dbfa000 - 0x1dbfbfff +net.nemetschek.vectorworks.alignlayerviews ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/AlignLayerViews.vwplugin/Contents/MacOS/AlignLayerViews 0x1dd00000 - 0x1dd43ff4 +net.nemetschek.vectorworks.delMeTool ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/Callout Tool.vwplugin/Contents/MacOS/Callout Tool 0x1dd8c000 - 0x1dd90fe3 +net.nemetschek.vectorworks.protractortool ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/Protractor Tool.vwplugin/Contents/MacOS/Protractor Tool 0x1dd97000 - 0x1ddd4ff4 +net.nemetschek.vectorworks.General Notes Tool ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/General Notes Tool.vwplugin/Contents/MacOS/General Notes Tool 0x1de1c000 - 0x1de44076 +net.nemetschek.vectorworks.Export3DSMenu ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/3DS Import.vwplugin/Contents/MacOS/3DS Import 0x1de79000 - 0x1de9dfea +net.nemetschek.vectorworks.Export3DSMenu ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/3DS Export.vwplugin/Contents/MacOS/3DS Export 0x1ded0000 - 0x1ded7fe4 +net.nemetschek.vectorworks.SunPosition ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/SunPosition.vwplugin/Contents/MacOS/SunPosition 0x1dedf000 - 0x1deecff6 +net.nemetschek.vectorworks.extrudealongpathmenu ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/ExtrudeAlongPathMenu.vwplugin/Contents/MacOS/ExtrudeAlongPathMenu 0x1def8000 - 0x1def9fff +net.nemetschek.vectorworks.guides ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/Guides.vwplugin/Contents/MacOS/Guides 0x1e000000 - 0x1e05cfe3 +net.nemetschek.vectorworks.SU2VW ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/SU2VW.vwplugin/Contents/MacOS/SU2VW 0x1e0e8000 - 0x1e300fc7 +Xerces ??? (???) /Users/sethrobinson/Desktop/VectorWorks 2008/VectorWorks 2008.app/Contents/Frameworks/Xerces.framework/Versions/A/Xerces 0x1e548000 - 0x1e868ff7 +SketchUpReader ??? (???) /Users/sethrobinson/Desktop/VectorWorks 2008/VectorWorks 2008.app/Contents/Frameworks/SketchUpReader.framework/Versions/A/SketchUpReader 0x1eb13000 - 0x1eb1afff +net.nemetschek.vectorworks.TaperedExtrudeMenu ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/TaperedExtrudeMenu.vwplugin/Contents/MacOS/TaperedExtrudeMenu 0x1eb23000 - 0x1eb2aff3 +net.nemetschek.vectorworks.helixspiralmenu ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/HelixSpiralMenu.vwplugin/Contents/MacOS/HelixSpiralMenu 0x1eb32000 - 0x1eb3cfed +net.nemetschek.vectorworks.exportquicktimemovie ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/Export Quicktime Movie.vwplugin/Contents/MacOS/Export Quicktime Movie 0x1eb47000 - 0x1eb4bff8 +net.nemetschek.vectorworks.obitanimator ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/Orbit Animator.vwplugin/Contents/MacOS/Orbit Animator 0x1eb53000 - 0x1eb6dff3 +net.nemetschek.vectorworks.pathanimator ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/Path Animator.vwplugin/Contents/MacOS/Path Animator 0x1eb80000 - 0x1eb88ff0 +net.nemetschek.vectorworks.roofer ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/Roofer.vwplugin/Contents/MacOS/Roofer 0x1eb91000 - 0x1eb99fef +net.nemetschek.vectorworks.purge ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/Purge.vwplugin/Contents/MacOS/Purge 0x1eba1000 - 0x1ec45fd7 +net.nemetschek.vectorworks.WorkspaceEditor ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/Workspace Editor.vwplugin/Contents/MacOS/Workspace Editor 0x1ed5b000 - 0x1ed83fcf +net.nemetschek.vectorworks.checkspelling ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/CheckSpelling.vwplugin/Contents/MacOS/CheckSpelling 0x1ed93000 - 0x1ed97004 +net.nemetschek.vectorworks.TrueTypeToPolyline ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/TrueType To Polyline.vwplugin/Contents/MacOS/TrueType To Polyline 0x1ed9e000 - 0x1edaaff6 +com.yourcompany.TextAlongPathMenu ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/TextAlongPathMenu.vwplugin/Contents/MacOS/TextAlongPathMenu 0x1edb6000 - 0x1edfdfe4 +net.nemetschek.vectorworks.Notes Manager Menu ??? (1.0) /Users/sethrobinson/Desktop/VectorWorks 2008/Plug-Ins/Notes Manager Menu.vwplugin/Contents/MacOS/Notes Manager Menu 0x1ee5e000 - 0x1ee70fff libTraditionalChineseConverter.dylib ??? (???) <89ec94121ef50601dc538548caae57fc> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib 0x1ee74000 - 0x1ee82feb libSimplifiedChineseConverter.dylib ??? (???) <548d5a699dbe2bb8fcc8275321fdc0d4> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib 0x8fe00000 - 0x8fe2da53 dyld 96.2 (???) <7af47d3b00b2268947563c7fa8c59a07> /usr/lib/dyld 0x90003000 - 0x90019fff com.apple.DictionaryServices 1.0.0 (1.0.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices 0x9001a000 - 0x90021fff com.apple.agl 3.0.9 (AGL-3.0.9) <7dac4a7cb0de2f6d08ae71c1249379e3> /System/Library/Frameworks/AGL.framework/Versions/A/AGL 0x90022000 - 0x9015aff7 libicucore.A.dylib ??? (???) /usr/lib/libicucore.A.dylib 0x9015b000 - 0x9027ffe3 com.apple.audio.toolbox.AudioToolbox 1.5.1 (1.5.1) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x90280000 - 0x90280ffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x90281000 - 0x902a9ff7 com.apple.shortcut 1 (1.0) <057783867138902b52bc0941fedb74d1> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut 0x902aa000 - 0x902acfff com.apple.securityhi 3.0 (30817) <2b2854123fed609d1820d2779e2e0963> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI 0x90469000 - 0x90469ff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x9046a000 - 0x90473fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition 0x904ae000 - 0x904aeffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib 0x904af000 - 0x9053bff7 com.apple.LaunchServices 286.5 (286.5) <33c3ae54abb276b61a99d4c764d883e2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x9053c000 - 0x905c5fe3 com.apple.DesktopServices 1.4.5 (1.4.5) <8b264cd6abbbd750928c637e1247269d> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 0x905c6000 - 0x905c6ffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x90830000 - 0x9083bfe7 libCSync.A.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib 0x9083c000 - 0x90b5cfe2 com.apple.QuickTime 7.4.5 (67) <520cbf4ae05622466ad1b89f1ba3a4e1> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime 0x90ba8000 - 0x90bbefe7 com.apple.CoreVideo 1.5.0 (1.5.0) /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x90bd1000 - 0x90bd5fff com.apple.CoreMediaAuthoringPrivate 1.3 (1.3) /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/A/CoreMediaAuthoringPrivate 0x90bdc000 - 0x90c13fff com.apple.SystemConfiguration 1.9.1 (1.9.1) <8a76e429301afe4eba1330bfeaabd9f2> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x90c14000 - 0x90c90feb com.apple.audio.CoreAudio 3.1.0 (3.1) <70bb7c657061631491029a61babe0b26> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x90d60000 - 0x90db9ff7 libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x90dba000 - 0x90ddefff libxslt.1.dylib ??? (???) <4933ddc7f6618743197aadc85b33b5ab> /usr/lib/libxslt.1.dylib 0x90e9e000 - 0x90efbffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib 0x90efc000 - 0x91595fff com.apple.CoreGraphics 1.351.21 (???) <6c93fd21149f389129fe47fa6ef71880> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x91596000 - 0x915c3feb libvDSP.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib 0x915c4000 - 0x915effe7 libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib 0x915f0000 - 0x915f6fff com.apple.print.framework.Print 218.0.2 (220.1) <8bf7ef71216376d12fcd5ec17e43742c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print 0x915f7000 - 0x9163cfef com.apple.Metadata 10.5.2 (398.7) <73a6424c06effc474e699cde6883de99> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata 0x916b0000 - 0x916dafff com.apple.CoreMediaPrivate 8.0 (8.0) /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMediaPrivate 0x916db000 - 0x9175aff5 com.apple.SearchKit 1.2.0 (1.2.0) <277b460da86bc222785159fe77e2e2ed> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x9175b000 - 0x91af1ff7 com.apple.QuartzCore 1.5.1 (1.5.1) <665c80f6e28555b303020c8007c36b8b> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x91af2000 - 0x91b30fff com.apple.CoreMediaIOServicesPrivate 8.0 (8.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions/A/CoreMediaIOServicesPrivate 0x91b31000 - 0x91b8dff7 com.apple.htmlrendering 68 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering 0x91b8e000 - 0x91ba6fff com.apple.openscripting 1.2.6 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting 0x91ba7000 - 0x91baefe9 libgcc_s.1.dylib ??? (???) /usr/lib/libgcc_s.1.dylib 0x91baf000 - 0x91d7aff7 com.apple.security 5.0.2 (33001) <0788969ffe7961153219be10786da436> /System/Library/Frameworks/Security.framework/Versions/A/Security 0x91d8a000 - 0x91ecfff7 com.apple.ImageIO.framework 2.0.1 (2.0.1) <68ba11e689a9ca30f8310935cd1e02d6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO 0x91ee0000 - 0x91ee3fff com.apple.help 1.1 (36) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help 0x91ee4000 - 0x91ee8fff libGIF.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x91ee9000 - 0x91ef1fff com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x91f0f000 - 0x91fc9fe3 com.apple.CoreServices.OSServices 224.4 (224.4) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 0x91fca000 - 0x91fdeff3 com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture 0x92138000 - 0x921b2ff8 com.apple.print.framework.PrintCore 5.5.2 (245.1) <3c9de512e95fbd838694ee5008d56a28> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x921b3000 - 0x92246ff3 com.apple.ApplicationServices.ATS 3.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x92265000 - 0x9226cff7 libCGATS.A.dylib ??? (???) <9b29a5500efe01cc3adea67bbc42568e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib 0x922bc000 - 0x92595ff3 com.apple.CoreServices.CarbonCore 785.8 (785.8) <827c228e7d717b397cdb4941eba69553> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x92596000 - 0x9259dffe libbsm.dylib ??? (???) /usr/lib/libbsm.dylib 0x9259e000 - 0x92818fe7 com.apple.Foundation 6.5.4 (677.15) <6216196287f98a65ddb654d04d773e7b> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x92819000 - 0x92825fe7 com.apple.opengl 1.5.6 (1.5.6) /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x92826000 - 0x928b1fff com.apple.framework.IOKit 1.5.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x928b2000 - 0x9297afe7 com.apple.QuickTimeMPEG4.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG4 0x9297b000 - 0x9297bffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 0x9297c000 - 0x92e4ffde libGLProgrammability.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib 0x92e50000 - 0x9364dfef com.apple.AppKit 6.5.2 (949.26) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x937db000 - 0x93862ff7 libsqlite3.0.dylib ??? (???) <6978bbcca4277d6ae9f042beff643f7d> /usr/lib/libsqlite3.0.dylib 0x93958000 - 0x93999fe7 libRIP.A.dylib ??? (???) <9d42e83d860433f9126c4871d1fe0ce8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib 0x9399a000 - 0x93a79fff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib 0x93a7a000 - 0x93a88ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib 0x93b9b000 - 0x93bbaffa libJPEG.dylib ??? (???) <0cfb80109d624beb9ceb3c43b6c5ec10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x93bf8000 - 0x93ca8fff edu.mit.Kerberos 6.0.12 (6.0.12) <3dd13466876a8fe4549cfc1354233ec3> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x93ca9000 - 0x93ddbfef com.apple.CoreFoundation 6.5.1 (476.10) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x93e57000 - 0x93ee3ffb com.apple.QTKit 7.4.5 (67) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit 0x93ee4000 - 0x93faffff com.apple.ColorSync 4.5.0 (4.5.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync 0x93fe6000 - 0x94063fef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x94064000 - 0x94066ff5 libRadiance.dylib ??? (???) <20eadb285da83df96c795c2c5fa20590> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib 0x94067000 - 0x941c6ff3 libSystem.B.dylib ??? (???) <4899376234e55593b22fc370935f8cdf> /usr/lib/libSystem.B.dylib 0x941d5000 - 0x941fdfff libcups.2.dylib ??? (???) <2f0a710a9128882efb2ed92ad139b58c> /usr/lib/libcups.2.dylib 0x941fe000 - 0x9423cff7 libGLImage.dylib ??? (???) <090de775838db03ddc710f57abbf6218> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 0x9426d000 - 0x9429cfe3 com.apple.AE 402.2 (402.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 0x942d0000 - 0x943b1ff7 libxml2.2.dylib ??? (???) <3cd4cccd4ca35dffa4688436aa0cd908> /usr/lib/libxml2.2.dylib 0x943d1000 - 0x943ecffb libPng.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 0x943ed000 - 0x94464fe3 com.apple.CFNetwork 221.5 (221.5) <5474cdd7d2a8b2e8059de249c702df9e> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x944b4000 - 0x944b4ffa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x944b5000 - 0x944c5ffc com.apple.LangAnalysis 1.6.4 (1.6.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 0x944c6000 - 0x944c6fff com.apple.Carbon 136 (136) <98a5e3bc0c4fa44bbb09713bb88707fe> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 0x944fc000 - 0x948bafea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib 0x948cf000 - 0x948d4fff com.apple.CommonPanels 1.2.4 (85) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels 0x948d5000 - 0x948d6ffc libffi.dylib ??? (???) /usr/lib/libffi.dylib 0x948d7000 - 0x94927ff7 com.apple.HIServices 1.7.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 0x94928000 - 0x94c30fff com.apple.HIToolbox 1.5.2 (???) <7449d6f2da33ded6936243a92e307459> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 0x94c82000 - 0x94ca0fff libresolv.9.dylib ??? (???) <0629b6dcd71f4aac6a891cbe26253e85> /usr/lib/libresolv.9.dylib 0x94ca1000 - 0x94ce3fef com.apple.NavigationServices 3.5.1 (161) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices 0x94d44000 - 0x94e17fef com.apple.QuickTimeH264.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264 0x94f50000 - 0x94f50ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallServer 0x94f57000 - 0x94f57ff8 com.apple.Cocoa 6.5 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 0x94f96000 - 0x95048ffb libcrypto.0.9.7.dylib ??? (???) <330b0e48e67faffc8c22dfc069ca7a47> /usr/lib/libcrypto.0.9.7.dylib 0x95049000 - 0x95069ff2 libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x9506a000 - 0x950a4fff com.apple.coreui 1.1 (61) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 0x950a5000 - 0x950b5fff com.apple.speech.synthesis.framework 3.6.59 (3.6.59) <4ffef145fad3d4d787e0c33eab26b336> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x950b6000 - 0x950f5fef libTIFF.dylib ??? (???) <6d0f80e9d4d81f3f64c876aca005bd53> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x950f6000 - 0x951dbff3 com.apple.CoreData 100.1 (186) <8e28162ef2288692615b52acc01f8b54> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x951dc000 - 0x951e6feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound 0x951ff000 - 0x962afff6 com.apple.QuickTimeComponents.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTimeComponents 0x962b0000 - 0x96377ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x969c9000 - 0x96a5cfff com.apple.ink.framework 101.3 (86) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink 0x96a5d000 - 0x96a68ff9 com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData 0x96a69000 - 0x96ac3ff7 com.apple.CoreText 2.0.1 (???) <07494945ad1e3f5395599f42748457cc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText 0x96c43000 - 0x96ceafeb com.apple.QD 3.11.52 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x96ceb000 - 0x96d8dff3 com.apple.QuickTimeImporters.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTimeImporters 0x96d8e000 - 0x9719efef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 0x9719f000 - 0x971a3fff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib 0xba900000 - 0xba916fff libJapaneseConverter.dylib ??? (???) <7b0248c392848338f5d6ed093313eeef> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib 0xbab00000 - 0xbab21fe2 libKoreanConverter.dylib ??? (???) <51586b8d9ef39123fbe6918f12d8285f> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib 0xbabb0000 - 0xbabb1ffd +com.3dconnexion.driver.client 1.4.0 (1.4.0) /Library/Frameworks/3DconnexionClient.framework/Versions/A/3DconnexionClient 0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib 0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib Model: MacBookPro2,1, BootROM MBP21.00A5.B07, 2 processors, Intel Core 2 Duo, 2.33 GHz, 3 GB Graphics: kHW_ATIr520Item, ATY,RadeonX1600, spdisplays_pcie_device, 256 MB Memory Module: BANK 0/DIMM0, 2 GB, DDR2 SDRAM, 667 MHz Memory Module: BANK 1/DIMM1, 1 GB, DDR2 SDRAM, 667 MHz AirPort: spairport_wireless_card_type_airport_extreme, 1.3.4 Bluetooth: Version 2.1.0f14, 2 service, 1 devices, 1 incoming serial ports Network Service: AirPort, AirPort, en1 Network Service: Parallels Host-Guest, Ethernet, en2 Network Service: Parallels NAT, Ethernet, en3 Serial ATA Device: Hitachi HTS541616J9SA00, 149.05 GB Parallel ATA Device: MATADVD-R UJ-85J, 3.3 GB USB Device: hub_device, high_speed, 500 mA USB Device: hub_device, high_speed, 500 mA USB Device: USB2.0 MFP(Hi-Speed), EPSON, high_speed, 500 mA USB Device: -0405-U, Tablet, full_speed, 500 mA USB Device: Built-in iSight, Micron, high_speed, 500 mA USB Device: Apple Internal Keyboard / Trackpad, Apple Computer, full_speed, 500 mA USB Device: Bluetooth USB Host Controller, Apple, Inc., full_speed, 500 mA USB Device: IR Receiver, Apple Computer, Inc., full_speed, 500 mA FireWire Device: LaCie d2 Extreme LUN 0, LaCie Group SA, 800mbit_speed FireWire Device: d2 Quadra (button), LaCie, 800mbit_speed FireWire Device: LaCie Big Disk Extreme LUN 0, LaCie Group SA, 800mbit_speed
×
×
  • Create New...