2020-12-31 01:45:49 +01:00
|
|
|
use std::collections::HashMap;
|
2020-12-20 22:33:42 +01:00
|
|
|
use std::fmt::Write;
|
|
|
|
|
|
|
|
use anyhow::{anyhow, Context, Result};
|
|
|
|
|
|
|
|
const INPUT: &str = include_str!("../input/day20.txt");
|
|
|
|
|
2020-12-31 15:09:00 +01:00
|
|
|
const SNAKE: &str = include_str!("../input/day20_snake.txt");
|
|
|
|
|
2020-12-20 22:33:42 +01:00
|
|
|
pub fn run() -> Result<String> {
|
|
|
|
let mut res = String::with_capacity(128);
|
|
|
|
|
|
|
|
writeln!(res, "part 1: {}", part1(INPUT)?)?;
|
2020-12-31 15:09:00 +01:00
|
|
|
writeln!(res, "part 2: {}", part2(INPUT)?)?;
|
2020-12-20 22:33:42 +01:00
|
|
|
|
|
|
|
Ok(res)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn part1(input: &str) -> Result<u64> {
|
|
|
|
let tiles: Vec<Tile> = input.split("\n\n").map(str::parse).collect::<Result<_>>()?;
|
|
|
|
|
|
|
|
Ok(tiles
|
|
|
|
.iter()
|
|
|
|
.filter_map(|tile| {
|
2020-12-30 22:11:19 +01:00
|
|
|
let count = tile.neighbours(&tiles).len();
|
2020-12-20 22:33:42 +01:00
|
|
|
|
|
|
|
// corners have 2 edges in common
|
|
|
|
if count == 2 {
|
|
|
|
Some(tile.id)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.product())
|
|
|
|
}
|
|
|
|
|
2020-12-31 15:09:00 +01:00
|
|
|
fn part2(input: &str) -> Result<usize> {
|
2020-12-31 01:45:49 +01:00
|
|
|
let tiles: Vec<Tile> = input.split("\n\n").map(str::parse).collect::<Result<_>>()?;
|
|
|
|
|
|
|
|
let image = Image::from_tiles(&tiles);
|
2020-12-31 15:09:00 +01:00
|
|
|
let snake: Pattern = SNAKE.parse()?;
|
|
|
|
|
|
|
|
let snake_number = image.count_pattern(&snake);
|
|
|
|
let snake_pixels = snake.offsets.len() * snake_number;
|
|
|
|
|
|
|
|
let pixels_number = image.count_pixels();
|
2020-12-31 01:45:49 +01:00
|
|
|
|
2020-12-31 15:09:00 +01:00
|
|
|
Ok(pixels_number - snake_pixels)
|
2020-12-31 01:45:49 +01:00
|
|
|
}
|
|
|
|
|
2020-12-30 22:11:19 +01:00
|
|
|
#[derive(Debug, Clone, Copy)]
|
|
|
|
enum Rotation {
|
|
|
|
R90,
|
|
|
|
R180,
|
|
|
|
R270,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Represents a transformation of a tile or image.
|
|
|
|
///
|
|
|
|
/// Note: we don't need a horizontal and a vertical flip, these result in the same output as a 180
|
|
|
|
/// degree rotation when combined, so only one is necessary
|
2021-12-04 16:55:40 +01:00
|
|
|
#[derive(Debug, Default, Clone, Copy)]
|
2020-12-30 22:11:19 +01:00
|
|
|
struct Transform {
|
|
|
|
flip: bool,
|
|
|
|
rotation: Option<Rotation>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Transform {
|
|
|
|
fn new(flip: bool, rotation: Option<Rotation>) -> Self {
|
|
|
|
Self { flip, rotation }
|
|
|
|
}
|
|
|
|
|
|
|
|
fn all() -> Vec<Transform> {
|
|
|
|
vec![
|
|
|
|
Transform::new(false, None),
|
|
|
|
Transform::new(false, Some(Rotation::R90)),
|
|
|
|
Transform::new(false, Some(Rotation::R180)),
|
|
|
|
Transform::new(false, Some(Rotation::R270)),
|
|
|
|
Transform::new(true, None),
|
|
|
|
Transform::new(true, Some(Rotation::R90)),
|
|
|
|
Transform::new(true, Some(Rotation::R180)),
|
|
|
|
Transform::new(true, Some(Rotation::R270)),
|
|
|
|
]
|
|
|
|
}
|
2020-12-31 15:09:00 +01:00
|
|
|
|
2020-12-31 15:29:42 +01:00
|
|
|
/// Applies the transform to coordinates
|
|
|
|
///
|
|
|
|
/// The returned coordinates can be used to access a 2D array, acting as if the array was
|
|
|
|
/// transformed
|
2020-12-31 15:09:00 +01:00
|
|
|
fn apply(
|
|
|
|
&self,
|
|
|
|
mut i: usize,
|
|
|
|
mut j: usize,
|
|
|
|
max_width: usize,
|
|
|
|
max_height: usize,
|
|
|
|
) -> (usize, usize) {
|
|
|
|
if let Some(rotation) = self.rotation {
|
|
|
|
match rotation {
|
|
|
|
Rotation::R90 => {
|
|
|
|
let prev_i = i;
|
|
|
|
i = j;
|
|
|
|
j = (max_width - 1) - prev_i;
|
|
|
|
}
|
|
|
|
Rotation::R180 => {
|
|
|
|
i = (max_height - 1) - i;
|
|
|
|
j = (max_width - 1) - j;
|
|
|
|
}
|
|
|
|
Rotation::R270 => {
|
|
|
|
let prev_j = j;
|
|
|
|
j = i;
|
|
|
|
i = (max_height - 1) - prev_j;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if self.flip {
|
|
|
|
i = (max_height - 1) - i;
|
|
|
|
}
|
|
|
|
|
|
|
|
(i, j)
|
|
|
|
}
|
2020-12-30 22:11:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Copy, Hash, PartialEq, Eq)]
|
|
|
|
enum Position {
|
|
|
|
Down,
|
|
|
|
Left,
|
|
|
|
Right,
|
|
|
|
Up,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Position {
|
|
|
|
fn opposite(&self) -> Self {
|
|
|
|
match self {
|
|
|
|
Self::Down => Self::Up,
|
|
|
|
Self::Left => Self::Right,
|
|
|
|
Self::Right => Self::Left,
|
|
|
|
Self::Up => Self::Down,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn ordered() -> [Self; 4] {
|
|
|
|
[Self::Down, Self::Left, Self::Right, Self::Up]
|
|
|
|
}
|
2020-12-31 01:45:49 +01:00
|
|
|
|
2020-12-31 15:29:42 +01:00
|
|
|
/// Applies the position to coordinates, shifting in the corresponding direction
|
2020-12-31 01:45:49 +01:00
|
|
|
fn apply(&self, (i, j): (i64, i64)) -> (i64, i64) {
|
|
|
|
let (mut di, mut dj) = (0, 0);
|
|
|
|
|
|
|
|
match self {
|
|
|
|
Self::Down => di = 1,
|
|
|
|
Self::Left => dj = -1,
|
|
|
|
Self::Right => dj = 1,
|
|
|
|
Self::Up => di = -1,
|
|
|
|
}
|
|
|
|
|
|
|
|
(i + di, j + dj)
|
|
|
|
}
|
2020-12-30 22:11:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const TILE_WIDTH: usize = 10;
|
|
|
|
const TILE_HEIGHT: usize = 10;
|
|
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
2020-12-20 22:33:42 +01:00
|
|
|
struct Tile {
|
|
|
|
id: u64,
|
2020-12-30 22:11:19 +01:00
|
|
|
cells: [[bool; TILE_WIDTH]; TILE_HEIGHT],
|
|
|
|
transform: Transform,
|
|
|
|
}
|
|
|
|
|
|
|
|
type Borders = [Vec<bool>; 4];
|
|
|
|
|
|
|
|
impl Tile {
|
2020-12-31 15:29:42 +01:00
|
|
|
/// Clones the tile and returns a new one, identical but with a different transform
|
2020-12-30 22:11:19 +01:00
|
|
|
fn with_transform(&self, transform: Transform) -> Self {
|
|
|
|
let mut res = self.clone();
|
|
|
|
res.transform = transform;
|
|
|
|
res
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the tile's 4 borders, according to its current transformation.
|
|
|
|
///
|
|
|
|
/// See [`Self::borders_with_transform()`] for more details
|
|
|
|
fn borders(&self) -> Borders {
|
|
|
|
self.borders_with_transform(self.transform)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the tile's 4 borders, according to the provided transformation.
|
|
|
|
///
|
|
|
|
/// Each border is associated with its position on the tile
|
|
|
|
fn borders_with_transform(&self, transform: Transform) -> Borders {
|
|
|
|
let mut up = Vec::new();
|
|
|
|
let mut down = Vec::new();
|
|
|
|
for k in 0..TILE_WIDTH {
|
|
|
|
up.push(self.get_with_transform(0, k, transform));
|
|
|
|
down.push(self.get_with_transform(TILE_HEIGHT - 1, k, transform));
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut left = Vec::new();
|
|
|
|
let mut right = Vec::new();
|
|
|
|
for k in 0..TILE_HEIGHT {
|
|
|
|
left.push(self.get_with_transform(k, 0, transform));
|
|
|
|
right.push(self.get_with_transform(k, TILE_WIDTH - 1, transform));
|
|
|
|
}
|
|
|
|
|
|
|
|
// NOTE: the ordering is important, must use the enum's integer representations as indices
|
|
|
|
[down, left, right, up]
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the pixel at indices (i, j) in the tile.
|
|
|
|
///
|
|
|
|
/// Uses the tile's current `self.transform`.
|
|
|
|
fn get(&self, i: usize, j: usize) -> bool {
|
|
|
|
self.get_with_transform(i, j, self.transform)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the pixel at indices (i, j) in the tile, using the provided transform.
|
2020-12-31 15:09:00 +01:00
|
|
|
fn get_with_transform(&self, i: usize, j: usize, transform: Transform) -> bool {
|
|
|
|
let (i, j) = transform.apply(i, j, TILE_WIDTH, TILE_HEIGHT);
|
2020-12-30 22:11:19 +01:00
|
|
|
self.cells[i][j]
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns a list of neighbour tiles, along with the offset where they'd fit compared to the
|
|
|
|
/// current tile (depending on which borders match)
|
|
|
|
fn neighbours(&self, tiles: &[Tile]) -> Vec<(Position, Tile)> {
|
|
|
|
let borders = &self.borders();
|
|
|
|
|
|
|
|
tiles
|
|
|
|
.iter()
|
|
|
|
.filter(|other| *other != self)
|
|
|
|
.flat_map(|other| {
|
|
|
|
Transform::all().into_iter().filter_map(move |transform| {
|
|
|
|
let other_borders = other.borders_with_transform(transform);
|
|
|
|
|
|
|
|
for (bord, pos) in other_borders.iter().zip(Position::ordered().iter()) {
|
|
|
|
let opposite = pos.opposite();
|
|
|
|
|
|
|
|
if bord == &borders[opposite as usize] {
|
|
|
|
return Some((opposite, other.with_transform(transform)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
None
|
|
|
|
})
|
|
|
|
})
|
|
|
|
.collect()
|
|
|
|
}
|
2020-12-20 22:33:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl std::cmp::PartialEq for Tile {
|
|
|
|
fn eq(&self, other: &Self) -> bool {
|
|
|
|
self.id == other.id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl std::str::FromStr for Tile {
|
|
|
|
type Err = anyhow::Error;
|
|
|
|
|
|
|
|
fn from_str(s: &str) -> Result<Self> {
|
|
|
|
let mut lines = s.lines();
|
|
|
|
|
|
|
|
let title = lines.next().context("couldn't find line with tile ID")?;
|
|
|
|
let space = title.find(' ').unwrap();
|
|
|
|
let colon = title.find(':').unwrap();
|
|
|
|
let id = title[(space + 1)..colon].parse()?;
|
|
|
|
|
2020-12-30 22:11:19 +01:00
|
|
|
let mut cells = [[false; TILE_WIDTH]; TILE_HEIGHT];
|
2020-12-20 22:33:42 +01:00
|
|
|
|
|
|
|
lines
|
|
|
|
.enumerate()
|
|
|
|
.try_for_each::<_, Result<()>>(|(i, line)| {
|
|
|
|
line.chars().enumerate().try_for_each(|(j, c)| {
|
|
|
|
let c = match c {
|
|
|
|
'#' => true,
|
|
|
|
'.' => false,
|
|
|
|
_ => return Err(anyhow!("unknown char `{}` while parsing tile", c)),
|
|
|
|
};
|
|
|
|
|
2020-12-30 22:11:19 +01:00
|
|
|
cells[i][j] = c;
|
2020-12-20 22:33:42 +01:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
})?;
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
})?;
|
|
|
|
|
|
|
|
Ok(Tile {
|
|
|
|
id,
|
2020-12-30 22:11:19 +01:00
|
|
|
cells,
|
|
|
|
transform: Transform::default(),
|
2020-12-20 22:33:42 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-31 01:45:49 +01:00
|
|
|
struct Image {
|
|
|
|
width: usize,
|
|
|
|
height: usize,
|
|
|
|
pixels: Vec<Vec<bool>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Image {
|
2020-12-31 15:29:42 +01:00
|
|
|
/// From a list of [`Tile`], tries to match each tile to its neighbours, and reconstruct the
|
|
|
|
/// image
|
2020-12-31 01:45:49 +01:00
|
|
|
fn from_tiles(tiles: &[Tile]) -> Self {
|
|
|
|
let mut todo: Vec<(i64, i64)> = vec![(0, 0)];
|
|
|
|
let mut image_positions = HashMap::new();
|
|
|
|
image_positions.insert((0, 0), tiles[0].clone());
|
|
|
|
|
|
|
|
// compute each image position depending on its neighbours
|
|
|
|
while !todo.is_empty() {
|
|
|
|
let pos = todo.pop().unwrap();
|
|
|
|
let tile = &image_positions[&pos];
|
|
|
|
|
|
|
|
for (direction, other_tile) in tile.neighbours(tiles) {
|
|
|
|
let new_pos = direction.apply(pos);
|
|
|
|
#[allow(clippy::map_entry)]
|
|
|
|
if !image_positions.contains_key(&new_pos) {
|
|
|
|
image_positions.insert(new_pos, other_tile);
|
|
|
|
todo.push(new_pos);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let image_positions = image_positions.into_iter().collect::<Vec<_>>();
|
|
|
|
|
|
|
|
let i_min = *image_positions.iter().map(|((i, _), _)| i).min().unwrap();
|
|
|
|
let j_min = *image_positions.iter().map(|((_, j), _)| j).min().unwrap();
|
|
|
|
|
|
|
|
let image_positions = image_positions
|
|
|
|
.into_iter()
|
|
|
|
.map(|((i, j), tile)| {
|
|
|
|
(
|
|
|
|
((i + i_min.abs()) as usize, (j + j_min.abs()) as usize),
|
|
|
|
tile,
|
|
|
|
)
|
|
|
|
})
|
|
|
|
.collect::<Vec<((usize, usize), Tile)>>();
|
|
|
|
|
|
|
|
const IMAGE_TILE_HEIGHT: usize = TILE_HEIGHT - 2;
|
|
|
|
const IMAGE_TILE_WIDTH: usize = TILE_WIDTH - 2;
|
|
|
|
|
|
|
|
let height = *image_positions.iter().map(|((i, _), _)| i).max().unwrap() as usize + 1;
|
|
|
|
let height = height * IMAGE_TILE_HEIGHT;
|
|
|
|
let width = *image_positions.iter().map(|((_, j), _)| j).max().unwrap() as usize + 1;
|
|
|
|
let width = width * IMAGE_TILE_HEIGHT;
|
|
|
|
|
|
|
|
let mut pixels = Vec::new();
|
|
|
|
for _ in 0..height {
|
|
|
|
let mut line: Vec<bool> = Vec::new();
|
|
|
|
line.resize_with(width, Default::default);
|
|
|
|
pixels.push(line);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (pos, tile) in image_positions {
|
|
|
|
let begin_i = IMAGE_TILE_HEIGHT * pos.0 as usize;
|
|
|
|
let begin_j = IMAGE_TILE_WIDTH * pos.1 as usize;
|
|
|
|
|
|
|
|
for i in 0..IMAGE_TILE_HEIGHT {
|
|
|
|
for j in 0..IMAGE_TILE_WIDTH {
|
|
|
|
// + 1 in the tile to skip the border
|
|
|
|
pixels[begin_i + i][begin_j + j] = tile.get(i + 1, j + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Self {
|
|
|
|
width,
|
|
|
|
height,
|
|
|
|
pixels,
|
|
|
|
}
|
|
|
|
}
|
2020-12-31 15:09:00 +01:00
|
|
|
|
2020-12-31 15:29:42 +01:00
|
|
|
/// Access pixel at provided coordinates, simulating the transformation on the image first
|
2020-12-31 15:09:00 +01:00
|
|
|
fn get_with_transform(&self, i: usize, j: usize, transform: &Transform) -> bool {
|
|
|
|
let (i, j) = transform.apply(i, j, self.width, self.height);
|
|
|
|
self.pixels[i][j]
|
|
|
|
}
|
|
|
|
|
2020-12-31 15:29:42 +01:00
|
|
|
/// Get number of "set" pixels
|
2020-12-31 15:09:00 +01:00
|
|
|
fn count_pixels(&self) -> usize {
|
|
|
|
self.pixels
|
|
|
|
.iter()
|
|
|
|
.flat_map(|line| {
|
|
|
|
line.iter()
|
|
|
|
.filter_map(|pix| if *pix { Some(()) } else { None })
|
|
|
|
})
|
|
|
|
.count()
|
|
|
|
}
|
|
|
|
|
2020-12-31 15:29:42 +01:00
|
|
|
/// Check if pattern is present at a specific location
|
2020-12-31 15:09:00 +01:00
|
|
|
fn has_pattern_at(&self, i: usize, j: usize, transform: &Transform, pattern: &Pattern) -> bool {
|
|
|
|
pattern
|
|
|
|
.offsets
|
|
|
|
.iter()
|
|
|
|
.all(|(di, dj)| self.get_with_transform(i + di, j + dj, transform))
|
|
|
|
}
|
|
|
|
|
2020-12-31 15:29:42 +01:00
|
|
|
/// Count occurrences of a pattern in the image, trying every transformation possible and
|
|
|
|
/// returning the maximum number of patterns found in any transformation
|
2020-12-31 15:09:00 +01:00
|
|
|
fn count_pattern(&self, pattern: &Pattern) -> usize {
|
|
|
|
Transform::all()
|
|
|
|
.into_iter()
|
|
|
|
.map(|transform| {
|
|
|
|
let mut count = 0;
|
|
|
|
for i in 0..(self.height - pattern.height) {
|
|
|
|
for j in 0..(self.width - pattern.width) {
|
|
|
|
if self.has_pattern_at(i, j, &transform, pattern) {
|
|
|
|
count += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
count
|
|
|
|
})
|
|
|
|
.max()
|
|
|
|
.unwrap()
|
|
|
|
}
|
2020-12-31 01:45:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl std::fmt::Display for Image {
|
|
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
|
|
for i in 0..self.height {
|
|
|
|
for j in 0..self.width {
|
|
|
|
let c = if self.pixels[i][j] { '#' } else { '.' };
|
|
|
|
write!(f, "{}", c)?;
|
|
|
|
}
|
|
|
|
writeln!(f)?;
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-31 15:09:00 +01:00
|
|
|
struct Pattern {
|
|
|
|
height: usize,
|
|
|
|
width: usize,
|
|
|
|
offsets: Vec<(usize, usize)>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Pattern {
|
|
|
|
fn from_offsets(offsets: Vec<(usize, usize)>) -> Self {
|
|
|
|
let height = *offsets.iter().map(|(x, _)| x).max().unwrap_or(&0);
|
|
|
|
let width = *offsets.iter().map(|(_, y)| y).max().unwrap_or(&0);
|
|
|
|
|
|
|
|
Self {
|
|
|
|
height,
|
|
|
|
width,
|
|
|
|
offsets,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl std::str::FromStr for Pattern {
|
|
|
|
type Err = anyhow::Error;
|
|
|
|
|
|
|
|
fn from_str(s: &str) -> Result<Self> {
|
|
|
|
let offsets = s
|
|
|
|
.lines()
|
|
|
|
.enumerate()
|
|
|
|
.flat_map(|(i, line)| {
|
|
|
|
line.chars().enumerate().filter_map(move |(j, c)| match c {
|
|
|
|
'#' => Some(Ok((i, j))),
|
|
|
|
' ' => None,
|
|
|
|
_ => Some(Err(anyhow!("unexpected character in Pattern: `{}`", c))),
|
|
|
|
})
|
|
|
|
})
|
|
|
|
.collect::<Result<_>>()?;
|
|
|
|
|
|
|
|
Ok(Self::from_offsets(offsets))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-20 22:33:42 +01:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
const PROVIDED: &str = include_str!("../input/day20_provided.txt");
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn part1_provided() {
|
|
|
|
assert_eq!(part1(PROVIDED).unwrap(), 20_899_048_083_289);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn part1_real() {
|
|
|
|
assert_eq!(part1(INPUT).unwrap(), 5_775_714_912_743);
|
|
|
|
}
|
2020-12-31 15:09:00 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn part2_provided() {
|
|
|
|
assert_eq!(part2(PROVIDED).unwrap(), 273);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn part2_real() {
|
|
|
|
assert_eq!(part2(INPUT).unwrap(), 1836);
|
|
|
|
}
|
2020-12-20 22:33:42 +01:00
|
|
|
}
|