프로젝트

일반

사용자정보

통계
| 개정판:

hytos / ID2Report.wxs @ e835aef5

이력 | 보기 | 이력해설 | 다운로드 (59.5 KB)

1 70131c95 gaqhf
<?xml version="1.0" encoding="UTF-8"?>
2
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
3 99b145b7 gaqhf
	<Product Id="*" Name="ID2Report" Language="1033" Version="{VERSION}" Manufacturer="DOFTECH(C)" UpgradeCode="233C5912-41E6-49D2-968C-C8759AFDEF7A">
4 70131c95 gaqhf
		<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />
5
6
		<MajorUpgrade Schedule="afterInstallInitialize" DowngradeErrorMessage="A newer version of [ProductName] is already installed. Setup will now exit." AllowSameVersionUpgrades="yes"/>
7
		<MediaTemplate EmbedCab="yes"/>
8
    
9
		<WixVariable Id="WixUILicenseRtf" Value="license.rtf" />
10
		<WixVariable Id="WixUIBannerBmp" Value="DOFTECH_LOGO.bmp" />
11
		
12
		<Feature Id="ProductFeature" Title="ID2Report" Level="1">
13
			<ComponentGroupRef Id="ID2Report" />
14
		</Feature>
15
	</Product>
16
17
	<Fragment>
18
		<Directory Id="TARGETDIR" Name="SourceDir">
19
			<Directory Id="DesktopFolder" Name="Desktop">
20
				<Component Id="DesktopShortcut" Guid="44D6BF99-8203-4DF8-A7F4-1FDC717A6B8C" Feature="ProductFeature">
21
				<RegistryValue Root="HKCU" Key="Software\DOFTECH\ID2Report" Name="installed" Type="integer" Value="1" KeyPath="yes"/>
22
				<Shortcut Id="DesktopShortcut"
23
				Directory="DesktopFolder"
24
				Name="ID2Report"
25
				Description="ID2 Report Program"
26
				Target="[INSTALLFOLDER]ID2Report.exe"
27
				WorkingDirectory="INSTALLFOLDER" />
28
				<RemoveFolder Id="DesktopFolder" On="uninstall"/>
29
				</Component>
30
			</Directory>
31
		  
32
			<Directory Id="ProgramFilesFolder">
33
				<Directory Id="COMPANYFOLDER" Name="DOFTECH">
34
					<Directory Id="INSTALLFOLDER" Name="ID2Report" />
35
				</Directory>  
36
			</Directory>
37
		</Directory>
38
    
39
		<Property Id="WIXUI_INSTALLDIR" Value="INSTALLFOLDER" />
40
		<UIRef Id="WixUI_InstallDir"/>
41
	</Fragment>
42
43
	<Fragment>
44
		<ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
45
		</ComponentGroup>
46
	</Fragment>
47
	
48
<Fragment>
49 6ae63a8c gaqhf
        <DirectoryRef Id="INSTALLFOLDER">
50 70131c95 gaqhf
            <Directory Id="dir4EA9A7BAF4DB1874A8959E7C612CAB27" Name="de" />
51
            <Directory Id="dirE33F77AF6C754562C3BFC7F596C7C385" Name="es" />
52
            <Directory Id="dir336673F87585AE78BE4622541CAE34CA" Name="ja" />
53
            <Directory Id="dirEA5D0794475A08BA33984CB7D7C09241" Name="ru" />
54
            <Directory Id="dirBD7868906CFFB145782803A9DAA3A1AF" Name="x64" />
55
            <Directory Id="dir978FC0AB94AB39BE3FFC81FB2D2BCCAF" Name="x86" />
56
        </DirectoryRef>
57
58
		<DirectoryRef Id="TARGETDIR">
59
			<Component Id="RegistryEntries" Guid="5376EB0F-AB87-42CB-9121-9D42770129D4">
60
				<RegistryKey Root="HKLM"
61
					Key="Software\DOFTECH\ID2Report"
62
					Action="createAndRemoveOnUninstall">
63
					<RegistryValue Type="string" Name="Path" Value="[INSTALLFOLDER]"/>
64
				</RegistryKey>
65
			</Component>
66
		</DirectoryRef>		
67
</Fragment>
68
69
    <Fragment>
70
        <ComponentGroup Id="ID2Report">
71 9d6c6999 gaqhf
                <ComponentRef Id="RegistryEntries" />
72 7dbf9472 gaqhf
            <Component Id="cmpa1da35c60dc54f57a4ffa0dd372e9e7c" Directory="INSTALLFOLDER" Guid="46b19321-21e0-429b-801b-9a8eff66c1a7">
73
              <File Id="fil8a8683c3edc9411fab821fd4e346dfbe" KeyPath="yes" Source=".\ID2 Report User Manual.pdf" />
74
            </Component>
75 a7bf57c9 gaqhf
            <Component Id="cmp9EA2EE03EA76F1DD002F593D1389539F" Directory="INSTALLFOLDER" Guid="440423CF-5267-4355-B6A6-7D7530435062">
76 70131c95 gaqhf
                <File Id="fil68CA1738507DC89A08D7A9C56C5FD861" KeyPath="yes" Source=".\Setup_Report\DevExpress.Charts.v18.2.Core.dll" />
77
            </Component>
78 a7bf57c9 gaqhf
            <Component Id="cmpD547FDDA6197AA5856EEAF81574BE6A8" Directory="INSTALLFOLDER" Guid="3E4EB183-F761-4394-98A0-B1FE03DD28D5">
79 70131c95 gaqhf
                <File Id="filE12034227F0C96B7DB4F1AF6D07A606A" KeyPath="yes" Source=".\Setup_Report\DevExpress.CodeParser.v18.2.dll" />
80
            </Component>
81 a7bf57c9 gaqhf
            <Component Id="cmp3DA1B28229F89E40F496A9C8BB3EADC8" Directory="INSTALLFOLDER" Guid="73E6D473-A30A-457C-9117-8FD0705B6B2E">
82 70131c95 gaqhf
                <File Id="filF2288E90DB54C6DBB170F2D0D75F2269" KeyPath="yes" Source=".\Setup_Report\DevExpress.Data.v18.2.dll" />
83
            </Component>
84 a7bf57c9 gaqhf
            <Component Id="cmp853DF8E9E7114D37E58E402924F2DB4C" Directory="INSTALLFOLDER" Guid="518489BB-EC2A-47B0-B6E1-203167AAFB49">
85 70131c95 gaqhf
                <File Id="filC9C9CE80A49045924F8164FB2569B84B" KeyPath="yes" Source=".\Setup_Report\DevExpress.Data.v18.2.xml" />
86
            </Component>
87 a7bf57c9 gaqhf
            <Component Id="cmpB8E6C101ED15E93F3BF32AE560BD9D73" Directory="INSTALLFOLDER" Guid="EC89FD22-EEA1-48A0-8E68-1A29C85B5892">
88 70131c95 gaqhf
                <File Id="filB48AE507508744B6D378A3F7C49B03DD" KeyPath="yes" Source=".\Setup_Report\DevExpress.DataAccess.v18.2.dll" />
89
            </Component>
90 a7bf57c9 gaqhf
            <Component Id="cmp997902FC7EB11F6ACD60B17394761CC0" Directory="INSTALLFOLDER" Guid="E4336A23-FD24-4F5E-98BE-C25DC4BBF010">
91 70131c95 gaqhf
                <File Id="fil8CC51B6AFDD2F11F14FD67CB4962C063" KeyPath="yes" Source=".\Setup_Report\DevExpress.DataAccess.v18.2.UI.dll" />
92
            </Component>
93 a7bf57c9 gaqhf
            <Component Id="cmp1CF050256684C46667AC9E0C87587840" Directory="INSTALLFOLDER" Guid="7EC2817B-9A41-4364-99D1-2DDAB2757D95">
94 70131c95 gaqhf
                <File Id="fil39A02F139826A512E6A42ED43EF5D436" KeyPath="yes" Source=".\Setup_Report\DevExpress.DataAccess.v18.2.UI.xml" />
95
            </Component>
96 a7bf57c9 gaqhf
            <Component Id="cmp715A9F8ADF33025B5083A01023DCA592" Directory="INSTALLFOLDER" Guid="6BD12D5A-3FD9-43E5-8A6A-E3164FE86AD9">
97 70131c95 gaqhf
                <File Id="filDD3E1DFB1C8F59F0EEC7AADA9C3FE569" KeyPath="yes" Source=".\Setup_Report\DevExpress.DataAccess.v18.2.xml" />
98
            </Component>
99 a7bf57c9 gaqhf
            <Component Id="cmpFC4B0209264B772BDEEB6AC9CE2E173F" Directory="INSTALLFOLDER" Guid="7A1595ED-70C2-4501-9785-C9D0F5539FB2">
100 70131c95 gaqhf
                <File Id="filAFEE7D4F7425CF4A87824F4FB7D3358F" KeyPath="yes" Source=".\Setup_Report\DevExpress.Diagram.v18.2.Core.dll" />
101
            </Component>
102 a7bf57c9 gaqhf
            <Component Id="cmp9578A74F22D754E039CC508B05D60694" Directory="INSTALLFOLDER" Guid="09391C7D-B4F1-47C1-BBC0-F12CFA0162DA">
103 70131c95 gaqhf
                <File Id="fil57EF3DE5A865F04EA44596AC6ABA4852" KeyPath="yes" Source=".\Setup_Report\DevExpress.Diagram.v18.2.Core.xml" />
104
            </Component>
105 a7bf57c9 gaqhf
            <Component Id="cmp0718A4ACDA836A73F0F34E30C052DE93" Directory="INSTALLFOLDER" Guid="40AB1E85-24C0-4203-AA6F-599DDB392FE7">
106 70131c95 gaqhf
                <File Id="fil2076BE846078DB4751807D16D7158ABE" KeyPath="yes" Source=".\Setup_Report\DevExpress.Dialogs.v18.2.Core.dll" />
107
            </Component>
108 a7bf57c9 gaqhf
            <Component Id="cmp6FF07B5C700FD1DF266FD552944C8B00" Directory="INSTALLFOLDER" Guid="0B8D5226-4887-455B-802E-1324022E7D45">
109 70131c95 gaqhf
                <File Id="fil734F0107797E9962B2D5E82F9358A3C2" KeyPath="yes" Source=".\Setup_Report\DevExpress.Images.v18.2.dll" />
110
            </Component>
111 a7bf57c9 gaqhf
            <Component Id="cmp89C470295C023D1AF10F778AD9D45CFC" Directory="INSTALLFOLDER" Guid="C5EF4C84-17D8-4893-BBEA-462D054D454A">
112 70131c95 gaqhf
                <File Id="filEF1DE832BFF4A04FA33ACA676D45BA6A" KeyPath="yes" Source=".\Setup_Report\DevExpress.Office.v18.2.Core.dll" />
113
            </Component>
114 a7bf57c9 gaqhf
            <Component Id="cmp83A941419E77A9FCF843D51E70FF5A80" Directory="INSTALLFOLDER" Guid="8C0217A6-813B-4C86-9138-8F4AB57F3880">
115 70131c95 gaqhf
                <File Id="fil3D140BF8C6C42B512C3EDF68E2E7BBCB" KeyPath="yes" Source=".\Setup_Report\DevExpress.Office.v18.2.Core.xml" />
116
            </Component>
117 a7bf57c9 gaqhf
            <Component Id="cmp4B8A6B806E73A95AF500A9E9E2633788" Directory="INSTALLFOLDER" Guid="4DC21EAD-15AF-4122-B3E5-8CDE69D8D3D6">
118 70131c95 gaqhf
                <File Id="fil30837974C7B8EA3A1369B77C530B4E53" KeyPath="yes" Source=".\Setup_Report\DevExpress.Pdf.v18.2.Core.dll" />
119
            </Component>
120 a7bf57c9 gaqhf
            <Component Id="cmp11BDE73352324D762558821A4819F12E" Directory="INSTALLFOLDER" Guid="816E7D14-D6D2-42D6-8F19-9AAD7938A147">
