????

Your IP : 3.139.234.66


Current Path : C:/Windows/SysWOW64/
Upload File :
Current File : C:/Windows/SysWOW64/regini.exe

MZ����@���	�!�L�!This program cannot be run in DOS mode.

$�∋�����������������������������������؋��������������������Rich���PEL�mL���.���@

��@� ��d����8?T@��.text4� `.data@��@�.idataB
��@@.rsrc���@@.reloc���@BP�@��@�t�@�?@��@�@
u�?@P�@�@0�@`K�P������0� ���0�
Invalid key '%ws' Acl [%ws]Invalid key '%ws'Value too large - '%ws = %ws'Unable to access file - '%ws = %ws'Date/time format invalid - '%ws = %ws'Invalid line continuation - '%ws = %ws'Invalid quote character - '%ws = %ws'Missing length for binary data - '%ws = %ws'Not enough binary data for length - '%ws = %ws'Invalid registry type - '%ws = %ws'Invalid value - '%ws = %ws'%02u %04u  KeyName: %wsREGINI: Missing line continuation character for %ws
REGINI: %ws key exceeded maximum depth (%u) of tree.
  (%02u)
    Deleted key %02x %ws (%x%08x)
; *** Deleted the above key and all of its subkeys ***
REGINI: DeleteKey (%ws) relative to handle (%x%08x) failed - %u
    Created key %02x %ws (%x%08x)
REGINI: CreateKey (%ws) relative to handle (%x%08x) failed - %u
Value name ('%ws') seen before any key name    Popping from key %02x %ws (%x%08x)
    Adding value '%ws = %ws' to key %02x %ws (%x%08x)
    %ws = DELETED
REGINI: SetValueKey (%ws) failed (%u)
-b specifies that REGINI should be backward compatible with older
    versions of REGINI that did not strictly enforce line continuations
    and quoted strings Specifically, REG_BINARY, REG_RESOURCE_LIST and
    REG_RESOURCE_REQUIREMENTS_LIST data types did not need line
    continuations after the first number that gave the size of the data.
    It just kept looking on following lines until it found enough data
    values to equal the data length or hit invalid input.  Quoted
    strings were only allowed in REG_MULTI_SZ.  They could not be
    specified around key or value names, or around values for REG_SZ or
    REG_EXPAND_SZ  Finally, the old REGINI did not support the semicolon
    as an end of line comment character.

textFiles is one or more ANSI or Unicode text files with registry data.

Some general rules are:
    Semicolon character is an end-of-line comment character, provided it
    is the first non-blank character on a line

    Backslash character is a line continuation character.  All
    characters from the backslash up to but not including the first
    non-blank character of the next line are ignored.  If there is more
    than one space before the line continuation character, it is
    replaced by a single space.

    Indentation is used to indicate the tree structure of registry keys
    The REGDMP program uses indentation in multiples of 4.  You may use
    hard tab characters for indentation, but embedded hard tab
    characters are converted to a single space regardless of their
    position
    
    Values should come before child keys, as they are associated with
    the previous key at or above the value's indentation level.

    For key names, leading and trailing space characters are ignored and
    not included in the key name, unless the key name is surrounded by
    quotes.  Imbedded spaces are part of a key name.

    Key names can be followed by an Access Control List (ACL) which is a
    series of decimal numbers, separated by spaces, bracketed by a
    square brackets (e.g.  [8 4 17]).  The valid numbers and their
    meanings are:

       1  - Administrators Full Access
       2  - Administrators Read Access
       3  - Administrators Read and Write Access
       4  - Administrators Read, Write and Delete Access
       5  - Creator Full Access
       6  - Creator Read and Write Access
       7  - World Full Access
       8  - World Read Access
       9  - World Read and Write Access
       10 - World Read, Write and Delete Access
       11 - Power Users Full Access
       12 - Power Users Read and Write Access
       13 - Power Users Read, Write and Delete Access
       14 - System Operators Full Access
       15 - System Operators Read and Write Access
       16 - System Operators Read, Write and Delete Access
       17 - System Full Access
       18 - System Read and Write Access
       19 - System Read Access
       20 - Administrators Read, Write and Execute Access
       21 - Interactive User Full Access
       22 - Interactive User Read and Write Access
       23 - Interactive User Read, Write and Delete Access

    If there is an equal sign on the same line as a left square bracket
    then the equal sign takes precedence, and the line is treated as a
    registry value.  If the text between the square brackets is the
    string DELETE with no spaces, then REGINI will delete the key and
    any values and keys under it.

    For registry values, the syntax is:

       value Name = type data

    Leading spaces, spaces on either side of the equal sign and spaces
    between the type keyword and data are ignored, unless the value name
    is surrounded by quotes.  If the text to the right of the equal sign
    is the string DELETE, then REGINI will delete the value.

    The value name may be left off or be specified by an at-sign
    character which is the same thing, namely the empty value name.  So
    the following two lines are identical:

       = type data
       @ = type data

    This syntax means that you can't create a value with leading or
    trailing spaces, an equal sign or an at-sign in the value name,
    unless you put the name in quotes.

    Valid value types and format of data that follows are:

       REG_SZ text
       REG_EXPAND_SZ text
       REG_MULTI_SZ "string1" "str""ing2" ...
       REG_DATE mm/dd/yyyy HH:MM DayOfWeek
       REG_DWORD numberDWORD
       REG_BINARY numberOfBytes numberDWORD(s)...
       REG_NONE (same format as REG_BINARY)
       REG_RESOURCE_LIST (same format as REG_BINARY)
       REG_RESOURCE_REQUIREMENTS (same format as REG_BINARY)
       REG_RESOURCE_REQUIREMENTS_LIST (same format as REG_BINARY)
       REG_FULL_RESOURCE_DESCRIPTOR (same format as REG_BINARY)
       REG_QWORD numberQWORD
       REG_MULTISZ_FILE fileName
       REG_BINARYFILE fileName

    If no value type is specified, default is REG_SZ

    For REG_SZ and REG_EXPAND_SZ, if you want leading or trailing spaces
    in the value text, surround the text with quotes.  The value text
    can contain any number of imbedded quotes, and REGINI will ignore
    them, as it only looks at the first and last character for quote
    characters.

    For REG_MULTI_SZ, each component string is surrounded by quotes.  If
    you want an imbedded quote character, then double quote it, as in
    string2 above.

    For REG_BINARY, the value data consists of one or more numbers The
    default base for numbers is decimal.  Hexidecimal may be specified
    by using 0x prefix.  The first number is the number of data bytes,
    excluding the first number.  After the first number must come enough
    numbers to fill the value.  Each number represents one DWORD or 4
    bytes.  So if the first number was 0x5 you would need two more
    numbers after that to fill the 5 bytes.  The high order 3 bytes
    of the second DWORD would be ignored.
