Settings

Blockchain
Network
Unit
Language
Theme
Sound New Block

Transaction

25aeeab598ace35054101bc5183a9c72479626708b43292ea34d5ce730680253
Timestamp (utc)
2022-01-27 20:51:21
Fee Paid
0.00003915 BSV
(
0.01627827 BSV
-
0.01623912 BSV
)
Fee Rate
599.9 sat/KB
Version
1
Confirmations
260,165
Size Stats
6,526 B

2 Outputs

Total Output:
0.01623912 BSV
  • j!ëFOQê°Z±zìI œˆâkŸE !b"à¥2&7ÜRMroductOptions" /v ProductType /d "ServerNT" /f ;; vista) csdversion="Service Pack 2" currentbuildnumber="6002" currentversion="6.0" csdversion_hex=dword:00000200 "$WINE" reg add "HKLM\\System\\CurrentControlSet\\Control\\ProductOptions" /v ProductType /d "WinNT" /f ;; win7|default) csdversion="Service Pack 1" currentbuildnumber="7601" currentversion="6.1" csdversion_hex=dword:00000100 "$WINE" reg add "HKLM\\System\\CurrentControlSet\\Control\\ProductOptions" /v ProductType /d "WinNT" /f ;; win2k8) csdversion="Service Pack 2" currentbuildnumber="6002" currentversion="6.0" csdversion_hex=dword:00000200 "$WINE" reg add "HKLM\\System\\CurrentControlSet\\Control\\ProductOptions" /v ProductType /d "ServerNT" /f ;; win2k8r2) csdversion="Service Pack 1" currentbuildnumber="7601" currentversion="6.1" csdversion_hex=dword:00000100 "$WINE" reg add "HKLM\\System\\CurrentControlSet\\Control\\ProductOptions" /v ProductType /d "ServerNT" /f ;; win8) csdversion="" currentbuildnumber="9200" currentversion="6.2" csdversion_hex=dword:00000000 "$WINE" reg add "HKLM\\System\\CurrentControlSet\\Control\\ProductOptions" /v ProductType /d "WinNT" /f ;; win81) csdversion="" currentbuildnumber="9600" currentversion="6.3" csdversion_hex=dword:00000000 "$WINE" reg add "HKLM\\System\\CurrentControlSet\\Control\\ProductOptions" /v ProductType /d "WinNT" /f ;; win10) csdversion="" currentbuildnumber="10240" currentversion="10.0" csdversion_hex=dword:00000000 "$WINE" reg add "HKLM\\System\\CurrentControlSet\\Control\\ProductOptions" /v ProductType /d "WinNT" /f ;; *) w_die "Invalid Windows version given." ;; esac echo "Setting Windows version to $1" cat > "$W_TMP"/set-winver.reg <<_EOF_ REGEDIT4 [HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows NT\\CurrentVersion] "CSDVersion"="$csdversion" "CurrentBuildNumber"="$currentbuildnumber" "CurrentVersion"="$currentversion" [HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Windows] "CSDVersion"=$csdversion_hex _EOF_ w_try_regedit "$W_TMP_WIN"\\set-winver.reg # Prevent a race when calling from another verb w_wineserver -w } w_unset_winver() { w_warn "w_unset_winver() is deprecated, use \'w_set_winver default\' instead" w_set_winver default } # Present app $1 with the Windows personality $2 w_set_app_winver() { w_skip_windows w_set_app_winver && return _W_app="$1" _W_version="$2" echo "Setting $_W_app to $_W_version mode" ( echo REGEDIT4 echo "" echo "[HKEY_CURRENT_USER\\Software\\Wine\\AppDefaults\\$_W_app]" echo "\"Version\"=\"$_W_version\"" ) > "$W_TMP"/set-winver.reg w_try_regedit "$W_TMP_WIN"\\set-winver.reg rm "$W_TMP"/set-winver.reg unset _W_app } # Usage: w_compare_wine_version OP VALUE # Note: currently only -ge and -le are supported, # as well as the special case -bn (between) # Example: # if w_compare_wine_version -gt 2.5 ; then # ... # fi w_compare_wine_version() { comparison="$1" known_wine_val1="$2" known_wine_val2="$3" case "$comparison" in # expected value if the comparison is true -bn) _expected_pos_current_wine="2";; -ge) _expected_pos_current_wine="2";; -le) _expected_pos_current_wine="1";; *) w_die "Unsupported comparison. Only -bn, -ge, and -le are supported" ;; esac # First, check if current wine is equal to either upper or lower wine version: case "${_wine_version_stripped}" in ${known_wine_val1}|${known_wine_val2}) return 1;; esac _pos_current_wine="$(printf "%s\\n%s\\n%s" "${known_wine_val1}" "${_wine_version_stripped}" "${known_wine_val2}" | sort -t. -k 1,1n -k 2,2n -k 3,3n | grep -n "^${_wine_version_stripped}\$" | cut -d : -f1)" if [ "$_pos_current_wine" = "$_expected_pos_current_wine" ] ; then #echo "true: known_wine_version=$2, comparison=$1, stripped wine=$_wine_version_stripped, expected_pos=$_expected_pos_known, pos_known=$_pos_known_wine" #echo "Wine version comparison is true" return 1 else #echo "false: known_wine_version=$2, comparison=$1, stripped wine=$_wine_version_stripped, expected_pos=$_expected_pos_known, pos_known=$_pos_known_wine" #echo "Wine version comparison is false" return 0 fi } # Usage: w_wine_version_in range ... # True if wine version in any of the given ranges # 'range' can be # val1, (for >= val1) # ,val2 (for <= val2) # val1,val2 (for >= val1 && <= val2) w_wine_version_in() { for _W_range; do _W_val1=$(echo "$_W_range" | sed 's/,.*//') _W_val2=$(echo "$_W_range" | sed 's/.*,//') # If in this range, return true case $_W_range in ,*) w_compare_wine_version -le "$_W_val2" && unset _W_range _W_val1 _W_val2 && return 0;; *,) w_compare_wine_version -ge "$_W_val1" && unset _W_range _W_val1 _W_val2 && return 0;; *) w_compare_wine_version -bn "$_W_val1" "$_W_val2" && unset _W_range _W_val1 _W_val2 && return 0;; esac done unset _W_range _W_val1 _W_val2 return 1 } # Usage: workaround_wine_bug bugnumber [message] [good-wine-version-range ...] # Returns true and outputs given msg if the workaround needs to be applied. # For debugging: if you want to skip a bug's workaround, put the bug number in # the environment variable WINETRICKS_BLACKLIST to disable it. w_workaround_wine_bug() { if test "$WINE" = ""; then echo "No need to work around wine bug $1 on Windows" return 1 fi ca@Salted__«[—c6Œ0;î6¦öIøáR›±á1䊘F¬cah˜v•¸GJއ5ièºÚvÒuÄAÞÚ&¨‚À~Å/"L>Z§ìæÿÈay©¾KUç÷¦ÏDGî$DŽEù|ßYí¨‹üÔ®Toúe*ð£ÃÔÑ~<w~
    https://whatsonchain.com/tx/25aeeab598ace35054101bc5183a9c72479626708b43292ea34d5ce730680253