121 70131c95 gaqhf
                <File Id="filDCC0EC79D2498CB80750F3D3830D6F3B" KeyPath="yes" Source=".\Setup_Report\DevExpress.Pdf.v18.2.Core.xml" />
122
            </Component>
123 a7bf57c9 gaqhf
            <Component Id="cmp0CDBAB98CCB46070A77164BFC94F6008" Directory="INSTALLFOLDER" Guid="2A452D1E-44C1-49B6-8479-D755375B0CA0">
124 70131c95 gaqhf
                <File Id="fil5B581F7542318B3F03F50381B08B40F2" KeyPath="yes" Source=".\Setup_Report\DevExpress.PivotGrid.v18.2.Core.dll" />
125
            </Component>
126 a7bf57c9 gaqhf
            <Component Id="cmpAEF40121863127A9D01232DB14513C00" Directory="INSTALLFOLDER" Guid="660F86A7-FC12-4DC8-8E68-22D7256A6FA3">
127 70131c95 gaqhf
                <File Id="fil96DD55EE63AB472C3138EAE4A7373069" KeyPath="yes" Source=".\Setup_Report\DevExpress.PivotGrid.v18.2.Core.xml" />
128
            </Component>
129 a7bf57c9 gaqhf
            <Component Id="cmp49B2FCC27E6F3BB46A2B9A9EB19236EF" Directory="INSTALLFOLDER" Guid="8D2ADE28-AEE8-4493-BEFA-3D665BEE2804">
130 70131c95 gaqhf
                <File Id="fil2491A9B1462F05CFA1E0139C77A71656" KeyPath="yes" Source=".\Setup_Report\DevExpress.Printing.v18.2.Core.dll" />
131
            </Component>
132 a7bf57c9 gaqhf
            <Component Id="cmp5F785F7CF4317C2441899A61B4F083C8" Directory="INSTALLFOLDER" Guid="1D1AB433-3C09-411E-8ACD-6CAB6C95C6B1">
133 70131c95 gaqhf
                <File Id="fil2171595E734BDA9D0C753308112C33EF" KeyPath="yes" Source=".\Setup_Report\DevExpress.Printing.v18.2.Core.xml" />
134
            </Component>
135 a7bf57c9 gaqhf
            <Component Id="cmp2B04D54A88417C4D0D090D2C4626F3B9" Directory="INSTALLFOLDER" Guid="5D3B2267-E04A-48A7-8447-D23AFAE7A00E">
136 70131c95 gaqhf
                <File Id="fil4A816E054C4E91867E1461F57ECF60CC" KeyPath="yes" Source=".\Setup_Report\DevExpress.RichEdit.v18.2.Core.dll" />
137
            </Component>
138 a7bf57c9 gaqhf
            <Component Id="cmp5219969C8BE4C97D7FAD019EB37F1CA0" Directory="INSTALLFOLDER" Guid="B2989C9A-B18F-4984-A015-E0A9FC0272E0">
139 70131c95 gaqhf
                <File Id="filDD8BA0AACB1DC0F7A0E7DB911828C573" KeyPath="yes" Source=".\Setup_Report\DevExpress.RichEdit.v18.2.Core.xml" />
140
            </Component>
141 a7bf57c9 gaqhf
            <Component Id="cmp0CD3A5BF7441E076A5CFAC61680E8D13" Directory="INSTALLFOLDER" Guid="B2090CC1-3336-43C0-8B98-BAD28B72593E">
142 70131c95 gaqhf
                <File Id="fil0D0C2E7C565EEDB1F90B9282A64FDE77" KeyPath="yes" Source=".\Setup_Report\DevExpress.Sparkline.v18.2.Core.dll" />
143
            </Component>
144 a7bf57c9 gaqhf
            <Component Id="cmp18F902A35601D50F130FA5CA4974AF55" Directory="INSTALLFOLDER" Guid="E0ABEF61-53E8-4E70-9FC1-C39ADCBE4D12">
145 70131c95 gaqhf
                <File Id="filE7CAA750F6F3B3A97F93AB38CE64A26E" KeyPath="yes" Source=".\Setup_Report\DevExpress.Sparkline.v18.2.Core.xml" />
146
            </Component>
147 a7bf57c9 gaqhf
            <Component Id="cmp995589B40F3DB31206911FA91CA14CC6" Directory="INSTALLFOLDER" Guid="C0D8A733-ABC6-45E5-840B-D3EBE79C5331">
148 70131c95 gaqhf
                <File Id="filA0C7CA25A7F942CBF26E4EB9D02A9A61" KeyPath="yes" Source=".\Setup_Report\DevExpress.Spreadsheet.v18.2.Core.dll" />
149
            </Component>
150 a7bf57c9 gaqhf
            <Component Id="cmpA7FF6543F4A467B914A5C7D01656CC43" Directory="INSTALLFOLDER" Guid="FD0E9810-5B8A-42BC-B818-C69D37DA9F94">
151 70131c95 gaqhf
                <File Id="filCFDDD936B56A0280E1B2C68D72C3E28D" KeyPath="yes" Source=".\Setup_Report\DevExpress.Spreadsheet.v18.2.Core.xml" />
152
            </Component>
153 a7bf57c9 gaqhf
            <Component Id="cmpA4B9171FCA7738B2893B4C23EAB08541" Directory="INSTALLFOLDER" Guid="D8568014-9F81-4978-BAC0-A0FB7D8D850F">
154 70131c95 gaqhf
                <File Id="fil1A6D30FC4123B11C4D4DA47FAC99F9D8" KeyPath="yes" Source=".\Setup_Report\DevExpress.Utils.v18.2.dll" />
155
            </Component>
156 a7bf57c9 gaqhf
            <Component Id="cmpE0F55EB0B7F02EB2E74A8040B736E92A" Directory="INSTALLFOLDER" Guid="C68EB91E-7BF6-4FB0-8FE8-7D64E06D34A7">
157 70131c95 gaqhf
                <File Id="filB151E858EF094011C4A96FB7A8DFEA87" KeyPath="yes" Source=".\Setup_Report\DevExpress.Utils.v18.2.UI.dll" />
158
            </Component>
159 a7bf57c9 gaqhf
            <Component Id="cmpF20524BE14421591404A2A0DD14E7FEB" Directory="INSTALLFOLDER" Guid="1C0FBCF3-4E7B-48A7-85C1-168EAAC51681">
160 70131c95 gaqhf
                <File Id="filAAB25B78933EAC2B66080F6137F40071" KeyPath="yes" Source=".\Setup_Report\DevExpress.Utils.v18.2.UI.xml" />
161
            </Component>
162 a7bf57c9 gaqhf
            <Component Id="cmp30B743FB4CB2AA2211769061BA1C75A5" Directory="INSTALLFOLDER" Guid="9AB1C9A8-9B69-4EAC-BCED-A611EABD30F0">
163 70131c95 gaqhf
                <File Id="fil3ECF1203D110B3C00A16E10F54914990" KeyPath="yes" Source=".\Setup_Report\DevExpress.Utils.v18.2.xml" />
164
            </Component>
165 a7bf57c9 gaqhf
            <Component Id="cmpF5E84640AE7ED620FAFAA187839F0592" Directory="INSTALLFOLDER" Guid="F7EF85E0-E0F1-460D-B359-5C5C933952EF">
166 70131c95 gaqhf
                <File Id="fil09C3F9DC8F4C7807792CD26A6E37CD9F" KeyPath="yes" Source=".\Setup_Report\DevExpress.Xpo.v18.2.dll" />
167
            </Component>
168 a7bf57c9 gaqhf
            <Component Id="cmp84B5E1E9AEE2795F40200EF75A573156" Directory="INSTALLFOLDER" Guid="24796FAF-FC63-45FC-9232-E0BB9521C14A">
169 70131c95 gaqhf
                <File Id="fil3A438FE9D4C4C4503DDA9134C1CB6DB7" KeyPath="yes" Source=".\Setup_Report\DevExpress.Xpo.v18.2.xml" />
170
            </Component>
171 a7bf57c9 gaqhf
            <Component Id="cmp855F051D080498916E4090A39D0EBE34" Directory="INSTALLFOLDER" Guid="EB877B3C-DE28-4DEF-A720-A929BF77B178">
172 70131c95 gaqhf
                <File Id="fil195A2E86611C7C1EEAF3A12C2B71D9BE" KeyPath="yes" Source=".\Setup_Report\DevExpress.XtraBars.v18.2.dll" />
173
            </Component>
174 a7bf57c9 gaqhf
            <Component Id="cmpC97FABD752066B2B323E19F8A6E2E184" Directory="INSTALLFOLDER" Guid="B40B7E92-4E8E-4AEB-8155-561F8B272017">
175 70131c95 gaqhf
                <File Id="fil27F5D3C7B846E9CF3AB5BF4128C800CE" KeyPath="yes" Source=".\Setup_Report\DevExpress.XtraBars.v18.2.xml" />
176
            </Component>
177 a7bf57c9 gaqhf
            <Component Id="cmpBE7D22961E69DCE476A63B81F2FBE917" Directory="INSTALLFOLDER" Guid="9B3F79F7-408A-4305-B6A2-A66A29B4338F">
178 70131c95 gaqhf
                <File Id="filC2415CF286E4BEB8B559A249B8177458" KeyPath="yes" Source=".\Setup_Report\DevExpress.XtraCharts.v18.2.dll" />
179
            </Component>
180 a7bf57c9 gaqhf
            <Component Id="cmp96BE7CDB6D90661087A94B645865F57B" Directory="INSTALLFOLDER" Guid="6D55886F-9C2A-4322-BAEE-11106A0FBBE7">
181 70131c95 gaqhf
                <File Id="fil0D82A8C8235DCCC77A1FD5DE02EB2618" KeyPath="yes" Source=".\Setup_Report\DevExpress.XtraCharts.v18.2.xml" />
182
            </Component>
183 a7bf57c9 gaqhf
            <Component Id="cmp0EA2D5A79B3B50A6612B7FE06313BD31" Directory="INSTALLFOLDER" Guid="961193A3-0EA0-45D1-8B7C-6763C05BC132">
184 70131c95 gaqhf
                <File Id="filE8DBBD93CADE738F1FC68AEA1B2E9518" KeyPath="yes" Source=".\Setup_Report\DevExpress.XtraDiagram.v18.2.dll" />
185
            </Component>
186 a7bf57c9 gaqhf
            <Component Id="cmp92DF97B7B07C2FA50E5AED84F901719F" Directory="INSTALLFOLDER" Guid="5E4AE09A-5BAC-48C3-BDCC-7277F0CFCDC6">
187 70131c95 gaqhf
                <File Id="fil6CF4CCCDC64EFDD3807C67216826CE02" KeyPath="yes" Source=".\Setup_Report\DevExpress.XtraDiagram.v18.2.xml" />
188
            </Component>
189 a7bf57c9 gaqhf
            <Component Id="cmpB14D266EFB048A5B4DCAB11C9149F056" Directory="INSTALLFOLDER" Guid="C184F789-6754-4334-8A85-4D62120B7C7A">
190 70131c95 gaqhf
                <File Id="filB9F0A22D63F649371BAB5B43FF865717" KeyPath="yes" Source=".\Setup_Report\DevExpress.XtraDialogs.v18.2.dll" />
191
            </Component>
192 a7bf57c9 gaqhf
            <Component Id="cmpAF07F4EE51024FE47E88DDAB0D699B0A" Directory="INSTALLFOLDER" Guid="D59A98E7-68FC-44D7-8AE4-B1810F7CCB54">
193 70131c95 gaqhf
                <File Id="filFF1862A0CC00711F873B4A15B513E825" KeyPath="yes" Source=".\Setup_Report\DevExpress.XtraDialogs.v18.2.xml" />
194
            </Component>
195 a7bf57c9 gaqhf
            <Component Id="cmpEFB3B4A2B46CADE3B04ED1690FA0A7BF" Directory="INSTALLFOLDER" Guid="A6332B87-D4CA-448D-9B52-A045E97D5E20">
196 70131c95 gaqhf
                <File Id="filE1A8DB0EB9710AA8DC8BAE28C2DBF8C1" KeyPath="yes" Source=".\Setup_Report\DevExpress.XtraEditors.v18.2.dll" />