[-b] textFiles...REGINIError: Registry editing has been disabled by your administrator.
Failed to load from file '%s' (%u)
No textFile specifiedSoftware\Microsoft\Windows\CurrentVersion\Policies\SystemDisableRegistryToolsREG_SZREG_EXPAND_SZREG_MULTI_SZREG_MULTISZ_FILEREG_DWORDREG_NONEREG_BINARYREG_BINARYFILEREG_DATEREG_RESOURCE_LISTREG_RESOURCE_REQUIREMENTS_LISTREG_RESOURCE_REQUIREMENTSREG_FULL_RESOURCE_DESCRIPTORREG_QWORDONYESTRUEOFFNOFALSE.Default\Registry\Machine\Registry\Classes\Registry\Users\Registry\Users\.Default\RegistryEmpty.HIVUSER:HKEY_CURRENT_USERHKCUHKEY_LOCAL_MACHINEHKLMHKEY_CLASSES_ROOTHKCRHKEY_USERSMachineClassesUsersDELETESUNMONTUEWEDTHUFRISAT%.*s%c%ws%c%.*s%ws %wc%ws%wc%.*s%c%ws%c %ws = REG_EXPAND_SZ (*** Length not multiple of WCHAR ***)(*** MISSING TRAILING NULL CHARACTER ***)%c%ws%c%ws ,;%.*ws\
%.*s%ws 0x%08lx \
%.*s 0x%08lxREG_DWORD 0x%08lx
REG_DWORD_BIG_ENDIAN 0x%08lx
REG_LINK %ws
 \ ->%.*sREG_MULTI_SZ "%wc" REG_QWORD 0x%016I64x
*** Unknown Registry Data Type (%08lx)  Length: 0x%lx
;%.*sNumber of Full resource Descriptors = %d
;%.*sPartial List number %d
UndefinedInternalIsaEisaMicroChannelTurboChannelPCIVMENuBusPCMCIACBUSMPIMPSAProcessorInternalInternalPowerPNP Isa***invalid bus type***;%.*sINTERFACE_TYPE %ws
;%.*sBUS_NUMBER  %d

;%.*s *** !!! Invalid ResourceList !!! *** 
;%.*sDescriptor number %d
CmResourceShareUndeterminedCmResourceDeviceExclusiveCmResourceDriverExclusiveCmResourceShared***invalid share disposition***;%.*sShare Disposition %ws
***invalid FlagsNULL***UnusedPORTCM_RESOURCE_PORT_MEMORYCM_RESOURCE_PORT_IOINTERRUPTCM_RESOURCE_INTERRUPT_LEVEL_SENSITIVECM_RESOURCE_INTERRUPT_LATCHEDMEMORYCM_RESOURCE_MEMORY_READ_WRITECM_RESOURCE_MEMORY_READ_ONLYCM_RESOURCE_MEMORY_WRITE_ONLYDMADEVICE SPECIFIC***invalid type***;%.*sTYPE              %ws
;%.*sFlags             %ws
;%.*sSTART 0x%08lx  LENGTH 0x%08lx
;%.*sLEVEL %d  VECTOR %d  AFFINITY %d
;%.*sSTART 0x%08lx%08lx  LENGTH 0x%08lx
;%.*sCHANNEL %d  PORT %d
;%.*sDataSize 0x%08lx  Data:
;%.*s 0x%08lx;%.*s*** Unknown resource list type: 0x%x ****
;
Unable to initialize registry access functions (%u)REGBACKUnable to allocate large value buffer (%u)                                                      %.*s%.*s
more...press any key to continue
                                
usage: %s [-m \\machinename | -h hivefile hiveroot]
[-i n] [-o outputWidth]where: -m specifies a remote Windows NT machine whose registry is to be manipulated.
-h specifies a specify local hive to manipulate.
-i n specifies the display indentation multiple.  Default is 4
-o outputWidth specifies how wide the output is to be.  By default the
   outputWidth is set to the width of the console window if standard
   output has not been redirected to a file.  In the latter case, an
   outputWidth of 240 is used.Whenever specifying a registry path, either on the command line
or in an input file, the following prefix strings can be used:

     HKEY_LOCAL_MACHINE
     HKEY_USERS
     HKEY_CURRENT_USER
     USER:

   Each of these strings can stand alone as the key name or be followed
   a backslash and a subkey path.%s: error%ws(%u) : %s: Out of memoryUnable to convert parameter '%s' to Unicode (%u)Missing argument to -o switchMissing parameter for -%c switchMay only specify one of -h or -m switches\\Invalid machine name - '%ws'Missing parameter(s) for -%c switchInvalid switch (-%c) %d�mL�#@4�mL�
