content
stringlengths
4
1.04M
lang
stringclasses
358 values
score
int64
0
5
repo_name
stringlengths
5
114
repo_path
stringlengths
4
229
repo_licenses
sequencelengths
1
8
_fs_size = 12K;
Linker Script
0
sebastien-riou/micropython
ports/nrf/boards/microbit/custom_nrf51822_s110_microbit.ld
[ "MIT" ]
KtAnnotationCall: argumentMapping = { [Annotation("v1", "v2"), Annotation(["v3", "v4"])] -> (vararg annos: Annotation) } targetFunction = <constructor>(vararg annos: Annotation): AnnotationArray
Text
3
margarita-nedzelska-sonarsource/kotlin
analysis/analysis-api/testData/analysisSession/resolveCall/annotationInAnnotation_multipleAnnotations_collectionLiteral.txt
[ "ECL-2.0", "Apache-2.0" ]
# Copies the pathname of the current directory to the system or X Windows clipboard function copydir { emulate -L zsh print -n $PWD | clipcopy }
Shell
4
chensanle/ohmyzsh
plugins/copydir/copydir.plugin.zsh
[ "MIT" ]
#pragma once #include <cuda.h> #include <c10/util/complex.h> #include <c10/util/Half.h> __device__ __forceinline__ unsigned int ACTIVE_MASK() { #if !defined(USE_ROCM) return __activemask(); #else // will be ignored anyway return 0xffffffff; #endif } #if defined(USE_ROCM) __device__ __forceinline__ unsigned long long int WARP_BALLOT(int predicate) { return __ballot(predicate); } #else __device__ __forceinline__ unsigned int WARP_BALLOT(int predicate, unsigned int mask = 0xffffffff) { #if !defined(USE_ROCM) return __ballot_sync(mask, predicate); #else return __ballot(predicate); #endif } #endif template <typename T> __device__ __forceinline__ T WARP_SHFL_XOR(T value, int laneMask, int width = warpSize, unsigned int mask = 0xffffffff) { #if !defined(USE_ROCM) return __shfl_xor_sync(mask, value, laneMask, width); #else return __shfl_xor(value, laneMask, width); #endif } template <typename T> __device__ __forceinline__ T WARP_SHFL(T value, int srcLane, int width = warpSize, unsigned int mask = 0xffffffff) { #if !defined(USE_ROCM) return __shfl_sync(mask, value, srcLane, width); #else return __shfl(value, srcLane, width); #endif } template <typename T> __device__ __forceinline__ T WARP_SHFL_UP(T value, unsigned int delta, int width = warpSize, unsigned int mask = 0xffffffff) { #if !defined(USE_ROCM) return __shfl_up_sync(mask, value, delta, width); #else return __shfl_up(value, delta, width); #endif } template <typename T> __device__ __forceinline__ T WARP_SHFL_DOWN(T value, unsigned int delta, int width = warpSize, unsigned int mask = 0xffffffff) { #if !defined(USE_ROCM) return __shfl_down_sync(mask, value, delta, width); #else return __shfl_down(value, delta, width); #endif } #if defined(USE_ROCM) template<> __device__ __forceinline__ int64_t WARP_SHFL_DOWN<int64_t>(int64_t value, unsigned int delta, int width , unsigned int mask) { //(HIP doesn't support int64_t). Trick from https://devblogs.nvidia.com/faster-parallel-reductions-kepler/ int2 a = *reinterpret_cast<int2*>(&value); a.x = __shfl_down(a.x, delta); a.y = __shfl_down(a.y, delta); return *reinterpret_cast<int64_t*>(&a); } #endif template<> __device__ __forceinline__ c10::Half WARP_SHFL_DOWN<c10::Half>(c10::Half value, unsigned int delta, int width, unsigned int mask) { return c10::Half(WARP_SHFL_DOWN<unsigned short>(value.x, delta, width, mask), c10::Half::from_bits_t{}); } template <typename T> __device__ __forceinline__ c10::complex<T> WARP_SHFL_DOWN(c10::complex<T> value, unsigned int delta, int width = warpSize, unsigned int mask = 0xffffffff) { #if !defined(USE_ROCM) return c10::complex<T>( __shfl_down_sync(mask, value.real_, delta, width), __shfl_down_sync(mask, value.imag_, delta, width)); #else return c10::complex<T>( __shfl_down(value.real_, delta, width), __shfl_down(value.imag_, delta, width)); #endif } /** * For CC 3.5+, perform a load using __ldg */ template <typename T> __device__ __forceinline__ T doLdg(const T* p) { #if __CUDA_ARCH__ >= 350 && !defined(USE_ROCM) return __ldg(p); #else return *p; #endif }
Cuda
4
xiaohanhuang/pytorch
aten/src/ATen/cuda/DeviceUtils.cuh
[ "Intel" ]
If A_OSVersion in WIN_2003,WIN_XP,WIN_2000 _s := Chr(4445) , RecentFolder := A_AppData "\..\Recent" Else _s := Chr(8239) , RecentFolder := A_AppData "\Microsoft\Windows\Recent" _w := Chr(2), _x := Chr(3), _y := Chr(4), _z := Chr(5) ListCount1 := 0 , TabCount := 1 , FastKeyOn := 0 , SlowKeyOn := 0 , cType1 := "Send" , cType2 := "ControlSend" , cType3 := "Click" , cType4 := "ControlClick" , cType5 := "Sleep" , cType6 := "MsgBox" , cType7 := "Loop" , cType8 := "SendRaw" , cType9 := "ControlSendRaw" , cType10 := "ControlSetText" , cType11 := "Run" , cType12 := "Clipboard" , cType13 := "SendEvent" , cType14 := "RunWait" , cType15 := "PixelSearch" , cType16 := "ImageSearch" , cType17 := "If_Statement" , cType18 := "SendMessage" , cType19 := "PostMessage" , cType20 := "KeyWait" , cType21 := "Variable" , cType22 := "ControlEditPaste" , cType23 := "ControlGetText" , cType24 := "Control" , cType25 := "ControlFocus" , cType26 := "ControlMove" , cType27 := "ControlGetFocus" , cType28 := "ControlGet" , cType29 := "Break" , cType30 := "Continue" , cType31 := "ControlGetPos" , cType32 := "IECOM_Set" , cType33 := "IECOM_Get" , cType34 := "COMInterface" , cType35 := "Label" , cType36 := "Goto" , cType37 := "Gosub" , cType38 := "LoopRead" , cType39 := "LoopParse" , cType40 := "LoopFilePattern" , cType41 := "LoopRegistry" , cType42 := "CommentBlock" , cType43 := "Expression" , cType44 := "Function" , cType45 := "For" , cType46 := "Method" , cType47 := "UserFunction" , cType48 := "FuncParameter" , cType49 := "FuncReturn" , cType50 := "SetTimer" , cType51 := "While" , cType52 := "SendEmail" , cType53 := "DownloadFiles" , cType54 := "Zip" , cType55 := "Unzip" , cType56 := "ImageToText" MAction1 := "Click" , MAction2 := "Move" , MAction3 := "Move & Click" , MAction4 := "Click & Drag" , MAction5 := "Mouse Wheel Up" , MAction6 := "Mouse Wheel Down" , ContHelp := { 3: ["PauseB", "MsgboxB", "KeyWaitB"] , 5: ["MouseB"] , 7: ["SpecialB"] , 8: ["TextB"] , 10: ["RunB"] , 11: ["WindowB"] , 12: ["ComLoopB", "ComGotoB", "TimedLabelB"] , 14: ["ExportG", "ExportO"] , 16: ["IfDirB"] , 19: ["ImageB"] , 21: ["IfStB", "AsVarB", "AsFuncB"] , 22: ["SendMsgB"] , 23: ["ControlB"] , 24: ["IEComB", "IEComB"] , 33: ["EditMacroB"] , 38: ["UserFuncB", "UserFuncB", "UserFuncB"] , 39: ["EmailB"] , 40: ["DownloadB", "ZipB"]} , ContHTitle := { 2: ["Preview.html"] , 3: ["Commands/Pause.html", "Commands/Message_Box.html", "Commands/KeyWait.html"] , 4: ["Settings.html", "Record.html#recording-options.", "Playback.html#playback-options", "Settings.html#defaults" , "Settings.html#screenshots", "Settings.html#email-accounts", "Settings.html#language" , "Settings.html#language-editor", "Settings.html#user-global-variables", "Settings.html#language-editor"] , 5: ["Commands/Mouse.html"] , 6: ["Main.html#edit"] , 7: ["Main.html#insert-/-modify"] , 8: ["Commands/Text.html"] , 10: ["Commands/Run.html"] , 11: ["Commands/Window.html"] , 12: ["Commands/Loop.html", "Commands/Goto_and_Gosub.html", "Commands/Set_Timer.html" , "Commands/Label.html" , "Commands/Loop_FilePattern.html", "Commands/Loop_Parse.html", "Commands/Loop_Read.html", "Commands/Loop_Registry.html" , "Commands/While_Loop.html", "Commands/For_Loop.html"] , 14: ["Export.html"] , 16: ["Playback.html#context-sensitive-hotkeys"] , 19: ["Commands/Image_Search.html", "Commands/Pixel_Search.html"] , 21: ["Commands/If_Statements.html", "Commands/Variables.html", "Commands/Functions.html"] , 22: ["Commands/PostMessage_and_SendMessage.html"] , 23: ["Commands/Control.html"] , 24: ["Commands/Internet_Explorer.html", "Commands/Expression.html"] , 26: ["Commands.html#find-a-command"] , 27: ["Main.html#timer"] , 30: ["Variables.html#expressions"] , 34: ["Commands.html#find-a-command"] , 36: ["Main.html#schedule-macros"] , 38: ["Functions.html#user-defined-functions", "Functions.html#parameters", "Functions.html#return"] , 39: ["Commands/Send_Email.html"] , 40: ["Commands/Download_Files.html", "Commands/Zip_Files.html"] } RecOptChecks := ["ClearNewList", "", "Strokes", "CaptKDn", "RecKeybdCtrl" , "", "Mouse", "MScroll", "Moves", "RecMouseCtrl" , "", "TimedI", "WClass", "WTitle"] , PlayOptChecks := ["ShowStep", "HideErrors", "MouseReturn", "ShowBarOnStart", "AutoHideBar", "RandomSleeps"] , OnFinishCode := 1 , CopyMenuLabels := [] , ScopedVars := {} , Static_Vars := {} , RegisteredTimers := [] , LVManager := [] , LVCopier := new LV_Rows() , HistData := Object() , Exp_Mult := {2:1, 4:2, 8:3, 16:4, 32:5, 64:6, 128:7, 256:8} , MsgBoxStyles := [1048576, 524288, 262144, 512, 256] , Email_Fields := ["email", "smtpserver", "smtpserverport", "sendusername", "sendpassword" , "smtpauthenticate", "smtpusessl", "smtpconnectiontimeout", "sendusing"] IconsNames := { "apply": 1 , "break": 2 , "color": 3 , "com": 4 , "comment": 5 , "continue": 6 , "control": 7 , "copy": 8 , "cut": 9 , "delete": 10 , "dialogs": 11 , "donate": 12 , "duplicate": 13 , "edit": 14 , "exit": 15 , "export": 16 , "expview": 17 , "files": 18 , "find": 19 , "finish": 20 , "functions": 21 , "goto": 22 , "group": 23 , "help": 24 , "ie": 25 , "ifstatements": 26 , "image": 27 , "import": 28 , "info": 29 , "ini": 30 , "insert": 31 , "joy": 32 , "expression": 33 , "labels": 34 , "userfunc": 35 , "loop": 36 , "misc": 37 , "mouse": 38 , "movedn": 39 , "moveup": 40 , "new": 41 , "open": 42 , "options": 43 , "paste": 44 , "pause": 45 , "play": 46 , "playopt": 47 , "playtest": 48 , "preview": 49 , "process": 50 , "progbar": 51 , "recent": 52 , "recopt": 53 , "record": 54 , "recpause": 55 , "redo": 56 , "registry": 57 , "run": 58 , "save": 59 , "screenshot": 60 , "sendmsg": 61 , "shutdown": 62 , "slowdown": 63 , "sound": 64 , "stop": 65 , "tabadd": 66 , "tabsave": 67 , "tabclose": 68 , "tabdup": 69 , "text": 70 , "timer": 71 , "tip_hi": 72 , "treeview": 73 , "undo": 74 , "variables": 75 , "paragraph": 76 , "wait": 77 , "warn": 78 , "window": 79 , "mintotray": 80 , "pin": 81 , "alwaysactive": 82 , "capt": 83 , "fastforward": 84 , "indent": 85 , "saveas": 86 , "toolbar": 87 , "winkey": 88 , "recordnew": 89 , "refresh": 90 , "keystroke": 91 , "findcmd": 92 , "dock": 93 , "string": 94 , "download": 95 , "wrap": 96 , "tabedit": 97 , "border": 98 , "select": 99 , "eyedropper": 100 , "context": 101 , "filter": 102 , "scheduler": 103 , "groups": 104 , "return": 105 , "undock": 106 , "parameter": 107 , "close": 108 , "extedit": 109 , "sort": 110 , "zip": 111 , "email": 112 , "ocr": 113 } KeyNameRep := " (Join, LControl|Left Control RControl|Right Control LAlt|Left Alt RAlt|Right Alt LShift|Left Shift RShift|Right Shift LWin|Left Win RWin|Right Win AppsKey|Apps Key PgUp|Page Up PgDn|Page Down PrintScreen|Print Screen CapsLock|Caps Lock ScrollLock|Scroll Lock NumLock|Num Lock Num Dot|Num . Num Div|Num / Num Mult|Num * Num Add|Num + Num Sub|Num - Num Ins|Num Insert Num PgDn|Num Page Down Num PgUp|Num Page Up Num Del|Num Delete )" , CtrlCmdList := " (Join| Control| ControlFocus ControlMove ControlSetText ControlGet ControlGetText ControlGetFocus ControlGetPos )" , CtrlCmd := " (Join| Check| Uncheck Enable Disable Show Hide Style ExStyle ShowDropDown HideDropDown TabLeft TabRight Add Delete Choose ChooseString EditPaste )" , CtrlGetCmd := " (Join| List| Checked Enabled Visible Tab FindString Choice LineCount CurrentLine CurrentCol Line Selected Style ExStyle Hwnd )" , WinList := " ( WinSet = WinTitle, WinText, ExcludeTitle, ExcludeText WinActivate = WinTitle, WinText, ExcludeTitle, ExcludeText WinActivateBottom = WinTitle, WinText, ExcludeTitle, ExcludeText WinWait = WinTitle, WinText, ExcludeTitle, ExcludeText WinWaitActive = WinTitle, WinText, ExcludeTitle, ExcludeText WinWaitNotActive = WinTitle, WinText, ExcludeTitle, ExcludeText WinWaitClose = WinTitle, WinText, ExcludeTitle, ExcludeText WinMaximize = WinTitle, WinText, ExcludeTitle, ExcludeText WinMinimize = WinTitle, WinText, ExcludeTitle, ExcludeText WinRestore = WinTitle, WinText, ExcludeTitle, ExcludeText WinMinimizeAll WinMinimizeAllUndo WinMove = WinTitle, WinText, ExcludeTitle, ExcludeText WinShow = WinTitle, WinText, ExcludeTitle, ExcludeText WinHide = WinTitle, WinText, ExcludeTitle, ExcludeText WinClose = WinTitle, WinText, ExcludeTitle, ExcludeText WinKill = WinTitle, WinText, ExcludeTitle, ExcludeText WinSetTitle = WinTitle, WinText, NewTitle, ExcludeTitle, ExcludeText WinGet = WinTitle, WinText, ExcludeTitle, ExcludeText WinGetTitle = WinTitle, WinText, ExcludeTitle, ExcludeText WinGetClass = WinTitle, WinText, ExcludeTitle, ExcludeText WinGetText = WinTitle, WinText, ExcludeTitle, ExcludeText WinGetPos = WinTitle, WinText, ExcludeTitle, ExcludeText )" Loop, Parse, WinList, `n { Loop, Parse, A_LoopField, =, %A_Space% { If (A_Index = 1) WinCmdList .= A_LoopField "|", Par := A_LoopField } If (A_Index = 1) WinCmdList .= "|" } Wcmd_All := "WinTitle, WinText, ExcludeTitle, ExcludeText" , Wcmd_Short := "Title, Text, ExclTitle, ExclText" , WinCmd := " (Join| AlwaysOnTop| Bottom Top Disable Enable Redraw Style ExStyle Region Transparent TransColor )" , WinGetCmd := " (Join| ID| IDLast PID ProcessName ProcessPath Count List MinMax ControlList ControlListHwnd Transparent TransColor Style ExStyle )" , IfCmd := " ( If Window Active|IfWinActive, If Window Not Active|IfWinNotActive, If Window Exist|IfWinExist, If Window Not Exist|IfWinNotExist, If File Exist|IfExist, If File Not Exist|IfNotExist, If Clipboard Text|If Clipboard = If Loop Index|If A_Index = If Image/Pixel Found|If ErrorLevel = 0 If Image/Pixel Not Found|If ErrorLevel If String Contains|IfInString, If String Not Contains|IfNotInString, If Message Box|IfMsgBox, Compare Variables|If Evaluate Expression|If (expression) )" Loop, Parse, IfCmd, `n { Count := A_Index Loop, Parse, A_LoopField, | { If (A_Index = 1) { If%Count% := A_LoopField IfList%Count% := A_LoopField } Else c_If%Count% := A_LoopField } } MsgButtons := "Yes,No,OK,Cancel,Abort,Ignore,Retry,Continue,TryAgain,Timeout" StringSplit, IfMsg, MsgButtons, `, ExprOper := " ( Assign Add Subtract Multiply Divide Floor divide Concatenate Bitwise inclusive OR Bitwise AND Bitwise exclusive OR Right shift AND Left shift AND )" StringSplit, ExprOper, ExprOper, `n IECmdList := " (Join| Checked Click Focus GoBack GoForward GoHome GoSearch Height Href InnerHTML InnerText Length LocationName LocationURL Navigate| OuterHTML Quit Refresh SelectedIndex Src Stop Submit Type Value Width )" , SetOnlyList := "GoHome,GoBack,GoForward,GoSearch,Refresh,Stop,Quit ,Navigate,Navigate2,Focus,Click,Submit" , GetOnlyList := "LocationName,LocationURL" , NoValueList := "GoHome,GoBack,GoForward,GoSearch,Refresh,Stop,Quit ,Focus,Click,Submit" , NoElemList := "Navigate,Navigate2,GoHome,GoBack,GoForward,GoSearch,Refresh,Stop,Quit ,LocationName,LocationURL" , MethodList := " (Join, Click ClientToWindow ExecWB Focus GetProperty GoBack GoForward GoHome GoSearch Navigate Navigate2 PutProperty QueryStatusWB Quit Refresh Refresh2 ShowBrowserBar Stop Submit )" , ProperList := " (Join, AddressBar Application Busy Checked Container Document FullName FullScreen HWND Height Href InnerHTML InnerText Left Length LocationName LocationURL MenuBar Name Offline OuterHTML Parent Path ReadyState RegisterAsBrowser RegisterAsDropTarget Resizable SelectedIndex Silent Src StatusBar StatusText TheaterMode ToolBar Top TopLevelContainer Type Value Visible Width )" CLSList := " (Join| Excel.Application HTMLfile InternetExplorer.Application| MSXML2.DOMDocument.6.0 MSXML2.XMLHTTP Outlook.Application PowerPoint.Application SAPI.SpVoice Schedule.Service ScriptControl Scripting.Dictionary Scripting.FileSystemObject Shell.Application Shell.Explorer VBScript.RegExp WMPlayer.OCX WScript.Shell WinHttp.WinHttpRequest.5.1 Winmgmt Word.Application )" , FileCmd := " ( Run, Target, WorkingDir, Max|Min|Hide|UseErrorLevel, OutputVarPID RunWait, Target, WorkingDir, Max|Min|Hide|UseErrorLevel, OutputVarPID RunAs, User, Password, Domain Process, Cmd, PID-or-Name, Param3 Shutdown, Code FileAppend, Text, Filename, Encoding FileCopy, SourcePattern, DestPattern, Flag FileCopyDir, Source, Dest, Flag FileCreateDir, DirName FileCreateShortcut, Target, LinkFile, WorkingDir, Args, Description, IconFile, ShortcutKey, IconNumber, RunState FileDelete, FilePattern FileGetAttrib, OutputVar, Filename FileGetShortcut, LinkFile, OutTarget, OutDir, OutArgs, OutDescription, OutIcon, OutIconNum, OutRunState FileGetSize, OutputVar, Filename, Units FileGetTime, OutputVar, Filename, WhichTime FileGetVersion, OutputVar, Filename FileMove, SourcePattern, DestPattern, Flag FileMoveDir, Source, Dest, Flag FileRead, OutputVar, Filename FileReadLine, OutputVar, Filename, LineNum FileRecycle, FilePattern FileRecycleEmpty, DriveLetter FileRemoveDir, DirName, Recurse? FileSelectFile, OutputVar, Options, RootDir\Filename, Prompt, Filter FileSelectFolder, OutputVar, StartingFolder, Options, Prompt FileSetAttrib, Attributes, FilePattern, OperateOnFolders?, Recurse? FileSetTime, YYYYMMDDHH24MISS, FilePattern, WhichTime, OperateOnFolders?, Recurse? Drive, Sub-command, Drive , Value DriveGet, OutputVar, Cmd, Value DriveSpaceFree, OutputVar, Path Sort, VarName, Options StringGetPos, OutputVar, InputVar, SearchText, L#|R#, Offset StringLeft, OutputVar, InputVar, Count StringRight, OutputVar, InputVar, Count StringLen, OutputVar, InputVar StringLower, OutputVar, InputVar, T StringUpper, OutputVar, InputVar, T StringMid, OutputVar, InputVar, StartChar, Count , L StringReplace, OutputVar, InputVar, SearchText, ReplaceText, ReplaceAll? StringSplit, OutputArray, InputVar, Delimiters, OmitChars StringTrimLeft, OutputVar, InputVar, Count StringTrimRight, OutputVar, InputVar, Count SplitPath, InputVar, OutFileName, OutDir, OutExtension, OutNameNoExt, OutDrive Input, OutputVar, Options, EndKeys, MatchList KeyWait, KeyName, Options StatusBarWait, BarText, Seconds, Part#, WinTitle, WinText, Interval ClipWait, SecondsToWait, 1 GetKeyState, OutputVar, KeyName, Mode MouseGetPos, OutputVarX, OutputVarY, OutputVarWin, OutputVarControl, 1|2|3 PixelGetColor, OutputVar, X, Y, Alt|Slow|RGB SysGet, OutputVar, Sub-command, Param3 StatusBarGetText, OutputVar, Part#, WinTitle, WinText, ExcludeTitle, ExcludeText GroupAdd, GroupName, WinTitle, WinText, Label, ExcludeTitle, ExcludeText GroupActivate, GroupName, R GroupDeactivate, GroupName, R GroupClose, GroupName, A|R InputBox, OutputVar, Title, Prompt, HIDE, Width, Height, X, Y, Font, Timeout, Default ToolTip, Text, X, Y, WhichToolTip TrayTip, Title, Text, Seconds, Options Progress, ProgressParam1, SubText, MainText, WinTitle, FontName SplashImage, ImageFile, Options, SubText, MainText, WinTitle, FontName SplashTextOn, Width, Height, Title, Text SplashTextOff RegRead, OutputVar, RootKey, SubKey, ValueName RegWrite, ValueType, RootKey, SubKey, ValueName, Value RegDelete, RootKey, SubKey, ValueName SetRegView, RegView IniRead, OutputVar, Filename, Section, Key, Default IniWrite, Value, Filename, Section, Key IniDelete, Filename, Section, Key SoundBeep, Frequency, Duration SoundGet, OutputVar, ComponentType, ControlType, DeviceNumber SoundGetWaveVolume, OutputVar, DeviceNumber SoundPlay, Filename, wait SoundSet, NewSetting, ComponentType, ControlType, DeviceNumber SoundSetWaveVolume, Percent, DeviceNumber EnvAdd, Var, Value, TimeUnits EnvSub, Var, Value, TimeUnits EnvDiv, Var, Value EnvMult, Var, Value EnvGet, OutputVar, EnvVarName EnvSet, EnvVar, Value EnvUpdate FormatTime, OutputVar, YYYYMMDDHH24MISS, Format Transform, OutputVar, Cmd, Value1, Value2 Random, OutputVar, Min, Max BlockInput, Mode CoordMode, ToolTip|Pixel|Mouse|Caret|Menu, Screen|Window|Client WinMenuSelectItem, WinTitle, WinText, Menu, SubMenu1, SubMenu2, SubMenu3, SubMenu4, SubMenu5, SubMenu6, ExcludeTitle, ExcludeText SendMode, Input|Play|Event|InputThenPlay SetKeyDelay, Delay, PressDuration, Play SetMouseDelay, Delay, Play SetControlDelay, Delay SetCapsLockState, State SetNumLockState, State SetScrollLockState, State OutputDebug, Text UrlDownloadToFile, URL, Filename Break, LoopNumber Continue, LoopNumber Pause Return ListVars ExitApp )" Loop, Parse, FileCmd, `n { Loop, Parse, A_LoopField, `,,%A_Space% { If (A_Index = 1) FileCmdList .= A_LoopField "|", fcmd := A_LoopField, Par := 1 , FileCmdML .= A_LoopField "," Else { %fcmd%%Par% := A_LoopField Par++ } } If (A_Index = 1) FileCmdList .= "|" } AssignOperators := ":=$$+=$-=$*=$/=$//=$.=$|=$&=$^=$>>=$<<=" ;##### Functions: ##### BuiltinFuncList := " (Join$ Abs ACos Array Asc ASin ATan Ceil Chr ComObjActive ComObjArray ComObjConnect ComObjCreate ComObjEnwrap ComObjError ComObjFlags ComObjGet ComObjMissing ComObjParameter ComObjQuery ComObjType ComObjUnwrap ComObjValue Cos DllCall Exp FileExist FileOpen Floor Format Func GetKeyName GetKeySC GetKeyState GetKeyVK InStr Ln LoadPicture Log LTrim Max Min Mod NumGet NumPut Object Ord RegExMatch RegExReplace Round RTrim Sin Sqrt StrGet StrLen StrPut StrReplace StrSplit SubStr Tan Trim Unzip WinActive WinExist )" BuiltinFuncParams := " ( Abs (Number) ACos (Number) Array (Value1, Value2, Value3...) Asc (String) ASin (Number) ATan (Number) Ceil (Number) Chr (Number) ComObjActive (CLSID) ComObjArray (VarType, Count1 [, Count2, ... Count8]) ComObjConnect (ComObject [, Prefix]) ComObjCreate (CLSID [, IID]) ComObjEnwrap (DispPtr) ComObjError ([Enable]) ComObjFlags (ComObject [, NewFlags, Mask]) ComObjGet (Name) ComObjMissing () ComObjParameter (VarType, Value [, Flags]) ComObjQuery (ComObject, [SID,] IID) ComObjType (ComObject) ComObjUnwrap (ComObject) ComObjValue (ComObject) Cos (Number) DllCall (""[DllFile\]Function"" [, Type1, Arg1, Type2, Arg2, ""Cdecl ReturnType""]) Exp (N) FileExist (FilePattern) FileOpen () Floor (Number) Format (FormatStr [, Values...]) Func (FunctionName) GetKeyName (Key) GetKeySC (Key) GetKeyState (KeyName [, ""P"" or ""T""]) GetKeyVK (Key) InStr (Haystack, Needle [, CaseSensitive = false, StartingPos = 1, Occurrence = 1]) Ln (Number) LoadPicture (Filename [, Options, ByRef ImageType]) Log (Number) LTrim (String, OmitChars = "" `t"") Max (Number1 [, Number2, ...]) Min (Number1 [, Number2, ...]) Mod (Dividend, Divisor) NumGet (VarOrAddress [, Offset = 0][, Type = ""UPtr""]) NumPut (Number, VarOrAddress [, Offset = 0][, Type = ""UPtr""]) Object () Ord (String) RegExMatch (Haystack, NeedleRegEx [, UnquotedOutputVar = "", StartingPos = 1]) RegExReplace (Haystack, NeedleRegEx [, Replacement = """", OutputVarCount = """", Limit = -1, StartingPos = 1]) Round (Number [, N]) RTrim (String, OmitChars = "" `t"") Sin (Number) Sqrt (Number) StrGet (Address [, Length] [, Encoding = None]) StrLen (String) StrPut (String, Address [, Length] [, Encoding = None]) StrReplace (Haystack, SearchText [, ReplaceText, OutputVarCount, Limit := -1]) StrSplit (String [, Delimiters, OmitChars]) SubStr (String, StartingPos [, Length]) Tan (Number) Trim (String, OmitChars = "" `t"") Unzip (Sources, OutDir [, SeparateFolders]) WinActive ([WinTitle, WinText, ExcludeTitle, ExcludeText]) WinExist ([WinTitle, WinText, ExcludeTitle, ExcludeText]) Delete (Key / FirstKey, LastKey) HasKey (Key) InsertAt (Pos, Value1 [, Value2, ... ValueN]) Length () MaxIndex () MinIndex () RemoveAt (Pos [, Length]) Pop () Push ([Value, Value2, ..., ValueN]) )" ArrayMethodsList := " (Join$ Delete HasKey InsertAt Length MaxIndex MinIndex RemoveAt Pop Push )" Loop, Parse, BuiltinFuncParams, `n { RegExMatch(A_LoopField, "(\w+)\s(\(.*\))", FuncT) , %FuncT1%_Hint := FuncT2 } KeywordsList := "Type|Text|Mouse|Ctrl|Win|Misc|If|IE|Com|Func|Meth" GoSub, SetFindCmd ;##### Messages: ##### MsgList := " ( WM_NULL = 0x00 WM_CREATE = 0x01 WM_DESTROY = 0x02 WM_MOVE = 0x03 WM_SIZE = 0x05 WM_ACTIVATE = 0x06 WM_SETFOCUS = 0x07 WM_KILLFOCUS = 0x08 WM_ENABLE = 0x0A WM_SETREDRAW = 0x0B WM_SETTEXT = 0x0C WM_GETTEXT = 0x0D WM_GETTEXTLENGTH = 0x0E WM_PAINT = 0x0F WM_CLOSE = 0x10 WM_QUERYENDSESSION = 0x11 WM_QUIT = 0x12 WM_QUERYOPEN = 0x13 WM_ERASEBKGND = 0x14 WM_SYSCOLORCHANGE = 0x15 WM_ENDSESSION = 0x16 WM_SYSTEMERROR = 0x17 WM_SHOWWINDOW = 0x18 WM_CTLCOLOR = 0x19 WM_WININICHANGE = 0x1A WM_SETTINGCHANGE = 0x1A WM_DEVMODECHANGE = 0x1B WM_ACTIVATEAPP = 0x1C WM_FONTCHANGE = 0x1D WM_TIMECHANGE = 0x1E WM_CANCELMODE = 0x1F WM_SETCURSOR = 0x20 WM_MOUSEACTIVATE = 0x21 WM_CHILDACTIVATE = 0x22 WM_QUEUESYNC = 0x23 WM_GETMINMAXINFO = 0x24 WM_PAINTICON = 0x26 WM_ICONERASEBKGND = 0x27 WM_NEXTDLGCTL = 0x28 WM_SPOOLERSTATUS = 0x2A WM_DRAWITEM = 0x2B WM_MEASUREITEM = 0x2C WM_DELETEITEM = 0x2D WM_VKEYTOITEM = 0x2E WM_CHARTOITEM = 0x2F WM_SETFONT = 0x30 WM_GETFONT = 0x31 WM_SETHOTKEY = 0x32 WM_GETHOTKEY = 0x33 WM_QUERYDRAGICON = 0x37 WM_COMPAREITEM = 0x39 WM_COMPACTING = 0x41 WM_WINDOWPOSCHANGING = 0x46 WM_WINDOWPOSCHANGED = 0x47 WM_POWER = 0x48 WM_COPYDATA = 0x4A WM_CANCELJOURNAL = 0x4B WM_NOTIFY = 0x4E WM_INPUTLANGCHANGEREQUEST = 0x50 WM_INPUTLANGCHANGE = 0x51 WM_TCARD = 0x52 WM_HELP = 0x53 WM_USERCHANGED = 0x54 WM_NOTIFYFORMAT = 0x55 WM_CONTEXTMENU = 0x7B WM_STYLECHANGING = 0x7C WM_STYLECHANGED = 0x7D WM_DISPLAYCHANGE = 0x7E WM_GETICON = 0x7F WM_SETICON = 0x80 WM_NCCREATE = 0x81 WM_NCDESTROY = 0x82 WM_NCCALCSIZE = 0x83 WM_NCHITTEST = 0x84 WM_NCPAINT = 0x85 WM_NCACTIVATE = 0x86 WM_GETDLGCODE = 0x87 WM_NCMOUSEMOVE = 0xA0 WM_NCLBUTTONDOWN = 0xA1 WM_NCLBUTTONUP = 0xA2 WM_NCLBUTTONDBLCLK = 0xA3 WM_NCRBUTTONDOWN = 0xA4 WM_NCRBUTTONUP = 0xA5 WM_NCRBUTTONDBLCLK = 0xA6 WM_NCMBUTTONDOWN = 0xA7 WM_NCMBUTTONUP = 0xA8 WM_NCMBUTTONDBLCLK = 0xA9 WM_KEYFIRST = 0x100 WM_KEYDOWN = 0x100 WM_KEYUP = 0x101 WM_CHAR = 0x102 WM_DEADCHAR = 0x103 WM_SYSKEYDOWN = 0x104 WM_SYSKEYUP = 0x105 WM_SYSCHAR = 0x106 WM_SYSDEADCHAR = 0x107 WM_KEYLAST = 0x108 WM_IME_STARTCOMPOSITION = 0x10D WM_IME_ENDCOMPOSITION = 0x10E WM_IME_COMPOSITION = 0x10F WM_IME_KEYLAST = 0x10F WM_INITDIALOG = 0x110 WM_COMMAND = 0x111 WM_SYSCOMMAND = 0x112 WM_TIMER = 0x113 WM_HSCROLL = 0x114 WM_VSCROLL = 0x115 WM_INITMENU = 0x116 WM_INITMENUPOPUP = 0x117 WM_MENUSELECT = 0x11F WM_MENUCHAR = 0x120 WM_ENTERIDLE = 0x121 WM_CTLCOLORMSGBOX = 0x132 WM_CTLCOLOREDIT = 0x133 WM_CTLCOLORLISTBOX = 0x134 WM_CTLCOLORBTN = 0x135 WM_CTLCOLORDLG = 0x136 WM_CTLCOLORSCROLLBAR = 0x137 WM_CTLCOLORSTATIC = 0x138 WM_MOUSEFIRST = 0x200 WM_MOUSEMOVE = 0x200 WM_LBUTTONDOWN = 0x201 WM_LBUTTONUP = 0x202 WM_LBUTTONDBLCLK = 0x203 WM_RBUTTONDOWN = 0x204 WM_RBUTTONUP = 0x205 WM_RBUTTONDBLCLK = 0x206 WM_MBUTTONDOWN = 0x207 WM_MBUTTONUP = 0x208 WM_MBUTTONDBLCLK = 0x209 WM_MOUSEWHEEL = 0x20A WM_MOUSEHWHEEL = 0x20E WM_PARENTNOTIFY = 0x210 WM_ENTERMENULOOP = 0x211 WM_EXITMENULOOP = 0x212 WM_NEXTMENU = 0x213 WM_SIZING = 0x214 WM_CAPTURECHANGED = 0x215 WM_MOVING = 0x216 WM_POWERBROADCAST = 0x218 WM_DEVICECHANGE = 0x219 WM_MDICREATE = 0x220 WM_MDIDESTROY = 0x221 WM_MDIACTIVATE = 0x222 WM_MDIRESTORE = 0x223 WM_MDINEXT = 0x224 WM_MDIMAXIMIZE = 0x225 WM_MDITILE = 0x226 WM_MDICASCADE = 0x227 WM_MDIICONARRANGE = 0x228 WM_MDIGETACTIVE = 0x229 WM_MDISETMENU = 0x230 WM_ENTERSIZEMOVE = 0x231 WM_EXITSIZEMOVE = 0x232 WM_DROPFILES = 0x233 WM_MDIREFRESHMENU = 0x234 WM_IME_SETCONTEXT = 0x281 WM_IME_NOTIFY = 0x282 WM_IME_CONTROL = 0x283 WM_IME_COMPOSITIONFULL = 0x284 WM_IME_SELECT = 0x285 WM_IME_CHAR = 0x286 WM_IME_KEYDOWN = 0x290 WM_IME_KEYUP = 0x291 WM_MOUSEHOVER = 0x2A1 WM_NCMOUSELEAVE = 0x2A2 WM_MOUSELEAVE = 0x2A3 WM_CUT = 0x300 WM_COPY = 0x301 WM_PASTE = 0x302 WM_CLEAR = 0x303 WM_UNDO = 0x304 WM_RENDERFORMAT = 0x305 WM_RENDERALLFORMATS = 0x306 WM_DESTROYCLIPBOARD = 0x307 WM_DRAWCLIPBOARD = 0x308 WM_PAINTCLIPBOARD = 0x309 WM_VSCROLLCLIPBOARD = 0x30A WM_SIZECLIPBOARD = 0x30B WM_ASKCBFORMATNAME = 0x30C WM_CHANGECBCHAIN = 0x30D WM_HSCROLLCLIPBOARD = 0x30E WM_QUERYNEWPALETTE = 0x30F WM_PALETTEISCHANGING = 0x310 WM_PALETTECHANGED = 0x311 WM_HOTKEY = 0x312 WM_PRINT = 0x317 WM_PRINTCLIENT = 0x318 WM_HANDHELDFIRST = 0x358 WM_HANDHELDLAST = 0x35F WM_PENWINFIRST = 0x380 WM_PENWINLAST = 0x38F WM_COALESCE_FIRST = 0x390 WM_COALESCE_LAST = 0x39F WM_DDE_FIRST = 0x3E0 WM_DDE_INITIATE = 0x3E0 WM_DDE_TERMINATE = 0x3E1 WM_DDE_ADVISE = 0x3E2 WM_DDE_UNADVISE = 0x3E3 WM_DDE_ACK = 0x3E4 WM_DDE_DATA = 0x3E5 WM_DDE_REQUEST = 0x3E6 WM_DDE_POKE = 0x3E7 WM_DDE_EXECUTE = 0x3E8 WM_DDE_LAST = 0x3E8 WM_USER = 0x400 WM_APP = 0x8000 )" Loop, Parse, MsgList, `n { Loop, Parse, A_LoopField, =, %A_Space% If (InStr(A_LoopField, "_")) Msg := A_LoopField, WM_Msgs .= A_LoopField "|" Else %Msg% := A_LoopField } Sort, WM_Msgs, D| DefaultBar := {FileOpt: "Enabled AutoSize", File: ["New=" w_Lang112 ":41", "Open=" w_Lang041 ":42(Enabled Dropdown)", "Save=" w_Lang042 ":59", "SaveAs=" w_Lang043 ":86" , "", "Export=" w_Lang044 ":16", "Preview=" w_Lang045 ":49", "Options=" w_Lang046 ":43"] , RecPlayOpt: "Enabled AutoSize", RecPlay: ["Record=" w_Lang047 ":54(Enabled AutoSize Dropdown)" , "", "PlayStart=" w_Lang048 ":46(Enabled AutoSize Dropdown)", "TestRun=" w_Lang049 ":48", "RunTimer=" w_Lang050 ":71"] , CommandOpt: "Enabled AutoSize", Command: ["Mouse=" w_Lang051 ":38", "Text=" w_Lang052 ":70", "ControlCmd=" w_Lang054 ":7" , "", "Sleep=" w_Lang055 ":45", "MsgBox=" w_Lang056 ":11", "KeyWait=" w_Lang057 ":77" , "", "Window=" w_Lang058 ":79", "Image=" w_Lang059 ":27", "Run=" w_Lang060 ":58" , "", "ComLoop=" w_Lang061 ":36", "ComGoto=" w_Lang062 ":22", "TimedLabel=" w_Lang063 ":71" , "", "IfSt=" w_Lang064 ":26", "AsVar=" w_Lang065 ":75", "AsFunc=" w_Lang066 ":21" , "", "Email=" w_Lang067 ":112", "DownloadFiles=" w_Lang068 ":95", "ZipFiles=" w_Lang069 ":111" , "", "IECom=" w_Lang070 ":25", "ComInt=" w_Lang071 ":33", "SendMsg=" w_Lang072 ":61" , "", "CmdFind=" w_Lang092 ":92"] , SetOpt: "Enabled AutoSize", Settings: ["HideMainWin=" w_Lang013 ":80", "OnScCtrl=" w_Lang009 ":87" , "", "Capt=" w_Lang012 ":83", "CheckHkOn=" w_Lang014 ":82" , "", "OnFinish=" w_Lang020 ":20(Enabled WholeDropdown)", "SetWin=" t_Lang009 ":101" , "", "WinKey=" w_Lang109 ":88", "SetJoyButton=" w_Lang110 ":32"] , EditOpt: "Enabled AutoSize", Edit: ["EditButton=" w_Lang093 ":14", "CutRows=" w_Lang081 ":9", "CopyRows=" w_Lang082 ":8", "PasteRows=" w_Lang083 ":44", "Remove=" w_Lang084 ":10" , "", "Duplicate=" w_Lang080 ":13", "SelectMenu=" t_Lang139 ":99(Enabled WholeDropdown)", "CopyTo=" w_Lang087 ":8(Enabled WholeDropdown)" , "", "GroupsMode=" w_Lang097 ":104(Enabled AutoSize Dropdown)" , "", "MoveUp=" w_Lang078 ":40", "MoveDn=" w_Lang079 ":39" , "", "Undo=" w_Lang085 ":74", "Redo=" w_Lang086 ":56" , "", "FindReplace=" w_Lang088 ":19", "EditComm=" w_Lang089 ":5", "EditColor=" w_Lang090 ":3" , "", "TabPlus=" w_Lang073 ":66", "TabClose=" w_Lang074 ":68", "DuplicateList=" w_Lang075 ":69", "EditMacros=" w_Lang053 ":97" , "", "Import=" w_Lang076 ":28", "SaveCurrentList=" w_Lang077 ":67" , "", "UserFunction=" w_Lang104 ":35", "FuncParameter=" w_Lang105 ":107", "FuncReturn=" w_Lang106 ":105"]} FixedBar := {PrevOpt: "Enabled AutoSize", Preview: ["PrevCopy=" c_Lang023 ":8", "PrevRefreshButton=" t_Lang014 ":90(Enabled Dropdown)", "GoToLine=" t_Lang218 ":22(Enabled Dropdown)" , "", "TabIndent=" t_Lang011 ":85(Enabled Dropdown)", "ConvertBreaks=" t_Lang190 ":76", "CommentUnchecked=" w_Lang108 ":5(Enabled Dropdown)", "TextWrap=" t_Lang052 ":96", "PrevFontShow=" v_Lang011 ":70(Enabled Dropdown)" , "", "EditScript=" t_Lang138 ":109", "PrevDock=" t_Lang124 ":106", "Preview=" c_Lang022 ":108"] , PreviewF: ["PrevCopy=" c_Lang023 ":8", "PrevRefreshButton=" t_Lang014 ":90(Enabled Dropdown)", "GoToLine=" t_Lang218 ":22(Enabled Dropdown)" , "", "TabIndent=" t_Lang011 ":85(Enabled Dropdown)", "ConvertBreaks=" t_Lang190 ":76", "CommentUnchecked=" w_Lang108 ":5(Enabled Dropdown)", "TextWrap=" t_Lang052 ":96", "PrevFontShow=" v_Lang011 ":70(Enabled Dropdown)", "OnTop=" t_Lang016 ":81" , "", "EditScript=" t_Lang138 ":109", "PrevDock=" t_Lang125 ":93"] , TextOpt: "Enabled AutoSize", Text: ["OpenT=" t_Lang126 ":42", "SaveT=" t_Lang127 ":59" , "", "CutT=" t_Lang128 ":9", "CopyT=" t_Lang129 ":8", "PasteT=" t_Lang130 ":44" , "", "RemoveT=" t_Lang132 ":10", "SelAllT=" t_Lang131 ":99"] , OSCOpt: "Enabled AutoSize", OSC: ["OSPlay=" t_Lang112 ":48", "OSStop=" t_Lang113 ":65", "ShowPlayMenu=" t_Lang114 ":47" , "", "RecStart=" t_Lang115 ":54", "RecStartNew=" t_Lang116 ":89", "ShowRecMenu=" t_Lang117 ":53" , "", "OSClear=" t_Lang118 ":10" , "", "ProgBarToggle=" t_Lang119 ":51" , "", "SlowKeyToggle=" t_Lang121 ":63", "FastKeyToggle=" t_Lang120 ":84" , "", "ToggleTB=" t_Lang122 ":98", "ShowHideTB=" t_Lang123 ":80"]} TbFile_ID := 1, TbRecPlay_ID := 2, TbCommand_ID := 3, TbEdit_ID := 4, TbSettings_ID := 5 Loop, 26 KeybdList .= Chr(A_Index+96) _x ((A_Index = 1) ? _x : "") Loop, 26 KeybdList .= Chr(A_Index+64) _x Loop, 10 KeybdList .= Chr(A_Index+47) _x KeybdList .= "Control" _x "LControl" _x "RControl" _x "Alt" _x "LAlt" _x "RAlt" _x "Shift" _x "LShift" _x "RShift" _x "LWin" _x "RWin" . _x "F1" _x "F2" _x "F3" _x "F4" _x "F5" _x "F6" _x "F7" _x "F8" _x "F9" _x "F10" _x "F11" _x "F12" _x "F13" _x "F14" _x "F15" _x "F16" _x "F17" _x "F18" _x "F19" _x "F20" _x "F21" _x "F22" _x "F23" _x "F24" . _x "'" _x """" _x "!" _x "@" _x "#" _x "$" _x "%" _x "¨" _x "&" _x "*" _x "(" _x ")" _x "-" _x "_" _x "=" _x "+" _x "´" _x "``" _x "[" _x "]" _x "{" _x "}" _x "<" _x ">" _x "~" _x "^" _x "." _x "," _x ";" _x ":" _x "?" _x "/" _x "\" _x "|" . _x "Left" _x "Right" _x "Up" _x "Down" _x "Home" _x "End" _x "PgUp" _x "PgDn" _x "AppsKey" _x "PrintScreen" _x "Pause" . _x "Delete" _x "Insert" _x "Backspace" _x "Escape" _x "Enter" _x "Tab" _x "Space" _x "CapsLock" _x "ScrollLock" _x "NumLock" KeybdList .= _x "Numpad0" _x "Numpad1" _x "Numpad2" _x "Numpad3" _x "Numpad4" _x "Numpad5" _x "Numpad6" _x "Numpad7" _x "Numpad8" _x "Numpad9" . _x "NumpadDot" _x "NumpadDiv" _x "NumpadMult" _x "NumpadAdd" _x "NumpadSub" _x "NumpadIns" _x "NumpadEnd" _x "NumpadDown" . _x "NumpadPgDn" _x "NumpadLeft" _x "NumpadClear" _x "NumpadRight" _x "NumpadHome" _x "NumpadUp" _x "NumpadPgUp" _x "NumpadDel" . _x "NumpadEnter" _x "Browser_Back" _x "Browser_Forward" _x "Browser_Refresh" _x "Browser_Stop" _x "Browser_Search" . _x "Browser_Favorites" _x "Browser_Home" _x "Volume_Mute" _x "Volume_Down" _x "Volume_Up" _x "Media_Next" _x "Media_Prev" . _x "Media_Stop" _x "Media_Play_Pause" _x "Launch_Mail" _x "Launch_Media" _x "Launch_App1" _x "Launch_App2" . _x "LButton" _x "RButton" _x "MButton" _x "XButton1" _x "XButton2" _x "WheelDown" _x "WheelUp" _x "WheelLeft" _x "WheelRight" Run_Filters := "All|File|String|Get|Wait|Group|Dialogs|Registry|Sound|Vars|Misc" Loop, Parse, Run_Filters, | Run_Filter_%A_Index% := A_LoopField SchedTypes := "1|2|3|4|8|9|6" Loop, Parse, SchedTypes, | Sched_%A_Index% := A_LoopField BIV_Characters := " ( A_Space A_Tab )" BIV_Properties := " ( A_AhkPath A_AhkVersion A_ExitReason A_IsCompiled A_IsUnicode A_LineFile A_LineNumber A_ScriptDir A_ScriptFullPath A_ScriptHwnd A_ScriptName A_ThisFunc A_ThisLabel A_WorkingDir )" BIV_Date := " ( A_DD A_DDD A_DDDD A_Hour A_MM A_MMM A_MMMM A_MSec A_Min A_Now A_NowUTC A_Sec A_TickCount A_WDay A_YDay A_YWeek A_YYYY )" BIV_Idle := " ( A_TimeIdle A_TimeIdlePhysical )" BIV_System := " ( A_AppData A_AppDataCommon A_ComputerName A_Desktop A_DesktopCommon A_IPAddress1 A_Is64bitOS A_IsAdmin A_Language A_MyDocuments A_OSType A_OSVersion A_ProgramFiles A_Programs A_ProgramsCommon A_PtrSize A_ScreenDPI A_ScreenHeight A_ScreenWidth A_StartMenu A_StartMenuCommon A_Startup A_StartupCommon A_Temp A_UserName A_WinDir A_ComSpec )" BIV_Misc := " ( A_CaretX A_CaretY A_Cursor A_LastError Clipboard ClipboardAll ErrorLevel )" BIV_Loop := " ( A_Index A_LoopField A_LoopFileAttrib A_LoopFileDir A_LoopFileExt A_LoopFileFullPath A_LoopFileLongPath A_LoopFileName A_LoopFilePath A_LoopFileShortName A_LoopFileShortPath A_LoopFileSize A_LoopFileSizeKB A_LoopFileSizeMB A_LoopFileTimeAccessed A_LoopFileTimeCreated A_LoopFileTimeModified A_LoopReadLine A_LoopRegKey A_LoopRegName A_LoopRegSubKey A_LoopRegTimeModified A_LoopRegType )" BuiltinVars := StrReplace(BIV_Characters, "`n", ",") . StrReplace(BIV_Properties, "`n", ",") . StrReplace(BIV_Date, "`n", ",") . StrReplace(BIV_Idle, "`n", ",") . StrReplace(BIV_System, "`n", ",") . StrReplace(BIV_Misc, "`n", ",") . StrReplace(BIV_Loop, "`n", ",") FuncAllowedList := "OCR,ImageIdentify,Gdip_,Screenshot,CDO,Zip,CreateZipFile,WinHttpDownloadToFile,CreateFormData,CreateFormData_WinInet,CenterImgSrchCoords,Dlg_,IEGet,IELoad,WBGet,ScheduleTask"
AutoHotkey
3
standardgalactic/PuloversMacroCreator
LIB/Definitions.ahk
[ "Unlicense" ]
@import Foundation; __attribute__((visibility("hidden"))) __attribute__((objc_runtime_visible)) @interface HiddenClass : NSObject @property (readonly, nonnull) NSString *name; @end HiddenClass * _Nonnull createHidden() NS_RETURNS_RETAINED;
C
3
lwhsu/swift
test/Interpreter/Inputs/objc_runtime_visible.h
[ "Apache-2.0" ]
foo <%= bar baz %> <% foo %>
HTML+EEX
1
keyno63/intellij-elixir
testData/org/elixir_lang/eex/psi/parser/test/EExTokenizerTestStringsWithMoreThanOneLineAndExpressionWithMoreThanOneLine.eex
[ "Apache-2.0" ]
h2. Highlight Editables Plugin The Highlight Editables Plugin provides a visual hint when moving the mouse to outline editables. endprologue. h3. Overview With this plugin editable areas will be outlined when the user moves the mouse.<br /> An active editable will be outlined with a different color. h3. Usage Activate the plugin and decide if you want to highlight all editables.<br /> You can use CSS to configure the look (see: Configuration). h3. Functional Description While moving the mouse cursor the Highlight Editables plugin will highlight each editable with a yellow blinking rectangle at your page. After clicking into a rectangle the blinking yellow turns into a constant blue glowing rectangle. NOTE: The Highlight Editables plugin doesn't work with Internet Explorer 7. h3. Components * No components for user interaction h3. Configuration <javascript> Aloha.settings.plugins: { highlighteditables: { config: [ 'highlight' ], editables: { '#one': [ 'highlight' ], '#two': [ ] // do not show visual effect for this editable } } } </javascript> CSS you can adapt to your needs. <html> .aloha-editable-highlight { outline: #FFE767 solid 5px; } .aloha-editable-active, .aloha-editable-active[contenteditable=true]:focus { outline: #80B5F2 solid 5px; } </html>
Textile
4
luciany/Aloha-Editor
doc/guides/source/plugin_highlighteditables.textile
[ "CC-BY-3.0" ]
module Keyboard exposing ( KeyCode(..) , KeyEvent , decodeKeyCode , decodeKeyEvent , hasControlModifier ) import Concourse import Json.Decode import Json.Encode type alias KeyEvent = { ctrlKey : Bool , shiftKey : Bool , metaKey : Bool , code : KeyCode } decodeKeyEvent : Json.Decode.Decoder KeyEvent decodeKeyEvent = Json.Decode.map4 KeyEvent (Json.Decode.field "ctrlKey" Json.Decode.bool) (Json.Decode.field "shiftKey" Json.Decode.bool) (Json.Decode.field "metaKey" Json.Decode.bool) (Json.Decode.field "code" decodeKeyCode) type KeyCode = A | T | R | G | H | J | K | L | F | Slash | ArrowUp | ArrowDown | Enter | Escape decodeKeyCode : Json.Decode.Decoder KeyCode decodeKeyCode = Concourse.customDecoder Json.Decode.string <| \code -> case code of "KeyA" -> Ok A "KeyT" -> Ok T "KeyR" -> Ok R "KeyG" -> Ok G "KeyH" -> Ok H "KeyJ" -> Ok J "KeyK" -> Ok K "KeyL" -> Ok L "KeyF" -> Ok F "Slash" -> Ok Slash "ArrowUp" -> Ok ArrowUp "ArrowDown" -> Ok ArrowDown "Enter" -> Ok Enter "Escape" -> Ok Escape unknown -> Err <| Json.Decode.Failure "unknown keycode" <| Json.Encode.string unknown hasControlModifier : KeyEvent -> Bool hasControlModifier keyEvent = keyEvent.ctrlKey || keyEvent.metaKey
Elm
5
Caprowni/concourse
web/elm/src/Keyboard.elm
[ "Apache-2.0" ]
--TEST-- Bug #47566 (return value of pcntl_wexitstatus()) --EXTENSIONS-- pcntl --FILE-- <?php $pid = pcntl_fork(); if ($pid == -1) { echo "Unable to fork"; exit; } elseif ($pid) { $epid = pcntl_waitpid(-1,$status); var_dump(pcntl_wexitstatus($status)); } else { exit(128); } ?> --EXPECT-- int(128)
PHP
3
NathanFreeman/php-src
ext/pcntl/tests/bug47566.phpt
[ "PHP-3.01" ]
module org-openroadm-device-resource-types { namespace "http://org/openroadm/de/device-resource-types"; prefix org-openroadm-device-resource-types; organization "Open ROADM MSA"; contact "OpenROADM.org"; description "YANG definitions of resource types. Copyright of the Members of the Open ROADM MSA Agreement dated (c) 2016, AT&T Intellectual Property. All other rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the Members of the Open ROADM MSA Agreement nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE MEMBERS OF THE OPEN ROADM MSA AGREEMENT ''AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT THE MEMBERS OF THE OPEN ROADM MSA AGREEMENT BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."; revision 2016-10-14 { description "Version 1.2"; } /* Currently not used; if used later, needs to move to org-openroadm-device.yang so leafref can be resolved. grouping device-id { description "Device identifier. Unique within the Controller."; leaf node-id { description "Node Id. Globally unique identifier for a device."; type leafref { path "/org-openroadm-device/info/node-id"; } mandatory true; } } */ /* Currently not used; if used later, needs to move to org-openroadm-device.yang so leafref can be resolved. grouping shelf-name { leaf shelf-name { description "Shelf identifier. Unique within the context of a device."; type leafref { path "/org-openroadm-device/shelves/shelf-name"; } mandatory true; config false; } } */ /* Currently not used; if used later, needs to move to org-openroadm-device.yang so leafref can be resolved. grouping physical-link-name { leaf physical-link-name { description "Physical Link identifier. Unique within the context of a device."; type leafref { path "/org-openroadm-device/physical-link/physical-link-name"; } mandatory true; config false; } } */ /* Currently not used; if used later, needs to move to org-openroadm-device.yang so leafref can be resolved. grouping internal-link-name { uses org-openroadm-device:circuit-pack-name; leaf internal-link-name { description "Internal Link identifier. Unique within the context of a circuit pack."; type leafref { path "/org-openroadm-device/internal-link/internal-link-name"; } mandatory true; config false; } } */ /* Currently not used; if used later, needs to move to org-openroadm-device.yang so leafref can be resolved. grouping connection-number { leaf connection-number { description "Connection identifier. Unique within the context of a device."; type leafref { path "/org-openroadm-device/connections/connection-number"; } } } */ /* Currently not used; if used later, needs to move to org-openroadm-device.yang so leafref can be resolved. grouping this-will-test-ids { uses device-id; container shelf { uses shelf-name; } container circuit-pack { uses org-openroadm-device:circuit-pack-name; } container port { uses org-openroadm-device:port-name; } uses internal-link-name; uses physical-link-name; uses connection-number; uses org-openroadm-device:srg-number; uses org-openroadm-device:degree-number; } */ /* Currently not used; if used later, needs to move to org-openroadm-device.yang so leafref can be resolved. grouping xponder-device-id { description "Xponder identifier. Unique within the Controller."; leaf node-id { description "Xponder Id. Globally unique identifier for the device"; type leafref { path "/org-openroadm-device/info/node-id"; } mandatory true; } } */ /* Currently not used; if used later, needs to move to org-openroadm-device.yang so leafref can be resolved. grouping xponder-number { leaf xponder-number { description "Xponder identifier. Unique within the context of a device."; type leafref { path "/org-openroadm-device/xponders/xponder-number"; } config false; } } */ /* Currently not used; if used later, needs to move to org-openroadm-device.yang so leafref can be resolved. grouping xponder-shelf-name { uses xponder-number; leaf shelf-name { description "Shelf identifier. Unique within the context of a device."; type leafref { path "/org-openroadm-device/xponders[xponder-number=current()/../xponder-number]/shelves/shelf-name"; } mandatory true; config false; } } */ /* Currently not used; if used later, needs to move to org-openroadm-device.yang so leafref can be resolved. grouping xponder-circuit-pack-name { uses xponder-number; leaf circuit-pack-name { description "Circuit Pack identifier. Unique within the context of a xponder."; type leafref { path "/org-openroadm-device/circuit-packs/circuit-pack-name"; } config false; } } */ /* Currently not used; if used later, needs to move to org-openroadm-device.yang so leafref can be resolved. grouping xponder-port-name { uses xponder-circuit-pack-name; leaf port-name { description "Port identifier. Unique within the context of a circuit-pack."; type leafref { path "/org-openroadm-device/circuit-packs[circuit-pack-name=current()/../circuit-pack-name]/ports/port-name"; } config false; } } */ /* Currently not used; if used later, needs to move to org-openroadm-device.yang so leafref can be resolved. grouping this-will-test-xponder-ids { uses xponder-device-id; container shelf { uses xponder-shelf-name; } container circuit-pack { uses xponder-circuit-pack-name; } container port { uses xponder-port-name; } } */ }
YANG
4
meodaiduoi/onos
models/openroadm/src/main/yang/[email protected]
[ "Apache-2.0" ]
Tools to support evaluating Leisure code SM = require 'source-map-support' SM.install() requirejs = require 'requirejs' ((typeof window != 'undefined' && window) || global).Lazy = requirejs('lib/lazy') Error.stackTraceLimit = Infinity { newCall resolve lazy defaultEnv } = root = module.exports = requirejs './base' rz = resolve lz = lazy lc = Leisure_call _ = requirejs 'lodash' fs = require 'fs' { getType setType setDataType ast2Json json2Ast Nil } = requirejs './ast' global.btoa = require 'btoa' { gen genSource withFile sourceNode SourceNode setMegaArity } = requirejs './gen' { readFile writeFile #} = requirejs './node' } = require './node' { identity runMonad2 isIO asyncMonad replaceErr getMonadSyncMode setWarnAsync requireFiles getValue } = requirejs './runtime' { Promise } = requirejs 'bluebird' { tangle jsCodeFor } = requirejs './tangle' global.setType = setType global.setDataType = setDataType global.defaultEnv = defaultEnv global.identity = identity getParseErr = (x)-> x lz (value)->rz value replEnv = __proto__: defaultEnv prompt: (msg, cont)-> rl.question(msg, (x)-> try cont x catch err console.log "ERROR HANDLING PROMPT: #{err.stack}" ) presentValue: (x)-> show(x) + '\n' errorString = (err)-> if L$thunkStack #s = L$thunkStack.items().join '\n at ' s = L$thunkStack.join '\n at ' (global ? window).L$thunkStack = [] err.toString() + ":\n at " + s else err.stack ? err.toString() process.on 'uncaughtException', (err)-> console.log "Uncaught Exception: #{errorString err}" requirePromise = (file)-> new Promise (resolve, reject)-> requirejs [file], resolve leisurePromise = null getLeisurePromise = -> if !leisurePromise leisurePromise = requirePromise './leisure/generatedPrelude' .then -> requirePromise './leisure/std' .then -> simpleEval 'resetStdTokenPacks' .catch (err)-> console.error "ERROR LOADING LEISURE SYSTEM!\n#{err.stack}" leisurePromise evalInput = (text)-> if text then getLeisurePromise().then -> simpleEval text else succeed '' simpleEval = (text)-> new Promise (succeed, fail)-> try result = lc L_newParseLine, 0, Nil, text runMonad2 result, replEnv, (ast)-> try if getType(ast) == 'err' fail new Error "PARSE ERORR: #{getParseErr ast}" else source = genSource text, ast result = eval source if isIO result then console.log "(processing IO monad)" runMonad2 result, replEnv, (result)-> succeed { ast source result } catch err fail new Error errorString err catch err fail new Error errorString err module.exports = { evalInput }
Literate CoffeeScript
4
zot/Leisure
leisure/build/src/replBase.litcoffee
[ "Zlib" ]
#include <metal_stdlib> #include <simd/simd.h> using namespace metal; struct Inputs { }; struct Outputs { half4 sk_FragColor [[color(0)]]; }; struct Globals { half2 glob; }; half4 fn_h4hh2h2h3(thread Outputs& _out, thread Globals& _globals, half a, thread half2& b, thread half2& c, thread half3& d); half4 _skOutParamHelper0_fn_h4hh2h2h3(thread Outputs& _out, thread Globals& _globals, half _var0, thread half3& b, thread half2& glob, thread half3x3& d) { half2 _var1; half2 _var2 = glob.yx; half3 _var3 = d[1].zyx; half4 _skResult = fn_h4hh2h2h3(_out, _globals, _var0, _var1, _var2, _var3); b.yz = _var1; glob.yx = _var2; d[1].zyx = _var3; return _skResult; } half4 fn_h4hh2h2h3(thread Outputs& _out, thread Globals& _globals, half a, thread half2& b, thread half2& c, thread half3& d) { a = _out.sk_FragColor.x + a; b = _out.sk_FragColor.yz - _globals.glob.y; c *= a; d = _out.sk_FragColor.www / d; return half4(a, b.x, c.y, d.x); } fragment Outputs fragmentMain(Inputs _in [[stage_in]], bool _frontFacing [[front_facing]], float4 _fragCoord [[position]]) { Globals _globals{half2(1.0h)}; (void)_globals; Outputs _out; (void)_out; half2 a = half2(1.0h); half3 b = half3(2.0h); half3x3 d = half3x3(4.0h); _out.sk_FragColor = _skOutParamHelper0_fn_h4hh2h2h3(_out, _globals, a.x, b, _globals.glob, d); return _out; }
Metal
3
fourgrad/skia
tests/sksl/metal/SwizzleHelper.metal
[ "BSD-3-Clause" ]
let x = typeof(10); let y = typeof("string"); let z = typeof(typeof); let a = typeof(nil); let b = typeof(true); println(x); println(y); println(z); println(a); println(b);
Ox
4
54k1/oxide-lang
tests/scripts/stdlib.ox
[ "MIT" ]
/* This file documents and shows examples of how I have implemented FluidSynth's tuning functions in this chugin. FluidSynth's implementation allows you to set the tuning for a tuning bank and progam (similar in concept to the banks and programs for instruments, but independent), and then you must assign the tuning bank/program to a MIDI channel in order to use it. I wanted to just be able to set the tuning for a MIDI channel directly; without having to worry about where FluidSynth stored it. Or (more likely) set _one_ tuning for _all_ MIDI channels. So that is the way I made these hooks work. I used ChucK's polymorphism to implement all tuning functions to work in this way: - If a MIDI channel is specified, the tuning is affected for that channel only. (The tuning bank is 0 and the tuning program is equal to the zero-based channel number, but you usually shouldn't need to know this.) - If no MIDI channel is provided, the tuning is set for _all_ MIDI channels. (The tuning bank/program is 0/0 and all channels are set to use this, but again, you usually shouldn't need to care.) Forrest Cahoon ([email protected]) */ // set up a FluidSynth object FluidSynth f => dac; f.open("/usr/share/sounds/sf2/FluidR3_GM.sf2"); .75 => f.gain; // A simple function for us to test with fun void playChords(int chan) { f.noteOn(60, 100, chan); 0.5::second => now; f.noteOn(64, 100, chan); 0.5::second => now; f.noteOn(67, 100, chan); 1.5::second => now; f.noteOn(60, 100, chan); 0.5::second => now; f.noteOn(63, 100, chan); 0.5::second => now; f.noteOn(67, 100, chan); 0.5::second => now; } /* setOctaveTuning() is for setting new tunings which have 12 notes per octave. The tuning is passed in as an array of 12 floats containing the cents deviation from standard tuning for each note, starting with C. The following example shows how to set a tuning from a set of ratios. */ // The ratios for our tuning [ 1., 16./15., 9./8., 6./5., 5./4., 4./3., 45./32., 3./2., 8./5., 5./3., 9./5., 15./8. ] @=> float justIntonationRatios[]; float justIntonation[12]; // This will hold our cents deviation // For each note, convert the ratio to cents and subtract the standard tuning cents for (0 => int i; i < justIntonation.cap(); i++) { 1200. * Math.log2(justIntonationRatios[i]) - (100. * i) => justIntonation[i]; } // Raise each note in our scale by a quarter tone (50 cents) // just to make the tuning difference obvious float justIntonationHigh[12]; for (0 => int i; i < justIntonation.cap(); i++) { justIntonation[i] + 50.0 => justIntonationHigh[i]; } // Omitting a channel number here will set the tuning // for all MIDI channels f.setOctaveTuning(justIntonationHigh); f.progChange(6, 1); // harpsicord on MIDI channel 2 // Play the same JI scale on different instruments spork ~ playChords(0); 0.25::second => now; spork ~ playChords(1); 5::second => now; // Omitting the channel number here resets all MIDI channels // to the standard equal temperament f.resetTuning(); // Play the same equal temperament scale on different instruments spork ~ playChords(0); 0.25::second => now; spork ~ playChords(1); 5::second => now; // Specifying the channel number sets the tuning only on that channel f.setOctaveTuning(justIntonationHigh, 0); // Play just intonation on piano; equal temperament on vibraphone spork ~ playChords(0); 0.25::second => now; spork ~ playChords(1); 5::second => now; /* setTuning() is used to set the tuning for all 128 MIDI note numbers. It takes an array of 128 floats, which are the pitches for each MIDI note number in cents above the standard tuning of MIDI note 0. Another way of saying that is 1000 * the MIDI note number of the next lowest note in standard MIDI tuning, plus the cents above that note. Here we set a 19-tone equal temperament tuning, starting at the C which is MIDI note number 24 in standard tuning. */ 1200.0/19.0 => float interval; // Divide the octave (1200 cents) into 19 equal divisions float nineteenTuning[128]; for (0 => int i; i < nineteenTuning.cap(); i++) { 2400. + (interval * i) => nineteenTuning[i]; } f.setTuning(nineteenTuning); // This sets the tuning for _all_ MIDI channels, because no channel is specified // Play triads with all the different 3rds in 19tET for (61 => int i; i <= 64; i++) { f.noteOn(57, 100, 0); 0.25::second => now; f.noteOn(i, 100, 0); 0.25::second => now; f.noteOn(68, 100, 0); 0.75::second => now; } 1::second => now; // Now reset the tuning for all channels. f.resetTuning(); /* tuneNote() is used to set the tuning of individual notes, taking as arguments the MIDI note number, the pitch in cents above the standard tuning of MIDI note 0 (same as setTuning), and optionally a zero-based MIDI channel number. (As with all of these methods, specifying the channel number sets the tuning for only that channel; omitting it sets the tuning for all channels.) For an example we use the MIDI note 0 to store a natural seventh above middle C. */ // start with just intonation f.setOctaveTuning(justIntonation); // Get the pitch that's 7/4 above the standard tuning of MIDI note 60 // (middle C, which is also the same in our just intonation tuning). 6000. + (1200. * Math.log2(7./4.)) => float naturalSeventh; // set MIDI note 0 (which is pretty much unusable otherwise) to our new pitch f.tuneNote(0, naturalSeventh); f.noteOn(60, 100, 0); 0.25::second => now; f.noteOn(64, 100, 0); 0.25::second => now; f.noteOn(67, 100, 0); 0.25::second => now; f.noteOn(0, 100, 0); // use it in a chord 2::second => now; /* Finally, there is tuneNotes(), which sets pitches for multiple MIDI note numbers at once. The arguments are the same as tuneNote(), except it takes an array of MIDI note numbers and an array of pitches (as cents above the standard tuning of MIDI note 0) instead of an individual MIDI note number and pitch. Like all of the tuning functions, it optionally takes a zero-based MIDI channel number, which when specified sets the tuning for only that channel, but when omitted sets the tuning for all channels. */ // use low MIDI note numbers for natural sevenths in several octaves f.tuneNotes([0, 1, 2], [naturalSeventh - 1200., naturalSeventh, naturalSeventh + 1200.]); for (0 => int i; i < 3; i++) { f.noteOn(48 + (12*i), 100, 0); 0.25::second => now; f.noteOn(52 + (12*i), 100, 0); 0.25::second => now; f.noteOn(55 + (12*i), 100, 0); 0.25::second => now; f.noteOn(i, 100, 0); 0.25::second => now; } 2::second => now;
ChucK
5
ccdarabundit/chugins
FluidSynth/fluidsynth-tuning.ck
[ "MIT" ]
val q = '"'; val s = @("val q = '", "'; val s = @(", "); implement main0 () = (print s.0; print q; print s.1; print q; print s.0; print q; print s.3; print q; print s.1; print q; print s.3; print q; print s.2; print q; print s.3; print q; print s.3; print q; print s.2; print_newline ())", ", "); implement main0 () = (print s.0; print q; print s.1; print q; print s.0; print q; print s.3; print q; print s.1; print q; print s.3; print q; print s.2; print q; print s.3; print q; print s.3; print q; print s.2; print_newline ())
ATS
1
MakeNowJust/quine
quine.dats
[ "Beerware" ]
const getConfig = () => { // process.env.PULL_REQUEST is from next.config.js const DEPLOY_CONTEXT = process.env.PULL_REQUEST ? 'deploy-preview' : 'production'; if (process.env.NODE_ENV !== 'production' || DEPLOY_CONTEXT === 'deploy-preview') { // for testing purposes in development and deploy-preview return { DEPLOY_CONTEXT, NEWSLETTER_SUBSCRIBE_URL: 'https://f0433e60.sibforms.com/serve/MUIEAE9LexIU5u5hYkoDJ-Mc379-irLHNIlGEgCm5njkAwg6OYFfNQTd25n4SO6vJom9WvQ89GJ0sYBzFYswLRewcOvD_dRtoFycXIObP8SMm-kNO1CdXKaWEZutrfqMKygHb1Je1QBGrMUnJg8J5qVeCwa7rSPBN0A1_6Ug3SiGjgIlbiCcMVA4KbhaYTiBvKkaejlCjgZcLHBT', }; } // only for mui.com return { DEPLOY_CONTEXT, NEWSLETTER_SUBSCRIBE_URL: 'https://f0433e60.sibforms.com/serve/MUIEAHEhgYhMvLAw0tycwk1BQaIB-q0akob3JdtDBmHLhSR-jLheJ2T44LFCz27alz9wq_Nkdz9EK7Y8hzM1vQND9kTFyKkkhTIbEzXaH5d-_S9Fw4PXS1zAK8efPY6nhCdoAop1SKTeZ_GAPW5S0xBFQRLUGYbvvRgE4Q2Ki_f1KjbiCqaRuzmj_I3SD1r0CoR4INmK3CLtF4kF', }; }; const CONFIG = getConfig(); export default CONFIG;
TypeScript
4
dany-freeman/material-ui
docs/src/config.ts
[ "MIT" ]
% Licensed to the Apache Software Foundation (ASF) under one % or more contributor license agreements. See the NOTICE file % distributed with this work for additional information % regarding copyright ownership. The ASF licenses this file % to you under the Apache License, Version 2.0 (the % "License"); you may not use this file except in compliance % with the License. You may obtain a copy of the License at % % http://www.apache.org/licenses/LICENSE-2.0 % % Unless required by applicable law or agreed to in writing, software % distributed under the License is distributed on an "AS IS" BASIS, % WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. % See the License for the specific language governing permissions and % limitations under the License. \documentclass{article} \usepackage[pdftex]{hyperref} \usepackage[pdftex]{graphicx} \title{Winning a 60 Second Dash with a Yellow Elephant} \author{\href{http://people.apache.org/~omalley}{Owen O'Malley} and \href{http://people.apache.org/~acmurthy}{Arun C. Murthy}\\ \href{http://www.yahoo.com/}{Yahoo!}\\ [email protected] and [email protected]} \date{April 2009} \begin{document} \maketitle \href{http://hadoop.apache.org/core}{Apache Hadoop} is a open source software framework that dramatically simplifies writing distributed data intensive applications. It provides a distributed file system, which is modeled after the Google File System\cite{gfs}, and a map/reduce\cite{mapreduce} implementation that manages distributed computation. Jim Gray defined a benchmark to compare large sorting programs. Since the core of map/reduce is a distributed sort, most of the custom code is glue to get the desired behavior. \section{Benchmark Rules} Jim's Gray's sort benchmark consists of a set of many related benchmarks, each with their own rules. All of the sort benchmarks measure the time to sort different numbers of 100 byte records. The first 10 bytes of each record is the key and the rest is the value. The \textbf{minute sort} must finish end to end in less than a minute. The \textbf{Gray sort} must sort more than 100 terabytes and must run for at least an hour. \begin{itemize} \item The input data must precisely match the data generated by the C data generator. \item The input must not be in the operating system's file cache when the job starts.. Under Linux, this requires using the memory for something else between sorting runs. \item The input and output data must not be compressed. \item The output must not overwrite the input. \item The output must be synced to disk. \item The 128 bit sum of the crc32's of each key/value pair must be calculated for the input and output. Naturally, they must be identical. \item The output may be divided into multiple output files, but it must be totally ordered (simply concatenating the output files must produce the completely sorted output). \item Starting and distributing the application to the cluster must be included in the execution time. \item Any sampling must be included in the execution time. \end{itemize} \section{Hadoop implementation} We extended the programs from last year to create and manipulate the new binary format and match the new rules. There are now 4 Hadoop map/reduce applications to support the benchmark: \begin{enumerate} \item \textbf{TeraGen} is a map/reduce program to generate the data. \item \textbf{TeraSort} samples the input data and uses map/reduce to sort the data into a total order. \item \textbf{TeraSum} is a map/reduce program computes the 128 bit sum of the crc32 of each key/value pair. \item \textbf{TeraValidate} is a map/reduce program that validates the output is sorted and computes the sum of the checksums as TeraSum. \end{enumerate} The update to the terasort programs will be checked in as \href{http://issues.apache.org/jira/browse/HADOOP-5716}{HADOOP-5716}. \textbf{TeraGen} generates input data for the sort that is byte for byte equivalent to the C version that was released in March of 2009, including specific keys and values. It divides the desired number of rows by the desired number of tasks and assigns ranges of rows to each map. The map jumps the random number generator to the correct value for the first row and generates the following rows. \textbf{TeraSort} is a standard map/reduce sort, except for a custom partitioner that ensures that all of the keys in reduce $N$ are after all of the keys in reduce $N-1$. This is a requirement of the contest so that the output of the sort is totally ordered, even if it is divided up by reduce. We wrote an input and output format, used by all 4 applications to read and write the files in the new format. \textbf{TeraSum} computes the 128 bit sum of the CRC32 of each key/value pair. Each map computes the sum of its input and emits a single 128 bit sum. There is a single reduce that adds the sums from each map. We used this program on the input directory to calculate the sum of the checksums of each key/value pair to check the correctness of the output of the sort. We also used TeraSum on a distinct dataset that was larger than the total RAM in the cluster to flush the Linux file cache between runs of the small (500 GB and 1TB) sorts. \textbf{TeraValidate} ensures that the output is globally sorted. It creates one map per file in the output directory and each map ensures that each key is less than or equal to the previous one. The map also generates records with the first and last keys of the file and the reduce ensures that the first key of file $i$ is greater that the last key of file $i-1$. Any problems are reported as output of the reduce with the keys that are out of order. Additionally, TeraValidate calculates the sum of checksums of the output directory. \section{Hardware and Operating System} We ran our benchmarks on Yahoo's Hammer cluster. Hammer's hardware is very similar to the hardware that we used in last year's terabyte sort. The hardware and operating system details are: \begin{itemize} \item approximately 3800 nodes (in such a large cluster, nodes are always down) \item 2 quad core Xeons @ 2.5ghz per node \item 4 SATA disks per node \item 8G RAM per node (upgraded to 16GB before the petabyte sort) \item 1 gigabit ethernet on each node \item 40 nodes per rack \item 8 gigabit ethernet uplinks from each rack to the core \item Red Hat Enterprise Linux Server Release 5.1 (kernel 2.6.18) \item Sun Java JDK (1.6.0\_05-b13 and 1.6.0\_13-b03) (32 and 64 bit) \end{itemize} We hit a JVM bug in 1.6.0\_05-b13 on the larger sorts (100TB and 1PB) and switched over to the later JVM, which resolved the issue. For the larger sorts, we used 64 bit JVMs for the Name Node and Job Tracker. \section{Software and Configuration} The version of Hadoop we used was a private branch of trunk that was started in January 2009, which is after the 0.20 branch was feature frozen. We used git to manage our branch and it allowed us to easily coordinate our work, track our changes, and resynchronize with the current Hadoop trunk. The changes include: \begin{enumerate} \item Updated the terasort example in the Hadoop code base to match the dataset defined by the rule changes in the benchmark from March of 2009. (\href{http://issues.apache.org/jira/browse/HADOOP-5716}{HADOOP-5716}) \item We reimplemented the reducer side of Hadoop's shuffle. The redesign improved the performance of the shuffle and removed bottlenecks and over-throttling. It also made the code more maintainable and understandable by breaking a 3000 line Java file into multiple classes with a clean set of interfaces. (\href{http://issues.apache.org/jira/browse/HADOOP-5223}{HADOOP-5223}) \item The new shuffle also fetches multiple map outputs from the same node over each connection rather than one at a time. Fetching multiple map outputs at the same time avoids connection setup costs and also avoids the round trip while the server responds to the request. (\href{http://issues.apache.org/jira/browse/HADOOP-1338}{HADOOP-1338}) \item Allowed configuring timeouts on the shuffle connections and we shortened them for the small sorts. We observed cases where the connections for the shuffle would hang until the timeout, which made low latency jobs impossibly long. (\href{http://issues.apache.org/jira/browse/HADOOP-5789}{HADOOP-5789}) \item Set TCP no-delay and more frequent pings between the Task and the Task Tracker to reduce latency in detecting problems. (\href{http://issues.apache.org/jira/browse/HADOOP-5788}{HADOOP-5788}) \item We added some protection code to detect incorrect data being transmitted in the shuffle from causing the reduce to fail. It appears this is either a JVM NIO bug or Jetty bug that likely affects 0.20 and trunk under heavy load. (\href{http://issues.apache.org/jira/browse/HADOOP-5783}{HADOOP-5783}) \item We used LZO compression on the map outputs. On the new dataset, LZO compresses down to 45\% of the original size. By comparison, the dataset from last year compresses to 20\% of the original size. Last year, the shuffle would run out of direct buffers if we used compression on the map outputs. \item We implemented memory to memory merges in the reduce during the shuffle to combine the map outputs in memory before we finish the shuffle, thereby reducing the work needed when the reduce is running. \item We multi-threaded the sampling code that read the input set to find the partition points between the reduces. We also wrote a simple partitioner that assumes the keys are evenly distributed. Since the new dataset does not require sampling, the simple partitioner produces very even partitions. (\href{http://issues.apache.org/jira/browse/HADOOP-4946}{HADOOP-4946}) \item On the smaller clusters, we configured the system with faster heartbeat cycles from the Task Trackers to the Job Tracker (it defaults to 10 secs / 1000 nodes, but we made it configurable and brought it down to 2 seconds/1000 nodes to provide lower latency) (\href{http://issues.apache.org/jira/browse/HADOOP-5784}{HADOOP-5784}) \item Typically the Job Tracker assigns tasks to Task Trackers on a first come first served basis. This greedy assignment of tasks did not lead to good data locality. However, by taking a global view and placing all of the map tasks at once, the system achieves much better locality. Rather than implement global scheduling for all of Hadoop, which would be much harder, we implemented a global scheduler for the terasort example in the input format. Basically, the input format computes the splits and assigns work to the nodes that have the fewest blocks first. For a node that has more blocks than map slots, it picks the block that have the fewest remaining locations left. This greedy global algorithm seems to get very good locality. The input format would schedule the maps and then change the input split descriptions to only have a single location instead of the original 3. This increased task locality by 40\% or so over the greedy scheduler. \item Hadoop 0.20 added setup and cleanup tasks. Since they are not required for the sort benchmarks, we allow them to be disabled to reduce the latency of starting and stopping the job. (\href{http://issues.apache.org/jira/browse/HADOOP-5785}{HADOOP-5785}) \item We discovered a performance problem where in some contexts the cost of using the JNI-based CRC32 was very high. By implementing it in pure Java, the average case is a little slower, but the worst case is much better. (\href{http://issues.apache.org/jira/browse/HADOOP-5598}{HADOOP-5598}) \item We found and removed some hard-coded wait loops from the framework that don't matter for large jobs, but can seriously slow down low latency jobs. \item Allowed setting the logging level for the tasks, so that we could cut down on logging. When running for "real" we configure the logging level to WARN instead of the default INFO. Reducing the amount of logging has a huge impact on the performance of the system, but obviously makes debugging and analysis much harder. (\href{http://issues.apache.org/jira/browse/HADOOP-5786}{HADOOP-5786}) \item One optimization that we didn't finish is to optimize the job planning code. Currently, it uses an RPC to the Name Node for each input file, which we have observed taking a substantial amount of time. For the terabyte sort, our investigations show that we could save about 4 seconds out of the 8 that were spent on setting up the job. (\href{http://issues.apache.org/jira/browse/HADOOP-5795}{HADOOP-5795}) \end{enumerate} \section{Results} Hadoop has made a lot of progress in the last year and we were able to run much lower latency jobs as well as much larger jobs. Note that in any large cluster and distributed application, there are a lot of moving pieces and thus we have seen a wide variation in execution times. As Hadoop evolves and becomes more graceful in the presence of hardware degradation and failure, this variation should smooth out. The best times for each of the listed sort sizes were: \\ \begin{tabular}{| c | c | c | c | c | c |} \hline Bytes & Nodes & Maps & Reduces & Replication & Time \\ \hline $5*10^{11}$ & 1406 & 8000 & 2600 & 1 & 59 seconds \\ $10^{12}$ & 1460 & 8000 & 2700 & 1 & 62 seconds \\ $10^{14}$ & 3452 & 190,000 & 10,000 & 2 & 173 minutes \\ $10^{15}$ & 3658 & 80,000 & 20,000 & 2 & 975 minutes \\ \hline \end{tabular}\\ Within the rules for the 2009 Gray sort, our 500 GB sort set a new record for the minute sort and the 1PB sort set a new record of 1.03 TB/minute. The 62 second terabyte sort would have set a new record, but the terabyte benchmark that we won last year has been retired. (Clearly the minute sort and terabyte sort are rapidly converging, and thus it is not a loss.) One piece of trivia is that only the petabyte dataset had any duplicate keys (40 of them). Because the smaller sorts needed lower latency and faster network, we only used part of the cluster for those runs. In particular, instead of our normal 5:1 over subscription between racks, we limited it to 16 nodes in each rack for a 2:1 over subscription. The smaller runs can also use output replication of 1, because they only take minutes to run and run on smaller clusters, the likelihood of a node failing is fairly low. On the larger runs, failure is expected and thus replication of 2 is required. HDFS protects against data loss during rack failure by writing the second replica on a different rack and thus writing the second replica is relatively slow. We've included the timelines for the jobs counting from the job submission at the Job Tracker. The diagrams show the number of tasks running at each point in time. While maps only have a single phase, the reduces have three: \textbf{shuffle}, \textbf{merge}, and \textbf{reduce}. The shuffle is the transfer of the data from the maps. Merge doesn't happen in these benchmarks, because none of the reduces need multiple levels of merges. Finally, the reduce phase is where the final merge and writing to HDFS happens. I've also included a category named \textbf{waste} that represents task attempts that were running, but ended up either failing, or being killed (often as speculatively executed task attempts). The job logs and configuration for the four runs, which are the raw data for the charts, are available on \href{http://people.apache.org/~omalley/tera-2009/}{http://people.apache.org/~omalley/tera-2009/}. If you compare this years charts to last year's, you'll notice that tasks are launching much faster now. Last year we only launched one task per heartbeat, so it took 40 seconds to get all of the tasks launched. Now, Hadoop will fill up a Task Tracker in a single heartbeat. Reducing that job launch overhead is very important for getting runs under a minute. As with last year, we ran with significantly larger tasks than the defaults for Hadoop. Even with the new more aggressive shuffle, minimizing the number of transfers (maps * reduces) is very important to the performance of the job. Notice that in the petabyte sort, each map is processing 15 GB instead of the default 128 MB and each reduce is handling 50 GB. When we ran the petabyte with more typical values 1.5 GB / map, it took 40 hours to finish. Therefore, to increase throughput, it makes sense to consider increasing the default block size, which translates into the default map size, to at least up to 1 GB. \section{Comments on the Rule Changes} The group that runs the Gray Sort Benchmark made very substantial changes to the rules this year. The changes were not announced; but rather appeared on the website in March. We feel that it was too late to make rule changes and that the benchmark should have been changed next year. We'd also like to point out that while most of the changes to the data generator were positive, it was a poor choice to remove the skewed distribution of the keys. The previously skewed distribution required sampling of the input to pick good partition points between the reduces. The current dataset picks keys so completely random that sampling is counter productive and yields even less distributions between the reduces. \bibliographystyle{abbrv} \bibliography{tera} \begin{figure}[!p] \includegraphics[width=4.21in]{500GBTaskTime.png} \caption{500 GB sort tasks across time}\label{500GbTimeline} \end{figure} \begin{figure}[!p] \includegraphics[width=4.5in]{1TBTaskTime.png} \caption{1 TB sort tasks across time}\label{1TbTimeline} \end{figure} \begin{figure}[!p] \includegraphics[width=4.5in]{100TBTaskTime.png} \caption{100 TB sort tasks across time}\label{100TbTimeline} \end{figure} \begin{figure}[!p] \includegraphics[width=4.5in]{1PBTaskTime.png} \caption{1 PB sort tasks across time}\label{1PbTimeline} \end{figure} \end{document}
TeX
5
bzhaoopenstack/hadoop
hadoop-mapreduce-project/hadoop-mapreduce-examples/src/main/java/org/apache/hadoop/examples/terasort/2009-write-up/Yahoo2009.tex
[ "Apache-2.0" ]
mes 2,4,4 exa end end bss 4,0,1
Eiffel
0
wyan/ack
mach/em44/libend/end.e
[ "BSD-3-Clause" ]
signature file-jar { file-mime "application/java-archive", 100 file-magic /^PK\x03\x04.{1,200}\x14\x00..META-INF\/MANIFEST\.MF/ } signature file-java-applet { file-mime "application/x-java-applet", 71 file-magic /^\xca\xfe\xba\xbe...[\x2d-\x34]/ } # JAR compressed with pack200 signature file-jar-pack200 { file-mime "application/x-java-pack200", 1 file-magic /^\xca\xfe\xd0\x0d./ } # Java Web Start file. signature file-jnlp { file-magic /^\<jnlp\x20/ file-mime "application/x-java-jnlp-file", 100 } signature file-java-keystore { file-mime "application/x-java-keystore", 70 file-magic /^\xfe\xed\xfe\xed/ } signature file-java-jce-keystore { file-mime "application/x-java-jce-keystore", 70 file-magic /^\xce\xce\xce\xce/ }
Standard ML
3
yaplej/bro
scripts/base/frameworks/files/magic/java.sig
[ "Apache-2.0" ]
--TEST-- __DIR__ constant used with eval() --FILE-- <?php eval('echo __DIR__ . "\n";'); ?> --EXPECTF-- %stests%sconstants
PHP
2
guomoumou123/php5.5.10
Zend/tests/constants/dir-constant-eval.phpt
[ "PHP-3.01" ]
#!/usr/bin/env bash SE_JAR=bazel-bin/java/src/org/openqa/selenium/grid/selenium TRACE_CP=$(coursier fetch -p io.opentelemetry:opentelemetry-exporter-jaeger:1.0.0 io.grpc:grpc-netty:1.35.0) ps auxw | grep "$SE_JAR" | awk '{print $2}' | xargs kill -9 bazel build grid java -Dotel.traces.exporter=jaeger -Dotel.exporter.jaeger.endpoint=http://localhost:14250 -Dotel.resource.attributes=service.name=selenium-sessions -jar "$SE_JAR" --ext "$TRACE_CP" sessions & java -Dotel.traces.exporter=jaeger -Dotel.exporter.jaeger.endpoint=http://localhost:14250 -Dotel.resource.attributes=service.name=selenium-queue -jar "$SE_JAR" --ext "$TRACE_CP" sessionqueue & java -Dotel.traces.exporter=jaeger -Dotel.exporter.jaeger.endpoint=http://localhost:14250 -Dotel.resource.attributes=service.name=selenium-distributor -jar "$SE_JAR" --ext "$TRACE_CP" distributor -s http://192.168.86.20:5556 --sq http://192.168.86.20:5559 & java -Dotel.traces.exporter=jaeger -Dotel.exporter.jaeger.endpoint=http://localhost:14250 -Dotel.resource.attributes=service.name=selenium-router -jar "$SE_JAR" --ext "$TRACE_CP" router -s http://192.168.86.20:5556 --sq http://192.168.86.20:5559 -d http://192.168.86.20:5553 & sleep 2 java -Dotel.traces.exporter=jaeger -Dotel.exporter.jaeger.endpoint=http://localhost:14250 -Dotel.resource.attributes=service.name=selenium-node -jar "$SE_JAR" --ext "$TRACE_CP" node -D selenium/standalone-firefox:latest '{"browserName": "firefox"}' --max-sessions 1 --detect-drivers false
Shell
2
TamsilAmani/selenium
scripts/grid/start-traced-grid.sh
[ "Apache-2.0" ]
;; test_blockargs.nu ;; tests for argument handling in Nu blocks. ;; ;; Copyright (c) 2008 Jeff Buck (class TestBlockArgs is NuTestCase (- (id) testSimpleArgs is (function make-list (a b c) (list a b c)) (assert_equal '(1 2 3) (make-list 1 2 3))) (- (id) testRestArgs is (function make-list (a b *rest) (append (list a b) *rest)) (assert_equal '(1 2 3) (make-list 1 2 3)) (assert_equal '(1 2 3 4 5) (make-list 1 2 3 4 5))) (- (id) testOverrideImplicitArgs1 is (function make-list (*args) (*args)) (assert_equal '(1 2 3) (make-list 1 2 3)) (assert_equal '() (make-list))) (- (id) testOverrideImplicitArgs2 is (function make-list (a b *args) (list a b *args)) (assert_equal '(1 2 ()) (make-list 1 2)) (assert_equal '(1 2 (3)) (make-list 1 2 3))) (- (id) testBlock is (assert_equal '(1 2) ((do (a b) (list a b)) 1 2)) (assert_equal '(1 2) ((do (a b *args) (list a b)) 1 2 3 4)) (assert_equal '(3 4) ((do (a b *args) (*args)) 1 2 3 4)) (assert_equal '(1 (3 4)) ((do (a b *args) (list a *args)) 1 2 3 4))))
Nu
5
mattbeshara/nu
test/test_blockargs.nu
[ "Apache-2.0" ]
10 5 2 0 0 1 5 1 5 4 2 3 [0 0 0] [0 0 0] [0 0 0] [0 0 0] [0 0 0] 1 3 5 9 8 7 6 11 [-3 -4 15 1 4 5 0 7 4] [14 -8 20 0 0 5 5 2 7] [18 0 24 3 0 4 5 2 9] [7 13 -1 0 1 0 6 6 9] [9 2 4] 2 3 4 6 8 11 9 [2 4 6 6 3 7 0 7 10] [4 3 3 10 4 0 11 0 8] [2 4 4] [0 6 5 9 6 5 0 -2 -1] 3 3 5 10 9 11 8 7 [4 6 0 4 2 4 0 -2 5] [2 -2 8 11 10 18 3 7 3] [3 9 3] [0 4 0 10 3 -4 -2 0 0] [1 2 0 21 -7 18 3 7 2] 4 3 5 10 9 11 7 8 [15 22 12 14 22 14 3 7 5] [16 8 26 6 19 0 5 5 -2] [9 8 3] [10 11 -1 -7 6 6 1 -1 4] [-5 17 -4 1 20 9 -2 2 3] 5 3 5 11 6 7 8 9 [2 5 5] [1 5 0 -4 10 8 -1 -2 10] [-1 4 2 4 15 0 -4 1 -2] [0 0 6 0 6 6 1 -2 1] [0 2 2 1 2 11 4 1 1] 6 3 2 11 10 [9 9 6] [1 -4 16 -1 20 -6 18 0 1] 7 3 4 4 1 11 5 [-54 -32 -19 -84 -58 -64 -80 -48 -77] [-47 -66 -74 -64 -86 -32 -70 -28 -47] [3 10 6] [-62 -84 -62 -86 -82 -56 -77 -44 -85] 8 3 2 11 2 [3 10 5] [-71 -43 -49 -76 -59 -54 -27 -83 -71] 9 3 5 11 4 5 2 1 [8 1 1] [-66 -33 -82 -59 -44 -67 -86 -87 -88] [-39 -89 -33 -80 -52 -29 -66 -24 -39] [-29 -54 -56 -65 -57 -69 -45 -68 -29] [-54 -86 -30 -39 -53 -46 -83 -75 -53] 10 3 2 6 11 [-2 -4 -5 -14 -6 -13 -7 -4 -2] [2 1 9] 11 1 0 0 1 0 0 0 0 0 0 0 0 1 1 9 4 2 4 1 2 1 5 2 2 4 2 4 1 2 1 5 3 4 4 2 4 1 2 1 5 2 1 2 3 3 1 4 4 4 2 2 4 3 3 1 4 4 4 2 3 4 3 3 1 4 4 4 2 3 1 3 1 5 5 3 1 3 3 2 9 1 5 5 3 1 3 3 3 3 1 5 5 3 1 3 3 4 1 9 5 3 2 1 1 2 2 2 8 5 3 2 1 1 2 2 3 3 5 3 2 1 1 2 2 5 1 2 1 3 2 1 3 2 2 2 5 1 3 2 1 3 2 2 3 5 1 3 2 1 3 2 2 6 1 9 5 3 5 4 2 1 5 2 9 5 3 5 4 2 1 5 3 6 5 3 5 4 2 1 5 7 1 3 4 3 1 2 2 5 4 2 10 4 3 1 2 2 5 4 3 6 4 3 1 2 2 5 4 8 1 3 4 3 3 1 4 3 1 2 10 4 3 3 1 4 3 1 3 5 4 3 3 1 4 3 1 9 1 8 4 5 1 2 3 3 3 2 1 4 5 1 2 3 3 3 3 1 4 5 1 2 3 3 3 10 1 2 4 2 5 4 4 4 1 2 1 4 2 5 4 4 4 1 3 9 4 2 5 4 4 4 1 11 1 0 0 0 0 0 0 0 0 12 11 10 9 9 28 56
Eagle
1
klorel/or-tools
examples/data/rcpsp/multi_mode_max_delay/mm_j10/psp132.sch
[ "Apache-2.0" ]
package jadx.gui.treemodel; import java.util.ArrayList; import java.util.Collections; import java.util.List; import javax.swing.Icon; import javax.swing.ImageIcon; import org.jetbrains.annotations.NotNull; import jadx.api.JavaPackage; import jadx.core.utils.Utils; import jadx.gui.JadxWrapper; import jadx.gui.utils.UiUtils; public class JPackage extends JNode implements Comparable<JPackage> { private static final long serialVersionUID = -4120718634156839804L; private static final ImageIcon PACKAGE_ICON = UiUtils.openSvgIcon("nodes/package"); private String fullName; private String name; private boolean enabled; private List<JClass> classes; private List<JPackage> innerPackages; public JPackage(JavaPackage pkg, JadxWrapper wrapper) { this(pkg.getName(), pkg.getName(), isPkgEnabled(wrapper, pkg.getName()), Utils.collectionMap(pkg.getClasses(), JClass::new), new ArrayList<>()); update(); } public JPackage(String fullName, JadxWrapper wrapper) { this(fullName, fullName, isPkgEnabled(wrapper, fullName), new ArrayList<>(), new ArrayList<>()); } public JPackage(String fullName, String name) { this(fullName, name, true, Collections.emptyList(), Collections.emptyList()); } private JPackage(String fullName, String name, boolean enabled, List<JClass> classes, List<JPackage> innerPackages) { this.fullName = fullName; this.name = name; this.enabled = enabled; this.classes = classes; this.innerPackages = innerPackages; } private static boolean isPkgEnabled(JadxWrapper wrapper, String fullPkgName) { List<String> excludedPackages = wrapper.getExcludedPackages(); return excludedPackages.isEmpty() || excludedPackages.stream().filter(p -> !p.isEmpty()) .noneMatch(p -> fullPkgName.equals(p) || fullPkgName.startsWith(p + '.')); } public final void update() { removeAllChildren(); if (isEnabled()) { for (JPackage pkg : innerPackages) { pkg.update(); add(pkg); } for (JClass cls : classes) { cls.update(); add(cls); } } } @Override public String getName() { return name; } @Override public boolean canRename() { return true; } public String getFullName() { return fullName; } public void updateBothNames(String fullName, String name, JadxWrapper wrapper) { this.fullName = fullName; this.name = name; this.enabled = isPkgEnabled(wrapper, fullName); } public void updateName(String name) { this.name = name; } public List<JPackage> getInnerPackages() { return innerPackages; } public void setInnerPackages(List<JPackage> innerPackages) { this.innerPackages = innerPackages; } public List<JClass> getClasses() { return classes; } public void setClasses(List<JClass> classes) { this.classes = classes; } @Override public Icon getIcon() { return PACKAGE_ICON; } @Override public JClass getJParent() { return null; } @Override public int getLine() { return 0; } @Override public int compareTo(@NotNull JPackage o) { return name.compareTo(o.name); } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } return name.equals(((JPackage) o).name); } @Override public int hashCode() { return name.hashCode(); } @Override public String makeString() { return name; } @Override public String makeLongString() { return name; } public boolean isEnabled() { return enabled; } }
Java
4
Dev-kishan1999/jadx
jadx-gui/src/main/java/jadx/gui/treemodel/JPackage.java
[ "Apache-2.0" ]
@prefix dcs: <http://ontologi.es/doap-changeset#> . @prefix doap: <http://usefulinc.com/ns/doap#> . @prefix foaf: <http://xmlns.com/foaf/0.1/> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . <http://lv2plug.in/ns/ext/presets> a doap:Project ; doap:license <http://opensource.org/licenses/isc> ; doap:name "LV2 Presets" ; doap:shortdesc "Presets for LV2 plugins." ; doap:created "2009-00-00" ; doap:developer <http://drobilla.net/drobilla#me> ; doap:release [ doap:revision "2.8" ; doap:created "2012-10-14" ; doap:file-release <http://lv2plug.in/spec/lv2-1.2.0.tar.bz2> ; dcs:blame <http://drobilla.net/drobilla#me> ; dcs:changeset [ dcs:item [ rdfs:label "Use consistent label style." ] , [ rdfs:label "Add preset banks." ] ] ] , [ doap:revision "2.6" ; doap:created "2012-04-17" ; doap:file-release <http://lv2plug.in/spec/lv2-1.0.0.tar.bz2> ; dcs:blame <http://drobilla.net/drobilla#me> ; dcs:changeset [ dcs:item [ rdfs:label "Add pset:preset property for describing the preset currently applied to a plugin instance." ] , [ rdfs:label "Remove pset:appliesTo property, use lv2:appliesTo instead." ] , [ rdfs:label "Merge with unified LV2 package." ] ] ] , [ doap:revision "2.2" ; doap:created "2011-11-21" ; doap:file-release <http://lv2plug.in/spec/lv2-presets-2.2.tar.bz2> ; dcs:blame <http://drobilla.net/drobilla#me> ; dcs:changeset [ dcs:item [ rdfs:label "Update packaging." ] , [ rdfs:label "Improve documentation." ] ] ] , [ doap:revision "2.0" ; doap:created "2010-10-04" ; doap:file-release <http://lv2plug.in/spec/lv2-presets-2.0.tar.gz> ; dcs:blame <http://drobilla.net/drobilla#me> ; dcs:changeset [ dcs:item [ rdfs:label "Initial release." ] ] ] .
Turtle
3
joshrose/audacity
lib-src/lv2/lv2/lv2/presets/lv2-presets.doap.ttl
[ "CC-BY-3.0" ]
/** Copyright 2015 Acacia Team Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package org.acacia.server; /** * Class GraphStatus */ public class GraphStatus { //Note that these values must be present on the database on the GRAPH_STATUS table as well. public static val LOADING:Int = 1n; public static val OPERATIONAL:Int = 2n; public static val DELETED:Int = 3n; public static val STREAMING:Int = 4n; }
X10
3
mdherath/Acacia
src/org/acacia/server/GraphStatus.x10
[ "Apache-2.0" ]
# This example shows how to load polysporth, and use it make a sine wave. # create an "input" table _in 1 zeros # now we call polysporth ( 1 # number of sporthlets to make _out # name of output table created by polysporth "00_sine.scm" # name of scheme file to load ps # polysporth! ) # read from index 0, which is sporthlet 0 0 _out tget
SourcePawn
4
aleatoricforest/Sporth
ugens/polysporth/examples/00_sine.sp
[ "MIT" ]
--TEST-- empty() with arbitrary expressions --FILE-- <?php function getEmptyArray() { return []; } function getNonEmptyArray() { return [1, 2, 3]; } var_dump(empty([])); var_dump(empty([1, 2, 3])); var_dump(empty(getEmptyArray())); var_dump(empty(getNonEmptyArray())); var_dump(empty([] + [])); var_dump(empty([1, 2, 3] + [])); var_dump(empty("string")); var_dump(empty("")); var_dump(empty(true)); var_dump(empty(false)); ?> --EXPECT-- bool(true) bool(false) bool(true) bool(false) bool(true) bool(false) bool(false) bool(true) bool(false) bool(true)
PHP
3
NathanFreeman/php-src
Zend/tests/empty_with_expr.phpt
[ "PHP-3.01" ]
% Copyright (C) 1993 Digital Equipment Corporation % All rights reserved. % See the file COPYRIGHT for a full description. % Last modified on Wed Jun 23 12:09:23 PDT 1993 by horning posixPath: trait % POSIX-specific definitions for pathnames includes osSigs asserts forall s: Str, b, only: Bool parent(POSIX) == {Period, Period}; current(POSIX) == {Period}; parse(s, POSIX) == if len(s) > 0 /\ s[0] = Slash then {{Slash}} || split(tail(s), Slash) else {NIL} || split(s, Slash); goodRoot(s, POSIX) == s = {Slash}; goodName(s, POSIX) == ~(Slash \in s);
LSL
3
jaykrell/cm3
m3-libs/libm3/src/os/Common/posixPath.lsl
[ "BSD-4-Clause-UC", "BSD-4-Clause", "BSD-3-Clause" ]
package com.baeldung import org.gradle.api.DefaultTask import org.gradle.api.tasks.TaskAction class PrintToolVersionBuildSrcTask extends DefaultTask { String tool @TaskAction void printToolVersion() { switch (tool) { case 'java': println System.getProperty("java.version") break case 'groovy': println GroovySystem.version break default: throw new IllegalArgumentException("Unknown tool") } } }
Groovy
4
zeesh49/tutorials
gradle/buildSrc/src/main/groovy/com/baeldung/PrintToolVersionBuildSrcTask.groovy
[ "MIT" ]
.language-css, .language-styl, .language-less, .language-scss, .language-sass { color: #005cc5; .punctuation { color: #24292e; } .selector { color: #6749BA; } .property { color: #005cc5; } .atrule { color: #d73a49; } }
Stylus
3
niuxiongwen/linux-command
template/styl/mixins/css.styl
[ "MIT" ]
{%- macro error_messages(message, field, type) -%} <div><span class="error-type">{{ type }}</span><span class="error-field">{{ field }}</span><span class="error-message">{{ message }}</span></div> {%- endmacro -%} {{- error_messages('type': 'Invalid', 'message': 'The name is invalid', 'field': 'name') -}}
Volt
4
tidytrax/cphalcon
tests/_data/fixtures/views/macro/error_messages.volt
[ "BSD-3-Clause" ]
<!---================= Room Booking System / https://github.com/neokoenig =======================---> <cfparam name="event"> <cfoutput> #panel(title="Event Details")# #includePartial(partial="/eventdata/details")# #panelEnd()# </cfoutput>
ColdFusion
2
fintecheando/RoomBooking
views/bookings/view.cfm
[ "Apache-1.1" ]
<?xml version='1.0' encoding='UTF-8'?> <Project Type="Project" LVVersion="15008000"> <Property Name="SMProvider.SMVersion" Type="Int">201310</Property> <Item Name="My Computer" Type="My Computer"> <Property Name="IOScan.Faults" Type="Str"></Property> <Property Name="IOScan.NetVarPeriod" Type="UInt">100</Property> <Property Name="IOScan.NetWatchdogEnabled" Type="Bool">false</Property> <Property Name="IOScan.Period" Type="UInt">10000</Property> <Property Name="IOScan.PowerupMode" Type="UInt">0</Property> <Property Name="IOScan.Priority" Type="UInt">9</Property> <Property Name="IOScan.ReportModeConflict" Type="Bool">true</Property> <Property Name="IOScan.StartEngineOnDeploy" Type="Bool">false</Property> <Property Name="server.app.propertiesEnabled" Type="Bool">true</Property> <Property Name="server.control.propertiesEnabled" Type="Bool">true</Property> <Property Name="server.tcp.enabled" Type="Bool">false</Property> <Property Name="server.tcp.port" Type="Int">0</Property> <Property Name="server.tcp.serviceName" Type="Str">My Computer/VI Server</Property> <Property Name="server.tcp.serviceName.default" Type="Str">My Computer/VI Server</Property> <Property Name="server.vi.callsEnabled" Type="Bool">true</Property> <Property Name="server.vi.propertiesEnabled" Type="Bool">true</Property> <Property Name="specify.custom.address" Type="Bool">false</Property> <Item Name="Example.vi" Type="VI" URL="../Example.vi"/> <Item Name="LVdataToTableData.lvlib" Type="Library" URL="../LVdataToTableData/LVdataToTableData.lvlib"/> <Item Name="TableLogger_Actor.lvlib" Type="Library" URL="../TableLogger_Actor/TableLogger_Actor.lvlib"/> <Item Name="TableLogger_CSV_Actor.lvlib" Type="Library" URL="../TableLogger_CSV_Actor/TableLogger_CSV_Actor.lvlib"/> <Item Name="TableLogger_SQLite_Actor.lvlib" Type="Library" URL="../TableLogger_SQLite_Actor/TableLogger_SQLite_Actor.lvlib"/> <Item Name="Dependencies" Type="Dependencies"> <Item Name="user.lib" Type="Folder"> <Item Name="Array of VData to VCluster__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Array of VData to VCluster__ogtk.vi"/> <Item Name="Array Size(s)__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Array Size(s)__ogtk.vi"/> <Item Name="Array to Array of VData__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Array to Array of VData__ogtk.vi"/> <Item Name="Build Error Cluster__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/error/error.llb/Build Error Cluster__ogtk.vi"/> <Item Name="Build Path - File Names and Paths Arrays - path__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/file/file.llb/Build Path - File Names and Paths Arrays - path__ogtk.vi"/> <Item Name="Build Path - File Names and Paths Arrays__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/file/file.llb/Build Path - File Names and Paths Arrays__ogtk.vi"/> <Item Name="Build Path - File Names Array - path__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/file/file.llb/Build Path - File Names Array - path__ogtk.vi"/> <Item Name="Build Path - File Names Array__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/file/file.llb/Build Path - File Names Array__ogtk.vi"/> <Item Name="Build Path - Traditional - path__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/file/file.llb/Build Path - Traditional - path__ogtk.vi"/> <Item Name="Build Path - Traditional__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/file/file.llb/Build Path - Traditional__ogtk.vi"/> <Item Name="Build Path__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/file/file.llb/Build Path__ogtk.vi"/> <Item Name="Cluster to Array of VData__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Cluster to Array of VData__ogtk.vi"/> <Item Name="Create Dir if Non-Existant__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/file/file.llb/Create Dir if Non-Existant__ogtk.vi"/> <Item Name="File Exists - Array__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/file/file.llb/File Exists - Array__ogtk.vi"/> <Item Name="File Exists - Scalar__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/file/file.llb/File Exists - Scalar__ogtk.vi"/> <Item Name="File Exists__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/file/file.llb/File Exists__ogtk.vi"/> <Item Name="Get Array Element Default Data__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Get Array Element Default Data__ogtk.vi"/> <Item Name="Get Array Element TD__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Get Array Element TD__ogtk.vi"/> <Item Name="Get Array Element TDEnum__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Get Array Element TDEnum__ogtk.vi"/> <Item Name="Get Cluster Element Names__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Get Cluster Element Names__ogtk.vi"/> <Item Name="Get Cluster Elements TDs__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Get Cluster Elements TDs__ogtk.vi"/> <Item Name="Get Data Name from TD__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Get Data Name from TD__ogtk.vi"/> <Item Name="Get Data Name__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Get Data Name__ogtk.vi"/> <Item Name="Get Default Data from TD__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Get Default Data from TD__ogtk.vi"/> <Item Name="Get Element TD from Array TD__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Get Element TD from Array TD__ogtk.vi"/> <Item Name="Get Header from TD__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Get Header from TD__ogtk.vi"/> <Item Name="Get Last PString__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Get Last PString__ogtk.vi"/> <Item Name="Get PString__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Get PString__ogtk.vi"/> <Item Name="Get Strings from Enum TD__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Get Strings from Enum TD__ogtk.vi"/> <Item Name="Get Strings from Enum__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Get Strings from Enum__ogtk.vi"/> <Item Name="Get TDEnum from Data__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Get TDEnum from Data__ogtk.vi"/> <Item Name="Get Variant Attributes__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Get Variant Attributes__ogtk.vi"/> <Item Name="Get Waveform Type Enum from TD__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Get Waveform Type Enum from TD__ogtk.vi"/> <Item Name="Parse String with TDs__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Parse String with TDs__ogtk.vi"/> <Item Name="Remove Duplicates from 1D Array (Boolean)__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/array/array.llb/Remove Duplicates from 1D Array (Boolean)__ogtk.vi"/> <Item Name="Remove Duplicates from 1D Array (CDB)__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/array/array.llb/Remove Duplicates from 1D Array (CDB)__ogtk.vi"/> <Item Name="Remove Duplicates from 1D Array (CSG)__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/array/array.llb/Remove Duplicates from 1D Array (CSG)__ogtk.vi"/> <Item Name="Remove Duplicates from 1D Array (CXT)__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/array/array.llb/Remove Duplicates from 1D Array (CXT)__ogtk.vi"/> <Item Name="Remove Duplicates from 1D Array (DBL)__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/array/array.llb/Remove Duplicates from 1D Array (DBL)__ogtk.vi"/> <Item Name="Remove Duplicates from 1D Array (EXT)__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/array/array.llb/Remove Duplicates from 1D Array (EXT)__ogtk.vi"/> <Item Name="Remove Duplicates from 1D Array (I8)__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/array/array.llb/Remove Duplicates from 1D Array (I8)__ogtk.vi"/> <Item Name="Remove Duplicates from 1D Array (I16)__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/array/array.llb/Remove Duplicates from 1D Array (I16)__ogtk.vi"/> <Item Name="Remove Duplicates from 1D Array (I32)__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/array/array.llb/Remove Duplicates from 1D Array (I32)__ogtk.vi"/> <Item Name="Remove Duplicates from 1D Array (I64)__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/array/array.llb/Remove Duplicates from 1D Array (I64)__ogtk.vi"/> <Item Name="Remove Duplicates from 1D Array (LVObject)__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/array/array.llb/Remove Duplicates from 1D Array (LVObject)__ogtk.vi"/> <Item Name="Remove Duplicates from 1D Array (Path)__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/array/array.llb/Remove Duplicates from 1D Array (Path)__ogtk.vi"/> <Item Name="Remove Duplicates from 1D Array (SGL)__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/array/array.llb/Remove Duplicates from 1D Array (SGL)__ogtk.vi"/> <Item Name="Remove Duplicates from 1D Array (String)__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/array/array.llb/Remove Duplicates from 1D Array (String)__ogtk.vi"/> <Item Name="Remove Duplicates from 1D Array (U8)__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/array/array.llb/Remove Duplicates from 1D Array (U8)__ogtk.vi"/> <Item Name="Remove Duplicates from 1D Array (U16)__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/array/array.llb/Remove Duplicates from 1D Array (U16)__ogtk.vi"/> <Item Name="Remove Duplicates from 1D Array (U32)__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/array/array.llb/Remove Duplicates from 1D Array (U32)__ogtk.vi"/> <Item Name="Remove Duplicates from 1D Array (U64)__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/array/array.llb/Remove Duplicates from 1D Array (U64)__ogtk.vi"/> <Item Name="Remove Duplicates from 1D Array (Variant)__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/array/array.llb/Remove Duplicates from 1D Array (Variant)__ogtk.vi"/> <Item Name="Remove Duplicates from 1D Array__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/array/array.llb/Remove Duplicates from 1D Array__ogtk.vi"/> <Item Name="Reshape Array to 1D VArray__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Reshape Array to 1D VArray__ogtk.vi"/> <Item Name="Set Data Name__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Set Data Name__ogtk.vi"/> <Item Name="Split Cluster TD__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Split Cluster TD__ogtk.vi"/> <Item Name="Strip Path - Arrays__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/file/file.llb/Strip Path - Arrays__ogtk.vi"/> <Item Name="Strip Path - Traditional__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/file/file.llb/Strip Path - Traditional__ogtk.vi"/> <Item Name="Strip Path__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/file/file.llb/Strip Path__ogtk.vi"/> <Item Name="Type Descriptor Enumeration__ogtk.ctl" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Type Descriptor Enumeration__ogtk.ctl"/> <Item Name="Type Descriptor Header__ogtk.ctl" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Type Descriptor Header__ogtk.ctl"/> <Item Name="Type Descriptor__ogtk.ctl" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Type Descriptor__ogtk.ctl"/> <Item Name="Variant to Header Info__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Variant to Header Info__ogtk.vi"/> <Item Name="Waveform Subtype Enum__ogtk.ctl" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Waveform Subtype Enum__ogtk.ctl"/> </Item> <Item Name="vi.lib" Type="Folder"> <Item Name="Actor Framework.lvlib" Type="Library" URL="/&lt;vilib&gt;/ActorFramework/Actor Framework.lvlib"/> <Item Name="Application Directory.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/file.llb/Application Directory.vi"/> <Item Name="Close File+.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/file.llb/Close File+.vi"/> <Item Name="Command Line String To Path.vi" Type="VI" URL="/&lt;vilib&gt;/AdvancedString/Command Line String To Path.vi"/> <Item Name="compatReadText.vi" Type="VI" URL="/&lt;vilib&gt;/_oldvers/_oldvers.llb/compatReadText.vi"/> <Item Name="Error Cluster From Error Code.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/Error Cluster From Error Code.vi"/> <Item Name="Find First Error.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/Find First Error.vi"/> <Item Name="Get LV Class Name.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/LVClass/Get LV Class Name.vi"/> <Item Name="LVNumericRepresentation.ctl" Type="VI" URL="/&lt;vilib&gt;/numeric/LVNumericRepresentation.ctl"/> <Item Name="NI_FileType.lvlib" Type="Library" URL="/&lt;vilib&gt;/Utility/lvfile.llb/NI_FileType.lvlib"/> <Item Name="Open File+.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/file.llb/Open File+.vi"/> <Item Name="Path To Command Line String.vi" Type="VI" URL="/&lt;vilib&gt;/AdvancedString/Path To Command Line String.vi"/> <Item Name="PathToUNIXPathString.vi" Type="VI" URL="/&lt;vilib&gt;/Platform/CFURL.llb/PathToUNIXPathString.vi"/> <Item Name="Read Delimited Spreadsheet (DBL).vi" Type="VI" URL="/&lt;vilib&gt;/Utility/file.llb/Read Delimited Spreadsheet (DBL).vi"/> <Item Name="Read Delimited Spreadsheet (I64).vi" Type="VI" URL="/&lt;vilib&gt;/Utility/file.llb/Read Delimited Spreadsheet (I64).vi"/> <Item Name="Read Delimited Spreadsheet (string).vi" Type="VI" URL="/&lt;vilib&gt;/Utility/file.llb/Read Delimited Spreadsheet (string).vi"/> <Item Name="Read Delimited Spreadsheet.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/file.llb/Read Delimited Spreadsheet.vi"/> <Item Name="Read File+ (string).vi" Type="VI" URL="/&lt;vilib&gt;/Utility/file.llb/Read File+ (string).vi"/> <Item Name="Read Lines From File (with error IO).vi" Type="VI" URL="/&lt;vilib&gt;/Utility/file.llb/Read Lines From File (with error IO).vi"/> <Item Name="SQLite.lvlib" Type="Library" URL="/&lt;vilib&gt;/drjdpowell/SQLite Library/SQLite.lvlib"/> <Item Name="Time-Delay Override Options.ctl" Type="VI" URL="/&lt;vilib&gt;/ActorFramework/Time-Delayed Send Message/Time-Delay Override Options.ctl"/> <Item Name="Trim Whitespace.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/Trim Whitespace.vi"/> <Item Name="UNIXPathStringToPath.vi" Type="VI" URL="/&lt;vilib&gt;/Platform/CFURL.llb/UNIXPathStringToPath.vi"/> <Item Name="VariantType.lvlib" Type="Library" URL="/&lt;vilib&gt;/Utility/VariantDataType/VariantType.lvlib"/> <Item Name="whitespace.ctl" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/whitespace.ctl"/> <Item Name="Write Delimited Spreadsheet (DBL).vi" Type="VI" URL="/&lt;vilib&gt;/Utility/file.llb/Write Delimited Spreadsheet (DBL).vi"/> <Item Name="Write Delimited Spreadsheet (I64).vi" Type="VI" URL="/&lt;vilib&gt;/Utility/file.llb/Write Delimited Spreadsheet (I64).vi"/> <Item Name="Write Delimited Spreadsheet (string).vi" Type="VI" URL="/&lt;vilib&gt;/Utility/file.llb/Write Delimited Spreadsheet (string).vi"/> <Item Name="Write Delimited Spreadsheet.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/file.llb/Write Delimited Spreadsheet.vi"/> <Item Name="Write Spreadsheet String.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/file.llb/Write Spreadsheet String.vi"/> </Item> <Item Name="AF Debug.lvlib" Type="Library" URL="/&lt;resource&gt;/AFDebug/AF Debug.lvlib"/> </Item> <Item Name="Build Specifications" Type="Build"> <Item Name="LVdataToTableData" Type="Packed Library"> <Property Name="Bld_autoIncrement" Type="Bool">true</Property> <Property Name="Bld_buildCacheID" Type="Str">{264CEE59-772D-410F-B299-374468E450C5}</Property> <Property Name="Bld_buildSpecName" Type="Str">LVdataToTableData</Property> <Property Name="Bld_excludeInlineSubVIs" Type="Bool">true</Property> <Property Name="Bld_excludeLibraryItems" Type="Bool">true</Property> <Property Name="Bld_excludePolymorphicVIs" Type="Bool">true</Property> <Property Name="Bld_localDestDir" Type="Path">../builds</Property> <Property Name="Bld_localDestDirType" Type="Str">relativeToCommon</Property> <Property Name="Bld_modifyLibraryFile" Type="Bool">true</Property> <Property Name="Bld_previewCacheID" Type="Str">{5E05815D-436D-4071-8AE7-1AC312543835}</Property> <Property Name="Bld_version.build" Type="Int">3</Property> <Property Name="Bld_version.major" Type="Int">1</Property> <Property Name="Destination[0].destName" Type="Str">LVdataToTableData.lvlibp</Property> <Property Name="Destination[0].path" Type="Path">../builds/LVdataToTableData.lvlibp</Property> <Property Name="Destination[0].preserveHierarchy" Type="Bool">true</Property> <Property Name="Destination[0].type" Type="Str">App</Property> <Property Name="Destination[1].destName" Type="Str">Support Directory</Property> <Property Name="Destination[1].path" Type="Path">../builds</Property> <Property Name="DestinationCount" Type="Int">2</Property> <Property Name="PackedLib_callersAdapt" Type="Bool">true</Property> <Property Name="Source[0].itemID" Type="Str">{F902812D-68A0-43BC-8AD7-194B46BAD35B}</Property> <Property Name="Source[0].type" Type="Str">Container</Property> <Property Name="Source[1].destinationIndex" Type="Int">0</Property> <Property Name="Source[1].itemID" Type="Ref">/My Computer/LVdataToTableData.lvlib</Property> <Property Name="Source[1].Library.allowMissingMembers" Type="Bool">true</Property> <Property Name="Source[1].Library.atomicCopy" Type="Bool">true</Property> <Property Name="Source[1].Library.LVLIBPtopLevel" Type="Bool">true</Property> <Property Name="Source[1].preventRename" Type="Bool">true</Property> <Property Name="Source[1].sourceInclusion" Type="Str">TopLevel</Property> <Property Name="Source[1].type" Type="Str">Library</Property> <Property Name="SourceCount" Type="Int">2</Property> <Property Name="TgtF_companyName" Type="Str">Valeo Vision Systems</Property> <Property Name="TgtF_fileDescription" Type="Str">LVdataToTableData</Property> <Property Name="TgtF_internalName" Type="Str">LVdataToTableData</Property> <Property Name="TgtF_legalCopyright" Type="Str">Copyright © 2019 Valeo Vision Systems</Property> <Property Name="TgtF_productName" Type="Str">LVdataToTableData</Property> <Property Name="TgtF_targetfileGUID" Type="Str">{4D3642B8-7619-4361-BFDB-29206CB9CA42}</Property> <Property Name="TgtF_targetfileName" Type="Str">LVdataToTableData.lvlibp</Property> </Item> <Item Name="TableLogger" Type="Packed Library"> <Property Name="Bld_autoIncrement" Type="Bool">true</Property> <Property Name="Bld_buildCacheID" Type="Str">{77819A96-00A8-4D0C-A741-48CA09597B08}</Property> <Property Name="Bld_buildSpecDescription" Type="Str">digiajay.com</Property> <Property Name="Bld_buildSpecName" Type="Str">TableLogger</Property> <Property Name="Bld_excludeInlineSubVIs" Type="Bool">true</Property> <Property Name="Bld_excludeLibraryItems" Type="Bool">true</Property> <Property Name="Bld_excludePolymorphicVIs" Type="Bool">true</Property> <Property Name="Bld_localDestDir" Type="Path">../builds/NI_AB_PROJECTNAME/TableLogger</Property> <Property Name="Bld_localDestDirType" Type="Str">relativeToCommon</Property> <Property Name="Bld_modifyLibraryFile" Type="Bool">true</Property> <Property Name="Bld_previewCacheID" Type="Str">{B9BBCD3B-2B57-43ED-BAA1-D0ED935912FF}</Property> <Property Name="Bld_version.major" Type="Int">1</Property> <Property Name="Destination[0].destName" Type="Str">TableLogger.lvlibp</Property> <Property Name="Destination[0].path" Type="Path">../builds/NI_AB_PROJECTNAME/TableLogger/TableLogger.lvlibp</Property> <Property Name="Destination[0].preserveHierarchy" Type="Bool">true</Property> <Property Name="Destination[0].type" Type="Str">App</Property> <Property Name="Destination[1].destName" Type="Str">Support Directory</Property> <Property Name="Destination[1].path" Type="Path">../builds/NI_AB_PROJECTNAME/TableLogger</Property> <Property Name="DestinationCount" Type="Int">2</Property> <Property Name="PackedLib_callersAdapt" Type="Bool">true</Property> <Property Name="Source[0].itemID" Type="Str">{65C0E5FA-D7F9-4D83-BD19-8BBF73F1EFBB}</Property> <Property Name="Source[0].type" Type="Str">Container</Property> <Property Name="Source[1].destinationIndex" Type="Int">0</Property> <Property Name="Source[1].itemID" Type="Ref">/My Computer/LVdataToTableData.lvlib/1Table/1TableGenerateHeaders.vi</Property> <Property Name="Source[1].type" Type="Str">VI</Property> <Property Name="Source[2].destinationIndex" Type="Int">0</Property> <Property Name="Source[2].itemID" Type="Ref">/My Computer/TableLogger_Actor.lvlib</Property> <Property Name="Source[2].Library.allowMissingMembers" Type="Bool">true</Property> <Property Name="Source[2].Library.atomicCopy" Type="Bool">true</Property> <Property Name="Source[2].Library.LVLIBPtopLevel" Type="Bool">true</Property> <Property Name="Source[2].preventRename" Type="Bool">true</Property> <Property Name="Source[2].sourceInclusion" Type="Str">TopLevel</Property> <Property Name="Source[2].type" Type="Str">Library</Property> <Property Name="SourceCount" Type="Int">3</Property> <Property Name="TgtF_companyName" Type="Str">digiajay.com</Property> <Property Name="TgtF_fileDescription" Type="Str">TableLogger</Property> <Property Name="TgtF_internalName" Type="Str">TableLogger</Property> <Property Name="TgtF_legalCopyright" Type="Str">Copyright © digiajay.com</Property> <Property Name="TgtF_productName" Type="Str">TableLogger</Property> <Property Name="TgtF_targetfileGUID" Type="Str">{BB220C2F-E54F-4DAF-A9B3-B0A1004B5557}</Property> <Property Name="TgtF_targetfileName" Type="Str">TableLogger.lvlibp</Property> </Item> </Item> </Item> </Project>
LabVIEW
2
ajnavarro/language-dataset
data/github.com/digiajay/LogAnyLabVIEWdata/86e25f0ff5614e9b05e3a8b20532b3eb19ea5d8a/TableLogger.lvproj
[ "MIT" ]
module.exports = { modules: { external0: "module 0" } };
JavaScript
1
1shenxi/webpack
test/configCases/externals/non-umd-externals-umd2/test.config.js
[ "MIT" ]
#!/usr/bin/runhaskell import Data.Maybe -- given two points, returns the average of them average :: (Int, Int) -> (Int, Int) -> (Int, Int) average (x, y) (x', y') = ((x + x') `div` 2, (y + y') `div` 2) -- given a maze and a tuple of position and wall position, returns -- true if the wall position is not blocked (first position is unused) notBlocked :: [String] -> ((Int, Int), (Int, Int)) -> Bool notBlocked maze (_, (x, y)) = ' ' == (maze !! y) !! x -- given a list, a position, and an element, returns a new list -- with the new element substituted at the position -- (it seems such a function should exist in the standard library; -- I must be missing it) substitute :: [a] -> Int -> a -> [a] substitute orig pos el = let (before, after) = splitAt pos orig in before ++ [el] ++ tail after -- given a maze and a position, draw a '*' at that position in the maze draw :: [String] -> (Int, Int) -> [String] draw maze (x,y) = substitute maze y $ substitute row x '*' where row = maze !! y -- given a maze, a previous position, and a list of tuples of potential -- new positions and their wall positions, returns the solved maze, or -- None if it cannot be solved tryMoves :: [String] -> (Int, Int) -> [((Int, Int), (Int, Int))] -> Maybe [String] tryMoves _ _ [] = Nothing tryMoves maze prevPos ((newPos,wallPos):more) = case solve' maze newPos prevPos of Nothing -> tryMoves maze prevPos more Just maze' -> Just $ foldl draw maze' [newPos, wallPos] -- given a maze, a new position, and a previous position, returns -- the solved maze, or None if it cannot be solved -- (assumes goal is upper-left corner of maze) solve' :: [String] -> (Int, Int) -> (Int, Int) -> Maybe [String] solve' maze (2, 1) _ = Just maze solve' maze pos@(x, y) prevPos = let newPositions = [(x, y - 2), (x + 4, y), (x, y + 2), (x - 4, y)] notPrev pos' = pos' /= prevPos newPositions' = filter notPrev newPositions wallPositions = map (average pos) newPositions' zipped = zip newPositions' wallPositions legalMoves = filter (notBlocked maze) zipped in tryMoves maze pos legalMoves -- given a maze, returns a solved maze, or None if it cannot be solved -- (starts at lower right corner and goes to upper left corner) solve :: [String] -> Maybe [String] solve maze = solve' (draw maze start) start (-1, -1) where startx = length (head maze) - 3 starty = length maze - 2 start = (startx, starty) -- takes unsolved maze on standard input, prints solved maze on standard output main = interact main' where main' x = unlines $ fromMaybe ["can't solve"] $ solve $ lines x
Haskell
5
JavascriptID/sourcerer-app
src/test/resources/samples/langs/Haskell/maze-solving.hs
[ "MIT" ]
--TEST-- Test sleep() function : error conditions --FILE-- <?php sleep(-10); ?> --EXPECTF-- Fatal error: Uncaught ValueError: sleep(): Argument #1 ($seconds) must be greater than or equal to 0 in %s:%d Stack trace: #0 %s(%d): sleep(-10) #1 {main} thrown in %s on line %d
PHP
3
thiagooak/php-src
ext/standard/tests/general_functions/sleep_error.phpt
[ "PHP-3.01" ]
{ "config": { "abort": { "already_configured": "\u88dd\u7f6e\u5df2\u7d93\u8a2d\u5b9a\u5b8c\u6210", "already_in_progress": "\u8a2d\u5b9a\u5df2\u7d93\u9032\u884c\u4e2d" }, "error": { "connection_error": "\u9023\u7dda\u5931\u6557" }, "step": { "user": { "data": { "host": "IP \u4f4d\u5740" }, "description": "\u9023\u7dda\u81f3\u9006\u8b8a\u5668", "title": "GoodWe \u9006\u8b8a\u5668" } } } }
JSON
2
MrDelik/core
homeassistant/components/goodwe/translations/zh-Hant.json
[ "Apache-2.0" ]
print "Hello, World!"
MoonScript
0
Ayush7-BIT/sample-programs
archive/m/moonscript/hello-world.moon
[ "MIT" ]
## {$ doc.name $} ({$ doc.docType $})
HTML
0
mklemme/material2
tools/dgeni/templates/common.template.html
[ "MIT" ]
{-# OPTIONS -v treeless:20 #-} module _ where open import Common.Prelude f : List Nat → List Nat → Nat f _ [] = 0 f [] (y ∷ ys) = y f (x ∷ xs) _ = x main : IO Unit main = printNat (f [] []) ,, printNat (f (1 ∷ []) []) ,, printNat (f [] (2 ∷ [])) ,, printNat (f (3 ∷ []) (4 ∷ []))
Agda
4
shlevy/agda
test/Compiler/simple/CompileCatchAll.agda
[ "BSD-3-Clause" ]
# ASM-in-SLANG by jes # # TODO: [nice] -v "annotated hex" mode # TODO: [nice] tidy up variable names and code layout, comment stuff that's not clear include "asmparser.sl"; include "bufio.sl"; include "hash.sl"; include "stdio.sl"; include "stdlib.sl"; include "string.sl"; var asm_constant; var pc_start = 0; var asm_pc; var maxliteral = 128; var literal_buf = malloc(maxliteral); var maxidentifier = maxliteral; var IDENTIFIER = literal_buf; # reuse literal_buf for identifiers var IDENTIFIERS; var INTERN_CONST = 0xface; var code_filename; var code_fd; var code_bio; var unbounds_filename; var unbounds_fd; var unbounds_bio; var lookup = func(name) { return htgetkv(IDENTIFIERS, name); }; var store = func(name,val) { htput(IDENTIFIERS, name, val); }; # return a pointer to an existing stored copy of "name", or strdup() one if there is none var intern = func(name) { var p = htfind(IDENTIFIERS, name); if (*p) return *p; # TODO: [bug?] we abuse IDENTIFIERS as a string interning table; currently # don't think it matters because the only time we intern() a string is # when we either already have it in IDENTIFIERS, or we're about to put # it in name = strdup(name); htputp(IDENTIFIERS, p, name, INTERN_CONST); return name; }; var add_unbound = func(name,addr) { # TODO: [perf] when we buffer writes, we'll sometimes have to add_unbound() # for some address that is still in the buffer; we can just update it # in memory instead of writing it to disk bwrite(unbounds_bio, [name,addr], 2); }; var reserved = func(name) { if (strcmp(name,"x") == 0) return 1; if (strcmp(name,"y") == 0) return 1; if (strcmp(name,"sp") == 0) return 1; if (*name == 'r') { name++; while (*name) { if (!isdigit(*name)) return 0; name++; }; return 1; }; return 0; }; var Identifier = func(x) { *IDENTIFIER = peekchar(); if (!AlphaUnderChar(0)) return 0; var i = 1; while (i < maxidentifier) { *(IDENTIFIER+i) = peekchar(); if (!parse(AlphanumUnderChar,0)) { *(IDENTIFIER+i) = 0; if (reserved(IDENTIFIER)) return 0; return 1; }; i++; }; die("identifier too long",0); }; var NumLiteral = func(alphabet,base,neg) { *literal_buf = peekchar(); if (!AnyChar(alphabet)) return 0; var i = 1; while (i < maxliteral) { *(literal_buf+i) = peekchar(); if (!parse(AnyChar,alphabet)) { *(literal_buf+i) = 0; if (neg) asm_constant = -atoibase(literal_buf,base) else asm_constant = atoibase(literal_buf,base); return 1; }; i++; }; die("numeric literal too long",0); }; var HexLiteral = func(x) { if (!String("0x")) return 0; return NumLiteral("0123456789abcdefABCDEF",16,0); }; var DecimalLiteral = func(x) { var neg = peekchar() == '-'; parse(AnyChar,"+-"); return NumLiteral("0123456789",10,neg); }; var Constant = func(x) { if (parse(HexLiteral,0)) return 1; if (parse(DecimalLiteral,0)) return 1; if (!Identifier(0)) return 0; var v = lookup(IDENTIFIER); if (!v) return 0; # we don't accept identifiers equal to INTERN_CONST because they might # just be intern()'d strings rather than actual known values (but # ignoring them should normally not be a problem) if (cdr(v) == INTERN_CONST) return 0; asm_constant = cdr(v); return 1; }; I8l = func(x) { if (!Constant(0)) return 0; if (asm_constant gt 0x00ff) return 0; asm_i8 = asm_constant; return 1; }; I8h = func(x) { if (!Constant(0)) return 0; if (asm_constant lt 0xff00) return 0; asm_i8 = asm_constant & 0xff; return 1; }; I16 = func(x) { if (parse(Constant,0)) { i16_identifier = 0; asm_i16 = asm_constant; return 1; }; if (!Identifier(0)) return 0; i16_identifier = intern(IDENTIFIER); return 1; }; # "Endline" is similar to "skip" except it doesn't match if it stops before # reaching the end of the line var Endline = func(x) { while (parse(AnyChar," \t\r")); # skip over whitespace if (parse(Char,'#')) { # skip comment while (parse(NotChar,'\n')); }; if (parse(Char,'\n')) return 1; return 0; }; var set_indirection = func(val,width) { if (width == 8) { asm_i8 = val & 0xff; } else if (width == 16) { i16_identifier = 0; asm_i16 = val; } else { die("invalid indirection width: %d",[width]); }; }; # "sp" or "rN" or "(i8h)" or "(i16)" Indirection = func(width) { if (parse(String,"sp")) { set_indirection(0xffff, width); return 1; }; if (parse(Char,'r')) { if (!parse(DecimalLiteral,0)) return 0; set_indirection(0xff00 | asm_constant, width); return 1; }; if (!Char('(')) return 0; if (width == 8) { if (!parse(I8h,0)) return 0; } else if (width == 16) { if (!parse(I16,0)) return 0; } else { die("invalid indirection width: %d",[width]); }; if (!parse(Char,')')) return 0; return 1; }; IndirectionEquals = func(val) { # XXX: abuse Indirection(16) var asm_i16_bak = asm_i16; if (!Indirection(16)) return 0; if (i16_identifier || asm_i16 != val) return 0; asm_i16 = asm_i16_bak; return 1; }; var Def = func(x) { # TODO: [nice] this should maybe allow arbitrary string replacement, not just numeric constants if (!String(".d")) return 0; String("ef"); # allow ".def" skip(); if (!Identifier(0)) die(".def needs identifier",0); # we strdup() rather than intern() because names ought to be unique anyway var name = strdup(IDENTIFIER); skip(); if (!Constant(0)) die(".def needs constant",0); store(name,asm_constant); return 1; }; var At = func(x) { if (!String(".at")) return 0; skip(); if (!Constant(0)) die(".at needs constant",0); skip(); var at = asm_constant; if (at lt asm_pc) die(".at %d but we're already at %d",[at,asm_pc]); if (asm_pc == 0) { pc_start = at; asm_pc = at; } else { while (asm_pc != at) { emit(0); }; }; return 1; }; var Gap = func(x) { if (!String(".g")) return 0; String("ap"); # allow ".gap" skip(); if (!Constant(0)) die(".gap needs constant",0); skip(); while (asm_constant--) emit(0); return 1; }; var escapedchar = func(ch) { if (ch == 'r') return '\r'; if (ch == 'n') return '\n'; if (ch == 't') return '\t'; if (ch == '0') return '\0'; if (ch == ']') return '\]'; return ch; }; var Str = func(x) { if (!String(".str")) return 0; skip(); if (!Char('"')) return 0; while (1) { if (parse(Char,'"')) { skip(); return 1; }; if (parse(Char,'\\')) { emit(escapedchar(nextchar())); } else { emit(nextchar()); }; }; }; var Word = func(x) { if (!String(".w")) return 0; String("ord"); # allow ".word" skip(); if (!I16(0)) return 0; skip(); emit_i16(); return 1; }; var emitblob = func(name) { var fd = open(name, O_READ); if (fd < 0) die("open %s: %s", [name, strerror(fd)]); # TODO: [perf] instead of emitting the blob to code_bio now, just remember # how long it is and what address we need to put it at, and output # it during resolve_unbounds() var bufsz = 1016; var buf = malloc(bufsz); var n; var p; while (1) { n = read(fd, buf, bufsz); if (n == 0) break; if (n < 0) die("read %s: %s", [name, strerror(fd)]); if (bwrite(code_bio, buf, n) != n) die("write() didn't write enough",0); if ((asm_pc + n) lt asm_pc) die(".blob %s: overflows address space", [name]); asm_pc = asm_pc + n; }; free(buf); }; var Blob = func(x) { if (!String(".blob")) return 0; skip(); if (parse(AnyChar," \t\r\n")) return 0; *IDENTIFIER = nextchar(); var i = 1; while (i < maxidentifier) { if (parse(AnyChar," \t\r\n")) { *(IDENTIFIER+i) = 0; # TODO: [perf] instead of emitting the blob now, since we know it # doesn't contain any labels, we could just remember the name # of it and the current asm_pc, and emit it during the 2nd # pass, to save time writing it out and reading it in again emitblob(IDENTIFIER); skip(); return 1; }; *(IDENTIFIER+i) = nextchar(); i++; }; die("blob name too long",0); }; var Label = func(x) { if (!Identifier(0)) return 0; skip(); if (!CharSkip(':')) return 0; # we strdup() rather than intern() because labels ought to be unique anyway store(strdup(IDENTIFIER), asm_pc); return 1; }; var Assembly = func(x) { while (1) { skip(); if (peekchar() == '.') { if (parse(Def,0)) continue; if (parse(At,0)) continue; if (parse(Gap,0)) continue; if (parse(Str,0)) continue; if (parse(Word,0)) continue; if (parse(Blob,0)) continue; } else { if (parse(Label,0)) continue; if (parse(Instr,0)) continue; }; return 1; }; }; Instr_args = func(v) { var emit_val = v[0]; v++; var f; var arg; while (*v) { f = *(v++); arg = *(v++); if (!f(arg)) return 0; }; if (!Endline(0)) return 0; skip(); if (emit_val & 1) emit(opcode | asm_i8) else emit(opcode); if (emit_val & 2) emit_i16(); return 1; }; Instr_anyargs = func(v) { var name = *(v++); if (!String(name)) return 0; if (parse(NotAnyChar," \t\r\n")) return 0; while(parse(AnyChar," \t\r")); while (*v) { opcode = *(v+1); if (parse(Instr_args,*v)) return 1; v = v + 2; }; die("illegal %s instruction", [name]); }; emit = func(v) { bputc(code_bio, v); asm_pc++; if (asm_pc == 0) die("address space overflows",0); }; emit_i16 = func() { var v; if (i16_identifier) { add_unbound(i16_identifier, asm_pc); emit(0); } else { emit(asm_i16); }; }; # read code from "code_filename", resolve unbound names using "unbounds_bio", and # write resulting code to stdout var resolve_unbounds = func() { # "unbounds" are created in-order, so we can just read one at a time and get # the next every time we reach the address of the next unbound var name; var addr = -1; var v; var val; name = bgetc(unbounds_bio); addr = bgetc(unbounds_bio); var fd = open(code_filename, O_READ); if (fd < 0) die("open %s: %s", [code_filename, strerror(fd)]); var code = malloc(254); var n; var pc = pc_start; while (1) { # 1. read a block of code n = read(fd, code, 254); fputc(2, '.'); if (n < 0) die("read code: %s", [strerror(n)]); if (n == 0) break; # 2. while next unbound addr lies within the block: while (addr lt pc+n) { # 3. replace the unbound v = lookup(name); if (!v) die("unrecognised name %s at addr 0x%x", [name, addr]); *(code+addr-pc) = cdr(v); # 4. grab the next unbound name = bgetc(unbounds_bio); addr = bgetc(unbounds_bio); }; pc = pc + n; # 5. write the block of code n = write(1, code, n); if (n <= 0) die("write code: %s", [strerror(n)]); }; fputc(2, '\n'); close(fd); free(code); }; IDENTIFIERS = htnew(); #code_filename = strdup(tmpnam()); code_filename = "/tmp/asm-1stpass"; code_fd = open(code_filename, O_WRITE|O_CREAT); if (code_fd < 0) die("open %s: %s", [code_filename, strerror(code_fd)]); code_bio = bfdopen(code_fd, O_WRITE); unbounds_filename = strdup(tmpnam()); unbounds_fd = open(unbounds_filename, O_WRITE|O_CREAT); if (unbounds_fd < 0) die("open %s: %s", [unbounds_filename, strerror(unbounds_fd)]); unbounds_bio = bfdopen(unbounds_fd, O_WRITE); fprintf(2, "1st pass...\n", 0); var inbuf = bfdopen(0, O_READ); var charcount = 0; parse_init(func() { charcount++; if ((charcount & 0x3ff) == 0) fputc(2, '.'); return bgetc(inbuf); }); parse(Assembly,0); if (nextchar() != EOF) die("garbage after end",0); bclose(code_bio); # reopen unbounds file for reading bclose(unbounds_bio); unbounds_fd = open(unbounds_filename, O_READ); if (unbounds_fd < 0) die("open %s: %s", [unbounds_filename, strerror(unbounds_fd)]); unbounds_bio = bfdopen(unbounds_fd, O_READ); fputc(2, '\n'); fprintf(2, "2nd pass...\n", 0); resolve_unbounds(); #unlink(code_filename); bclose(unbounds_bio); unlink(unbounds_filename);
Slash
5
jes/scamp-cpu
sys/asm.sl
[ "Unlicense" ]
sleep 1 t gpio 37 sw out0 sleep 1 t gpio 37 sw out1 sleep 1 t gpio 46 sw out1 sleep 1 t gpio 46 sw out0 d:\autoexec.ash reboot yes
AGS Script
2
waltersgrey/autoexechack
Hero3White/BackLEDBlink/autoexec.ash
[ "MIT" ]
/* Example UPC code (using UPC keywords to test use of UPC with C++) */ /* Example UPC variable declaration */ shared int* integer; // DQ (9/19/2010): Enable this when testing use of UPC with C++ (UPC++) #ifdef ROSE_USE_NEW_EDG_INTERFACE // FIXME: This doesn't work yet struct A #else class A #endif { int x; }; int main() { // int x = MYTHREAD; return 0; }
Unified Parallel C
3
maurizioabba/rose
tests/CompileTests/UPC_tests/test2004_22.upc
[ "BSD-3-Clause" ]
/* * Copyright (c) 2021, Sam Atkins <[email protected]> * * SPDX-License-Identifier: BSD-2-Clause */ #include <LibWeb/CSS/PreferredColorScheme.h> namespace Web::CSS { PreferredColorScheme preferred_color_scheme_from_string(String const& value) { if (value.equals_ignoring_case("light")) return PreferredColorScheme::Light; if (value.equals_ignoring_case("dark")) return PreferredColorScheme::Dark; return PreferredColorScheme::Auto; } StringView preferred_color_scheme_to_string(PreferredColorScheme value) { switch (value) { case PreferredColorScheme::Light: return "light"sv; case PreferredColorScheme::Dark: return "dark"sv; case PreferredColorScheme::Auto: return "auto"sv; } VERIFY_NOT_REACHED(); } }
C++
5
r00ster91/serenity
Userland/Libraries/LibWeb/CSS/PreferredColorScheme.cpp
[ "BSD-2-Clause" ]
% Preserve all formatting and comments exept identifier replacement #pragma -char -comment -width 32767 include "java.grm" redefine program [repeat line] [repeat lineitem] % Some files don't have a final newline end define define line [repeat lineitem] [newline] end define define lineitem [comment] | [space] | [key] | [id] | [primitive_type] | [not newline] [token] end define function main replace [program] P [program] by P [renamePrimitives] end function rule renamePrimitives replace $ [primitive_type] k [primitive_type] by 'X end rule
TXL
3
pseudoPixels/SourceFlow
txl_features/txl_features/java/blindRenamePrimitives.txl
[ "MIT" ]
<style type="text/css"> body { font-familyArial: Arial; color: #304a55; font-size: 12px; } </style>
Latte
3
timfel/netbeans
php/php.latte/test/unit/data/testfiles/lexer/top/testIssue231475_NoSpaceAtCssTokenStart.latte
[ "Apache-2.0" ]
{ "config": { "abort": { "already_configured": "Enheten er allerede konfigurert", "connection_aborted": "Tilkobling mislyktes", "unknown": "Uventet feil" }, "error": { "invalid_sgtin_or_pin": "Ugyldig SGTIN eller PIN kode , pr\u00f8v igjen.", "press_the_button": "Vennligst trykk p\u00e5 den bl\u00e5 knappen.", "register_failed": "Kunne ikke registrere, vennligst pr\u00f8v igjen.", "timeout_button": "Bl\u00e5 knapp-trykk tok for lang tid, vennligst pr\u00f8v igjen." }, "step": { "init": { "data": { "hapid": "Tilgangspunkt ID (SGTIN)", "name": "Navn (valgfritt, brukes som navneprefiks for alle enheter)", "pin": "PIN kode" }, "title": "Velg HomematicIP tilgangspunkt" }, "link": { "description": "Trykk p\u00e5 den bl\u00e5 knappen p\u00e5 tilgangspunktet og p\u00e5 send knappen for \u00e5 registrere HomematicIP med Home Assistant. \n\n![Plassering av knapp p\u00e5 bridge](/static/images/config_flows/config_homematicip_cloud.png)", "title": "Link tilgangspunkt" } } } }
JSON
4
tbarbette/core
homeassistant/components/homematicip_cloud/translations/no.json
[ "Apache-2.0" ]
"""Tests for the Vera component."""
Python
0
domwillcode/home-assistant
tests/components/vera/__init__.py
[ "Apache-2.0" ]
pub main coginit(0, @entry, 0) dat org 0 entry _onezero mov result1, #1 _onezero_ret ret _multizero mov result3, #1 mov result1, #0 mov result2, #0 _multizero_ret ret result1 long 0 result2 long 0 result3 long 0 COG_BSS_START fit 496 org COG_BSS_START fit 496
Parrot Assembly
1
archivest/spin2cpp
Test/Expect/stest187.pasm
[ "MIT" ]
package org.openapitools.model import io.micronaut.test.extensions.spock.annotation.MicronautTest import spock.lang.Specification import jakarta.inject.Inject /** * Model tests for EnumClass */ @MicronautTest public class EnumClassSpec extends Specification { /** * Model tests for EnumClass */ void "EnumClass test"() { // TODO: test EnumClass } }
Groovy
3
JigarJoshi/openapi-generator
samples/client/petstore/java-micronaut-client/src/test/groovy/org/openapitools/model/EnumClassSpec.groovy
[ "Apache-2.0" ]
<?xml version="1.0" encoding="ISO-8859-1"?> <!--Copyright (c) 2011 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. --> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:import href="nosuchfileatall"/> <xsl:template match="/"> <xsl:apply-imports/> </xsl:template> </xsl:stylesheet>
XSLT
3
zealoussnow/chromium
content/test/data/webkit/resources/xslt-bad-import-uri.xsl
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
Emacs connection 'use strict' define ['lodash', './ui', './editor', './editorSupport', './diag', './eval', './advice'], (_, UI, Editor, EditorSupport, Diag, Eval, Advice)-> { preserveSelection computeNewStructure } = Editor { changeAdvice } = Advice { showMessage pushPendingInitialzation escapeAttr localResources } = UI { getDocumentParams basicDataFilter fileTypes makeBlobUrl } = EditorSupport { clearDiag diagMessage } = Diag { knownLanguages escapeString unescapeString } = Eval msgPat = /^([^ ]+)( (.*))?$/ replaceMsgPat = /^([^ ]+) ([^ ]+) ([^ ]+) (.*)$/ connected = false showDiag = false #showDiag = true imgCount = 0 fileCount = 0 diag = (msg...)-> if showDiag then console.log msg... messages = r: (data, msg, frame)-> replace data, msg reload: -> document.location.href = document.location.href activate: -> window.open "javascript:close()" window.focus() file: (data, msg, frame)-> receiveFile data, msg replace = (data, msg)-> diag "Received #{msg}" [ignore, count, start, end, text] = msg.match replaceMsgPat start = Number start end = Number end text = JSON.parse text editor = data.emacsConnection.opts.editor context = {start, end, text, source: 'emacs'} replaceWhile start, end, text, data, (repl)-> if end == -1 context.start = 0 context.end = data.getLength() editor.options.load 'emacs', text, context else targetLen = data.getDocLength() - (end - start) + text.length editor.options.replaceText context receiveFile = (data, msg)-> [lead, id] = msg.match /^([^ ]+) +/ data.emacsConnection.fileCallbacks[id]?(msg.substring lead.length) delete data.emacsConnection.fileCallbacks[id] replaceWhile = (start, end, text, data, func)-> if end == -1 blocks = [] newText = text else {blocks, newText} = data.blockOverlapsForReplacement(start, end, text) repl = computeNewStructure data, blocks, newText repl.changeId = "emacs-#{data.emacsConnection.changeCount++}" repl.emacsNewBlocks = repl.newBlocks.slice() repl.blockOffset = if blocks.length then data.offsetForBlock blocks[0] else 0 data.emacsConnection.replacing = repl data.emacsConnection.opts.mergeChangeContext fromEmacs: repl.changeId data.emacsConnection.pendingChanges[repl.changeId] = repl try func repl finally data.emacsConnection.replacing = null shouldSendConcurrent = (data, newBlock)-> if newBlock repl = data.emacsConnection.replacing currentBlock = _.find repl.newBlocks, (b)-> b._id == newBlock._id currentBlock && currentBlock.text != newBlock.text sendConcurrentBlockChange = (data, newBlock)-> repl = data.emacsConnection.replacing ind = _.findIndex repl.newBlocks, (x)-> x._id = newBlock currentNew = repl.emacsNewBlocks[ind] if currentNew.text != newBlock.text offset = 0 oldLen = currentNew.text.length repl.emacsNewBlocks[ind] = newBlock while ind-- > 0 offset += repl.emacsNewBlocks[ind] start = offset + repl.blockOffset sendReplace data.emacsConnection.websocket, start, start + oldLen, newBlock.text connect = (opts, host, port, cookie, cont)-> con = new WebSocket "ws://#{host}:#{port}" con.onopen = (evt)-> open evt, con, opts, port, cookie, cont con.onclose = (evt)-> close evt, opts.data con.onmessage = (evt)-> message evt, opts.data con.onerror = (evt)-> showMessage opts.editor.node, "Connection error", "Could not open connection to emacs", position: my: 'center top', at: 'center top' buttons: OK: -> $(this).dialog 'close' configureOpts = (opts)-> data = opts.data if !data.emacsConnection.websocket then return editor = opts.editor changeAdvice opts, true, followLink: emacs: (parent)->(e)-> if e.target.href.match /^elisp/ sendFollowLink data.emacsConnection.websocket, editor.docOffset($(e.target).prev('.link')[0], 1) false else parent e execute: emacs: (parent)->-> if editor.blockForCaret()?.language.toLowerCase() of knownLanguages parent() else sendCcCc data.emacsConnection.websocket, editor.docOffset(editor.domCursorForCaret()) changeAdvice editor, true, activateScripts: emacs: (parent)->(el, context, data, block)-> ret = parent el, context, data, block for img in $(el).find 'img' src = img.getAttribute 'src' if !src.match '^.*:.*' name = src.match(/([^#?]*)([#?].*)?$/)?[1] src = "file:#{src}" else name = src.match(/^file:([^#?]*)([#?].*)?$/)?[1] if name if !img.id then img.id = "emacs-image-#{imgCount++}" img.src = '' fetchImage opts.data.emacsConnection, img.id, src ret fetchImage = (con, imgId, src)-> if con && img = $("##{imgId}")[0] if data = localResources[src] if data instanceof Promise then data.then (data)-> replaceImage con, img, src, data else preserveSelection (range)-> replaceImage con, img, src, data else localResources[src] = new Promise (resolve, reject)-> sendGetFile con, src, (file)-> if file data = localResources[src] = makeBlobUrl atob(file), typeForFile src preserveSelection (range)-> replaceImage con, img, src, data resolve data else reject null replaceImage = (con, img, src, data)-> setTimeout (-> img.src = data #img.onload = -> ), 0 typeForFile = (name)-> [ignore,ext] = name.match /\.([^#.]*)(#.*)?$/ fileTypes[ext] close = (evt, data)-> console.log "CLOSED EMACS CONNECTION" connection = data.emacsConnection connection.panel.find('button').button 'enable' connection.panel.find('input').removeAttr 'readonly' if connection.cookie then window.close() data.removeFilter connection.filter connection.websocket = null connection.filter = null message = (evt, data)-> [ignore, msg, ignore, text] = evt.data.match msgPat if method = messages[msg] then preserveSelection => method data, text, evt.data else console.log "Unknown message #{msg}: #{text}" data.emacsConnection.websocket.close() error = (evt, data)-> console.log "Error: #{evt.data}" open = (evt, ws, opts, port, cookie, cont)-> data = opts.data ws.send "#{cookie ? ''} display" connection = data.emacsConnection connection.cookie = cookie connection.panel.find('button').button 'disable' connection.panel.find('input').attr 'readonly', true connection.websocket = ws connection.filter = __proto__: basicDataFilter replaceText: (data, {start, end, text, source})-> if source != 'emacs' sendReplace ws, start, end, text data.addFilter connection.filter if !cookie then sendReplace ws, 0, -1, data.getText() changeAdvice opts.data, true, getFile: emacs: (parent)->(file, cont, fail)-> p = new Promise (success, failure)=> sendGetFile @emacsConnection, "file:#{file}", (contents)-> if contents then success atob(contents) else failure "No such file: #{file}" if cont || fail then p.then cont, fail else p configureOpts opts cont?() sendReplace = (con, start, end, text)-> con.send "r #{start} #{end} #{JSON.stringify text}" diag "sending r #{start} #{end} #{JSON.stringify text}" sendFollowLink = (con, location)-> con.send "followLink #{location}" diag "sending followLink #{location}" sendCcCc = (con, location)-> con.send "ctrl-c-ctrl-c #{location}" diag "sending ctrl-c-ctrl-c #{location}" sendGetFile = (con, name, callback)-> webSocket = con.websocket if m = name.match /#.*$/ name = name.substring 0, name.length - m[0].length id = "file-#{fileCount++}" diag "sending getFile #{id} #{name}" con.fileCallbacks[id] = (file)-> delete con.fileCallbacks[id] callback file webSocket.send "getFile #{id} #{name}" blockRangeFor = (data, start, end)-> bOff = data.blockOffsetForDocOffset start bOff.block = data.getBlock bOff.block bOff.length = end - start bOff.type = if start == end then 'Caret' else 'Range' bOff configureEmacs = (panel)-> opts = UI.context.opts data = opts.data data.emacsConnection = panel: panel opts: UI.context.opts fileCallbacks: {} changeCount: 0 pendingChanges: {} panel.find('button').button().on 'click', -> [host, port] = panel.find('input').val().split(':') connect opts, host, Number(port), '', -> $(document).ready -> if document.location.search.length > 1 && !connected connected = true {connect:con} = getDocumentParams() if con u = new URL con if u.protocol == 'emacs:' && m = u.pathname.match /^\/\/([^:]*)(:[^\/]*)(\/.*)$/ [ignore, host, port, cookie] = m connect opts, host, port.substring(1), cookie.substring(1) Object.assign Leisure, { blockRangeFor configureEmacs configureEmacsOpts: configureOpts } { }
Literate CoffeeScript
4
zot/Leisure
src/emacs.litcoffee
[ "Zlib" ]
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import { publishRepository } from './publish'; import { API as GitAPI, RemoteSourcePublisher, Repository } from './typings/git'; export class GithubRemoteSourcePublisher implements RemoteSourcePublisher { readonly name = 'GitHub'; readonly icon = 'github'; constructor(private gitAPI: GitAPI) { } publishRepository(repository: Repository): Promise<void> { return publishRepository(this.gitAPI, repository); } }
TypeScript
4
sbj42/vscode
extensions/github/src/remoteSourcePublisher.ts
[ "MIT" ]
/****************************************************************************** * Copyright 2019 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ #pragma once #include <iostream> #include <list> #include <map> #include <vector> #include "modules/perception/tool/benchmark/lidar/util/object.h" namespace apollo { namespace perception { namespace benchmark { template <typename ObjectKey> using SequenceType = std::map<ObjectKey, ObjectPtr>; template <typename ObjectKey> class SequenceMaintainer { public: SequenceMaintainer() = default; ~SequenceMaintainer() = default; bool add_data(const std::vector<ObjectPtr>& objects, ObjectKey key); auto get_sequence(int sequence_id) -> SequenceType<ObjectKey>*; void clear() { _sequence.clear(); } protected: std::map<int, SequenceType<ObjectKey>> _sequence; private: static const std::size_t _s_max_sample_num = 10; static constexpr double _s_max_lift_time = 10.0; }; template <typename ObjectKey> bool SequenceMaintainer<ObjectKey>::add_data( const std::vector<ObjectPtr>& objects, ObjectKey key) { for (const auto& obj : objects) { auto& id = obj->track_id; if (_sequence.size() > 0 && _sequence.begin()->first > id) { std::cerr << "Find track_id roll back, so clear the cache sequence, " << "current id " << id << " oldest id " << _sequence.begin()->first << "." << std::endl; _sequence.clear(); } auto& sub = _sequence[id]; if (sub.size() > 0 && sub.rbegin()->first >= key) { // std::cerr << "New added key can not be less than old key, " // << key << " to be added but " << sub.rbegin()->first << " exist." // << std::endl; return false; } sub[key] = obj; auto iter = sub.begin(); while (sub.size() > _s_max_sample_num) { sub.erase(iter++); } } auto iter = _sequence.begin(); while (iter != _sequence.end()) { if (iter->second.empty() || static_cast<double>(key - iter->second.rbegin()->first) > _s_max_lift_time) { _sequence.erase(iter++); } else { ++iter; } } return true; } template <typename ObjectKey> auto SequenceMaintainer<ObjectKey>::get_sequence(int sequence_id) -> SequenceType<ObjectKey>* { auto iter = _sequence.find(sequence_id); if (iter == _sequence.end()) { return nullptr; } else { return &(iter->second); } } } // namespace benchmark } // namespace perception } // namespace apollo
C
4
seeclong/apollo
modules/perception/tool/benchmark/lidar/base/sequence_maintainer.h
[ "Apache-2.0" ]
/*############################################################################## HPCC SYSTEMS software Copyright (C) 2012 HPCC Systems®. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ############################################################################## */ /* Demo hql file using the CSV stuff to summarise my account transactions.... */ accountRecord := RECORD string10 strDate; string40 category; real8 credit; decimal8_2 debit; END; accountTable := dataset('gavin::account',accountRecord,CSV); accountRecord cleanCategory(accountRecord l) := TRANSFORM SELF.category := l.category[1..LENGTH(TRIM(l.category))-1]; SELF := l; END; cleaned := project(accountTable, cleanCategory(LEFT)); summaryTable := table(cleaned, { value := SUM(group,credit) - SUM(group,debit), cnt := COUNT(GROUP), category}, category); sortedSummary := sort(summaryTable, -value); output(sortedSummary,,'gavin::x::summary',CSV(TERMINATOR('\r\n')));
ECL
4
miguelvazq/HPCC-Platform
ecl/regress/summary.ecl
[ "Apache-2.0" ]
// Code generated by avx512test. DO NOT EDIT. #include "../../../../../../runtime/textflag.h" TEXT asmtest_avx512_vbmi(SB), NOSPLIT, $0 VPERMB X26, X20, K1, X23 // 62825d018dfa VPERMB X19, X20, K1, X23 // 62a25d018dfb VPERMB X0, X20, K1, X23 // 62e25d018df8 VPERMB 7(SI)(DI*4), X20, K1, X23 // 62e25d018dbcbe07000000 VPERMB -7(DI)(R8*2), X20, K1, X23 // 62a25d018dbc47f9ffffff VPERMB X26, X2, K1, X23 // 62826d098dfa VPERMB X19, X2, K1, X23 // 62a26d098dfb VPERMB X0, X2, K1, X23 // 62e26d098df8 VPERMB 7(SI)(DI*4), X2, K1, X23 // 62e26d098dbcbe07000000 VPERMB -7(DI)(R8*2), X2, K1, X23 // 62a26d098dbc47f9ffffff VPERMB X26, X9, K1, X23 // 628235098dfa VPERMB X19, X9, K1, X23 // 62a235098dfb VPERMB X0, X9, K1, X23 // 62e235098df8 VPERMB 7(SI)(DI*4), X9, K1, X23 // 62e235098dbcbe07000000 VPERMB -7(DI)(R8*2), X9, K1, X23 // 62a235098dbc47f9ffffff VPERMB X26, X20, K1, X30 // 62025d018df2 VPERMB X19, X20, K1, X30 // 62225d018df3 VPERMB X0, X20, K1, X30 // 62625d018df0 VPERMB 7(SI)(DI*4), X20, K1, X30 // 62625d018db4be07000000 VPERMB -7(DI)(R8*2), X20, K1, X30 // 62225d018db447f9ffffff VPERMB X26, X2, K1, X30 // 62026d098df2 VPERMB X19, X2, K1, X30 // 62226d098df3 VPERMB X0, X2, K1, X30 // 62626d098df0 VPERMB 7(SI)(DI*4), X2, K1, X30 // 62626d098db4be07000000 VPERMB -7(DI)(R8*2), X2, K1, X30 // 62226d098db447f9ffffff VPERMB X26, X9, K1, X30 // 620235098df2 VPERMB X19, X9, K1, X30 // 622235098df3 VPERMB X0, X9, K1, X30 // 626235098df0 VPERMB 7(SI)(DI*4), X9, K1, X30 // 626235098db4be07000000 VPERMB -7(DI)(R8*2), X9, K1, X30 // 622235098db447f9ffffff VPERMB X26, X20, K1, X8 // 62125d018dc2 VPERMB X19, X20, K1, X8 // 62325d018dc3 VPERMB X0, X20, K1, X8 // 62725d018dc0 VPERMB 7(SI)(DI*4), X20, K1, X8 // 62725d018d84be07000000 VPERMB -7(DI)(R8*2), X20, K1, X8 // 62325d018d8447f9ffffff VPERMB X26, X2, K1, X8 // 62126d098dc2 VPERMB X19, X2, K1, X8 // 62326d098dc3 VPERMB X0, X2, K1, X8 // 62726d098dc0 VPERMB 7(SI)(DI*4), X2, K1, X8 // 62726d098d84be07000000 VPERMB -7(DI)(R8*2), X2, K1, X8 // 62326d098d8447f9ffffff VPERMB X26, X9, K1, X8 // 621235098dc2 VPERMB X19, X9, K1, X8 // 623235098dc3 VPERMB X0, X9, K1, X8 // 627235098dc0 VPERMB 7(SI)(DI*4), X9, K1, X8 // 627235098d84be07000000 VPERMB -7(DI)(R8*2), X9, K1, X8 // 623235098d8447f9ffffff VPERMB Y5, Y31, K7, Y22 // 62e205278df5 VPERMB Y19, Y31, K7, Y22 // 62a205278df3 VPERMB Y31, Y31, K7, Y22 // 628205278df7 VPERMB 17(SP)(BP*1), Y31, K7, Y22 // 62e205278db42c11000000 VPERMB -7(CX)(DX*8), Y31, K7, Y22 // 62e205278db4d1f9ffffff VPERMB Y5, Y5, K7, Y22 // 62e2552f8df5 VPERMB Y19, Y5, K7, Y22 // 62a2552f8df3 VPERMB Y31, Y5, K7, Y22 // 6282552f8df7 VPERMB 17(SP)(BP*1), Y5, K7, Y22 // 62e2552f8db42c11000000 VPERMB -7(CX)(DX*8), Y5, K7, Y22 // 62e2552f8db4d1f9ffffff VPERMB Y5, Y0, K7, Y22 // 62e27d2f8df5 VPERMB Y19, Y0, K7, Y22 // 62a27d2f8df3 VPERMB Y31, Y0, K7, Y22 // 62827d2f8df7 VPERMB 17(SP)(BP*1), Y0, K7, Y22 // 62e27d2f8db42c11000000 VPERMB -7(CX)(DX*8), Y0, K7, Y22 // 62e27d2f8db4d1f9ffffff VPERMB Y5, Y31, K7, Y9 // 627205278dcd VPERMB Y19, Y31, K7, Y9 // 623205278dcb VPERMB Y31, Y31, K7, Y9 // 621205278dcf VPERMB 17(SP)(BP*1), Y31, K7, Y9 // 627205278d8c2c11000000 VPERMB -7(CX)(DX*8), Y31, K7, Y9 // 627205278d8cd1f9ffffff VPERMB Y5, Y5, K7, Y9 // 6272552f8dcd VPERMB Y19, Y5, K7, Y9 // 6232552f8dcb VPERMB Y31, Y5, K7, Y9 // 6212552f8dcf VPERMB 17(SP)(BP*1), Y5, K7, Y9 // 6272552f8d8c2c11000000 VPERMB -7(CX)(DX*8), Y5, K7, Y9 // 6272552f8d8cd1f9ffffff VPERMB Y5, Y0, K7, Y9 // 62727d2f8dcd VPERMB Y19, Y0, K7, Y9 // 62327d2f8dcb VPERMB Y31, Y0, K7, Y9 // 62127d2f8dcf VPERMB 17(SP)(BP*1), Y0, K7, Y9 // 62727d2f8d8c2c11000000 VPERMB -7(CX)(DX*8), Y0, K7, Y9 // 62727d2f8d8cd1f9ffffff VPERMB Y5, Y31, K7, Y23 // 62e205278dfd VPERMB Y19, Y31, K7, Y23 // 62a205278dfb VPERMB Y31, Y31, K7, Y23 // 628205278dff VPERMB 17(SP)(BP*1), Y31, K7, Y23 // 62e205278dbc2c11000000 VPERMB -7(CX)(DX*8), Y31, K7, Y23 // 62e205278dbcd1f9ffffff VPERMB Y5, Y5, K7, Y23 // 62e2552f8dfd VPERMB Y19, Y5, K7, Y23 // 62a2552f8dfb VPERMB Y31, Y5, K7, Y23 // 6282552f8dff VPERMB 17(SP)(BP*1), Y5, K7, Y23 // 62e2552f8dbc2c11000000 VPERMB -7(CX)(DX*8), Y5, K7, Y23 // 62e2552f8dbcd1f9ffffff VPERMB Y5, Y0, K7, Y23 // 62e27d2f8dfd VPERMB Y19, Y0, K7, Y23 // 62a27d2f8dfb VPERMB Y31, Y0, K7, Y23 // 62827d2f8dff VPERMB 17(SP)(BP*1), Y0, K7, Y23 // 62e27d2f8dbc2c11000000 VPERMB -7(CX)(DX*8), Y0, K7, Y23 // 62e27d2f8dbcd1f9ffffff VPERMB Z3, Z8, K1, Z3 // 62f23d498ddb VPERMB Z27, Z8, K1, Z3 // 62923d498ddb VPERMB 7(AX), Z8, K1, Z3 // 62f23d498d9807000000 VPERMB (DI), Z8, K1, Z3 // 62f23d498d1f VPERMB Z3, Z2, K1, Z3 // 62f26d498ddb VPERMB Z27, Z2, K1, Z3 // 62926d498ddb VPERMB 7(AX), Z2, K1, Z3 // 62f26d498d9807000000 VPERMB (DI), Z2, K1, Z3 // 62f26d498d1f VPERMB Z3, Z8, K1, Z21 // 62e23d498deb VPERMB Z27, Z8, K1, Z21 // 62823d498deb VPERMB 7(AX), Z8, K1, Z21 // 62e23d498da807000000 VPERMB (DI), Z8, K1, Z21 // 62e23d498d2f VPERMB Z3, Z2, K1, Z21 // 62e26d498deb VPERMB Z27, Z2, K1, Z21 // 62826d498deb VPERMB 7(AX), Z2, K1, Z21 // 62e26d498da807000000 VPERMB (DI), Z2, K1, Z21 // 62e26d498d2f VPERMI2B X15, X8, K7, X31 // 62423d0f75ff VPERMI2B X0, X8, K7, X31 // 62623d0f75f8 VPERMI2B X16, X8, K7, X31 // 62223d0f75f8 VPERMI2B 17(SP), X8, K7, X31 // 62623d0f75bc2411000000 VPERMI2B -17(BP)(SI*4), X8, K7, X31 // 62623d0f75bcb5efffffff VPERMI2B X15, X1, K7, X31 // 6242750f75ff VPERMI2B X0, X1, K7, X31 // 6262750f75f8 VPERMI2B X16, X1, K7, X31 // 6222750f75f8 VPERMI2B 17(SP), X1, K7, X31 // 6262750f75bc2411000000 VPERMI2B -17(BP)(SI*4), X1, K7, X31 // 6262750f75bcb5efffffff VPERMI2B X15, X0, K7, X31 // 62427d0f75ff VPERMI2B X0, X0, K7, X31 // 62627d0f75f8 VPERMI2B X16, X0, K7, X31 // 62227d0f75f8 VPERMI2B 17(SP), X0, K7, X31 // 62627d0f75bc2411000000 VPERMI2B -17(BP)(SI*4), X0, K7, X31 // 62627d0f75bcb5efffffff VPERMI2B X15, X8, K7, X16 // 62c23d0f75c7 VPERMI2B X0, X8, K7, X16 // 62e23d0f75c0 VPERMI2B X16, X8, K7, X16 // 62a23d0f75c0 VPERMI2B 17(SP), X8, K7, X16 // 62e23d0f75842411000000 VPERMI2B -17(BP)(SI*4), X8, K7, X16 // 62e23d0f7584b5efffffff VPERMI2B X15, X1, K7, X16 // 62c2750f75c7 VPERMI2B X0, X1, K7, X16 // 62e2750f75c0 VPERMI2B X16, X1, K7, X16 // 62a2750f75c0 VPERMI2B 17(SP), X1, K7, X16 // 62e2750f75842411000000 VPERMI2B -17(BP)(SI*4), X1, K7, X16 // 62e2750f7584b5efffffff VPERMI2B X15, X0, K7, X16 // 62c27d0f75c7 VPERMI2B X0, X0, K7, X16 // 62e27d0f75c0 VPERMI2B X16, X0, K7, X16 // 62a27d0f75c0 VPERMI2B 17(SP), X0, K7, X16 // 62e27d0f75842411000000 VPERMI2B -17(BP)(SI*4), X0, K7, X16 // 62e27d0f7584b5efffffff VPERMI2B X15, X8, K7, X7 // 62d23d0f75ff VPERMI2B X0, X8, K7, X7 // 62f23d0f75f8 VPERMI2B X16, X8, K7, X7 // 62b23d0f75f8 VPERMI2B 17(SP), X8, K7, X7 // 62f23d0f75bc2411000000 VPERMI2B -17(BP)(SI*4), X8, K7, X7 // 62f23d0f75bcb5efffffff VPERMI2B X15, X1, K7, X7 // 62d2750f75ff VPERMI2B X0, X1, K7, X7 // 62f2750f75f8 VPERMI2B X16, X1, K7, X7 // 62b2750f75f8 VPERMI2B 17(SP), X1, K7, X7 // 62f2750f75bc2411000000 VPERMI2B -17(BP)(SI*4), X1, K7, X7 // 62f2750f75bcb5efffffff VPERMI2B X15, X0, K7, X7 // 62d27d0f75ff VPERMI2B X0, X0, K7, X7 // 62f27d0f75f8 VPERMI2B X16, X0, K7, X7 // 62b27d0f75f8 VPERMI2B 17(SP), X0, K7, X7 // 62f27d0f75bc2411000000 VPERMI2B -17(BP)(SI*4), X0, K7, X7 // 62f27d0f75bcb5efffffff VPERMI2B Y18, Y15, K2, Y2 // 62b2052a75d2 VPERMI2B Y24, Y15, K2, Y2 // 6292052a75d0 VPERMI2B Y9, Y15, K2, Y2 // 62d2052a75d1 VPERMI2B 15(R8)(R14*1), Y15, K2, Y2 // 6292052a7594300f000000 VPERMI2B 15(R8)(R14*2), Y15, K2, Y2 // 6292052a7594700f000000 VPERMI2B Y18, Y22, K2, Y2 // 62b24d2275d2 VPERMI2B Y24, Y22, K2, Y2 // 62924d2275d0 VPERMI2B Y9, Y22, K2, Y2 // 62d24d2275d1 VPERMI2B 15(R8)(R14*1), Y22, K2, Y2 // 62924d227594300f000000 VPERMI2B 15(R8)(R14*2), Y22, K2, Y2 // 62924d227594700f000000 VPERMI2B Y18, Y20, K2, Y2 // 62b25d2275d2 VPERMI2B Y24, Y20, K2, Y2 // 62925d2275d0 VPERMI2B Y9, Y20, K2, Y2 // 62d25d2275d1 VPERMI2B 15(R8)(R14*1), Y20, K2, Y2 // 62925d227594300f000000 VPERMI2B 15(R8)(R14*2), Y20, K2, Y2 // 62925d227594700f000000 VPERMI2B Y18, Y15, K2, Y13 // 6232052a75ea VPERMI2B Y24, Y15, K2, Y13 // 6212052a75e8 VPERMI2B Y9, Y15, K2, Y13 // 6252052a75e9 VPERMI2B 15(R8)(R14*1), Y15, K2, Y13 // 6212052a75ac300f000000 VPERMI2B 15(R8)(R14*2), Y15, K2, Y13 // 6212052a75ac700f000000 VPERMI2B Y18, Y22, K2, Y13 // 62324d2275ea VPERMI2B Y24, Y22, K2, Y13 // 62124d2275e8 VPERMI2B Y9, Y22, K2, Y13 // 62524d2275e9 VPERMI2B 15(R8)(R14*1), Y22, K2, Y13 // 62124d2275ac300f000000 VPERMI2B 15(R8)(R14*2), Y22, K2, Y13 // 62124d2275ac700f000000 VPERMI2B Y18, Y20, K2, Y13 // 62325d2275ea VPERMI2B Y24, Y20, K2, Y13 // 62125d2275e8 VPERMI2B Y9, Y20, K2, Y13 // 62525d2275e9 VPERMI2B 15(R8)(R14*1), Y20, K2, Y13 // 62125d2275ac300f000000 VPERMI2B 15(R8)(R14*2), Y20, K2, Y13 // 62125d2275ac700f000000 VPERMI2B Y18, Y15, K2, Y27 // 6222052a75da VPERMI2B Y24, Y15, K2, Y27 // 6202052a75d8 VPERMI2B Y9, Y15, K2, Y27 // 6242052a75d9 VPERMI2B 15(R8)(R14*1), Y15, K2, Y27 // 6202052a759c300f000000 VPERMI2B 15(R8)(R14*2), Y15, K2, Y27 // 6202052a759c700f000000 VPERMI2B Y18, Y22, K2, Y27 // 62224d2275da VPERMI2B Y24, Y22, K2, Y27 // 62024d2275d8 VPERMI2B Y9, Y22, K2, Y27 // 62424d2275d9 VPERMI2B 15(R8)(R14*1), Y22, K2, Y27 // 62024d22759c300f000000 VPERMI2B 15(R8)(R14*2), Y22, K2, Y27 // 62024d22759c700f000000 VPERMI2B Y18, Y20, K2, Y27 // 62225d2275da VPERMI2B Y24, Y20, K2, Y27 // 62025d2275d8 VPERMI2B Y9, Y20, K2, Y27 // 62425d2275d9 VPERMI2B 15(R8)(R14*1), Y20, K2, Y27 // 62025d22759c300f000000 VPERMI2B 15(R8)(R14*2), Y20, K2, Y27 // 62025d22759c700f000000 VPERMI2B Z12, Z9, K4, Z3 // 62d2354c75dc VPERMI2B Z22, Z9, K4, Z3 // 62b2354c75de VPERMI2B -17(BP)(SI*8), Z9, K4, Z3 // 62f2354c759cf5efffffff VPERMI2B (R15), Z9, K4, Z3 // 62d2354c751f VPERMI2B Z12, Z19, K4, Z3 // 62d2654475dc VPERMI2B Z22, Z19, K4, Z3 // 62b2654475de VPERMI2B -17(BP)(SI*8), Z19, K4, Z3 // 62f26544759cf5efffffff VPERMI2B (R15), Z19, K4, Z3 // 62d26544751f VPERMI2B Z12, Z9, K4, Z30 // 6242354c75f4 VPERMI2B Z22, Z9, K4, Z30 // 6222354c75f6 VPERMI2B -17(BP)(SI*8), Z9, K4, Z30 // 6262354c75b4f5efffffff VPERMI2B (R15), Z9, K4, Z30 // 6242354c7537 VPERMI2B Z12, Z19, K4, Z30 // 6242654475f4 VPERMI2B Z22, Z19, K4, Z30 // 6222654475f6 VPERMI2B -17(BP)(SI*8), Z19, K4, Z30 // 6262654475b4f5efffffff VPERMI2B (R15), Z19, K4, Z30 // 624265447537 VPERMT2B X2, X0, K7, X20 // 62e27d0f7de2 VPERMT2B X8, X0, K7, X20 // 62c27d0f7de0 VPERMT2B X9, X0, K7, X20 // 62c27d0f7de1 VPERMT2B (BX), X0, K7, X20 // 62e27d0f7d23 VPERMT2B -17(BP)(SI*1), X0, K7, X20 // 62e27d0f7da435efffffff VPERMT2B X2, X9, K7, X20 // 62e2350f7de2 VPERMT2B X8, X9, K7, X20 // 62c2350f7de0 VPERMT2B X9, X9, K7, X20 // 62c2350f7de1 VPERMT2B (BX), X9, K7, X20 // 62e2350f7d23 VPERMT2B -17(BP)(SI*1), X9, K7, X20 // 62e2350f7da435efffffff VPERMT2B X2, X13, K7, X20 // 62e2150f7de2 VPERMT2B X8, X13, K7, X20 // 62c2150f7de0 VPERMT2B X9, X13, K7, X20 // 62c2150f7de1 VPERMT2B (BX), X13, K7, X20 // 62e2150f7d23 VPERMT2B -17(BP)(SI*1), X13, K7, X20 // 62e2150f7da435efffffff VPERMT2B X2, X0, K7, X5 // 62f27d0f7dea VPERMT2B X8, X0, K7, X5 // 62d27d0f7de8 VPERMT2B X9, X0, K7, X5 // 62d27d0f7de9 VPERMT2B (BX), X0, K7, X5 // 62f27d0f7d2b VPERMT2B -17(BP)(SI*1), X0, K7, X5 // 62f27d0f7dac35efffffff VPERMT2B X2, X9, K7, X5 // 62f2350f7dea VPERMT2B X8, X9, K7, X5 // 62d2350f7de8 VPERMT2B X9, X9, K7, X5 // 62d2350f7de9 VPERMT2B (BX), X9, K7, X5 // 62f2350f7d2b VPERMT2B -17(BP)(SI*1), X9, K7, X5 // 62f2350f7dac35efffffff VPERMT2B X2, X13, K7, X5 // 62f2150f7dea VPERMT2B X8, X13, K7, X5 // 62d2150f7de8 VPERMT2B X9, X13, K7, X5 // 62d2150f7de9 VPERMT2B (BX), X13, K7, X5 // 62f2150f7d2b VPERMT2B -17(BP)(SI*1), X13, K7, X5 // 62f2150f7dac35efffffff VPERMT2B X2, X0, K7, X25 // 62627d0f7dca VPERMT2B X8, X0, K7, X25 // 62427d0f7dc8 VPERMT2B X9, X0, K7, X25 // 62427d0f7dc9 VPERMT2B (BX), X0, K7, X25 // 62627d0f7d0b VPERMT2B -17(BP)(SI*1), X0, K7, X25 // 62627d0f7d8c35efffffff VPERMT2B X2, X9, K7, X25 // 6262350f7dca VPERMT2B X8, X9, K7, X25 // 6242350f7dc8 VPERMT2B X9, X9, K7, X25 // 6242350f7dc9 VPERMT2B (BX), X9, K7, X25 // 6262350f7d0b VPERMT2B -17(BP)(SI*1), X9, K7, X25 // 6262350f7d8c35efffffff VPERMT2B X2, X13, K7, X25 // 6262150f7dca VPERMT2B X8, X13, K7, X25 // 6242150f7dc8 VPERMT2B X9, X13, K7, X25 // 6242150f7dc9 VPERMT2B (BX), X13, K7, X25 // 6262150f7d0b VPERMT2B -17(BP)(SI*1), X13, K7, X25 // 6262150f7d8c35efffffff VPERMT2B Y14, Y2, K6, Y18 // 62c26d2e7dd6 VPERMT2B Y8, Y2, K6, Y18 // 62c26d2e7dd0 VPERMT2B Y20, Y2, K6, Y18 // 62a26d2e7dd4 VPERMT2B 7(SI)(DI*4), Y2, K6, Y18 // 62e26d2e7d94be07000000 VPERMT2B -7(DI)(R8*2), Y2, K6, Y18 // 62a26d2e7d9447f9ffffff VPERMT2B Y14, Y7, K6, Y18 // 62c2452e7dd6 VPERMT2B Y8, Y7, K6, Y18 // 62c2452e7dd0 VPERMT2B Y20, Y7, K6, Y18 // 62a2452e7dd4 VPERMT2B 7(SI)(DI*4), Y7, K6, Y18 // 62e2452e7d94be07000000 VPERMT2B -7(DI)(R8*2), Y7, K6, Y18 // 62a2452e7d9447f9ffffff VPERMT2B Y14, Y21, K6, Y18 // 62c255267dd6 VPERMT2B Y8, Y21, K6, Y18 // 62c255267dd0 VPERMT2B Y20, Y21, K6, Y18 // 62a255267dd4 VPERMT2B 7(SI)(DI*4), Y21, K6, Y18 // 62e255267d94be07000000 VPERMT2B -7(DI)(R8*2), Y21, K6, Y18 // 62a255267d9447f9ffffff VPERMT2B Y14, Y2, K6, Y3 // 62d26d2e7dde VPERMT2B Y8, Y2, K6, Y3 // 62d26d2e7dd8 VPERMT2B Y20, Y2, K6, Y3 // 62b26d2e7ddc VPERMT2B 7(SI)(DI*4), Y2, K6, Y3 // 62f26d2e7d9cbe07000000 VPERMT2B -7(DI)(R8*2), Y2, K6, Y3 // 62b26d2e7d9c47f9ffffff VPERMT2B Y14, Y7, K6, Y3 // 62d2452e7dde VPERMT2B Y8, Y7, K6, Y3 // 62d2452e7dd8 VPERMT2B Y20, Y7, K6, Y3 // 62b2452e7ddc VPERMT2B 7(SI)(DI*4), Y7, K6, Y3 // 62f2452e7d9cbe07000000 VPERMT2B -7(DI)(R8*2), Y7, K6, Y3 // 62b2452e7d9c47f9ffffff VPERMT2B Y14, Y21, K6, Y3 // 62d255267dde VPERMT2B Y8, Y21, K6, Y3 // 62d255267dd8 VPERMT2B Y20, Y21, K6, Y3 // 62b255267ddc VPERMT2B 7(SI)(DI*4), Y21, K6, Y3 // 62f255267d9cbe07000000 VPERMT2B -7(DI)(R8*2), Y21, K6, Y3 // 62b255267d9c47f9ffffff VPERMT2B Y14, Y2, K6, Y24 // 62426d2e7dc6 VPERMT2B Y8, Y2, K6, Y24 // 62426d2e7dc0 VPERMT2B Y20, Y2, K6, Y24 // 62226d2e7dc4 VPERMT2B 7(SI)(DI*4), Y2, K6, Y24 // 62626d2e7d84be07000000 VPERMT2B -7(DI)(R8*2), Y2, K6, Y24 // 62226d2e7d8447f9ffffff VPERMT2B Y14, Y7, K6, Y24 // 6242452e7dc6 VPERMT2B Y8, Y7, K6, Y24 // 6242452e7dc0 VPERMT2B Y20, Y7, K6, Y24 // 6222452e7dc4 VPERMT2B 7(SI)(DI*4), Y7, K6, Y24 // 6262452e7d84be07000000 VPERMT2B -7(DI)(R8*2), Y7, K6, Y24 // 6222452e7d8447f9ffffff VPERMT2B Y14, Y21, K6, Y24 // 624255267dc6 VPERMT2B Y8, Y21, K6, Y24 // 624255267dc0 VPERMT2B Y20, Y21, K6, Y24 // 622255267dc4 VPERMT2B 7(SI)(DI*4), Y21, K6, Y24 // 626255267d84be07000000 VPERMT2B -7(DI)(R8*2), Y21, K6, Y24 // 622255267d8447f9ffffff VPERMT2B Z20, Z1, K3, Z6 // 62b2754b7df4 VPERMT2B Z9, Z1, K3, Z6 // 62d2754b7df1 VPERMT2B (CX), Z1, K3, Z6 // 62f2754b7d31 VPERMT2B 99(R15), Z1, K3, Z6 // 62d2754b7db763000000 VPERMT2B Z20, Z9, K3, Z6 // 62b2354b7df4 VPERMT2B Z9, Z9, K3, Z6 // 62d2354b7df1 VPERMT2B (CX), Z9, K3, Z6 // 62f2354b7d31 VPERMT2B 99(R15), Z9, K3, Z6 // 62d2354b7db763000000 VPERMT2B Z20, Z1, K3, Z9 // 6232754b7dcc VPERMT2B Z9, Z1, K3, Z9 // 6252754b7dc9 VPERMT2B (CX), Z1, K3, Z9 // 6272754b7d09 VPERMT2B 99(R15), Z1, K3, Z9 // 6252754b7d8f63000000 VPERMT2B Z20, Z9, K3, Z9 // 6232354b7dcc VPERMT2B Z9, Z9, K3, Z9 // 6252354b7dc9 VPERMT2B (CX), Z9, K3, Z9 // 6272354b7d09 VPERMT2B 99(R15), Z9, K3, Z9 // 6252354b7d8f63000000 VPMULTISHIFTQB X9, X24, K5, X7 // 62d2bd0583f9 VPMULTISHIFTQB X7, X24, K5, X7 // 62f2bd0583ff VPMULTISHIFTQB X14, X24, K5, X7 // 62d2bd0583fe VPMULTISHIFTQB 17(SP)(BP*1), X24, K5, X7 // 62f2bd0583bc2c11000000 VPMULTISHIFTQB -7(CX)(DX*8), X24, K5, X7 // 62f2bd0583bcd1f9ffffff VPMULTISHIFTQB X9, X20, K5, X7 // 62d2dd0583f9 VPMULTISHIFTQB X7, X20, K5, X7 // 62f2dd0583ff VPMULTISHIFTQB X14, X20, K5, X7 // 62d2dd0583fe VPMULTISHIFTQB 17(SP)(BP*1), X20, K5, X7 // 62f2dd0583bc2c11000000 VPMULTISHIFTQB -7(CX)(DX*8), X20, K5, X7 // 62f2dd0583bcd1f9ffffff VPMULTISHIFTQB X9, X7, K5, X7 // 62d2c50d83f9 VPMULTISHIFTQB X7, X7, K5, X7 // 62f2c50d83ff VPMULTISHIFTQB X14, X7, K5, X7 // 62d2c50d83fe VPMULTISHIFTQB 17(SP)(BP*1), X7, K5, X7 // 62f2c50d83bc2c11000000 VPMULTISHIFTQB -7(CX)(DX*8), X7, K5, X7 // 62f2c50d83bcd1f9ffffff VPMULTISHIFTQB X9, X24, K5, X0 // 62d2bd0583c1 VPMULTISHIFTQB X7, X24, K5, X0 // 62f2bd0583c7 VPMULTISHIFTQB X14, X24, K5, X0 // 62d2bd0583c6 VPMULTISHIFTQB 17(SP)(BP*1), X24, K5, X0 // 62f2bd0583842c11000000 VPMULTISHIFTQB -7(CX)(DX*8), X24, K5, X0 // 62f2bd058384d1f9ffffff VPMULTISHIFTQB X9, X20, K5, X0 // 62d2dd0583c1 VPMULTISHIFTQB X7, X20, K5, X0 // 62f2dd0583c7 VPMULTISHIFTQB X14, X20, K5, X0 // 62d2dd0583c6 VPMULTISHIFTQB 17(SP)(BP*1), X20, K5, X0 // 62f2dd0583842c11000000 VPMULTISHIFTQB -7(CX)(DX*8), X20, K5, X0 // 62f2dd058384d1f9ffffff VPMULTISHIFTQB X9, X7, K5, X0 // 62d2c50d83c1 VPMULTISHIFTQB X7, X7, K5, X0 // 62f2c50d83c7 VPMULTISHIFTQB X14, X7, K5, X0 // 62d2c50d83c6 VPMULTISHIFTQB 17(SP)(BP*1), X7, K5, X0 // 62f2c50d83842c11000000 VPMULTISHIFTQB -7(CX)(DX*8), X7, K5, X0 // 62f2c50d8384d1f9ffffff VPMULTISHIFTQB Y16, Y30, K7, Y12 // 62328d2783e0 VPMULTISHIFTQB Y1, Y30, K7, Y12 // 62728d2783e1 VPMULTISHIFTQB Y30, Y30, K7, Y12 // 62128d2783e6 VPMULTISHIFTQB 17(SP)(BP*2), Y30, K7, Y12 // 62728d2783a46c11000000 VPMULTISHIFTQB -7(DI)(R8*4), Y30, K7, Y12 // 62328d2783a487f9ffffff VPMULTISHIFTQB Y16, Y26, K7, Y12 // 6232ad2783e0 VPMULTISHIFTQB Y1, Y26, K7, Y12 // 6272ad2783e1 VPMULTISHIFTQB Y30, Y26, K7, Y12 // 6212ad2783e6 VPMULTISHIFTQB 17(SP)(BP*2), Y26, K7, Y12 // 6272ad2783a46c11000000 VPMULTISHIFTQB -7(DI)(R8*4), Y26, K7, Y12 // 6232ad2783a487f9ffffff VPMULTISHIFTQB Y16, Y7, K7, Y12 // 6232c52f83e0 VPMULTISHIFTQB Y1, Y7, K7, Y12 // 6272c52f83e1 VPMULTISHIFTQB Y30, Y7, K7, Y12 // 6212c52f83e6 VPMULTISHIFTQB 17(SP)(BP*2), Y7, K7, Y12 // 6272c52f83a46c11000000 VPMULTISHIFTQB -7(DI)(R8*4), Y7, K7, Y12 // 6232c52f83a487f9ffffff VPMULTISHIFTQB Y16, Y30, K7, Y21 // 62a28d2783e8 VPMULTISHIFTQB Y1, Y30, K7, Y21 // 62e28d2783e9 VPMULTISHIFTQB Y30, Y30, K7, Y21 // 62828d2783ee VPMULTISHIFTQB 17(SP)(BP*2), Y30, K7, Y21 // 62e28d2783ac6c11000000 VPMULTISHIFTQB -7(DI)(R8*4), Y30, K7, Y21 // 62a28d2783ac87f9ffffff VPMULTISHIFTQB Y16, Y26, K7, Y21 // 62a2ad2783e8 VPMULTISHIFTQB Y1, Y26, K7, Y21 // 62e2ad2783e9 VPMULTISHIFTQB Y30, Y26, K7, Y21 // 6282ad2783ee VPMULTISHIFTQB 17(SP)(BP*2), Y26, K7, Y21 // 62e2ad2783ac6c11000000 VPMULTISHIFTQB -7(DI)(R8*4), Y26, K7, Y21 // 62a2ad2783ac87f9ffffff VPMULTISHIFTQB Y16, Y7, K7, Y21 // 62a2c52f83e8 VPMULTISHIFTQB Y1, Y7, K7, Y21 // 62e2c52f83e9 VPMULTISHIFTQB Y30, Y7, K7, Y21 // 6282c52f83ee VPMULTISHIFTQB 17(SP)(BP*2), Y7, K7, Y21 // 62e2c52f83ac6c11000000 VPMULTISHIFTQB -7(DI)(R8*4), Y7, K7, Y21 // 62a2c52f83ac87f9ffffff VPMULTISHIFTQB Y16, Y30, K7, Y14 // 62328d2783f0 VPMULTISHIFTQB Y1, Y30, K7, Y14 // 62728d2783f1 VPMULTISHIFTQB Y30, Y30, K7, Y14 // 62128d2783f6 VPMULTISHIFTQB 17(SP)(BP*2), Y30, K7, Y14 // 62728d2783b46c11000000 VPMULTISHIFTQB -7(DI)(R8*4), Y30, K7, Y14 // 62328d2783b487f9ffffff VPMULTISHIFTQB Y16, Y26, K7, Y14 // 6232ad2783f0 VPMULTISHIFTQB Y1, Y26, K7, Y14 // 6272ad2783f1 VPMULTISHIFTQB Y30, Y26, K7, Y14 // 6212ad2783f6 VPMULTISHIFTQB 17(SP)(BP*2), Y26, K7, Y14 // 6272ad2783b46c11000000 VPMULTISHIFTQB -7(DI)(R8*4), Y26, K7, Y14 // 6232ad2783b487f9ffffff VPMULTISHIFTQB Y16, Y7, K7, Y14 // 6232c52f83f0 VPMULTISHIFTQB Y1, Y7, K7, Y14 // 6272c52f83f1 VPMULTISHIFTQB Y30, Y7, K7, Y14 // 6212c52f83f6 VPMULTISHIFTQB 17(SP)(BP*2), Y7, K7, Y14 // 6272c52f83b46c11000000 VPMULTISHIFTQB -7(DI)(R8*4), Y7, K7, Y14 // 6232c52f83b487f9ffffff VPMULTISHIFTQB Z7, Z2, K7, Z18 // 62e2ed4f83d7 VPMULTISHIFTQB Z13, Z2, K7, Z18 // 62c2ed4f83d5 VPMULTISHIFTQB 7(AX)(CX*4), Z2, K7, Z18 // 62e2ed4f83948807000000 VPMULTISHIFTQB 7(AX)(CX*1), Z2, K7, Z18 // 62e2ed4f83940807000000 VPMULTISHIFTQB Z7, Z21, K7, Z18 // 62e2d54783d7 VPMULTISHIFTQB Z13, Z21, K7, Z18 // 62c2d54783d5 VPMULTISHIFTQB 7(AX)(CX*4), Z21, K7, Z18 // 62e2d54783948807000000 VPMULTISHIFTQB 7(AX)(CX*1), Z21, K7, Z18 // 62e2d54783940807000000 VPMULTISHIFTQB Z7, Z2, K7, Z24 // 6262ed4f83c7 VPMULTISHIFTQB Z13, Z2, K7, Z24 // 6242ed4f83c5 VPMULTISHIFTQB 7(AX)(CX*4), Z2, K7, Z24 // 6262ed4f83848807000000 VPMULTISHIFTQB 7(AX)(CX*1), Z2, K7, Z24 // 6262ed4f83840807000000 VPMULTISHIFTQB Z7, Z21, K7, Z24 // 6262d54783c7 VPMULTISHIFTQB Z13, Z21, K7, Z24 // 6242d54783c5 VPMULTISHIFTQB 7(AX)(CX*4), Z21, K7, Z24 // 6262d54783848807000000 VPMULTISHIFTQB 7(AX)(CX*1), Z21, K7, Z24 // 6262d54783840807000000 RET
GAS
0
Havoc-OS/androidprebuilts_go_linux-x86
src/cmd/asm/internal/asm/testdata/avx512enc/avx512_vbmi.s
[ "BSD-3-Clause" ]
{{ sonata_block_render_event( metadata.applicationName ~ '.admin.' ~ metadata.name ~ '.' ~ postfix, _context|filter((value, key) => key in sonata_block_whitelisted_variables()) ) }}
Twig
3
titomtd/Sylius
src/Sylius/Bundle/AdminBundle/Resources/views/Crud/Block/_legacySonataEvent.html.twig
[ "MIT" ]
--TEST-- Test phpinfo() displays xsl info --EXTENSIONS-- xsl --FILE-- <?php phpinfo(); ?> --EXPECTF-- %a libxslt compiled against libxml Version%a --CREDITS-- Christian Weiske, [email protected] PHP Testfest Berlin 2009-05-09
PHP
3
NathanFreeman/php-src
ext/xsl/tests/xsl-phpinfo.phpt
[ "PHP-3.01" ]
frequency,raw,error,smoothed,error_smoothed,equalization,parametric_eq,fixed_band_eq,equalized_raw,equalized_smoothed,target 20.00,-3.86,-1.56,-3.86,-1.56,1.55,1.57,0.46,-2.31,-2.31,-2.31 20.20,-3.77,-1.55,-3.78,-1.55,1.56,1.54,0.47,-2.22,-2.22,-2.22 20.40,-3.69,-1.55,-3.69,-1.55,1.55,1.51,0.49,-2.14,-2.13,-2.14 20.61,-3.60,-1.53,-3.60,-1.55,1.55,1.48,0.50,-2.06,-2.06,-2.07 20.81,-3.52,-1.54,-3.52,-1.54,1.54,1.45,0.51,-1.98,-1.98,-1.98 21.02,-3.43,-1.53,-3.44,-1.53,1.53,1.42,0.53,-1.91,-1.91,-1.90 21.23,-3.35,-1.51,-3.35,-1.52,1.51,1.39,0.54,-1.84,-1.84,-1.84 21.44,-3.27,-1.49,-3.27,-1.49,1.49,1.36,0.56,-1.79,-1.78,-1.78 21.66,-3.18,-1.45,-3.19,-1.46,1.46,1.33,0.57,-1.72,-1.73,-1.73 21.87,-3.10,-1.42,-3.10,-1.43,1.43,1.30,0.59,-1.67,-1.68,-1.68 22.09,-3.02,-1.39,-3.02,-1.39,1.39,1.27,0.60,-1.63,-1.63,-1.63 22.31,-2.94,-1.36,-2.94,-1.36,1.35,1.23,0.62,-1.59,-1.59,-1.58 22.54,-2.85,-1.31,-2.85,-1.31,1.31,1.20,0.64,-1.54,-1.54,-1.54 22.76,-2.77,-1.27,-2.77,-1.27,1.27,1.18,0.66,-1.50,-1.50,-1.50 22.99,-2.69,-1.22,-2.69,-1.23,1.23,1.15,0.67,-1.46,-1.46,-1.47 23.22,-2.62,-1.19,-2.62,-1.19,1.19,1.12,0.69,-1.43,-1.43,-1.43 23.45,-2.54,-1.15,-2.54,-1.15,1.15,1.09,0.71,-1.39,-1.39,-1.39 23.69,-2.46,-1.11,-2.46,-1.11,1.11,1.06,0.73,-1.35,-1.35,-1.35 23.92,-2.38,-1.07,-2.39,-1.08,1.07,1.04,0.75,-1.31,-1.31,-1.31 24.16,-2.31,-1.05,-2.31,-1.04,1.04,1.01,0.77,-1.27,-1.27,-1.26 24.40,-2.24,-1.01,-2.24,-1.00,1.00,0.98,0.79,-1.24,-1.24,-1.23 24.65,-2.16,-0.96,-2.17,-0.96,0.96,0.96,0.81,-1.20,-1.20,-1.20 24.89,-2.09,-0.92,-2.09,-0.92,0.92,0.94,0.83,-1.17,-1.17,-1.17 25.14,-2.02,-0.89,-2.02,-0.88,0.89,0.91,0.85,-1.14,-1.13,-1.13 25.39,-1.95,-0.85,-1.95,-0.85,0.85,0.89,0.87,-1.10,-1.10,-1.10 25.65,-1.88,-0.82,-1.88,-0.81,0.81,0.87,0.89,-1.07,-1.07,-1.07 25.91,-1.82,-0.78,-1.82,-0.78,0.78,0.85,0.91,-1.05,-1.04,-1.05 26.16,-1.75,-0.74,-1.76,-0.74,0.74,0.83,0.93,-1.01,-1.01,-1.02 26.43,-1.69,-0.72,-1.69,-0.71,0.71,0.81,0.95,-0.98,-0.98,-0.98 26.69,-1.63,-0.68,-1.63,-0.68,0.68,0.79,0.97,-0.95,-0.95,-0.95 26.96,-1.57,-0.65,-1.57,-0.66,0.66,0.77,0.99,-0.92,-0.92,-0.92 27.23,-1.51,-0.63,-1.51,-0.63,0.63,0.75,1.01,-0.88,-0.89,-0.88 27.50,-1.46,-0.61,-1.46,-0.61,0.60,0.74,1.03,-0.86,-0.86,-0.85 27.77,-1.40,-0.57,-1.40,-0.58,0.58,0.72,1.05,-0.82,-0.83,-0.83 28.05,-1.35,-0.56,-1.35,-0.55,0.55,0.71,1.07,-0.80,-0.80,-0.79 28.33,-1.30,-0.53,-1.30,-0.53,0.53,0.69,1.08,-0.77,-0.77,-0.77 28.62,-1.25,-0.51,-1.25,-0.51,0.51,0.68,1.10,-0.74,-0.74,-0.74 28.90,-1.20,-0.50,-1.20,-0.49,0.49,0.67,1.11,-0.71,-0.71,-0.70 29.19,-1.15,-0.47,-1.15,-0.48,0.48,0.66,1.12,-0.67,-0.67,-0.68 29.48,-1.11,-0.48,-1.11,-0.47,0.47,0.65,1.13,-0.64,-0.64,-0.64 29.78,-1.07,-0.46,-1.07,-0.46,0.46,0.64,1.14,-0.61,-0.61,-0.62 30.08,-1.04,-0.45,-1.04,-0.46,0.46,0.63,1.15,-0.58,-0.58,-0.59 30.38,-1.02,-0.46,-1.02,-0.46,0.46,0.62,1.16,-0.56,-0.56,-0.56 30.68,-1.00,-0.47,-1.00,-0.47,0.47,0.61,1.16,-0.54,-0.54,-0.53 30.99,-0.98,-0.47,-0.99,-0.48,0.47,0.60,1.17,-0.51,-0.51,-0.51 31.30,-0.97,-0.49,-0.97,-0.49,0.48,0.60,1.17,-0.49,-0.49,-0.48 31.61,-0.95,-0.50,-0.95,-0.49,0.49,0.59,1.17,-0.46,-0.46,-0.45 31.93,-0.93,-0.50,-0.94,-0.50,0.50,0.59,1.17,-0.43,-0.43,-0.44 32.24,-0.92,-0.51,-0.92,-0.51,0.51,0.58,1.16,-0.41,-0.41,-0.42 32.57,-0.91,-0.52,-0.91,-0.52,0.53,0.58,1.16,-0.39,-0.39,-0.39 32.89,-0.90,-0.54,-0.91,-0.54,0.54,0.58,1.15,-0.36,-0.37,-0.36 33.22,-0.90,-0.56,-0.90,-0.56,0.55,0.58,1.15,-0.35,-0.35,-0.34 33.55,-0.89,-0.57,-0.89,-0.57,0.57,0.58,1.14,-0.33,-0.32,-0.32 33.89,-0.88,-0.57,-0.89,-0.58,0.58,0.58,1.13,-0.30,-0.31,-0.31 34.23,-0.88,-0.60,-0.88,-0.59,0.60,0.58,1.12,-0.29,-0.29,-0.29 34.57,-0.89,-0.61,-0.89,-0.61,0.61,0.58,1.10,-0.28,-0.28,-0.28 34.92,-0.89,-0.62,-0.89,-0.63,0.63,0.59,1.09,-0.27,-0.27,-0.27 35.27,-0.90,-0.65,-0.90,-0.64,0.64,0.59,1.08,-0.26,-0.26,-0.25 35.62,-0.90,-0.65,-0.90,-0.66,0.65,0.60,1.06,-0.25,-0.25,-0.25 35.97,-0.91,-0.67,-0.91,-0.67,0.67,0.61,1.05,-0.24,-0.24,-0.25 36.33,-0.92,-0.69,-0.92,-0.68,0.69,0.62,1.03,-0.24,-0.23,-0.23 36.70,-0.93,-0.70,-0.93,-0.70,0.70,0.63,1.02,-0.23,-0.23,-0.23 37.06,-0.94,-0.71,-0.95,-0.72,0.72,0.64,1.00,-0.22,-0.23,-0.23 37.43,-0.97,-0.75,-0.97,-0.74,0.74,0.65,0.98,-0.23,-0.22,-0.22 37.81,-0.99,-0.77,-0.99,-0.76,0.76,0.67,0.97,-0.23,-0.23,-0.23 38.19,-1.01,-0.78,-1.02,-0.79,0.79,0.68,0.95,-0.22,-0.23,-0.23 38.57,-1.04,-0.82,-1.04,-0.81,0.81,0.70,0.94,-0.23,-0.23,-0.22 38.95,-1.07,-0.85,-1.07,-0.84,0.84,0.73,0.92,-0.23,-0.23,-0.23 39.34,-1.10,-0.86,-1.10,-0.87,0.87,0.75,0.90,-0.23,-0.24,-0.24 39.74,-1.14,-0.90,-1.14,-0.90,0.90,0.78,0.89,-0.24,-0.24,-0.24 40.14,-1.17,-0.93,-1.17,-0.93,0.93,0.80,0.88,-0.24,-0.24,-0.24 40.54,-1.21,-0.96,-1.21,-0.96,0.97,0.84,0.86,-0.24,-0.24,-0.25 40.94,-1.25,-1.00,-1.25,-1.00,1.01,0.87,0.85,-0.25,-0.25,-0.25 41.35,-1.30,-1.05,-1.30,-1.05,1.05,0.91,0.83,-0.26,-0.26,-0.26 41.76,-1.35,-1.09,-1.35,-1.09,1.09,0.95,0.82,-0.26,-0.26,-0.26 42.18,-1.40,-1.14,-1.40,-1.14,1.13,0.99,0.81,-0.27,-0.27,-0.26 42.60,-1.45,-1.18,-1.45,-1.18,1.18,1.04,0.80,-0.27,-0.27,-0.28 43.03,-1.50,-1.23,-1.51,-1.23,1.23,1.09,0.79,-0.27,-0.28,-0.27 43.46,-1.56,-1.28,-1.57,-1.28,1.28,1.15,0.78,-0.29,-0.29,-0.29 43.90,-1.63,-1.33,-1.63,-1.33,1.33,1.21,0.77,-0.30,-0.30,-0.30 44.33,-1.69,-1.38,-1.69,-1.38,1.38,1.28,0.76,-0.31,-0.31,-0.31 44.78,-1.75,-1.43,-1.75,-1.43,1.43,1.35,0.75,-0.32,-0.32,-0.32 45.23,-1.81,-1.48,-1.82,-1.48,1.49,1.42,0.74,-0.32,-0.33,-0.33 45.68,-1.88,-1.54,-1.88,-1.54,1.55,1.50,0.74,-0.33,-0.33,-0.34 46.13,-1.95,-1.61,-1.95,-1.61,1.61,1.58,0.73,-0.35,-0.34,-0.35 46.60,-2.01,-1.67,-2.02,-1.67,1.67,1.66,0.72,-0.35,-0.35,-0.34 47.06,-2.08,-1.74,-2.08,-1.73,1.73,1.75,0.72,-0.36,-0.35,-0.35 47.53,-2.13,-1.78,-2.13,-1.79,1.78,1.84,0.71,-0.35,-0.35,-0.35 48.01,-2.19,-1.84,-2.19,-1.84,1.84,1.93,0.71,-0.35,-0.36,-0.35 48.49,-2.25,-1.90,-2.25,-1.89,1.89,2.02,0.71,-0.36,-0.36,-0.36 48.97,-2.31,-1.95,-2.31,-1.94,1.95,2.11,0.70,-0.37,-0.36,-0.36 49.46,-2.36,-1.98,-2.36,-1.99,1.99,2.19,0.70,-0.37,-0.37,-0.38 49.96,-2.41,-2.02,-2.41,-2.03,2.04,2.27,0.70,-0.37,-0.37,-0.39 50.46,-2.45,-2.08,-2.45,-2.08,2.08,2.33,0.69,-0.37,-0.37,-0.38 50.96,-2.49,-2.13,-2.49,-2.12,2.11,2.39,0.69,-0.38,-0.38,-0.36 51.47,-2.51,-2.14,-2.52,-2.15,2.14,2.43,0.69,-0.37,-0.37,-0.37 51.99,-2.54,-2.17,-2.53,-2.17,2.16,2.45,0.69,-0.38,-0.37,-0.37 52.51,-2.53,-2.17,-2.54,-2.17,2.17,2.46,0.69,-0.36,-0.36,-0.36 53.03,-2.53,-2.17,-2.53,-2.18,2.17,2.45,0.69,-0.36,-0.36,-0.36 53.56,-2.52,-2.17,-2.52,-2.16,2.16,2.42,0.68,-0.36,-0.36,-0.36 54.10,-2.50,-2.15,-2.50,-2.14,2.14,2.37,0.68,-0.36,-0.36,-0.36 54.64,-2.47,-2.11,-2.47,-2.11,2.11,2.31,0.68,-0.37,-0.37,-0.37 55.18,-2.43,-2.06,-2.43,-2.06,2.06,2.24,0.68,-0.37,-0.37,-0.37 55.74,-2.38,-2.00,-2.38,-2.01,2.01,2.15,0.68,-0.38,-0.38,-0.38 56.29,-2.32,-1.94,-2.32,-1.94,1.94,2.05,0.67,-0.38,-0.38,-0.38 56.86,-2.26,-1.87,-2.26,-1.87,1.87,1.95,0.67,-0.39,-0.39,-0.39 57.42,-2.18,-1.78,-2.18,-1.79,1.79,1.84,0.66,-0.40,-0.40,-0.40 58.00,-2.10,-1.70,-2.10,-1.69,1.70,1.73,0.66,-0.41,-0.41,-0.41 58.58,-2.01,-1.59,-2.01,-1.60,1.60,1.61,0.65,-0.42,-0.41,-0.42 59.16,-1.91,-1.49,-1.91,-1.49,1.49,1.50,0.65,-0.42,-0.43,-0.42 59.76,-1.81,-1.38,-1.81,-1.38,1.37,1.39,0.64,-0.44,-0.44,-0.43 60.35,-1.71,-1.25,-1.71,-1.26,1.25,1.28,0.63,-0.46,-0.46,-0.46 60.96,-1.60,-1.14,-1.60,-1.13,1.12,1.17,0.62,-0.48,-0.48,-0.46 61.57,-1.48,-0.98,-1.49,-0.99,0.99,1.07,0.61,-0.49,-0.50,-0.50 62.18,-1.37,-0.85,-1.37,-0.85,0.85,0.97,0.60,-0.52,-0.52,-0.52 62.80,-1.25,-0.72,-1.25,-0.71,0.72,0.87,0.58,-0.53,-0.54,-0.53 63.43,-1.13,-0.58,-1.13,-0.58,0.58,0.77,0.57,-0.55,-0.55,-0.56 64.07,-1.01,-0.45,-1.01,-0.44,0.45,0.68,0.56,-0.56,-0.56,-0.56 64.71,-0.88,-0.31,-0.89,-0.31,0.32,0.59,0.54,-0.56,-0.56,-0.57 65.35,-0.76,-0.18,-0.77,-0.19,0.20,0.51,0.52,-0.56,-0.57,-0.58 66.01,-0.66,-0.09,-0.66,-0.08,0.08,0.43,0.50,-0.58,-0.57,-0.58 66.67,-0.55,0.02,-0.55,0.02,-0.03,0.35,0.48,-0.58,-0.58,-0.58 67.33,-0.45,0.12,-0.45,0.13,-0.14,0.27,0.46,-0.59,-0.59,-0.58 68.01,-0.34,0.23,-0.34,0.23,-0.24,0.19,0.44,-0.58,-0.58,-0.58 68.69,-0.24,0.33,-0.24,0.34,-0.34,0.12,0.42,-0.58,-0.58,-0.58 69.37,-0.13,0.44,-0.13,0.44,-0.43,0.04,0.39,-0.56,-0.57,-0.57 70.07,-0.03,0.54,-0.03,0.53,-0.52,-0.03,0.37,-0.56,-0.56,-0.57 70.77,0.06,0.61,0.06,0.61,-0.61,-0.10,0.34,-0.55,-0.55,-0.55 71.48,0.14,0.69,0.14,0.69,-0.69,-0.17,0.32,-0.55,-0.55,-0.56 72.19,0.21,0.77,0.21,0.77,-0.77,-0.24,0.29,-0.56,-0.56,-0.56 72.91,0.29,0.84,0.28,0.84,-0.84,-0.31,0.27,-0.55,-0.56,-0.55 73.64,0.35,0.91,0.35,0.91,-0.91,-0.38,0.24,-0.56,-0.56,-0.56 74.38,0.42,0.97,0.42,0.98,-0.98,-0.45,0.21,-0.56,-0.56,-0.55 75.12,0.49,1.05,0.48,1.04,-1.04,-0.52,0.18,-0.55,-0.56,-0.56 75.87,0.54,1.09,0.54,1.10,-1.10,-0.59,0.15,-0.56,-0.56,-0.56 76.63,0.60,1.15,0.60,1.16,-1.16,-0.66,0.12,-0.56,-0.56,-0.55 77.40,0.65,1.21,0.65,1.21,-1.21,-0.73,0.09,-0.56,-0.56,-0.56 78.17,0.70,1.27,0.70,1.26,-1.26,-0.80,0.06,-0.56,-0.56,-0.57 78.95,0.76,1.31,0.75,1.31,-1.30,-0.88,0.03,-0.55,-0.55,-0.55 79.74,0.80,1.35,0.80,1.35,-1.34,-0.95,0.00,-0.55,-0.55,-0.55 80.54,0.84,1.39,0.84,1.38,-1.38,-1.02,-0.03,-0.54,-0.54,-0.55 81.35,0.87,1.41,0.87,1.41,-1.41,-1.10,-0.06,-0.54,-0.54,-0.54 82.16,0.90,1.43,0.90,1.43,-1.43,-1.17,-0.09,-0.53,-0.53,-0.53 82.98,0.93,1.44,0.93,1.44,-1.44,-1.24,-0.12,-0.51,-0.52,-0.51 83.81,0.95,1.45,0.95,1.46,-1.45,-1.31,-0.16,-0.51,-0.50,-0.50 84.65,0.98,1.47,0.97,1.46,-1.46,-1.38,-0.19,-0.48,-0.49,-0.50 85.50,0.99,1.46,0.99,1.47,-1.46,-1.45,-0.22,-0.48,-0.47,-0.47 86.35,1.01,1.46,1.01,1.47,-1.47,-1.51,-0.25,-0.46,-0.46,-0.45 87.22,1.02,1.47,1.02,1.46,-1.46,-1.57,-0.29,-0.45,-0.45,-0.45 88.09,1.03,1.46,1.03,1.46,-1.46,-1.63,-0.32,-0.43,-0.43,-0.43 88.97,1.04,1.46,1.04,1.46,-1.46,-1.68,-0.35,-0.42,-0.42,-0.42 89.86,1.05,1.46,1.04,1.46,-1.45,-1.73,-0.39,-0.41,-0.41,-0.41 90.76,1.04,1.46,1.04,1.45,-1.45,-1.77,-0.42,-0.41,-0.41,-0.42 91.66,1.03,1.44,1.03,1.45,-1.45,-1.80,-0.45,-0.42,-0.42,-0.42 92.58,1.02,1.45,1.02,1.45,-1.45,-1.83,-0.49,-0.44,-0.43,-0.43 93.51,1.02,1.45,1.02,1.45,-1.46,-1.85,-0.52,-0.44,-0.44,-0.43 94.44,1.02,1.47,1.02,1.47,-1.47,-1.86,-0.56,-0.46,-0.46,-0.45 95.39,1.02,1.48,1.02,1.49,-1.49,-1.86,-0.59,-0.47,-0.47,-0.47 96.34,1.02,1.51,1.02,1.51,-1.52,-1.86,-0.63,-0.50,-0.50,-0.49 97.30,1.02,1.55,1.02,1.55,-1.55,-1.84,-0.66,-0.53,-0.53,-0.53 98.28,1.02,1.58,1.02,1.58,-1.58,-1.83,-0.70,-0.56,-0.56,-0.56 99.26,1.02,1.62,1.02,1.62,-1.62,-1.80,-0.73,-0.60,-0.60,-0.60 100.25,1.02,1.66,1.02,1.66,-1.65,-1.77,-0.77,-0.64,-0.64,-0.64 101.25,1.02,1.70,1.02,1.70,-1.70,-1.74,-0.80,-0.68,-0.68,-0.68 102.27,1.02,1.74,1.02,1.74,-1.74,-1.70,-0.84,-0.72,-0.72,-0.72 103.29,1.02,1.79,1.02,1.78,-1.79,-1.66,-0.87,-0.77,-0.77,-0.77 104.32,1.02,1.81,1.02,1.82,-1.83,-1.62,-0.91,-0.81,-0.81,-0.80 105.37,1.03,1.87,1.03,1.87,-1.88,-1.58,-0.94,-0.85,-0.85,-0.85 106.42,1.04,1.92,1.03,1.92,-1.92,-1.53,-0.98,-0.88,-0.88,-0.89 107.48,1.04,1.96,1.04,1.97,-1.96,-1.49,-1.01,-0.92,-0.92,-0.93 108.56,1.04,2.00,1.04,2.00,-1.99,-1.45,-1.04,-0.95,-0.95,-0.96 109.64,1.03,2.03,1.03,2.02,-2.01,-1.40,-1.08,-0.99,-0.99,-1.00 110.74,1.01,2.04,1.01,2.04,-2.04,-1.36,-1.11,-1.03,-1.03,-1.03 111.85,0.98,2.04,0.98,2.05,-2.05,-1.32,-1.14,-1.07,-1.07,-1.06 112.97,0.95,2.06,0.95,2.05,-2.06,-1.28,-1.17,-1.11,-1.12,-1.11 114.10,0.92,2.05,0.92,2.05,-2.07,-1.24,-1.20,-1.15,-1.15,-1.13 115.24,0.89,2.06,0.90,2.06,-2.06,-1.20,-1.23,-1.17,-1.17,-1.17 116.39,0.88,2.07,0.87,2.07,-2.06,-1.17,-1.25,-1.18,-1.18,-1.20 117.55,0.85,2.06,0.84,2.06,-2.04,-1.13,-1.28,-1.20,-1.20,-1.21 118.73,0.81,2.05,0.81,2.04,-2.03,-1.10,-1.30,-1.22,-1.22,-1.24 119.92,0.76,2.01,0.76,2.01,-2.01,-1.07,-1.33,-1.25,-1.25,-1.25 121.12,0.71,1.97,0.71,1.98,-1.99,-1.04,-1.35,-1.28,-1.27,-1.26 122.33,0.68,1.96,0.68,1.96,-1.97,-1.01,-1.37,-1.29,-1.29,-1.28 123.55,0.65,1.93,0.64,1.93,-1.94,-0.99,-1.39,-1.29,-1.30,-1.29 124.79,0.62,1.92,0.61,1.91,-1.92,-0.96,-1.40,-1.30,-1.30,-1.30 126.03,0.57,1.87,0.58,1.89,-1.89,-0.94,-1.42,-1.32,-1.31,-1.31 127.29,0.54,1.86,0.54,1.87,-1.86,-0.92,-1.43,-1.33,-1.32,-1.32 128.57,0.51,1.85,0.50,1.84,-1.84,-0.89,-1.45,-1.33,-1.33,-1.35 129.85,0.47,1.82,0.46,1.82,-1.80,-0.87,-1.46,-1.34,-1.34,-1.35 131.15,0.41,1.77,0.42,1.78,-1.77,-0.86,-1.47,-1.36,-1.35,-1.36 132.46,0.37,1.75,0.36,1.73,-1.74,-0.84,-1.47,-1.37,-1.38,-1.38 133.79,0.30,1.68,0.30,1.69,-1.70,-0.82,-1.48,-1.40,-1.40,-1.39 135.12,0.23,1.64,0.24,1.64,-1.66,-0.80,-1.49,-1.43,-1.42,-1.41 136.48,0.19,1.61,0.18,1.60,-1.61,-0.79,-1.49,-1.42,-1.43,-1.42 137.84,0.12,1.56,0.13,1.57,-1.57,-0.77,-1.50,-1.45,-1.44,-1.44 139.22,0.07,1.54,0.06,1.53,-1.52,-0.75,-1.50,-1.45,-1.45,-1.47 140.61,0.01,1.50,-0.01,1.48,-1.47,-0.74,-1.50,-1.46,-1.47,-1.49 142.02,-0.10,1.39,-0.08,1.42,-1.42,-0.72,-1.50,-1.52,-1.50,-1.50 143.44,-0.15,1.36,-0.16,1.36,-1.36,-0.71,-1.51,-1.51,-1.52,-1.51 144.87,-0.25,1.29,-0.25,1.29,-1.30,-0.69,-1.51,-1.55,-1.55,-1.54 146.32,-0.32,1.25,-0.33,1.24,-1.24,-0.67,-1.51,-1.56,-1.56,-1.57 147.78,-0.43,1.15,-0.42,1.16,-1.16,-0.65,-1.51,-1.60,-1.59,-1.58 149.26,-0.51,1.10,-0.52,1.10,-1.09,-0.64,-1.51,-1.60,-1.60,-1.61 150.75,-0.63,1.01,-0.63,1.01,-1.00,-0.62,-1.51,-1.63,-1.63,-1.65 152.26,-0.74,0.93,-0.75,0.92,-0.91,-0.60,-1.52,-1.66,-1.66,-1.67 153.78,-0.88,0.81,-0.88,0.82,-0.82,-0.57,-1.52,-1.70,-1.70,-1.69 155.32,-0.99,0.73,-1.00,0.73,-0.73,-0.55,-1.52,-1.72,-1.72,-1.73 156.88,-1.14,0.61,-1.14,0.62,-0.63,-0.52,-1.53,-1.77,-1.76,-1.75 158.44,-1.25,0.54,-1.27,0.52,-0.53,-0.49,-1.53,-1.78,-1.80,-1.79 160.03,-1.43,0.39,-1.41,0.42,-0.42,-0.46,-1.54,-1.86,-1.83,-1.82 161.63,-1.54,0.32,-1.54,0.32,-0.32,-0.42,-1.54,-1.86,-1.86,-1.86 163.24,-1.65,0.24,-1.68,0.22,-0.22,-0.38,-1.55,-1.87,-1.89,-1.89 164.88,-1.81,0.11,-1.79,0.13,-0.11,-0.34,-1.56,-1.92,-1.91,-1.92 166.53,-1.94,0.01,-1.94,0.02,-0.01,-0.29,-1.57,-1.95,-1.94,-1.95 168.19,-2.05,-0.07,-2.08,-0.10,0.10,-0.24,-1.58,-1.95,-1.98,-1.98 169.87,-2.24,-0.23,-2.21,-0.20,0.20,-0.18,-1.59,-2.04,-2.01,-2.01 171.57,-2.35,-0.32,-2.35,-0.31,0.31,-0.11,-1.60,-2.05,-2.04,-2.04 173.29,-2.46,-0.40,-2.49,-0.42,0.41,-0.04,-1.62,-2.05,-2.08,-2.06 175.02,-2.62,-0.53,-2.61,-0.51,0.51,0.04,-1.63,-2.11,-2.09,-2.09 176.77,-2.73,-0.62,-2.73,-0.61,0.61,0.13,-1.65,-2.12,-2.12,-2.12 178.54,-2.83,-0.69,-2.84,-0.70,0.71,0.23,-1.66,-2.13,-2.13,-2.14 180.32,-2.94,-0.78,-2.94,-0.78,0.80,0.34,-1.68,-2.14,-2.15,-2.16 182.13,-3.04,-0.87,-3.05,-0.88,0.88,0.45,-1.70,-2.16,-2.17,-2.17 183.95,-3.17,-0.99,-3.16,-0.97,0.97,0.58,-1.72,-2.21,-2.19,-2.19 185.79,-3.25,-1.05,-3.25,-1.05,1.04,0.71,-1.75,-2.21,-2.21,-2.20 187.65,-3.32,-1.11,-3.33,-1.11,1.11,0.85,-1.77,-2.21,-2.22,-2.21 189.52,-3.38,-1.17,-3.39,-1.17,1.17,0.99,-1.79,-2.21,-2.22,-2.22 191.42,-3.44,-1.21,-3.44,-1.22,1.21,1.13,-1.82,-2.23,-2.23,-2.23 193.33,-3.49,-1.26,-3.49,-1.26,1.25,1.26,-1.85,-2.24,-2.23,-2.23 195.27,-3.51,-1.28,-3.52,-1.28,1.28,1.38,-1.87,-2.24,-2.24,-2.23 197.22,-3.53,-1.29,-3.53,-1.29,1.29,1.48,-1.90,-2.24,-2.24,-2.24 199.19,-3.54,-1.28,-3.54,-1.28,1.29,1.55,-1.93,-2.25,-2.25,-2.27 201.18,-3.53,-1.27,-3.54,-1.27,1.28,1.58,-1.96,-2.25,-2.26,-2.27 203.19,-3.52,-1.26,-3.52,-1.25,1.25,1.57,-2.00,-2.27,-2.27,-2.27 205.23,-3.49,-1.22,-3.49,-1.22,1.20,1.52,-2.03,-2.29,-2.29,-2.28 207.28,-3.43,-1.16,-3.43,-1.15,1.14,1.43,-2.06,-2.29,-2.29,-2.28 209.35,-3.36,-1.08,-3.36,-1.07,1.07,1.29,-2.10,-2.29,-2.29,-2.28 211.44,-3.26,-0.96,-3.27,-0.97,0.98,1.12,-2.13,-2.29,-2.29,-2.30 213.56,-3.16,-0.86,-3.16,-0.85,0.87,0.92,-2.17,-2.30,-2.29,-2.30 215.69,-3.04,-0.74,-3.04,-0.73,0.74,0.70,-2.20,-2.30,-2.30,-2.30 217.85,-2.89,-0.57,-2.91,-0.60,0.59,0.46,-2.24,-2.30,-2.32,-2.32 220.03,-2.78,-0.46,-2.77,-0.44,0.43,0.22,-2.27,-2.35,-2.34,-2.33 222.23,-2.62,-0.28,-2.61,-0.27,0.26,-0.02,-2.31,-2.37,-2.35,-2.34 224.45,-2.41,-0.07,-2.41,-0.07,0.06,-0.26,-2.34,-2.35,-2.35,-2.34 226.70,-2.19,0.15,-2.19,0.15,-0.15,-0.50,-2.38,-2.34,-2.34,-2.35 228.96,-1.95,0.40,-1.98,0.37,-0.37,-0.74,-2.41,-2.32,-2.35,-2.35 231.25,-1.78,0.58,-1.76,0.61,-0.61,-0.96,-2.45,-2.39,-2.36,-2.36 233.57,-1.54,0.83,-1.53,0.85,-0.85,-1.19,-2.48,-2.40,-2.38,-2.38 235.90,-1.25,1.14,-1.28,1.11,-1.11,-1.40,-2.51,-2.36,-2.39,-2.39 238.26,-1.04,1.37,-1.03,1.38,-1.38,-1.61,-2.54,-2.42,-2.41,-2.41 240.64,-0.77,1.65,-0.78,1.64,-1.65,-1.82,-2.57,-2.42,-2.43,-2.42 243.05,-0.54,1.89,-0.52,1.90,-1.92,-2.02,-2.60,-2.46,-2.44,-2.43 245.48,-0.26,2.17,-0.25,2.19,-2.19,-2.23,-2.63,-2.45,-2.44,-2.43 247.93,0.06,2.50,0.03,2.47,-2.46,-2.43,-2.66,-2.40,-2.43,-2.44 250.41,0.28,2.73,0.30,2.75,-2.72,-2.63,-2.68,-2.44,-2.42,-2.45 252.92,0.57,3.01,0.55,2.99,-2.98,-2.83,-2.71,-2.41,-2.43,-2.44 255.45,0.79,3.22,0.79,3.23,-3.23,-3.04,-2.73,-2.44,-2.44,-2.43 258.00,1.01,3.44,1.03,3.46,-3.47,-3.25,-2.76,-2.46,-2.44,-2.43 260.58,1.30,3.72,1.27,3.70,-3.70,-3.47,-2.78,-2.41,-2.43,-2.42 263.19,1.51,3.91,1.52,3.93,-3.93,-3.69,-2.80,-2.42,-2.40,-2.41 265.82,1.77,4.17,1.75,4.14,-4.14,-3.92,-2.82,-2.37,-2.39,-2.40 268.48,1.97,4.34,1.97,4.34,-4.34,-4.15,-2.84,-2.37,-2.37,-2.37 271.16,2.16,4.51,2.19,4.54,-4.54,-4.39,-2.86,-2.38,-2.35,-2.36 273.87,2.41,4.75,2.38,4.72,-4.72,-4.63,-2.88,-2.31,-2.34,-2.34 276.61,2.58,4.89,2.58,4.90,-4.89,-4.86,-2.90,-2.32,-2.32,-2.31 279.38,2.75,5.05,2.75,5.05,-5.06,-5.09,-2.92,-2.31,-2.31,-2.31 282.17,2.91,5.20,2.91,5.20,-5.21,-5.31,-2.94,-2.30,-2.30,-2.29 284.99,3.06,5.33,3.08,5.35,-5.35,-5.51,-2.97,-2.29,-2.28,-2.27 287.84,3.25,5.50,3.23,5.49,-5.48,-5.68,-2.99,-2.24,-2.25,-2.25 290.72,3.39,5.62,3.38,5.62,-5.60,-5.83,-3.01,-2.22,-2.22,-2.23 293.63,3.51,5.73,3.51,5.73,-5.71,-5.94,-3.03,-2.21,-2.20,-2.22 296.57,3.62,5.81,3.62,5.81,-5.81,-6.02,-3.06,-2.19,-2.19,-2.19 299.53,3.72,5.89,3.72,5.90,-5.90,-6.07,-3.08,-2.18,-2.18,-2.18 302.53,3.81,5.98,3.81,5.97,-5.97,-6.09,-3.11,-2.17,-2.16,-2.17 305.55,3.91,6.04,3.90,6.04,-6.04,-6.10,-3.14,-2.13,-2.14,-2.13 308.61,3.99,6.10,3.99,6.10,-6.10,-6.10,-3.17,-2.11,-2.11,-2.11 311.69,4.08,6.16,4.07,6.15,-6.15,-6.09,-3.20,-2.07,-2.08,-2.08 314.81,4.15,6.19,4.14,6.20,-6.20,-6.08,-3.24,-2.05,-2.05,-2.05 317.96,4.21,6.24,4.21,6.24,-6.24,-6.08,-3.28,-2.04,-2.04,-2.03 321.14,4.27,6.28,4.27,6.28,-6.29,-6.08,-3.31,-2.02,-2.02,-2.01 324.35,4.33,6.32,4.33,6.32,-6.33,-6.08,-3.36,-2.00,-1.99,-1.99 327.59,4.41,6.37,4.40,6.36,-6.36,-6.10,-3.40,-1.95,-1.96,-1.96 330.87,4.46,6.40,4.46,6.40,-6.40,-6.12,-3.45,-1.94,-1.94,-1.94 334.18,4.52,6.43,4.52,6.44,-6.43,-6.15,-3.50,-1.92,-1.92,-1.92 337.52,4.58,6.48,4.57,6.47,-6.47,-6.19,-3.55,-1.89,-1.89,-1.90 340.90,4.63,6.50,4.63,6.50,-6.51,-6.23,-3.61,-1.88,-1.87,-1.87 344.30,4.70,6.54,4.69,6.54,-6.54,-6.28,-3.66,-1.84,-1.85,-1.84 347.75,4.75,6.57,4.75,6.57,-6.58,-6.33,-3.72,-1.83,-1.82,-1.82 351.23,4.82,6.61,4.82,6.61,-6.61,-6.38,-3.79,-1.80,-1.80,-1.79 354.74,4.88,6.64,4.88,6.65,-6.65,-6.44,-3.85,-1.77,-1.77,-1.76 358.28,4.95,6.69,4.95,6.69,-6.69,-6.50,-3.92,-1.74,-1.74,-1.75 361.87,5.01,6.72,5.00,6.72,-6.72,-6.56,-4.00,-1.71,-1.72,-1.72 365.49,5.06,6.75,5.06,6.75,-6.75,-6.62,-4.07,-1.70,-1.69,-1.69 369.14,5.11,6.79,5.11,6.78,-6.78,-6.68,-4.15,-1.67,-1.67,-1.68 372.83,5.16,6.81,5.16,6.80,-6.80,-6.73,-4.23,-1.65,-1.65,-1.65 376.56,5.20,6.83,5.20,6.82,-6.82,-6.79,-4.32,-1.62,-1.62,-1.63 380.33,5.23,6.82,5.23,6.83,-6.83,-6.84,-4.40,-1.60,-1.60,-1.59 384.13,5.26,6.84,5.25,6.83,-6.83,-6.89,-4.49,-1.57,-1.58,-1.58 387.97,5.26,6.82,5.26,6.82,-6.82,-6.93,-4.58,-1.56,-1.56,-1.56 391.85,5.26,6.81,5.26,6.81,-6.80,-6.97,-4.68,-1.55,-1.54,-1.55 395.77,5.25,6.77,5.25,6.78,-6.78,-7.00,-4.77,-1.53,-1.53,-1.52 399.73,5.24,6.75,5.23,6.75,-6.75,-7.03,-4.87,-1.51,-1.52,-1.52 403.72,5.20,6.71,5.20,6.71,-6.71,-7.05,-4.97,-1.51,-1.51,-1.52 407.76,5.16,6.66,5.16,6.66,-6.66,-7.06,-5.07,-1.51,-1.51,-1.51 411.84,5.11,6.61,5.11,6.61,-6.61,-7.07,-5.17,-1.51,-1.50,-1.50 415.96,5.06,6.56,5.06,6.55,-6.56,-7.07,-5.27,-1.50,-1.50,-1.50 420.12,5.00,6.50,5.00,6.49,-6.50,-7.06,-5.37,-1.50,-1.50,-1.50 424.32,4.93,6.43,4.93,6.43,-6.43,-7.04,-5.48,-1.50,-1.50,-1.50 428.56,4.87,6.37,4.86,6.37,-6.36,-7.02,-5.58,-1.49,-1.50,-1.50 432.85,4.79,6.30,4.79,6.29,-6.29,-6.99,-5.67,-1.50,-1.50,-1.51 437.18,4.70,6.21,4.70,6.21,-6.21,-6.95,-5.77,-1.51,-1.51,-1.51 441.55,4.62,6.13,4.61,6.13,-6.13,-6.91,-5.86,-1.51,-1.52,-1.51 445.96,4.53,6.05,4.53,6.05,-6.05,-6.85,-5.95,-1.52,-1.52,-1.52 450.42,4.44,5.96,4.44,5.96,-5.97,-6.80,-6.04,-1.53,-1.53,-1.52 454.93,4.36,5.88,4.35,5.88,-5.88,-6.73,-6.12,-1.52,-1.53,-1.52 459.48,4.27,5.80,4.27,5.80,-5.79,-6.66,-6.19,-1.53,-1.52,-1.53 464.07,4.19,5.71,4.19,5.71,-5.71,-6.59,-6.26,-1.52,-1.52,-1.52 468.71,4.11,5.63,4.10,5.62,-5.63,-6.51,-6.32,-1.52,-1.53,-1.52 473.40,4.01,5.53,4.02,5.54,-5.54,-6.42,-6.37,-1.54,-1.53,-1.52 478.13,3.93,5.44,3.94,5.46,-5.46,-6.33,-6.42,-1.53,-1.53,-1.51 482.91,3.87,5.39,3.86,5.38,-5.38,-6.24,-6.45,-1.51,-1.52,-1.53 487.74,3.79,5.30,3.79,5.30,-5.30,-6.14,-6.48,-1.51,-1.51,-1.52 492.62,3.71,5.21,3.71,5.22,-5.22,-6.04,-6.49,-1.51,-1.51,-1.51 497.55,3.63,5.14,3.63,5.14,-5.14,-5.94,-6.50,-1.51,-1.51,-1.52 502.52,3.55,5.05,3.55,5.06,-5.06,-5.84,-6.49,-1.51,-1.51,-1.51 507.55,3.47,4.97,3.47,4.98,-4.98,-5.74,-6.48,-1.51,-1.51,-1.51 512.62,3.40,4.89,3.40,4.89,-4.90,-5.63,-6.45,-1.50,-1.50,-1.50 517.75,3.33,4.81,3.33,4.81,-4.82,-5.52,-6.42,-1.49,-1.49,-1.49 522.93,3.26,4.74,3.26,4.74,-4.74,-5.42,-6.37,-1.48,-1.48,-1.48 528.16,3.19,4.67,3.19,4.66,-4.66,-5.31,-6.32,-1.47,-1.47,-1.48 533.44,3.13,4.60,3.13,4.59,-4.59,-5.20,-6.26,-1.46,-1.46,-1.47 538.77,3.07,4.52,3.07,4.52,-4.52,-5.09,-6.19,-1.45,-1.45,-1.45 544.16,3.01,4.45,3.01,4.44,-4.45,-4.99,-6.11,-1.44,-1.44,-1.44 549.60,2.95,4.37,2.95,4.37,-4.38,-4.88,-6.03,-1.43,-1.43,-1.42 555.10,2.90,4.31,2.90,4.31,-4.32,-4.78,-5.94,-1.42,-1.41,-1.41 560.65,2.87,4.27,2.86,4.26,-4.26,-4.67,-5.84,-1.39,-1.40,-1.40 566.25,2.82,4.20,2.82,4.20,-4.20,-4.57,-5.74,-1.38,-1.38,-1.38 571.92,2.77,4.15,2.77,4.15,-4.14,-4.47,-5.64,-1.37,-1.37,-1.38 577.64,2.72,4.09,2.72,4.09,-4.08,-4.36,-5.53,-1.37,-1.37,-1.37 583.41,2.67,4.03,2.67,4.03,-4.03,-4.27,-5.42,-1.36,-1.36,-1.36 589.25,2.63,3.98,2.63,3.98,-3.98,-4.17,-5.31,-1.35,-1.35,-1.35 595.14,2.59,3.93,2.58,3.93,-3.93,-4.07,-5.20,-1.34,-1.35,-1.34 601.09,2.54,3.88,2.54,3.88,-3.88,-3.98,-5.09,-1.34,-1.34,-1.34 607.10,2.50,3.83,2.50,3.83,-3.83,-3.89,-4.98,-1.34,-1.33,-1.33 613.17,2.47,3.79,2.46,3.79,-3.79,-3.79,-4.86,-1.32,-1.32,-1.32 619.30,2.43,3.74,2.43,3.74,-3.74,-3.71,-4.75,-1.31,-1.31,-1.31 625.50,2.40,3.70,2.40,3.70,-3.68,-3.62,-4.64,-1.29,-1.29,-1.30 631.75,2.36,3.65,2.35,3.64,-3.63,-3.53,-4.53,-1.27,-1.28,-1.29 638.07,2.31,3.58,2.31,3.58,-3.58,-3.45,-4.43,-1.27,-1.27,-1.27 644.45,2.26,3.52,2.26,3.52,-3.52,-3.37,-4.32,-1.26,-1.26,-1.26 650.89,2.22,3.46,2.22,3.46,-3.47,-3.29,-4.22,-1.25,-1.25,-1.24 657.40,2.18,3.40,2.17,3.40,-3.41,-3.21,-4.12,-1.23,-1.24,-1.22 663.98,2.14,3.34,2.14,3.34,-3.36,-3.14,-4.02,-1.22,-1.21,-1.20 670.62,2.12,3.30,2.12,3.30,-3.31,-3.07,-3.92,-1.19,-1.18,-1.18 677.32,2.11,3.27,2.10,3.26,-3.26,-3.00,-3.83,-1.15,-1.15,-1.16 684.10,2.09,3.23,2.08,3.22,-3.21,-2.93,-3.74,-1.12,-1.13,-1.14 690.94,2.06,3.17,2.06,3.17,-3.16,-2.86,-3.65,-1.11,-1.11,-1.11 697.85,2.02,3.11,2.03,3.12,-3.12,-2.80,-3.56,-1.10,-1.10,-1.09 704.83,2.00,3.07,2.00,3.07,-3.08,-2.74,-3.48,-1.08,-1.08,-1.07 711.87,1.97,3.03,1.97,3.03,-3.03,-2.68,-3.40,-1.07,-1.07,-1.06 718.99,1.94,2.99,1.94,2.99,-2.99,-2.62,-3.32,-1.05,-1.05,-1.05 726.18,1.90,2.94,1.90,2.95,-2.94,-2.56,-3.24,-1.05,-1.04,-1.04 733.44,1.87,2.91,1.87,2.90,-2.90,-2.51,-3.17,-1.03,-1.03,-1.04 740.78,1.83,2.86,1.82,2.86,-2.85,-2.46,-3.10,-1.02,-1.03,-1.03 748.19,1.77,2.80,1.77,2.81,-2.80,-2.41,-3.04,-1.03,-1.03,-1.03 755.67,1.70,2.75,1.70,2.75,-2.74,-2.37,-2.97,-1.05,-1.04,-1.05 763.23,1.63,2.69,1.63,2.69,-2.69,-2.32,-2.91,-1.06,-1.06,-1.06 770.86,1.56,2.63,1.56,2.63,-2.62,-2.28,-2.85,-1.07,-1.07,-1.07 778.57,1.48,2.57,1.47,2.57,-2.56,-2.25,-2.79,-1.09,-1.09,-1.09 786.35,1.39,2.50,1.39,2.50,-2.50,-2.21,-2.73,-1.12,-1.12,-1.11 794.22,1.30,2.43,1.30,2.44,-2.44,-2.18,-2.68,-1.15,-1.14,-1.13 802.16,1.22,2.38,1.22,2.38,-2.39,-2.15,-2.63,-1.17,-1.17,-1.16 810.18,1.15,2.33,1.15,2.33,-2.34,-2.12,-2.58,-1.19,-1.19,-1.18 818.28,1.08,2.29,1.08,2.29,-2.29,-2.10,-2.53,-1.21,-1.21,-1.21 826.46,1.01,2.25,1.00,2.24,-2.24,-2.08,-2.48,-1.24,-1.24,-1.24 834.73,0.93,2.20,0.93,2.20,-2.20,-2.06,-2.43,-1.28,-1.27,-1.27 843.08,0.86,2.16,0.86,2.16,-2.17,-2.04,-2.39,-1.31,-1.31,-1.30 851.51,0.79,2.13,0.79,2.13,-2.13,-2.03,-2.35,-1.34,-1.34,-1.34 860.02,0.73,2.09,0.73,2.10,-2.09,-2.02,-2.30,-1.36,-1.36,-1.36 868.62,0.67,2.07,0.66,2.06,-2.05,-2.01,-2.26,-1.38,-1.39,-1.40 877.31,0.59,2.01,0.59,2.01,-2.01,-2.01,-2.22,-1.42,-1.42,-1.42 886.08,0.53,1.97,0.53,1.98,-1.97,-2.00,-2.18,-1.44,-1.44,-1.44 894.94,0.47,1.93,0.46,1.93,-1.94,-2.00,-2.13,-1.47,-1.47,-1.46 903.89,0.41,1.91,0.40,1.89,-1.90,-2.00,-2.09,-1.49,-1.50,-1.50 912.93,0.34,1.85,0.34,1.86,-1.87,-1.99,-2.05,-1.53,-1.52,-1.51 922.06,0.29,1.82,0.29,1.83,-1.84,-1.99,-2.01,-1.55,-1.54,-1.53 931.28,0.25,1.81,0.25,1.80,-1.81,-1.98,-1.96,-1.56,-1.56,-1.56 940.59,0.22,1.79,0.21,1.79,-1.79,-1.97,-1.92,-1.57,-1.57,-1.57 950.00,0.18,1.77,0.18,1.77,-1.77,-1.95,-1.87,-1.59,-1.59,-1.59 959.50,0.14,1.74,0.14,1.74,-1.75,-1.93,-1.82,-1.61,-1.60,-1.60 969.09,0.11,1.72,0.11,1.73,-1.73,-1.90,-1.78,-1.62,-1.62,-1.61 978.78,0.08,1.71,0.08,1.71,-1.71,-1.86,-1.73,-1.63,-1.63,-1.63 988.57,0.05,1.70,0.04,1.69,-1.69,-1.82,-1.68,-1.64,-1.64,-1.65 998.46,0.01,1.67,0.00,1.67,-1.67,-1.77,-1.62,-1.66,-1.66,-1.66 1008.44,-0.04,1.63,-0.04,1.64,-1.64,-1.71,-1.57,-1.68,-1.68,-1.67 1018.53,-0.08,1.60,-0.08,1.60,-1.61,-1.65,-1.51,-1.69,-1.69,-1.68 1028.71,-0.12,1.58,-0.13,1.58,-1.58,-1.58,-1.45,-1.70,-1.71,-1.70 1039.00,-0.18,1.54,-0.18,1.54,-1.54,-1.50,-1.39,-1.72,-1.72,-1.72 1049.39,-0.24,1.50,-0.24,1.50,-1.49,-1.43,-1.33,-1.73,-1.73,-1.74 1059.88,-0.31,1.44,-0.31,1.45,-1.44,-1.35,-1.27,-1.75,-1.74,-1.75 1070.48,-0.37,1.39,-0.38,1.39,-1.38,-1.26,-1.20,-1.75,-1.76,-1.76 1081.19,-0.45,1.32,-0.46,1.32,-1.32,-1.18,-1.13,-1.77,-1.77,-1.77 1092.00,-0.54,1.24,-0.54,1.24,-1.25,-1.10,-1.07,-1.79,-1.78,-1.78 1102.92,-0.62,1.16,-0.62,1.17,-1.17,-1.02,-1.00,-1.79,-1.79,-1.78 1113.95,-0.70,1.09,-0.70,1.09,-1.09,-0.94,-0.92,-1.79,-1.79,-1.79 1125.09,-0.77,1.02,-0.77,1.02,-1.01,-0.86,-0.85,-1.78,-1.78,-1.79 1136.34,-0.84,0.94,-0.85,0.94,-0.93,-0.78,-0.78,-1.77,-1.78,-1.78 1147.70,-0.92,0.85,-0.93,0.85,-0.85,-0.70,-0.70,-1.78,-1.78,-1.77 1159.18,-1.01,0.77,-1.01,0.77,-0.78,-0.63,-0.62,-1.79,-1.79,-1.78 1170.77,-1.09,0.69,-1.09,0.70,-0.70,-0.55,-0.54,-1.80,-1.79,-1.78 1182.48,-1.15,0.63,-1.15,0.63,-0.63,-0.48,-0.47,-1.79,-1.79,-1.78 1194.30,-1.21,0.57,-1.22,0.57,-0.57,-0.42,-0.39,-1.78,-1.78,-1.78 1206.25,-1.28,0.51,-1.28,0.50,-0.51,-0.35,-0.30,-1.79,-1.79,-1.79 1218.31,-1.35,0.44,-1.35,0.44,-0.45,-0.28,-0.22,-1.80,-1.80,-1.79 1230.49,-1.42,0.38,-1.42,0.39,-0.40,-0.22,-0.14,-1.82,-1.81,-1.80 1242.80,-1.48,0.35,-1.48,0.34,-0.34,-0.16,-0.05,-1.83,-1.83,-1.83 1255.22,-1.54,0.30,-1.55,0.30,-0.29,-0.10,0.03,-1.84,-1.84,-1.84 1267.78,-1.61,0.25,-1.62,0.25,-0.24,-0.04,0.12,-1.85,-1.86,-1.86 1280.45,-1.69,0.19,-1.69,0.19,-0.19,0.02,0.20,-1.88,-1.88,-1.88 1293.26,-1.76,0.13,-1.76,0.14,-0.14,0.08,0.29,-1.90,-1.90,-1.89 1306.19,-1.83,0.09,-1.84,0.08,-0.09,0.14,0.38,-1.92,-1.92,-1.92 1319.25,-1.91,0.02,-1.91,0.03,-0.03,0.19,0.47,-1.94,-1.94,-1.93 1332.45,-1.98,-0.03,-1.98,-0.03,0.04,0.25,0.56,-1.95,-1.95,-1.95 1345.77,-2.06,-0.10,-2.06,-0.10,0.10,0.30,0.65,-1.96,-1.96,-1.96 1359.23,-2.14,-0.16,-2.14,-0.17,0.17,0.36,0.74,-1.97,-1.97,-1.98 1372.82,-2.22,-0.24,-2.23,-0.24,0.24,0.41,0.83,-1.98,-1.98,-1.98 1386.55,-2.32,-0.33,-2.32,-0.32,0.32,0.46,0.92,-2.00,-2.00,-1.99 1400.41,-2.41,-0.40,-2.41,-0.40,0.40,0.52,1.02,-2.01,-2.01,-2.01 1414.42,-2.50,-0.48,-2.50,-0.48,0.48,0.57,1.11,-2.02,-2.03,-2.02 1428.56,-2.59,-0.57,-2.59,-0.57,0.56,0.62,1.21,-2.03,-2.03,-2.02 1442.85,-2.68,-0.65,-2.68,-0.65,0.64,0.68,1.30,-2.04,-2.04,-2.03 1457.28,-2.77,-0.73,-2.77,-0.72,0.73,0.73,1.40,-2.05,-2.04,-2.04 1471.85,-2.85,-0.80,-2.86,-0.81,0.81,0.78,1.50,-2.04,-2.05,-2.05 1486.57,-2.95,-0.89,-2.95,-0.90,0.90,0.84,1.60,-2.05,-2.05,-2.06 1501.43,-3.05,-1.00,-3.05,-0.99,1.00,0.89,1.70,-2.06,-2.05,-2.05 1516.45,-3.14,-1.10,-3.14,-1.09,1.10,0.95,1.80,-2.05,-2.04,-2.04 1531.61,-3.22,-1.19,-3.23,-1.20,1.20,1.00,1.90,-2.02,-2.03,-2.03 1546.93,-3.31,-1.30,-3.32,-1.30,1.30,1.06,2.00,-2.01,-2.01,-2.01 1562.40,-3.41,-1.42,-3.41,-1.41,1.41,1.11,2.11,-2.00,-2.00,-1.99 1578.02,-3.50,-1.53,-3.50,-1.52,1.52,1.17,2.21,-1.98,-1.98,-1.97 1593.80,-3.59,-1.63,-3.59,-1.63,1.63,1.23,2.31,-1.96,-1.96,-1.96 1609.74,-3.67,-1.74,-3.68,-1.74,1.74,1.28,2.42,-1.93,-1.93,-1.93 1625.84,-3.76,-1.86,-3.76,-1.85,1.86,1.34,2.52,-1.91,-1.90,-1.90 1642.10,-3.84,-1.97,-3.84,-1.97,1.97,1.40,2.63,-1.88,-1.87,-1.87 1658.52,-3.91,-2.07,-3.92,-2.07,2.08,1.46,2.73,-1.83,-1.84,-1.84 1675.10,-4.00,-2.18,-4.00,-2.18,2.19,1.52,2.84,-1.82,-1.82,-1.82 1691.85,-4.09,-2.29,-4.09,-2.29,2.29,1.59,2.94,-1.80,-1.80,-1.80 1708.77,-4.18,-2.40,-4.18,-2.40,2.39,1.65,3.04,-1.79,-1.79,-1.78 1725.86,-4.26,-2.49,-4.26,-2.50,2.49,1.71,3.14,-1.78,-1.78,-1.77 1743.12,-4.34,-2.59,-4.34,-2.59,2.58,1.78,3.24,-1.77,-1.77,-1.75 1760.55,-4.42,-2.67,-4.42,-2.67,2.66,1.85,3.34,-1.76,-1.75,-1.75 1778.15,-4.48,-2.74,-4.49,-2.74,2.74,1.91,3.43,-1.74,-1.75,-1.74 1795.94,-4.55,-2.80,-4.56,-2.81,2.81,1.98,3.52,-1.74,-1.75,-1.75 1813.90,-4.63,-2.88,-4.63,-2.88,2.88,2.05,3.61,-1.76,-1.75,-1.75 1832.03,-4.70,-2.95,-4.70,-2.94,2.94,2.12,3.70,-1.77,-1.76,-1.75 1850.36,-4.75,-3.00,-4.76,-3.00,2.99,2.20,3.78,-1.76,-1.76,-1.75 1868.86,-4.81,-3.05,-4.81,-3.05,3.05,2.27,3.85,-1.76,-1.76,-1.76 1887.55,-4.87,-3.11,-4.87,-3.10,3.11,2.35,3.93,-1.76,-1.76,-1.76 1906.42,-4.93,-3.16,-4.93,-3.16,3.17,2.42,3.99,-1.76,-1.76,-1.77 1925.49,-4.98,-3.22,-4.98,-3.22,3.23,2.50,4.06,-1.75,-1.75,-1.76 1944.74,-5.04,-3.29,-5.04,-3.29,3.29,2.58,4.11,-1.75,-1.75,-1.75 1964.19,-5.10,-3.36,-5.10,-3.36,3.36,2.67,4.16,-1.74,-1.74,-1.74 1983.83,-5.17,-3.44,-5.17,-3.44,3.43,2.75,4.21,-1.74,-1.73,-1.73 2003.67,-5.23,-3.52,-5.23,-3.52,3.51,2.84,4.25,-1.72,-1.73,-1.71 2023.71,-5.30,-3.59,-5.30,-3.59,3.59,2.92,4.28,-1.71,-1.71,-1.71 2043.94,-5.37,-3.67,-5.37,-3.67,3.67,3.01,4.31,-1.70,-1.70,-1.70 2064.38,-5.44,-3.75,-5.44,-3.75,3.76,3.10,4.34,-1.69,-1.69,-1.69 2085.03,-5.52,-3.84,-5.52,-3.84,3.84,3.20,4.35,-1.68,-1.68,-1.68 2105.88,-5.59,-3.94,-5.59,-3.93,3.94,3.29,4.37,-1.66,-1.66,-1.65 2126.94,-5.67,-4.03,-5.67,-4.03,4.03,3.39,4.38,-1.64,-1.63,-1.64 2148.20,-5.74,-4.13,-5.75,-4.13,4.13,3.49,4.38,-1.61,-1.61,-1.61 2169.69,-5.82,-4.23,-5.83,-4.23,4.24,3.59,4.38,-1.59,-1.59,-1.59 2191.38,-5.91,-4.35,-5.91,-4.34,4.34,3.69,4.38,-1.57,-1.57,-1.56 2213.30,-5.99,-4.45,-5.99,-4.45,4.45,3.79,4.37,-1.55,-1.54,-1.54 2235.43,-6.07,-4.56,-6.07,-4.56,4.55,3.90,4.36,-1.52,-1.52,-1.51 2257.78,-6.15,-4.66,-6.16,-4.66,4.66,4.00,4.35,-1.49,-1.50,-1.49 2280.36,-6.24,-4.76,-6.24,-4.76,4.76,4.11,4.34,-1.48,-1.48,-1.48 2303.17,-6.33,-4.86,-6.33,-4.86,4.87,4.22,4.32,-1.47,-1.46,-1.47 2326.20,-6.42,-4.96,-6.42,-4.96,4.97,4.33,4.31,-1.46,-1.46,-1.46 2349.46,-6.52,-5.07,-6.52,-5.07,5.06,4.45,4.29,-1.46,-1.46,-1.45 2372.95,-6.63,-5.17,-6.63,-5.17,5.16,4.56,4.28,-1.47,-1.47,-1.46 2396.68,-6.74,-5.26,-6.74,-5.26,5.25,4.68,4.26,-1.49,-1.49,-1.48 2420.65,-6.85,-5.35,-6.85,-5.35,5.35,4.79,4.25,-1.51,-1.50,-1.50 2444.86,-6.95,-5.43,-6.96,-5.43,5.44,4.91,4.24,-1.51,-1.51,-1.52 2469.31,-7.06,-5.52,-7.06,-5.52,5.54,5.03,4.22,-1.52,-1.52,-1.54 2494.00,-7.17,-5.62,-7.17,-5.62,5.64,5.15,4.21,-1.54,-1.53,-1.55 2518.94,-7.28,-5.71,-7.28,-5.71,5.73,5.26,4.21,-1.56,-1.56,-1.57 2544.13,-7.39,-5.80,-7.39,-5.80,5.81,5.38,4.20,-1.59,-1.59,-1.59 2569.57,-7.50,-5.89,-7.50,-5.90,5.87,5.50,4.20,-1.63,-1.63,-1.61 2595.27,-7.61,-6.00,-7.61,-6.00,5.93,5.61,4.20,-1.68,-1.68,-1.61 2621.22,-7.71,-6.10,-7.71,-6.09,5.97,5.73,4.20,-1.74,-1.74,-1.61 2647.43,-7.80,-6.19,-7.80,-6.19,6.00,5.84,4.21,-1.80,-1.80,-1.61 2673.90,-7.89,-6.29,-7.89,-6.29,6.01,5.95,4.22,-1.88,-1.88,-1.60 2700.64,-7.98,-6.39,-7.99,-6.40,6.02,6.06,4.23,-1.96,-1.97,-1.59 2727.65,-8.08,-6.51,-8.09,-6.51,6.02,6.16,4.25,-2.07,-2.07,-1.57 2754.93,-8.19,-6.64,-8.18,-6.63,6.01,6.26,4.27,-2.18,-2.18,-1.55 2782.48,-8.27,-6.74,-8.27,-6.74,6.00,6.35,4.29,-2.27,-2.27,-1.53 2810.30,-8.35,-6.84,-8.35,-6.84,6.00,6.44,4.32,-2.35,-2.35,-1.51 2838.40,-8.42,-6.92,-8.42,-6.92,6.00,6.53,4.35,-2.42,-2.42,-1.50 2866.79,-8.48,-6.99,-8.48,-6.99,6.00,6.61,4.38,-2.48,-2.48,-1.49 2895.46,-8.53,-7.05,-8.53,-7.05,6.00,6.68,4.42,-2.53,-2.53,-1.48 2924.41,-8.56,-7.09,-8.56,-7.08,6.00,6.74,4.46,-2.56,-2.56,-1.47 2953.65,-8.57,-7.10,-8.57,-7.10,6.00,6.80,4.51,-2.57,-2.57,-1.47 2983.19,-8.56,-7.11,-8.57,-7.11,6.00,6.85,4.56,-2.56,-2.57,-1.45 3013.02,-8.55,-7.10,-8.55,-7.10,6.00,6.89,4.61,-2.55,-2.55,-1.45 3043.15,-8.51,-7.08,-8.51,-7.08,6.00,6.92,4.67,-2.51,-2.51,-1.43 3073.58,-8.46,-7.04,-8.46,-7.04,6.00,6.94,4.73,-2.46,-2.46,-1.42 3104.32,-8.40,-7.00,-8.40,-7.00,6.00,6.96,4.79,-2.40,-2.40,-1.40 3135.36,-8.33,-6.94,-8.34,-6.95,6.00,6.96,4.85,-2.33,-2.34,-1.39 3166.72,-8.26,-6.90,-8.26,-6.88,6.00,6.96,4.92,-2.26,-2.26,-1.36 3198.38,-8.16,-6.80,-8.16,-6.81,6.00,6.95,5.00,-2.16,-2.16,-1.36 3230.37,-8.06,-6.73,-8.06,-6.73,6.00,6.92,5.07,-2.06,-2.06,-1.33 3262.67,-7.95,-6.65,-7.96,-6.65,6.00,6.89,5.15,-1.95,-1.96,-1.30 3295.30,-7.85,-6.60,-7.85,-6.60,6.00,6.86,5.22,-1.85,-1.85,-1.25 3328.25,-7.75,-6.56,-7.75,-6.56,6.00,6.81,5.30,-1.75,-1.75,-1.19 3361.53,-7.65,-6.53,-7.65,-6.52,6.00,6.76,5.38,-1.65,-1.65,-1.12 3395.15,-7.55,-6.50,-7.55,-6.50,6.00,6.70,5.46,-1.55,-1.55,-1.05 3429.10,-7.45,-6.49,-7.46,-6.50,6.00,6.64,5.54,-1.45,-1.46,-0.96 3463.39,-7.37,-6.51,-7.37,-6.51,6.00,6.58,5.62,-1.37,-1.37,-0.86 3498.03,-7.30,-6.56,-7.30,-6.55,6.00,6.51,5.70,-1.30,-1.30,-0.74 3533.01,-7.22,-6.61,-7.22,-6.60,6.00,6.43,5.78,-1.22,-1.22,-0.61 3568.34,-7.15,-6.67,-7.15,-6.67,6.00,6.36,5.85,-1.15,-1.15,-0.48 3604.02,-7.09,-6.73,-7.10,-6.74,6.00,6.28,5.92,-1.09,-1.10,-0.36 3640.06,-7.06,-6.84,-7.06,-6.83,6.00,6.20,5.98,-1.06,-1.06,-0.22 3676.46,-7.03,-6.95,-7.04,-6.95,6.00,6.13,6.04,-1.03,-1.04,-0.08 3713.22,-7.03,-7.08,-7.04,-7.09,6.00,6.06,6.09,-1.03,-1.04,0.05 3750.36,-7.06,-7.25,-7.06,-7.24,6.00,5.99,6.14,-1.06,-1.06,0.19 3787.86,-7.10,-7.41,-7.10,-7.41,6.00,5.92,6.18,-1.10,-1.10,0.31 3825.74,-7.16,-7.59,-7.16,-7.59,6.00,5.86,6.21,-1.16,-1.16,0.43 3864.00,-7.23,-7.77,-7.23,-7.77,6.00,5.81,6.23,-1.23,-1.23,0.54 3902.64,-7.31,-7.96,-7.32,-7.96,6.00,5.77,6.24,-1.31,-1.32,0.65 3941.66,-7.40,-8.16,-7.40,-8.16,6.00,5.74,6.24,-1.40,-1.40,0.76 3981.08,-7.48,-8.34,-7.48,-8.34,6.00,5.72,6.23,-1.48,-1.48,0.86 4020.89,-7.55,-8.50,-7.55,-8.50,6.00,5.71,6.21,-1.55,-1.55,0.95 4061.10,-7.60,-8.63,-7.60,-8.63,6.00,5.72,6.18,-1.60,-1.60,1.03 4101.71,-7.63,-8.74,-7.64,-8.75,6.00,5.75,6.14,-1.63,-1.64,1.11 4142.73,-7.64,-8.84,-7.64,-8.83,6.00,5.78,6.09,-1.64,-1.64,1.20 4184.15,-7.62,-8.90,-7.62,-8.90,6.00,5.83,6.03,-1.62,-1.62,1.28 4226.00,-7.55,-8.92,-7.56,-8.92,6.00,5.89,5.96,-1.55,-1.55,1.37 4268.26,-7.46,-8.92,-7.46,-8.90,6.02,5.93,5.88,-1.44,-1.43,1.46 4310.94,-7.32,-8.84,-7.32,-8.85,6.04,5.96,5.79,-1.28,-1.28,1.52 4354.05,-7.16,-8.75,-7.16,-8.76,6.05,5.96,5.69,-1.11,-1.11,1.59 4397.59,-6.97,-8.64,-6.97,-8.63,6.03,5.90,5.59,-0.94,-0.94,1.67 4441.56,-6.76,-8.50,-6.76,-8.49,5.99,5.79,5.48,-0.77,-0.77,1.74 4485.98,-6.52,-8.32,-6.53,-8.33,5.91,5.62,5.36,-0.61,-0.62,1.80 4530.84,-6.30,-8.16,-6.30,-8.15,5.79,5.41,5.25,-0.51,-0.51,1.86 4576.15,-6.06,-7.96,-6.07,-7.96,5.63,5.17,5.12,-0.43,-0.43,1.90 4621.91,-5.83,-7.76,-5.83,-7.76,5.44,4.92,5.00,-0.39,-0.39,1.93 4668.13,-5.60,-7.53,-5.60,-7.53,5.21,4.66,4.87,-0.39,-0.38,1.93 4714.81,-5.35,-7.27,-5.35,-7.27,4.96,4.41,4.74,-0.39,-0.39,1.92 4761.96,-5.10,-7.00,-5.10,-6.99,4.69,4.17,4.61,-0.41,-0.42,1.90 4809.58,-4.85,-6.69,-4.85,-6.69,4.41,3.95,4.48,-0.44,-0.44,1.84 4857.67,-4.60,-6.36,-4.60,-6.36,4.14,3.74,4.34,-0.47,-0.46,1.76 4906.25,-4.35,-6.01,-4.36,-6.00,3.88,3.55,4.21,-0.48,-0.48,1.66 4955.31,-4.11,-5.63,-4.12,-5.64,3.62,3.38,4.08,-0.49,-0.50,1.52 5004.87,-3.89,-5.26,-3.89,-5.26,3.36,3.22,3.95,-0.53,-0.53,1.37 5054.91,-3.66,-4.87,-3.66,-4.87,3.10,3.07,3.82,-0.56,-0.56,1.21 5105.46,-3.44,-4.47,-3.45,-4.47,2.84,2.93,3.70,-0.60,-0.60,1.03 5156.52,-3.23,-4.07,-3.23,-4.06,2.59,2.80,3.57,-0.65,-0.64,0.84 5208.08,-3.01,-3.64,-3.01,-3.64,2.33,2.68,3.45,-0.69,-0.68,0.63 5260.16,-2.78,-3.20,-2.79,-3.20,2.07,2.57,3.33,-0.71,-0.72,0.42 5312.77,-2.56,-2.77,-2.56,-2.76,1.81,2.46,3.21,-0.75,-0.75,0.21 5365.89,-2.32,-2.33,-2.33,-2.33,1.55,2.36,3.09,-0.77,-0.77,0.01 5419.55,-2.09,-1.91,-2.09,-1.92,1.29,2.26,2.98,-0.80,-0.80,-0.18 5473.75,-1.84,-1.51,-1.84,-1.50,1.03,2.17,2.87,-0.81,-0.81,-0.33 5528.49,-1.58,-1.11,-1.58,-1.11,0.77,2.09,2.76,-0.81,-0.81,-0.47 5583.77,-1.30,-0.72,-1.30,-0.73,0.50,2.01,2.65,-0.80,-0.80,-0.58 5639.61,-1.01,-0.38,-1.00,-0.38,0.23,1.93,2.54,-0.78,-0.77,-0.63 5696.00,-0.68,-0.04,-0.68,-0.05,-0.02,1.85,2.44,-0.71,-0.71,-0.64 5752.96,-0.35,0.26,-0.35,0.25,-0.27,1.78,2.34,-0.62,-0.62,-0.61 5810.49,-0.00,0.54,-0.00,0.52,-0.50,1.71,2.24,-0.50,-0.50,-0.54 5868.60,0.34,0.76,0.34,0.74,-0.70,1.64,2.15,-0.37,-0.36,-0.42 5927.28,0.68,0.95,0.67,0.91,-0.88,1.58,2.05,-0.20,-0.21,-0.27 5986.56,1.00,1.09,0.99,1.04,-1.02,1.51,1.96,-0.02,-0.03,-0.09 6046.42,1.30,1.19,1.29,1.13,-1.12,1.45,1.87,0.18,0.17,0.11 6106.89,1.60,1.27,1.58,1.19,-1.19,1.39,1.79,0.41,0.39,0.33 6167.96,1.89,1.32,1.86,1.21,-1.21,1.33,1.70,0.68,0.65,0.57 6229.64,2.17,1.35,2.12,1.21,-1.20,1.28,1.62,0.96,0.92,0.82 6291.93,2.44,1.35,2.37,1.17,-1.16,1.22,1.54,1.27,1.21,1.09 6354.85,2.69,1.32,2.60,1.10,-1.10,1.17,1.46,1.59,1.50,1.37 6418.40,2.94,1.29,2.82,1.01,-1.01,1.12,1.38,1.93,1.81,1.65 6482.58,3.19,1.24,3.02,0.91,-0.90,1.07,1.30,2.28,2.11,1.95 6547.41,3.44,1.20,3.20,0.78,-0.78,1.02,1.23,2.66,2.42,2.24 6612.88,3.66,1.13,3.36,0.65,-0.64,0.97,1.15,3.01,2.72,2.53 6679.01,3.89,1.07,3.49,0.50,-0.50,0.92,1.08,3.39,3.00,2.82 6745.80,4.11,1.00,3.60,0.35,-0.35,0.88,1.01,3.76,3.25,3.11 6813.26,4.32,0.93,3.70,0.20,-0.21,0.83,0.94,4.11,3.49,3.39 6881.39,4.52,0.86,3.77,0.06,-0.07,0.79,0.87,4.45,3.70,3.66 6950.21,4.71,0.77,3.82,-0.07,0.05,0.74,0.81,4.76,3.87,3.94 7019.71,4.90,0.69,3.87,-0.18,0.15,0.70,0.74,5.05,4.02,4.21 7089.91,5.06,0.60,3.91,-0.26,0.24,0.66,0.68,5.30,4.14,4.46 7160.81,5.22,0.53,3.94,-0.32,0.30,0.61,0.62,5.52,4.24,4.69 7232.41,5.36,0.48,3.99,-0.36,0.34,0.57,0.56,5.70,4.33,4.88 7304.74,5.48,0.45,4.03,-0.37,0.37,0.53,0.50,5.85,4.40,5.03 7377.79,5.60,0.45,4.08,-0.38,0.38,0.49,0.44,5.98,4.46,5.15 7451.56,5.71,0.48,4.14,-0.37,0.38,0.45,0.39,6.09,4.52,5.23 7526.08,5.83,0.58,4.20,-0.37,0.38,0.41,0.34,6.21,4.58,5.25 7601.34,5.91,0.67,4.27,-0.37,0.38,0.38,0.29,6.29,4.65,5.24 7677.35,5.98,0.80,4.33,-0.37,0.38,0.34,0.24,6.36,4.71,5.18 7754.13,6.05,0.97,4.39,-0.38,0.39,0.30,0.19,6.44,4.78,5.08 7831.67,6.11,1.16,4.45,-0.40,0.41,0.26,0.14,6.52,4.85,4.95 7909.98,6.15,1.34,4.50,-0.43,0.43,0.23,0.10,6.58,4.93,4.81 7989.08,6.17,1.50,4.54,-0.46,0.47,0.19,0.05,6.63,5.01,4.67 8068.98,6.15,1.62,4.59,-0.50,0.50,0.15,0.01,6.65,5.09,4.53 8149.67,6.13,1.70,4.62,-0.55,0.55,0.12,-0.03,6.68,5.17,4.43 8231.16,6.06,1.69,4.65,-0.60,0.60,0.08,-0.06,6.65,5.25,4.37 8313.47,5.95,1.57,4.68,-0.65,0.64,0.04,-0.10,6.59,5.32,4.38 8396.61,5.84,1.37,4.70,-0.69,0.69,0.01,-0.13,6.53,5.39,4.47 8480.57,5.69,1.05,4.71,-0.74,0.74,-0.03,-0.17,6.43,5.45,4.64 8565.38,5.53,0.66,4.72,-0.79,0.78,-0.06,-0.20,6.31,5.50,4.87 8651.03,5.34,0.17,4.72,-0.83,0.83,-0.10,-0.23,6.16,5.55,5.17 8737.54,5.15,-0.38,4.72,-0.87,0.86,-0.14,-0.26,6.01,5.59,5.53 8824.92,4.96,-0.98,4.72,-0.90,0.90,-0.17,-0.29,5.85,5.62,5.94 8913.17,4.76,-1.61,4.71,-0.93,0.92,-0.21,-0.31,5.68,5.64,6.37 9002.30,4.56,-2.26,4.70,-0.95,0.95,-0.24,-0.34,5.50,5.65,6.82 9092.32,4.39,-2.82,4.69,-0.96,0.97,-0.28,-0.37,5.35,5.65,7.21 9183.25,4.21,-3.34,4.67,-0.98,0.98,-0.32,-0.40,5.19,5.65,7.55 9275.08,4.04,-3.78,4.65,-0.99,0.99,-0.35,-0.42,5.02,5.63,7.82 9367.83,3.88,-4.14,4.62,-0.99,0.99,-0.39,-0.45,4.87,5.61,8.02 9461.51,3.74,-4.39,4.59,-0.99,0.99,-0.43,-0.48,4.73,5.59,8.13 9556.12,3.61,-4.52,4.56,-0.98,0.99,-0.47,-0.50,4.60,5.56,8.13 9651.68,3.47,-4.55,4.53,-0.97,0.98,-0.50,-0.53,4.45,5.51,8.02 9748.20,3.35,-4.50,4.50,-0.96,0.97,-0.54,-0.56,4.31,5.46,7.85 9845.68,3.23,-4.36,4.46,-0.94,0.94,-0.58,-0.59,4.17,5.40,7.59 9944.14,3.11,-4.19,4.42,-0.92,0.90,-0.62,-0.62,4.01,5.32,7.30 10043.58,3.01,-3.95,4.37,-0.88,0.86,-0.66,-0.65,3.87,5.23,6.96 10144.02,2.91,-3.71,4.35,-0.81,0.80,-0.70,-0.69,3.71,5.15,6.62 10245.46,2.83,-3.45,4.32,-0.74,0.74,-0.74,-0.72,3.57,5.07,6.28 10347.91,2.76,-3.21,4.30,-0.66,0.67,-0.78,-0.75,3.43,4.96,5.97 10451.39,2.71,-2.99,4.26,-0.58,0.59,-0.83,-0.79,3.30,4.85,5.70 10555.91,2.67,-2.80,4.23,-0.50,0.50,-0.87,-0.83,3.17,4.73,5.47 10661.46,2.65,-2.64,4.19,-0.41,0.42,-0.91,-0.87,3.06,4.60,5.29 10768.08,2.66,-2.48,4.15,-0.32,0.32,-0.96,-0.91,2.98,4.47,5.14 10875.76,2.67,-2.37,4.10,-0.23,0.23,-1.01,-0.96,2.90,4.34,5.04 10984.52,2.69,-2.28,4.06,-0.14,0.14,-1.05,-1.01,2.83,4.19,4.97 11094.36,2.73,-2.19,4.00,-0.04,0.04,-1.10,-1.06,2.77,4.04,4.92 11205.31,2.77,-2.11,3.95,0.06,-0.06,-1.15,-1.11,2.71,3.89,4.88 11317.36,2.81,-1.99,3.89,0.16,-0.16,-1.20,-1.16,2.64,3.73,4.80 11430.53,2.86,-1.84,3.83,0.27,-0.27,-1.25,-1.22,2.59,3.56,4.70 11544.84,2.90,-1.68,3.77,0.38,-0.38,-1.30,-1.28,2.52,3.39,4.58 11660.29,2.95,-1.46,3.70,0.49,-0.49,-1.36,-1.35,2.46,3.21,4.41 11776.89,2.99,-1.21,3.63,0.61,-0.61,-1.42,-1.42,2.38,3.02,4.20 11894.66,3.04,-0.94,3.56,0.72,-0.72,-1.47,-1.49,2.31,2.83,3.98 12013.60,3.07,-0.63,3.48,0.84,-0.84,-1.53,-1.57,2.22,2.63,3.70 12133.74,3.07,-0.31,3.40,0.97,-0.97,-1.59,-1.65,2.10,2.43,3.38 12255.08,3.04,0.01,3.32,1.10,-1.10,-1.66,-1.74,1.94,2.22,3.03 12377.63,2.97,0.31,3.23,1.22,-1.22,-1.72,-1.83,1.74,2.01,2.66 12501.41,2.86,0.60,3.14,1.36,-1.36,-1.79,-1.93,1.50,1.78,2.26 12626.42,2.71,0.86,3.05,1.49,-1.49,-1.86,-2.04,1.22,1.56,1.85 12752.68,2.54,1.10,2.95,1.63,-1.63,-1.93,-2.16,0.91,1.32,1.44 12880.21,2.33,1.27,2.85,1.77,-1.77,-2.00,-2.28,0.56,1.08,1.06 13009.01,2.08,1.39,2.75,1.92,-1.92,-2.08,-2.41,0.16,0.83,0.69 13139.10,1.80,1.45,2.65,2.06,-2.06,-2.16,-2.55,-0.27,0.58,0.35 13270.49,1.51,1.45,2.54,2.21,-2.21,-2.24,-2.71,-0.71,0.32,0.06 13403.20,1.22,1.41,2.43,2.37,-2.37,-2.33,-2.87,-1.15,0.06,-0.19 13537.23,0.91,1.33,2.31,2.52,-2.52,-2.42,-3.05,-1.61,-0.21,-0.42 13672.60,0.62,1.27,2.19,2.68,-2.68,-2.51,-3.24,-2.06,-0.49,-0.65 13809.33,0.37,1.24,2.07,2.84,-2.84,-2.61,-3.45,-2.48,-0.77,-0.87 13947.42,0.15,1.25,1.95,3.01,-3.01,-2.71,-3.67,-2.86,-1.06,-1.10 14086.90,-0.02,1.33,1.82,3.18,-3.18,-2.81,-3.91,-3.20,-1.36,-1.35 14227.77,-0.14,1.47,1.69,3.35,-3.35,-2.92,-4.17,-3.49,-1.66,-1.61 14370.04,-0.19,1.73,1.55,3.52,-3.52,-3.04,-4.45,-3.71,-1.96,-1.92 14513.74,-0.21,2.08,1.42,3.70,-3.70,-3.16,-4.75,-3.91,-2.28,-2.29 14658.88,-0.19,2.51,1.28,3.87,-3.87,-3.28,-5.07,-4.07,-2.60,-2.70 14805.47,-0.14,3.03,1.13,4.06,-4.06,-3.41,-5.40,-4.20,-2.92,-3.17 14953.52,-0.07,3.64,0.99,4.24,-4.24,-3.55,-5.75,-4.31,-3.26,-3.71 15103.06,0.02,4.35,0.84,4.43,-4.43,-3.70,-6.10,-4.41,-3.59,-4.33 15254.09,0.10,5.09,0.68,4.62,-4.62,-3.85,-6.45,-4.52,-3.94,-4.99 15406.63,0.19,5.88,0.53,4.81,-4.81,-4.01,-6.78,-4.63,-4.29,-5.69 15560.70,0.27,6.67,0.37,5.01,-5.01,-4.18,-7.07,-4.74,-4.64,-6.40 15716.30,0.32,7.40,0.21,5.21,-5.21,-4.36,-7.31,-4.89,-5.01,-7.08 15873.47,0.34,8.07,0.04,5.41,-5.41,-4.55,-7.45,-5.08,-5.37,-7.73 16032.20,0.34,8.68,-0.13,5.62,-5.62,-4.75,-7.49,-5.28,-5.75,-8.34 16192.52,0.32,9.27,-0.30,5.83,-5.83,-4.96,-7.40,-5.51,-6.13,-8.95 16354.45,0.26,9.73,-0.48,6.04,-6.04,-5.18,-7.20,-5.78,-6.52,-9.47 16517.99,0.18,10.06,-0.66,6.25,-6.25,-5.42,-6.88,-6.08,-6.91,-9.88 16683.17,0.09,10.27,-0.84,6.47,-6.47,-5.67,-6.47,-6.38,-7.31,-10.18 16850.01,-0.02,10.35,-1.02,6.69,-6.69,-5.94,-6.01,-6.71,-7.71,-10.37 17018.51,-0.15,10.34,-1.21,6.91,-6.91,-6.22,-5.51,-7.07,-8.12,-10.49 17188.69,-0.30,10.38,-1.40,7.14,-7.14,-6.52,-5.00,-7.44,-8.54,-10.68 17360.58,-0.46,10.31,-1.60,7.37,-7.37,-6.84,-4.50,-7.83,-8.96,-10.77 17534.18,-0.64,10.16,-1.79,7.60,-7.60,-7.17,-4.02,-8.24,-9.39,-10.80 17709.53,-0.84,9.91,-1.99,7.84,-7.84,-7.53,-3.56,-8.68,-9.83,-10.75 17886.62,-1.05,9.62,-2.20,8.07,-8.07,-7.90,-3.14,-9.13,-10.27,-10.67 18065.49,-1.28,9.45,-2.41,8.31,-8.31,-8.29,-2.76,-9.60,-10.72,-10.73 18246.14,-1.51,9.40,-2.62,8.56,-8.56,-8.69,-2.40,-10.07,-11.17,-10.91 18428.60,-1.76,9.29,-2.83,8.80,-8.80,-9.10,-2.09,-10.57,-11.63,-11.05 18612.89,-2.03,9.13,-3.05,9.05,-9.05,-9.50,-1.80,-11.09,-12.10,-11.16 18799.02,-2.31,8.90,-3.27,9.31,-9.31,-9.87,-1.54,-11.62,-12.57,-11.21 18987.01,-2.60,8.62,-3.49,9.56,-9.56,-10.19,-1.32,-12.16,-13.05,-11.22 19176.88,-2.91,8.58,-3.71,9.82,-9.82,-10.42,-1.11,-12.73,-13.53,-11.49 19368.65,-3.24,8.50,-3.94,10.08,-10.08,-10.50,-0.94,-13.32,-14.02,-11.74 19562.33,-3.57,8.37,-4.18,10.34,-10.34,-10.41,-0.78,-13.92,-14.52,-11.94 19757.96,-3.92,8.18,-4.41,10.61,-10.61,-10.10,-0.64,-14.53,-15.02,-12.10 19955.54,-4.29,7.93,-4.65,10.88,-10.88,-9.55,-0.52,-15.17,-15.53,-12.22
CSV
3
vinzmc/AutoEq
results/referenceaudioanalyzer/referenceaudioanalyzer_hdm1_harman_over-ear_2018/Philips SHL5905BK/Philips SHL5905BK.csv
[ "MIT" ]
/* * Copyright 2021 The OpenSSL Project Authors. All Rights Reserved. * * Licensed under the Apache License 2.0 (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy * in the file LICENSE in the source distribution or at * https://www.openssl.org/source/license.html */ /* * This is a read only BIO filter that can be used to add BIO_tell() and * BIO_seek() support to source/sink BIO's (such as a file BIO that uses stdin). * It does this by caching ALL data read from the BIO source/sink into a * resizable memory buffer. */ #include <stdio.h> #include <errno.h> #include "bio_local.h" #include "internal/cryptlib.h" #define DEFAULT_BUFFER_SIZE 4096 static int readbuffer_write(BIO *h, const char *buf, int num); static int readbuffer_read(BIO *h, char *buf, int size); static int readbuffer_puts(BIO *h, const char *str); static int readbuffer_gets(BIO *h, char *str, int size); static long readbuffer_ctrl(BIO *h, int cmd, long arg1, void *arg2); static int readbuffer_new(BIO *h); static int readbuffer_free(BIO *data); static long readbuffer_callback_ctrl(BIO *h, int cmd, BIO_info_cb *fp); static const BIO_METHOD methods_readbuffer = { BIO_TYPE_BUFFER, "readbuffer", bwrite_conv, readbuffer_write, bread_conv, readbuffer_read, readbuffer_puts, readbuffer_gets, readbuffer_ctrl, readbuffer_new, readbuffer_free, readbuffer_callback_ctrl, }; const BIO_METHOD *BIO_f_readbuffer(void) { return &methods_readbuffer; } static int readbuffer_new(BIO *bi) { BIO_F_BUFFER_CTX *ctx = OPENSSL_zalloc(sizeof(*ctx)); if (ctx == NULL) return 0; ctx->ibuf_size = DEFAULT_BUFFER_SIZE; ctx->ibuf = OPENSSL_zalloc(DEFAULT_BUFFER_SIZE); if (ctx->ibuf == NULL) { OPENSSL_free(ctx); return 0; } bi->init = 1; bi->ptr = (char *)ctx; bi->flags = 0; return 1; } static int readbuffer_free(BIO *a) { BIO_F_BUFFER_CTX *b; if (a == NULL) return 0; b = (BIO_F_BUFFER_CTX *)a->ptr; OPENSSL_free(b->ibuf); OPENSSL_free(a->ptr); a->ptr = NULL; a->init = 0; a->flags = 0; return 1; } static int readbuffer_resize(BIO_F_BUFFER_CTX *ctx, int sz) { char *tmp; /* Figure out how many blocks are required */ sz += (ctx->ibuf_off + DEFAULT_BUFFER_SIZE - 1); sz = DEFAULT_BUFFER_SIZE * (sz / DEFAULT_BUFFER_SIZE); /* Resize if the buffer is not big enough */ if (sz > ctx->ibuf_size) { tmp = OPENSSL_realloc(ctx->ibuf, sz); if (tmp == NULL) return 0; ctx->ibuf = tmp; ctx->ibuf_size = sz; } return 1; } static int readbuffer_read(BIO *b, char *out, int outl) { int i, num = 0; BIO_F_BUFFER_CTX *ctx; if (out == NULL || outl == 0) return 0; ctx = (BIO_F_BUFFER_CTX *)b->ptr; if ((ctx == NULL) || (b->next_bio == NULL)) return 0; BIO_clear_retry_flags(b); for (;;) { i = ctx->ibuf_len; /* If there is something in the buffer just read it. */ if (i != 0) { if (i > outl) i = outl; memcpy(out, &(ctx->ibuf[ctx->ibuf_off]), i); ctx->ibuf_off += i; ctx->ibuf_len -= i; num += i; /* Exit if we have read the bytes required out of the buffer */ if (outl == i) return num; outl -= i; out += i; } /* Only gets here if the buffer has been consumed */ if (!readbuffer_resize(ctx, outl)) return 0; /* Do some buffering by reading from the next bio */ i = BIO_read(b->next_bio, ctx->ibuf + ctx->ibuf_off, outl); if (i <= 0) { BIO_copy_next_retry(b); if (i < 0) return ((num > 0) ? num : i); else return num; /* i == 0 */ } ctx->ibuf_len = i; } } static int readbuffer_write(BIO *b, const char *in, int inl) { return 0; } static int readbuffer_puts(BIO *b, const char *str) { return 0; } static long readbuffer_ctrl(BIO *b, int cmd, long num, void *ptr) { BIO_F_BUFFER_CTX *ctx; long ret = 1, sz; ctx = (BIO_F_BUFFER_CTX *)b->ptr; switch (cmd) { case BIO_CTRL_EOF: if (ctx->ibuf_len > 0) return 0; if (b->next_bio == NULL) return 1; ret = BIO_ctrl(b->next_bio, cmd, num, ptr); break; case BIO_C_FILE_SEEK: case BIO_CTRL_RESET: sz = ctx->ibuf_off + ctx->ibuf_len; /* Assume it can only seek backwards */ if (num < 0 || num > sz) return 0; ctx->ibuf_off = num; ctx->ibuf_len = sz - num; break; case BIO_C_FILE_TELL: case BIO_CTRL_INFO: ret = (long)ctx->ibuf_off; break; case BIO_CTRL_PENDING: ret = (long)ctx->ibuf_len; if (ret == 0) { if (b->next_bio == NULL) return 0; ret = BIO_ctrl(b->next_bio, cmd, num, ptr); } break; case BIO_CTRL_DUP: case BIO_CTRL_FLUSH: ret = 1; break; default: ret = 0; break; } return ret; } static long readbuffer_callback_ctrl(BIO *b, int cmd, BIO_info_cb *fp) { if (b->next_bio == NULL) return 0; return BIO_callback_ctrl(b->next_bio, cmd, fp); } static int readbuffer_gets(BIO *b, char *buf, int size) { BIO_F_BUFFER_CTX *ctx; int num = 0, num_chars, found_newline; char *p; int i, j; if (size == 0) return 0; --size; /* the passed in size includes the terminator - so remove it here */ ctx = (BIO_F_BUFFER_CTX *)b->ptr; BIO_clear_retry_flags(b); /* If data is already buffered then use this first */ if (ctx->ibuf_len > 0) { p = ctx->ibuf + ctx->ibuf_off; found_newline = 0; for (num_chars = 0; (num_chars < ctx->ibuf_len) && (num_chars < size); num_chars++) { *buf++ = p[num_chars]; if (p[num_chars] == '\n') { found_newline = 1; num_chars++; break; } } num += num_chars; size -= num_chars; ctx->ibuf_len -= num_chars; ctx->ibuf_off += num_chars; if (found_newline || size == 0) { *buf = '\0'; return num; } } /* * If there is no buffered data left then read any remaining data from the * next bio. */ /* Resize if we have to */ if (!readbuffer_resize(ctx, 1 + size)) return 0; /* * Read more data from the next bio using BIO_read_ex: * Note we cannot use BIO_gets() here as it does not work on a * binary stream that contains 0x00. (Since strlen() will stop at * any 0x00 not at the last read '\n' in a FILE bio). * Also note that some applications open and close the file bio * multiple times and need to read the next available block when using * stdin - so we need to READ one byte at a time! */ p = ctx->ibuf + ctx->ibuf_off; for (i = 0; i < size; ++i) { j = BIO_read(b->next_bio, p, 1); if (j <= 0) { BIO_copy_next_retry(b); *buf = '\0'; return num > 0 ? num : j; } *buf++ = *p; num++; ctx->ibuf_off++; if (*p == '\n') break; ++p; } *buf = '\0'; return num; }
C
5
pmesnier/openssl
crypto/bio/bf_readbuff.c
[ "Apache-2.0" ]
- service_ping_enabled = Gitlab::CurrentSettings.usage_ping_enabled - if !service_ping_enabled #js-devops-service-ping-disabled{ data: { is_admin: current_user&.admin.to_s, empty_state_svg_path: image_path('illustrations/convdev/convdev_no_index.svg'), enable_service_ping_path: metrics_and_profiling_admin_application_settings_path(anchor: 'js-usage-settings'), docs_link: help_page_path('development/service_ping/index.md') } } - else #js-devops-score{ data: { devops_score_metrics: devops_score_metrics(@metric).to_json, no_data_image_path: image_path('dev_ops_report_no_data.svg'), devops_score_intro_image_path: image_path('dev_ops_report_overview.svg') } }
Haml
3
Testiduk/gitlabhq
app/views/admin/dev_ops_report/_report.html.haml
[ "MIT" ]
#!/usr/bin/perl use MIME::Base64; if (!defined $ENV{HTTP_AUTHORIZATION}) { print "Status: 401 Unauthorized\r\n"; print "WWW-Authenticate: Basic realm=\"WebKit Test Realm\"\r\n\r\n"; } else { my $auth = decode_base64(substr($ENV{HTTP_AUTHORIZATION},6)); if ($auth eq "TestUser:TestPassword") { print "Content-type: text/javascript\r\n\r\n"; print "console.log('Credentials accepted!');"; } else { print "Status: 401 Unauthorized\r\n"; print "WWW-Authenticate: Basic realm=\"WebKit Test Realm\"\r\n\r\n"; } }
Perl
2
zealoussnow/chromium
third_party/blink/web_tests/http/tests/inspector-protocol/network/resources/unauthorised.pl
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
/** * Author......: See docs/credits.txt * License.....: MIT */ #define NEW_SIMD_CODE #ifdef KERNEL_STATIC #include "inc_vendor.h" #include "inc_types.h" #include "inc_platform.cl" #include "inc_common.cl" #include "inc_simd.cl" #include "inc_hash_sha1.cl" #endif DECLSPEC u64 u32_to_u64 (const u32 in) { const u64 t0 = (u64) ((in >> 24) & 0xff); const u64 t1 = (u64) ((in >> 16) & 0xff); const u64 t2 = (u64) ((in >> 8) & 0xff); const u64 t3 = (u64) ((in >> 0) & 0xff); const u64 out = (t0 << 48) | (t1 << 32) | (t2 << 16) | (t3 << 0); return out; } DECLSPEC u32 u64_to_u32 (const u64 in) { const u32 t0 = (u32) ((in >> 48) & 0xff); const u32 t1 = (u32) ((in >> 32) & 0xff); const u32 t2 = (u32) ((in >> 16) & 0xff); const u32 t3 = (u32) ((in >> 0) & 0xff); const u32 out = (t0 << 24) | (t1 << 16) | (t2 << 8) | (t3 << 0); return out; } DECLSPEC int replace_u32_be (const u32 input, u32 *output, int cur_len) { // expand to keep 9th bit consistent u64 input64 = u32_to_u64 (input); u64 m64 = input64; m64 ^= 0x002e002e002e002eUL; // convert 0x2e to 0x00 m64 ^= 0x00ff00ff00ff00ffUL; // convert 0x00 to 0xff (jit will optimize this to one instruction) m64 += 0x0001000100010001UL; // only 0xff can set 9th bit m64 &= 0x0100010001000100UL; // only 9th bit survives m64 |= m64 << 1; // converts 0x0100 to 0xff00 m64 |= m64 << 2; m64 |= m64 << 4; m64 >>= 8; // back to original positions (in 64 bit) u32 m = u64_to_u32 (m64); u32 r = 0; const u32 mn = ~m; const u32 r0 = mn & 0xff000000; const u32 r1 = mn & 0x00ff0000; const u32 r2 = mn & 0x0000ff00; const u32 r3 = mn & 0x000000ff; r |= cur_len; cur_len = (cur_len + 0x00000001) & r3; cur_len <<= 8; r |= cur_len; cur_len = (cur_len + 0x00000100) & r2; cur_len <<= 8; r |= cur_len; cur_len = (cur_len + 0x00010000) & r1; cur_len <<= 8; r |= cur_len; cur_len = (cur_len + 0x01000000) & r0; cur_len >>= 24; *output = (input & mn) | (r & m); return cur_len; } DECLSPEC u32 replace_dot_by_len (u32 *w0, u32 *w1, u32 *w2, u32 *w3, const u32 pw_len) { // loop over w3...w0 (4 * 16 = 64 bytes): int cur_len = 0 - (64 - pw_len); // number of padding bytes relative to buffer size cur_len = replace_u32_be (w3[3], &w3[3], cur_len); cur_len = replace_u32_be (w3[2], &w3[2], cur_len); cur_len = replace_u32_be (w3[1], &w3[1], cur_len); cur_len = replace_u32_be (w3[0], &w3[0], cur_len); cur_len = replace_u32_be (w2[3], &w2[3], cur_len); cur_len = replace_u32_be (w2[2], &w2[2], cur_len); cur_len = replace_u32_be (w2[1], &w2[1], cur_len); cur_len = replace_u32_be (w2[0], &w2[0], cur_len); cur_len = replace_u32_be (w1[3], &w1[3], cur_len); cur_len = replace_u32_be (w1[2], &w1[2], cur_len); cur_len = replace_u32_be (w1[1], &w1[1], cur_len); cur_len = replace_u32_be (w1[0], &w1[0], cur_len); cur_len = replace_u32_be (w0[3], &w0[3], cur_len); cur_len = replace_u32_be (w0[2], &w0[2], cur_len); cur_len = replace_u32_be (w0[1], &w0[1], cur_len); cur_len = replace_u32_be (w0[0], &w0[0], cur_len); return cur_len; } #define REPLACE_DOT_BY_LEN_VECT(n) \ { \ u32 tmp0[4]; \ \ tmp0[0] = w0_t[0].s##n; \ tmp0[1] = w0_t[1].s##n; \ tmp0[2] = w0_t[2].s##n; \ tmp0[3] = w0_t[3].s##n; \ \ u32 tmp1[4]; \ \ tmp1[0] = w1_t[0].s##n; \ tmp1[1] = w1_t[1].s##n; \ tmp1[2] = w1_t[2].s##n; \ tmp1[3] = w1_t[3].s##n; \ \ u32 tmp2[4]; \ \ tmp2[0] = w2_t[0].s##n; \ tmp2[1] = w2_t[1].s##n; \ tmp2[2] = w2_t[2].s##n; \ tmp2[3] = w2_t[3].s##n; \ \ u32 tmp3[4]; \ \ tmp3[0] = w3_t[0].s##n; \ tmp3[1] = w3_t[1].s##n; \ tmp3[2] = w3_t[2].s##n; \ tmp3[3] = w3_t[3].s##n; \ \ const u32 len = replace_dot_by_len (tmp0, tmp1, tmp2, tmp3, pw_len); \ \ switch_buffer_by_offset_be_S (tmp0, tmp1, tmp2, tmp3, 1); \ \ tmp0[0] |= (len & 0xff) << 24; \ \ w0_t[0].s##n = tmp0[0]; \ w0_t[1].s##n = tmp0[1]; \ w0_t[2].s##n = tmp0[2]; \ w0_t[3].s##n = tmp0[3]; \ \ w1_t[0].s##n = tmp1[0]; \ w1_t[1].s##n = tmp1[1]; \ w1_t[2].s##n = tmp1[2]; \ w1_t[3].s##n = tmp1[3]; \ \ w2_t[0].s##n = tmp2[0]; \ w2_t[1].s##n = tmp2[1]; \ w2_t[2].s##n = tmp2[2]; \ w2_t[3].s##n = tmp2[3]; \ \ w3_t[0].s##n = tmp3[0]; \ w3_t[1].s##n = tmp3[1]; \ w3_t[2].s##n = tmp3[2]; \ w3_t[3].s##n = tmp3[3]; \ } DECLSPEC void m08300m (u32 *w0, u32 *w1, u32 *w2, u32 *w3, const u32 pw_len, KERN_ATTR_BASIC ()) { /** * modifier */ const u64 gid = get_global_id (0); const u64 lid = get_local_id (0); /** * salt */ const u32 salt_iter = salt_bufs[SALT_POS].salt_iter; u32 salt_buf0[4]; u32 salt_buf1[4]; salt_buf0[0] = hc_swap32_S (salt_bufs[SALT_POS].salt_buf[ 0]); salt_buf0[1] = hc_swap32_S (salt_bufs[SALT_POS].salt_buf[ 1]); salt_buf0[2] = hc_swap32_S (salt_bufs[SALT_POS].salt_buf[ 2]); salt_buf0[3] = hc_swap32_S (salt_bufs[SALT_POS].salt_buf[ 3]); salt_buf1[0] = hc_swap32_S (salt_bufs[SALT_POS].salt_buf[ 4]); salt_buf1[1] = hc_swap32_S (salt_bufs[SALT_POS].salt_buf[ 5]); salt_buf1[2] = hc_swap32_S (salt_bufs[SALT_POS].salt_buf[ 6]); salt_buf1[3] = hc_swap32_S (salt_bufs[SALT_POS].salt_buf[ 7]); const u32 salt_len = salt_bufs[SALT_POS].salt_len; u32 domain_buf0[4]; u32 domain_buf1[4]; domain_buf0[0] = hc_swap32_S (salt_bufs[SALT_POS].salt_buf_pc[ 0]); domain_buf0[1] = hc_swap32_S (salt_bufs[SALT_POS].salt_buf_pc[ 1]); domain_buf0[2] = hc_swap32_S (salt_bufs[SALT_POS].salt_buf_pc[ 2]); domain_buf0[3] = hc_swap32_S (salt_bufs[SALT_POS].salt_buf_pc[ 3]); domain_buf1[0] = hc_swap32_S (salt_bufs[SALT_POS].salt_buf_pc[ 4]); domain_buf1[1] = hc_swap32_S (salt_bufs[SALT_POS].salt_buf_pc[ 5]); domain_buf1[2] = hc_swap32_S (salt_bufs[SALT_POS].salt_buf_pc[ 6]); domain_buf1[3] = 0; const u32 domain_len = salt_bufs[SALT_POS].salt_len_pc; u32 s0[4]; u32 s1[4]; u32 s2[4]; u32 s3[4]; s0[0] = domain_buf0[0]; s0[1] = domain_buf0[1]; s0[2] = domain_buf0[2]; s0[3] = domain_buf0[3]; s1[0] = domain_buf1[0]; s1[1] = domain_buf1[1]; s1[2] = domain_buf1[2]; s1[3] = domain_buf1[3]; s2[0] = 0; s2[1] = 0; s2[2] = 0; s2[3] = 0; s3[0] = 0; s3[1] = 0; s3[2] = 0; s3[3] = 0; switch_buffer_by_offset_be_S (s0, s1, s2, s3, pw_len); w0[0] |= s0[0]; w0[1] |= s0[1]; w0[2] |= s0[2]; w0[3] |= s0[3]; w1[0] |= s1[0]; w1[1] |= s1[1]; w1[2] |= s1[2]; w1[3] |= s1[3]; w2[0] |= s2[0]; w2[1] |= s2[1]; w2[2] |= s2[2]; w2[3] |= s2[3]; w3[0] |= s3[0]; w3[1] |= s3[1]; w3[2] |= s3[2]; w3[3] |= s3[3]; s0[0] = salt_buf0[0]; s0[1] = salt_buf0[1]; s0[2] = salt_buf0[2]; s0[3] = salt_buf0[3]; s1[0] = salt_buf1[0]; s1[1] = salt_buf1[1]; s1[2] = salt_buf1[2]; s1[3] = salt_buf1[3]; s2[0] = 0; s2[1] = 0; s2[2] = 0; s2[3] = 0; s3[0] = 0; s3[1] = 0; s3[2] = 0; s3[3] = 0; switch_buffer_by_offset_be_S (s0, s1, s2, s3, pw_len + domain_len + 1); w0[0] |= s0[0]; w0[1] |= s0[1]; w0[2] |= s0[2]; w0[3] |= s0[3]; w1[0] |= s1[0]; w1[1] |= s1[1]; w1[2] |= s1[2]; w1[3] |= s1[3]; w2[0] |= s2[0]; w2[1] |= s2[1]; w2[2] |= s2[2]; w2[3] |= s2[3]; w3[0] |= s3[0]; w3[1] |= s3[1]; w3[2] |= s3[2]; w3[3] |= s3[3]; /** * loop */ u32 w0l = w0[0]; for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE) { const u32x w0r = ix_create_bft (bfs_buf, il_pos); const u32x w0lr = w0l | w0r; u32x w0_t[4]; u32x w1_t[4]; u32x w2_t[4]; u32x w3_t[4]; w0_t[0] = w0lr; w0_t[1] = w0[1]; w0_t[2] = w0[2]; w0_t[3] = w0[3]; w1_t[0] = w1[0]; w1_t[1] = w1[1]; w1_t[2] = w1[2]; w1_t[3] = w1[3]; w2_t[0] = w2[0]; w2_t[1] = w2[1]; w2_t[2] = w2[2]; w2_t[3] = w2[3]; w3_t[0] = w3[0]; w3_t[1] = w3[1]; w3_t[2] = w3[2]; w3_t[3] = w3[3]; // replace "." with the length: #if VECT_SIZE == 1 const u32 len = replace_dot_by_len (w0_t, w1_t, w2_t, w3_t, pw_len); switch_buffer_by_offset_be (w0_t, w1_t, w2_t, w3_t, 1); w0_t[0] |= (len & 0xff) << 24; #endif #if VECT_SIZE >= 2 REPLACE_DOT_BY_LEN_VECT (0) REPLACE_DOT_BY_LEN_VECT (1) #endif #if VECT_SIZE >= 4 REPLACE_DOT_BY_LEN_VECT (2) REPLACE_DOT_BY_LEN_VECT (3) #endif #if VECT_SIZE >= 8 REPLACE_DOT_BY_LEN_VECT (4) REPLACE_DOT_BY_LEN_VECT (5) REPLACE_DOT_BY_LEN_VECT (6) REPLACE_DOT_BY_LEN_VECT (7) #endif #if VECT_SIZE >= 16 REPLACE_DOT_BY_LEN_VECT (8) REPLACE_DOT_BY_LEN_VECT (9) REPLACE_DOT_BY_LEN_VECT (a) REPLACE_DOT_BY_LEN_VECT (b) REPLACE_DOT_BY_LEN_VECT (c) REPLACE_DOT_BY_LEN_VECT (d) REPLACE_DOT_BY_LEN_VECT (e) REPLACE_DOT_BY_LEN_VECT (f) #endif w3_t[2] = 0; w3_t[3] = (1 + pw_len + domain_len + 1 + salt_len) * 8; /** * sha1 */ u32x digest[5]; digest[0] = SHA1M_A; digest[1] = SHA1M_B; digest[2] = SHA1M_C; digest[3] = SHA1M_D; digest[4] = SHA1M_E; sha1_transform_vector (w0_t, w1_t, w2_t, w3_t, digest); // iterations for (u32 i = 0; i < salt_iter; i++) { w0_t[0] = digest[0]; w0_t[1] = digest[1]; w0_t[2] = digest[2]; w0_t[3] = digest[3]; w1_t[0] = digest[4]; w1_t[1] = salt_buf0[0]; w1_t[2] = salt_buf0[1]; w1_t[3] = salt_buf0[2]; w2_t[0] = salt_buf0[3]; w2_t[1] = salt_buf1[0]; w2_t[2] = salt_buf1[1]; w2_t[3] = salt_buf1[2]; w3_t[0] = salt_buf1[3]; w3_t[1] = 0; w3_t[2] = 0; w3_t[3] = (20 + salt_len) * 8; digest[0] = SHA1M_A; digest[1] = SHA1M_B; digest[2] = SHA1M_C; digest[3] = SHA1M_D; digest[4] = SHA1M_E; sha1_transform_vector (w0_t, w1_t, w2_t, w3_t, digest); } COMPARE_M_SIMD (digest[3], digest[4], digest[2], digest[1]); } } DECLSPEC void m08300s (u32 *w0, u32 *w1, u32 *w2, u32 *w3, const u32 pw_len, KERN_ATTR_BASIC ()) { /** * modifier */ const u64 gid = get_global_id (0); const u64 lid = get_local_id (0); /** * salt */ const u32 salt_iter = salt_bufs[SALT_POS].salt_iter; u32 salt_buf0[4]; u32 salt_buf1[4]; salt_buf0[0] = hc_swap32_S (salt_bufs[SALT_POS].salt_buf[ 0]); salt_buf0[1] = hc_swap32_S (salt_bufs[SALT_POS].salt_buf[ 1]); salt_buf0[2] = hc_swap32_S (salt_bufs[SALT_POS].salt_buf[ 2]); salt_buf0[3] = hc_swap32_S (salt_bufs[SALT_POS].salt_buf[ 3]); salt_buf1[0] = hc_swap32_S (salt_bufs[SALT_POS].salt_buf[ 4]); salt_buf1[1] = hc_swap32_S (salt_bufs[SALT_POS].salt_buf[ 5]); salt_buf1[2] = hc_swap32_S (salt_bufs[SALT_POS].salt_buf[ 6]); salt_buf1[3] = hc_swap32_S (salt_bufs[SALT_POS].salt_buf[ 7]); const u32 salt_len = salt_bufs[SALT_POS].salt_len; u32 domain_buf0[4]; u32 domain_buf1[4]; domain_buf0[0] = hc_swap32_S (salt_bufs[SALT_POS].salt_buf_pc[ 0]); domain_buf0[1] = hc_swap32_S (salt_bufs[SALT_POS].salt_buf_pc[ 1]); domain_buf0[2] = hc_swap32_S (salt_bufs[SALT_POS].salt_buf_pc[ 2]); domain_buf0[3] = hc_swap32_S (salt_bufs[SALT_POS].salt_buf_pc[ 3]); domain_buf1[0] = hc_swap32_S (salt_bufs[SALT_POS].salt_buf_pc[ 4]); domain_buf1[1] = hc_swap32_S (salt_bufs[SALT_POS].salt_buf_pc[ 5]); domain_buf1[2] = hc_swap32_S (salt_bufs[SALT_POS].salt_buf_pc[ 6]); domain_buf1[3] = 0; const u32 domain_len = salt_bufs[SALT_POS].salt_len_pc; u32 s0[4]; u32 s1[4]; u32 s2[4]; u32 s3[4]; s0[0] = domain_buf0[0]; s0[1] = domain_buf0[1]; s0[2] = domain_buf0[2]; s0[3] = domain_buf0[3]; s1[0] = domain_buf1[0]; s1[1] = domain_buf1[1]; s1[2] = domain_buf1[2]; s1[3] = domain_buf1[3]; s2[0] = 0; s2[1] = 0; s2[2] = 0; s2[3] = 0; s3[0] = 0; s3[1] = 0; s3[2] = 0; s3[3] = 0; switch_buffer_by_offset_be_S (s0, s1, s2, s3, pw_len); w0[0] |= s0[0]; w0[1] |= s0[1]; w0[2] |= s0[2]; w0[3] |= s0[3]; w1[0] |= s1[0]; w1[1] |= s1[1]; w1[2] |= s1[2]; w1[3] |= s1[3]; w2[0] |= s2[0]; w2[1] |= s2[1]; w2[2] |= s2[2]; w2[3] |= s2[3]; w3[0] |= s3[0]; w3[1] |= s3[1]; w3[2] |= s3[2]; w3[3] |= s3[3]; s0[0] = salt_buf0[0]; s0[1] = salt_buf0[1]; s0[2] = salt_buf0[2]; s0[3] = salt_buf0[3]; s1[0] = salt_buf1[0]; s1[1] = salt_buf1[1]; s1[2] = salt_buf1[2]; s1[3] = salt_buf1[3]; s2[0] = 0; s2[1] = 0; s2[2] = 0; s2[3] = 0; s3[0] = 0; s3[1] = 0; s3[2] = 0; s3[3] = 0; switch_buffer_by_offset_be_S (s0, s1, s2, s3, pw_len + domain_len + 1); w0[0] |= s0[0]; w0[1] |= s0[1]; w0[2] |= s0[2]; w0[3] |= s0[3]; w1[0] |= s1[0]; w1[1] |= s1[1]; w1[2] |= s1[2]; w1[3] |= s1[3]; w2[0] |= s2[0]; w2[1] |= s2[1]; w2[2] |= s2[2]; w2[3] |= s2[3]; w3[0] |= s3[0]; w3[1] |= s3[1]; w3[2] |= s3[2]; w3[3] |= s3[3]; /** * digest */ const u32 search[4] = { digests_buf[DIGESTS_OFFSET].digest_buf[DGST_R0], digests_buf[DIGESTS_OFFSET].digest_buf[DGST_R1], digests_buf[DIGESTS_OFFSET].digest_buf[DGST_R2], digests_buf[DIGESTS_OFFSET].digest_buf[DGST_R3] }; /** * loop */ u32 w0l = w0[0]; for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE) { const u32x w0r = ix_create_bft (bfs_buf, il_pos); const u32x w0lr = w0l | w0r; u32x w0_t[4]; u32x w1_t[4]; u32x w2_t[4]; u32x w3_t[4]; w0_t[0] = w0lr; w0_t[1] = w0[1]; w0_t[2] = w0[2]; w0_t[3] = w0[3]; w1_t[0] = w1[0]; w1_t[1] = w1[1]; w1_t[2] = w1[2]; w1_t[3] = w1[3]; w2_t[0] = w2[0]; w2_t[1] = w2[1]; w2_t[2] = w2[2]; w2_t[3] = w2[3]; w3_t[0] = w3[0]; w3_t[1] = w3[1]; w3_t[2] = w3[2]; w3_t[3] = w3[3]; // replace "." with the length: #if VECT_SIZE == 1 const u32 len = replace_dot_by_len (w0_t, w1_t, w2_t, w3_t, pw_len); switch_buffer_by_offset_be (w0_t, w1_t, w2_t, w3_t, 1); w0_t[0] |= (len & 0xff) << 24; #endif #if VECT_SIZE >= 2 REPLACE_DOT_BY_LEN_VECT (0) REPLACE_DOT_BY_LEN_VECT (1) #endif #if VECT_SIZE >= 4 REPLACE_DOT_BY_LEN_VECT (2) REPLACE_DOT_BY_LEN_VECT (3) #endif #if VECT_SIZE >= 8 REPLACE_DOT_BY_LEN_VECT (4) REPLACE_DOT_BY_LEN_VECT (5) REPLACE_DOT_BY_LEN_VECT (6) REPLACE_DOT_BY_LEN_VECT (7) #endif #if VECT_SIZE >= 16 REPLACE_DOT_BY_LEN_VECT (8) REPLACE_DOT_BY_LEN_VECT (9) REPLACE_DOT_BY_LEN_VECT (a) REPLACE_DOT_BY_LEN_VECT (b) REPLACE_DOT_BY_LEN_VECT (c) REPLACE_DOT_BY_LEN_VECT (d) REPLACE_DOT_BY_LEN_VECT (e) REPLACE_DOT_BY_LEN_VECT (f) #endif w3_t[2] = 0; w3_t[3] = (1 + pw_len + domain_len + 1 + salt_len) * 8; /** * sha1 */ u32x digest[5]; digest[0] = SHA1M_A; digest[1] = SHA1M_B; digest[2] = SHA1M_C; digest[3] = SHA1M_D; digest[4] = SHA1M_E; sha1_transform_vector (w0_t, w1_t, w2_t, w3_t, digest); // iterations for (u32 i = 0; i < salt_iter; i++) { w0_t[0] = digest[0]; w0_t[1] = digest[1]; w0_t[2] = digest[2]; w0_t[3] = digest[3]; w1_t[0] = digest[4]; w1_t[1] = salt_buf0[0]; w1_t[2] = salt_buf0[1]; w1_t[3] = salt_buf0[2]; w2_t[0] = salt_buf0[3]; w2_t[1] = salt_buf1[0]; w2_t[2] = salt_buf1[1]; w2_t[3] = salt_buf1[2]; w3_t[0] = salt_buf1[3]; w3_t[1] = 0; w3_t[2] = 0; w3_t[3] = (20 + salt_len) * 8; digest[0] = SHA1M_A; digest[1] = SHA1M_B; digest[2] = SHA1M_C; digest[3] = SHA1M_D; digest[4] = SHA1M_E; sha1_transform_vector (w0_t, w1_t, w2_t, w3_t, digest); } COMPARE_S_SIMD (digest[3], digest[4], digest[2], digest[1]); } } KERNEL_FQ void m08300_m04 (KERN_ATTR_BASIC ()) { /** * base */ const u64 gid = get_global_id (0); if (gid >= gid_max) return; u32 w0[4]; w0[0] = pws[gid].i[ 0]; w0[1] = pws[gid].i[ 1]; w0[2] = pws[gid].i[ 2]; w0[3] = pws[gid].i[ 3]; u32 w1[4]; w1[0] = 0; w1[1] = 0; w1[2] = 0; w1[3] = 0; u32 w2[4]; w2[0] = 0; w2[1] = 0; w2[2] = 0; w2[3] = 0; u32 w3[4]; w3[0] = 0; w3[1] = 0; w3[2] = 0; w3[3] = 0; const u32 pw_len = pws[gid].pw_len & 63; /** * main */ m08300m (w0, w1, w2, w3, pw_len, pws, rules_buf, combs_buf, bfs_buf, tmps, hooks, bitmaps_buf_s1_a, bitmaps_buf_s1_b, bitmaps_buf_s1_c, bitmaps_buf_s1_d, bitmaps_buf_s2_a, bitmaps_buf_s2_b, bitmaps_buf_s2_c, bitmaps_buf_s2_d, plains_buf, digests_buf, hashes_shown, salt_bufs, esalt_bufs, d_return_buf, d_extra0_buf, d_extra1_buf, d_extra2_buf, d_extra3_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, SALT_POS, loop_pos, loop_cnt, il_cnt, digests_cnt, DIGESTS_OFFSET, combs_mode, salt_repeat, pws_pos, gid_max); } KERNEL_FQ void m08300_m08 (KERN_ATTR_BASIC ()) { /** * base */ const u64 gid = get_global_id (0); if (gid >= gid_max) return; u32 w0[4]; w0[0] = pws[gid].i[ 0]; w0[1] = pws[gid].i[ 1]; w0[2] = pws[gid].i[ 2]; w0[3] = pws[gid].i[ 3]; u32 w1[4]; w1[0] = pws[gid].i[ 4]; w1[1] = pws[gid].i[ 5]; w1[2] = pws[gid].i[ 6]; w1[3] = pws[gid].i[ 7]; u32 w2[4]; w2[0] = 0; w2[1] = 0; w2[2] = 0; w2[3] = 0; u32 w3[4]; w3[0] = 0; w3[1] = 0; w3[2] = 0; w3[3] = 0; const u32 pw_len = pws[gid].pw_len & 63; /** * main */ m08300m (w0, w1, w2, w3, pw_len, pws, rules_buf, combs_buf, bfs_buf, tmps, hooks, bitmaps_buf_s1_a, bitmaps_buf_s1_b, bitmaps_buf_s1_c, bitmaps_buf_s1_d, bitmaps_buf_s2_a, bitmaps_buf_s2_b, bitmaps_buf_s2_c, bitmaps_buf_s2_d, plains_buf, digests_buf, hashes_shown, salt_bufs, esalt_bufs, d_return_buf, d_extra0_buf, d_extra1_buf, d_extra2_buf, d_extra3_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, SALT_POS, loop_pos, loop_cnt, il_cnt, digests_cnt, DIGESTS_OFFSET, combs_mode, salt_repeat, pws_pos, gid_max); } KERNEL_FQ void m08300_m16 (KERN_ATTR_BASIC ()) { /** * base */ const u64 gid = get_global_id (0); if (gid >= gid_max) return; u32 w0[4]; w0[0] = pws[gid].i[ 0]; w0[1] = pws[gid].i[ 1]; w0[2] = pws[gid].i[ 2]; w0[3] = pws[gid].i[ 3]; u32 w1[4]; w1[0] = pws[gid].i[ 4]; w1[1] = pws[gid].i[ 5]; w1[2] = pws[gid].i[ 6]; w1[3] = pws[gid].i[ 7]; u32 w2[4]; w2[0] = pws[gid].i[ 8]; w2[1] = pws[gid].i[ 9]; w2[2] = pws[gid].i[10]; w2[3] = pws[gid].i[11]; u32 w3[4]; w3[0] = pws[gid].i[12]; w3[1] = pws[gid].i[13]; w3[2] = 0; w3[3] = 0; const u32 pw_len = pws[gid].pw_len & 63; /** * main */ m08300m (w0, w1, w2, w3, pw_len, pws, rules_buf, combs_buf, bfs_buf, tmps, hooks, bitmaps_buf_s1_a, bitmaps_buf_s1_b, bitmaps_buf_s1_c, bitmaps_buf_s1_d, bitmaps_buf_s2_a, bitmaps_buf_s2_b, bitmaps_buf_s2_c, bitmaps_buf_s2_d, plains_buf, digests_buf, hashes_shown, salt_bufs, esalt_bufs, d_return_buf, d_extra0_buf, d_extra1_buf, d_extra2_buf, d_extra3_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, SALT_POS, loop_pos, loop_cnt, il_cnt, digests_cnt, DIGESTS_OFFSET, combs_mode, salt_repeat, pws_pos, gid_max); } KERNEL_FQ void m08300_s04 (KERN_ATTR_BASIC ()) { /** * base */ const u64 gid = get_global_id (0); if (gid >= gid_max) return; u32 w0[4]; w0[0] = pws[gid].i[ 0]; w0[1] = pws[gid].i[ 1]; w0[2] = pws[gid].i[ 2]; w0[3] = pws[gid].i[ 3]; u32 w1[4]; w1[0] = 0; w1[1] = 0; w1[2] = 0; w1[3] = 0; u32 w2[4]; w2[0] = 0; w2[1] = 0; w2[2] = 0; w2[3] = 0; u32 w3[4]; w3[0] = 0; w3[1] = 0; w3[2] = 0; w3[3] = 0; const u32 pw_len = pws[gid].pw_len & 63; /** * main */ m08300s (w0, w1, w2, w3, pw_len, pws, rules_buf, combs_buf, bfs_buf, tmps, hooks, bitmaps_buf_s1_a, bitmaps_buf_s1_b, bitmaps_buf_s1_c, bitmaps_buf_s1_d, bitmaps_buf_s2_a, bitmaps_buf_s2_b, bitmaps_buf_s2_c, bitmaps_buf_s2_d, plains_buf, digests_buf, hashes_shown, salt_bufs, esalt_bufs, d_return_buf, d_extra0_buf, d_extra1_buf, d_extra2_buf, d_extra3_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, SALT_POS, loop_pos, loop_cnt, il_cnt, digests_cnt, DIGESTS_OFFSET, combs_mode, salt_repeat, pws_pos, gid_max); } KERNEL_FQ void m08300_s08 (KERN_ATTR_BASIC ()) { /** * base */ const u64 gid = get_global_id (0); if (gid >= gid_max) return; u32 w0[4]; w0[0] = pws[gid].i[ 0]; w0[1] = pws[gid].i[ 1]; w0[2] = pws[gid].i[ 2]; w0[3] = pws[gid].i[ 3]; u32 w1[4]; w1[0] = pws[gid].i[ 4]; w1[1] = pws[gid].i[ 5]; w1[2] = pws[gid].i[ 6]; w1[3] = pws[gid].i[ 7]; u32 w2[4]; w2[0] = 0; w2[1] = 0; w2[2] = 0; w2[3] = 0; u32 w3[4]; w3[0] = 0; w3[1] = 0; w3[2] = 0; w3[3] = 0; const u32 pw_len = pws[gid].pw_len & 63; /** * main */ m08300s (w0, w1, w2, w3, pw_len, pws, rules_buf, combs_buf, bfs_buf, tmps, hooks, bitmaps_buf_s1_a, bitmaps_buf_s1_b, bitmaps_buf_s1_c, bitmaps_buf_s1_d, bitmaps_buf_s2_a, bitmaps_buf_s2_b, bitmaps_buf_s2_c, bitmaps_buf_s2_d, plains_buf, digests_buf, hashes_shown, salt_bufs, esalt_bufs, d_return_buf, d_extra0_buf, d_extra1_buf, d_extra2_buf, d_extra3_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, SALT_POS, loop_pos, loop_cnt, il_cnt, digests_cnt, DIGESTS_OFFSET, combs_mode, salt_repeat, pws_pos, gid_max); } KERNEL_FQ void m08300_s16 (KERN_ATTR_BASIC ()) { /** * base */ const u64 gid = get_global_id (0); if (gid >= gid_max) return; u32 w0[4]; w0[0] = pws[gid].i[ 0]; w0[1] = pws[gid].i[ 1]; w0[2] = pws[gid].i[ 2]; w0[3] = pws[gid].i[ 3]; u32 w1[4]; w1[0] = pws[gid].i[ 4]; w1[1] = pws[gid].i[ 5]; w1[2] = pws[gid].i[ 6]; w1[3] = pws[gid].i[ 7]; u32 w2[4]; w2[0] = pws[gid].i[ 8]; w2[1] = pws[gid].i[ 9]; w2[2] = pws[gid].i[10]; w2[3] = pws[gid].i[11]; u32 w3[4]; w3[0] = pws[gid].i[12]; w3[1] = pws[gid].i[13]; w3[2] = 0; w3[3] = 0; const u32 pw_len = pws[gid].pw_len & 63; /** * main */ m08300s (w0, w1, w2, w3, pw_len, pws, rules_buf, combs_buf, bfs_buf, tmps, hooks, bitmaps_buf_s1_a, bitmaps_buf_s1_b, bitmaps_buf_s1_c, bitmaps_buf_s1_d, bitmaps_buf_s2_a, bitmaps_buf_s2_b, bitmaps_buf_s2_c, bitmaps_buf_s2_d, plains_buf, digests_buf, hashes_shown, salt_bufs, esalt_bufs, d_return_buf, d_extra0_buf, d_extra1_buf, d_extra2_buf, d_extra3_buf, bitmap_mask, bitmap_shift1, bitmap_shift2, SALT_POS, loop_pos, loop_cnt, il_cnt, digests_cnt, DIGESTS_OFFSET, combs_mode, salt_repeat, pws_pos, gid_max); }
OpenCL
5
Masha/hashcat
OpenCL/m08300_a3-optimized.cl
[ "MIT" ]
### 请求 /captcha/get-image 接口 => 成功 GET {{baseUrl}}/system/captcha/get-image
HTTP
3
cksspk/ruoyi-vue-pro
yudao-admin-server/src/main/java/cn/iocoder/yudao/adminserver/modules/system/controller/common/SysCaptchaController.http
[ "MIT" ]
fileFormatVersion: 2 guid: 4b6669fb4e4df9c48926f02b694be9d1 timeCreated: 1437433018 licenseType: Pro DefaultImporter: userData: assetBundleName: assetBundleVariant:
Unity3D Asset
1
kivik-beep/farmasia-vr
Assets/SteamVR/Extras/SteamVR_TestIK.unity.meta
[ "MIT" ]
with Ahven.Text_Runner; with Ahven.Framework; with Gilded_Rose_Tests; procedure Gilded_Rose_Tester is S : Ahven.Framework.Test_Suite := Ahven.Framework.Create_Suite("All"); begin Ahven.Framework.Add_Test(S, new Gilded_Rose_Tests.Test); Ahven.Text_Runner.Run(S); end Gilded_Rose_Tester;
Ada
4
yangyangisyou/GildedRose-Refactoring-Kata
Ada/gilded_rose_tester.adb
[ "MIT" ]
#! /bin/sh -e ## QHpointer.dpatch by Rafael Laboissiere <[email protected]> ## ## All lines beginning with `## DP:' are a description of the patch. ## DP: Access Qhull globals via a pointer to allocated memory [ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts patch_opts="${patch_opts:--f --no-backup-if-mismatch}" if [ $# -ne 1 ]; then echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" exit 1 fi case "$1" in -patch) patch $patch_opts -p1 < $0;; -unpatch) patch $patch_opts -p1 -R < $0;; *) echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" exit 1;; esac exit 0 --- qhull-orig/src/io.c 2004-01-31 12:00:15.000000000 +0100 +++ qhull/src/io.c 2004-02-06 09:54:18.000000000 +0100 @@ -4017,11 +4017,8 @@ qh rbox_command[strlen(qh rbox_command)-1]= '\0'; if (!strcmp (qh rbox_command, "./rbox D4")) fprintf (qh ferr, "\n\ -This is the qhull test case. If any errors or core dumps occur,\n\ -recompile qhull with 'make new'. If errors still occur, there is\n\ -an incompatibility. You should try a different compiler. You can also\n\ -change the choices in user.h. If you discover the source of the problem,\n\ -please send mail to [email protected].\n\ +This is the qhull test case. If any errors or core dumps occur,\n\ +fill a bug report against the libqhull<soversion> Debian package.\n\ \n\ Type 'qhull' for a short list of options.\n"); }
Darcs Patch
4
rknop/amuse
src/amuse/community/simplex/src/plugins/qhull-2012.1/config/patches/make-new-msg.dpatch
[ "Apache-2.0" ]
<div> <table style="-evernote-table:true;border-collapse:collapse;width:100%;table-layout:fixed;margin-left:0px;"><tr><td style="border-style:solid;border-width:1px;border-color:rgb(211,211,211);padding:10px;margin:0px;width:50%;"><div>line 1</div><div>line 2</div></td><td style="border-style:solid;border-width:1px;border-color:rgb(211,211,211);padding:10px;margin:0px;width:50%;"><div><br/></div></td></tr><tr><td style="border-style:solid;border-width:1px;border-color:rgb(211,211,211);padding:10px;margin:0px;width:50%;"><div>aaaaaa</div></td><td style="border-style:solid;border-width:1px;border-color:rgb(211,211,211);padding:10px;margin:0px;width:50%;"><div>line 3</div><div>line 4</div></td></tr></table> </div>
HTML
0
asahiocean/joplin
packages/app-cli/tests/enex_to_md/tableWithNewLines.html
[ "MIT" ]
<html> <head> <link rel="stylesheet" href="/stylesheets/encode.css" type="text/css"> </head> <body> <table><tr> <td><img align="left" height=50 width=100 src="/images/encode_logo.png"> <div id="header"> Contacting the ENCODE DCC </div> </td> </tr></table> <p> <div id="content"> <b>Email:</b>&nbsp;&nbsp;&nbsp; <%= "#{ActiveRecord::Base.configurations[RAILS_ENV]['emailDCC']}" -%> </div> </p> </body>
RHTML
3
andypohl/kent
src/hg/encode/hgEncodeSubmit/app/views/welcome/contact.rhtml
[ "MIT" ]
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.thrift.meta_data; import org.apache.thrift.protocol.TType; /** * FieldValueMetaData and collection of subclasses to store metadata about * the value(s) of a field */ class FieldValueMetaData { public var type : Int; public function FieldValueMetaData(type : Int) { this.type = type; } public function isStruct() : Bool { return type == TType.STRUCT; } public function isContainer() : Bool { return type == TType.LIST || type == TType.MAP || type == TType.SET; } }
Haxe
4
Jimexist/thrift
lib/haxe/src/org/apache/thrift/meta_data/FieldValueMetaData.hx
[ "Apache-2.0" ]
=pod =head1 NAME X509_get_version, X509_set_version, X509_REQ_get_version, X509_REQ_set_version, X509_CRL_get_version, X509_CRL_set_version - get or set certificate, certificate request or CRL version =head1 SYNOPSIS #include <openssl/x509.h> long X509_get_version(const X509 *x); int X509_set_version(X509 *x, long version); long X509_REQ_get_version(const X509_REQ *req); int X509_REQ_set_version(X509_REQ *x, long version); long X509_CRL_get_version(const X509_CRL *crl); int X509_CRL_set_version(X509_CRL *x, long version); =head1 DESCRIPTION X509_get_version() returns the numerical value of the version field of certificate B<x>. These correspond to the constants B<X509_VERSION_1>, B<X509_VERSION_2>, and B<X509_VERSION_3>. Note: the values of these constants are defined by standards (X.509 et al) to be one less than the certificate version. So B<X509_VERSION_3> has value 2 and B<X509_VERSION_1> has value 0. X509_set_version() sets the numerical value of the version field of certificate B<x> to B<version>. Similarly X509_REQ_get_version(), X509_REQ_set_version(), X509_CRL_get_version() and X509_CRL_set_version() get and set the version number of certificate requests and CRLs. They use constants B<X509_REQ_VERSION_1>, B<X509_CRL_VERSION_1>, and B<X509_CRL_VERSION_2>. =head1 NOTES The version field of certificates, certificate requests and CRLs has a DEFAULT value of B<v1(0)> meaning the field should be omitted for version 1. This is handled transparently by these functions. =head1 RETURN VALUES X509_get_version(), X509_REQ_get_version() and X509_CRL_get_version() return the numerical value of the version field. X509_set_version(), X509_REQ_set_version() and X509_CRL_set_version() return 1 for success and 0 for failure. =head1 SEE ALSO L<d2i_X509(3)>, L<ERR_get_error(3)>, L<X509_CRL_get0_by_serial(3)>, L<X509_get0_signature(3)>, L<X509_get_ext_d2i(3)>, L<X509_get_extension_flags(3)>, L<X509_get_pubkey(3)>, L<X509_get_subject_name(3)>, L<X509_NAME_add_entry_by_txt(3)>, L<X509_NAME_ENTRY_get_object(3)>, L<X509_NAME_get_index_by_NID(3)>, L<X509_NAME_print_ex(3)>, L<X509_new(3)>, L<X509_sign(3)>, L<X509V3_get_d2i(3)>, L<X509_verify_cert(3)> =head1 HISTORY X509_get_version(), X509_REQ_get_version() and X509_CRL_get_version() are functions in OpenSSL 1.1.0, in previous versions they were macros. =head1 COPYRIGHT Copyright 2015-2021 The OpenSSL Project Authors. All Rights Reserved. Licensed under the Apache License 2.0 (the "License"). You may not use this file except in compliance with the License. You can obtain a copy in the file LICENSE in the source distribution or at L<https://www.openssl.org/source/license.html>. =cut
Pod
4
pmesnier/openssl
doc/man3/X509_get_version.pod
[ "Apache-2.0" ]
$(OBJDIR)/setp.cmi:
D
0
heechul/crest-z3
cil/obj/.depend/setp.di
[ "BSD-3-Clause" ]
// run-pass // aux-build:issue-25185-1.rs // aux-build:issue-25185-2.rs // ignore-wasm32-bare no libc for ffi testing extern crate issue_25185_2; fn main() { let x = unsafe { issue_25185_2::rust_dbg_extern_identity_u32(1) }; assert_eq!(x, 1); }
Rust
4
Eric-Arellano/rust
src/test/ui/issues/issue-25185.rs
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
ds := DATASET('localout1', { unsigned c }, XML('Dataset/Row') ); ds2 := DATASET('subdir::localout1', { unsigned c }, XML('Dataset/Row') ); output(ds, { c+1 },'localout2',csv,overwrite); output(ds, { c*2 },'subdir::localout2',csv,overwrite);
ECL
3
jeclrsg/HPCC-Platform
ecl/regress/standaloneread.ecl
[ "Apache-2.0" ]
<div class="sixteen columns"> <div class="sign-in-out-block"> {$user->identity->data['email']}:&nbsp; <a href="{plink Account:settings}">Account settings</a>&nbsp;&nbsp;&nbsp;<a href="{plink Sign:out}">Sign out</a> </div> </div>
Latte
2
aleanza/notejam
nette/native_db/notejam/app/components/UserBar/UserBar.latte
[ "MIT" ]
#include "int8_given_tensor_fill_op.h" namespace caffe2 { OPERATOR_SCHEMA(Int8GivenTensorFill) .NumInputs(0) .NumOutputs(1) .Arg("values", "Input array of type char(byte)") .Arg("shape", "Input tensor shape") .Arg("Y_scale", "Output tensor quantization scale") .Arg("Y_zero_point", "Output tensor quantization offset") .SetDoc(R"DOC( Creates quantized tensor of type char(byte) with scale and zero point info. )DOC") .Output(0, "Tensor", "An Int8TensorCPU with scale and zero point info") .TensorInferenceFunction(FillerTensorInference<>); OPERATOR_SCHEMA(Int8GivenIntTensorFill) .NumInputs(0) .NumOutputs(1) .Arg("values", "Input array of type int32") .Arg("shape", "Input tensor shape") .Arg("Y_scale", "Output tensor quantization scale") .Arg("Y_zero_point", "Output tensor quantization offset") .SetDoc(R"DOC( Creates quantized tensor of type int32 with scale and zero point info. )DOC") .Output(0, "Tensor", "An Int8TensorCPU with scale and zero point info") .TensorInferenceFunction(FillerTensorInference<>); REGISTER_CPU_OPERATOR(Int8GivenTensorFill, int8::Int8GivenTensorFillOp); REGISTER_CPU_OPERATOR(Int8GivenIntTensorFill, int8::Int8GivenIntTensorFillOp); } // namespace caffe2
C++
4
Hacky-DH/pytorch
caffe2/operators/quantized/int8_given_tensor_fill_op.cc
[ "Intel" ]
# Copyright (c) Microsoft Corporation. # Licensed under the MIT License. Describe "Update-List Tests" -Tag CI { BeforeEach { $testObj = [pscustomobject]@{a = [System.Collections.ArrayList]::new(@(1,2,3))} } It "-Add works" { $testObj | Update-List -Property a -Add 4 $testObj.A | Should -Be 1,2,3,4 } It "-Remove works" { Update-List -InputObject $testObj -Property a -Remove 2 $testObj.A | Should -Be 1,3 } It "-Add with -Remove works" { $testObj | Update-List -Property a -Remove 2 -Add 4 $testObj.A | Should -Be 1,3,4 } It "-Replace works" { $testObj | Update-List -Property a -Replace 2,4 $testObj.A | Should -Be 2,4 } }
PowerShell
4
dahlia/PowerShell
test/powershell/Modules/Microsoft.PowerShell.Utility/Update-List.Tests.ps1
[ "MIT" ]
#!/usr/bin/env zsh # vim:ft=zsh ts=2 sw=2 sts=2 # NOTE: The following emoji show as $'character' in the title # white_medium_star # sparkles # dizzy_symbol _emotty_sets[stellar]=" full_moon_symbol waning_gibbous_moon_symbol waning_crescent_moon_symbol last_quarter_moon_symbol new_moon_symbol new_moon_with_face waxing_crescent_moon_symbol first_quarter_moon_symbol waxing_gibbous_moon_symbol full_moon_with_face sun_with_face glowing_star crescent_moon first_quarter_moon_with_face last_quarter_moon_with_face "
Shell
4
chensanle/ohmyzsh
plugins/emotty/emotty_stellar_set.zsh
[ "MIT" ]
Notes on the usage of the Matlab interface to CUTEr --------------------------------------------------- 1. g77 To use MEX files with g77, make sure to load libg2c.so by setting PACKLIBS to -Lpath/to/g77/libs -lg2c in $MYCUTER/bin/mx. Typically, libg2c.so is a system library located in a directory such as /usr/lib so that there -lg2c should be sufficient. 2. gfortran To use MEX files with gfortran, make sure to load libgfortran.so by setting PACKLIBS to -Lpath/to/g77/libs -lgfortran in $MYCUTER/bin/mx. Typically, libgfortran.so is a system library located in a directory such as /usr/lib so that there -lgfortran should be sufficient. 3. g95 To use MEX files with g95, make sure to load libf95.a by setting PACKLIBS to -Lpath/to/g95/libs -lf95 in $MYCUTER/bin/mx, where path/to/g95/libs is the directory that contains the libf95.a library shipped with g95. For instance, if you have unpacked to g95 tar file in /home/myself/g95, the relevant directory is something like /home/myself/g95/g95-install/lib/gcc-lib/i686-pc-linux-gnu/4.0.3
Matlab
3
dynamics-of-stellar-systems/dynamite_release
legacy_fortran/galahad-2.3/cuter2/README.matlab
[ "MIT" ]
extends Area2D const DEFAULT_SPEED = 100 var direction = Vector2.LEFT var stopped = false var _speed = DEFAULT_SPEED onready var _screen_size = get_viewport_rect().size func _process(delta): _speed += delta # Ball will move normally for both players, # even if it's sightly out of sync between them, # so each player sees the motion as smooth and not jerky. if not stopped: translate(_speed * delta * direction) # Check screen bounds to make ball bounce. var ball_pos = position if (ball_pos.y < 0 and direction.y < 0) or (ball_pos.y > _screen_size.y and direction.y > 0): direction.y = -direction.y if is_network_master(): # Only the master will decide when the ball is out in # the left side (it's own side). This makes the game # playable even if latency is high and ball is going # fast. Otherwise ball might be out in the other # player's screen but not this one. if ball_pos.x < 0: get_parent().rpc("update_score", false) rpc("_reset_ball", false) else: # Only the puppet will decide when the ball is out in # the right side, which is it's own side. This makes # the game playable even if latency is high and ball # is going fast. Otherwise ball might be out in the # other player's screen but not this one. if ball_pos.x > _screen_size.x: get_parent().rpc("update_score", true) rpc("_reset_ball", true) remotesync func bounce(left, random): # Using sync because both players can make it bounce. if left: direction.x = abs(direction.x) else: direction.x = -abs(direction.x) _speed *= 1.1 direction.y = random * 2.0 - 1 direction = direction.normalized() remotesync func stop(): stopped = true remotesync func _reset_ball(for_left): position = _screen_size / 2 if for_left: direction = Vector2.LEFT else: direction = Vector2.RIGHT _speed = DEFAULT_SPEED
GDScript
5
jonbonazza/godot-demo-projects
networking/multiplayer_pong/logic/ball.gd
[ "MIT" ]
################################################################ ## Title: Data Science For Database Professionals ## Description:: Main R file ## Author: Microsoft ################################################################ #################################################################################################### ##Compute context #################################################################################################### connection_string <- "Driver=SQL Server;Server=.;Database=telcoedw2;Trusted_Connection=yes;" sql <- RxInSqlServer(connectionString = connection_string, autoCleanup = FALSE, consoleOutput = TRUE) local <- RxLocalParallel() rxOptions(reportProgress = 0) #################################################################################################### ##Connect to the data #################################################################################################### rxSetComputeContext(local) ##SQL data source myDataTb <- RxSqlServerData( connectionString = connection_string, table = "edw_cdr", colInfo = col_info) trainDataTb <- RxSqlServerData( connectionString = connection_string, table = "edw_cdr_train", colInfo = col_info) testDataTb <- RxSqlServerData( connectionString = connection_string, table = "edw_cdr_test", colInfo = col_info) rxGetInfo(myDataTb, getVarInfo = T) rxGetInfo(trainDataTb, getVarInfo = T) rxGetInfo(testDataTb, getVarInfo = T) ##Data frame myData <- rxDataStep(myDataTb, overwrite = TRUE) trainData <- rxDataStep(trainDataTb, overwrite = TRUE) testData <- rxDataStep(testDataTb, overwrite = TRUE) str(myData) str(trainData) str(testData) #################################################################################################### ##Data exploration and visualization on the data frame myData #################################################################################################### #impact of callfailure rate (%) on churn myData %>% group_by(month, callfailurerate) %>% summarize(countofchurn = sum(as.numeric(churn))) %>% ggplot(aes(x = month, y = countofchurn, group = factor(callfailurerate), fill = factor(callfailurerate))) + geom_bar(stat = "identity", position = position_dodge()) + labs(x = "month", y = "Counts of churn") + theme_minimal() #################################################################################################### ##Data exploration and visualization on the SQL data source myDataTb #################################################################################################### rxSetComputeContext(sql) #Counts of churned customer by age and state (Interactive HeatMap) tmp <- rxCrossTabs(N(churn) ~ F(age):state, myDataTb, means = FALSE) Results_df <- rxResultsDF(tmp, output = "sums") colnames(Results_df) <- substring(colnames(Results_df), 7) library(Rcpp) library(d3heatmap) d3heatmap(data.matrix(Results_df[, -1]), scale = "none", labRow = Results_df[, 1], dendrogram = "none", color = cm.colors(255)) #################################################################################################### ## Extreme gradient boost with xgboost on the data frame trainData & testData #################################################################################################### ##Step 1- Train Model library(Matrix) library(xgboost) system.time( xgboost_model <- xgboost(data = dtrainData$data, label = dtrainData$label, max.depth = 32, eta = 1, nthread = 2, nround = 2, objective = "binary:logistic") ) importance <- xgb.importance(feature_names = dtrainData$data@Dimnames[[2]], model = xgboost_model) library(Ckmeans.1d.dp) xgb.plot.importance(importance) ##Step 2- Score Model predictions <- predict(xgboost_model, dtestData$data) threshold <- 0.5 xgboost_Probability <- predictions xgboost_Prediction <- ifelse(xgboost_Probability > threshold, 1, 0) testPredData <- cbind(testData[, -27], dtestData$label, xgboost_Prediction, xgboost_Probability) names(testPredData)[names(testPredData) == "dtestData$label"] <- "churn" head(testPredData) ##Step 3- Evaluate Model xgboost_metrics <- evaluate_model(data = testPredData, observed = "churn", predicted = "xgboost_Prediction") xgboost_metrics threshold = 0.5 S = testPredData$xgboost_Probability Y = testPredData$churn roc.curve(s = threshold) ROC.curve = Vectorize(roc.curve) M.ROC.xgboost = ROC.curve(s = seq(0, 1, by = .01)) library(AUC) library(pROC) xgboost.auc <- auc(testPredData$xgboost_Prediction, testPredData$churn) plot(M.ROC.xgboost[1,], M.ROC.xgboost[2,], main = "ROC Curves for Xgboost", col = "blue", lwd = 4, type = "l", xlab = "False Positive Rate", ylab = "True Positive Rate") text(0.5, 0, paste("AUC=", round(xgboost.auc, 2))) #################################################################################################### ## Decision forest with rxDForest on SQL data source trainDataTb & testDataTb #################################################################################################### ##Step 1- Train Model rxSetComputeContext(sql) train_vars <- rxGetVarNames(trainDataTb) train_vars <- train_vars[!train_vars %in% c("churn")] temp <- paste(c("churn", paste(train_vars, collapse = "+")), collapse = "~") formula <- as.formula(temp) system.time( rx_forest_model <- rxDForest(formula = formula, data = trainDataTb, nTree = 8, maxDepth = 32, mTry = 2, minBucket = 1, replace = TRUE, importance = TRUE, seed = 8, parms = list(loss = c(0, 4, 1, 0)))) rx_forest_model plot(rx_forest_model) rxVarImpPlot(rx_forest_model) ##Step 2- Score Model rxSetComputeContext(local) system.time( predictions <- rxPredict(modelObject = rx_forest_model, data = testData, type = "prob", overwrite = TRUE)) threshold <- 0.5 predictions$X0_prob <- NULL predictions$churn_Pred <- NULL names(predictions) <- c("Forest_Probability") predictions$Forest_Prediction <- ifelse(predictions$Forest_Probability > threshold, 1, 0) predictions$Forest_Prediction <- factor(predictions$Forest_Prediction, levels = c(1, 0)) testPredData <- cbind(testData, predictions) head(testPredData) ##Step 3- Evaluate Model rx_forest_metrics <- evaluate_model(data = testPredData, observed = "churn", predicted = "Forest_Prediction") rx_forest_metrics roc_curve(data = testPredData, observed = "churn", predicted = "Forest_Probability")
R
5
manikanth/sql-server-samples
samples/features/r-services/telco-customer-churn/R/TelcoChurn-Main.r
[ "MIT" ]
rly foo and bar shh 1 wow
Dogescript
0
joeratt/dogescript
test/spec/operators/and/source.djs
[ "MIT" ]
;; ----- DECLARATIONS ----- ;; use arrays extensions [array] ;; Create "breed" of 'turtle' called cell breed [cells cell] ;; eventually separate mesophyll? breed [vasculars vascular] ;; phloem vascular bundles ;; Create "breed" of 'link' called phloem directed-link-breed [phloems phloem] ;; Note: I know there shouldn't be an s, but it wanted a different plural :( undirected-link-breed [plasmodesmata plasmodesma] ;; Declare global variables globals [ num-infected ;; keep track of number infected num-viruses ;; keep track of the viral particles mod-num-viruses ;; keep track of the modified viral particles lysed-cells ;; keep track of apoptotic cells infect-per-leaf ;; array of infection counts ] ;; Declare the cell-specific (turtle breed) variables turtles-own [ infected? ;; if true, the cell is infectious resistant? ;; if true, cell can't be infected num-plasmodesmata ;; number of connections with other cells leaf ;; for IC setup dna-gap ;; track the number of genomes in the nucleus dna-ccc ;; mod-dna-gap ;; mod-dna-ccc ;; rna-19s ;; rna-35s ;; mod-rna-35s ;; protein-one ;; protein-two ;; protein-three ;; protein-four ;; protein-four-sub ;; protein-five ;; protein-six ;; int-virions ;; viral-count ;; mod-int-virions ;; mod-viral-count ;; sar-level ;; amount of "salicylic acid" present in the cell ] ;; Setup procedures to setup clear-all ;; remove anything from previous runs setup-stem ;; make a stem structure to connect the leaves setup-cells ;; set up the cells setup-leaf ;; set up the connections between cells set infect-per-leaf array:from-list n-values num-leaves [0] ;; initialize as 1xn array of 0's ask n-of initial-infection-sites cells with [leaf = 1] ;; infect initial cells ;; currently all in leaf 1, but could change [ become-infected set dna-gap founder-population-viruses ;; start with x genomes per infected cell ] ask links [ set color white ] ;; make the symplastic connections white ask phloems [ set color green ;; make the vascular bundles green and thicker set thickness 0.3 ] reset-ticks ;; reset timer from previous run if file-exists? "netlogo_sim.csv" [file-delete "netlogo_sim.csv"] ;; clean slate for output end to setup-stem set-default-shape vasculars "plant" ;; uses stem-looking shape for vasculature ;; Create and position vascular cells create-vasculars 1 [ setxy 0 -16 ] create-vasculars 1 [ setxy 0 -6 create-phloem-from vascular 0 ;; directed stem connection ] create-vasculars 1 [ setxy 0 6 create-phloem-from vascular 1 ;; directed stem connection ] create-vasculars 1 [ setxy 0 16 create-phloem-from vascular 2 ;; directed stem connection ] ask vasculars ;; make the vasculature stand out from the leaf cells [ set color green set size 2.5 ] end to setup-cells set-default-shape cells "circle" ;; uses circle shape for displayed cells let cells-per-leaf floor (num-cells / num-leaves) let extra-cells remainder num-cells num-leaves let angular-spacing 10 ;; degrees between leaves if angular-spacing * num-leaves > 360 ;; throw an error if the leaves don't fit [ error "Not enough space for leaves"] let leaf-angle (360 - angular-spacing * num-leaves) / num-leaves ;; angular width per leaf let rmin 0.1 * max-pxcor ;; minimum distrance from the origin let rmax min list max-pxcor max-pycor ;; max distance -- foreach n-values extra-cells [?] ;; ? here is just identity, making n-values 0:n-1 [create-cells cells-per-leaf + 1 ;; [ set size 0.5 ;; netlogo is a freak, so '?' == loop iteration - 1 let theta (? * (leaf-angle + angular-spacing)) + random-float leaf-angle let r random-radius rmin rmax let x r * cos(theta) let y r * sin(theta) setxy x y set leaf ? + 1 become-susceptible ] ] ;; now do it again for leaves without extra cells foreach n-values (num-leaves - extra-cells) [? + extra-cells] ;; ? here is just identity, making n-values 0:n-1 [create-cells cells-per-leaf ;; [ set size 0.5 ;; netlogo is a freak, so '?' == loop iteration - 1 let theta (? * (leaf-angle + angular-spacing)) + random-float leaf-angle let r random-radius rmin rmax let x r * cos(theta) let y r * sin(theta) setxy x y set leaf ? + 1 become-susceptible ] ] end to setup-leaf ask cells [ ;; using random-possion to give a more realistic distribution of links per cell let my-leaf leaf while [ count my-links < random-poisson avg-num-plasmodesmata ] [ let choice (min-one-of (other cells with [(not link-neighbor? myself) and leaf = my-leaf]) [distance myself]) if choice != nobody [ create-plasmodesma-with choice ] ] ] ;; to make the network look nicer ;;repeat 10 [ layout-spring turtles links 0.3 (world-width / (sqrt num-cells)) 1 ] ;; connect leaves to the vasculature ask vascular 0 [ let choice ( one-of (cells with [leaf = 1]) ) if choice != nobody [ create-phloem-from choice ] become-susceptible ] ask vascular 1 [ let choice ( one-of (cells with [pxcor > 0 and pycor < 0]) ) if choice != nobody [ create-phloem-from choice ] become-susceptible ] ask vascular 2 [ let choice ( one-of (cells with [pxcor < 0 and pycor > 0]) ) if choice != nobody [ create-phloem-from choice ] become-susceptible ] ask vascular 3 [ let choice ( one-of (cells with [pxcor > 0 and pycor > 0]) ) if choice != nobody [ create-phloem-from choice ] become-susceptible ] end to-report random-radius [rmin rmax] ;; picks a radius at random such that points will be uniform in a circle ;; pdf is r/const ; use inverse transform method let u random-float 1 let r sqrt(u * (rmax ^ 2 - rmin ^ 2) + rmin ^ 2 ) report r end ;; ----- MAIN ----- ;; This is the main process - what is activated when the user clicks "go" to go ;; if the user specified a duration, stop after that if specified-duration [ if ticks > num-ticks [ stop ] ] ;; otherwise, check if all cells are infected if all? cells [ infected? ] [ ;; if they are, run 40 more times (make the graph look nice) let i 0 while [i <= 40] [ spread-virus set i i + 1 tick ] stop ;; stop model completely ] ;; otherwise, continue to assemble and spread the virus assemble-virus spread-virus ;;spread-sar ;;do-apoptosis-checks record-data tick end ;; ----- DATA OUTPUT ----- to record-data file-open "netlogo_sim.csv" let leaf-infect-list array:to-list infect-per-leaf foreach leaf-infect-list ;; iterate through this list [ file-write ? ;; type number then comma file-type ","] file-type "\n" ;; newline file-close ;; apparently bad things happen if you don't end ;; ----- CELL PROCEDURES ----- ;; Cell Procedures to become-infected set infected? true set resistant? false set color red ;; determine number of viruses entering the susceptible cell ;let new-viruses ( sum [viral-count] of link-neighbors ) set dna-gap dna-gap + 1 set num-viruses num-viruses + 1 array:set infect-per-leaf (leaf - 1) (array:item infect-per-leaf (leaf - 1) + 1) ;; increment counter end to mod-become-infected set infected? true set resistant? false set color red set mod-dna-gap mod-dna-gap + 1 set mod-num-viruses mod-num-viruses + 1 end to become-susceptible set infected? false set resistant? false set color green set dna-gap 0 ;; track the number of genomes in the nucleus set dna-ccc 0 ;; set mod-dna-gap 0 ;; set mod-dna-ccc 0 ;; set rna-19s 0 ;; set rna-35s 0 ;; set mod-rna-35s 0 ;; set protein-one 0 ;; set protein-two 0 ;; set protein-three 0 ;; set protein-four 0 ;; set protein-four-sub 0 ;; set protein-five 0 ;; set protein-six 0 ;; set int-virions 0 ;; set viral-count 0 ;; set mod-int-virions 0 ;; set mod-viral-count 0 ;; end ;; ---- SAR Molecule Spread & Apoptosis ---- ;; Increase levels of signalling molecule based on neighbours' levels ;; Assuming the infected cells are unable to produce sar signal molecules, but to spread-sar ;; initial generation of sar based on neighbouring cells being infected ask cells [ let neighboured false ;; remember if a neighbour is infected ask link-neighbors [ if (infected?) [ set neighboured true ] ] ;; if a neighbour is infected, increase this cell's sar signalling molecule if (neighboured) [ set sar-level sar-level + 1 ] ] ;; assume the resistant cells are better able to spread the sar molecule ask cells with [resistant?] [ let shared-sar sar-level / 2 ;; saying half the sar-level will be spread ask link-neighbors [ set sar-level sar-level + shared-sar if sar-level >= resistance-threshold [ set resistant? true ] ] set sar-level sar-level + shared-sar / 2 ;; not much kept in the cell ] ;; assume the susceptible cells can produce an okay amount of sar molecule ask cells with [not infected? and not resistant?] [ let shared-sar sar-level / 5 ;; fifth of the molecules will be shared ask link-neighbors [ set sar-level sar-level + shared-sar if sar-level >= resistance-threshold [ set resistant? true ] ] set sar-level sar-level + shared-sar / 2 ] end ;; Determine whether the cell can destroy itself to help prevent viral spread to do-apoptosis-checks ;; if the cell is infected and can still lyse, check ask cells with [infected?] [ if (sar-level >= lysis-threshold) [ set color violet die set lysed-cells lysed-cells + 1 ] ] end ;; ----- VIRUS PROCEDURES ----- ;; Procedure governing spread to neighbouring cells to spread-virus ask turtles with [infected?] [ ;;if (viral-count + mod-viral-count > 5) ;;[ ask link-neighbors with [not resistant? and not infected?] [ if (random-float 100 < viral-spread-chance) [ become-infected ;; If chance has it, infect the cell set num-infected num-infected + 1 ;; increase the count for infected cells ] ] ;;] ] end to assemble-virus ;; Genome parameters let max-genomes-in-nucleus 100 let intracellular-reinfection-rate 0.01 let gapped-dna-repair-rate 0.1 let dna-modification-rate 0.01 let dna-degradation-rate 0.00001 ;; RNA parameters let transcription-rate-19s 0.05 let degradation-rate-19s 0.001155 let transcription-rate-35s 0.0653 let degradation-rate-35s 0.001155 let packaging-rate 0.1 let frac-unspliced 0.3 ;; Protein parameters let translation-rate 0.1 let degradation-rate 0.0001 let p4-splicing-rate 1 ;; Virion parameters let anchoring-rate 1 let virion-degradation-rate 0.01 let virion-exit-rate 0.1 ;; Time step let delta-t 0.001 ask cells with [infected?] [ set dna-gap dna-gap + delta-t * ( intracellular-reinfection-rate * viral-count * ( max-genomes-in-nucleus - dna-gap - mod-dna-gap ) - gapped-dna-repair-rate * dna-gap - dna-modification-rate * dna-gap ) set dna-ccc dna-ccc + delta-t * ( gapped-dna-repair-rate * dna-gap - dna-degradation-rate * dna-ccc - dna-modification-rate * dna-ccc ) set mod-dna-gap mod-dna-gap + delta-t * ( intracellular-reinfection-rate * mod-viral-count * ( max-genomes-in-nucleus - dna-gap - mod-dna-gap ) - gapped-dna-repair-rate * mod-dna-gap + dna-modification-rate * dna-gap ) set mod-dna-ccc mod-dna-ccc + delta-t * ( gapped-dna-repair-rate * mod-dna-gap - dna-degradation-rate * mod-dna-ccc + dna-modification-rate * dna-ccc ) set rna-19s rna-19s + delta-t * ( transcription-rate-19s * dna-ccc - degradation-rate-19s * rna-19s ) set rna-35s rna-35s + delta-t * ( transcription-rate-35s * dna-ccc - degradation-rate-35s * rna-35s - packaging-rate * protein-four-sub * protein-five * rna-35s * frac-unspliced ) set mod-rna-35s mod-rna-35s + delta-t * ( transcription-rate-35s * mod-dna-ccc - degradation-rate-35s * mod-rna-35s - packaging-rate * protein-four-sub * protein-five * mod-rna-35s * frac-unspliced ) set protein-one protein-one + delta-t * ( translation-rate * ( rna-35s + mod-rna-35s ) * frac-unspliced - degradation-rate * protein-one ) set protein-two protein-two + delta-t * ( translation-rate * ( rna-35s + mod-rna-35s ) * frac-unspliced - degradation-rate * protein-two ) set protein-three protein-three + delta-t * ( translation-rate * ( rna-35s + mod-rna-35s ) - degradation-rate * protein-three - anchoring-rate * protein-three * ( int-virions + mod-int-virions ) ) set protein-four protein-four + delta-t * ( translation-rate * ( rna-35s + mod-rna-35s ) - degradation-rate * protein-four - p4-splicing-rate * protein-four ) set protein-four-sub protein-four-sub + delta-t * ( p4-splicing-rate * protein-four - degradation-rate * protein-four-sub - packaging-rate * protein-four-sub * protein-five * ( rna-35s + mod-rna-35s ) * frac-unspliced ) set protein-five protein-five + delta-t * ( translation-rate * ( rna-35s + mod-rna-35s ) - degradation-rate * protein-five - packaging-rate * protein-four-sub * protein-five * ( rna-35s + mod-rna-35s ) * frac-unspliced ) set protein-six protein-six + delta-t * ( translation-rate * rna-19s - degradation-rate * protein-six ) set int-virions int-virions + delta-t * ( packaging-rate * protein-four-sub * protein-five * rna-35s * frac-unspliced - anchoring-rate * protein-three * int-virions ) set viral-count viral-count + delta-t * ( anchoring-rate * protein-three * int-virions - intracellular-reinfection-rate * viral-count - virion-degradation-rate * viral-count - virion-exit-rate * viral-count ) set mod-int-virions mod-int-virions + delta-t * ( packaging-rate * protein-four-sub * protein-five * mod-rna-35s * frac-unspliced - anchoring-rate * protein-three * mod-int-virions ) set mod-viral-count mod-viral-count + delta-t * ( anchoring-rate * protein-three * mod-int-virions - intracellular-reinfection-rate * mod-viral-count - virion-degradation-rate * mod-viral-count - virion-exit-rate * mod-viral-count ) ] ;; oh thank god it's over end @#$#@#$#@ GRAPHICS-WINDOW 238 10 672 465 16 16 12.85 1 10 1 1 1 0 0 0 1 -16 16 -16 16 0 0 1 ticks 30.0 BUTTON 116 288 179 321 go go T 1 T OBSERVER NIL NIL NIL NIL 1 SLIDER 22 102 196 135 initial-infection-sites initial-infection-sites 1 4 4 1 1 NIL HORIZONTAL SLIDER 20 10 192 43 num-cells num-cells 1 1000 217 1 1 NIL HORIZONTAL SLIDER 20 49 208 82 avg-num-plasmodesmata avg-num-plasmodesmata 1 10 4 1 1 NIL HORIZONTAL PLOT 231 475 454 672 #infected over time ticks #infected cells 0.0 50.0 0.0 50.0 true false "set-plot-x-range 0 num-ticks\nset-plot-y-range 0 num-cells" "" PENS "infected" 1.0 0 -13791810 true "" "plot num-infected" BUTTON 38 289 101 322 setup setup NIL 1 T OBSERVER NIL NIL NIL NIL 1 SLIDER 25 356 197 389 viral-spread-chance viral-spread-chance 1 20 15 0.5 1 NIL HORIZONTAL SLIDER 21 227 193 260 num-ticks num-ticks 0 500 102 1 1 NIL HORIZONTAL SWITCH 22 190 177 223 specified-duration specified-duration 0 1 -1000 PLOT 466 485 666 635 Number of Viruses ticks #viruses 0.0 10.0 1.0 1000.0 true false "set-plot-x-range 0 num-ticks\nset-plot-y-range 0 num-cells" "" PENS "default" 1.0 0 -16777216 true "" "plot (num-viruses + mod-num-viruses)" SLIDER 22 141 215 174 founder-population-viruses founder-population-viruses 1 30 10 1 1 NIL HORIZONTAL SLIDER 24 446 196 479 lysis-threshold lysis-threshold 1 10000 10000 1 1 NIL HORIZONTAL PLOT 19 490 219 640 Lysed Cells ticks #cells 0.0 10.0 0.0 10.0 true false "set-plot-x-range 0 num-ticks\nset-plot-y-range 0 10" "" PENS "default" 1.0 0 -16777216 true "" "plot lysed-cells" SLIDER 23 410 195 443 resistance-threshold resistance-threshold 1 100 94 1 1 NIL HORIZONTAL SLIDER 206 314 378 347 num-leaves num-leaves 1 10 3 1 1 NIL HORIZONTAL @#$#@#$#@ ## WHAT IS IT? This is a model tracking viral spread in a plant-structure made of leaf cells and vascular cells. The spatial locations of the cells are divided into "leaves", and individual cells are connected by plasmodesmata. ## HOW IT WORKS The model begins by creating all of the cells - it places them in space (in 4 leaves separated by the coodrinate axes) and iteratively goes through the cells, giving each a random number of connections. All the cells start as susceptible, except for some small initial infection. Then the virus spreads along the plasmodesmata connections as time progresses. In this model there's also a chance of cells becoming resistant. This is triggered by either proximity to infected cells, or by spreading among ## HOW TO USE IT Set the sliders as you see fit and click setup. Hit go to see what happens! ## THINGS TO NOTICE How does the viral infection curve change as # of connections is increased and viral spread chance is decreased? ## THINGS TO TRY Move the sliders! And note the variations in the random setup, especially as it concerns connections between different leaves. ## EXTENDING THE MODEL Giving appropriate parameters for the viral spread chance. ## NETLOGO FEATURES (interesting or unusual features of NetLogo that the model uses, particularly in the Code tab; or where workarounds were needed for missing features) ## RELATED MODELS (models in the NetLogo Models Library and elsewhere which are of related interest) ## CREDITS AND REFERENCES UWaterloo's 2015 iGEM team Zoë Humphries & Robert Gooding-Townsend @#$#@#$#@ default true 0 Polygon -7500403 true true 150 5 40 250 150 205 260 250 airplane true 0 Polygon -7500403 true true 150 0 135 15 120 60 120 105 15 165 15 195 120 180 135 240 105 270 120 285 150 270 180 285 210 270 165 240 180 180 285 195 285 165 180 105 180 60 165 15 arrow true 0 Polygon -7500403 true true 150 0 0 150 105 150 105 293 195 293 195 150 300 150 box false 0 Polygon -7500403 true true 150 285 285 225 285 75 150 135 Polygon -7500403 true true 150 135 15 75 150 15 285 75 Polygon -7500403 true true 15 75 15 225 150 285 150 135 Line -16777216 false 150 285 150 135 Line -16777216 false 150 135 15 75 Line -16777216 false 150 135 285 75 bug true 0 Circle -7500403 true true 96 182 108 Circle -7500403 true true 110 127 80 Circle -7500403 true true 110 75 80 Line -7500403 true 150 100 80 30 Line -7500403 true 150 100 220 30 butterfly true 0 Polygon -7500403 true true 150 165 209 199 225 225 225 255 195 270 165 255 150 240 Polygon -7500403 true true 150 165 89 198 75 225 75 255 105 270 135 255 150 240 Polygon -7500403 true true 139 148 100 105 55 90 25 90 10 105 10 135 25 180 40 195 85 194 139 163 Polygon -7500403 true true 162 150 200 105 245 90 275 90 290 105 290 135 275 180 260 195 215 195 162 165 Polygon -16777216 true false 150 255 135 225 120 150 135 120 150 105 165 120 180 150 165 225 Circle -16777216 true false 135 90 30 Line -16777216 false 150 105 195 60 Line -16777216 false 150 105 105 60 car false 0 Polygon -7500403 true true 300 180 279 164 261 144 240 135 226 132 213 106 203 84 185 63 159 50 135 50 75 60 0 150 0 165 0 225 300 225 300 180 Circle -16777216 true false 180 180 90 Circle -16777216 true false 30 180 90 Polygon -16777216 true false 162 80 132 78 134 135 209 135 194 105 189 96 180 89 Circle -7500403 true true 47 195 58 Circle -7500403 true true 195 195 58 circle false 0 Circle -7500403 true true 0 0 300 circle 2 false 0 Circle -7500403 true true 0 0 300 Circle -16777216 true false 30 30 240 cow false 0 Polygon -7500403 true true 200 193 197 249 179 249 177 196 166 187 140 189 93 191 78 179 72 211 49 209 48 181 37 149 25 120 25 89 45 72 103 84 179 75 198 76 252 64 272 81 293 103 285 121 255 121 242 118 224 167 Polygon -7500403 true true 73 210 86 251 62 249 48 208 Polygon -7500403 true true 25 114 16 195 9 204 23 213 25 200 39 123 cylinder false 0 Circle -7500403 true true 0 0 300 dot false 0 Circle -7500403 true true 90 90 120 face happy false 0 Circle -7500403 true true 8 8 285 Circle -16777216 true false 60 75 60 Circle -16777216 true false 180 75 60 Polygon -16777216 true false 150 255 90 239 62 213 47 191 67 179 90 203 109 218 150 225 192 218 210 203 227 181 251 194 236 217 212 240 face neutral false 0 Circle -7500403 true true 8 7 285 Circle -16777216 true false 60 75 60 Circle -16777216 true false 180 75 60 Rectangle -16777216 true false 60 195 240 225 face sad false 0 Circle -7500403 true true 8 8 285 Circle -16777216 true false 60 75 60 Circle -16777216 true false 180 75 60 Polygon -16777216 true false 150 168 90 184 62 210 47 232 67 244 90 220 109 205 150 198 192 205 210 220 227 242 251 229 236 206 212 183 fish false 0 Polygon -1 true false 44 131 21 87 15 86 0 120 15 150 0 180 13 214 20 212 45 166 Polygon -1 true false 135 195 119 235 95 218 76 210 46 204 60 165 Polygon -1 true false 75 45 83 77 71 103 86 114 166 78 135 60 Polygon -7500403 true true 30 136 151 77 226 81 280 119 292 146 292 160 287 170 270 195 195 210 151 212 30 166 Circle -16777216 true false 215 106 30 flag false 0 Rectangle -7500403 true true 60 15 75 300 Polygon -7500403 true true 90 150 270 90 90 30 Line -7500403 true 75 135 90 135 Line -7500403 true 75 45 90 45 flower false 0 Polygon -10899396 true false 135 120 165 165 180 210 180 240 150 300 165 300 195 240 195 195 165 135 Circle -7500403 true true 85 132 38 Circle -7500403 true true 130 147 38 Circle -7500403 true true 192 85 38 Circle -7500403 true true 85 40 38 Circle -7500403 true true 177 40 38 Circle -7500403 true true 177 132 38 Circle -7500403 true true 70 85 38 Circle -7500403 true true 130 25 38 Circle -7500403 true true 96 51 108 Circle -16777216 true false 113 68 74 Polygon -10899396 true false 189 233 219 188 249 173 279 188 234 218 Polygon -10899396 true false 180 255 150 210 105 210 75 240 135 240 house false 0 Rectangle -7500403 true true 45 120 255 285 Rectangle -16777216 true false 120 210 180 285 Polygon -7500403 true true 15 120 150 15 285 120 Line -16777216 false 30 120 270 120 leaf false 0 Polygon -7500403 true true 150 210 135 195 120 210 60 210 30 195 60 180 60 165 15 135 30 120 15 105 40 104 45 90 60 90 90 105 105 120 120 120 105 60 120 60 135 30 150 15 165 30 180 60 195 60 180 120 195 120 210 105 240 90 255 90 263 104 285 105 270 120 285 135 240 165 240 180 270 195 240 210 180 210 165 195 Polygon -7500403 true true 135 195 135 240 120 255 105 255 105 285 135 285 165 240 165 195 line true 0 Line -7500403 true 150 0 150 300 line half true 0 Line -7500403 true 150 0 150 150 pentagon false 0 Polygon -7500403 true true 150 15 15 120 60 285 240 285 285 120 person false 0 Circle -7500403 true true 110 5 80 Polygon -7500403 true true 105 90 120 195 90 285 105 300 135 300 150 225 165 300 195 300 210 285 180 195 195 90 Rectangle -7500403 true true 127 79 172 94 Polygon -7500403 true true 195 90 240 150 225 180 165 105 Polygon -7500403 true true 105 90 60 150 75 180 135 105 plant false 0 Rectangle -7500403 true true 135 90 165 300 Polygon -7500403 true true 135 255 90 210 45 195 75 255 135 285 Polygon -7500403 true true 165 255 210 210 255 195 225 255 165 285 Polygon -7500403 true true 135 180 90 135 45 120 75 180 135 210 Polygon -7500403 true true 165 180 165 210 225 180 255 120 210 135 Polygon -7500403 true true 135 105 90 60 45 45 75 105 135 135 Polygon -7500403 true true 165 105 165 135 225 105 255 45 210 60 Polygon -7500403 true true 135 90 120 45 150 15 180 45 165 90 sheep false 15 Circle -1 true true 203 65 88 Circle -1 true true 70 65 162 Circle -1 true true 150 105 120 Polygon -7500403 true false 218 120 240 165 255 165 278 120 Circle -7500403 true false 214 72 67 Rectangle -1 true true 164 223 179 298 Polygon -1 true true 45 285 30 285 30 240 15 195 45 210 Circle -1 true true 3 83 150 Rectangle -1 true true 65 221 80 296 Polygon -1 true true 195 285 210 285 210 240 240 210 195 210 Polygon -7500403 true false 276 85 285 105 302 99 294 83 Polygon -7500403 true false 219 85 210 105 193 99 201 83 square false 0 Rectangle -7500403 true true 30 30 270 270 square 2 false 0 Rectangle -7500403 true true 30 30 270 270 Rectangle -16777216 true false 60 60 240 240 star false 0 Polygon -7500403 true true 151 1 185 108 298 108 207 175 242 282 151 216 59 282 94 175 3 108 116 108 target false 0 Circle -7500403 true true 0 0 300 Circle -16777216 true false 30 30 240 Circle -7500403 true true 60 60 180 Circle -16777216 true false 90 90 120 Circle -7500403 true true 120 120 60 tree false 0 Circle -7500403 true true 118 3 94 Rectangle -6459832 true false 120 195 180 300 Circle -7500403 true true 65 21 108 Circle -7500403 true true 116 41 127 Circle -7500403 true true 45 90 120 Circle -7500403 true true 104 74 152 triangle false 0 Polygon -7500403 true true 150 30 15 255 285 255 triangle 2 false 0 Polygon -7500403 true true 150 30 15 255 285 255 Polygon -16777216 true false 151 99 225 223 75 224 truck false 0 Rectangle -7500403 true true 4 45 195 187 Polygon -7500403 true true 296 193 296 150 259 134 244 104 208 104 207 194 Rectangle -1 true false 195 60 195 105 Polygon -16777216 true false 238 112 252 141 219 141 218 112 Circle -16777216 true false 234 174 42 Rectangle -7500403 true true 181 185 214 194 Circle -16777216 true false 144 174 42 Circle -16777216 true false 24 174 42 Circle -7500403 false true 24 174 42 Circle -7500403 false true 144 174 42 Circle -7500403 false true 234 174 42 turtle true 0 Polygon -10899396 true false 215 204 240 233 246 254 228 266 215 252 193 210 Polygon -10899396 true false 195 90 225 75 245 75 260 89 269 108 261 124 240 105 225 105 210 105 Polygon -10899396 true false 105 90 75 75 55 75 40 89 31 108 39 124 60 105 75 105 90 105 Polygon -10899396 true false 132 85 134 64 107 51 108 17 150 2 192 18 192 52 169 65 172 87 Polygon -10899396 true false 85 204 60 233 54 254 72 266 85 252 107 210 Polygon -7500403 true true 119 75 179 75 209 101 224 135 220 225 175 261 128 261 81 224 74 135 88 99 wheel false 0 Circle -7500403 true true 3 3 294 Circle -16777216 true false 30 30 240 Line -7500403 true 150 285 150 15 Line -7500403 true 15 150 285 150 Circle -7500403 true true 120 120 60 Line -7500403 true 216 40 79 269 Line -7500403 true 40 84 269 221 Line -7500403 true 40 216 269 79 Line -7500403 true 84 40 221 269 wolf false 0 Polygon -16777216 true false 253 133 245 131 245 133 Polygon -7500403 true true 2 194 13 197 30 191 38 193 38 205 20 226 20 257 27 265 38 266 40 260 31 253 31 230 60 206 68 198 75 209 66 228 65 243 82 261 84 268 100 267 103 261 77 239 79 231 100 207 98 196 119 201 143 202 160 195 166 210 172 213 173 238 167 251 160 248 154 265 169 264 178 247 186 240 198 260 200 271 217 271 219 262 207 258 195 230 192 198 210 184 227 164 242 144 259 145 284 151 277 141 293 140 299 134 297 127 273 119 270 105 Polygon -7500403 true true -1 195 14 180 36 166 40 153 53 140 82 131 134 133 159 126 188 115 227 108 236 102 238 98 268 86 269 92 281 87 269 103 269 113 x false 0 Polygon -7500403 true true 270 75 225 30 30 225 75 270 Polygon -7500403 true true 30 75 75 30 270 225 225 270 @#$#@#$#@ NetLogo 5.2.0 @#$#@#$#@ @#$#@#$#@ @#$#@#$#@ @#$#@#$#@ @#$#@#$#@ default 0.0 -0.2 0 0.0 1.0 0.0 1 1.0 0.0 0.2 0 0.0 1.0 link direction true 0 Line -7500403 true 150 150 90 180 Line -7500403 true 150 150 210 180 @#$#@#$#@ 0 @#$#@#$#@
NetLogo
5
igem-waterloo/uwaterloo-igem-2015
models/viralspread/netlogo/ViralSpreadFullODE.nlogo
[ "MIT" ]
0 reg32_t "dword" 1 ptr(struct(8:ptr(num8_t),12:ptr(struct(0:reg32_t,4:ptr(num8_t))))) "Struct_150*" 2 num32_t "int" 0 reg32_t "HWND" 3 ptr(num8_t) "LPSTR" 4 union(code_t,ptr(num32_t)) "Union_0" 2 num32_t "LONG" 5 uint32_t "UINT" 5 uint32_t "size_t" 6 array(reg8_t,12) "unknown_96" 3 ptr(num8_t) "char*" 7 union(ptr(num8_t),num32_t) "Union_20" 8 num8_t "char" 9 reg16_t "word" 10 ptr(struct(4:reg32_t,8:union(ptr(num8_t),num32_t),12:reg32_t)) "Struct_151*" 2 num32_t "INT_PTR" 11 ptr(ptr(struct(4:ptr(TOP),8:ptr(TOP),12:ptr(TOP),16:ptr(TOP)))) "Struct_152*[]" 12 ptr(TOP) "void*" 13 ptr(struct(4:ptr(TOP),8:ptr(TOP),12:ptr(TOP),16:ptr(TOP))) "Struct_152*" 14 code_t "proc*" 15 ptr(struct(4:uint32_t,8:reg16_t,12:reg32_t)) "Struct_10*" 16 ptr(struct(0:reg32_t,4:reg32_t)) "StructFrag_18*" 17 ptr(reg32_t) "dword[]" 12 ptr(TOP) "LPVOID" 18 ptr(num32_t) "int*" 0 reg32_t "HMENU" 19 union(num32_t,ptr(array(reg8_t,25))) "Union_28" 20 ptr(struct(0:reg32_t,4:ptr(TOP),8:reg32_t)) "_SECURITY_ATTRIBUTES*" 21 ptr(array(reg8_t,12)) "unknown_96*" 22 ptr(array(reg8_t,39)) "unknown_312*" 17 ptr(reg32_t) "LPHANDLE" 0 reg32_t "HANDLE" 23 ptr(array(reg8_t,6)) "unknown_48*" 5 uint32_t "unsigned int" 24 array(reg8_t,3) "unknown_24" 25 num64_t "long long" 17 ptr(reg32_t) "dword*" 14 code_t "(void -> int)*" 5 uint32_t "UINT_PTR" 26 ptr(struct(0:reg32_t,4:reg32_t,8:struct(0:num32_t,4:num32_t,8:num32_t,12:num32_t),24:reg32_t,28:reg32_t,32:array(reg8_t,32))) "tagPAINTSTRUCT*" 0 reg32_t "HDC" 14 code_t "(HWND,UINT,WPARAM,LPARAM -ms-> LRESULT)*" 27 struct(0:num32_t,4:num32_t) "POINT" 28 ptr(struct(0:reg32_t,4:reg32_t,8:reg32_t,12:reg32_t,16:ptr(reg32_t),20:reg32_t,24:num32_t,28:code_t,32:ptr(num8_t))) "tagCHOOSECOLORA*" 29 ptr(struct(0:num32_t,4:num32_t)) "tagPOINT*" 0 reg32_t "HDESK" 30 ptr(union(ptr(struct(0:ptr(struct(0:code_t,4:code_t,8:code_t,12:code_t,16:code_t,20:code_t,24:code_t,28:code_t,32:code_t)))),ptr(ptr(struct(0:code_t,4:code_t,8:code_t,12:code_t,16:code_t,20:code_t,24:code_t,28:code_t,32:code_t))))) "Union_27*" 16 ptr(struct(0:reg32_t,4:reg32_t)) "FILETIME*" 31 ptr(struct(0:num32_t,4:num32_t,8:num32_t,12:num32_t)) "tagRECT*" 31 ptr(struct(0:num32_t,4:num32_t,8:num32_t,12:num32_t)) "LPRECT" 14 code_t "(HWND,UINT,WPARAM,LPARAM -ms-> BOOL)*" 32 ptr(struct(0:reg32_t,4:reg32_t,8:reg16_t,10:num16_t,12:num16_t,14:num16_t,16:num16_t)) "DLGTEMPLATE*" 33 ptr(struct(0:num32_t,4:num32_t,8:num32_t,12:num32_t,16:num32_t,20:reg8_t,21:reg8_t,22:reg8_t,23:reg8_t,24:reg8_t,25:reg8_t,26:reg8_t,27:reg8_t,28:array(num8_t,32))) "LOGFONTA*" 34 ptr(struct(0:reg32_t,4:ptr(num8_t),8:ptr(num8_t),12:ptr(num8_t),16:reg32_t,20:reg32_t,24:reg32_t,28:reg32_t,32:reg32_t,36:reg32_t,40:reg32_t,44:reg32_t,48:reg16_t,50:reg16_t,52:ptr(reg8_t),56:reg32_t,60:reg32_t,64:reg32_t)) "_STARTUPINFOA*" 35 ptr(struct(0:reg32_t,4:reg32_t,8:reg32_t,12:reg32_t)) "_PROCESS_INFORMATION*" 36 ptr(struct(0:ptr(struct(0:reg16_t,2:reg16_t,4:ptr(array(reg8_t,0)),8:struct(0:ptr(struct(0:ptr(TOP),4:ptr(TOP))),4:ptr(struct(0:ptr(TOP),4:ptr(TOP)))),16:reg32_t,20:reg32_t,24:array(reg32_t,2))),4:num32_t,8:num32_t,12:reg32_t,16:reg32_t,20:reg32_t)) "_RTL_CRITICAL_SECTION*" 0 reg32_t "HGDIOBJ" 0 reg32_t "HICON" 37 ptr(struct(0:reg32_t,4:uint32_t,8:uint32_t,12:num32_t,16:reg32_t,20:struct(0:num32_t,4:num32_t))) "MSG*" 0 reg32_t "HBRUSH" 14 code_t "(HDC,LPARAM,WPARAM,int,int -ms-> BOOL)*" 26 ptr(struct(0:reg32_t,4:reg32_t,8:struct(0:num32_t,4:num32_t,8:num32_t,12:num32_t),24:reg32_t,28:reg32_t,32:array(reg8_t,32))) "PAINTSTRUCT*" 14 code_t "(HWND,LPARAM -ms-> BOOL)*" 17 ptr(reg32_t) "HICON*" 38 ptr(struct(0:reg16_t,2:reg16_t,4:reg16_t,6:reg16_t,8:reg16_t,10:reg16_t,12:reg16_t,14:reg16_t)) "_SYSTEMTIME*" 39 ptr(struct(0:reg32_t,4:struct(0:reg32_t,4:reg32_t),12:struct(0:reg32_t,4:reg32_t),20:struct(0:reg32_t,4:reg32_t),28:reg32_t,32:reg32_t,36:reg32_t,40:reg32_t,44:array(num8_t,260),304:array(num8_t,14))) "_WIN32_FIND_DATAA*" 38 ptr(struct(0:reg16_t,2:reg16_t,4:reg16_t,6:reg16_t,8:reg16_t,10:reg16_t,12:reg16_t,14:reg16_t)) "SYSTEMTIME*" 40 ptr(struct(0:uint32_t,4:uint32_t,8:uint32_t,12:uint32_t,16:uint32_t,20:reg32_t,24:reg32_t,28:reg32_t,32:reg32_t,36:ptr(num8_t),40:uint32_t,44:reg32_t)) "tagMENUITEMINFOA*" 41 ptr(struct(0:reg32_t,4:reg32_t,8:code_t,12:ptr(num8_t),16:ptr(num8_t),20:reg32_t,24:reg32_t,28:ptr(num8_t),32:reg32_t,36:ptr(num8_t),40:reg32_t,44:ptr(num8_t),48:ptr(num8_t),52:reg32_t,56:reg16_t,58:reg16_t,60:ptr(num8_t),64:num32_t,68:code_t,72:ptr(num8_t))) "tagOFNA*" 2 num32_t "INT" 16 ptr(struct(0:reg32_t,4:reg32_t)) "_FILETIME*" 29 ptr(struct(0:num32_t,4:num32_t)) "tagSIZE*" 42 ptr(struct(0:num32_t,4:array(uint16_t,32),68:struct(0:reg16_t,2:reg16_t,4:reg16_t,6:reg16_t,8:reg16_t,10:reg16_t,12:reg16_t,14:reg16_t),84:num32_t,88:array(uint16_t,32),152:struct(0:reg16_t,2:reg16_t,4:reg16_t,6:reg16_t,8:reg16_t,10:reg16_t,12:reg16_t,14:reg16_t),168:num32_t)) "_TIME_ZONE_INFORMATION*" 43 ptr(struct(0:uint32_t,4:uint32_t,8:uint32_t,12:struct(0:num32_t,4:num32_t),20:struct(0:num32_t,4:num32_t),28:struct(0:num32_t,4:num32_t,8:num32_t,12:num32_t))) "WINDOWPLACEMENT*" 44 ptr(array(reg8_t,0)) "HIMAGELIST" 16 ptr(struct(0:reg32_t,4:reg32_t)) "INITCOMMONCONTROLSEX*" 18 ptr(num32_t) "LPLONG" 37 ptr(struct(0:reg32_t,4:uint32_t,8:uint32_t,12:num32_t,16:reg32_t,20:struct(0:num32_t,4:num32_t))) "tagMSG*" 0 reg32_t "HRSRC" 45 ptr(uint16_t) "wchar_t*" 46 ptr(struct(0:reg32_t,4:reg16_t,6:reg16_t,8:array(reg8_t,8))) "IID*" 47 ptr(ptr(TOP)) "void**" 48 ptr(ptr(struct(0:code_t,4:code_t,8:code_t))) "IUnknownVtbl**" 49 ptr(union(num64_t,struct(0:reg32_t,4:num32_t))) "Union_23*" 5 uint32_t "ULONG_PTR" 14 code_t "(DWORD -ms-> void)*" 0 reg32_t "HRGN" 0 reg32_t "HKEY" 17 ptr(reg32_t) "PHKEY" 50 union(ptr(num8_t),ptr(reg8_t)) "Union_15" 51 ptr(struct(0:uint32_t,4:code_t,8:num32_t,12:num32_t,16:code_t,20:reg32_t,24:reg32_t,28:reg32_t,32:ptr(num8_t),36:ptr(num8_t))) "WNDCLASSA*" 52 ptr(struct(0:uint32_t,4:uint32_t,8:code_t,12:num32_t,16:num32_t,20:code_t,24:reg32_t,28:reg32_t,32:reg32_t,36:ptr(num8_t),40:ptr(num8_t),44:reg32_t)) "WNDCLASSEXA*" 53 ptr(struct(0:reg32_t,4:ptr(struct(0:struct(0:uint16_t,2:array(reg8_t,1)))),8:ptr(num8_t),12:ptr(num8_t),16:uint32_t,20:code_t,24:num32_t,28:num32_t)) "_browseinfoA*" 54 ptr(struct(0:reg32_t,4:uint32_t,8:ptr(num8_t),12:ptr(num8_t),16:reg16_t,18:reg32_t,22:ptr(TOP),26:ptr(num8_t))) "_SHFILEOPSTRUCTA*" 55 ptr(union(ptr(ptr(TOP)),ptr(struct(0:ptr(array(reg8_t,0)))))) "Union_24*" 56 ptr(struct(0:reg32_t,4:num32_t,8:reg32_t,12:array(num8_t,260),272:array(num8_t,80))) "SHFILEINFOA*" 57 ptr(ptr(struct(0:ptr(struct(0:code_t,4:code_t,8:code_t,12:code_t,16:code_t,20:code_t,24:code_t,28:code_t,32:code_t))))) "IMalloc**" 58 union(ptr(struct(0:struct(0:uint16_t,2:array(reg8_t,1)))),ptr(struct(0:uint16_t,2:array(reg8_t,1)))) "Union_16" 59 ptr(uint32_t) "PULONG_PTR" 40 ptr(struct(0:uint32_t,4:uint32_t,8:uint32_t,12:uint32_t,16:uint32_t,20:reg32_t,24:reg32_t,28:reg32_t,32:reg32_t,36:ptr(num8_t),40:uint32_t,44:reg32_t)) "MENUITEMINFOA*" 14 code_t "(HWND,UINT,UINT,DWORD -ms-> void)*" 12 ptr(TOP) "PVOID" 59 ptr(uint32_t) "unsigned int*" 47 ptr(ptr(TOP)) "LPVOID*" 60 ptr(struct(0:reg16_t,2:reg16_t,4:array(num8_t,257),261:array(num8_t,129),390:uint16_t,392:uint16_t,396:ptr(num8_t))) "WSAData*" 5 uint32_t "u_int" 61 ptr(struct(0:uint32_t,4:array(uint32_t,64))) "fd_set*" 62 ptr(struct(0:uint32_t,4:uint16_t,6:uint16_t,8:num16_t,10:num16_t,12:num16_t,16:uint32_t,20:num32_t,24:num32_t,28:num32_t,32:num32_t)) "stat*" 63 ptr(struct(0:uint16_t,2:array(num8_t,14))) "sockaddr*" 14 code_t "(_In_ void*,_In_ void* -> int)*" 64 ptr(struct(0:ptr(num8_t),4:num32_t,8:ptr(num8_t),12:num32_t,16:num32_t,20:num32_t,24:num32_t,28:ptr(num8_t))) "FILE*" 5 uint32_t "u_long" 65 union(num32_t,ptr(struct(0:array(reg8_t,200),200:reg32_t)),ptr(struct(100:reg32_t,104:reg32_t,108:reg32_t)),ptr(struct(116:reg32_t,120:reg32_t)),ptr(struct(0:array(reg8_t,232),232:reg32_t)),ptr(struct(4:ptr(num8_t),8:reg16_t))) "Union_141" 66 union(uint32_t,struct(0:uint8_t,1:uint8_t,2:uint8_t,3:uint8_t),struct(0:uint16_t,2:uint16_t)) "Union_11" 59 ptr(uint32_t) "u_long*" 18 ptr(num32_t) "int[]" 67 ptr(ptr(num8_t)) "char**" 18 ptr(num32_t) "time_t*" 14 code_t "(void -> void)*" 68 ptr(struct(0:num32_t,4:ptr(TOP),8:ptr(TOP))) "_SCOPETABLE_ENTRY*" 69 ptr(array(reg8_t,3)) "unknown_24*" 70 ptr(struct(0:reg32_t,4:code_t)) "Struct_4*" 71 ptr(array(reg8_t,64)) "unknown_512*" 72 union(ptr(num8_t),reg32_t,ptr(struct(0:ptr(num8_t),4:reg32_t)),ptr(struct(0:union(ptr(num8_t),num32_t,uint32_t,uint32_t),4:union(num32_t,reg32_t))),ptr(struct(0:reg32_t,4:ptr(num8_t))),ptr(struct(0:ptr(num8_t),4:uint32_t,8:reg32_t))) "Union_49" 73 ptr(array(reg8_t,117)) "unknown_936*" 74 ptr(struct(0:reg32_t,8:code_t)) "Struct_1*" 75 ptr(array(reg8_t,65)) "unknown_520*" 76 ptr(struct(0:reg32_t,4:uint32_t,8:reg16_t,12:ptr(struct(0:reg32_t,16:reg32_t,92:ptr(num8_t))),16:reg32_t,20:reg32_t,24:reg32_t)) "Struct_143*" 14 code_t "PAPCFUNC" 77 ptr(struct(4:code_t,8:code_t,12:code_t)) "Struct_2*" 78 ptr(array(reg8_t,32)) "unknown_256*" 79 ptr(array(reg8_t,256)) "unknown_2048*" 59 ptr(uint32_t) "unsigned int[]" 80 ptr(array(reg8_t,67)) "unknown_536*" 81 ptr(struct(0:reg32_t,4:reg32_t,8:uint32_t,12:num32_t,16:num32_t)) "Struct_5*" 82 union(num32_t,reg32_t) "Union_126" 83 ptr(array(reg8_t,128)) "unknown_1024*" 84 union(reg32_t,int32_t) "Union_127" 82 union(num32_t,reg32_t) "Union_102" 85 int32_t "signed int" 86 ptr(array(reg8_t,46)) "unknown_368*" 87 ptr(struct(0:array(reg8_t,68),68:code_t)) "StructFrag_153*" 88 union(ptr(num8_t),reg32_t,num32_t,reg32_t,ptr(struct(0:reg32_t,4:ptr(num8_t))),ptr(struct(0:reg32_t,4:ptr(num8_t),16:reg32_t,24:union(num32_t,ptr(struct(12:ptr(TOP),16:uint32_t,20:reg32_t,24:reg32_t,28:reg32_t,32:ptr(num8_t),36:ptr(num8_t)))))),ptr(struct(8:reg32_t,20:reg32_t,24:ptr(num8_t)))) "Union_123" 89 union(ptr(num8_t),num32_t,reg32_t,reg32_t,ptr(reg32_t),ptr(struct(20:ptr(num8_t),28:code_t,60:ptr(num8_t),64:reg16_t,72:ptr(num8_t),76:ptr(num8_t),100:ptr(num8_t))),ptr(struct(0:reg32_t,16:reg32_t,92:ptr(num8_t))),ptr(struct(0:array(reg8_t,72),72:ptr(num8_t))),ptr(struct(68:reg32_t,72:ptr(num8_t),76:ptr(num8_t))),ptr(struct(0:array(reg8_t,24),24:reg32_t)),ptr(struct(36:code_t,40:code_t)),ptr(struct(8:reg32_t,20:reg32_t,24:ptr(num8_t)))) "Union_125" 90 ptr(struct(0:reg32_t,12:reg32_t,16:ptr(num8_t))) "Struct_6*" 91 union(ptr(TOP),num32_t) "Union_21" 92 ptr(struct(0:uint32_t,4:ptr(num8_t),8:ptr(num8_t),12:ptr(num8_t),16:ptr(num8_t))) "Struct_299*" 93 ptr(array(reg8_t,76)) "unknown_608*" 94 ptr(array(reg8_t,146)) "unknown_1168*" 95 ptr(array(reg8_t,62)) "unknown_496*" 96 reg64_t "qword" 97 ptr(array(reg8_t,115)) "unknown_920*" 98 union(reg32_t,num32_t,reg32_t,uint32_t) "Union_128" 99 array(reg8_t,32) "unknown_256" 100 array(reg8_t,20) "unknown_160" 101 union(ptr(struct(0:array(reg8_t,40),40:reg32_t)),ptr(reg32_t)) "Union_129" 102 union(reg32_t,reg32_t) "Union_5" 0 reg32_t "HBITMAP" 82 union(num32_t,reg32_t) "Union_130" 103 union(reg32_t,uint32_t) "Union_131" 82 union(num32_t,reg32_t) "Union_132" 104 union(reg32_t,num32_t) "Union_6" 105 ptr(struct(0:union(reg32_t,reg32_t),4:union(reg32_t,reg32_t),12:union(reg32_t,reg32_t),16:union(reg32_t,num32_t),24:union(reg32_t,reg32_t),28:union(reg32_t,num32_t),40:reg32_t,44:reg32_t,48:num8_t)) "Struct_304*" 106 ptr(reg64_t) "qword*" 107 ptr(array(reg8_t,34)) "unknown_272*" 108 ptr(array(reg8_t,160)) "unknown_1280*" 109 ptr(struct(4:num8_t,12:ptr(num8_t),16:num8_t,20:ptr(num8_t))) "Struct_9*" 3 ptr(num8_t) "char[]" 110 array(reg8_t,16) "unknown_128" 111 ptr(array(reg8_t,91)) "unknown_728*" 112 ptr(struct(0:reg32_t,4:num32_t)) "Struct_155*" 113 union(ptr(reg32_t),num32_t) "Union_51" 114 ptr(struct(4:reg32_t,8:reg32_t,60:num32_t)) "Struct_156*" 115 ptr(struct(0:reg16_t,2:num8_t)) "StructFrag_21*" 116 ptr(struct(0:array(reg8_t,12),12:code_t)) "StructFrag_7*" 117 union(uint32_t,uint32_t) "Union_35" 118 ptr(array(reg8_t,98)) "unknown_784*" 115 ptr(struct(0:reg16_t,2:num8_t)) "StructFrag_56*" 119 ptr(struct(16:code_t,20:code_t)) "Struct_305*" 120 ptr(array(reg8_t,161)) "unknown_1288*" 121 ptr(struct(0:reg32_t,16:code_t)) "Struct_11*" 122 ptr(int32_t) "signed int*" 123 ptr(struct(0:ptr(TOP),4:int32_t,16:code_t)) "Struct_307*" 124 ptr(struct(0:ptr(TOP),4:reg32_t,12:reg32_t)) "Struct_12*" 125 ptr(struct(0:ptr(TOP),4:reg32_t)) "Struct_13*" 126 ptr(array(reg8_t,116)) "unknown_928*" 127 ptr(struct(0:ptr(num8_t),4:ptr(num8_t),8:reg32_t)) "Struct_14*" 128 ptr(array(reg8_t,107)) "unknown_856*" 129 ptr(struct(4:reg32_t,8:ptr(struct(0:ptr(num8_t),4:reg32_t,12:reg32_t,16:ptr(code_t))))) "Struct_157*" 130 ptr(array(reg8_t,120)) "unknown_960*" 131 union(num32_t,ptr(array(reg8_t,50))) "Union_52" 132 ptr(code_t) "proc*[]" 14 code_t "WNDPROC" 133 union(num32_t,ptr(code_t)) "Union_54" 134 ptr(struct(4:reg32_t,8:ptr(struct(0:ptr(num8_t),4:reg32_t)))) "Struct_164*" 135 ptr(struct(0:reg32_t,8:ptr(struct(0:reg32_t,4:reg32_t)))) "Struct_165*" 136 union(num32_t,ptr(struct(0:reg32_t,8:ptr(struct(0:reg32_t,4:reg32_t))))) "Union_56" 137 union(ptr(array(reg8_t,0)),num32_t) "Union_30" 138 array(reg8_t,24) "unknown_192" 139 ptr(struct(4:reg32_t,12:num32_t,16:ptr(TOP),20:num32_t,24:num32_t,36:num32_t)) "Struct_169*" 140 ptr(struct(0:ptr(struct(24:reg32_t,32:ptr(TOP))),4:reg32_t)) "Struct_166*" 141 ptr(struct(24:reg32_t,32:ptr(TOP))) "Struct_17*" 142 union(num32_t,ptr(struct(0:num32_t,4:num32_t,8:num32_t,12:num32_t))) "Union_57" 143 union(num32_t,uint32_t) "Union_58" 14 code_t "(void -ms-> int)*" 144 ptr(struct(0:reg32_t,4:ptr(TOP))) "Struct_85*" 145 ptr(struct(8:ptr(num8_t),16:ptr(num8_t))) "Struct_112*" 146 ptr(array(reg8_t,68)) "unknown_544*" 147 ptr(array(reg8_t,56)) "unknown_448*" 148 ptr(array(reg8_t,106)) "unknown_848*" 149 union(ptr(num8_t),reg32_t) "Union_29" 150 ptr(array(reg8_t,97)) "unknown_776*" 151 ptr(struct(0:uint32_t,4:ptr(num8_t),8:ptr(num8_t),12:ptr(num8_t),16:ptr(num8_t),36:reg32_t)) "Struct_117*" 152 union(reg32_t,ptr(struct(0:uint32_t,4:ptr(num8_t),8:ptr(num8_t),12:ptr(num8_t),16:ptr(num8_t),36:reg32_t))) "Union_31" 153 union(num32_t,ptr(array(reg8_t,67))) "Union_32" 67 ptr(ptr(num8_t)) "LPSTR*" 154 union(struct(0:num32_t,4:num32_t,8:num32_t,12:num32_t),struct(0:num32_t,4:num32_t,8:num32_t,12:num32_t)) "Union_9" 155 ptr(struct(0:array(reg8_t,32),32:reg32_t)) "StructFrag_13*" 0 reg32_t "HPEN" 156 ptr(struct(0:array(reg8_t,56),56:reg32_t)) "StructFrag_11*" 157 ptr(struct(0:array(reg8_t,64),64:reg32_t)) "StructFrag_10*" 158 ptr(struct(4:uint32_t,8:uint32_t,48:reg32_t,52:reg32_t)) "Struct_171*" 159 ptr(struct(0:reg64_t,8:num32_t)) "StructFrag_159*" 160 ptr(struct(0:ptr(num8_t),8:ptr(num8_t),12:ptr(num8_t),16:ptr(num8_t),20:ptr(num8_t))) "Struct_24*" 161 ptr(struct(8:ptr(TOP),12:ptr(TOP),16:ptr(TOP),20:ptr(TOP))) "Struct_309*" 162 ptr(array(reg8_t,79)) "unknown_632*" 163 ptr(struct(0:ptr(num8_t),4:reg32_t)) "Struct_122*" 164 ptr(struct(40:ptr(struct(0:ptr(num8_t),4:reg32_t)),44:num32_t)) "Struct_123*" 165 array(reg8_t,112) "unknown_896" 166 ptr(struct(0:array(reg8_t,40),40:ptr(TOP))) "StructFrag_9*" 167 ptr(struct(0:array(reg8_t,12),12:num32_t)) "StructFrag_12*" 102 union(reg32_t,reg32_t) "Union_61" 168 ptr(array(reg8_t,37)) "unknown_296*" 169 ptr(array(reg8_t,53)) "unknown_424*" 170 ptr(array(reg8_t,61)) "unknown_488*" 171 ptr(array(reg8_t,47)) "unknown_376*" 172 ptr(array(reg8_t,108)) "unknown_864*" 82 union(num32_t,reg32_t) "Union_7" 173 union(ptr(num8_t),num32_t,uint32_t,uint32_t) "Union_33" 174 ptr(struct(0:union(ptr(num8_t),num32_t,uint32_t,uint32_t),4:union(num32_t,reg32_t))) "Struct_124*" 175 ptr(array(reg8_t,238)) "unknown_1904*" 176 ptr(array(reg8_t,50)) "unknown_400*" 177 array(reg8_t,6) "unknown_48" 178 ptr(struct(16:reg16_t,20:uint32_t,24:ptr(num8_t))) "Struct_27*" 179 ptr(struct(12:reg32_t,24:ptr(num8_t))) "Struct_177*" 180 ptr(struct(12:reg32_t,20:num32_t,24:ptr(TOP))) "Struct_178*" 181 ptr(struct(12:reg32_t,20:uint32_t,24:ptr(TOP))) "Struct_179*" 182 union(num32_t,uint32_t,uint32_t) "Union_62" 183 ptr(struct(0:union(num32_t,uint32_t,uint32_t),4:reg32_t)) "Struct_173*" 7 union(ptr(num8_t),num32_t) "Union_34" 59 ptr(uint32_t) "PUINT_PTR" 184 ptr(array(reg8_t,29)) "unknown_232*" 185 ptr(struct(0:uint32_t,4:reg32_t)) "Struct_183*" 186 union(ptr(uint32_t),ptr(struct(0:uint32_t,4:reg32_t))) "Union_63" 187 ptr(struct(0:uint32_t,8:reg32_t)) "Struct_30*" 188 ptr(array(reg8_t,176)) "unknown_1408*" 189 ptr(array(reg8_t,36)) "unknown_288*" 190 ptr(array(reg8_t,59)) "unknown_472*" 191 ptr(struct(8:reg32_t,20:num32_t)) "Struct_32*" 192 union(ptr(num8_t),uint32_t) "Union_64" 193 ptr(struct(16:reg16_t,24:ptr(TOP))) "Struct_33*" 194 ptr(array(reg8_t,28)) "unknown_224*" 195 ptr(struct(0:array(reg8_t,44),44:ptr(num8_t))) "StructFrag_162*" 196 ptr(struct(0:array(reg8_t,12),12:ptr(num8_t))) "StructFrag_139*" 197 ptr(array(reg8_t,260)) "unknown_2080*" 198 ptr(array(reg8_t,18)) "unknown_144*" 8 num8_t "CHAR" 199 union(ptr(num8_t),ptr(struct(0:reg32_t,4:num8_t))) "Union_135" 200 ptr(array(reg8_t,43)) "unknown_344*" 201 ptr(struct(4:reg32_t,8:reg32_t)) "Struct_311*" 202 union(num32_t,ptr(struct(4:reg32_t,8:reg32_t))) "Union_134" 203 ptr(array(reg8_t,55)) "unknown_440*" 204 ptr(struct(4:reg32_t,12:ptr(TOP))) "Struct_312*" 205 ptr(struct(12:ptr(TOP),24:ptr(TOP),28:ptr(TOP),44:ptr(TOP),52:ptr(TOP))) "Struct_35*" 206 ptr(struct(0:reg32_t,4:reg32_t,8:reg32_t)) "Struct_193*" 207 ptr(struct(112:reg32_t,116:reg32_t,120:reg32_t)) "Struct_315*" 206 ptr(struct(0:reg32_t,4:reg32_t,8:reg32_t)) "Struct_51*" 208 ptr(struct(0:array(reg8_t,224),224:reg32_t)) "StructFrag_85*" 209 ptr(struct(0:ptr(num8_t),4:num32_t,8:ptr(num8_t),12:num32_t)) "Struct_52*" 210 ptr(array(reg8_t,58)) "unknown_464*" 211 ptr(array(reg8_t,75)) "unknown_600*" 212 ptr(struct(4:ptr(num8_t),8:ptr(num8_t),16:ptr(num8_t),20:ptr(num8_t))) "Struct_34*" 213 ptr(struct(0:reg32_t,8:ptr(num8_t),12:ptr(num8_t),16:reg32_t,20:ptr(num8_t),24:ptr(num8_t),48:reg32_t,52:reg32_t,56:reg32_t,60:ptr(num8_t),64:reg32_t,68:reg32_t,72:ptr(num8_t),76:ptr(num8_t),80:reg32_t,84:reg32_t,88:reg32_t,92:ptr(num8_t),96:reg32_t,100:ptr(num8_t))) "Struct_191*" 214 ptr(struct(60:ptr(TOP),72:ptr(TOP),76:ptr(TOP),92:ptr(TOP),100:ptr(TOP))) "Struct_39*" 215 ptr(array(reg8_t,24)) "unknown_192*" 216 ptr(array(reg8_t,8192)) "unknown_65536*" 217 ptr(struct(4:uint32_t,20:reg32_t)) "Struct_40*" 218 ptr(struct(4:reg32_t,8:uint32_t,12:reg16_t,16:reg32_t)) "Struct_43*" 219 ptr(struct(0:reg32_t,16:reg32_t,92:ptr(num8_t))) "Struct_142*" 220 array(reg8_t,8192) "unknown_65536" 221 ptr(struct(0:ptr(num8_t),4:ptr(ptr(num8_t)),8:num16_t,10:num16_t,12:ptr(ptr(num8_t)))) "hostent*" 2 num32_t "time_t" 222 ptr(struct(4:uint32_t,8:reg16_t,12:reg32_t,16:code_t)) "Struct_44*" 223 union(ptr(reg32_t),ptr(struct(100:reg32_t,104:reg32_t,108:reg32_t))) "Union_71" 224 ptr(struct(4:reg32_t,8:reg32_t,12:ptr(num8_t),16:ptr(TOP))) "Struct_212*" 225 ptr(struct(0:array(reg8_t,6),6:num8_t)) "StructFrag_79*" 226 ptr(struct(12:ptr(TOP),16:ptr(TOP),24:ptr(TOP),36:ptr(TOP))) "Struct_53*" 227 union(ptr(reg32_t),ptr(struct(0:array(reg8_t,200),200:reg32_t)),ptr(struct(100:reg32_t,104:reg32_t,108:reg32_t)),ptr(struct(116:reg32_t,120:reg32_t))) "Union_74" 228 ptr(struct(0:ptr(TOP),4:reg32_t,8:uint32_t)) "Struct_49*" 229 ptr(ptr(struct(0:reg64_t,8:uint32_t))) "StructFrag_0**" 230 ptr(struct(100:reg32_t,104:reg32_t,108:reg32_t)) "Struct_47*" 231 union(ptr(struct(100:reg32_t,104:reg32_t,108:reg32_t)),ptr(struct(112:reg32_t,116:reg32_t,120:reg32_t))) "Union_76" 232 union(ptr(struct(12:ptr(TOP),16:ptr(TOP),24:ptr(TOP),28:num32_t,36:ptr(TOP))),ptr(struct(12:ptr(TOP),16:ptr(TOP),24:ptr(TOP),32:reg32_t,36:ptr(TOP))),ptr(struct(12:ptr(TOP),16:ptr(TOP),24:ptr(TOP),36:ptr(TOP)))) "Union_75" 233 ptr(struct(0:reg32_t,4:num8_t)) "StructFrag_98*" 234 ptr(struct(20:ptr(num8_t),28:code_t,60:ptr(num8_t),64:reg16_t,72:ptr(num8_t),76:ptr(num8_t),100:ptr(num8_t))) "Struct_75*" 235 ptr(struct(12:ptr(num8_t),16:ptr(TOP),20:reg32_t)) "Struct_77*" 236 union(ptr(struct(0:array(reg8_t,200),200:reg32_t)),ptr(struct(100:reg32_t,104:reg32_t,108:reg32_t)),ptr(struct(116:reg32_t,120:reg32_t))) "Union_65" 237 ptr(struct(12:ptr(TOP),16:ptr(TOP),24:ptr(TOP),28:num32_t,36:ptr(TOP))) "Struct_187*" 238 ptr(struct(0:array(reg8_t,24),24:reg32_t)) "StructFrag_95*" 239 union(ptr(struct(0:ptr(struct(0:reg16_t,2:reg16_t,4:ptr(array(reg8_t,0)),8:struct(0:ptr(struct(0:ptr(TOP),4:ptr(TOP))),4:ptr(struct(0:ptr(TOP),4:ptr(TOP)))),16:reg32_t,20:reg32_t,24:array(reg32_t,2))),4:num32_t,8:num32_t,12:reg32_t,16:reg32_t,20:reg32_t)),ptr(struct(0:array(reg8_t,128),128:ptr(ptr(struct(0:ptr(TOP))))))) "Union_77" 240 union(ptr(TOP),struct(0:ptr(TOP))) "Union_78" 241 union(ptr(struct(0:ptr(struct(0:reg16_t,2:reg16_t,4:ptr(array(reg8_t,0)),8:struct(0:ptr(struct(0:ptr(TOP),4:ptr(TOP))),4:ptr(struct(0:ptr(TOP),4:ptr(TOP)))),16:reg32_t,20:reg32_t,24:array(reg32_t,2))),4:num32_t,8:num32_t,12:reg32_t,16:reg32_t,20:reg32_t)),ptr(reg32_t),ptr(struct(0:array(reg8_t,232),232:reg32_t))) "Union_72" 242 ptr(struct(36:code_t,40:code_t)) "Struct_218*" 14 code_t "(_Inout_ void*,size_t -> void*)*" 243 ptr(struct(116:reg32_t,120:reg32_t)) "Struct_60*" 244 ptr(struct(0:ptr(TOP),4:ptr(TOP))) "Struct_194*" 245 ptr(struct(12:ptr(TOP),16:ptr(TOP),24:ptr(TOP),32:reg32_t,36:ptr(TOP))) "Struct_199*" 246 union(ptr(reg32_t),ptr(struct(0:array(reg8_t,232),232:reg32_t))) "Union_68" 247 ptr(struct(4:ptr(num8_t),8:reg16_t)) "Struct_68*" 248 ptr(struct(20:ptr(num8_t),24:reg32_t,28:code_t,32:code_t)) "Struct_201*" 249 ptr(struct(40:ptr(num8_t),44:ptr(num8_t))) "Struct_78*" 250 union(ptr(struct(0:array(reg8_t,24),24:reg32_t)),ptr(struct(36:code_t,40:code_t))) "Union_80" 251 ptr(struct(0:reg32_t,104:ptr(num8_t))) "Struct_319*" 7 union(ptr(num8_t),num32_t) "Union_10" 252 array(reg8_t,259) "unknown_2072" 253 ptr(struct(0:reg64_t,8:union(ptr(num8_t),ptr(num8_t)))) "StructFrag_166*" 254 ptr(struct(4:reg32_t,12:ptr(struct(0:reg64_t,8:union(ptr(num8_t),ptr(num8_t)))))) "Struct_321*" 255 union(ptr(num8_t),ptr(num8_t)) "Union_46" 256 ptr(struct(0:reg32_t,8:ptr(num8_t))) "Struct_322*" 257 ptr(array(reg8_t,49)) "unknown_392*" 258 union(ptr(struct(20:ptr(num8_t),28:code_t,60:ptr(num8_t),64:reg16_t,72:ptr(num8_t),76:ptr(num8_t),100:ptr(num8_t))),ptr(struct(0:array(reg8_t,72),72:ptr(num8_t))),ptr(struct(68:reg32_t,72:ptr(num8_t),76:ptr(num8_t)))) "Union_81" 259 union(ptr(struct(0:array(reg8_t,200),200:reg32_t)),ptr(struct(100:reg32_t,104:reg32_t,108:reg32_t)),ptr(struct(116:reg32_t,120:reg32_t)),ptr(struct(0:array(reg8_t,232),232:reg32_t))) "Union_66" 260 ptr(struct(0:array(reg8_t,16),16:num8_t)) "StructFrag_1*" 261 ptr(struct(0:array(reg8_t,72),72:ptr(num8_t))) "StructFrag_33*" 262 union(ptr(num8_t),ptr(struct(0:array(reg8_t,16),16:num8_t))) "Union_70" 263 union(ptr(reg32_t),ptr(struct(116:reg32_t,120:reg32_t))) "Union_69" 264 ptr(struct(68:reg32_t,72:ptr(num8_t),76:ptr(num8_t))) "Struct_206*" 247 ptr(struct(4:ptr(num8_t),8:reg16_t)) "Struct_70*" 265 ptr(struct(12:reg32_t,16:reg32_t,20:code_t)) "Struct_224*" 266 ptr(struct(12:ptr(num8_t),24:ptr(num8_t),28:ptr(num8_t),44:ptr(num8_t),52:ptr(num8_t))) "Struct_36*" 267 ptr(struct(4:num8_t,8:num8_t,12:ptr(num8_t),16:reg16_t,20:num8_t,28:ptr(num8_t),32:num8_t,36:num8_t,40:num8_t,44:ptr(num8_t),48:num8_t,52:ptr(num8_t))) "Struct_234*" 268 ptr(struct(0:array(reg8_t,24),24:ptr(num8_t))) "StructFrag_16*" 269 ptr(struct(0:array(reg8_t,104),104:ptr(num8_t))) "StructFrag_167*" 270 ptr(struct(4:num8_t,8:num8_t,12:ptr(num8_t),16:reg16_t,20:num8_t,24:ptr(num8_t),28:ptr(num8_t),32:num8_t,36:num8_t,40:num8_t,44:ptr(num8_t),48:num8_t,52:ptr(num8_t))) "Struct_241*" 271 ptr(array(reg8_t,92)) "unknown_736*" 272 ptr(struct(0:reg32_t,4:uint32_t,8:reg32_t,12:ptr(num8_t),16:uint32_t,20:uint32_t,24:ptr(num8_t),28:ptr(num8_t),32:uint32_t,36:uint32_t,40:uint32_t,44:ptr(num8_t),48:uint32_t,52:ptr(num8_t))) "Struct_225*" 273 ptr(array(reg8_t,80)) "unknown_640*" 274 ptr(struct(0:reg32_t,4:ptr(reg32_t),8:reg32_t,16:reg32_t,20:reg32_t,24:uint32_t,28:ptr(TOP))) "Struct_323*" 275 ptr(struct(8:reg32_t,12:ptr(TOP),16:ptr(TOP),20:reg32_t,24:reg32_t,28:reg32_t)) "Struct_210*" 276 ptr(struct(0:reg32_t,4:ptr(TOP),8:ptr(TOP),12:reg32_t,16:reg32_t,20:reg32_t)) "Struct_208*" 230 ptr(struct(100:reg32_t,104:reg32_t,108:reg32_t)) "Struct_211*" 277 ptr(struct(0:ptr(num8_t),4:num32_t)) "Struct_57*" 278 union(ptr(struct(100:reg32_t,104:reg32_t,108:reg32_t)),ptr(struct(0:array(reg8_t,128),128:ptr(ptr(struct(0:ptr(TOP)))))),ptr(struct(100:reg32_t,104:reg32_t,108:reg32_t))) "Union_79" 207 ptr(struct(112:reg32_t,116:reg32_t,120:reg32_t)) "Struct_216*" 279 union(ptr(struct(116:reg32_t,120:reg32_t)),ptr(struct(0:array(reg8_t,232),232:reg32_t)),ptr(struct(112:reg32_t,116:reg32_t,120:reg32_t))) "Union_73" 280 ptr(struct(0:reg32_t,4:uint32_t)) "StructFrag_169*" 281 ptr(array(reg8_t,33)) "unknown_264*" 282 ptr(array(reg8_t,119)) "unknown_952*" 283 ptr(struct(4:num32_t,8:num32_t,12:ptr(TOP),16:reg32_t,20:reg32_t,24:reg32_t,28:reg32_t,32:union(reg32_t,num32_t))) "Struct_244*" 284 ptr(struct(20:ptr(num8_t),24:reg32_t,28:ptr(struct(4:ptr(num8_t),8:ptr(num8_t))),32:ptr(TOP))) "Struct_243*" 285 ptr(struct(4:ptr(num8_t),8:ptr(num8_t))) "Struct_84*" 286 ptr(struct(0:num32_t,4:num32_t,12:ptr(TOP),16:reg32_t,20:reg32_t,24:reg32_t,28:reg32_t,32:union(reg32_t,num32_t))) "Struct_245*" 287 union(num32_t,ptr(struct(0:num32_t,4:num32_t,12:ptr(TOP),16:reg32_t,20:reg32_t,24:reg32_t,28:reg32_t,32:union(reg32_t,num32_t)))) "Union_83" 104 union(reg32_t,num32_t) "Union_82" 288 ptr(reg16_t) "word[]" 104 union(reg32_t,num32_t) "Union_3" 289 ptr(array(reg8_t,85)) "unknown_680*" 290 ptr(struct(8:ptr(num8_t),16:ptr(num8_t),28:ptr(num8_t))) "Struct_86*" 291 union(ptr(ptr(TOP)),struct(0:reg32_t,4:ptr(TOP)),ptr(struct(0:reg32_t,4:ptr(TOP)))) "Union_84" 292 ptr(struct(0:union(ptr(ptr(TOP)),struct(0:reg32_t,4:ptr(TOP)),ptr(struct(0:reg32_t,4:ptr(TOP)))))) "Struct_247*" 293 ptr(struct(0:struct(0:reg32_t,4:ptr(TOP)))) "Struct_327*" 294 union(ptr(ptr(TOP)),ptr(struct(0:ptr(TOP),4:ptr(TOP),84:ptr(TOP),104:ptr(TOP))),struct(0:reg32_t,4:ptr(TOP)),ptr(struct(0:reg32_t,4:ptr(TOP)))) "Union_136" 295 ptr(struct(4:code_t,8:reg32_t)) "Struct_324*" 260 ptr(struct(0:array(reg8_t,16),16:num8_t)) "StructFrag_140*" 296 ptr(struct(0:ptr(reg32_t),4:ptr(struct(0:reg32_t,4:ptr(reg32_t))))) "Struct_328*" 297 struct(0:reg32_t,4:ptr(reg32_t)) "Struct_93" 298 ptr(struct(0:union(code_t,ptr(num32_t)),4:code_t,8:code_t,12:code_t,16:code_t,20:code_t,24:num32_t,28:num32_t)) "Struct_90*" 299 union(num32_t,ptr(num32_t)) "Union_85" 300 ptr(struct(0:ptr(TOP),4:ptr(TOP),84:ptr(TOP),104:ptr(TOP))) "Struct_3*" 301 union(num32_t,ptr(array(reg8_t,44))) "Union_87" 302 ptr(struct(0:reg32_t,12:uint32_t)) "Struct_94*" 303 array(reg8_t,9) "unknown_72" 304 union(num32_t,ptr(uint32_t)) "Union_86" 305 ptr(struct(0:array(reg8_t,88),88:num8_t)) "StructFrag_38*" 306 array(reg8_t,7) "unknown_56" 307 ptr(array(reg8_t,94)) "unknown_752*" 308 ptr(struct(0:reg32_t,4:ptr(num8_t))) "StructFrag_3*" 309 ptr(struct(0:reg64_t,8:reg32_t)) "StructFrag_15*" 310 ptr(struct(0:reg32_t,4:ptr(num8_t),8:reg32_t)) "Struct_329*" 311 ptr(array(reg8_t,48)) "unknown_384*" 312 ptr(array(reg8_t,95)) "unknown_760*" 313 ptr(array(reg8_t,105)) "unknown_840*" 314 ptr(struct(0:ptr(TOP),8:ptr(TOP),12:ptr(TOP),16:reg32_t)) "Struct_257*" 315 ptr(struct(0:ptr(TOP),4:num32_t,8:ptr(TOP),12:ptr(TOP),20:reg32_t,24:reg32_t,28:reg32_t)) "Struct_258*" 316 union(num32_t,ptr(struct(0:ptr(TOP),4:num32_t,8:ptr(TOP),12:ptr(TOP),20:reg32_t,24:reg32_t,28:reg32_t))) "Union_88" 317 union(num32_t,ptr(array(reg8_t,41))) "Union_89" 67 ptr(ptr(num8_t)) "char*[]" 149 union(ptr(num8_t),reg32_t) "Union_13" 318 union(reg32_t,ptr(num32_t)) "Union_90" 319 array(reg8_t,28) "unknown_224" 320 ptr(struct(0:reg32_t,12:reg16_t)) "Struct_96*" 321 ptr(array(reg8_t,38)) "unknown_304*" 322 ptr(struct(4:ptr(num8_t),8:ptr(num8_t),16:ptr(num8_t))) "Struct_97*" 323 ptr(struct(0:array(reg8_t,16),16:num32_t)) "StructFrag_40*" 324 ptr(array(reg8_t,93)) "unknown_744*" 192 union(ptr(num8_t),uint32_t) "Union_91" 325 union(ptr(num8_t),uint32_t,uint32_t) "Union_92" 326 ptr(array(reg8_t,306)) "unknown_2448*" 122 ptr(int32_t) "signed int[]" 327 ptr(struct(0:ptr(struct(8:reg32_t,20:reg32_t,24:ptr(num8_t))),4:reg32_t,8:reg32_t)) "Struct_267*" 327 ptr(struct(0:ptr(struct(8:reg32_t,20:reg32_t,24:ptr(num8_t))),4:reg32_t,8:reg32_t)) "Struct_270*" 328 ptr(struct(8:reg32_t,20:reg32_t,24:ptr(num8_t))) "Struct_268*" 329 ptr(array(reg8_t,78)) "unknown_624*" 330 union(num32_t,ptr(struct(0:ptr(num8_t),4:reg32_t))) "Union_94" 331 ptr(struct(0:num8_t,4:reg32_t,72:ptr(num8_t))) "Struct_269*" 332 union(num32_t,ptr(num8_t)) "Union_95" 333 union(num32_t,ptr(array(reg8_t,29))) "Union_96" 334 union(num32_t,ptr(struct(0:num8_t,4:reg32_t,72:ptr(num8_t)))) "Union_97" 335 ptr(array(reg8_t,73)) "unknown_584*" 336 ptr(struct(0:array(reg8_t,11396),11396:reg32_t)) "StructFrag_143*" 337 union(num32_t,ptr(struct(0:array(reg8_t,11396),11396:reg32_t))) "Union_98" 338 ptr(array(reg8_t,122)) "unknown_976*" 339 float64_t "double" 47 ptr(ptr(TOP)) "void*[]" 340 union(num32_t,ptr(ptr(ptr(TOP))),ptr(struct(0:union(ptr(ptr(TOP)),reg32_t),8:union(ptr(num8_t),num32_t,reg32_t,uint32_t),20:ptr(ptr(num8_t)),24:reg32_t,28:reg32_t,32:reg32_t,40:ptr(TOP),44:reg32_t,156:int32_t)),ptr(struct(0:ptr(ptr(TOP)),4:ptr(TOP),8:reg32_t,12:ptr(num8_t),16:int32_t,20:ptr(ptr(num8_t)),32:ptr(num8_t),36:ptr(num8_t),48:union(ptr(num8_t),ptr(num8_t)),52:reg32_t,92:num32_t,96:reg32_t,112:ptr(ptr(num8_t)),116:uint32_t,120:uint32_t,124:reg32_t,128:reg32_t,132:ptr(num8_t),140:reg32_t,144:reg32_t,152:ptr(TOP),160:reg32_t))) "Union_137" 341 ptr(struct(12:ptr(TOP),32:ptr(TOP),36:ptr(TOP))) "Struct_102*" 342 ptr(struct(12:ptr(TOP),32:ptr(num8_t),36:ptr(num8_t))) "Struct_99*" 343 ptr(struct(12:ptr(TOP),16:reg32_t,32:ptr(num8_t),36:ptr(num8_t))) "Struct_100*" 344 ptr(array(reg8_t,104)) "unknown_832*" 345 union(ptr(num8_t),ptr(struct(0:reg16_t,2:num8_t))) "Union_100" 308 ptr(struct(0:reg32_t,4:ptr(num8_t))) "Struct_98*" 346 ptr(struct(12:ptr(num8_t),32:ptr(num8_t),36:ptr(num8_t))) "Struct_129*" 347 ptr(struct(12:ptr(TOP),32:ptr(num8_t),36:ptr(num8_t),40:reg32_t,48:reg32_t)) "Struct_130*" 348 union(num32_t,ptr(struct(12:ptr(TOP),32:ptr(num8_t),36:ptr(num8_t),40:reg32_t,48:reg32_t))) "Union_36" 349 union(num32_t,ptr(array(reg8_t,38))) "Union_37" 308 ptr(struct(0:reg32_t,4:ptr(num8_t))) "Struct_132*" 350 ptr(ptr(struct(8:code_t,12:code_t,20:code_t))) "Struct_296**" 288 ptr(reg16_t) "word*" 351 ptr(array(reg8_t,736)) "unknown_5888*" 352 ptr(ptr(struct(8:code_t,40:code_t))) "Struct_330**" 353 ptr(ptr(struct(8:code_t,12:code_t,16:code_t))) "Struct_331**" 354 ptr(array(reg8_t,41)) "unknown_328*" 58 union(ptr(struct(0:struct(0:uint16_t,2:array(reg8_t,1)))),ptr(struct(0:uint16_t,2:array(reg8_t,1)))) "Union_26" 355 ptr(ptr(struct(8:code_t,20:code_t))) "Struct_280**" 356 union(num32_t,reg32_t,uint32_t) "Union_101" 357 ptr(struct(0:reg32_t,4:reg32_t,8:union(num32_t,reg32_t,uint32_t),24:reg32_t,28:reg32_t,32:reg32_t,36:reg32_t,156:int32_t)) "Struct_276*" 358 ptr(struct(4:reg32_t,8:union(num32_t,reg32_t,uint32_t),12:union(num32_t,reg32_t,uint32_t),24:num32_t,28:num32_t,32:num32_t,36:num32_t,156:reg32_t,160:reg32_t)) "Struct_278*" 359 union(num32_t,ptr(struct(4:reg32_t,8:union(num32_t,reg32_t,uint32_t),12:union(num32_t,reg32_t,uint32_t),24:num32_t,28:num32_t,32:num32_t,36:num32_t,156:reg32_t,160:reg32_t))) "Union_103" 360 union(ptr(num8_t),reg32_t,num32_t,uint32_t,uint32_t) "Union_104" 361 ptr(struct(0:reg64_t,8:num8_t)) "StructFrag_46*" 91 union(ptr(TOP),num32_t) "Union_105" 362 ptr(array(reg8_t,124)) "unknown_992*" 363 union(ptr(num8_t),num32_t,reg32_t) "Union_106" 364 ptr(struct(0:union(ptr(ptr(TOP)),reg32_t),8:union(ptr(num8_t),num32_t,reg32_t,uint32_t),20:ptr(ptr(num8_t)),24:reg32_t,28:reg32_t,32:reg32_t,40:ptr(TOP),44:reg32_t,156:int32_t)) "Struct_134*" 365 union(ptr(num8_t),num32_t,reg32_t,uint32_t) "Union_40" 366 union(num32_t,ptr(array(reg8_t,35))) "Union_42" 367 union(ptr(num8_t),reg32_t,num32_t,uint32_t) "Union_43" 368 union(num32_t,ptr(struct(0:union(ptr(ptr(TOP)),reg32_t),8:union(ptr(num8_t),num32_t,reg32_t,uint32_t),20:ptr(ptr(num8_t)),24:reg32_t,28:reg32_t,32:reg32_t,40:ptr(TOP),44:reg32_t,156:int32_t))) "Union_44" 369 ptr(array(reg8_t,268)) "unknown_2144*" 370 union(ptr(ptr(TOP)),reg32_t) "Union_39" 371 ptr(struct(0:array(reg8_t,20),20:ptr(ptr(num8_t)))) "StructFrag_41*" 372 ptr(ptr(ptr(TOP))) "void***" 373 ptr(struct(0:array(reg8_t,40),40:ptr(ptr(TOP)))) "StructFrag_43*" 374 ptr(struct(0:ptr(ptr(TOP)),4:ptr(TOP),8:reg32_t,12:ptr(num8_t),16:int32_t,20:ptr(ptr(num8_t)),32:ptr(num8_t),36:ptr(num8_t),48:union(ptr(num8_t),ptr(num8_t)),52:reg32_t,92:num32_t,96:reg32_t,112:ptr(ptr(num8_t)),116:uint32_t,120:uint32_t,124:reg32_t,128:reg32_t,132:ptr(num8_t),140:reg32_t,144:reg32_t,152:ptr(TOP),160:reg32_t)) "Struct_139*" 375 union(num32_t,ptr(struct(0:ptr(ptr(TOP)),4:ptr(TOP),8:reg32_t,12:ptr(num8_t),16:int32_t,20:ptr(ptr(num8_t)),32:ptr(num8_t),36:ptr(num8_t),48:union(ptr(num8_t),ptr(num8_t)),52:reg32_t,92:num32_t,96:reg32_t,112:ptr(ptr(num8_t)),116:uint32_t,120:uint32_t,124:reg32_t,128:reg32_t,132:ptr(num8_t),140:reg32_t,144:reg32_t,152:ptr(TOP),160:reg32_t))) "Union_47" 376 ptr(struct(0:reg32_t,4:ptr(num8_t),16:reg32_t,24:union(num32_t,ptr(struct(12:ptr(TOP),16:uint32_t,20:reg32_t,24:reg32_t,28:reg32_t,32:ptr(num8_t),36:ptr(num8_t)))))) "Struct_137*" 377 ptr(struct(0:ptr(num8_t),4:uint32_t,8:reg32_t)) "Struct_140*" 378 ptr(array(reg8_t,180)) "unknown_1440*" 379 union(num32_t,ptr(struct(12:ptr(TOP),16:uint32_t,20:reg32_t,24:reg32_t,28:reg32_t,32:ptr(num8_t),36:ptr(num8_t)))) "Union_45" 380 ptr(struct(0:union(ptr(num8_t),ptr(num8_t)),4:reg32_t)) "Struct_141*" 381 union(num32_t,ptr(struct(0:union(ptr(num8_t),ptr(num8_t)),4:reg32_t))) "Union_48" 377 ptr(struct(0:ptr(num8_t),4:uint32_t,8:reg32_t)) "Struct_108*" 382 ptr(struct(16:reg32_t,20:reg32_t,36:ptr(num8_t))) "Struct_281*" 383 ptr(array(reg8_t,111)) "unknown_888*" 384 union(num32_t,ptr(union(reg32_t,reg32_t))) "Union_108" 385 ptr(struct(0:union(reg32_t,reg32_t),4:union(reg32_t,reg32_t),8:num32_t,12:num32_t,16:num32_t,20:num32_t)) "Struct_282*" 386 union(num32_t,ptr(struct(0:union(reg32_t,reg32_t),4:union(reg32_t,reg32_t),8:num32_t,12:num32_t,16:num32_t,20:num32_t))) "Union_109" 387 union(ptr(num8_t),reg32_t,uint32_t,uint32_t) "Union_110" 388 union(num32_t,reg32_t,reg32_t) "Union_114" 389 union(ptr(num8_t),reg32_t,uint32_t) "Union_113" 390 ptr(struct(0:union(num32_t,reg32_t,uint32_t),4:reg32_t,8:int32_t,12:ptr(num8_t))) "Struct_284*" 391 ptr(struct(0:union(num32_t,reg32_t,uint32_t),4:reg32_t,8:reg32_t,12:reg32_t,16:num32_t,20:num32_t,24:num32_t,28:num32_t)) "Struct_286*" 392 union(num32_t,ptr(struct(0:union(num32_t,reg32_t,uint32_t),4:reg32_t,8:reg32_t,12:reg32_t,16:num32_t,20:num32_t,24:num32_t,28:num32_t))) "Union_112" 393 ptr(union(reg32_t,uint32_t)) "Union_2*" 103 union(reg32_t,uint32_t) "Union_2" 394 array(reg16_t,2) "word[2]" 395 union(ptr(num8_t),ptr(TOP)) "Union_138" 345 union(ptr(num8_t),ptr(struct(0:reg16_t,2:num8_t))) "Union_139" 233 ptr(struct(0:reg32_t,4:num8_t)) "StructFrag_147*" 396 ptr(struct(0:reg32_t,4:reg32_t,8:reg32_t,12:reg32_t,16:reg32_t,36:uint32_t,56:num32_t)) "Struct_289*" 397 union(num32_t,ptr(struct(0:reg32_t,4:reg32_t,8:reg32_t,12:reg32_t,16:reg32_t,36:uint32_t,56:num32_t))) "Union_116" 398 ptr(array(reg8_t,63)) "unknown_504*" 399 ptr(array(reg8_t,72)) "unknown_576*" 400 union(num32_t,ptr(reg32_t)) "Union_117" 192 union(ptr(num8_t),uint32_t) "Union_119" 401 ptr(struct(4:reg32_t,8:reg32_t,12:num32_t)) "Struct_293*" 402 union(num32_t,ptr(struct(4:reg32_t,8:reg32_t,12:num32_t))) "Union_118" 403 ptr(struct(0:union(num32_t,uint32_t,uint32_t),4:int32_t,12:reg32_t,20:num32_t,24:ptr(TOP),28:num32_t,32:num32_t,44:num32_t,112:ptr(TOP))) "Struct_294*" 404 ptr(struct(20:num32_t,24:reg32_t,32:ptr(TOP))) "Struct_113*" 405 union(num32_t,ptr(struct(0:num32_t,4:num32_t,8:num32_t,12:num32_t)),ptr(num8_t)) "Union_120" 406 union(num32_t,ptr(struct(0:union(num32_t,uint32_t,uint32_t),4:int32_t,12:reg32_t,20:num32_t,24:ptr(TOP),28:num32_t,32:num32_t,44:num32_t,112:ptr(TOP)))) "Union_121" 407 ptr(array(reg8_t,89)) "unknown_712*" 408 ptr(struct(4:ptr(num8_t),12:reg16_t)) "Struct_114*" 409 ptr(array(reg8_t,839)) "unknown_6712*" 410 ptr(array(reg8_t,100)) "unknown_800*" 411 union(reg32_t,num32_t,uint32_t) "Union_140" 103 union(reg32_t,uint32_t) "Union_17" 412 ptr(struct(0:reg32_t,4:reg32_t,8:union(reg32_t,uint32_t))) "Struct_333*" 163 ptr(struct(0:ptr(num8_t),4:reg32_t)) "Struct_274*" 103 union(reg32_t,uint32_t) "Union_18" 413 ptr(struct(0:reg32_t,8:reg32_t)) "Struct_334*" 206 ptr(struct(0:reg32_t,4:reg32_t,8:reg32_t)) "Struct_335*" 414 ptr(struct(4:reg32_t,8:union(code_t,ptr(num32_t)),12:ptr(num8_t),20:code_t)) "Struct_115*" 415 ptr(struct(0:array(reg8_t,104),104:reg16_t)) "StructFrag_177*" 416 ptr(array(reg8_t,288)) "unknown_2304*" 35 ptr(struct(0:reg32_t,4:reg32_t,8:reg32_t,12:reg32_t)) "Struct_297*" 417 ptr(ptr(reg32_t)) "dword**" 418 ptr(array(reg8_t,112)) "unknown_896*" 419 ptr(struct(4:uint32_t,8:uint32_t,12:num32_t)) "Struct_116*" 420 ptr(array(reg8_t,74)) "unknown_592*" 103 union(reg32_t,uint32_t) "Union_4" 421 union(ptr(num8_t),reg32_t,reg32_t,num32_t,reg32_t,uint32_t,uint32_t,uint32_t) "Union_124" 422 ptr(struct(0:reg32_t,4:union(ptr(num8_t),num32_t))) "StructFrag_62*" 423 ptr(struct(0:array(reg8_t,536870911),4294967295:num8_t)) "StructFrag_57*" 424 array(num16_t,2) "SHORT[2]" 129 ptr(struct(4:reg32_t,8:ptr(struct(0:ptr(num8_t),4:reg32_t,12:reg32_t,16:ptr(code_t))))) "Struct_159*" 425 union(ptr(num8_t),reg32_t,reg32_t) "Union_59" 426 ptr(struct(0:array(reg8_t,10),10:num8_t)) "StructFrag_49*" 427 ptr(struct(16:code_t,36:code_t,64:code_t)) "Struct_318*" 428 ptr(struct(12:code_t,24:code_t,68:code_t)) "Struct_316*" 429 ptr(struct(0:reg64_t,8:uint32_t)) "StructFrag_0*" 430 ptr(struct(60:ptr(num8_t),72:ptr(num8_t),76:ptr(num8_t),92:ptr(num8_t),100:ptr(num8_t))) "Struct_235*" 431 ptr(struct(52:num8_t,56:num8_t,60:ptr(num8_t),64:reg16_t,68:num8_t,76:ptr(num8_t),80:num8_t,84:num8_t,88:num8_t,92:ptr(num8_t),96:num8_t,100:ptr(num8_t))) "Struct_236*" 432 ptr(struct(0:reg64_t,8:ptr(num8_t))) "StructFrag_28*" 433 struct(0:reg32_t,4:ptr(TOP)) "Struct_85" 434 ptr(struct(0:array(reg8_t,24),24:code_t)) "StructFrag_165*" 435 union(num32_t,ptr(struct(0:ptr(struct(8:reg32_t,20:reg32_t,24:ptr(num8_t))),4:reg32_t,8:reg32_t))) "Union_93" 436 union(num32_t,code_t) "Union_38" 437 ptr(struct(8:code_t,12:code_t,16:code_t)) "Struct_331*" 438 ptr(struct(8:code_t,12:code_t,20:code_t)) "Struct_296*" 67 ptr(ptr(num8_t)) "LPSTR[]" 439 ptr(struct(8:code_t,20:code_t)) "Struct_280*" 440 union(ptr(ptr(num8_t)),ptr(struct(0:ptr(num8_t),4:reg32_t))) "Union_99" 0 reg32_t "HFONT" 441 ptr(struct(0:uint16_t,2:array(reg8_t,1))) "SHITEMID*" 132 ptr(code_t) "proc**" 70 ptr(struct(0:reg32_t,4:code_t)) "StructFrag_37*" 442 ptr(struct(0:array(reg8_t,536870896),4294967280:reg32_t)) "StructFrag_44*" 443 ptr(struct(4294967272:ptr(TOP),4294967288:code_t,4294967292:code_t)) "Struct_340*" 444 ptr(struct(0:ptr(num8_t),4:reg32_t,12:reg32_t,16:ptr(code_t))) "Struct_158*" 432 ptr(struct(0:reg64_t,8:ptr(num8_t))) "StructFrag_23*" 445 ptr(ptr(uint32_t)) "u_long**" 445 ptr(ptr(uint32_t)) "unsigned int**" 446 ptr(struct(0:array(reg8_t,36),36:code_t)) "StructFrag_29*" 447 ptr(struct(8:code_t,40:code_t)) "Struct_330*" 448 ptr(struct(0:array(reg8_t,24),24:reg16_t)) "StructFrag_45*" 14 code_t "(_In_ CHAR* -ms-> HMODULE)*" 449 ptr(struct(0:reg32_t,4:reg16_t)) "StructFrag_91*" 450 ptr(struct(0:array(reg8_t,16),16:reg32_t)) "StructFrag_65*" 451 ptr(struct(0:array(reg8_t,536870910),4294967294:num8_t)) "StructFrag_149*" 452 array(reg8_t,117) "unknown_936" 453 array(reg8_t,81) "unknown_648" 454 array(reg8_t,31) "unknown_248" 455 array(reg8_t,91) "unknown_728" 456 array(reg8_t,21) "unknown_168" 457 array(reg8_t,185) "unknown_1480" 458 array(reg8_t,23) "unknown_184" 459 array(reg8_t,49) "unknown_392" 460 array(reg8_t,128) "unknown_1024" 461 array(reg8_t,72) "unknown_576" 462 array(reg8_t,46) "unknown_368" 463 array(reg8_t,5) "unknown_40" 464 array(reg8_t,10) "unknown_80" 465 array(reg8_t,48) "unknown_384" 466 array(reg8_t,25) "unknown_200" 467 array(reg8_t,39) "unknown_312" 468 array(reg8_t,44) "unknown_352" 469 array(reg8_t,11) "unknown_88" 470 array(reg8_t,70) "unknown_560" 471 array(reg8_t,53) "unknown_424" 472 array(reg8_t,61) "unknown_488" 473 array(reg8_t,236) "unknown_1888" 474 array(reg8_t,103) "unknown_824" 475 array(reg8_t,132) "unknown_1056" 476 array(reg8_t,83) "unknown_664" 477 array(reg8_t,13) "unknown_104" 478 array(reg8_t,65) "unknown_520" 479 array(reg8_t,14) "unknown_112" 480 array(reg8_t,36) "unknown_288" 481 array(reg8_t,40) "unknown_320" 482 array(reg8_t,42) "unknown_336" 483 array(reg8_t,22) "unknown_176" 484 array(reg8_t,15) "unknown_120" 485 array(reg8_t,38) "unknown_304" 486 array(reg8_t,156) "unknown_1248" 487 array(reg8_t,26) "unknown_208" 488 array(reg8_t,58) "unknown_464" 489 array(reg8_t,57) "unknown_456" 490 array(reg8_t,19) "unknown_152" 491 array(reg8_t,45) "unknown_360" 492 array(reg8_t,29) "unknown_232" 493 array(reg8_t,288) "unknown_2304" 494 array(reg8_t,256) "unknown_2048" 495 array(reg8_t,192) "unknown_1536" 496 array(reg8_t,18) "unknown_144" 497 array(reg8_t,101) "unknown_808" 498 array(reg8_t,144) "unknown_1152" 499 array(reg8_t,35) "unknown_280" 500 array(reg8_t,56) "unknown_448" 501 array(reg8_t,43) "unknown_344" 502 array(reg8_t,74) "unknown_592" 503 array(reg8_t,183) "unknown_1464" 504 array(reg8_t,66) "unknown_528" 505 array(reg8_t,64) "unknown_512" 506 array(reg8_t,100) "unknown_800" 507 array(reg8_t,107) "unknown_856" 508 array(reg8_t,67) "unknown_536" 509 array(reg8_t,80) "unknown_640" 510 array(reg8_t,59) "unknown_472" 511 array(reg8_t,223) "unknown_1784" 512 array(reg8_t,265) "unknown_2120" 513 array(reg8_t,60) "unknown_480" 514 array(reg8_t,41) "unknown_328" 515 array(reg8_t,27) "unknown_216" 516 array(reg8_t,152) "unknown_1216" 517 array(reg8_t,69) "unknown_552" 518 array(reg8_t,98) "unknown_784" 519 array(reg8_t,93) "unknown_744" 520 array(reg8_t,50) "unknown_400" 521 array(reg8_t,51) "unknown_408" 522 array(reg8_t,34) "unknown_272" 523 array(reg8_t,17) "unknown_136" 524 array(reg8_t,97) "unknown_776" 525 array(reg8_t,116) "unknown_928" 526 array(reg8_t,76) "unknown_608" 527 array(reg8_t,205) "unknown_1640" 528 array(reg8_t,90) "unknown_720" 529 array(reg8_t,86) "unknown_688" 530 array(reg8_t,37) "unknown_296" 531 array(reg8_t,123) "unknown_984" 532 array(reg8_t,52) "unknown_416" 533 array(reg8_t,75) "unknown_600" 534 array(reg8_t,121) "unknown_968" 535 array(reg8_t,89) "unknown_712" 536 array(reg8_t,63) "unknown_504" 537 array(reg8_t,146) "unknown_1168" 538 array(reg8_t,33) "unknown_264" 539 array(reg8_t,62) "unknown_496" 540 array(reg8_t,30) "unknown_240" 541 array(reg8_t,150) "unknown_1200" 542 array(reg8_t,118) "unknown_944" 543 array(reg8_t,111) "unknown_888" 544 array(ptr(TOP),11) "void*[11]" 545 array(reg8_t,115) "unknown_920" 546 array(reg8_t,113) "unknown_904" 547 array(reg8_t,193) "unknown_1544" 548 array(reg8_t,82) "unknown_656" 549 array(reg8_t,71) "unknown_568" 550 array(reg8_t,119) "unknown_952" 551 array(reg8_t,73) "unknown_584" 552 array(reg32_t,13) "dword[13]" 553 array(reg8_t,240) "unknown_1920" 554 array(reg32_t,5) "dword[5]" 555 array(reg8_t,237) "unknown_1896" 556 array(reg8_t,68) "unknown_544" 557 array(reg8_t,102) "unknown_816" 558 array(reg8_t,180) "unknown_1440" 559 array(reg8_t,137) "unknown_1096" 560 array(reg8_t,108) "unknown_864" 561 array(reg8_t,125) "unknown_1000" 562 array(reg8_t,54) "unknown_432" 563 array(ptr(TOP),5) "void*[5]" 564 array(reg32_t,17) "dword[17]" 565 array(reg32_t,8) "dword[8]" 566 array(reg8_t,160) "unknown_1280" 567 array(reg8_t,135) "unknown_1080" 568 array(reg8_t,105) "unknown_840" 569 array(reg8_t,246) "unknown_1968" 570 array(reg8_t,229) "unknown_1832" 571 array(reg8_t,255) "unknown_2040" 572 array(reg8_t,77) "unknown_616" 573 array(reg8_t,282) "unknown_2256" 574 array(reg8_t,79) "unknown_632" 575 array(reg8_t,218) "unknown_1744" 576 array(reg8_t,189) "unknown_1512" 577 array(reg8_t,99) "unknown_792" 578 array(reg8_t,85) "unknown_680" 579 array(reg8_t,188) "unknown_1504" 580 array(reg8_t,78) "unknown_624" 581 array(reg8_t,161) "unknown_1288" 582 array(reg8_t,141) "unknown_1128" 583 array(reg8_t,151) "unknown_1208" 584 array(ptr(TOP),6) "void*[6]" 585 array(reg8_t,378) "unknown_3024" 586 array(reg8_t,131) "unknown_1048" 587 array(reg8_t,148) "unknown_1184" 588 array(reg8_t,120) "unknown_960" 589 array(reg8_t,88) "unknown_704" 590 array(reg8_t,330) "unknown_2640" 591 array(reg8_t,182) "unknown_1456" 592 array(reg8_t,96) "unknown_768" 593 array(reg8_t,317) "unknown_2536" 594 array(reg8_t,449) "unknown_3592" 595 array(reg8_t,339) "unknown_2712" 596 array(reg8_t,110) "unknown_880" 597 array(reg8_t,168) "unknown_1344" 598 array(reg8_t,47) "unknown_376" 599 array(reg8_t,211) "unknown_1688" 600 array(reg8_t,109) "unknown_872" 601 array(reg8_t,106) "unknown_848" 602 array(reg8_t,943) "unknown_7544" 603 array(reg8_t,242) "unknown_1936" 604 array(reg8_t,87) "unknown_696" 605 array(reg8_t,640) "unknown_5120" 606 array(reg8_t,202) "unknown_1616" 607 array(reg8_t,130) "unknown_1040" 608 array(reg8_t,124) "unknown_992" 609 array(reg8_t,169) "unknown_1352" 610 array(reg8_t,84) "unknown_672" 611 array(reg8_t,167) "unknown_1336" 612 array(reg8_t,170) "unknown_1360" 613 array(reg8_t,55) "unknown_440" 614 array(reg8_t,127) "unknown_1016" 615 array(reg8_t,196) "unknown_1568" 616 array(reg8_t,201) "unknown_1608" 617 array(reg32_t,7) "dword[7]" 618 array(reg32_t,4) "dword[4]" 619 array(ptr(TOP),3) "void*[3]" 620 array(reg8_t,232) "unknown_1856" 621 array(reg8_t,104) "unknown_832" 622 array(reg8_t,153) "unknown_1224" 623 array(reg8_t,95) "unknown_760" 624 array(reg8_t,231) "unknown_1848" 625 array(reg8_t,461) "unknown_3688" 626 array(reg8_t,129) "unknown_1032" 627 array(reg8_t,140) "unknown_1120" 628 array(reg8_t,496) "unknown_3968" 629 array(reg8_t,224) "unknown_1792" 630 array(reg8_t,234) "unknown_1872" 631 array(reg8_t,268) "unknown_2144" 632 array(reg8_t,173) "unknown_1384" 633 array(reg8_t,238) "unknown_1904" 634 array(reg8_t,206) "unknown_1648" 635 array(reg8_t,142) "unknown_1136" 636 array(reg8_t,615) "unknown_4920" 637 array(reg8_t,383) "unknown_3064" 638 array(ptr(TOP),8) "void*[8]" 639 array(reg8_t,176) "unknown_1408" 640 array(reg8_t,326) "unknown_2608" 641 array(reg8_t,329) "unknown_2632" 642 array(reg8_t,316) "unknown_2528" 643 array(reg8_t,134) "unknown_1072" 644 array(reg8_t,139) "unknown_1112" 645 array(reg8_t,126) "unknown_1008" 646 array(reg8_t,164) "unknown_1312" 647 array(reg8_t,133) "unknown_1064" 648 array(reg8_t,389) "unknown_3112" 649 array(reg8_t,398) "unknown_3184" 650 array(reg8_t,94) "unknown_752" 651 array(reg8_t,92) "unknown_736" 652 array(reg8_t,216) "unknown_1728" 653 array(reg8_t,419) "unknown_3352" 654 array(reg8_t,163) "unknown_1304" 655 array(reg8_t,244) "unknown_1952" 656 array(ptr(TOP),9) "void*[9]" 657 array(reg8_t,194) "unknown_1552" 658 array(reg8_t,157) "unknown_1256" 659 array(reg8_t,149) "unknown_1192" 660 array(reg8_t,212) "unknown_1696" 661 array(reg8_t,264) "unknown_2112" 662 array(reg8_t,174) "unknown_1392" 663 array(ptr(TOP),14) "void*[14]" 664 array(reg8_t,198) "unknown_1584" 665 array(reg8_t,536) "unknown_4288" 666 array(ptr(TOP),4) "void*[4]" 667 array(reg8_t,314) "unknown_2512" 668 array(reg8_t,179) "unknown_1432" 669 array(reg8_t,177) "unknown_1416" 670 array(reg8_t,227) "unknown_1816" 671 array(reg8_t,143) "unknown_1144" 672 array(reg8_t,433) "unknown_3464" 673 array(reg8_t,254) "unknown_2032" 674 array(reg8_t,407) "unknown_3256" 675 array(reg8_t,215) "unknown_1720" 676 array(reg8_t,172) "unknown_1376" 677 array(reg8_t,249) "unknown_1992" 678 array(reg8_t,147) "unknown_1176" 679 array(reg8_t,289) "unknown_2312" 680 array(reg8_t,277) "unknown_2216" 681 array(reg8_t,322) "unknown_2576" 682 array(reg8_t,122) "unknown_976" 683 array(reg8_t,578) "unknown_4624" 684 array(reg8_t,219) "unknown_1752" 685 array(reg8_t,184) "unknown_1472" 686 array(reg8_t,159) "unknown_1272" 687 array(reg8_t,250) "unknown_2000" 688 array(reg8_t,294) "unknown_2352" 689 array(reg8_t,154) "unknown_1232" 690 array(reg8_t,165) "unknown_1320" 691 array(reg8_t,233) "unknown_1864" 692 array(reg8_t,534) "unknown_4272" 693 array(reg8_t,245) "unknown_1960" 694 array(reg8_t,332) "unknown_2656" 695 array(reg8_t,405) "unknown_3240" 696 array(reg8_t,190) "unknown_1520" 697 array(reg8_t,300) "unknown_2400" 698 array(reg8_t,197) "unknown_1576" 699 array(reg8_t,239) "unknown_1912" 700 array(reg8_t,476) "unknown_3808" 701 array(reg8_t,199) "unknown_1592" 702 array(reg8_t,546) "unknown_4368" 703 array(reg8_t,208) "unknown_1664" 704 array(reg8_t,480) "unknown_3840" 705 array(reg8_t,306) "unknown_2448" 706 array(reg8_t,438) "unknown_3504" 707 array(reg8_t,284) "unknown_2272" 708 array(reg8_t,458) "unknown_3664" 709 array(reg8_t,243) "unknown_1944" 710 array(reg8_t,495) "unknown_3960" 711 array(reg8_t,381) "unknown_3048" 712 array(reg8_t,155) "unknown_1240" 713 array(reg8_t,275) "unknown_2200" 714 array(reg8_t,451) "unknown_3608" 715 array(reg8_t,210) "unknown_1680" 716 array(reg8_t,138) "unknown_1104" 717 array(reg8_t,930) "unknown_7440" 718 array(reg8_t,209) "unknown_1672" 719 array(reg8_t,341) "unknown_2728" 720 array(reg8_t,228) "unknown_1824" 721 array(reg8_t,716) "unknown_5728" 722 array(reg8_t,187) "unknown_1496" 723 array(reg8_t,230) "unknown_1840" 724 array(reg8_t,171) "unknown_1368" 725 array(reg8_t,145) "unknown_1160" 726 array(reg8_t,374) "unknown_2992" 727 array(reg32_t,11) "dword[11]" 728 array(reg8_t,280) "unknown_2240" 729 array(reg8_t,568) "unknown_4544" 730 array(reg8_t,657) "unknown_5256" 731 array(reg8_t,200) "unknown_1600" 732 array(reg8_t,304) "unknown_2432" 733 array(reg8_t,221) "unknown_1768" 734 array(reg8_t,633) "unknown_5064" 735 array(reg8_t,386) "unknown_3088" 736 array(reg8_t,443) "unknown_3544" 737 array(reg8_t,335) "unknown_2680" 738 array(reg8_t,257) "unknown_2056" 739 array(reg8_t,279) "unknown_2232" 740 array(reg8_t,213) "unknown_1704" 741 array(reg8_t,417) "unknown_3336" 742 array(reg8_t,342) "unknown_2736" 743 array(reg8_t,310) "unknown_2480" 744 array(reg8_t,320) "unknown_2560" 745 array(reg8_t,907) "unknown_7256" 746 array(reg8_t,432) "unknown_3456" 747 array(reg8_t,331) "unknown_2648" 748 array(reg8_t,295) "unknown_2360" 749 array(reg8_t,839) "unknown_6712" 750 array(reg8_t,214) "unknown_1712" 751 array(reg8_t,114) "unknown_912" 752 array(reg8_t,136) "unknown_1088" 753 array(reg8_t,158) "unknown_1264" 754 array(reg8_t,468) "unknown_3744" 14 code_t "(HKEY,_In_ CHAR*,DWORD,DWORD,_In_ BYTE*,DWORD -ms-> LSTATUS)*" 14 code_t "(HKEY,_In_ CHAR*,DWORD,_Inout_ LPSTR,DWORD,REGSAM,_Inout_ LPSECURITY_ATTRIBUTES,_Inout_ PHKEY,_Inout_ LPDWORD -ms-> LSTATUS)*" 14 code_t "(HKEY,_In_ CHAR*,_Inout_ LPDWORD,_Inout_ LPDWORD,_Inout_ LPBYTE,_Inout_ LPDWORD -ms-> LSTATUS)*" 14 code_t "(HKEY,_In_ CHAR*,DWORD,REGSAM,_Inout_ PHKEY -ms-> LSTATUS)*" 14 code_t "(HKEY -ms-> LSTATUS)*" 14 code_t "(_In_ INITCOMMONCONTROLSEX* -ms-> BOOL)*" 14 code_t "(int,int,UINT,int,int -ms-> HIMAGELIST)*" 14 code_t "(_Inout_ HIMAGELIST,int,HICON -ms-> int)*" 14 code_t "(_Inout_ HIMAGELIST,int,int,int -ms-> BOOL)*" 14 code_t "(_Inout_ HIMAGELIST,int -ms-> BOOL)*" 14 code_t "(_Inout_ HIMAGELIST -ms-> BOOL)*" 14 code_t "(void -ms-> void)*" 14 code_t "(int,int -ms-> BOOL)*" 14 code_t "(HWND,int,int -ms-> BOOL)*" 14 code_t "(_Inout_ HIMAGELIST,int,UINT -ms-> HICON)*" 14 code_t "(HWND -ms-> BOOL)*" 14 code_t "(int,COLORREF -ms-> HBRUSH)*" 14 code_t "(int,int,COLORREF -ms-> HPEN)*" 14 code_t "(HDC,int,int,_Inout_ LPPOINT -ms-> BOOL)*" 14 code_t "(HDC,int,int -ms-> BOOL)*" 14 code_t "(_In_ LOGFONTA* -ms-> HFONT)*" 14 code_t "(HDC,COLORREF -ms-> COLORREF)*" 14 code_t "(HDC -ms-> HDC)*" 14 code_t "(HDC,int,int -ms-> HBITMAP)*" 14 code_t "(HDC,HGDIOBJ -ms-> HGDIOBJ)*" 14 code_t "(HGDIOBJ -ms-> BOOL)*" 14 code_t "(HANDLE,int,_Inout_ LPVOID -ms-> int)*" 14 code_t "(HDC,int -ms-> int)*" 14 code_t "(HDC,_In_ CHAR*,int,_Inout_ LPSIZE -ms-> BOOL)*" 14 code_t "(HDC,int,int,int,int,HDC,int,int,DWORD -ms-> BOOL)*" 14 code_t "(HDC -ms-> BOOL)*" 14 code_t "(COLORREF -ms-> HBRUSH)*" 14 code_t "(int -ms-> HGDIOBJ)*" 14 code_t "(_Inout_ LPSTARTUPINFOA -ms-> void)*" 14 code_t "(_Inout_ LPFILETIME -ms-> void)*" 14 code_t "(LCID,LCTYPE,_Inout_ LPSTR,int -ms-> int)*" 14 code_t "(HGLOBAL -ms-> HGLOBAL)*" 14 code_t "(HGLOBAL -ms-> SIZE_T)*" 14 code_t "(HANDLE -ms-> BOOL)*" 14 code_t "(HANDLE,DWORD -ms-> DWORD)*" 14 code_t "(_Inout_ LPSECURITY_ATTRIBUTES,BOOL,BOOL,_In_ CHAR* -ms-> HANDLE)*" 14 code_t "(void -ms-> DWORD)*" 14 code_t "(HANDLE,HANDLE,HANDLE,_Inout_ LPHANDLE,DWORD,BOOL,DWORD -ms-> BOOL)*" 14 code_t "(void -ms-> HANDLE)*" 14 code_t "(DWORD,BOOL -ms-> DWORD)*" 14 code_t "(_Inout_ LPSECURITY_ATTRIBUTES,BOOL,_In_ CHAR* -ms-> HANDLE)*" 14 code_t "(HMODULE,_In_ CHAR* -ms-> FARPROC)*" 14 code_t "(_Inout_ PAPCFUNC,HANDLE,ULONG_PTR -ms-> DWORD)*" 14 code_t "(HANDLE,DWORD -ms-> SIZE_T)*" 14 code_t "(DWORD,_Inout_ PHANDLE -ms-> DWORD)*" 14 code_t "(_In_ CHAR* -ms-> int)*" 14 code_t "(HMODULE,_Inout_ LPSTR,DWORD -ms-> DWORD)*" 14 code_t "(DWORD,_In_ HANDLE*,BOOL,DWORD,BOOL -ms-> DWORD)*" 14 code_t "(_Inout_ LPSTR,_In_ CHAR*,int -ms-> LPSTR)*" 14 code_t "(_Inout_ LPCRITICAL_SECTION -ms-> void)*" 14 code_t "(_In_ CHAR*,_In_ CHAR* -ms-> int)*" 14 code_t "(_In_ CHAR* -ms-> DWORD)*" 14 code_t "(_In_ CHAR*,_Inout_ LPSECURITY_ATTRIBUTES -ms-> BOOL)*" 14 code_t "(_In_ CHAR*,_Inout_ LPSTR,DWORD -ms-> DWORD)*" 14 code_t "(_In_ CHAR*,_In_ CHAR*,_In_ CHAR*,_Inout_ LPSTR,DWORD,_In_ CHAR* -ms-> DWORD)*" 14 code_t "(_In_ CHAR*,DWORD,DWORD,_Inout_ LPSECURITY_ATTRIBUTES,DWORD,DWORD,HANDLE -ms-> HANDLE)*" 14 code_t "(HANDLE,_Inout_ LPWIN32_FIND_DATAA -ms-> BOOL)*" 14 code_t "(_In_ CHAR*,_Inout_ LPWIN32_FIND_DATAA -ms-> HANDLE)*" 14 code_t "(void -ms-> LPSTR)*" 14 code_t "(ATOM -ms-> ATOM)*" 14 code_t "(_In_ CHAR* -ms-> ATOM)*" 14 code_t "(_In_ FILETIME*,_Inout_ LPSYSTEMTIME -ms-> BOOL)*" 14 code_t "(_Inout_ LPTIME_ZONE_INFORMATION -ms-> DWORD)*" 14 code_t "(_In_ FILETIME*,_In_ FILETIME* -ms-> LONG)*" 14 code_t "(_In_ SYSTEMTIME*,_Inout_ LPFILETIME -ms-> BOOL)*" 14 code_t "(LCID,DWORD,_In_ SYSTEMTIME*,_In_ CHAR*,_Inout_ LPSTR,int -ms-> int)*" 14 code_t "(HGLOBAL -ms-> LPVOID)*" 14 code_t "(HMODULE,HRSRC -ms-> HGLOBAL)*" 14 code_t "(HMODULE,_In_ CHAR*,_In_ CHAR* -ms-> HRSRC)*" 14 code_t "(_Inout_ LPSTR,_In_ CHAR* -ms-> LPSTR)*" 14 code_t "(_Inout_ LONG* -ms-> LONG)*" 14 code_t "(HMODULE -ms-> BOOL)*" 14 code_t "(DWORD,_In_ HANDLE*,BOOL,DWORD -ms-> DWORD)*" 14 code_t "(HANDLE,DWORD,SIZE_T -ms-> LPVOID)*" 14 code_t "(_In_ CHAR*,_Inout_ LPSTR,_Inout_ LPSECURITY_ATTRIBUTES,_Inout_ LPSECURITY_ATTRIBUTES,BOOL,DWORD,_Inout_ LPVOID,_In_ CHAR*,_Inout_ LPSTARTUPINFOA,_Inout_ LPPROCESS_INFORMATION -ms-> BOOL)*" 14 code_t "(_In_ CHAR* -ms-> void)*" 14 code_t "(_Inout_ LARGE_INTEGER* -ms-> BOOL)*" 14 code_t "(HMODULE,HRSRC -ms-> DWORD)*" 14 code_t "(DWORD,SIZE_T,SIZE_T -ms-> HANDLE)*" 14 code_t "(_In_ CHAR*,_In_ CHAR*,INT,_In_ CHAR* -ms-> UINT)*" 14 code_t "(DWORD,_Inout_ LPSTR -ms-> DWORD)*" 14 code_t "(UINT,DWORD,_In_ CHAR*,int,_Inout_ LPWSTR,int -ms-> int)*" 14 code_t "(HGLOBAL -ms-> BOOL)*" 14 code_t "(UINT,SIZE_T -ms-> HGLOBAL)*" 14 code_t "(_In_ char*,FILE* -> int)*" 14 code_t "(_Inout_ char*,_In_ char* -> int)*" 14 code_t "(int -> int)*" 14 code_t "(int,_Inout_ char*,int -> char*)*" 14 code_t "(_In_ char*,int -> int)*" 14 code_t "(FILE* -> int)*" 14 code_t "(FILE*,int,int -> int)*" 14 code_t "(_Inout_ void*,size_t,size_t,_Inout_ (_In_ void*,_In_ void* -> int)* -> void)*" 14 code_t "(_In_ void*,_In_ void*,size_t,size_t,_Inout_ (_In_ void*,_In_ void* -> int)* -> void*)*" 14 code_t "(_In_ char*,_In_ char* -> char*)*" 14 code_t "(_In_ char*,_In_ char* -> FILE*)*" 14 code_t "(size_t,size_t -> void*)*" 14 code_t "(_In_ char*,int -> char*)*" 14 code_t "(_In_ char*,_In_ char* -> size_t)*" 14 code_t "(_In_ char* -> int)*" 14 code_t "(_Inout_ char*,_In_ char*,size_t -> char*)*" 14 code_t "(_Inout_ void*,_In_ void*,size_t -> void*)*" 14 code_t "(_Inout_ char*,_In_ char* -> char*)*" 14 code_t "(_Inout_ char*,size_t,_In_ char*,_Inout_ va_list -> int)*" 14 code_t "(_In_ char* -> char*)*" 14 code_t "(_Inout_ void*,int,size_t -> void*)*" 14 code_t "(_In_ char* -> size_t)*" 14 code_t "(_In_ char*,_In_ char* -> int)*" 14 code_t "(size_t -> void*)*" 14 code_t "(_Inout_ void* -> void)*" 14 code_t "(_In_ char*,_Inout_ char**,int -> int)*" 14 code_t "(unsigned int -> void)*" 14 code_t "(_In_ char*,_Inout_ stat* -> int)*" 14 code_t "(int -> void)*" 14 code_t "(_Inout_ char*,int,FILE* -> char*)*" 14 code_t "(_Inout_ time_t* -> time_t)*" 14 code_t "(_In_ char*,_In_ char*,size_t -> int)*" 14 code_t "(unsigned int -> int)*" 14 code_t "(_Inout_ _onexit_t -> _onexit_t)*" 14 code_t "(unsigned int,unsigned int -> unsigned int)*" 14 code_t "(_Inout_ char* -> char*)*" 14 code_t "(_Inout_ LPOLESTR,_Inout_ LPUNKNOWN,DWORD,OLE_COLOR,_In_ IID*,_Inout_ LPVOID* -ms-> HRESULT)*" 14 code_t "(_In_ ITEMIDLIST*,_Inout_ LPSTR -ms-> BOOL)*" 14 code_t "(_Inout_ IMalloc** -ms-> HRESULT)*" 14 code_t "(_Inout_ IShellFolder** -ms-> HRESULT)*" 14 code_t "(_In_ CHAR*,DWORD,_Inout_ SHFILEINFOA*,UINT,UINT -ms-> DWORD_PTR)*" 14 code_t "(HWND,_In_ CHAR*,_In_ CHAR*,_In_ CHAR*,_In_ CHAR*,INT -ms-> HINSTANCE)*" 14 code_t "(HINSTANCE,_In_ CHAR*,UINT -ms-> HICON)*" 14 code_t "(_In_ CHAR*,int,_Inout_ HICON*,_Inout_ HICON*,UINT -ms-> UINT)*" 14 code_t "(_Inout_ LPSHFILEOPSTRUCTA -ms-> int)*" 14 code_t "(_Inout_ LPBROWSEINFOA -ms-> LPITEMIDLIST)*" 14 code_t "(_Inout_ LPSTR,_In_ CHAR* -> int)*" 14 code_t "(HWND,POINT -ms-> HWND)*" 14 code_t "(HWND,_In_ RECT*,HRGN,UINT -ms-> BOOL)*" 14 code_t "(HMENU -ms-> BOOL)*" 14 code_t "(HMENU,UINT,int,int,int,HWND,_In_ RECT* -ms-> BOOL)*" 14 code_t "(HMENU,int -ms-> HMENU)*" 14 code_t "(HINSTANCE,_In_ CHAR* -ms-> HMENU)*" 14 code_t "(_Inout_ LPSTR,DWORD -ms-> DWORD)*" 14 code_t "(HDESK -ms-> BOOL)*" 14 code_t "(_In_ CHAR*,DWORD,BOOL,ACCESS_MASK -ms-> HDESK)*" 14 code_t "(UINT,UINT,_Inout_ PVOID,UINT -ms-> BOOL)*" 14 code_t "(HWND,int,_Inout_ BOOL*,BOOL -ms-> UINT)*" 14 code_t "(void -ms-> HWND)*" 14 code_t "(_In_ CHAR* -ms-> LPSTR)*" 14 code_t "(HMENU,UINT,BOOL,_In_ MENUITEMINFOA* -ms-> BOOL)*" 14 code_t "(HMENU,UINT,BOOL,_Inout_ LPMENUITEMINFOA -ms-> BOOL)*" 14 code_t "(HMENU -ms-> int)*" 14 code_t "(HWND,_Inout_ WNDENUMPROC,LPARAM -ms-> BOOL)*" 14 code_t "(HWND,UINT -ms-> HWND)*" 14 code_t "(HWND,int,UINT,BOOL -ms-> BOOL)*" 14 code_t "(_Inout_ LPSTR -ms-> LPSTR)*" 14 code_t "(HWND,int,BOOL -ms-> BOOL)*" 14 code_t "(HCURSOR -ms-> HCURSOR)*" 14 code_t "(POINT -ms-> HWND)*" 14 code_t "(HWND,int,int,int,int,BOOL -ms-> BOOL)*" 14 code_t "(HDC,int,int,HICON,int,int,UINT,HBRUSH,UINT -ms-> BOOL)*" 14 code_t "(int -ms-> SHORT)*" 14 code_t "(HWND,_In_ CHAR* -ms-> HANDLE)*" 14 code_t "(HWND,_In_ CHAR*,HANDLE -ms-> BOOL)*" 14 code_t "(void -ms-> HMENU)*" 14 code_t "(HMENU,UINT,UINT_PTR,_In_ CHAR* -ms-> BOOL)*" 14 code_t "(void -ms-> BOOL)*" 14 code_t "(UINT,HANDLE -ms-> HANDLE)*" 14 code_t "(UINT,UINT_PTR,UINT_PTR -ms-> LPARAM)*" 14 code_t "(_In_ CHAR* -ms-> UINT)*" 14 code_t "(HDC,_In_ CHAR*,int,_Inout_ LPRECT,UINT -ms-> int)*" 14 code_t "(HWND,_Inout_ LPRECT -ms-> BOOL)*" 14 code_t "(_In_ WNDCLASSA* -ms-> ATOM)*" 14 code_t "(HDWP -ms-> BOOL)*" 14 code_t "(HDWP,HWND,HWND,int,int,int,int,UINT -ms-> HDWP)*" 14 code_t "(int -ms-> HDWP)*" 14 code_t "(HWND,_Inout_ WINDOWPLACEMENT* -ms-> BOOL)*" 14 code_t "(HWND,_In_ WINDOWPLACEMENT* -ms-> BOOL)*" 14 code_t "(HWND,_In_ CHAR*,_In_ CHAR*,UINT -ms-> int)*" 14 code_t "(HWND -ms-> HWND)*" 14 code_t "(HWND,_Inout_ LPPOINT -ms-> BOOL)*" 14 code_t "(int -ms-> HBRUSH)*" 14 code_t "(HWND -ms-> HDC)*" 14 code_t "(HWND,HDC -ms-> int)*" 14 code_t "(HDC,_In_ RECT*,HBRUSH -ms-> int)*" 14 code_t "(HDC,_Inout_ LPRECT,UINT,UINT -ms-> BOOL)*" 14 code_t "(_Inout_ LPRECT,int,int -ms-> BOOL)*" 14 code_t "(HDC,_In_ RECT* -ms-> BOOL)*" 14 code_t "(HDC,HBRUSH,_Inout_ DRAWSTATEPROC,LPARAM,WPARAM,int,int,int,int,UINT -ms-> BOOL)*" 14 code_t "(HWND -ms-> int)*" 14 code_t "(_Inout_ LPRECT,_In_ RECT* -ms-> BOOL)*" 14 code_t "(HWND,_Inout_ LPSTR,int -ms-> int)*" 14 code_t "(int -ms-> DWORD)*" 14 code_t "(HWND,_In_ RECT*,BOOL -ms-> BOOL)*" 14 code_t "(HWND,_Inout_ LPPAINTSTRUCT -ms-> HDC)*" 14 code_t "(int -ms-> int)*" 14 code_t "(HINSTANCE,_In_ CHAR*,UINT,int,int,UINT -ms-> HANDLE)*" 14 code_t "(HICON -ms-> BOOL)*" 14 code_t "(HWND,UINT_PTR,UINT,_Inout_ TIMERPROC -ms-> UINT_PTR)*" 14 code_t "(HINSTANCE,_In_ DLGTEMPLATE*,HWND,_Inout_ DLGPROC,LPARAM -ms-> HWND)*" 14 code_t "(HWND,HWND,int,int,int,int,UINT -ms-> BOOL)*" 14 code_t "(_Inout_ WNDPROC,HWND,UINT,WPARAM,LPARAM -ms-> LRESULT)*" 14 code_t "(HWND,int -ms-> BOOL)*" 14 code_t "(HWND,UINT,WPARAM,LPARAM,UINT,UINT,_Inout_ PDWORD_PTR -ms-> LRESULT)*" 14 code_t "(_Inout_ LPPOINT -ms-> BOOL)*" 14 code_t "(_In_ RECT*,POINT -ms-> BOOL)*" 14 code_t "(HWND,UINT_PTR -ms-> BOOL)*" 14 code_t "(HINSTANCE,_In_ CHAR* -ms-> HCURSOR)*" 14 code_t "(UINT,LPARAM,_Inout_ PUINT_PTR,_Inout_ PUINT_PTR -ms-> BOOL)*" 14 code_t "(_Inout_ WNDENUMPROC,LPARAM -ms-> BOOL)*" 14 code_t "(_In_ WNDCLASSEXA* -ms-> ATOM)*" 14 code_t "(HINSTANCE,_In_ CHAR*,HWND,_Inout_ DLGPROC,LPARAM -ms-> INT_PTR)*" 14 code_t "(HINSTANCE,_In_ CHAR*,HWND,_Inout_ DLGPROC,LPARAM -ms-> HWND)*" 14 code_t "(HINSTANCE,_In_ CHAR* -ms-> HICON)*" 14 code_t "(HWND,_In_ CHAR* -ms-> BOOL)*" 14 code_t "(HWND,int,UINT,WPARAM,LPARAM -ms-> LRESULT)*" 14 code_t "(HWND,int,UINT -ms-> BOOL)*" 14 code_t "(HWND,int -ms-> HWND)*" 14 code_t "(HWND,BOOL -ms-> BOOL)*" 14 code_t "(HWND,int,_In_ CHAR* -ms-> BOOL)*" 14 code_t "(HWND,int -ms-> UINT)*" 14 code_t "(HWND,int -ms-> LONG)*" 14 code_t "(HWND,int,_Inout_ LPSTR,int -ms-> UINT)*" 14 code_t "(HWND,INT_PTR -ms-> BOOL)*" 14 code_t "(DWORD,_In_ HANDLE*,BOOL,DWORD,DWORD -ms-> DWORD)*" 14 code_t "(_Inout_ LPMSG,HWND,UINT,UINT,UINT -ms-> BOOL)*" 14 code_t "(HWND,_Inout_ LPMSG -ms-> BOOL)*" 14 code_t "(_In_ MSG* -ms-> LRESULT)*" 14 code_t "(DWORD,_In_ CHAR*,_In_ CHAR*,DWORD,int,int,int,int,HWND,HMENU,HINSTANCE,_Inout_ LPVOID -ms-> HWND)*" 14 code_t "(HWND,int,LONG -ms-> LONG)*" 14 code_t "(HWND,_Inout_ LPDWORD -ms-> DWORD)*" 14 code_t "(HWND,int -ms-> DWORD)*" 14 code_t "(_In_ MSG* -ms-> BOOL)*" 14 code_t "(int -ms-> void)*" 14 code_t "(HWND,_In_ PAINTSTRUCT* -ms-> BOOL)*" 14 code_t "(_In_ void*,_In_ CHAR*,_Inout_ LPVOID*,_Inout_ PUINT -ms-> BOOL)*" 14 code_t "(_In_ CHAR*,DWORD,DWORD,_Inout_ LPVOID -ms-> BOOL)*" 14 code_t "(_In_ CHAR*,_Inout_ LPDWORD -ms-> DWORD)*" 14 code_t "(_In_ CHAR*,HMODULE,DWORD -ms-> BOOL)*" 14 code_t "(SOCKET,_Inout_ sockaddr*,_Inout_ int* -ms-> int)*" 14 code_t "(_Inout_ char*,int -ms-> int)*" 14 code_t "(_In_ char* -ms-> hostent*)*" 14 code_t "(WORD,_Inout_ LPWSADATA -ms-> int)*" 14 code_t "(u_short -ms-> u_short)*" 14 code_t "(u_long -ms-> u_long)*" 14 code_t "(SOCKET,int,int,_Inout_ char*,_Inout_ int* -ms-> int)*" 14 code_t "(SOCKET,_Inout_ char*,int,int -ms-> int)*" 14 code_t "(SOCKET,_In_ char*,int,int -ms-> int)*" 14 code_t "(SOCKET,int,_Inout_ u_long* -ms-> int)*" 14 code_t "(SOCKET,_Inout_ fd_set* -ms-> int)*" 14 code_t "(SOCKET -ms-> int)*" 14 code_t "(int,_Inout_ fd_set*,_Inout_ fd_set*,_Inout_ fd_set*,_In_ timeval* -ms-> int)*" 14 code_t "(_In_ char* -ms-> unsigned int)*" 14 code_t "(SOCKET,_In_ sockaddr*,int -ms-> int)*" 14 code_t "(SOCKET,_Inout_ sockaddr*,_Inout_ int* -ms-> SOCKET)*" 14 code_t "(in_addr -ms-> char*)*" 14 code_t "(int,int,int -ms-> SOCKET)*" 14 code_t "(SOCKET,int -ms-> int)*" 14 code_t "(_Inout_ LPOPENFILENAMEA -ms-> BOOL)*" 14 code_t "(_Inout_ LPCHOOSECOLORA -ms-> BOOL)*" 14 code_t "(_Inout_ LPVOID -ms-> HRESULT)*" 14 code_t "(DWORD,_Inout_ LPMALLOC* -ms-> HRESULT)*" 755 array(num8_t,19) "char[19]" 756 array(num8_t,20) "char[20]" 757 struct(0:num32_t,4:ptr(TOP),8:ptr(TOP)) "_SCOPETABLE_ENTRY" 758 array(num8_t,16) "char[16]" 759 array(num8_t,24) "char[24]" 760 array(num8_t,28) "char[28]" 761 array(num8_t,7) "char[7]" 762 array(num8_t,17) "char[17]" 763 array(num8_t,13) "char[13]" 764 array(num8_t,12) "CHAR[12]" 762 array(num8_t,17) "CHAR[17]" 765 array(num8_t,5) "CHAR[5]" 763 array(num8_t,13) "CHAR[13]" 766 array(num8_t,145) "CHAR[145]" 767 array(num8_t,22) "char[22]" 768 array(num8_t,26) "char[26]" 769 array(num8_t,30) "char[30]" 770 array(num8_t,29) "char[29]" 771 array(num8_t,25) "char[25]" 772 array(num8_t,2) "char[2]" 773 array(num8_t,40) "char[40]" 774 array(num8_t,31) "char[31]" 775 array(num8_t,10) "char[10]" 776 array(num8_t,6) "char[6]" 777 array(num8_t,9) "char[9]" 778 array(num8_t,14) "char[14]" 779 array(num8_t,11) "char[11]" 780 array(num8_t,18) "char[18]" 781 array(num8_t,61) "char[61]" 765 array(num8_t,5) "char[5]" 764 array(num8_t,12) "char[12]" 782 array(num8_t,162) "char[162]" 783 array(num8_t,23) "char[23]" 784 array(num8_t,21) "char[21]" 785 array(num8_t,158) "char[158]" 786 array(num8_t,38) "char[38]" 787 array(num8_t,15) "char[15]" 788 array(num8_t,8) "char[8]" 789 uint16_t "wchar_t" 790 array(reg16_t,8) "word[8]" 791 array(reg16_t,7) "word[7]" 792 array(uint16_t,2) "wchar_t[2]" 793 array(num8_t,3) "char[3]" 794 array(num8_t,4) "char[4]" 795 array(num8_t,27) "char[27]" 796 array(num8_t,52) "char[52]" 797 array(num8_t,75) "char[75]" 798 array(num8_t,231) "char[231]" 799 array(num8_t,141) "char[141]" 800 array(num8_t,132) "char[132]" 801 array(num8_t,82) "char[82]" 802 array(num8_t,156) "char[156]" 803 array(num8_t,33) "char[33]" 804 array(num8_t,58) "char[58]" 805 array(num8_t,73) "char[73]" 806 array(num8_t,32) "char[32]" 807 array(num8_t,51) "char[51]" 808 array(num8_t,150) "char[150]" 809 array(num8_t,154) "char[154]" 810 array(num8_t,98) "char[98]" 811 array(num8_t,48) "char[48]" 812 array(num8_t,45) "char[45]" 783 array(num8_t,23) "CHAR[23]" 813 array(num8_t,163) "char[163]" 814 array(num8_t,35) "char[35]" 815 array(num8_t,36) "char[36]" 816 array(num8_t,157) "char[157]" 817 num16_t "short" 818 array(num8_t,50) "char[50]" 819 array(num8_t,70) "char[70]" 820 array(num8_t,133) "char[133]" 821 array(num8_t,159) "char[159]" 822 array(num8_t,155) "char[155]" 823 array(num8_t,65) "char[65]" 824 array(num8_t,152) "char[152]" 825 array(num8_t,42) "char[42]" 826 array(num8_t,63) "char[63]" 827 array(num8_t,76) "char[76]" 828 array(num8_t,85) "char[85]" 829 array(num8_t,161) "char[161]" 830 array(reg8_t,2514) "unknown_20112" 831 array(reg8_t,736) "unknown_5888" 832 struct(0:reg32_t,4:reg16_t,6:reg16_t,8:array(reg8_t,8)) "IID" 833 array(reg8_t,324) "unknown_2592" 834 ptr(ptr(num16_t)) "short**" 835 ptr(num16_t) "short*" 836 array(reg8_t,276) "unknown_2208" 837 array(reg8_t,508) "unknown_4064" 838 array(reg8_t,678) "unknown_5424" 839 array(reg8_t,1952) "unknown_15616" 840 array(reg8_t,248) "unknown_1984" 841 struct(0:ptr(struct(0:reg16_t,2:reg16_t,4:ptr(array(reg8_t,0)),8:struct(0:ptr(struct(0:ptr(TOP),4:ptr(TOP))),4:ptr(struct(0:ptr(TOP),4:ptr(TOP)))),16:reg32_t,20:reg32_t,24:array(reg32_t,2))),4:num32_t,8:num32_t,12:reg32_t,16:reg32_t,20:reg32_t) "_RTL_CRITICAL_SECTION" 842 array(reg8_t,260) "unknown_2080" 843 ptr(struct(12:code_t,16:code_t,24:code_t)) "Struct_0*" 167 ptr(struct(0:array(reg8_t,12),12:num32_t)) "StructFrag_2*" 844 union(code_t,num32_t) "Union_1" 845 ptr(array(reg8_t,60)) "unknown_480*" 846 ptr(array(reg8_t,22)) "unknown_176*" 847 ptr(array(reg8_t,25)) "unknown_200*" 848 ptr(array(reg8_t,31)) "unknown_248*" 849 array(reg8_t,1692) "unknown_13536" 850 array(reg8_t,4096) "unknown_32768" 851 array(reg8_t,135168) "unknown_1081344" 817 num16_t "SHORT" 14 code_t "_onexit_t"
BlitzBasic
1
matt-noonan/retypd-data
data/miranda32.exe.decls
[ "MIT" ]
# From [email protected] Tue Aug 6 08:02:14 2002 # Return-Path: <[email protected]> # Received: from localhost (aahz [127.0.0.1]) # by skeeve.com (8.11.2/8.11.2) with ESMTP id g7652Ej01784 # for <arnold@localhost>; Tue, 6 Aug 2002 08:02:14 +0300 # Received: from actcom.co.il [192.114.47.1] # by localhost with POP3 (fetchmail-5.7.4) # for arnold@localhost (single-drop); Mon, 05 Aug 2002 22:02:14 -0700 (PDT) # Received: by actcom.co.il (mbox arobbins) # (with Cubic Circle's cucipop (v1.31 1998/05/13) Tue Aug 6 08:13:06 2002) # X-From_: [email protected] Tue Aug 6 07:26:32 2002 # Received: from lmail.actcom.co.il by actcom.co.il with ESMTP # (8.11.6/actcom-0.2) id g764QTu27770 for <[email protected]>; # Tue, 6 Aug 2002 07:26:30 +0300 (EET DST) # (rfc931-sender: mail.actcom.co.il [192.114.47.13]) # Received: from f7.net (consort.superb.net [209.61.216.22]) # by lmail.actcom.co.il (8.11.6/8.11.6) with ESMTP id g764QRi04673 # for <[email protected]>; Tue, 6 Aug 2002 07:26:28 +0300 # Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) # by f7.net (8.11.6/8.11.6) with ESMTP id g764QQ920486 # for <[email protected]>; Tue, 6 Aug 2002 00:26:26 -0400 # Received: from ccms.nips.ac.jp ([133.48.72.2]) # by fencepost.gnu.org with smtp (Exim 3.35 #1 (Debian)) # id 17bvvL-00011b-00 # for <[email protected]>; Tue, 06 Aug 2002 00:26:23 -0400 # Received: (from murata@localhost) # by ccms.nips.ac.jp (8.9.3+3.2W/3.7W) id NAA01026; # Tue, 6 Aug 2002 13:26:21 +0900 # Date: Tue, 6 Aug 2002 13:26:21 +0900 # Message-Id: <[email protected]> # To: [email protected] # Cc: [email protected] # Subject: Bug Report (gawk) # From: [email protected] (MURATA Yasuhisa) # Mime-Version: 1.0 # Content-Type: text/plain; charset=US-ASCII # X-Mailer: mnews [version 1.21PL5] 1999-04/04(Sun) # # Hello, I report a bug. # # # == PROGRAM (filename: atest.awk) == BEGIN { RS="" } NR==1 { print 1 RS="\n" next } NR==2 { print 2 RS="" next } NR==3 { print 3 RS="\n" next } # ==== # # == DATA (filename: atest.txt) == # 1111 # # 2222 # # ==== # note: last line is "\n". # # # == RUN (gawk) == # > gawk -f atest.awk atest.txt # 1 # 2 # (no stop!) # ==== # # == RUN (nawk) == # > nawk -f atest.awk atest.txt # 1 # 2 # 3 # ==== # # == VERSION == # > gawk --version # GNU Awk 3.1.1 # Copyright (C) 1989, 1991-2002 Free Software Foundation. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # == # # -- # MURATA Yasuhisa, Technical Staff # National Institute for Physiological Sciences # E-mail: [email protected]
Awk
3
Crestwave/goawk
testdata/gawk/nulrsend.awk
[ "MIT" ]
\documentclass{article} \usepackage{agda} \begin{document} \begin{code} record Sigma (A : Set) (B : A → Set) : Set where constructor _,_ field proj₁ : A proj₂ : B proj₁ open Sigma public \end{code} \begin{code} record Equiv (X Y : Set) : Set where field to : X → Y from : Y → X \end{code} \end{document}
Literate Agda
4
shlevy/agda
test/LaTeXAndHTML/succeed/Indenting6.lagda
[ "BSD-3-Clause" ]
from django.conf import settings from .. import Error, Tags, register @register(Tags.compatibility) def check_csrf_trusted_origins(app_configs, **kwargs): errors = [] for origin in settings.CSRF_TRUSTED_ORIGINS: if '://' not in origin: errors.append(Error( 'As of Django 4.0, the values in the CSRF_TRUSTED_ORIGINS ' 'setting must start with a scheme (usually http:// or ' 'https://) but found %s. See the release notes for details.' % origin, id='4_0.E001', )) return errors
Python
4
KaushikSathvara/django
django/core/checks/compatibility/django_4_0.py
[ "BSD-3-Clause", "0BSD" ]
// string.hb import stddef; // for size_t extern char* strcat(char* dest, char* src); extern char* strncat(char* dest, char* src, size_t len); extern char* strchr(char* str, int c); extern char* strrchr(char* str, int c); extern int strcmp(char* str1, char* str2); extern int strncmp(char* str1, char* str2, size_t len); extern char* strcpy(char* dest, char* src); extern char* strncpy(char* dest, char* src, size_t len); extern char* strdup(char* str); extern size_t strlen(char* str); extern char* strstr(char* str, char* pattern); extern size_t strspn(char* str, char* accept); extern size_t strcspn(char* str, char* reject); extern char* strerror(int errnum); extern char* strerror_r(int errnum, char* buf, size_t len); extern void* memcpy(void* dest, void* src, size_t len); extern void* memccpy(void* dest, void* src, int c, size_t len); extern void* memmove(void* dest, void* src, size_t len);
Harbour
3
ueki5/cbc
import/string.hb
[ "Unlicense" ]
=pod =head1 NAME ASN1_INTEGER_new, ASN1_INTEGER_free - ASN1_INTEGER allocation functions =head1 SYNOPSIS =for openssl generic #include <openssl/asn1.h> ASN1_INTEGER *ASN1_INTEGER_new(void); void ASN1_INTEGER_free(ASN1_INTEGER *a); =head1 DESCRIPTION ASN1_INTEGER_new() returns an allocated B<ASN1_INTEGER> structure. ASN1_INTEGER_free() frees up a single B<ASN1_INTEGER> object. B<ASN1_INTEGER> structure representing the ASN.1 INTEGER type =head1 RETURN VALUES ASN1_INTEGER_new() return a valid B<ASN1_INTEGER> structure or NULL if an error occurred. ASN1_INTEGER_free() does not return a value. =head1 SEE ALSO L<ERR_get_error(3)> =head1 COPYRIGHT Copyright 2020 The OpenSSL Project Authors. All Rights Reserved. Licensed under the Apache License 2.0 (the "License"). You may not use this file except in compliance with the License. You can obtain a copy in the file LICENSE in the source distribution or at L<https://www.openssl.org/source/license.html>. =cut
Pod
4
pmesnier/openssl
doc/man3/ASN1_INTEGER_new.pod
[ "Apache-2.0" ]
;;; Hy core macros ;;; These macros form the hy language ;;; They are automatically required in every module, except inside hy.core (defmacro cond [#* branches] "Build a nested if clause with each `branch` a [cond result] bracket pair. Examples: :: => (cond [condition-1 result-1] ... [condition-2 result-2]) (if condition-1 result-1 (if condition-2 result-2)) If only the condition is given in a branch, then the condition is also used as the result. The expansion of this single argument version is demonstrated below:: => (cond [condition-1] ... [condition-2]) (if condition-1 condition-1 (if condition-2 condition-2)) As shown below, only the first matching result block is executed:: => (defn check-value [value] ... (cond [(< value 5) (print \"value is smaller than 5\")] ... [(= value 5) (print \"value is equal to 5\")] ... [(> value 5) (print \"value is greater than 5\")] ... [True (print \"value is something that it should not be\")])) => (check-value 6) \"value is greater than 5\" " (or branches (return)) (setv (, branch #* branches) branches) (if (not (and (is (type branch) hy.models.List) branch)) (raise (TypeError "each cond branch needs to be a nonempty list")) `(if ~@(if (= (len branch) 1) (do (setv g (hy.gensym)) [`(do (setv ~g ~(get branch 0)) ~g) g `(cond ~@branches)]) [(get branch 0) `(do ~@(cut branch 1 None)) `(cond ~@branches)])))) (defmacro when [test #* body] "Execute `body` when `test` is true ``when`` is similar to ``unless``, except it tests when the given conditional is ``True``. It is not possible to have an ``else`` block in a ``when`` macro. The following shows the expansion of the macro. Examples: :: => (when conditional statement) (if conditional (do statement)) " `(if ~test (do ~@body))) (defmacro "#@" [expr] "with-decorator tag macro" (if (not expr) (raise (ValueError "missing function argument"))) (setv decorators (cut expr -1) fndef (get expr -1)) `(with-decorator ~@decorators ~fndef)) (defmacro doc [symbol] "macro documentation Gets help for a macro function available in this module. Use ``require`` to make other macros available. Use ``(help foo)`` instead for help with runtime objects." (setv symbol (str symbol)) (setv mangled (hy.mangle symbol)) (setv builtins (hy.gensym "builtins")) `(do (import builtins :as ~builtins) (help (or (.get __macros__ ~mangled) (.get (. ~builtins __macros__) ~mangled) (raise (NameError f"macro {~symbol !r} is not defined")))))) ;; Placeholder macros (for [s '[unquote unquote-splice unpack-mapping except finally else]] (hy.compiler.hy-eval `(defmacro ~s [#* args] (raise (ValueError ~f"`{(str s)}` is not allowed here")))))
Hy
5
CyberFlameGO/hy
hy/core/macros.hy
[ "MIT" ]
<!-- $metaTitle = Web development, social and web marketing | Gravida Web agency and creative business --> <!-- $metaDescription = We do great web design and development, but also build thorough strategic planning for social media marketing campaigns --> <!-- $class = needs-white-header --> <!-- $title = Web Development --> <!-- $hero_img = head-serv-1280-1.jpg --> <!-- $hero_img_m = head-serv-800-1.jpg --> <!-- $hero_img_e = head-serv-2560-1.jpg --> <!-- $body = <p><strong>We love the web</strong>. It's open, it's ubiquitous, it's powerful, it's flexible. Is there even anything you can't do with web technologies nowadays?</p> <p>You might have heard that web development is easy. <strong>Think again</strong>. As soon as you start digging under the surface, the web is hard and time consuming.</p> <p>When we work on a project, things like <strong>performance</strong>, <strong>search engine optimization</strong>, accessibility for impaired users, <strong>responsive and adaptable design</strong> for the plethora of devices our there, support for older browsers etc are all given standards to us. It's just the way we go about our job. In our perspective, <strong>there is no other way than the best way</strong>.</p> <p>But everything starts with thorough researching and planning. You tell us the project's goal and scope then we carefully <strong>research the target market</strong> and see what's best suited for your needs.</p> <p>As a matter of fact, we've found that keeping the client in the loop and providing <strong>constant feedback</strong> and updates, not only gives a more professional outlook to the whole process, but also improves the end product.</p> <h2 class="centered">Social and web marketing</h2> <p>In order for a project to be successful, the end product needs to be <strong>properly marketed</strong> and promoted. We can do that as well.</p> <p>Online promotion is a complex, ongoing process. It's not just the planning and the execution: you need <strong>preliminary testing</strong>, proper data analysis, pattern recognition and <strong>a whole lot of creativity</strong> to make everything appealing and fun for the user.</p> <p>You can trust us to represent your online presence in the most elegant way, to protect and enhance your <strong>brand reputation</strong> on the web.</p> <p class="call-to-action"><a href="lets-work-together" class="apple-like-box">Let's work together</a></p> --> <!-- @import language-en --> <!-- @import templates/page -->
Kit
2
smola/language-dataset
data/github.com/GioSensation/gravida/19c7b41c24b222c4842842c390293218391d9486/web-development.kit
[ "MIT" ]
/* * Copyright (c) 2020 Intel Corporation * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * 3. Neither the name of the copyright holder nor the names of its * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ Unicode true !define INSTALL !include "StrStr.nsh" !include "WinVer.nsh" !include "WordFunc.nsh" !include "x64.nsh" !include 'RegOps.nsh' !include 'Service.nsh' !include 'UI.nsh' !include 'Utils.nsh' Var code Section Main ${If} ${RunningX64} SetRegView 64 ${Else} SetRegView 32 ${EndIf} ${DisableX64FSRedirection} SetOutPath "$INSTDIR" ${Log} "Output folder: $INSTDIR" SetOverwrite try File "assets\checktool.exe" ${Log} "Extract: checktool.exe... 100%" Call CheckEnv Call UninstallMsiVersion Call InstallDriver ; WriteUninstaller is not used directly because a signed binary is needed File "assets\uninstall.exe" ${Log} "Create uninstaller: $INSTDIR\uninstall.exe" SectionEnd Section -Post Call onInstalled SectionEnd Function .onInit ${OpenLog} Call CheckVersion ${If} ${RunningX64} StrCpy $0 $PROGRAMFILES64 ${Else} StrCpy $0 $PROGRAMFILES ${EndIf} StrCpy $INSTDIR "$0${PROGRAM_DIR}" FunctionEnd Function CheckVersion ${If} ${RunningX64} SetRegView 64 ${Else} SetRegView 32 ${EndIf} ClearErrors EnumRegKey $0 ${REG_ROOT_KEY} ${REG_KEY_PRODUCT} 0 IfErrors not_installed installed not_installed: StrCpy $code 0 ${Log} "Version: ${PRODUCT_VERSION}" Return installed: ReadRegStr $0 ${REG_ROOT_KEY} ${REG_KEY_PRODUCT} "DisplayVersion" ${VersionCompare} $0 ${PRODUCT_VERSION} $R0 ${Switch} $R0 ${Case} 0 MessageBox MB_YESNO|MB_ICONQUESTION "${DLG_REINSTALL}" /SD IDYES IDYES \ reinstall ${Exit} 1 0 reinstall: StrCpy $code 1 ${Log} "${LOG_REINSTALL}: $0" ${Break} ${Case} 1 MessageBox MB_OK|MB_ICONEXCLAMATION "${DLG_DOWNGRADE}" /SD IDOK ${Log} "${LOG_UNINSTALL}: $0" ${Exit} 1 3 ${Break} ${Default} StrCpy $code 2 ${Log} "${LOG_UPGRADE}: $0 => ${PRODUCT_VERSION}" ${Break} ${EndSwitch} FunctionEnd Function UninstallMsiVersion ${If} ${RunningX64} SetRegView 64 ${Else} SetRegView 32 ${EndIf} StrCpy $R0 0 EnumRegKey $0 ${REG_ROOT_KEY} ${REG_KEY_UNINSTALL} $R0 ${While} $0 != "" ReadRegStr $1 ${REG_ROOT_KEY} ${REG_KEY_UNINSTALL}\$0 "DisplayName" ${StrStr} $2 $1 "${PRODUCT_FULL_NAME}" ; MSI version's subkey is the product code GUID, rather than the product name. ${If} $2 != "" ${AndIf} $0 != ${PRODUCT_NAME} ReadRegStr $3 ${REG_ROOT_KEY} ${REG_KEY_UNINSTALL}\$0 "UninstallString" ${ExecCommand} "$3 /qn" false ${Break} ${EndIf} IntOp $R0 $R0 + 1 EnumRegKey $0 ${REG_ROOT_KEY} ${REG_KEY_UNINSTALL} $R0 ${EndWhile} FunctionEnd Function InstallDriver ${If} ${AtLeastWin10} ${If} ${RunningX64} File ${DRIVER_WIN10_64} ${Else} File ${DRIVER_WIN10_32} ${EndIf} ${Else} ${If} ${RunningX64} File ${DRIVER_WIN7_64} ${Else} File ${DRIVER_WIN7_32} ${EndIf} ${EndIf} ${Log} "Extract: ${DRIVER_FILE}... 100%" ${If} $code > 0 Call StopService ${EndIf} CopyFiles "$INSTDIR\${DRIVER_FILE}" "${DRIVER_DIR}" ${Log} "Copy to ${DRIVER_DIR}\${DRIVER_FILE}" FunctionEnd Function onInstalled ${If} $code == 0 Call CreateService ${EndIf} Call StartService Call CreateRegItems ${Exit} 0 $code FunctionEnd Function onAbort ${Exit} 0 0 FunctionEnd
NSIS
5
ryoon/haxm
Installer/HaxmSetup.nsi
[ "BSD-3-Clause" ]
"""Constants for the Channels component.""" DOMAIN = "channels" SERVICE_SEEK_FORWARD = "seek_forward" SERVICE_SEEK_BACKWARD = "seek_backward" SERVICE_SEEK_BY = "seek_by"
Python
1
domwillcode/home-assistant
homeassistant/components/channels/const.py
[ "Apache-2.0" ]
#pragma once #define WIN32_LEAN_AND_MEAN #include <Windows.h> #include <optional> #include <functional> #include <type_traits> #define DECLARE_DLL_FUNCTION(NAME) \ std::function<decltype(::NAME)> NAME = (std::add_pointer_t<decltype(::NAME)>)GetProcAddress(_library_handle, #NAME); #define DECLARE_DLL_PROVIDER_BEGIN(DLL_NAME) \ class DLL_NAME##APIProvider final \ { \ HMODULE _library_handle; \ DLL_NAME##APIProvider(HMODULE h) : _library_handle{ h } {} \ \ public: \ ~DLL_NAME##APIProvider() { FreeLibrary(_library_handle); } \ static std::optional<DLL_NAME##APIProvider> create() \ { \ HMODULE h = LoadLibraryA(#DLL_NAME ".dll"); \ std::optional<DLL_NAME##APIProvider> result; \ if (!h) \ return result; \ result.emplace(DLL_NAME##APIProvider{ h }); \ return result; \ } #define DECLAR_DLL_PROVIDER_END \ } \ ;
C
3
szlatkow/PowerToys
src/modules/videoconference/VideoConferenceShared/DLLProviderHelpers.h
[ "MIT" ]
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import * as vscode from 'vscode'; import { Disposable } from './dispose'; import { isJsConfigOrTsConfigFileName } from './languageDescription'; import { isSupportedLanguageMode } from './languageIds'; /** * Tracks the active JS/TS editor. * * This tries to handle the case where the user focuses in the output view / debug console. * When this happens, we want to treat the last real focused editor as the active editor, * instead of using `vscode.window.activeTextEditor` */ export class ActiveJsTsEditorTracker extends Disposable { private _activeJsTsEditor: vscode.TextEditor | undefined; private readonly _onDidChangeActiveJsTsEditor = this._register(new vscode.EventEmitter<vscode.TextEditor | undefined>()); public readonly onDidChangeActiveJsTsEditor = this._onDidChangeActiveJsTsEditor.event; public constructor() { super(); vscode.window.onDidChangeActiveTextEditor(this.onDidChangeActiveTextEditor, this, this._disposables); vscode.window.onDidChangeVisibleTextEditors(() => { // Make sure the active editor is still in the visible set. // This can happen if the output view is focused and the last active TS file is closed if (this._activeJsTsEditor) { if (!vscode.window.visibleTextEditors.some(visibleEditor => visibleEditor === this._activeJsTsEditor)) { this.onDidChangeActiveTextEditor(undefined); } } }, this, this._disposables); this.onDidChangeActiveTextEditor(vscode.window.activeTextEditor); } public get activeJsTsEditor(): vscode.TextEditor | undefined { return this._activeJsTsEditor; } private onDidChangeActiveTextEditor(editor: vscode.TextEditor | undefined): any { if (editor === this._activeJsTsEditor) { return; } if (editor && !editor.viewColumn) { // viewColumn is undefined for the debug/output panel, but we still want // to show the version info for the previous editor return; } if (editor && this.isManagedFile(editor)) { this._activeJsTsEditor = editor; } else { this._activeJsTsEditor = undefined; } this._onDidChangeActiveJsTsEditor.fire(this._activeJsTsEditor); } private isManagedFile(editor: vscode.TextEditor): boolean { return this.isManagedScriptFile(editor) || this.isManagedConfigFile(editor); } private isManagedScriptFile(editor: vscode.TextEditor): boolean { return isSupportedLanguageMode(editor.document); } private isManagedConfigFile(editor: vscode.TextEditor): boolean { return isJsConfigOrTsConfigFileName(editor.document.fileName); } }
TypeScript
4
sbj42/vscode
extensions/typescript-language-features/src/utils/activeJsTsEditorTracker.ts
[ "MIT" ]
<template> <v-container fluid> <v-checkbox v-model="custom" label="Custom progress bar" ></v-checkbox> <v-text-field v-model="value" color="cyan darken" label="Text field" placeholder="Start typing..." loading > <template v-slot:progress> <v-progress-linear v-if="custom" :value="progress" :color="color" absolute height="7" ></v-progress-linear> </template> </v-text-field> </v-container> </template> <script> export default { data: () => ({ value: '', custom: true, }), computed: { progress () { return Math.min(100, this.value.length * 10) }, color () { return ['error', 'warning', 'success'][Math.floor(this.progress / 40)] }, }, } </script>
Vue
4
mark-gene/vuetify
packages/docs/src/examples/v-text-field/slot-progress.vue
[ "MIT" ]
\* Copyright (c) 2010-2015, Mark Tarver All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of Mark Tarver may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY Mark Tarver ''AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Mark Tarver BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *\ (package shen [] (define load FileName -> (let Load (time (load-help (value *tc*) (read-file FileName))) Infs (if (value *tc*) (output "~%typechecked in ~A inferences~%" (inferences)) skip) loaded)) (define load-help false File -> (for-each (/. X (output "~S~%" (eval-without-macros X))) File) _ File -> (let RemoveSynonyms (mapcan (/. X (remove-synonyms X)) File) Table (mapcan (/. X (typetable X)) RemoveSynonyms) Assume (for-each (/. X (assumetype X)) Table) (trap-error (for-each (/. X (typecheck-and-load X)) RemoveSynonyms) (/. E (unwind-types E Table))))) (define remove-synonyms [synonyms-help | S] -> (do (eval [synonyms-help | S]) []) Code -> [Code]) (define typecheck-and-load X -> (do (nl) (typecheck-and-evaluate X (gensym (protect A))))) (define typetable [define F | X] -> (let Sig (compile (/. Y (<sig+rest> Y)) X (/. E (error "~A lacks a proper signature.~%" F))) [[F | Sig]]) _ -> []) (define assumetype [F | Type] -> (declare F Type)) (define unwind-types E [] -> (simple-error (error-to-string E)) E [[F | _] | Table] -> (do (remtype F) (unwind-types E Table))) (define remtype F -> (set *signedfuncs* (removetype F (value *signedfuncs*)))) (define removetype _ [] -> [] F [[F | _] | Table] -> (removetype F Table) F [Entry | Table] -> [Entry | (removetype F Table)]) (defcc <sig+rest> <signature> <!> := <signature>;) (define write-to-file File Text -> (let Stream (open File out) String (if (string? Text) (make-string "~A~%~%" Text) (make-string "~S~%~%" Text)) Write (pr String Stream) Close (close Stream) Text)) )
Shen
4
nondejus/shen-go
ShenOSKernel-22.2/sources/load.shen
[ "BSD-3-Clause" ]
/*--------------------------------------------------*/ /* SAS Programming for R Users - code for exercises */ /* Copyright 2016 SAS Institute Inc. */ /*--------------------------------------------------*/ /*SP4R04s07*/ /*Part A*/ data sp4r.random; call streaminit(123); do year=1 to 2; do j=1 to 300; x = rand('Normal'); if year=1 then y = x + rand('Normal'); if year=2 then y = 5*x + rand('Normal'); output; end; end; run; /*Part B*/ proc sgpanel data=sp4r.random; panelby year; reg x=x y=y; title 'Regression Panels'; run; title;
SAS
4
snowdj/sas-prog-for-r-users
code/SP4R04s07.sas
[ "CC-BY-4.0" ]