197
            </Component>
198 a7bf57c9 gaqhf
            <Component Id="cmpF7DBAE1E9133B49ABC699B781A2E7B70" Directory="INSTALLFOLDER" Guid="255404F7-BD2A-4C9B-9F01-67E8C41CD1EA">
199 70131c95 gaqhf
                <File Id="filF453A97E7CE8D6ACBC67EA531F082C19" KeyPath="yes" Source=".\Setup_Report\DevExpress.XtraEditors.v18.2.xml" />
200
            </Component>
201 a7bf57c9 gaqhf
            <Component Id="cmp828F6A0410F87A87FA1516D41AC97F22" Directory="INSTALLFOLDER" Guid="07420799-51EB-4A41-9981-C0304190AB3B">
202 70131c95 gaqhf
                <File Id="filB8EBEA9793F4549975AFB1071B258F6E" KeyPath="yes" Source=".\Setup_Report\DevExpress.XtraGrid.v18.2.dll" />
203
            </Component>
204 a7bf57c9 gaqhf
            <Component Id="cmp12AF461274B8D27D3982141A3C2F6B2D" Directory="INSTALLFOLDER" Guid="29A59E68-0D53-41F4-9A6B-586E7F800E29">
205 70131c95 gaqhf
                <File Id="fil99BB715A9909921CEDD72A612152CE45" KeyPath="yes" Source=".\Setup_Report\DevExpress.XtraGrid.v18.2.xml" />
206
            </Component>
207 a7bf57c9 gaqhf
            <Component Id="cmpD088E964EEE4CCF1A7A7E0AED88A7D58" Directory="INSTALLFOLDER" Guid="87A27F5F-5B71-4627-9F28-7F398E46D5D5">
208 70131c95 gaqhf
                <File Id="filC32AE45B4CC8D89B473EA6B4FE49969F" KeyPath="yes" Source=".\Setup_Report\DevExpress.XtraLayout.v18.2.dll" />
209
            </Component>
210 a7bf57c9 gaqhf
            <Component Id="cmp2147E41C7B0BEB3E3377E38F1410C32B" Directory="INSTALLFOLDER" Guid="8C216863-E36F-4698-A897-E3674A5F3EDE">
211 70131c95 gaqhf
                <File Id="fil5692F5F072FB347259AD0C3DAAE4C8E1" KeyPath="yes" Source=".\Setup_Report\DevExpress.XtraLayout.v18.2.xml" />
212
            </Component>
213 a7bf57c9 gaqhf
            <Component Id="cmp433A21132A884583853DC8925A4A066A" Directory="INSTALLFOLDER" Guid="E38B57E6-A978-429B-8BE7-35F6E768C55A">
214 70131c95 gaqhf
                <File Id="fil614D3D3DAE109B6EE95D0615768C4ABE" KeyPath="yes" Source=".\Setup_Report\DevExpress.XtraNavBar.v18.2.dll" />
215
            </Component>
216 a7bf57c9 gaqhf
            <Component Id="cmp4BDE3AB1666EFCFCCFE0A24A2695CE2B" Directory="INSTALLFOLDER" Guid="792315BF-8D7D-41CC-833E-0D7107246A8F">
217 70131c95 gaqhf
                <File Id="fil4B3F43845A5D07A309BB7DACB9F1DC95" KeyPath="yes" Source=".\Setup_Report\DevExpress.XtraNavBar.v18.2.xml" />
218
            </Component>
219 a7bf57c9 gaqhf
            <Component Id="cmp09C9A2C4078D80ECC3C9FC13B7ACF03B" Directory="INSTALLFOLDER" Guid="AC1AB86A-9C1C-478E-B313-DE0B947840B4">
220 70131c95 gaqhf
                <File Id="filA49776E1268CC734DA844C9CF7B9D84B" KeyPath="yes" Source=".\Setup_Report\DevExpress.XtraPivotGrid.v18.2.dll" />
221
            </Component>
222 a7bf57c9 gaqhf
            <Component Id="cmp1C7DEA7E2623FE4014A871C1D0C5B317" Directory="INSTALLFOLDER" Guid="9DBF8162-109D-42BF-8541-77DD56AD3C1C">
223 70131c95 gaqhf
                <File Id="filEF1FBCBC374EE88F5CE74A27DD362B53" KeyPath="yes" Source=".\Setup_Report\DevExpress.XtraPivotGrid.v18.2.xml" />
224
            </Component>
225 a7bf57c9 gaqhf
            <Component Id="cmp958CB69A7409302351D7F3E976393C42" Directory="INSTALLFOLDER" Guid="27C98F42-8499-4940-B97D-8C4591EE2173">
226 70131c95 gaqhf
                <File Id="filF7E7FF3282F29D71EC23C0EAB46D7F22" KeyPath="yes" Source=".\Setup_Report\DevExpress.XtraPrinting.v18.2.dll" />
227
            </Component>
228 a7bf57c9 gaqhf
            <Component Id="cmp64F1A028F742D41073E61EBBE49B3C90" Directory="INSTALLFOLDER" Guid="B8475D79-44A7-46FE-9E63-535519804A76">
229 70131c95 gaqhf
                <File Id="fil3D54FF037D471622ECF514E84AF01943" KeyPath="yes" Source=".\Setup_Report\DevExpress.XtraPrinting.v18.2.xml" />
230
            </Component>
231 a7bf57c9 gaqhf
            <Component Id="cmpF88529F6F9F623CE13B356CD8F96E588" Directory="INSTALLFOLDER" Guid="08EABC7C-05F4-41DE-9ABA-4E361C61D01C">
232 70131c95 gaqhf
                <File Id="fil90F9AA93C113C30E49643A8394188AB5" KeyPath="yes" Source=".\Setup_Report\DevExpress.XtraRichEdit.v18.2.dll" />
233
            </Component>
234 a7bf57c9 gaqhf
            <Component Id="cmpF199C557E625D500EBEE4311C6C6D20C" Directory="INSTALLFOLDER" Guid="0FDD0FA0-8513-4C42-A8E7-53C51FD4CB69">
235 70131c95 gaqhf
                <File Id="filB40407F414D876862B58EFE0CFF26E6B" KeyPath="yes" Source=".\Setup_Report\DevExpress.XtraRichEdit.v18.2.xml" />
236
            </Component>
237 a7bf57c9 gaqhf
            <Component Id="cmpF82AD67140FC37DF103F40CF8FF877C0" Directory="INSTALLFOLDER" Guid="137910AA-623E-4C13-8518-0D2E0B1CEFCB">
238 70131c95 gaqhf
                <File Id="filF9A6F60EB1414C3DE6A451440EA8AB07" KeyPath="yes" Source=".\Setup_Report\DevExpress.XtraSpreadsheet.v18.2.dll" />
239
            </Component>
240 a7bf57c9 gaqhf
            <Component Id="cmp42F3CA1D96D480EBBF615BB3275E3F52" Directory="INSTALLFOLDER" Guid="0D1C4DAA-81F8-4972-92B8-C1CDC96E4FF2">
241 70131c95 gaqhf
                <File Id="fil9B9A89FE16746FA2D086D6E624BB34B4" KeyPath="yes" Source=".\Setup_Report\DevExpress.XtraSpreadsheet.v18.2.xml" />
242
            </Component>
243 a7bf57c9 gaqhf
            <Component Id="cmp2117A0ECD538E11B8FDB02FBA398F8EA" Directory="INSTALLFOLDER" Guid="9D0FD195-FC30-4F65-BCE7-53A96C2D8500">
244 70131c95 gaqhf
                <File Id="fil8CB4394D19D8FA1879941BED85FE88BE" KeyPath="yes" Source=".\Setup_Report\DevExpress.XtraTreeList.v18.2.dll" />
245
            </Component>
246 a7bf57c9 gaqhf
            <Component Id="cmp6D92C01EAB4D55A6541FB43FEF6BD104" Directory="INSTALLFOLDER" Guid="3C1161F7-9E89-4B65-AC1C-FB2AF1AE3E26">
247 70131c95 gaqhf
                <File Id="filAB21C4F34B5E81218A8C060BD5D3E647" KeyPath="yes" Source=".\Setup_Report\DevExpress.XtraTreeList.v18.2.xml" />
248
            </Component>
249 a7bf57c9 gaqhf
            <Component Id="cmp389ACFC4409D38987FF8CACB02C98CC6" Directory="INSTALLFOLDER" Guid="6A804579-C8A4-4BE0-8101-6D578DB87D5C">
250 70131c95 gaqhf
                <File Id="fil0A5022B407688E50C56CB8F288187245" KeyPath="yes" Source=".\Setup_Report\DevExpress.XtraVerticalGrid.v18.2.dll" />
251
            </Component>
252 a7bf57c9 gaqhf
            <Component Id="cmp177B646BADB91FE2B51AD8DE4F38706D" Directory="INSTALLFOLDER" Guid="AEE07CF0-5F57-47FA-8A5B-94A6D2EAD1F8">
253 70131c95 gaqhf
                <File Id="filF1C3F1B1473F324A918DF0E0CD3AB572" KeyPath="yes" Source=".\Setup_Report\DevExpress.XtraVerticalGrid.v18.2.xml" />
254
            </Component>
255 a7bf57c9 gaqhf
            <Component Id="cmp7F6535FD2C4977A7A90245908563025B" Directory="INSTALLFOLDER" Guid="1E87BBC3-2098-4C36-A4F5-4419C3CFD037">
256 70131c95 gaqhf
                <File Id="fil130BEA1F590BFD07BDD0FCC495B1E15B" KeyPath="yes" Source=".\Setup_Report\EntityFramework.dll" />
257
            </Component>
258 a7bf57c9 gaqhf
            <Component Id="cmp7527258981B16A11C0B19741C19347EA" Directory="INSTALLFOLDER" Guid="45E9E51D-1C70-4FD7-A4E1-32F514D9EF09">
259 70131c95 gaqhf
                <File Id="filB95D26843721D7A4F47A261FDBFC2087" KeyPath="yes" Source=".\Setup_Report\EntityFramework.SqlServer.dll" />
260
            </Component>
261 a7bf57c9 gaqhf
            <Component Id="cmpCD4A5C22FF2F890350AEB4E7631531B0" Directory="INSTALLFOLDER" Guid="A6A7714E-AE14-4CAF-8DBB-A08DE1DE68A3">
262 70131c95 gaqhf
                <File Id="fil4465F844565AFFBA76374A25C97CE949" KeyPath="yes" Source=".\Setup_Report\EntityFramework.SqlServer.xml" />
263
            </Component>
264 a7bf57c9 gaqhf
            <Component Id="cmp88120A7009A89ED6CB4DC74F703F64E7" Directory="INSTALLFOLDER" Guid="D775E31A-5C63-419F-9846-BE7129E2DBCF">
265 70131c95 gaqhf
                <File Id="filF8716663589B482E31BFA524530B2D9A" KeyPath="yes" Source=".\Setup_Report\EntityFramework.xml" />
266
            </Component>
267 a7bf57c9 gaqhf
            <Component Id="cmp26CBCB960AE65A4BC041AA1E6D94401A" Directory="INSTALLFOLDER" Guid="40732E1A-32E8-403B-907F-106D30FE64AC">
268 70131c95 gaqhf
                <File Id="fil494E2C9D66E17B939553767A38902DAC" KeyPath="yes" Source=".\Setup_Report\Newtonsoft.Json.dll" />
269
            </Component>
270 a7bf57c9 gaqhf
            <Component Id="cmp050EEEBF536DBD2A912EF25B83095417" Directory="INSTALLFOLDER" Guid="C4B27160-4B76-407F-A2B9-C5BA227B20C2">
271 70131c95 gaqhf
                <File Id="filB816E594C71AB351503FE8E8CE7093F8" KeyPath="yes" Source=".\Setup_Report\Newtonsoft.Json.xml" />
272
            </Component>
273 a7bf57c9 gaqhf
            <Component Id="cmpA482656B58A9CE92C9905FCAD0B9E577" Directory="INSTALLFOLDER" Guid="87926D7B-6DF6-433D-B41C-78020E470426">