(@(4�mL�$,B,6���?�?@ц���6���	��0.VB�FP�� �"��o0�#���RSDSlg(�̨�W��E �Yregini.pdbGCTL�.rdata$brc�.CRT$XCA�.CRT$XCAA�.CRT$XCZ�.CRT$XIA�.CRT$XIAA�.CRT$XIY�.CRT$XIZ�(.gfids�..rdata�?.rdata$sxdata�?t.rdata$voltmd@L.rdata$zzzdbgPBHL.text$mn���.xdata$x�p.data$brcp��.data � 
.bss��.idata$5��.00cfg��P.idata$2�.idata$3��.idata$4���.idata$6��.rsrc$01��8.rsrc$02 lg(�̨�W��E �Y���%��C��˜mL���U����t�@3ʼnE��ESV�Z�����3����W�y�?���G�����|�@��j������KY���3҉��������P�$��t/���Q���Qh��@����h<1@��������4���$���h��@����hH1@�������4���F;�uHj�K����������Y��t0Q���������!A��tj]������Pj[hP1@�������\4��h@j�JYP�F4YYF��;���_�M�^3�[� E�������̋�U���0�t�@3ʼnE�S�]����VWPQQS�����8�C��������P�����Dž���P�����PQ�O��u��������P�������t����������������P�����������y��u���@�����������@�M�_^3�[�GD�������̋�U����t�@3ʼnE�SVWh��@Q��Q�����*���c�ȟ@�������ˉ����؅��5j8������SP�I��@��������󈅜������.8������!8�@t#������������Wh�@j�IYP�2��������;����������������k�ƍp�t6;w)�V���@�v�������^;t��O��v;v����@�G��8�@tWh @j�HYP�2���������������F�^��^8��������s�����G�k������������P���@����ȉ������8�@t�vS�v�6h,@j�GYP�1��S�W����������hP@j��GYP�d1YY����s�����G�k������������������Q�NQ�����QQP���@�G�ȉ�����Z8�@t�vS�v�6h�@j�`GYP��0���N��
�t�FPSSSSSSSSSSQ��@��t�^�^�������������W�������(������uQS������h4@�8�@t�vS�v�6h`@j��FYP�_0���V���@�s�^��O��v
������;r�8�@t+�vS�v�6�����������h�@j�~FYP�	0�� ������k��������8����t<��������
���,�@���7������h�@j�*FYP�/����t�@����R������@P������������PS��������
����@��u_������jX��J+�P�������SP�F�������������;����u-9���u%Q������5�@���@�����;�t|���������Q����������S����������� �@������lS�W�������R���������|�@�����������������PQj�EYP����������������������8�������S�W���������8�������@9����u�(@�����������������PQ������+�Zj@������h�@j�{DYP�.�����2��s����
�G�k������QPS������h�@j�8DYP��-���������s����
�G�k������QPS������h�@������h�@j��CYP�r-���P������h�@j��CYP�P-��닋�����H��w?�$�+K@�<@�6�\@�/��@�(��@�!��@���@��(@��X@��|@�����������P������Q�����*j[��V���@����������;�s湀�@���ËM�_^3�[�=�Ë��J@�J@�J@�J@�J@�J@�J@�J@�J@����������������̹��@�3�������̋�U����SVWQQ�&�D$3�Ph�,@h��\$ ���@j_��ug�D$�|$P�D$ P�D$ PSh-@�t$$��@��u9|$u
9|$u9\$tF�t$��@��th,@j�7BYP��+Y3�Y@_^[��]Ë}����@�}���]���]�3�<-t,</t(���D$�)��u���@����"�����u`�<F���t5��P��@Y��bt��UP�M��)���@F���uы]�}���}u��|$t3��U���3ҹ�,@��&P�ֹ\,@�J(������̋�U�����@�
x�@S�p�@V�uW3��M��E�������������NQh�P�(�@�؅����FPh��u��(�@�؅����FPh��u��(�@�؅�u|�FPh8/@�v��@�؅�udhL/@�F�SP�E����@hp/@�� SP���@h�/@��(SP���@h�/@��0hS���@��0�F�s3�9~t�v��@�~9~t�v��@�~9~t�v��@�~������������hL/@�F�F���F�SP�F��F��E����@hp/@�� SP���@h�/@��(SP���@��$�E�P�P�@��yP�X�@P�@�@3��5�u���0hS���@���E�P�4�@�F�|�����=b�@u:h`�@Wjj�L�@����ha�@Wjj�L�@�����M��b�@Q�Ӊ~�Ή~�~�~������F�F�E���0�� ��(�u��F�E�f���f;�u��Ɖu�+E��u���8�B�E�f���f;�u�+U����<�Qf���f;�u�+����@�Kf���f;�u�+����D�����"�jWX_^[�������̋�SV��~u�3�8b�@t2�`�@h`�@SPj�L�@�a�@ha�@SPj�L�@�b�@�^3�^[������̋�U���4SVW3ۋ�SSjSjh�V�����@���ujVh�/@�t�@��t��/@�P�d�@j�E�P�\�@��yP�X�@�SSj�E�P�,�@��x�SS�E�PV�@�@��u
�����E��E��EԍE�h�/@hh�@�]��E�@�E܉]�<�@��L��PV��\��`��HhS�LJX@LJTh�@�0�@���J����uhh�@�<�@���\��`V���PLJX@LJTh�@�T�@�E�PV�8�@����3�_^[�������̋�U��QSW���E���LShP�0�@��x�u��D�@�u��H�@V��d��v��@V�6j�p�@P���@��u�^S�T�@��y���H�H�@_[�������̋�V��d�W���	9xt.����u�jP�p�@P�h�@��t� �x�@�_^�@������̋�U��VW�}��tWR�6��@����u	�?��2�_^]������̋�U��QSV�u��W���;�6�u���j�0@�M��������j�0@�M��������j�@0@�M��m������}j�L0@�M��V������Lj�t0@�M��?������5j��0@�M��(������j��0@�M���������j
��0@�M������t!�u����\u���	f���)�G��E�j\Yf9���8�W�M������t�G�U��<�� �M������t�G�8��@��(�M��{�����t�G���D��0�M��^�����t!�G�u��j\Xf9u���]��3_^[���Eh�/@�0���@YY��uo!�u��Ջu����\u���f��uS�G�=�u����\u���f��u9�G�#�G��t-�u����\u���f�~�:tf��u��w���f�>\�m���h��@�@2��b��������̋�U���W�E�U�P�U��������u���@���E���u�E��E�
�3���V=
�u_�uh�0@�u�&���@YY��u�G�0h�0@�u���@YY��u�G�h�0@�u���@YY��u�G���������a�u�M�S�u�]3�SQhRRR�u�E�P�u�U���@�E���u&�u	����X����E�8u��tVj�3��@�E�[^_�������̋�U��QW�E�U�P�U��������u���@��E���u�E�
�3��V=
�u_�uh�0@�u�&���@YY��u�G�0h�0@�u���@YY��u�G�h�0@�u���@YY��u�G���������.S�]Shj�uP�$�@��u�u	����a�����[^_�������̋�V��W����
�u3��>SV��@�؅�u-�u'��d�'9qu �iu�Qj��p�@P���@��[_^Ëы
��u��������̋�U��
�uf�E���tV�����wB�UVW������0@+�+����t�f��tf�����u��u��3�f�_^��t�)��t�E3�f�����u3�PPP�u�uPR��@]������̋�U���4SVW3ۉU�SSjSj����h�P�E���@�����u���@�SW�l�@�؃��u	W�d�@��jh�]Pj�8�@�E�tVj�M�QSPW�H�@��tR9]�tj&^�"�E؃�PjjW�x�@��u���@��t&�E�h�jP�<�@�3�����@��uj^W�d�@��t����}�jSW�}��0�@��u;S�4WV�5��SWSVjj�D�@��3��]�f�_��u8hY�@�@���������]�f;�t
���f;�u�OK�M��]����3��E�
�׉E�3��U���<�E�
�E� �E�	���*j\Xf9A����E�f;E�tj
_f;Nj}��j\�J�Xf9�E��M�u�щU�;�vj [�B��E�f9w��;�w�]�E��U�j Yf9
�M�u���U�e�;�s�}��j
Zf;�uj3�XB�f;E�u�F;�sf9QujXjZ��G;�rˋU��E��}�}�M�v3E�E�tQ�ȋ���

��f�E��B�U��u��}�M��E��&@�E�;���f;E�tf;E�uF��;�r�M�;������f;E�uj
_f9y�}�t
f;E���j
Z;�s�}��f;�tf;�uF��;�r�u���;�s-�8f;}�tf;}�u�E���9]�r�9]�s�}�f98uf9Ptf9u�u���뢋E��U�}�M���t&�ȋ���

��f�E��B��u��}�M��E�j
Xf����
f�F�����M��U�;�������u���t�΋���r�

��f�M�j
Xf���3�f��Ẻ�E�A�A3��Q�A_^[�������̋�U���SV��W�u�~
t�N��t�)j8jV�2�O������j [�]�g�f����f;�w2��f;�u�F�j	Xf;�u�F����F��;Ost���f;�vЊG3�3҈E����M���u2f�9;u,;Os"j
Zf9t
��;Or���G3�f���f9t�O��1j
Xf;�u�u�E�u�G�Oj [���O����F2�_^[��8U�uNf�}�"tf�}�'u@����E�M���u�f91�u�t��;Or�E�f9�E�t	�F�3�f����E�;OsW�1�u�=tH�A�E�E�f��[u���j
^f9u�t!j	Xf9E�E�u	j Xf��E��M��;wr���E�G�E����3�3�f�1�u�;�v���1f;u�wf��t	3�f�1;�w�u��t'�C;Gsj
Yf9t
��;Gr��3�f����G�/��t+3ɋ�f�
�M�;�v���0f;u�wf��t	3�f�0;�w�u�G��G�E��F��tef�8@t;�t�Fj Y���f��tf;�v�Sh�0@���@YY��u�F(��z����F �^P�F$��P�F��Ph@�5d�@��R����F
�F��tƃ��V���f���1�����f��]t�����f��u�����3�Wh�0@f����@YY��u	�F �x����V$�ωV�C$���c����f���������̋�U���`�t�@3ʼnE�S3ۋ��M�M��M�E��M��]ĉ]��]ˈ]Ɉ]ʈ]�V�u�u�W���d�@�}��U���t�@�Eˋ_3����E��3��E̡8�@�E���t|�ȍQf���f;E�u�+��j X�M�f9KwQS�u���@����t�E�@�E�k���8�@�E���u��*kM��U���<�@���@�@�EɊ�A�@�Eʊ�B�@�EȋM��U�kE���8�@t+�E��C�f��tj ��^f;�w
�����f��u�}��u��}�tQ�R�U��@��S����}�tQ��@��R���H�{��Nf���f;E�u�E�+���]̋���D��$��d@�˃�v�f;Ds�u��"t��'u���K�]��u�=@���}���3QR�-���3�f�q����}��E���3���@���1�ʍA�E�f���f;E�u�+M��QSR��@����t���@F��u�7�M��������@�뎀}���3��E��E�}Ћ��E���E��E��E�����M�jZ���W���5��tj Xf9u����u�}���t!;�t
���0r
��9w����u�tN��;������f�}��jh1@W��@����u
�ȉM��jh1@W��@����u3�A��jh1@W��@����ujY��jh1@W��@��j��t�h$1@W��@����uj��jh,1@W��@����uj�jh41@W��@����u8j띍E�P�M��i��tH�Mă������M̋EċD��f�LEЋM�A���jW�@�@��f�E�f��uf9U�~)jW�@�@�E��@�f��d}�lf�f�EЋE��uЋ]�����E����������]��M�S����u�G�t�3��@rjo�@�@�G�V�E����]�������O�u��M�PN���u88E�t[�M��A�E����
u
3�f��A�
;As%f��t �u����A�E��	�E����E���u���3��A�Gh����9]�u��Gh������}�3��U���E���MˍE�Wh@P�U�����u���@�}����"�������}��E���3���@���1�ʍA�E�f���f;E�u�+M��QSR��@����t���@F��u�7�M����&����@�3��A����jW�@�@�G	2��M�_^3�[��#���IPc@�`@�`@Ya@�`@�d@�`@#d@Pc@Pc@Pc@ad@�����̋�U����ˆM�SVW�0�E�j"Z���f��t����f;�t����ȋ�f��u�Mf���}�	�M�u3�S�@�@�M��S���f��tF�]��j"Xf;�u�}��Fu)j"Zf9u!��9s+f���f������f��u��3�f�����E9rjo�@�@2��3�f����E��E�0��_^[�������̋�U���8SVW�وU�jY3��]�}��M�U����t�C2��W�u�E�]��E�>�E�&�E�VW�E��P�U������u���@�]�u��	�C2�h�j�u�<�@��_^[�������̋�U���SVW3ۋ�SSjSjh�R�u�]��]����@�����u	�F�o�E��FPW�l�@��9]�uG���tB�E;0s;S�E�PV�uW�H�@��t9u�t
j&�@�@�
�E�X��E�0W�d�@���W�d�@jo�@�@2�_^[�������̋�U��SV��W����t<�f����j Zf;�t�y3�f���f;�u�+��f9TN�ugj"Z�Ef���\��3ۍQf���f;�u��7+��f��t<j Zf;�t��DO�j"f;�ZtÃ�\t�f;�uf;�u�Ej'Yf��j'Yf;�uf;�t�2�_^[]������̋�U���0�t�@3ʼnE��M���@S�]V�uW�} h��@�u�u�h\1@V�M�]܉}؉E��k�M���E��tB3�f9t;�E�3�P����M�t�E�PQPhd1@V�3���Qhp1@V�"��E�hx1@V�E�EYY�����$��l@��uh|1@V��E�YY��th�1@V��YCY���t	3�f9D�th�1@V�Y3�Yf��E��P3��9�����t�E�PWPh�1@V������3ɍZf���f;�u��E�+���;E�wWh�1@V�W��������‹ߋщU�f��tq�u��M�f�� r@�E������;�w2Wh�1@��@YY��t�ӉU���U�M�����M����f��u��uԋ}؅�u3����f��Jf;t�Z���f9u���+�W�Ph�1@V�
3���f9�<9EujX��E�h��@Ph�1@V�
������}�jY��f���#������t0��t$��t��t��u#�<.@���.@��.@���-@�	��-@�3�SPh2@V�
���Eԅ����K�}���M��ts�M�؋}���MЍG�;�v%�}ujX���h��@Ph2@V����3��h2@V�YY؋E�0h2@V��E����M�؃m�u��}؋]�h@V�~YY�M�W�uS�uV�z�,�7h$2@V�Y����7h82@��WhX2@��=�@�E�uh2@�hh2@jP��@��ht2@V�YY�M��3��M�f9���C���E���3ۅ�t�}ujYh��@Q�E�PV����h�2@V�YY�_j"Z��f;�uRh�2@V��_����Ph�2@V���C�_��f��u�h�2@V�tYCY�M�;]��y���h@V�ZYY��w�7h�2@�SPh�2@V�=���M�_^3�[�"����fj@�h@�h@fj@ek@zk@�k@�k@fj@fj@fj@ul@�����̋�U���0�e�3�S�]@�}VW�M�u=�}$�O�u�P�E�Eh��@HPh�2@S�
���~�}��}����}	��} ��}�E�}�E�H��3��MЉE�u�Vh��@Qh3@S�S
���@��ww�$�Zq@�03@�n�D3@�g�X3@�`�`3@�Y�l3@�R��3@�K��3@�D��3@�=��3@�6��3@�/��3@�(��3@�!��3@���3@��4@��04@��@4@Ph��@�u�hp4@S�	�wh��@�u�h�4@S�	�G��(�M��;���+ȉM3ɉM�9O���u�����u��}�Qh��@Vh�4@S�Z	�G����E��G���t+��t��t��t��5@���5@��\5@��(5@���4@Ph��@Vh�5@S�	�E����6@�����������tY��t%��t��t
�D8@��$8@��8@�z��X7@f��u�h7@�k3�Bf;�u��7@�\��uW��7@�P���6@f��u��6@�<3�Bf;�u4�7@�-��X6@f��u�d6@�3�Bf;�u��6@�
�86@�D6@Ph��@�u�hl8@S�$V�u�h��@Vh�8@S��E���(��������������������tQh��@Vhl9@S�������wh��@Vh89@S��O�W���U�����M؋��tI���F;E�rh��@�u�hX9@S�u�U���p��2h`9@S�_�U�����U��u��}�h@S�>�u�YY�b�w�wh��@Vh9@�F�w
�w�wh��@Vh�8@��w
�w�wh��@Vh�8@S������w
�wh��@Vh�8@S����h�9@S���E��YY�M�A�}�M�;H�C����u܋}��MЃ�F�}�u�;u��.����Vh��@�u�h�4@S�}��_^[�����m@�m@�m@�m@�m@�m@�m@�m@�m@�m@�m@�m@�m@�m@�m@�m@�����̋�U����t�@3ʼnE�SVWj_W�3�Sh@V�8�@�d�@�����	����j�KP��@P��@����t7�E�Pj����@P���@��t�E��M��U�+��E�A+�B�jPYjZ����ָ,@��@h�9@P�
��@�=|�@�L�@��@Y���\�@�+@Y��H�@@j��h`K@�X�@�|�@W��SPV�t�@�8�@��@��t#�V���@�й�9@��M�_^3�[����V���@�й�9@�2������̋�W������Sj[V����<
tF���u�R��+�Ph:@Wh@:@S�YP��P�@���
�@@�P�@��t2;�r.hL:@S��YP�kYYhp:@S��YP�WYY�P�@�>t�V���w���^[_�������P�@SVW�5L�@�ڋ�h�:@j�YP�����h�:@j�lYP��=X�@YYuh�:@j�NYP��YYh�:@j�9YP���P�@�=X�@YYu��:@�������\�@�����h@j�YP��P�@YYh�:@j��YP�lYYh�:@j����YP�U�P�@�=X�@YYu'�@;@���^���h@j�YP�%�P�@YY�H�@���6����=X�@u'��<@���!���h@j�]YP���P�@YY��th@j�>YP���P�@YYj�Ӌ��������̋�U��V��W����tG�5L�@h�=@j�YP����uWVj��YP�q��h@j��YP�[YY�5T�@��tj����@��j��@������̋�U��h�=@RQh�=@j�YP����u�u�uj�pYP���h@j�ZYP��YY]������̋�S��V��W�N�F��u�+�uPj�p�@P�h�@����t.VWVSjj�D�@;�t���@P�ӹ>@�3�f�w��_^[�j3ҹ�=@���������̋�U���EVWP���@�Ћ�Y��?���%�Sj[+�������+�t4H�����/t��0��@Y���@[_^]�3ҹ<>@���=p�@ui�=x�@u`�/t+��	���jh�>@P��@��@�������jmZ�\>@��/t��0��@Y�|�@�ji�ۃ=�@t	3ҹ�>@�P�/t*�/t%��	�����p�@�	�p����x�@�C���jhZ��>@���@�.���3�3����>@�����@��>@j�X���������̋�U��EP�u�u��@��]������̋�U��QSV��W����tk�����wc�E�P����x[�E�+�G��w��tE�z��*�e��E�Qh?@P�֋���M�+�K��y=z�u�M��t��M��t	�1��W�_^[�������̋�U��U��S�]VW�}SQ������&�M�‰}��E���t��u�?@�M3����t�W�����3�f����u3�f9�]���������#��W��|3��Z��E PQSW� �@����x
;�wt	����z�3�f�_�U�_�E���+ÉE�E���x4�M��t\��vW�}����vO�B�P��P�GP��E���6�]��t��tS�E��P�E���P3�P�!�E���y��z�u �}��M��t�9�M��t
��	��t3�f�_��^[�������̋�U��VW3����t
f99t����u�M����%���W���t��t+�1��9_^]������̋�U��3��Et
��u
��u���t�����v�W�]������̋�U��SV3�W��t(�u����+�t�f��t
f���O@��u��u��H��_�3�f�1����M^[��t���z�]������̋�U��Q�ESVW���U����t(�t!�M�E�K���+��M�3�f��E�U���M�t=R��VS�|����u�U�M��9�"��t4�U�C��M�x3�f�0����U��t�Et	3���9f�_^3�[�������̋�U���$�t�@3ʼnE��l�@�E�f�p�@f�E� ?@�E�f�$?@f�E�(?@S�E�f�,?@VWf�E�3��0?@G�E�f�4?@Wf�E��x�@Pd�03�S�p�d�@W�@�@�x�@Pd�0S�p�d�@W�4�@�x�@Pd�0S�p�d�@j^V�0�@�x�@Pd�0S�p�d�@V���@�x�@Pd�0S�p�d�@�
@�@�(�@���94�@�90�@�9��@������W�E�PQ�`�@����W�E�P�54�@�`�@����W�E�P�50�@�`�@����W�E�P�5��@�`�@����W�E�P�5(�@�`�@���tS�5@�@�h�@S��54�@�h�@S��50�@�h�@S��5��@�h�@S��5(�@�h�@S�
�x�@Pd�0S�p�d�@W�D�@�x�@Pd�0S�p�d�@V�,�@�x�@Pd�0S�p�d�@V�$�@�x�@Pd�0S�p�d�@V�<�@�x�@Pd�0S�p�d�@V�8�@�x�@Pd�0S�p�d�@� �@�D�@���f9,�@�Z9$�@�N98�@�B9<�@�6S�M�QP�`�@���"W�E�P�5,�@�`�@���	V�E�P�5$�@�`�@����V�E�P�5<�@�`�@����V�E�P�58�@�`�@����V�E�P�5 �@�`�@����S�5,�@�h�@S��5$�@�h�@j ^W�0�5$�@�h�@S� �5<�@�h�@W�0�5<�@�h�@S�%�58�@�h�@W�0�58�@�h�@S�#�5 �@�h�@W�0�5 �@�h�@�!��2��M�_^3�[�&	����������̋�SVWj��@_�F��0�t�@d�
0�XSj�q�d�@�Љ���@��tB�N��
��Jf�Z�F��B�F���BQPQ�t�@P�|�@��x�������r���2�_^[�������jh��@����E؋�e����j_f��t����f�� w���ȋ�f��u���j-Xf;�tf��+u�ƉE���
��j
[�e�j0Xf;�uB����xu�j[�E��'��ou�j[�E����bu
׋��E�����
f����3��E��A�f��	w����0� �A�f;E�w����7��A�f;E�w&����W;�s�M��u���������
f��u�j-Xf9E�u�ރe��E؉�M�1�E�������3�@Ëe��E�����2��M�d�
Y_^[��������j$h��@�
���E̋0�e����j[f��t����f�� w���ȋ�f��u���j-Xf;�tf��+u�‰E������E�
�e�j0Xf;�uK����xu��E��E��,��ou��E��E����bu�]��E�����f����3҉U�3��E��A�f��	w�Ƀ�0� �A�f;E�w�Ƀ�7��A�f;E�wO�Ƀ�W�M�;M�sA�}�u��e��E�e����у���‹׋M���E܋���U؉U���f��u�j-Xf9E�u�ڃ��߃e��Ẻ0�M��y�E�������3�@Ëe��E�����2��M�d�
Y_^[�������̋�U���SV�U��3҉M���W�]��~f���f;�u�+���4q����� t��	u;�tR�O�M���;�tF�jP�$�@YY�M���t"C���M�j�P�$�@YY�M���t;�u�����M�;�u��]�3�d�0�SR�p�d�@��u2��jSV���@��yd�0Vj�p���@��3ۉ}�9]�v;j
�E�PW���@����t'����@�APQj�jV�p�@��x�C;]�s�}��ŋ}�jW�\�@��x�jVjW�,�@��x��_^[�������̋�U���SV���E�3��u�W�u�f�!E�E�P�E�P�E�PQ���@�����}����M����3�3�f;A���E�PSQ�l�@�����M�3�G����@�:u%�A:Bu�A;Bu�BP�AP���@��u�M�G�� r��C9u�t�U��E�QP�E�PQ�����xC�u�Wh?@j�E�P�E�P�u�V�����x �u�M�C�A;��Y���9u���_^[��2�������̋�U��QQ�e��E�P�E�P�E�PQ���@��x �}�t�}�t�u�d�0j�p���@����������������Zj�8�@��P�԰@�
t�@��
x�@�YY�Ȱ@�
L�@���@�
@�@���=p�@uh �@�İ@Y��3�����������̡H�@h<�@�5D�@�<�@h0�@h,�@h(�@�ذ@���4�@�������jh؎@�3ۉ]�d��p���|�@��3���
��t;�u3�F���h����@��3�F95��@u
j�&Y�:9��@u,�5��@h�@h�@�YY��t�E����������5$�@95��@uh�@h�@�YY���@��u	3��|�@��=��@t#h��@� Y��tSjS�5��@����@��50�@�5,�@�5(�@������� �@�=8�@u6P��@�M���E�QP�YYËe�E� �@�=8�@uP�а@�=$�@u�̰@� �@�E������M�d�
Y_^[�������̋�U��V�u3�;usW��u�>��t
����@�׃�;ur�_^]������̸MZf9@uU�
<@��@PEuC��@�f;�t�f;�u(���@v3�9��@���t@v
3�9��@��3�������������������������;
t�@u��;���������������̋�U��E��8csm�u+�xu%�@= �t=!�t="�t=@�u���@3�]��������������h�@���@3��������%�@������jh��@��3ɋE��tK���tF�M��MZf9u2�P<��x+��s#‰E���PE����#��	3�@Ëe�3ɉM��E��������M�d�
Y_^[�������̋�U��j���@��t P�o�����t�H\jXf;�t
��u3�@]ËE]�������%ܰ@��������������������3��������������̋�U��E3�SVW�H<��A�Y�����t�}�p;�r	�H�;�r
B��(;�r�3�_^[]�����������̋�U��j�h�@h��@d�P��SVW�t�@1E�3�P�E�d��e��E�h@�����tT�E-@Ph@�P�������t:�@$���Ѓ��E������M�d�
Y_^[��]ËE�3Ɂ8�����Ëe��E�����3��M�d�
Y_^[��]��������������������̋�U��M�MZf9u�A<��8PEu�f9Hu�]�3�]������̋�U����e��e��t�@VW�N�@����;�t��ud�E�P�\�@�E�3E�E����@1E��`�@1E��X�@3E��M�3��E��E�P���@�E�3E�3E���;�t�5t�@u�O�@��ȉ
t�@��_�x�@^��������hh���@YY�������%��@��������h��@d�5�D$�l$�l$+�SVW�t�@1E�3�P�e�u��E��E������E��E�d�ËM�d�
Y__^[��]Q�������̋�U��u�u�u�uh��@ht�@�O��]������̋�U��j���@�u�T�@h	��P�@P�L�@]������̋�U���$�P�@�
L�@�H�@�D�@�5@�@�=<�@f�h�@f�
\�@f�8�@f�4�@f�%0�@f�-,�@��`�@�E�T�@�E�X�@�E�d�@��������@�X�@�\�@�P�@	��T�@�`�@jXk�ǀd�@jX���
t�@��d�@jX��
x�@��d�@jXk��
t�@�L�jX���
x�@�L�h@������������%��@�����������������̋�U����M���]�������%�@������̀�@s�� s����Ë�3������3�3��������%��@������%�@�����������`�@d�@��������������@�@�������������@��@�������������@��@������������@�@/@/@/@/@$/@,/@8-@H-@d-@�-@�-@�-@�-@�-@.@.@<.@
|.@
�.@	�.@?$�@$�@$�@$�@?0�@0�@?4�@4�@4�@4�@?8�@8�@8�@?<�@<�@<�@?,�@,�@,�@$�@?��@��@��@��@ �@?(�@(�@(�@(�@ �@8�@N�@���D                                                                                                                                 ��������z�h�X�D�2�"������ҶĶ�������t�X�H�.���� �.�@�L�Z�r���ֳ�������Ե��.�6�´������t�f�\�T�B�2�$�������������Ʒҷܷ����8���*�@�`�l�������ȸָ����"�:�X�l�~���������Թ����ܴ0�@�ȳ�8��8�������,��,���������z�h�X�D�2�"������ҶĶ�������t�X�H�.���� �.�@�L�Z�r���ֳ�������Ե��.�6�´������t�f�\�T�B�2�$�������������Ʒҷܷ����8���*�@�`�l�������ȸָ����"�:�X�l�~���������Թ����ܴ�RegQueryValueExW�RegOpenKeyWeRegCloseKeyADVAPI32.dlleGetLastErrorKERNEL32.dll�exitctolowert_XcptFilter�__p__commode_amsg_exit�__getmainargs�__set_app_type|_exit-_cexit�__p__fmode�__setusermatherr�_inittermmsvcrt.dll:?terminate@@YAXXZ@_controlfps_except_handler4_commonRtlCompareMemoryntdll.dll}RegDeleteValueWiRegConnectRegistryW�RegOpenKeyExW�RegSetValueExW�RegSetKeySecurity�RegEnumKeyExWnRegCreateKeyExWyRegDeleteKeyW�RegQueryInfoKeyW�IsTextUnicode�Sleep}SetUnhandledExceptionFilter|GetModuleHandleWXQueryPerformanceCounterGetCurrentProcessId GetCurrentThreadId�GetSystemTimeAsFileTimeGetTickCount�UnhandledExceptionFilterGetCurrentProcess�TerminateProcessReadFileUHeapFree>SetLastError�VirtualFree�VirtualAlloc�CreateFileW�MultiByteToWideChar�CloseHandleQHeapAllocOGetFileSize�GetProcessHeap�CopyFileWQGetFileTime�SetConsoleCtrlHandlerGetConsoleScreenBufferInfo�GetStdHandle�__iob_func_wcsicmpwcscpy_sAstrcpy_s{wcschr"_wcsnicmpjvfprintf�_isatty�_fileno�_stricmp�atoi�_vsnwprintf�iswctype�wcstoul�RtlSetDaclSecurityDescriptor�NtOpenKey�RtlFreeUnicodeString�NtLoadKeygRtlInitUnicodeString�RtlDosPathNameToNtPathName_UmNtFlushKeyNtClose�RtlAdjustPrivilege�RtlFormatCurrentUserKeyPath�NtUnloadKey�RtlNtStatusToDosErrorSRtlCreateSecurityDescriptor}RtlInitializeSid�RtlAllocateHeap�RtlSubAuthoritySid�RtlGetAce�RtlAddAce�RtlLengthSid�RtlLengthRequiredSid:RtlCopySid�RtlFreeHeap@RtlCreateAcl�RtlEqualSidRtlGetDaclSecurityDescriptormemmovememset �8�P�h�	�	�@�����<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!-- Copyright (c) Microsoft Corporation -->
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
    version="5.1.0.0"
    processorArchitecture="x86"
    name="Microsoft.Windows.RegIni"
    type="win32"
/>
<description>Registry Initializer</description>

<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
    <security>
        <requestedPrivileges>
            <requestedExecutionLevel
                level="asInvoker"
                uiAccess="false"
            />
        </requestedPrivileges>
    </security>
</trustInfo>
</assembly>

�4VS_VERSION_INFO��
|O
|O?�StringFileInfo�040904B0LCompanyNameMicrosoft CorporationRFileDescriptionRegistry Initializerh$FileVersion10.0.20348.1 (WinBuild.160101.0800)6InternalNameREGINI.EXE�.LegalCopyright� Microsoft Corporation. All rights reserved.>OriginalFilenameREGINI.EXEj%ProductNameMicrosoft� Windows� Operating System>
ProductVersion10.0.20348.1DVarFileInfo$Translation	�00D0H0P0X0�0�0�0�0@�b2�2�2�233`3s3�3T4h4�4�4�4�45(5p5�5�56 606U6�6�6�6�6?7J7Z7s7�7�7�78818S8�8�8�89u9�9�9�9::G:i:�:�:�:�:�:�:�:�:�:�:�:;+;/;3;7;;;?;C;G;K;a;�;�;�;�;�;�;<T<t<�<�<�<�<�<�<$=@=\=k=t==�=�=�=�=�=�=�=�=�=>/>^>c>q>v>�>�>�>�>�>�>�>�>�>???P�0000$0)03090k0x0~0�0�0�0�0�0�0�0�0	1H1N1^1d1�1�1�1�1�1�1222#232c2j2�2�2�23-3D3[3r3�3Z4b4�45H5T5d5m5}5�5�5�5.6Z6f6v66�6�6�6737:7}7�7
88'858N8d8�8�8�8�8�8�8�89:>@>o>�>�>?>?j?�?�?�?�?�?�?�?`T�01&141Q122'2.2A2H2[2b2p2w2�2�2�2�2�23z3M4s4�4�4�4�4�4�4�455
555555"5|5�5s6�6�6�67'7=7H7P7!8.8?8J8�8�8�8�8�8�8969j9�9�9:8:>:�:�:�:�:�:�:�:�:; ;C;h;};�;�;�;�;�;�;�;<<3<M<g<{<�<�<�<�<�<�<�<�<�<�<�<�<�<==h=n=�=�=�=�=�=�=�=�=�=�=�=�=�=�=�=�=�=�=>	>>>a>g>�>�>�>�>�>�>�>�>�>???"?1?=?G?Q?`?j?t?�?�?�?�?�?�?�?�?�?p�00D0L0b0�0�0�0�0�0�0�0�0�0�0<1D1Z1^1b1f1j1n1r1v1z1~1�1�1�1�1�1�1�1�1�1�1�122B2H2M2T2Z2_2e2n2r2{22�2�2�2�2�2�2�2�2�2�23!333<3B3O3c3x3�3�3�3�3�3�3�3	444&424F4M4b4x4~4�4�4�4�4�4�4�4�4�45-525^5t5�5�5�5�5�566.686@6W6y6�6�6�6�6�67
77(7;7A7M7W7w7�7�7�7�7�7�7�728�89x;�;�;�;�;�;�;�;�;�;�;�;�;<<<<(<.<?<E<K<\<b<g<u<�<�<�<�<�<�<�<�<�<=== =)=/=8=>=G=M=Z=`=m=~=�=�=�=�=�=�=�=�=�=�=�=�=�=�=>>>'>3>?>K>]>p>v>�>�>�>�>�>�>�>�>�>�>�>???!?'?0?6?C?I?R?X?e?k?t?z?�?�?�?�?�D0000�1|3�3�3�3�34 414L4\4�4�4�45G5�5�5�5�5�56
6666+63696Q6V6\6a6f6k6p6v6~6�6�6�6�6�6�6�6�677&7+787G7O7W7k7s7{7�7�7�7�7�7�7�7�7�7�7�7'8G8O8U8b8|8�8�8�8�891979F9S9�9:�:�:�:�:�:�:�;�;�;�;�;�;<<<5<D<Q<n<�<�<�<�<�<�<==#=)=/=5=<=C=J=Q=X=_=f=n=v=~=�=�=�=�=�=�=�=�=�=�=�=�=>>!>U>�>�>�>�>�>�>�>�>??,?0?�p0000 0(080D0P0\0h0t0�0�0�0�0�0�0�0�0111$101<1H1T1`1l1x1�1�1�1�1�1�1�1�1�1�1�122 2,282D2P2\2h2��1