:root { --lh-red: #c0392b; --lh-blue: #2980b9; --lh-green: #27ae60; --lh-dark-green: #16a085; --lh-purple: #8e44ad; --lh-orange: #e67e22; --lh-yellow: #f1c40f; --lh-paper-bg: 255, 251, 240; --lh-string-color: 192, 57, 43; --lh-book-color: var(--gray-monochrome); --lh-tape-color: 90,90,90,0.3; --lh-white-bg: 249,249,249; --lh-dark-bg: 50, 50, 50; --lh-highlighter: var(--bright-accent); --lh-border-color: var(--gray-monochrome); --lh-wiki-note-color: var(--bright-accent) } /** * 旧代码合集 * 为了向下兼容而保留 */ .grid-container{display:flex;flex-direction:row;flex-wrap:wrap;width:100%}.grid-container,.grid-container [class*=grid]{box-sizing:border-box}[class*=grid]{padding:5px}.grid{width:100%}.grid-large{width:75%}.grid-big{width:50%}.grid-medium{width:33.33%}.grid-small{width:25%}@media screen and (min-width:768px){.wd-grid-large{width:75%}.wd-grid,.wd-grid-big{width:50%}.wd-grid-medium{width:33.33%}.wd-grid-small{width:25%}}.text-hover-hide{opacity:0;transition:opacity .3s}.text-hover-hide:hover{opacity:1}.text-block-hide{background:rgb(var(--black-monochrome));color:rgb(var(--black-monochrome));transition:background .3s}.text-block-hide:hover{background:0 0}.text-blur-hide,.text-blur-hover-hide{filter:blur(.3rem);-webkit-filter:blur(.3rem) transition: blur .3s}.text-blur-hover-hide:hover{filter:blur(0);-webkit-filter:blur(0)}.lyric-box{text-align:center;font-size:1.05rem;display:flex;flex-direction:column;flex-wrap:wrap;justify-content:center}.lyric-box p{margin:1.5em auto}.lyric-box.with-bigger-line p{margin:3em auto} /** * 便签纸 * notepaper */ .notepaper { background: linear-gradient(rgb(var(--lh-paper-bg)) 95%, #ddd 0); line-height: 2em; background-size: 100% 2em; background-attachment: local; border: 2em solid rgb(var(--lh-paper-bg)); box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.2); padding: 0; margin: 1em auto; box-sizing: border-box; position: relative } .notepaper p { margin: 0; font-size: 1.05rem; letter-spacing: 0.1rem; line-height: inherit } .notepaper.narrow, .notepaper.wide { width: 90% } @media screen and (min-width:768px){ .notepaper.narrow { width: 50% } .notepaper.wide { width: 75% } } .notepaper.tight { border-width: 1rem; border-left-width: 1.2rem; border-right-width: 1.2rem; line-height: 1.8em; background-size: 100% 1.8em; font-size: 13px } .notepaper.with-string::before { content: ''; width: 0.5em; height: 6rem; background: rgb(var(--lh-string-color)); top: -2rem; right: -1rem; display: block; position: absolute; box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2); clip-path: polygon(-100% -100%,100% 0%,100% 100%,50% 98%,0% 100%); } .notepaper.with-tape::before { content: ''; border: 1px solid #ddd; background: rgba(var(--lh-tape-color)); width: 1.5em; height: 4em; transform: rotate(45deg); display: block; position: absolute; top: -3em; left: -1.8em } .notepaper.tight.with-string::before { top: -1rem; right: -0.25rem; } .notepaper.tight.with-tape::before { top: -2.5em; left: -1.3em } .notepaper.page { min-height: 36em; counter-increment: page; display: flex; flex-direction: column; justify-content: space-between } @media screen and (min-width:768px){ .notepaper.page { width: 70% } } .notepaper.page:after { content: counter(page); display: block; text-align: center } .notepaper-group { counter-reset: page; } .book-pattern { display: flex; flex-wrap: wrap; flex-direction: row } .book-pattern .notepaper.page:not(.notepaper > .notepaper) { width: 100% } @media screen and (min-width: 768px) { .book-pattern .notepaper.page:not(.notepaper > .notepaper) { width: 50% } } .book-wrapper { background: rgb(var(--lh-book-color)); padding: 0.5rem; box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.2); border-radius: 5px; margin: 1rem auto } @media screen and (min-width: 768px) { .book-wrapper .notepaper { margin: 0 } } /** * 文字修饰 */ .text-highlighted { position: relative } .text-highlighted::before { content: ""; position: absolute; height: 0.9em; bottom: 2px; left: -2px; width: 105%; z-index: -1; background-color: rgb(var(--lh-highlighter)); opacity: .6; transform: skew(-15deg); transition: opacity .2s ease; border-radius: 3px 8px 10px 6px; transition: 0.1s ease background-color; } .text-underlined { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 2px; text-decoration-color: rgb(var(--lh-highlighter)) } .text-wavy { text-decoration: underline wavy; text-underline-offset: 4px; text-decoration-color: rgb(var(--lh-highlighter)) } .text-circled, .text-squared { display: inline-block; border: 2px solid rgb(var(--lh-highlighter)); border-radius: 100%; box-sizing: border-box } .text-squared { border-radius: 0 } .text-shadow { text-shadow: 0.075em 0.075em 0 rgb(var(--lh-highlighter)) } .text-highlighted.td-red::before { background: var(--lh-red) } .text-circled.td-red, .text-squared.td-red { border-color: var(--lh-red) } .text-underlined.td-red, .text-wavy.td-red { text-decoration-color: var(--lh-red) } .text-highlighted.td-blue::before { background: var(--lh-blue) } .text-circled.td-blue, .text-squared.td-blue { border-color: var(--lh-blue) } .text-underlined.td-blue, .text-wavy.td-blue { text-decoration-color: var(--lh-blue) } .text-highlighted.td-green::before { background: var(--lh-green) } .text-circled.td-green, .text-squared.td-green { border-color: var(--lh-green) } .text-underlined.td-green, .text-wavy.td-green { text-decoration-color: var(--lh-green) } .text-highlighted.td-darkgreen::before { background: var(--lh-dark-green) } .text-circled.td-darkgreen, .text-squared.td-darkgreen { border-color: var(--lh-dark-green) } .text-underlined.td-darkgreen, .text-wavy.td-darkgreen { text-decoration-color: var(--lh-dark-green) } .text-highlighted.td-purple::before { background: var(--lh-purple) } .text-circled.td-purple, .text-squared.td-purple { border-color: var(--lh-purple) } .text-underlined.td-purple, .text-wavy.td-purple { text-decoration-color: var(--lh-purple) } .text-highlighted.td-yellow::before { background: var(--lh-yellow) } .text-circled.td-yellow, .text-squared.td-yellow { border-color: var(--lh-yellow) } .text-underlined.td-yellow, .text-wavy.td-yellow { text-decoration-color: var(--lh-yellow) } .text-highlighted.td-orange::before { background: var(--lh-orange) } .text-circled.td-orange, .text-squared.td-orange { border-color: var(--lh-orange) } .text-underlined.td-orange, .text-wavy.td-orange { text-decoration-color: var(--lh-orange) } /* 隐藏文字 */ .text-blank { color: rgba(0,0,0,0) } .text-block { background: rgb(var(--black-monochrome)); color: rgb(var(--black-monochrome)); } .text-blur { filter: blur(0.3em); -webkit-filter: blur(0.3em) } .text-hoverback, .text-selectback { transition-duration: 0.3s; transition-property: background, transform, color } .text-blank.text-hoverback:hover, .text-blank.text-selectback::selection, .text-blank.text-selectback *::selection { color: rgb(var(--black-monochrome)) } .text-block.text-hoverback:hover { background: transparent!important } .text-block.text-selectback::selection, .text-block.text-selectback *::selection { color: rgb(var(--white-monochrome, 255, 255, 255)) } .text-blur.text-hoverback:hover { filter: blur(0)!important; -webkit-filter: blur(0)!important } /** * 附加项 */ .with-border, .with-box-style { border: 1px solid rgb(var(--bright-accent)) } .with-border-dark { border: 1px solid rgb(var(--black-monochrome)) } .with-border-light { border: 1px solid rgb(var(--white-monochrome)) } .with-border-thick { border-width: 2px } .with-shadow-sm { box-shadow: 0 0 0.1em rgba(0,0,0,0.2) } .with-shadow { box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2) } .with-shadow-lg { box-shadow: 0 0.15em 0.3em rgba(0,0,0,0.2) } .with-shadow-xl { box-shadow: 0 0.2em 0.5em rgba(0,0,0,0.2) } .with-shadow-xxl { box-shadow: 0 0.25em 0.8em rgba(0,0,0,0.2) } .with-padding, .with-box-style { padding: 0.25em 1em } .with-p-sm { padding: 0.125em 0.5em } .with-p-lg { padding: 0.5em 2em } .with-margin, .with-box-style { margin: 1em auto } .with-m-sm { margin: 0.5em auto } .with-m-lg { margin: 2em auto } .with-narrow-width { width: 90%!important; margin-left: auto; margin-right: auto } @media screen and (min-width: 768px) { .with-narrow-width { width: 75%!important } } [class*="with-bg-"], [class*="with-bg-"] h1 { color: #fff!important } .with-bg-red { background: var(--lh-red)!important } .with-bg-blue { background: var(--lh-blue)!important } .with-bg-green { background: var(--lh-green)!important } .with-bg-darkgreen { background: var(--lh-dark-green)!important } .with-bg-yellow { background: var(--lh-yellow)!important } .with-bg-orange { background: var(--lh-orange)!important } .with-bg-purple { background: var(--lh-purple)!important } /** * 删除类 */ .offwith-shadow { box-shadow: none!important } .offwith-border { border: none!important } .offwith-padding, .offwith-pam { padding: 0!important } .offwith-margin, .offwith-pam { margin: 0!important } .offwith-width-limit { width: auto!important; margin-left: auto!important; margin-right: auto!important } div[class*="grider"].offwith-grid-gap { grid-gap: 0!important } /** * 网格布局 */ /* Gridder 容器 */ div[class*="gridder"] { display: grid; box-sizing: border-box; grid-gap: 1rem; padding: 0 } div[class*="gridder"] * { box-sizing: border-box } .gridder, .gridder-col-2 { grid-template-columns: 1fr 1fr; } .gridder-col-3 { grid-template-columns: repeat(3, 1fr); } .gridder-col-4 { grid-template-columns: repeat(4, 1fr); } @media screen and (min-width: 768px) { .pc-gridder, .pc-gridder-col-2 { grid-template-columns: 1fr 1fr; } .pc-gridder-col-3 { grid-template-columns: repeat(3, 1fr); } .pc-gridder-col-4 { grid-template-columns: repeat(4, 1fr); } } .spanner, .spanner-2 { grid-column-start: span 2; } .spanner-3 { grid-column-start: span 3; } /** * 告示组件 */ .signblock, .signblock-dark, .signblock-warn { margin: 1rem auto; box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.4); background: rgb(var(--lh-white-bg)); font-size: 1.05rem; padding: 2rem } @media screen and (min-width: 768px) { .signblock, .signblock-dark, .signblock-warn { width: 75% } } .signblock-dark, .signblock-dark h1 { background: rgb(var(--lh-dark-bg)); color: #fff } .signblock-warn, .signblock-warn h1 { background: var(--lh-red); color: #fff } .signblock h1, .signblock-dark h1, .signblock-warn h1 { text-align: center; font-size: 2rem; margin: 0; font-weight: 700 } .signblock-img { display: flex; flex-direction: row; justify-content: center } .signblock-img img { width: 8em } .signblock-footer { font-size: 0.9em; text-align: center; margin: 0.5rem 0; font-weight: bolder; display: block } /** * 报告 */ .reportblock, .reportblock-dark { border: 2px solid rgb(var(--lh-border-color)); box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3); background: rgb(var(--white-monochrome)); padding: 0.8rem 1.5rem; padding-bottom: 0.4rem; margin: 1.5rem auto; margin-bottom: 1rem; position: relative } .reportblock hr, .reportblock-dark hr { background-color: rgb(var(--lh-border-color)); margin-left: -1.5rem; margin-right: -1.5rem } .reportblock h1:first-child, .reportblock-dark h1:first-child { position: absolute; top: -1rem; left: 1.5rem; font-size: 110%; font-weight: 600; background: rgb(var(--lh-border-color)); color: #fff; padding: 0.2rem 0.5rem; margin: 0; } .reportblock-dark, .reportblock-dark h1 { border-color: rgb(var(--lh-white-bg)); background: rgb(var(--lh-dark-bg)); color: #fff } .reportblock-dark hr { background-color: rgb(var(--lh-white-bg)); } /* 更好的折叠框 */ .bettercollap { margin: 1em 0; } .bettercollap .collapsible-block { width: auto; overflow: hidden; border: 1px solid rgb(var(--lh-border-color)) } .bettercollap .collapsible-block-content, .bettercollap .collapsible-block-link { background: rgb(var(--white-monochrome)); padding: 0.5em } .bettercollap .collapsible-block-content { padding-left: 1em; padding-right: 1em } .bettercollap .collapsible-block-link { color: rgb(var(--lh-border-color)); background: rgb(var(--white-monochrome)); transition: .3s; display: block; } .bettercollap .collapsible-block-link:hover, .bettercollap .collapsible-block-unfolded .collapsible-block-link, .styledcollap.bettercollap .collapsible-block-link { color: rgb(var(--white-monochrome)); background: rgb(var(--lh-border-color))!important; text-decoration: none } .bettercollap .collapsible-block-link:hover a { color: rgb(var(--white-monochrome)) } .bettercollap .collapsible-block-link::before { content: "\25BC"; display: inline-block; margin-right: 0.5em; transform: rotate(-90deg) scale(0.9) } .bettercollap .collapsible-block-unfolded .collapsible-block-link::before { transform: rotate(0) scale(0.9) } .bettercollap .collapsible-block + .collapsible-block { border-top: none } .styledcollap.bettercollap .collapsible-block { border-radius: 2px; box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3) } .styledcollap.bettercollap .collapsible-block-content { background-color: rgb(var(--pale-gray-monochrome)); border-width: 3px } .styledcollap.bettercollap .collapsible-block-link:hover { background: rgba(var(--lh-border-color),0.95)!important; } /** * 提示框 */ .infoblock { color: #f1f1f1; font-weight: bold; background: #424242; padding: 5px 5px 5px 5px; border-radius: 4px; margin: -0.5rem 0 1rem 0; display: block; width: fit-content; padding-right: 25px; } .infoblock::before { content: "ⓘ " } /** * 单页迭代 */ .offset-page:not(:target), .offset-page:target ~ div#u-default-page { display: none } .offset-page:target { display: block }
去池子里……
Phenomenon C-96是一种在瓦伦丁市的夜间时期极小概率发生的诡异现象。
池。
描述:
Phenomenon C-96发生的明显预示为在耳边传来无端的水声。一开始,流浪者可能会将其与Phenomenon 2混淆,但Phenomenon C-96的声音要更加平静且微弱,而且会给流浪者带来一种莫名的“ 平静 ”感觉,似乎与Level 370的水音类似。
去池子里……
随后,被Phenomenon C-96影响的区域内的地面将会渗出无端的液体。这些液体被认为是非常清澈、毫无杂质的水。这些液体似乎具有光线扭曲的能力。它们会将从无论任何方向射入水体的光线从另一方面折射出水面。它们似乎也有自生成光线的异常能力。
去池子里……
经过了这些液体的光线在色谱上显示为淡蓝色,似乎具有移情作用。长时间暴露在其中会导致Phenomenon C-96的异常心理影响。
去池子里……
同时,Phenomenon C-96的液体具有一定的改变客观环境的能力。浸没在其中的物体会经历持续一段时间的嬗变过程。在这段过程中,物体暴露在液体中的表面的质地会变得光滑、平整,最后转变为类似瓷砖的材质。暴露在Phenomenon C-96的液体中的人造物会被腐蚀。1
去池子里……
因此,Phenomenon C-96被认为有着强大的破坏力。所幸,其发生概率极小。
M.E.G.驻瓦伦丁市办事处官方通告
“神坠事件”以来,Phenomenon C-96多次于夜晚发生。鉴于此现象具有对于物体的破坏能力,我们强烈建议所有市民在夜晚外出时注意耳边可能莫名出现的水声。
- 若在开阔地区,请立即跑上制高点以避免接触液体。
- 若在封闭地区,请立即跑入离您最近的开阔地区,并时刻注意现象的发生。
- 若在较高建筑物内,请立即使用紧急通道离开。
- 若在车内,请立即停车并离开。不要惜财。
长时间直视Phenomenon C-96液体将会导致进入其中的冲动。同时,摄入大量Phenomenon C-66液体将会导致难以逆转的精神影响。这样的精神影响表现为对于清澈的液体3的失常狂热,对于“纯洁”和所谓的“一种感觉”的追求。这样的精神影响一般也会导致如下现象:
- 褪去衣物,裸体的冲动。
- 对于身边他人或他物的高度鄙视,并着迷于具有水池相关要素的媒介。
- 对于身边他人的攻击倾向。
- 对于其它受到Phenomenon C-96影响的流浪者的无端爱好。
- 嗜睡症。4
- 表达自我的欲望。
- 停留在池子中的固执想法。
在每日日出后,Phenomenon C-96的效果及其液体将会消失,但给人的精神影响仍会残留。以瓦伦丁市目前的医疗及科研水平,消除此类精神影响需7- 14 20 25 30日的治疗。
去池子里……
若流浪者因先天精神影响抗性或经过抗性疫苗接种等原因未在喝下Phenomenon C-66液体后产生精神影响的人提到,Phenomenon C-96液体对他们造成了一种灼伤性的疼痛。然而,Phenomenon C-96液体并不会实际上破坏身体,其疼痛反应只是另一种精神影响。
晦明协议 - 第四附件
公开数据库编号:Phenomenon C-96
内部数据库编号:PRN-MI-4
分类:MI(Mental Influence)
出没时间段:00:00 - 日出
频次:
一般来说,在瓦伦丁市内的夜晚有极小概率发生此现象。目前暂未发现发生此现象的地区的共性。一说为此现象只会发生在人流量较大的地区,或发生在有大量市民定居的地区。
去池子里……
随着被此现象精神影响的流浪者人数的增多,此现象发生的频率似乎也有按比例增大的趋势。而若被影响者数量减少,则此现象频率则也可能减少。不过,通过各种方式彻底消除此类人群来使得此现象绝迹的尝试是不可能的。因为一旦现象的频率低过某个数字后,则将不再降低。
去池子里……
相关团体:
上文已经提到过,被此现象影响的流浪者通常都表现出了对于外界的厌恶,甚至攻击倾向。然而,他们会倾向于互相扶持、尊重。这一点在被影响者选择伙伴时心中的优先级似乎是极高的,足以使被影响者忽视彼此之间原有的矛盾、分歧,或对于对方外貌、性格的厌恶。
去池子里……
访谈 #077822
采访人:Tristina Lin
受访人:Fiona Romines - 一位被影响者
<记录开始>
Lin:那么——
Lin: [ 对一旁的同事耳语 ] 嗯……她真的不愿意穿衣服吗?
[ 同事表示,由于特殊原因,其之治疗仍未开始。同时,Tristina Lin还注意到,似乎由于对自己外表的高度反感,其身上有多处抓伤,挠伤的痕迹。同时沾有似乎是被抹匀的药液的液体。墙壁上有多道刻痕,房间的地板似乎遍布着水,这是其要求额外添加的。 ]
Lin:好吧…… [ 清嗓子 ] 那么请问,你接触PRN-MI-4是在什么时候?
Romines: [ 沉默 ]
Romines:……三天前。
Lin: [ 回头 ] [ 小声 ] 她的声音……很好听——的确很好听。
Romines:感谢夸奖。请问我们可以有共同语言吗?当然,如果你已触碰到世界的真理,那么你整个人的素质——文学素养或哲学素养等等——都自然而然地会提高。反倒是那些腐朽的人们,用污浊的物体覆盖身体,如同在泥浆中打滚的猪群——排斥着我们。
Lin:嗯!请问……你在接触池子之后看到了什么?
Romines:我……我看到了更多池子,看到了无穷无尽连在一起的池子。我看到光线穿透一个个阈点,阴影遍布一道道玄关—— [ 抽泣 ] 呜……多完美的乐章。
Lin:这个场景……这个场景的意义是什么呢?你在看到池子后,有没有什么感觉?
Romines:然后我喝下了池水……池水是多么甘甜……我仿佛回到了母亲的襁褓中,感受着笼罩着我四周一切的安全感与舒适感——我看到了池子。去池子里。
Lin:呃……我是说,请问池子对你来说是什么意义?
Romines:池子……就是池子。你见过这世界真正的样子吗?当它褪去钢铁的臃肿的外壳,剥去腐烂的布匹的脓包,你就会看到无穷无尽的瓷砖与池子。那就是世界。你相信后室是由人类的心灵剥离组合而成的吗?如果真理就是那样的话,这池子就是人类心中最美好的那一切,同时,它宽阔的水面也承载着后室的这一真理。这就是池子。
Lin: [ 记录 ] 嗯……你喝下池水后,有什么感觉呢?
Romines: [ 闭上眼 ] 我舔到了母亲的乳汁。我可以从永远闪烁着的霓虹灯牌、永远喧哗着的广告喇叭中脱离开来,脱离开那些庸俗的人,独自飞到世界的尽头,飞到池中……
Lin:那…… [ 转头示意 ] 但我喝下池水后,我只感到喉咙里一股疼痛……仿佛是喝下了刚出炉的热汤,被烧灼一般的疼痛。请问这是正常的吗?
Romines: [ 沉默 ] [ 颤抖 ]
[ 从Romines嘴里说出了一些无法辨认的词汇,同时她迅速手脚并用地爬到了房间的另一头,一边尽量使自己的背部不贴近墙壁,一边试图和Lin保持疏远的距离。 ]
Lin:嗯?
Romines: [ 无法分辨的细语 ] 母亲会清除不洁之人……母亲会清除反抗之人……
Lin:请问——
Romines: [ 无法分辨的细语 ] 去池子里……
[ Romines拒绝了回答,在接下来的时间里始终在念叨着类似祷词的语句。 ]
Romines: [ 无法分辨的细语 ] 去池子里……
Romines: [ 无法分辨的细语 ] 去池子里……
Romines: [ 无法分辨的细语 ] 去池子里……
Romines: [ 无法分辨的细语 ] 去池子里……
<记录结束>
去拥抱新世界……
行为准则:
应当:
- 听从上文的M.E.G.通告的指引。
- 逃离你确信正在被Phenomenon C-96影响的区域。
- 忽视狂热的受影响流浪者。
不应:
- 贸然闯入此Phenomenon C-96液体中,在尽可能的情况下不要长时间直视。
- 听从狂热的受影响流浪者的话语或指示。
你可曾见过崇高的样子?
你又可曾想过崇高的背后又是什么东西?
跟着母亲的指引,我们在池水中寻得了这一切的答案。冷光。我们从不需要散发着腐朽湿烂意味的暖光,也不需要闪烁着刺眼名牌广告的霓虹光。我们遗世独立,而我们站在正确的方向。你还记得那句话吗?真理总是掌握在少数人手中,因为多数人只明白争权夺利。
听我的……不要听从那些高高在上的腐朽之人的话。去池子里。去面对真相,去面对真理……只有当你真正窥视到世界年轻的时候的样子之后,你才会去渴求清静,渴求崇高。去超脱,去抵抗,你应是一个懂得独立思考的人。去池子里……
去池子里……
去池子里……
去拥抱真正的世界……
截止至今天 [ 此处内容实时更新 ],晦明协议共有31条内容,附有25条附件。
晦明协议的规定可总结为:
- 若非直接涉及到市民基本权利,瓦伦丁市对于PRN的行为不作额外干涉;
- 若新的PRN被发现,则应提供一份同时发布在公共数据与内部数据库中的档案;
- PRN不可被用于贸易、生产用途。在必须情况下可用于医疗用途;
- 对于明确表现出感知力甚至智力的人形PRN,瓦伦丁市可酌情给予其公民身份。
同时,晦明协议的标准附件内容应为包括:PRN的公开数据库编号,内部数据库编号,其分类(目前共有14种分类)。及其出没时间。实例见下。
作者为Dancin Rain | 批评由Eltrac
Included page "component:valentine-outro-collapsible" does not exist (create it now)