274 cd604fea gaqhf
                <File Id="fil4D12730C4F18EC28A4B8388080966F3F" KeyPath="yes" Source=".\Setup_Report\ID2Report.exe" />
275 70131c95 gaqhf
            </Component>
276 a7bf57c9 gaqhf
            <Component Id="cmp00C6484710F6CE22A99978AA2DC23B5A" Directory="INSTALLFOLDER" Guid="E0BB8EBB-0BDB-4117-813D-F76DD45200BB">
277 cd604fea gaqhf
                <File Id="fil1C79983AF372F86EA3C13CA4255EDA32" KeyPath="yes" Source=".\Setup_Report\ID2Report.exe.config" />
278 70131c95 gaqhf
            </Component>
279 a7bf57c9 gaqhf
            <Component Id="cmp9823F9D2D6DF492AF44A9B61288BB443" Directory="INSTALLFOLDER" Guid="F501318D-6977-417F-B22C-7ED6321F7CAD">
280 70131c95 gaqhf
                <File Id="fil18C1B493D200742F02D3CE74CC94DF74" KeyPath="yes" Source=".\Setup_Report\System.Data.SQLite.dll" />
281
            </Component>
282 a7bf57c9 gaqhf
            <Component Id="cmp93D188132428458C2BA0539EE07A31B1" Directory="INSTALLFOLDER" Guid="F8CC505A-74B1-473E-B809-A857F1FB8BC7">
283 70131c95 gaqhf
                <File Id="filBFE488C0248109EF7F672B568CD7852B" KeyPath="yes" Source=".\Setup_Report\System.Data.SQLite.EF6.dll" />
284
            </Component>
285 a7bf57c9 gaqhf
            <Component Id="cmp9657ED18B5F02733B5B7EA246E372B83" Directory="INSTALLFOLDER" Guid="727C6FC9-702E-4950-A270-D49F608C629D">
286 70131c95 gaqhf
                <File Id="fil65CAA19BD1A4BE7000DC6BEC566FAC8A" KeyPath="yes" Source=".\Setup_Report\System.Data.SQLite.Linq.dll" />
287
            </Component>
288 a7bf57c9 gaqhf
            <Component Id="cmpAFF44E995EA76ADC5E7D871241A2C2BB" Directory="INSTALLFOLDER" Guid="06B71F11-5B08-4133-A4A3-C1C48BFEA50A">
289 70131c95 gaqhf
                <File Id="fil6CAE60A7AF4DE3545AD320CBC8F448C2" KeyPath="yes" Source=".\Setup_Report\System.Data.SQLite.xml" />
290
            </Component>
291 a7bf57c9 gaqhf
            <Component Id="cmp69CFC3EBF973CDBC92A3BFD1BF7D3763" Directory="dir4EA9A7BAF4DB1874A8959E7C612CAB27" Guid="2A4A7C67-F92E-4CD2-ADCB-D52A0CB98C68">
292 70131c95 gaqhf
                <File Id="fil1D325309681B1B5C08D47F29699192E6" KeyPath="yes" Source=".\Setup_Report\de\DevExpress.Data.v18.2.resources.dll" />
293
            </Component>
294 a7bf57c9 gaqhf
            <Component Id="cmpD6B08FCCCCF512320F1D5ACF965FFC9F" Directory="dir4EA9A7BAF4DB1874A8959E7C612CAB27" Guid="7534E44A-0561-4939-BE0B-6DC6BAFB01AB">
295 70131c95 gaqhf
                <File Id="fil276A8729A79778A51CE59781603E0AFF" KeyPath="yes" Source=".\Setup_Report\de\DevExpress.DataAccess.v18.2.resources.dll" />
296
            </Component>
297 a7bf57c9 gaqhf
            <Component Id="cmpA1E9FF2DC79A2246C5A842E079A5D403" Directory="dir4EA9A7BAF4DB1874A8959E7C612CAB27" Guid="D1DC385D-BA40-4C70-A6C3-C1898F948CF2">
298 70131c95 gaqhf
                <File Id="fil9B2F9239941BBF372C57F06C96EDA539" KeyPath="yes" Source=".\Setup_Report\de\DevExpress.DataAccess.v18.2.UI.resources.dll" />
299
            </Component>
300 a7bf57c9 gaqhf
            <Component Id="cmp5F0464DE27DD6EFE3A8C695D608189AB" Directory="dir4EA9A7BAF4DB1874A8959E7C612CAB27" Guid="2B966733-BC7C-45FD-B342-509767B2D551">
301 70131c95 gaqhf
                <File Id="fil204743B209E977C29860589512AC4E93" KeyPath="yes" Source=".\Setup_Report\de\DevExpress.Diagram.v18.2.Core.resources.dll" />
302
            </Component>
303 a7bf57c9 gaqhf
            <Component Id="cmp131ED4896B5BB96DE148D6D1170EB5AE" Directory="dir4EA9A7BAF4DB1874A8959E7C612CAB27" Guid="A52F5DA2-4728-4808-A4CA-9FCFBF074C34">
304 70131c95 gaqhf
                <File Id="fil9C2B70F3089A9FA346A09D6D72C3ED52" KeyPath="yes" Source=".\Setup_Report\de\DevExpress.Dialogs.v18.2.Core.resources.dll" />
305
            </Component>
306 a7bf57c9 gaqhf
            <Component Id="cmpFCDF92D33670BF5A3894BAD2C5587701" Directory="dir4EA9A7BAF4DB1874A8959E7C612CAB27" Guid="41F5CFD1-3AA4-4C50-95F1-791BB8BFEA9D">
307 70131c95 gaqhf
                <File Id="fil4F6AE455FD6FFC6313E3919DDA04A92F" KeyPath="yes" Source=".\Setup_Report\de\DevExpress.Office.v18.2.Core.resources.dll" />
308
            </Component>
309 a7bf57c9 gaqhf
            <Component Id="cmp49D7CD358844200D04E092956C2E0AD3" Directory="dir4EA9A7BAF4DB1874A8959E7C612CAB27" Guid="DC9F5384-3204-48CB-A0C2-25A61C101257">
310 70131c95 gaqhf
                <File Id="filAACB239D2BBD98EB0CCD5CDC90CD109F" KeyPath="yes" Source=".\Setup_Report\de\DevExpress.Pdf.v18.2.Core.resources.dll" />
311
            </Component>
312 a7bf57c9 gaqhf
            <Component Id="cmp33AE4AC44A5BB059E0A4522F653DCBFE" Directory="dir4EA9A7BAF4DB1874A8959E7C612CAB27" Guid="5FD1074B-C3FE-4A32-9448-94D0587F9AFE">
313 70131c95 gaqhf
                <File Id="fil32591F1A0C3454090D6F81DD8256AC8F" KeyPath="yes" Source=".\Setup_Report\de\DevExpress.PivotGrid.v18.2.Core.resources.dll" />
314
            </Component>
315 a7bf57c9 gaqhf
            <Component Id="cmpAFB8ED1D725CC0AE16AE25145DA924B4" Directory="dir4EA9A7BAF4DB1874A8959E7C612CAB27" Guid="830B45A4-F628-4536-A699-EC62409A5D65">
316 70131c95 gaqhf
                <File Id="fil5A379EA9478E8635A31FFF427D7F0472" KeyPath="yes" Source=".\Setup_Report\de\DevExpress.Printing.v18.2.Core.resources.dll" />
317
            </Component>
318 a7bf57c9 gaqhf
            <Component Id="cmp52267E046ADD485A6732E15EAE6C3060" Directory="dir4EA9A7BAF4DB1874A8959E7C612CAB27" Guid="6DF7110F-C7EB-44F0-80B5-8217BC622C85">
319 70131c95 gaqhf
                <File Id="fil59C7147D71A28B666829B198869DEC5D" KeyPath="yes" Source=".\Setup_Report\de\DevExpress.RichEdit.v18.2.Core.resources.dll" />
320
            </Component>
321 a7bf57c9 gaqhf
            <Component Id="cmpDC8431D02B41854D960C74A2DDF3CC2D" Directory="dir4EA9A7BAF4DB1874A8959E7C612CAB27" Guid="EE416081-F238-4610-9188-A736305A9C75">
322 70131c95 gaqhf
                <File Id="fil22BF56CF892FC751022EFA2EFDDA1463" KeyPath="yes" Source=".\Setup_Report\de\DevExpress.Sparkline.v18.2.Core.resources.dll" />
323
            </Component>
324 a7bf57c9 gaqhf
            <Component Id="cmpD29A2480C25CF0C926CC4D0768202EDB" Directory="dir4EA9A7BAF4DB1874A8959E7C612CAB27" Guid="441B52C4-D2AC-4689-A878-B0A49299BFF9">
325 70131c95 gaqhf
                <File Id="fil748A0BC2A77DE3271440099F66DFB1E0" KeyPath="yes" Source=".\Setup_Report\de\DevExpress.Spreadsheet.v18.2.Core.resources.dll" />
326
            </Component>
327 a7bf57c9 gaqhf
            <Component Id="cmpAB51A618331426A82A866419ACC89710" Directory="dir4EA9A7BAF4DB1874A8959E7C612CAB27" Guid="FAEF0101-6139-449B-A9DD-B06DA1B024C9">
328 70131c95 gaqhf
                <File Id="fil9DB71491188D697830AFA4B9163F31E7" KeyPath="yes" Source=".\Setup_Report\de\DevExpress.Utils.v18.2.resources.dll" />
329
            </Component>
330 a7bf57c9 gaqhf
            <Component Id="cmp75BC8C2FFEF62D00821A627720DFE464" Directory="dir4EA9A7BAF4DB1874A8959E7C612CAB27" Guid="21F545F0-2204-4E9D-9D97-B09432122932">
331 70131c95 gaqhf
                <File Id="filB8CDA9FF29E11E39EFFEBD568FA1D715" KeyPath="yes" Source=".\Setup_Report\de\DevExpress.Utils.v18.2.UI.resources.dll" />
332
            </Component>
333 a7bf57c9 gaqhf
            <Component Id="cmp105D36FEA273D3F4D8D51C5052756CDE" Directory="dir4EA9A7BAF4DB1874A8959E7C612CAB27" Guid="47534941-2D15-4556-A6EF-8D698F077F85">
334 70131c95 gaqhf
                <File Id="filA126F81B4B8E7531739932053DD8AC0B" KeyPath="yes" Source=".\Setup_Report\de\DevExpress.Xpo.v18.2.resources.dll" />
335
            </Component>
336 a7bf57c9 gaqhf
            <Component Id="cmp186FAA4C8F91B7B29EA0BDB57A1F827E" Directory="dir4EA9A7BAF4DB1874A8959E7C612CAB27" Guid="18B457A6-F156-4A12-8D05-A1A77849F372">
337 70131c95 gaqhf
                <File Id="filC9D76D6C94621421CB20AA2DAF272949" KeyPath="yes" Source=".\Setup_Report\de\DevExpress.XtraBars.v18.2.resources.dll" />
338
            </Component>
339 a7bf57c9 gaqhf
            <Component Id="cmpDBA5BFB60D14A62F8EA8B0D9C3A8557E" Directory="dir4EA9A7BAF4DB1874A8959E7C612CAB27" Guid="D7B3F908-8504-475C-B394-C9AF189F4C76">
340 70131c95 gaqhf
                <File Id="fil621736A6276591F041D7419D4522B023" KeyPath="yes" Source=".\Setup_Report\de\DevExpress.XtraCharts.v18.2.resources.dll" />
341
            </Component>
342 a7bf57c9 gaqhf
            <Component Id="cmp291CC23CE9EECD5C678CFD51D9BFA89F" Directory="dir4EA9A7BAF4DB1874A8959E7C612CAB27" Guid="CA201C84-3E9A-4802-BE80-64EDF4029CBA">
343 70131c95 gaqhf
                <File Id="filD14489466814C57E5BDC0FC2E708D5F9" KeyPath="yes" Source=".\Setup_Report\de\DevExpress.XtraEditors.v18.2.resources.dll" />
