2019-04-11 14:45:22 +08:00
|
|
|
package cn.keking.config;
|
|
|
|
|
2022-12-15 18:19:30 +08:00
|
|
|
import cn.keking.utils.ConfigUtils;
|
2019-04-16 21:09:32 +08:00
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
|
|
import java.io.File;
|
2020-02-18 19:36:15 +08:00
|
|
|
import java.util.Arrays;
|
|
|
|
import java.util.Set;
|
2022-07-21 11:19:46 +08:00
|
|
|
import java.util.concurrent.CopyOnWriteArraySet;
|
2019-04-16 21:09:32 +08:00
|
|
|
|
2019-04-11 14:45:22 +08:00
|
|
|
/**
|
2020-05-15 18:09:19 +08:00
|
|
|
* @author: chenjh
|
|
|
|
* @since: 2019/4/10 17:22
|
2019-04-11 14:45:22 +08:00
|
|
|
*/
|
2019-04-16 21:09:32 +08:00
|
|
|
@Component
|
2019-04-11 14:45:22 +08:00
|
|
|
public class ConfigConstants {
|
|
|
|
|
2021-02-04 11:38:45 +08:00
|
|
|
static {
|
|
|
|
//pdfbox兼容低版本jdk
|
|
|
|
System.setProperty("sun.java2d.cmm", "sun.java2d.cmm.kcms.KcmsServiceProvider");
|
|
|
|
}
|
|
|
|
|
2021-03-12 21:32:01 +08:00
|
|
|
private static Boolean cacheEnabled;
|
|
|
|
private static String[] simTexts = {};
|
|
|
|
private static String[] medias = {};
|
2021-04-18 12:40:59 +08:00
|
|
|
private static String[] convertMedias = {};
|
|
|
|
private static String mediaConvertDisable;
|
2021-03-12 21:32:01 +08:00
|
|
|
private static String officePreviewType;
|
|
|
|
private static String officePreviewSwitchDisabled;
|
|
|
|
private static String ftpUsername;
|
|
|
|
private static String ftpPassword;
|
|
|
|
private static String ftpControlEncoding;
|
|
|
|
private static String baseUrl;
|
|
|
|
private static String fileDir = ConfigUtils.getHomePath() + File.separator + "file" + File.separator;
|
2021-11-25 13:47:51 +08:00
|
|
|
private static String localPreviewDir;
|
2021-03-12 21:32:01 +08:00
|
|
|
private static CopyOnWriteArraySet<String> trustHostSet;
|
2021-11-16 11:50:12 +08:00
|
|
|
private static String pdfPresentationModeDisable;
|
|
|
|
private static String pdfOpenFileDisable;
|
|
|
|
private static String pdfPrintDisable;
|
2021-03-12 21:32:01 +08:00
|
|
|
private static String pdfDownloadDisable;
|
2021-11-16 11:50:12 +08:00
|
|
|
private static String pdfBookmarkDisable;
|
2021-07-06 09:09:19 +08:00
|
|
|
private static Boolean fileUploadDisable;
|
2021-12-05 12:38:30 +08:00
|
|
|
private static String tifPreviewType;
|
2019-04-11 14:45:22 +08:00
|
|
|
|
2020-02-18 19:36:15 +08:00
|
|
|
public static final String DEFAULT_CACHE_ENABLED = "true";
|
2020-05-15 18:09:19 +08:00
|
|
|
public static final String DEFAULT_TXT_TYPE = "txt,html,htm,asp,jsp,xml,json,properties,md,gitignore,log,java,py,c,cpp,sql,sh,bat,m,bas,prg,cmd";
|
2020-02-18 19:36:15 +08:00
|
|
|
public static final String DEFAULT_MEDIA_TYPE = "mp3,wav,mp4,flv";
|
2020-05-13 10:20:08 +08:00
|
|
|
public static final String DEFAULT_OFFICE_PREVIEW_TYPE = "image";
|
2020-12-25 18:19:30 +08:00
|
|
|
public static final String DEFAULT_OFFICE_PREVIEW_SWITCH_DISABLED = "false";
|
2020-02-18 19:36:15 +08:00
|
|
|
public static final String DEFAULT_FTP_USERNAME = null;
|
|
|
|
public static final String DEFAULT_FTP_PASSWORD = null;
|
|
|
|
public static final String DEFAULT_FTP_CONTROL_ENCODING = "UTF-8";
|
|
|
|
public static final String DEFAULT_BASE_URL = "default";
|
2020-05-13 10:20:08 +08:00
|
|
|
public static final String DEFAULT_FILE_DIR_VALUE = "default";
|
2021-11-25 13:47:51 +08:00
|
|
|
public static final String DEFAULT_LOCAL_PREVIEW_DIR_VALUE = "default";
|
2020-02-18 19:36:15 +08:00
|
|
|
public static final String DEFAULT_TRUST_HOST = "default";
|
2021-11-16 11:50:12 +08:00
|
|
|
public static final String DEFAULT_PDF_PRESENTATION_MODE_DISABLE = "true";
|
|
|
|
public static final String DEFAULT_PDF_OPEN_FILE_DISABLE = "true";
|
|
|
|
public static final String DEFAULT_PDF_PRINT_DISABLE = "true";
|
2020-05-14 19:28:21 +08:00
|
|
|
public static final String DEFAULT_PDF_DOWNLOAD_DISABLE = "true";
|
2021-11-16 11:50:12 +08:00
|
|
|
public static final String DEFAULT_PDF_BOOKMARK_DISABLE = "true";
|
2021-07-06 09:09:19 +08:00
|
|
|
public static final String DEFAULT_FILE_UPLOAD_DISABLE = "false";
|
2021-12-09 17:19:15 +08:00
|
|
|
public static final String DEFAULT_TIF_PREVIEW_TYPE = "tif";
|
2021-03-12 21:32:01 +08:00
|
|
|
|
2019-08-22 15:22:05 +08:00
|
|
|
public static Boolean isCacheEnabled() {
|
2021-03-12 21:32:01 +08:00
|
|
|
return cacheEnabled;
|
2019-08-22 15:22:05 +08:00
|
|
|
}
|
|
|
|
|
2020-05-15 18:09:19 +08:00
|
|
|
@Value("${cache.enabled:true}")
|
2020-05-18 09:46:52 +08:00
|
|
|
public void setCacheEnabled(String cacheEnabled) {
|
2020-05-15 18:09:19 +08:00
|
|
|
setCacheEnabledValueValue(Boolean.parseBoolean(cacheEnabled));
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setCacheEnabledValueValue(Boolean cacheEnabled) {
|
2021-03-12 21:32:01 +08:00
|
|
|
ConfigConstants.cacheEnabled = cacheEnabled;
|
2019-08-22 15:22:05 +08:00
|
|
|
}
|
|
|
|
|
2019-04-11 14:45:22 +08:00
|
|
|
public static String[] getSimText() {
|
2021-03-12 21:32:01 +08:00
|
|
|
return simTexts;
|
2019-04-11 14:45:22 +08:00
|
|
|
}
|
|
|
|
|
2020-05-15 18:09:19 +08:00
|
|
|
@Value("${simText:txt,html,htm,asp,jsp,xml,json,properties,md,gitignore,log,java,py,c,cpp,sql,sh,bat,m,bas,prg,cmd}")
|
|
|
|
public void setSimText(String simText) {
|
|
|
|
String[] simTextArr = simText.split(",");
|
|
|
|
setSimTextValue(simTextArr);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setSimTextValue(String[] simText) {
|
2021-03-12 21:32:01 +08:00
|
|
|
ConfigConstants.simTexts = simText;
|
2019-04-11 14:45:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public static String[] getMedia() {
|
2021-03-12 21:32:01 +08:00
|
|
|
return medias;
|
2019-04-11 14:45:22 +08:00
|
|
|
}
|
|
|
|
|
2020-05-15 18:09:19 +08:00
|
|
|
@Value("${media:mp3,wav,mp4,flv}")
|
|
|
|
public void setMedia(String media) {
|
|
|
|
String[] mediaArr = media.split(",");
|
|
|
|
setMediaValue(mediaArr);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setMediaValue(String[] Media) {
|
2021-03-12 21:32:01 +08:00
|
|
|
ConfigConstants.medias = Media;
|
2019-04-11 14:45:22 +08:00
|
|
|
}
|
|
|
|
|
2021-04-18 12:40:59 +08:00
|
|
|
public static String[] getConvertMedias() {
|
|
|
|
return convertMedias;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Value("${convertMedias:avi,mov,wmv,mkv,3gp,rm}")
|
|
|
|
public void setConvertMedias(String convertMedia) {
|
|
|
|
String[] mediaArr = convertMedia.split(",");
|
|
|
|
setConvertMediaValue(mediaArr);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setConvertMediaValue(String[] ConvertMedia) {
|
|
|
|
ConfigConstants.convertMedias = ConvertMedia;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static String getMediaConvertDisable() {
|
|
|
|
return mediaConvertDisable;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Value("${media.convert.disable:true}")
|
|
|
|
public void setMediaConvertDisable(String mediaConvertDisable) {
|
|
|
|
setMediaConvertDisableValue(mediaConvertDisable);
|
|
|
|
}
|
|
|
|
public static void setMediaConvertDisableValue(String mediaConvertDisable) {
|
|
|
|
ConfigConstants.mediaConvertDisable = mediaConvertDisable;
|
|
|
|
}
|
|
|
|
|
2019-04-25 18:39:58 +08:00
|
|
|
public static String getOfficePreviewType() {
|
2021-03-12 21:32:01 +08:00
|
|
|
return officePreviewType;
|
2019-04-25 18:39:58 +08:00
|
|
|
}
|
|
|
|
|
2020-05-15 18:09:19 +08:00
|
|
|
@Value("${office.preview.type:image}")
|
|
|
|
public void setOfficePreviewType(String officePreviewType) {
|
|
|
|
setOfficePreviewTypeValue(officePreviewType);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setOfficePreviewTypeValue(String officePreviewType) {
|
2021-03-12 21:32:01 +08:00
|
|
|
ConfigConstants.officePreviewType = officePreviewType;
|
2019-04-25 18:39:58 +08:00
|
|
|
}
|
|
|
|
|
2019-06-19 14:18:09 +08:00
|
|
|
public static String getFtpUsername() {
|
2021-03-12 21:32:01 +08:00
|
|
|
return ftpUsername;
|
2019-06-19 14:18:09 +08:00
|
|
|
}
|
|
|
|
|
2020-05-15 18:09:19 +08:00
|
|
|
@Value("${ftp.username:}")
|
|
|
|
public void setFtpUsername(String ftpUsername) {
|
|
|
|
setFtpUsernameValue(ftpUsername);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setFtpUsernameValue(String ftpUsername) {
|
2021-03-12 21:32:01 +08:00
|
|
|
ConfigConstants.ftpUsername = ftpUsername;
|
2019-06-19 14:18:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public static String getFtpPassword() {
|
2021-03-12 21:32:01 +08:00
|
|
|
return ftpPassword;
|
2019-06-19 14:18:09 +08:00
|
|
|
}
|
|
|
|
|
2020-05-15 18:09:19 +08:00
|
|
|
@Value("${ftp.password:}")
|
|
|
|
public void setFtpPassword(String ftpPassword) {
|
|
|
|
setFtpPasswordValue(ftpPassword);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setFtpPasswordValue(String ftpPassword) {
|
2021-03-12 21:32:01 +08:00
|
|
|
ConfigConstants.ftpPassword = ftpPassword;
|
2019-06-19 14:18:09 +08:00
|
|
|
}
|
|
|
|
|
2020-05-13 10:20:08 +08:00
|
|
|
public static String getFtpControlEncoding() {
|
2021-03-12 21:32:01 +08:00
|
|
|
return ftpControlEncoding;
|
2019-06-19 14:18:09 +08:00
|
|
|
}
|
|
|
|
|
2020-05-15 18:09:19 +08:00
|
|
|
@Value("${ftp.control.encoding:UTF-8}")
|
|
|
|
public void setFtpControlEncoding(String ftpControlEncoding) {
|
|
|
|
setFtpControlEncodingValue(ftpControlEncoding);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setFtpControlEncodingValue(String ftpControlEncoding) {
|
2021-03-12 21:32:01 +08:00
|
|
|
ConfigConstants.ftpControlEncoding = ftpControlEncoding;
|
2019-04-16 21:09:32 +08:00
|
|
|
}
|
|
|
|
|
2019-10-17 10:59:38 +08:00
|
|
|
public static String getBaseUrl() {
|
2021-03-12 21:32:01 +08:00
|
|
|
return baseUrl;
|
2019-10-17 10:59:38 +08:00
|
|
|
}
|
|
|
|
|
2020-05-15 18:09:19 +08:00
|
|
|
@Value("${base.url:default}")
|
|
|
|
public void setBaseUrl(String baseUrl) {
|
|
|
|
setBaseUrlValue(baseUrl);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setBaseUrlValue(String baseUrl) {
|
2021-03-12 21:32:01 +08:00
|
|
|
ConfigConstants.baseUrl = baseUrl;
|
2020-05-13 10:20:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public static String getFileDir() {
|
2021-03-12 21:32:01 +08:00
|
|
|
return fileDir;
|
2019-10-17 10:59:38 +08:00
|
|
|
}
|
|
|
|
|
2019-04-16 21:09:32 +08:00
|
|
|
@Value("${file.dir:default}")
|
|
|
|
public void setFileDir(String fileDir) {
|
2020-05-15 18:09:19 +08:00
|
|
|
setFileDirValue(fileDir);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setFileDirValue(String fileDir) {
|
2020-12-26 00:56:48 +08:00
|
|
|
if (!DEFAULT_FILE_DIR_VALUE.equalsIgnoreCase(fileDir)) {
|
2019-04-16 21:09:32 +08:00
|
|
|
if (!fileDir.endsWith(File.separator)) {
|
|
|
|
fileDir = fileDir + File.separator;
|
|
|
|
}
|
2021-03-12 21:32:01 +08:00
|
|
|
ConfigConstants.fileDir = fileDir;
|
2019-04-16 21:09:32 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-25 13:47:51 +08:00
|
|
|
public static String getLocalPreviewDir() {
|
|
|
|
return localPreviewDir;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Value("${local.preview.dir:default}")
|
|
|
|
public void setLocalPreviewDir(String localPreviewDir) {
|
|
|
|
setLocalPreviewDirValue(localPreviewDir);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setLocalPreviewDirValue(String localPreviewDir) {
|
|
|
|
if (!DEFAULT_LOCAL_PREVIEW_DIR_VALUE.equals(localPreviewDir)) {
|
|
|
|
if (!localPreviewDir.endsWith(File.separator)) {
|
|
|
|
localPreviewDir = localPreviewDir + File.separator;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ConfigConstants.localPreviewDir = localPreviewDir;
|
|
|
|
}
|
|
|
|
|
2020-05-13 10:20:08 +08:00
|
|
|
@Value("${trust.host:default}")
|
2020-05-15 18:09:19 +08:00
|
|
|
public void setTrustHost(String trustHost) {
|
|
|
|
setTrustHostValue(trustHost);
|
2020-02-18 19:36:15 +08:00
|
|
|
}
|
|
|
|
|
2020-05-15 18:09:19 +08:00
|
|
|
public static void setTrustHostValue(String trustHost) {
|
2020-05-13 10:20:08 +08:00
|
|
|
CopyOnWriteArraySet<String> trustHostSet;
|
2020-12-26 00:56:48 +08:00
|
|
|
if (DEFAULT_TRUST_HOST.equalsIgnoreCase(trustHost)) {
|
2020-05-13 10:20:08 +08:00
|
|
|
trustHostSet = new CopyOnWriteArraySet<>();
|
2020-02-18 19:36:15 +08:00
|
|
|
} else {
|
|
|
|
String[] trustHostArray = trustHost.toLowerCase().split(",");
|
2020-05-13 10:20:08 +08:00
|
|
|
trustHostSet = new CopyOnWriteArraySet<>(Arrays.asList(trustHostArray));
|
|
|
|
setTrustHostSet(trustHostSet);
|
2020-02-18 19:36:15 +08:00
|
|
|
}
|
2020-05-13 10:20:08 +08:00
|
|
|
setTrustHostSet(trustHostSet);
|
2020-02-18 19:36:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public static Set<String> getTrustHostSet() {
|
2021-03-12 21:32:01 +08:00
|
|
|
return trustHostSet;
|
2020-02-18 19:36:15 +08:00
|
|
|
}
|
|
|
|
|
2020-05-13 10:20:08 +08:00
|
|
|
private static void setTrustHostSet(CopyOnWriteArraySet<String> trustHostSet) {
|
2021-03-12 21:32:01 +08:00
|
|
|
ConfigConstants.trustHostSet = trustHostSet;
|
2020-02-18 19:36:15 +08:00
|
|
|
}
|
2020-05-14 19:28:21 +08:00
|
|
|
|
2021-11-16 11:50:12 +08:00
|
|
|
public static String getPdfPresentationModeDisable() {
|
|
|
|
return pdfPresentationModeDisable;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Value("${pdf.presentationMode.disable:true}")
|
|
|
|
public void setPdfPresentationModeDisable(String pdfPresentationModeDisable) {
|
|
|
|
setPdfPresentationModeDisableValue(pdfPresentationModeDisable);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setPdfPresentationModeDisableValue(String pdfPresentationModeDisable) {
|
|
|
|
ConfigConstants.pdfPresentationModeDisable = pdfPresentationModeDisable;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static String getPdfOpenFileDisable() {
|
|
|
|
return pdfOpenFileDisable;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Value("${pdf.openFile.disable:true}")
|
2022-12-13 18:17:20 +08:00
|
|
|
public void setPdfOpenFileDisable(String pdfOpenFileDisable) {
|
2021-11-16 11:50:12 +08:00
|
|
|
setPdfOpenFileDisableValue(pdfOpenFileDisable);
|
|
|
|
}
|
|
|
|
public static void setPdfOpenFileDisableValue(String pdfOpenFileDisable) {
|
|
|
|
ConfigConstants.pdfOpenFileDisable = pdfOpenFileDisable;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static String getPdfPrintDisable() {
|
|
|
|
return pdfPrintDisable;
|
|
|
|
}
|
|
|
|
@Value("${pdf.print.disable:true}")
|
2022-12-13 18:17:20 +08:00
|
|
|
public void setPdfPrintDisable(String pdfPrintDisable) {
|
2021-11-16 11:50:12 +08:00
|
|
|
setPdfPrintDisableValue(pdfPrintDisable);
|
|
|
|
}
|
|
|
|
public static void setPdfPrintDisableValue(String pdfPrintDisable) {
|
|
|
|
ConfigConstants.pdfPrintDisable = pdfPrintDisable;
|
|
|
|
}
|
|
|
|
|
2020-05-14 19:28:21 +08:00
|
|
|
public static String getPdfDownloadDisable() {
|
2021-03-12 21:32:01 +08:00
|
|
|
return pdfDownloadDisable;
|
2020-05-14 19:28:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
@Value("${pdf.download.disable:true}")
|
|
|
|
public void setPdfDownloadDisable(String pdfDownloadDisable) {
|
2020-05-15 18:09:19 +08:00
|
|
|
setPdfDownloadDisableValue(pdfDownloadDisable);
|
|
|
|
}
|
|
|
|
public static void setPdfDownloadDisableValue(String pdfDownloadDisable) {
|
2021-03-12 21:32:01 +08:00
|
|
|
ConfigConstants.pdfDownloadDisable = pdfDownloadDisable;
|
2020-05-14 19:28:21 +08:00
|
|
|
}
|
2020-05-15 18:09:19 +08:00
|
|
|
|
2021-11-16 11:50:12 +08:00
|
|
|
public static String getPdfBookmarkDisable() {
|
|
|
|
return pdfBookmarkDisable;
|
|
|
|
}
|
|
|
|
@Value("${pdf.bookmark.disable:true}")
|
|
|
|
public void setPdfBookmarkDisable(String pdfBookmarkDisable) {
|
|
|
|
setPdfBookmarkDisableValue(pdfBookmarkDisable);
|
|
|
|
}
|
|
|
|
public static void setPdfBookmarkDisableValue(String pdfBookmarkDisable) {
|
|
|
|
ConfigConstants.pdfBookmarkDisable = pdfBookmarkDisable;
|
|
|
|
}
|
|
|
|
|
2020-12-25 18:19:30 +08:00
|
|
|
public static String getOfficePreviewSwitchDisabled() {
|
2021-03-12 21:32:01 +08:00
|
|
|
return officePreviewSwitchDisabled;
|
2020-12-25 18:19:30 +08:00
|
|
|
}
|
|
|
|
@Value("${office.preview.switch.disabled:true}")
|
2020-12-26 00:56:48 +08:00
|
|
|
public void setOfficePreviewSwitchDisabled(String officePreviewSwitchDisabled) {
|
2021-03-12 21:32:01 +08:00
|
|
|
ConfigConstants.officePreviewSwitchDisabled = officePreviewSwitchDisabled;
|
2020-12-26 00:56:48 +08:00
|
|
|
}
|
|
|
|
public static void setOfficePreviewSwitchDisabledValue(String officePreviewSwitchDisabled) {
|
2021-03-12 21:32:01 +08:00
|
|
|
ConfigConstants.officePreviewSwitchDisabled = officePreviewSwitchDisabled;
|
2020-12-25 18:19:30 +08:00
|
|
|
}
|
2021-03-12 21:32:01 +08:00
|
|
|
|
2021-07-06 09:09:19 +08:00
|
|
|
public static Boolean getFileUploadDisable() {
|
|
|
|
return fileUploadDisable;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Value("${file.upload.disable:false}")
|
2022-12-13 18:17:20 +08:00
|
|
|
public void setFileUploadDisable(Boolean fileUploadDisable) {
|
2021-07-06 09:09:19 +08:00
|
|
|
setFileUploadDisableValue(fileUploadDisable);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setFileUploadDisableValue(Boolean fileUploadDisable) {
|
|
|
|
ConfigConstants.fileUploadDisable = fileUploadDisable;
|
|
|
|
}
|
2021-12-05 12:38:30 +08:00
|
|
|
|
|
|
|
|
|
|
|
public static String getTifPreviewType() {
|
|
|
|
return tifPreviewType;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Value("${tif.preview.type:tif}")
|
|
|
|
public void setTifPreviewType(String tifPreviewType) {
|
|
|
|
setTifPreviewTypeValue(tifPreviewType);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setTifPreviewTypeValue(String tifPreviewType) {
|
|
|
|
ConfigConstants.tifPreviewType = tifPreviewType;
|
|
|
|
}
|
2019-04-11 14:45:22 +08:00
|
|
|
}
|