344
            </Component>
345 a7bf57c9 gaqhf
            <Component Id="cmp3C0AC5F701CF98ECBDDECF4D39256B88" Directory="dir4EA9A7BAF4DB1874A8959E7C612CAB27" Guid="B5EF882E-1A2B-4FFA-B236-D0D353837600">
346 70131c95 gaqhf
                <File Id="filC24CE373624D8FE3314B1E9533ACF855" KeyPath="yes" Source=".\Setup_Report\de\DevExpress.XtraGrid.v18.2.resources.dll" />
347
            </Component>
348 a7bf57c9 gaqhf
            <Component Id="cmpCA40D536A1E52E66AB3EA11E672A3E99" Directory="dir4EA9A7BAF4DB1874A8959E7C612CAB27" Guid="BA74FF61-198C-471E-8778-35FBD59BEBFA">
349 70131c95 gaqhf
                <File Id="filA38F75E07B2896A62A1FB051122ACA64" KeyPath="yes" Source=".\Setup_Report\de\DevExpress.XtraLayout.v18.2.resources.dll" />
350
            </Component>
351 a7bf57c9 gaqhf
            <Component Id="cmpA13CF12C13EDCA9480F316202572E16D" Directory="dir4EA9A7BAF4DB1874A8959E7C612CAB27" Guid="6A65DFED-E173-483F-9F4C-D9390707C27C">
352 70131c95 gaqhf
                <File Id="fil4670ED1C1E6D9ABDB5C0490A33410044" KeyPath="yes" Source=".\Setup_Report\de\DevExpress.XtraNavBar.v18.2.resources.dll" />
353
            </Component>
354 a7bf57c9 gaqhf
            <Component Id="cmp43C61DFE890E49CC4DA03753404D2AF1" Directory="dir4EA9A7BAF4DB1874A8959E7C612CAB27" Guid="68D445AC-A15D-4E60-A517-91855F526CC8">
355 70131c95 gaqhf
                <File Id="fil87EF0EE4318BC14B0C669B674FB8019A" KeyPath="yes" Source=".\Setup_Report\de\DevExpress.XtraPivotGrid.v18.2.resources.dll" />
356
            </Component>
357 a7bf57c9 gaqhf
            <Component Id="cmpD90D51C9DEC5D48B9F38BE2AD81D77EE" Directory="dir4EA9A7BAF4DB1874A8959E7C612CAB27" Guid="A367215D-E6E1-4AC7-B374-B4A368BB43B4">
358 70131c95 gaqhf
                <File Id="fil1DE8F3F47B9C42E7213915970B14607C" KeyPath="yes" Source=".\Setup_Report\de\DevExpress.XtraPrinting.v18.2.resources.dll" />
359
            </Component>
360 a7bf57c9 gaqhf
            <Component Id="cmpC6CA551D4AD08AB419DF8E9BA2F5A46C" Directory="dir4EA9A7BAF4DB1874A8959E7C612CAB27" Guid="E40433CE-DA10-423B-8E85-0090B6E29EAB">
361 70131c95 gaqhf
                <File Id="fil41E79D9B85CE748E2E0516326FE8147C" KeyPath="yes" Source=".\Setup_Report\de\DevExpress.XtraRichEdit.v18.2.resources.dll" />
362
            </Component>
363 a7bf57c9 gaqhf
            <Component Id="cmpA782078B3D48023FF206340A24AFBE7E" Directory="dir4EA9A7BAF4DB1874A8959E7C612CAB27" Guid="4FC53B92-347D-42B5-A964-F8DBCB85119B">
364 70131c95 gaqhf
                <File Id="fil3FF407121666BFE4645FA452CA464ADC" KeyPath="yes" Source=".\Setup_Report\de\DevExpress.XtraSpreadsheet.v18.2.resources.dll" />
365
            </Component>
366 a7bf57c9 gaqhf
            <Component Id="cmp13B4237729737F0DC62D81ED9892667F" Directory="dir4EA9A7BAF4DB1874A8959E7C612CAB27" Guid="6722F7C6-1F4C-4DD5-BC6D-61533AA84EB9">
367 70131c95 gaqhf
                <File Id="fil01264F0C9DEADCC926C7815761F7EB49" KeyPath="yes" Source=".\Setup_Report\de\DevExpress.XtraTreeList.v18.2.resources.dll" />
368
            </Component>
369 a7bf57c9 gaqhf
            <Component Id="cmp007C9EEF08AD2E03C1E7AC1A6DAF9AE8" Directory="dir4EA9A7BAF4DB1874A8959E7C612CAB27" Guid="C0A548BC-9327-4A4F-AFB1-41A72EA7C495">
370 70131c95 gaqhf
                <File Id="filFE5CBE12BCA6F663772D031212F86305" KeyPath="yes" Source=".\Setup_Report\de\DevExpress.XtraVerticalGrid.v18.2.resources.dll" />
371
            </Component>
372 a7bf57c9 gaqhf
            <Component Id="cmp2A7513D15C2DC7AD1C721443F712F171" Directory="dirE33F77AF6C754562C3BFC7F596C7C385" Guid="1824948D-32F6-48C8-825F-00EC3BC8EBD8">
373 70131c95 gaqhf
                <File Id="fil00F50DAA5E50957721058F4F4E6F5AAD" KeyPath="yes" Source=".\Setup_Report\es\DevExpress.Data.v18.2.resources.dll" />
374
            </Component>
375 a7bf57c9 gaqhf
            <Component Id="cmpDFB78F41611F1E59AAE16C5966FF445D" Directory="dirE33F77AF6C754562C3BFC7F596C7C385" Guid="CC94122F-9329-4435-A5DC-982FCA51123D">
376 70131c95 gaqhf
                <File Id="fil1C19CB225455EFC410F1D20533544DE4" KeyPath="yes" Source=".\Setup_Report\es\DevExpress.DataAccess.v18.2.resources.dll" />
377
            </Component>
378 a7bf57c9 gaqhf
            <Component Id="cmpE92223CA7FFB4FA4C4385B10A97B8BD7" Directory="dirE33F77AF6C754562C3BFC7F596C7C385" Guid="4EF12E6F-631D-4973-8DCF-732402611D42">
379 70131c95 gaqhf
                <File Id="filD63A6C97D1E52DF465C29D0438D564AF" KeyPath="yes" Source=".\Setup_Report\es\DevExpress.DataAccess.v18.2.UI.resources.dll" />
380
            </Component>
381 a7bf57c9 gaqhf
            <Component Id="cmpFB9539A191CF5E7726C9357434CCB66D" Directory="dirE33F77AF6C754562C3BFC7F596C7C385" Guid="6C0DF7D6-009E-4E84-B9FD-D7AFD5E819B2">
382 70131c95 gaqhf
                <File Id="filE8D4B92B57A03AD953C89A852FF64165" KeyPath="yes" Source=".\Setup_Report\es\DevExpress.Diagram.v18.2.Core.resources.dll" />
383
            </Component>
384 a7bf57c9 gaqhf
            <Component Id="cmpF5866211E37D1FFCCC22F936AA7E8601" Directory="dirE33F77AF6C754562C3BFC7F596C7C385" Guid="2832310F-4A7C-4310-BF97-B6E492DDF723">
385 70131c95 gaqhf
                <File Id="fil5ACED2F3C00C762C791B66A7BDB65E31" KeyPath="yes" Source=".\Setup_Report\es\DevExpress.Dialogs.v18.2.Core.resources.dll" />
386
            </Component>
387 a7bf57c9 gaqhf
            <Component Id="cmp04294C4B3A3B3721D725C436FD7F9D99" Directory="dirE33F77AF6C754562C3BFC7F596C7C385" Guid="43F572FD-61AB-47D9-9774-D2D7A39D82BE">
388 70131c95 gaqhf
                <File Id="fil2A8C2FFF61843687878DD9E622AFD454" KeyPath="yes" Source=".\Setup_Report\es\DevExpress.Office.v18.2.Core.resources.dll" />
389
            </Component>
390 a7bf57c9 gaqhf
            <Component Id="cmp4C2B85858668C70D7602233669E2E0AE" Directory="dirE33F77AF6C754562C3BFC7F596C7C385" Guid="FB7D85F9-7660-4DD5-BEEA-61CB0DBE1B19">
391 70131c95 gaqhf
                <File Id="filC4BF0145CD2681F5809AE2B46A39399F" KeyPath="yes" Source=".\Setup_Report\es\DevExpress.Pdf.v18.2.Core.resources.dll" />
392
            </Component>
393 a7bf57c9 gaqhf
            <Component Id="cmp6C00D776A6A4A81B8541A48681F82029" Directory="dirE33F77AF6C754562C3BFC7F596C7C385" Guid="50CB2E83-D82E-43DF-B4A0-F46AFEB9205B">
394 70131c95 gaqhf
                <File Id="fil4ACF544B4FB0C9CF4F6D310D2D2B2827" KeyPath="yes" Source=".\Setup_Report\es\DevExpress.PivotGrid.v18.2.Core.resources.dll" />
395
            </Component>
396 a7bf57c9 gaqhf
            <Component Id="cmp543327C668F4DAD16BDE361452728703" Directory="dirE33F77AF6C754562C3BFC7F596C7C385" Guid="2C1DC4A5-E6E9-426D-9FA4-C849D0C4BB70">
397 70131c95 gaqhf
                <File Id="fil1DE31228000C1188818D418EB22925F4" KeyPath="yes" Source=".\Setup_Report\es\DevExpress.Printing.v18.2.Core.resources.dll" />
398
            </Component>
399 a7bf57c9 gaqhf
            <Component Id="cmpD160ACDE7CD5447FC12AB29A64E907BD" Directory="dirE33F77AF6C754562C3BFC7F596C7C385" Guid="F7B424E7-0C2C-48B9-B9E8-229050036153">
400 70131c95 gaqhf
                <File Id="fil8E139597DFDD0587182507800606B604" KeyPath="yes" Source=".\Setup_Report\es\DevExpress.RichEdit.v18.2.Core.resources.dll" />
401
            </Component>
402 a7bf57c9 gaqhf
            <Component Id="cmpFB1F2069F3C599264C3BA802E2E96B4D" Directory="dirE33F77AF6C754562C3BFC7F596C7C385" Guid="96672425-2E0D-4994-A525-642D67769685">
403 70131c95 gaqhf
                <File Id="fil389A3DE2EDAD9DAA18F8EEDA498F9913" KeyPath="yes" Source=".\Setup_Report\es\DevExpress.Sparkline.v18.2.Core.resources.dll" />
404
            </Component>
405 a7bf57c9 gaqhf
            <Component Id="cmp15A8DA05D5B4BF1CCB1BEA78E9B7EB58" Directory="dirE33F77AF6C754562C3BFC7F596C7C385" Guid="49022AEB-76A2-4521-804A-572668A9CDC8">
406 70131c95 gaqhf
                <File Id="filF9747FBDED76D6395E50D90CC7DDD805" KeyPath="yes" Source=".\Setup_Report\es\DevExpress.Spreadsheet.v18.2.Core.resources.dll" />
407
            </Component>
408 a7bf57c9 gaqhf
            <Component Id="cmp12E71353C03A0B21968B46F2C7E446AB" Directory="dirE33F77AF6C754562C3BFC7F596C7C385" Guid="2222A053-AF96-48B8-AF39-36E6C0A3141C">
409 70131c95 gaqhf
                <File Id="fil187694A1AB344512363795EF844AE297" KeyPath="yes" Source=".\Setup_Report\es\DevExpress.Utils.v18.2.resources.dll" />
410
            </Component>
411 a7bf57c9 gaqhf
            <Component Id="cmp52A413D8F635A0C7F0B2E5415F3D3FCD" Directory="dirE33F77AF6C754562C3BFC7F596C7C385" Guid="9E9C5A8D-2645-46F5-824A-219027F557A8">
412 70131c95 gaqhf
                <File Id="filB2BB56C69C0BB9411AAC7ED07CF7A9F3" KeyPath="yes" Source=".\Setup_Report\es\DevExpress.Utils.v18.2.UI.resources.dll" />
413
            </Component>
414 a7bf57c9 gaqhf
            <Component Id="cmp9A2AD3F142FC9549038CDC7279DBCD0C" Directory="dirE33F77AF6C754562C3BFC7F596C7C385" Guid="163533FB-3B65-4DCC-B1F4-D808C76FD40E">
415 70131c95 gaqhf
                <File Id="fil73E842EC02AA245F5A9F45D1591B7A67" KeyPath="yes" Source=".\Setup_Report\es\DevExpress.Xpo.v18.2.resources.dll" />
416
            </Component>
417 a7bf57c9 gaqhf
            <Component Id="cmp185397E2415A63E4100ADA7938BAD649" Directory="dirE33F77AF6C754562C3BFC7F596C7C385" Guid="90B2BCFB-433B-4A73-A1CC-E309262270B7">
418 70131c95 gaqhf
                <File Id="fil44F2A79AAACD9F12CA47D761B7CD02D4" KeyPath="yes" Source=".\Setup_Report\es\DevExpress.XtraBars.v18.2.resources.dll" />
419
            </Component>
420 a7bf57c9 gaqhf
            <Component Id="cmp176D8899BF5A22E50794B69458F060C4" Directory="dirE33F77AF6C754562C3BFC7F596C7C385" Guid="06A9D8CB-2CC2-4E99-927B-B53FC9A7855F">
421 70131c95 gaqhf
                <File Id="filFD644A25C59D1B519D0BA0DA9B2D7B9C" KeyPath="yes" Source=".\Setup_Report\es\DevExpress.XtraCharts.v18.2.resources.dll" />
422
            </Component>
423 a7bf57c9 gaqhf
            <Component Id="cmp86FD865ECAD2935E785FE3CC11B60774" Directory="dirE33F77AF6C754562C3BFC7F596C7C385" Guid="85E1E09C-39DE-4486-894C-18254A33E7FC">
424 70131c95 gaqhf
                <File Id="fil540BC019305C0D9D716ECBC2E189D4D3" KeyPath="yes" Source=".\Setup_Report\es\DevExpress.XtraEditors.v18.2.resources.dll" />
425
            </Component>
426 a7bf57c9 gaqhf
            <Component Id="cmpECBBC91C1F016804EC71C180E587B516" Directory="dirE33F77AF6C754562C3BFC7F596C7C385" Guid="B5809CA4-6BCE-4E08-8A60-0AA69310A88C">
427 70131c95 gaqhf
                <File Id="filD1B36B35A2DCD7ADFB377A1AA977B450" KeyPath="yes" Source=".\Setup_Report\es\DevExpress.XtraGrid.v18.2.resources.dll" />
428
            </Component>
429 a7bf57c9 gaqhf
            <Component Id="cmp05C168EE9E8FA07033976E94C8081B63" Directory="dirE33F77AF6C754562C3BFC7F596C7C385" Guid="06E27B3D-6D37-41CE-BB99-9B1394D591BC">
430 70131c95 gaqhf
                <File Id="fil99EB1322A98BAADEAF5500E4029943B5" KeyPath="yes" Source=".\Setup_Report\es\DevExpress.XtraLayout.v18.2.resources.dll" />
431
            </Component>
432 a7bf57c9 gaqhf
            <Component Id="cmpB54E587C1A87DEAA6418882E42367F8C" Directory="dirE33F77AF6C754562C3BFC7F596C7C385" Guid="6F00CC50-A48A-49D8-A8ED-0FB200C92BB0">
433 70131c95 gaqhf
                <File Id="filFC3B189F32EF461EE986DF92EA38AE1C" KeyPath="yes" Source=".\Setup_Report\es\DevExpress.XtraNavBar.v18.2.resources.dll" />
434
            </Component>
435 a7bf57c9 gaqhf
            <Component Id="cmpB23F06E723AC63BFB5F137DE282A2B0E" Directory="dirE33F77AF6C754562C3BFC7F596C7C385" Guid="8125C626-EB5B-4726-809A-636859A224DF">
436 70131c95 gaqhf
                <File Id="filFA0C731857D8CC96541B10CB3E55113E" KeyPath="yes" Source=".\Setup_Report\es\DevExpress.XtraPivotGrid.v18.2.resources.dll" />
437
            </Component>
438 a7bf57c9 gaqhf
            <Component Id="cmp78BB36AE405B332CB493BF657AF09173" Directory="dirE33F77AF6C754562C3BFC7F596C7C385" Guid="457B9223-A732-4EE7-BFED-D49FF9B95363">
439 70131c95 gaqhf
                <File Id="fil78AF885D5370042A8ED7D27386B127A6" KeyPath="yes" Source=".\Setup_Report\es\DevExpress.XtraPrinting.v18.2.resources.dll" />
440
            </Component>
441 a7bf57c9 gaqhf
            <Component Id="cmp27C023397533F3B95D903BABA49C2E50" Directory="dirE33F77AF6C754562C3BFC7F596C7C385" Guid="FA4D5811-2EF1-41D4-A121-133FDF3DAAC2">
442 70131c95 gaqhf
                <File Id="fil9550DB4D4D09789C7A76B8F4F3541B2E" KeyPath="yes" Source=".\Setup_Report\es\DevExpress.XtraRichEdit.v18.2.resources.dll" />
443
            </Component>
444 a7bf57c9 gaqhf
            <Component Id="cmp97F5AA71E2FEACABB1B46D4983874585" Directory="dirE33F77AF6C754562C3BFC7F596C7C385" Guid="64EC2269-0CA1-4BCC-AFD0-FC66338357BB">
445 70131c95 gaqhf
                <File Id="fil425C47B5AEDC5DE2BC2ADB91BD5FE1FD" KeyPath="yes" Source=".\Setup_Report\es\DevExpress.XtraSpreadsheet.v18.2.resources.dll" />
446
            </Component>
447 a7bf57c9 gaqhf
            <Component Id="cmp2C7B7C3D85C0A626EE4FE8994FE75C4D" Directory="dirE33F77AF6C754562C3BFC7F596C7C385" Guid="70FAD47A-8014-4A43-9782-490E77001A7B">
448 70131c95 gaqhf
                <File Id="fil8CB1FDCBB2AF604A4B3A46B72BE6CF55" KeyPath="yes" Source=".\Setup_Report\es\DevExpress.XtraTreeList.v18.2.resources.dll" />
449
            </Component>
450 a7bf57c9 gaqhf
            <Component Id="cmpF1125B986DC1A13FC11EC7CEC7D54B1E" Directory="dirE33F77AF6C754562C3BFC7F596C7C385" Guid="1B4C8DFA-195C-4B10-B964-619C8398AF01">
451 70131c95 gaqhf
                <File Id="filB9E605E326F29B3854F5C9E74D46F7D0" KeyPath="yes" Source=".\Setup_Report\es\DevExpress.XtraVerticalGrid.v18.2.resources.dll" />
452
            </Component>
453 a7bf57c9 gaqhf
            <Component Id="cmpAEE2F95EB021EAB0791DD5B9D01BD1A5" Directory="dir336673F87585AE78BE4622541CAE34CA" Guid="5BFE232D-D4DA-4CFD-85EE-CF49AAB58240">
454 70131c95 gaqhf
                <File Id="fil85C66D1EB45B17765A08DC8FD032EFDE" KeyPath="yes" Source=".\Setup_Report\ja\DevExpress.Data.v18.2.resources.dll" />
455
            </Component>
456 a7bf57c9 gaqhf
            <Component Id="cmp4F8174701048CD355F7C400694DF14C3" Directory="dir336673F87585AE78BE4622541CAE34CA" Guid="CA0E5211-E626-48C9-A2AF-519DE329D110">
457 70131c95 gaqhf
                <File Id="fil52F1F491740D3F34CAE3983FCFB498B7" KeyPath="yes" Source=".\Setup_Report\ja\DevExpress.DataAccess.v18.2.resources.dll" />
458
            </Component>
459 a7bf57c9 gaqhf
            <Component Id="cmpBC6977B0151E571BC2AA97EC4A2156D1" Directory="dir336673F87585AE78BE4622541CAE34CA" Guid="B23B2F62-AE85-4C26-8735-7089903BA3E2">
460 70131c95 gaqhf
                <File Id="fil11A9D2ECC43C2A95D1EE6BB108E25517" KeyPath="yes" Source=".\Setup_Report\ja\DevExpress.DataAccess.v18.2.UI.resources.dll" />
461
            </Component>
462 a7bf57c9 gaqhf
            <Component Id="cmp08A70D4FB493C53BC1B2609B8BA8CA4D" Directory="dir336673F87585AE78BE4622541CAE34CA" Guid="272EEA25-59D9-4D74-9A7F-BBA03745AEE2">
463 70131c95 gaqhf
                <File Id="fil1D276CEC0133CD3855B9F64C1AA1CABF" KeyPath="yes" Source=".\Setup_Report\ja\DevExpress.Diagram.v18.2.Core.resources.dll" />
464
            </Component>
465 a7bf57c9 gaqhf
            <Component Id="cmp3584CF46960BE10DA4E2B9CEC7C8612F" Directory="dir336673F87585AE78BE4622541CAE34CA" Guid="4EEEB526-64E9-494B-9806-5A8AC690F061">
466 70131c95 gaqhf
                <File Id="fil52D8BFCEBF0334AC561695E9861BF748" KeyPath="yes" Source=".\Setup_Report\ja\DevExpress.Dialogs.v18.2.Core.resources.dll" />
467
            </Component>
468 a7bf57c9 gaqhf
            <Component Id="cmp1FF4EBFFA69AFDC332C078A784F72137" Directory="dir336673F87585AE78BE4622541CAE34CA" Guid="AE07AF14-5B43-40B2-937E-308E9E857D5F">
469 70131c95 gaqhf
                <File Id="filD58600854BC3AE691FA93590732A32BB" KeyPath="yes" Source=".\Setup_Report\ja\DevExpress.Office.v18.2.Core.resources.dll" />
470
            </Component>
471 a7bf57c9 gaqhf
            <Component Id="cmp413EEF9A418D2AC32FC4DE1A13E337DA" Directory="dir336673F87585AE78BE4622541CAE34CA" Guid="48F24241-63CA-45DE-94B4-4189856AF61F">
472 70131c95 gaqhf
                <File Id="fil85234BB77ED3DDAF602276CDC85C484B" KeyPath="yes" Source=".\Setup_Report\ja\DevExpress.Pdf.v18.2.Core.resources.dll" />
473
            </Component>
474 a7bf57c9 gaqhf
            <Component Id="cmp2DC454E54F21BA2CCDFD4E45A73282C9" Directory="dir336673F87585AE78BE4622541CAE34CA" Guid="F73AFE0B-70F8-4996-A59D-2195A33E19A0">
475 70131c95 gaqhf
                <File Id="filD2548D3F756F97CCFFB675509482E5C6" KeyPath="yes" Source=".\Setup_Report\ja\DevExpress.PivotGrid.v18.2.Core.resources.dll" />
476
            </Component>
477 a7bf57c9 gaqhf
            <Component Id="cmpBBEA5E71B13909EB935EEA7789A96BB0" Directory="dir336673F87585AE78BE4622541CAE34CA" Guid="8977A783-2690-4E29-A6ED-B1646F6BDE5B">
478 70131c95 gaqhf
                <File Id="fil347F3A454B3373EAE5A35A1FF8CE7ADF" KeyPath="yes" Source=".\Setup_Report\ja\DevExpress.Printing.v18.2.Core.resources.dll" />
479
            </Component>
480 a7bf57c9 gaqhf
            <Component Id="cmp3E434A5D0DCEE99A19568318EA26292D" Directory="dir336673F87585AE78BE4622541CAE34CA" Guid="DB263DED-F645-43EB-A613-58DAF82453F4">
481 70131c95 gaqhf
                <File Id="fil89D0417016E5EE1CD345875A200390D3" KeyPath="yes" Source=".\Setup_Report\ja\DevExpress.RichEdit.v18.2.Core.resources.dll" />
482
            </Component>
483 a7bf57c9 gaqhf
            <Component Id="cmp9E434074A6C4DBB2052365BDB12EBC4B" Directory="dir336673F87585AE78BE4622541CAE34CA" Guid="C29A36BD-30F0-43EB-949C-3B3DA6191CBB">
484 70131c95 gaqhf
                <File Id="fil2AAA56BC30F8F74BB1ED836940448A0A" KeyPath="yes" Source=".\Setup_Report\ja\DevExpress.Sparkline.v18.2.Core.resources.dll" />
485
            </Component>
486 a7bf57c9 gaqhf
            <Component Id="cmpBBCCD5B175FF3B0E09759267940F96A1" Directory="dir336673F87585AE78BE4622541CAE34CA" Guid="0999D5A9-F208-4A24-92AB-2C9CDED27B17">
487 70131c95 gaqhf
                <File Id="filD67AFA5F845F52CA3455D6F08C67B062" KeyPath="yes" Source=".\Setup_Report\ja\DevExpress.Spreadsheet.v18.2.Core.resources.dll" />
488
            </Component>
489 a7bf57c9 gaqhf
            <Component Id="cmp0AAF724B60AE8C9E46DB4064D97CC606" Directory="dir336673F87585AE78BE4622541CAE34CA" Guid="68E14CE7-A069-4A1E-98E6-42FE6F6A74EA">
490 70131c95 gaqhf
                <File Id="fil2DC42F7C3162247E2745E359DA7B0DA7" KeyPath="yes" Source=".\Setup_Report\ja\DevExpress.Utils.v18.2.resources.dll" />
491
            </Component>
492 a7bf57c9 gaqhf
            <Component Id="cmp2329EE0225FD4E744A8EE0CE58A6DDCD" Directory="dir336673F87585AE78BE4622541CAE34CA" Guid="A2CB962B-ABF9-4866-93CE-765AF9ED5F66">
493 70131c95 gaqhf
                <File Id="filA2D5F9212D3BC7DE6CC8149DA6DAA8EA" KeyPath="yes" Source=".\Setup_Report\ja\DevExpress.Utils.v18.2.UI.resources.dll" />
494
            </Component>
495 a7bf57c9 gaqhf
            <Component Id="cmp822FA2B34FFC3E99BD70E5E2BB678BAF" Directory="dir336673F87585AE78BE4622541CAE34CA" Guid="C08D88A5-C75D-4528-9E34-FF447B5BA7F3">
496 70131c95 gaqhf
                <File Id="fil2C970D963866D4F723BB0761E117E7B1" KeyPath="yes" Source=".\Setup_Report\ja\DevExpress.Xpo.v18.2.resources.dll" />
497
            </Component>
498 a7bf57c9 gaqhf
            <Component Id="cmp243FA49092BD62E311DFC6E316734727" Directory="dir336673F87585AE78BE4622541CAE34CA" Guid="B4791847-5146-4C98-BB0C-18D54B3545A2">
499 70131c95 gaqhf
                <File Id="fil8475133F4BF31815D45C4F4DBD2F599B" KeyPath="yes" Source=".\Setup_Report\ja\DevExpress.XtraBars.v18.2.resources.dll" />
500
            </Component>
501 a7bf57c9 gaqhf
            <Component Id="cmp4E07B91C23A5BDBA899A94A29BCB0BC2" Directory="dir336673F87585AE78BE4622541CAE34CA" Guid="E4C94A16-C342-40FD-A7B9-C0CEB8FECAD7">
502 70131c95 gaqhf
                <File Id="fil43C3B213E7B6F8BF17505D1FC8DBD61D" KeyPath="yes" Source=".\Setup_Report\ja\DevExpress.XtraCharts.v18.2.resources.dll" />
503
            </Component>
504 a7bf57c9 gaqhf
            <Component Id="cmpE841F17E51EDD6B7B347A947FD69A580" Directory="dir336673F87585AE78BE4622541CAE34CA" Guid="5CF66258-6072-4501-8D4D-3EC7D570F044">
505 70131c95 gaqhf
                <File Id="filD330135CFF9EE2AFD47180DCFCD6C4B8" KeyPath="yes" Source=".\Setup_Report\ja\DevExpress.XtraEditors.v18.2.resources.dll" />
506
            </Component>
507 a7bf57c9 gaqhf
            <Component Id="cmp7717117FFE7A24A0A916466B9A3C42C8" Directory="dir336673F87585AE78BE4622541CAE34CA" Guid="8F28FDE4-E0EE-4F31-8D9C-8D6F354DDF52">
508 70131c95 gaqhf
                <File Id="fil9E460D1B28B5B8D6A7EBBF830B83B77B" KeyPath="yes" Source=".\Setup_Report\ja\DevExpress.XtraGrid.v18.2.resources.dll" />
509
            </Component>
510 a7bf57c9 gaqhf
            <Component Id="cmpA2D695016620BECADCA6F4DE7ECDEEF0" Directory="dir336673F87585AE78BE4622541CAE34CA" Guid="FBF811FF-E0EB-45D4-8A97-685247D1CCA8">
511 70131c95 gaqhf
                <File Id="filC2CE94228B077A3776C19D01AF85AF1F" KeyPath="yes" Source=".\Setup_Report\ja\DevExpress.XtraLayout.v18.2.resources.dll" />
512
            </Component>
513 a7bf57c9 gaqhf
            <Component Id="cmp47F52C830805A058F86513B03E41DDA0" Directory="dir336673F87585AE78BE4622541CAE34CA" Guid="452E4121-5E3B-43DD-9B58-43B3357227AF">
514 70131c95 gaqhf
                <File Id="filE7F1C0FD76C01B08F89658388286AFC8" KeyPath="yes" Source=".\Setup_Report\ja\DevExpress.XtraNavBar.v18.2.resources.dll" />
515
            </Component>
516 a7bf57c9 gaqhf
            <Component Id="cmpE08588C6A34813129E91CB988D71CC15" Directory="dir336673F87585AE78BE4622541CAE34CA" Guid="30E357DC-5A30-47AC-9D3D-86541AF0D5D1">
517 70131c95 gaqhf
                <File Id="filBBD156955D3A76921E79F554B671029E" KeyPath="yes" Source=".\Setup_Report\ja\DevExpress.XtraPivotGrid.v18.2.resources.dll" />
518
            </Component>
519 a7bf57c9 gaqhf
            <Component Id="cmpA4CA1F1E568E90F7C5A21583B3C8026E" Directory="dir336673F87585AE78BE4622541CAE34CA" Guid="DEEFD1D9-B3EF-42AA-8790-4B3D9AE00D5F">
520 70131c95 gaqhf
                <File Id="fil497B88F72B4BD0F2E6A29A43149226FE" KeyPath="yes" Source=".\Setup_Report\ja\DevExpress.XtraPrinting.v18.2.resources.dll" />
521
            </Component>
522 a7bf57c9 gaqhf
            <Component Id="cmp64D94F1E2EECA3C281957903B850962E" Directory="dir336673F87585AE78BE4622541CAE34CA" Guid="1D0FE6FE-661C-4ECF-AB20-C9EF35B0D825">
523 70131c95 gaqhf
                <File Id="fil3EA433C0C038E3817755161FA49514D2" KeyPath="yes" Source=".\Setup_Report\ja\DevExpress.XtraRichEdit.v18.2.resources.dll" />
524
            </Component>
525 a7bf57c9 gaqhf
            <Component Id="cmp6747991B72E2586BD20EB1BB09295049" Directory="dir336673F87585AE78BE4622541CAE34CA" Guid="7780A042-549E-437E-A790-4E2D6FEEDD25">
526 70131c95 gaqhf
                <File Id="fil31C1BF251BB7BF23CDFBF6A588D98B60" KeyPath="yes" Source=".\Setup_Report\ja\DevExpress.XtraSpreadsheet.v18.2.resources.dll" />
527
            </Component>
528 a7bf57c9 gaqhf
            <Component Id="cmpD1C23B699F23046E50DA637057E2997C" Directory="dir336673F87585AE78BE4622541CAE34CA" Guid="560B4E93-FA5D-4243-98EF-70439276F582">
529 70131c95 gaqhf
                <File Id="fil85CF95F609852FFAEA5138E6595987B4" KeyPath="yes" Source=".\Setup_Report\ja\DevExpress.XtraTreeList.v18.2.resources.dll" />
530
            </Component>
531 a7bf57c9 gaqhf
            <Component Id="cmpF56FEAFEB345EC8F3DBDD260FBE59D1C" Directory="dir336673F87585AE78BE4622541CAE34CA" Guid="53FCD325-C20A-4924-8D47-DD22C08BBD6D">
532 70131c95 gaqhf
                <File Id="filEC3096A443231176A6BBEDED2BFE77CE" KeyPath="yes" Source=".\Setup_Report\ja\DevExpress.XtraVerticalGrid.v18.2.resources.dll" />
533
            </Component>
534 a7bf57c9 gaqhf
            <Component Id="cmp1CB226867317F957FDC0EECFF0122E7D" Directory="dirEA5D0794475A08BA33984CB7D7C09241" Guid="2AA6849D-3F84-48ED-9290-CDCAED381588">
535 70131c95 gaqhf
                <File Id="fil7E567F358B3B1877835E6BD095C88075" KeyPath="yes" Source=".\Setup_Report\ru\DevExpress.Data.v18.2.resources.dll" />
536
            </Component>
537 a7bf57c9 gaqhf
            <Component Id="cmpB7BE90976FED399E50FB78BA3910CD8A" Directory="dirEA5D0794475A08BA33984CB7D7C09241" Guid="F931891E-35F6-4C96-B721-4A2C8E4E2081">
538 70131c95 gaqhf
                <File Id="filAA9E2B07A6C1CADE04C69B41E7D453F9" KeyPath="yes" Source=".\Setup_Report\ru\DevExpress.DataAccess.v18.2.resources.dll" />
539
            </Component>
540 a7bf57c9 gaqhf
            <Component Id="cmpD902027E94C43886F5E018A461AF3313" Directory="dirEA5D0794475A08BA33984CB7D7C09241" Guid="E1369BE9-15E1-4BFE-B5B6-0D7B39FF2A93">
541 70131c95 gaqhf
                <File Id="fil516B78657E781BD7270B5FBEB2FEFBB0" KeyPath="yes" Source=".\Setup_Report\ru\DevExpress.DataAccess.v18.2.UI.resources.dll" />
542
            </Component>
543 a7bf57c9 gaqhf
            <Component Id="cmpD90AA742D4F710D140D99FA1047B578E" Directory="dirEA5D0794475A08BA33984CB7D7C09241" Guid="C8FD4075-C5DD-4177-B421-D8FAC0E755F8">
544 70131c95 gaqhf
                <File Id="fil7D93E05A6D738F41A2ED2EA99AE1905B" KeyPath="yes" Source=".\Setup_Report\ru\DevExpress.Diagram.v18.2.Core.resources.dll" />
545
            </Component>
546 a7bf57c9 gaqhf
            <Component Id="cmpE443825F5FB30F6F93FC99D89A405590" Directory="dirEA5D0794475A08BA33984CB7D7C09241" Guid="696D46B9-ACF2-473C-8874-CF4EE04B4A5E">
547 70131c95 gaqhf
                <File Id="fil14B2735EA1E3E4536467EDC6E7D9EE7F" KeyPath="yes" Source=".\Setup_Report\ru\DevExpress.Dialogs.v18.2.Core.resources.dll" />
548
            </Component>
549 a7bf57c9 gaqhf
            <Component Id="cmp0C7DBA0E2FFCEB0D7FDAAC5313E6769A" Directory="dirEA5D0794475A08BA33984CB7D7C09241" Guid="A8C2ABD3-55CA-4E05-8F43-9A4D24B2BA0F">
550 70131c95 gaqhf
                <File Id="fil2E3B9772B6E038D36BB20F19FB2DB70C" KeyPath="yes" Source=".\Setup_Report\ru\DevExpress.Office.v18.2.Core.resources.dll" />
551
            </Component>
552 a7bf57c9 gaqhf
            <Component Id="cmp9BAE6D204F200C3C31F60363A7331C68" Directory="dirEA5D0794475A08BA33984CB7D7C09241" Guid="8C594C7E-A6D9-4F64-A21D-226DCD5DF9C3">
553 70131c95 gaqhf
                <File Id="filC46358458AC13CC3F9AFDB32DD114968" KeyPath="yes" Source=".\Setup_Report\ru\DevExpress.Pdf.v18.2.Core.resources.dll" />
554
            </Component>
555 a7bf57c9 gaqhf
            <Component Id="cmp68D30C34C61D48E7BCEE21BFE5BCD5B6" Directory="dirEA5D0794475A08BA33984CB7D7C09241" Guid="AB115C34-AC64-4F12-B7DE-D435C2CD3CB9">
556 70131c95 gaqhf
                <File Id="fil61117F0B423733A4D9CDDC11B24EE8F6" KeyPath="yes" Source=".\Setup_Report\ru\DevExpress.PivotGrid.v18.2.Core.resources.dll" />
557
            </Component>
558 a7bf57c9 gaqhf
            <Component Id="cmp63E0D9F318829197170210DB4E349F81" Directory="dirEA5D0794475A08BA33984CB7D7C09241" Guid="3FEA3A0B-9B48-4DFB-9915-67D5980618C0">
559 70131c95 gaqhf
                <File Id="filA47D846B2E775271CAE117C307BD5C69" KeyPath="yes" Source=".\Setup_Report\ru\DevExpress.Printing.v18.2.Core.resources.dll" />
560
            </Component>
561 a7bf57c9 gaqhf
            <Component Id="cmpA99AD0AECFB2B8117E185A9022A46FE7" Directory="dirEA5D0794475A08BA33984CB7D7C09241" Guid="FDBB85C6-22A6-4027-9F4B-79DD6697F4E7">
562 70131c95 gaqhf
                <File Id="fil4DB5F0253B4B3AD2C0D1488813E6791B" KeyPath="yes" Source=".\Setup_Report\ru\DevExpress.RichEdit.v18.2.Core.resources.dll" />
563
            </Component>
564 a7bf57c9 gaqhf
            <Component Id="cmpCF92EEF6ABEFA9B3491CFD7606502101" Directory="dirEA5D0794475A08BA33984CB7D7C09241" Guid="95DB7547-C4F0-426C-956F-7A4ACDB684AD">
565 70131c95 gaqhf
                <File Id="filA8D596F66A24CAF96455953E648E2DF3" KeyPath="yes" Source=".\Setup_Report\ru\DevExpress.Sparkline.v18.2.Core.resources.dll" />
566
            </Component>
567 a7bf57c9 gaqhf
            <Component Id="cmp69C903DA8959F2E84D9FA6A58C9D8547" Directory="dirEA5D0794475A08BA33984CB7D7C09241" Guid="6E86BE66-7028-4B51-B96A-CFF0A5906A27">
568 70131c95 gaqhf
                <File Id="fil18677F0A0CCBFF4B0E288BFCD7A07063" KeyPath="yes" Source=".\Setup_Report\ru\DevExpress.Spreadsheet.v18.2.Core.resources.dll" />
569
            </Component>
570 a7bf57c9 gaqhf
            <Component Id="cmp89E12E3430C399C01E38D17647532601" Directory="dirEA5D0794475A08BA33984CB7D7C09241" Guid="31B47A80-E4FD-446D-985D-1AC71720965C">
571 70131c95 gaqhf
                <File Id="filF12850792CFBD8151BCE397721043599" KeyPath="yes" Source=".\Setup_Report\ru\DevExpress.Utils.v18.2.resources.dll" />
572
            </Component>
573 a7bf57c9 gaqhf
            <Component Id="cmpA6C9EAE007CF464D6F1E2AA8CAE825D2" Directory="dirEA5D0794475A08BA33984CB7D7C09241" Guid="61DDE345-DEB9-4136-9570-21CAC32BB90C">
574 70131c95 gaqhf
                <File Id="fil75DC80E27A08EE455FC6EE245E1263FD" KeyPath="yes" Source=".\Setup_Report\ru\DevExpress.Utils.v18.2.UI.resources.dll" />
575
            </Component>
576 a7bf57c9 gaqhf
            <Component Id="cmpBF730F2B5D3A47BAD267F3EE8533403D" Directory="dirEA5D0794475A08BA33984CB7D7C09241" Guid="FFCA534E-9F09-4F20-A423-406D94D7B3CB">
577 70131c95 gaqhf
                <File Id="fil82A9E2E1C8B511324F66D9A626999551" KeyPath="yes" Source=".\Setup_Report\ru\DevExpress.Xpo.v18.2.resources.dll" />
578
            </Component>
579 a7bf57c9 gaqhf
            <Component Id="cmpA0832AA4C1EC4A5C50E0B4DBF8325F9C" Directory="dirEA5D0794475A08BA33984CB7D7C09241" Guid="0510EC0D-25DA-4C2B-8C7D-53ECB46CA29D">
580 70131c95 gaqhf
                <File Id="filF77AC845EE6C15F47F6EC6C7B247880C" KeyPath="yes" Source=".\Setup_Report\ru\DevExpress.XtraBars.v18.2.resources.dll" />
581
            </Component>
582 a7bf57c9 gaqhf
            <Component Id="cmp6E5E57359EDFE1712AC8010EE2CF6045" Directory="dirEA5D0794475A08BA33984CB7D7C09241" Guid="56A2506C-D1D7-40B1-899C-543F16932808">
583 70131c95 gaqhf
                <File Id="fil91EC9E6100C631E09169C80C710E6741" KeyPath="yes" Source=".\Setup_Report\ru\DevExpress.XtraCharts.v18.2.resources.dll" />
584
            </Component>
585 a7bf57c9 gaqhf
            <Component Id="cmp8088D24DEDEBBF28F9BBB637F803783A" Directory="dirEA5D0794475A08BA33984CB7D7C09241" Guid="88D3A36A-FF1E-42B3-9B1E-BA3ADF5AA75D">
586 70131c95 gaqhf
                <File Id="filB1790DE4A728FC22E05F816377499028" KeyPath="yes" Source=".\Setup_Report\ru\DevExpress.XtraEditors.v18.2.resources.dll" />
587
            </Component>
588 a7bf57c9 gaqhf
            <Component Id="cmpC0EC95A7D14E186B9D70C99072F1B8FD" Directory="dirEA5D0794475A08BA33984CB7D7C09241" Guid="EEBD2688-A41C-4483-ABA5-1FA39327719E">
589 70131c95 gaqhf
                <File Id="fil5D0C92AB5A3E5B454540FD4F194AC56C" KeyPath="yes" Source=".\Setup_Report\ru\DevExpress.XtraGrid.v18.2.resources.dll" />
590
            </Component>
591 a7bf57c9 gaqhf
            <Component Id="cmp5822665C14DB8B93777066BBFAF345B4" Directory="dirEA5D0794475A08BA33984CB7D7C09241" Guid="D0F963E1-5A50-415F-B121-022AC4F38173">
592 70131c95 gaqhf
                <File Id="fil7A9B9E973D93348071E75BB7CE7D7AFA" KeyPath="yes" Source=".\Setup_Report\ru\DevExpress.XtraLayout.v18.2.resources.dll" />
593
            </Component>
594 a7bf57c9 gaqhf
            <Component Id="cmp5933CD80986FE7BBE47F6C9CC06CF407" Directory="dirEA5D0794475A08BA33984CB7D7C09241" Guid="E28518D4-B960-4129-9A58-05F15E7C1F31">
595 70131c95 gaqhf
                <File Id="fil6B2B1D4A882657DAEF5F9F8352733482" KeyPath="yes" Source=".\Setup_Report\ru\DevExpress.XtraNavBar.v18.2.resources.dll" />
596
            </Component>
597 a7bf57c9 gaqhf
            <Component Id="cmpEFBA13695936FE144CA69DE385E5F07C" Directory="dirEA5D0794475A08BA33984CB7D7C09241" Guid="623567C7-9580-4D62-B30A-78F7020EC4B4">
598 70131c95 gaqhf
                <File Id="filA1A04F376F860B88F38CB0AC8CB83C93" KeyPath="yes" Source=".\Setup_Report\ru\DevExpress.XtraPivotGrid.v18.2.resources.dll" />
599
            </Component>
600 a7bf57c9 gaqhf
            <Component Id="cmpD619C65DEA832B73E3E4B54D130DF09A" Directory="dirEA5D0794475A08BA33984CB7D7C09241" Guid="5A5E8E59-76ED-4DBD-8CF8-88B66E455F57">
601 70131c95 gaqhf
                <File Id="filA520BBCF3C6DD9E0ABB75BD1A64D0E21" KeyPath="yes" Source=".\Setup_Report\ru\DevExpress.XtraPrinting.v18.2.resources.dll" />
602
            </Component>
603 a7bf57c9 gaqhf
            <Component Id="cmpC9067B5A3545BDA7C8073505E505874B" Directory="dirEA5D0794475A08BA33984CB7D7C09241" Guid="19AFE600-854F-4CED-9A0C-8EDF8560794C">
604 70131c95 gaqhf
                <File Id="fil4DF7E9A46C2ECA12848DF343552862F3" KeyPath="yes" Source=".\Setup_Report\ru\DevExpress.XtraRichEdit.v18.2.resources.dll" />
605
            </Component>
606 a7bf57c9 gaqhf
            <Component Id="cmp507F57E37116926206B6331EECCF4EB2" Directory="dirEA5D0794475A08BA33984CB7D7C09241" Guid="2E09EBEC-4276-4C9A-97C9-111E822E01A4">
607 70131c95 gaqhf
                <File Id="fil8E8B325A3067DD322380E4F7744069F1" KeyPath="yes" Source=".\Setup_Report\ru\DevExpress.XtraSpreadsheet.v18.2.resources.dll" />
608
            </Component>
609 a7bf57c9 gaqhf
            <Component Id="cmpA290A4E5FAAFFD2634EA04BDAE3C80CF" Directory="dirEA5D0794475A08BA33984CB7D7C09241" Guid="2165B8F3-E5B5-4BDC-9C27-F5462EAFFC0A">
610 70131c95 gaqhf
                <File Id="fil81F2F4BB0C577A736A470365F81D159A" KeyPath="yes" Source=".\Setup_Report\ru\DevExpress.XtraTreeList.v18.2.resources.dll" />
611
            </Component>
612 a7bf57c9 gaqhf
            <Component Id="cmp78449FDDCC6BED867E591B35AC941330" Directory="dirEA5D0794475A08BA33984CB7D7C09241" Guid="FCCA7356-45FF-402C-B5BF-B372A9FD2BEC">
613 70131c95 gaqhf
                <File Id="filE5C98DB52BD290DC9959E392A9BF92C5" KeyPath="yes" Source=".\Setup_Report\ru\DevExpress.XtraVerticalGrid.v18.2.resources.dll" />
614
            </Component>
615 a7bf57c9 gaqhf
            <Component Id="cmp00B27576F5BE2F19CBF87F8BBEB1854A" Directory="dirBD7868906CFFB145782803A9DAA3A1AF" Guid="4DDC0D06-5E65-45E1-B5C8-D98A38C6A499">
616 70131c95 gaqhf
                <File Id="filF1BF1344F70550CAAE95FE5B1A185FEE" KeyPath="yes" Source=".\Setup_Report\x64\SQLite.Interop.dll" />
617
            </Component>
618 a7bf57c9 gaqhf
            <Component Id="cmp9BA5E26CD358721018DB00D6369A9CF5" Directory="dir978FC0AB94AB39BE3FFC81FB2D2BCCAF" Guid="97133C63-2293-4A63-BD91-120F656D16AE">
619 70131c95 gaqhf
                <File Id="filEC644FB24FA8773F92909A896C7BBF9B" KeyPath="yes" Source=".\Setup_Report\x86\SQLite.Interop.dll" />
620
            </Component>
621
        </ComponentGroup>
622
    </Fragment>
623
</Wix>
클립보드 이미지 추가 (최대 크기: 500 MB)