diff --git a/.DS_Store b/.DS_Store index addc896..f57e8a7 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..ffc535a --- /dev/null +++ b/.dockerignore @@ -0,0 +1,78 @@ +# Git +.git/ +.gitignore +.gitattributes + +# Documentation +README.md +*.md +DEPLOYMENT.md +MIGRATION.md +ROBUSTNESS_ANALYSIS.md +CORRECTIONS.md + +# Docker +docker-compose.yml +docker-compose*.yml +Dockerfile +.dockerignore + +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +*.egg-info/ +.venv/ +venv/ +ENV/ +env/ +.pytest_cache/ +.coverage +.mypy_cache/ + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ +.DS_Store +.continue/ + +# Data volumes (don't copy into image) +data/uploads/* +bookstack/ +docmost/ +matrix/ +ollama/ +open-webui/ +backup/ +backups/ + +# Backup files +*.backup +*.bak +*.tar.gz +*.zip + +# Logs +*.log +logs/ + +# Environment +.env +.env.local +.env.example + +# Scripts not needed in container +backup.sh +restore.sh +get_room_id.py +test_send_pdf.py +run_app.py + +# Unused config files +unused_composes.yml +bookstack.yml diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..b0919f5 --- /dev/null +++ b/.env.example @@ -0,0 +1,85 @@ +# ======================================== +# Studio EinsZwoVier - Environment Configuration +# ======================================== +# Copy this file to .env and update with your settings + +# ======================================== +# SERVER CONFIGURATION +# ======================================== +# Change this to your server's hostname or IP address +SERVER_HOSTNAME=einszwovier.local + +# Environment +ENVIRONMENT=production + +# ======================================== +# PRINT CALCULATOR SETTINGS +# ======================================== +RATE_PER_M2_BLACK=4.0 +RATE_PER_M2_COLOR=5.0 + +# ======================================== +# MATRIX SERVER SETTINGS +# ======================================== +# Matrix user format: @username:${SERVER_HOSTNAME} +MATRIX_USER="@einszwovier:${SERVER_HOSTNAME}" +MATRIX_PASS="your_matrix_password_here" +MATRIX_HOMESERVER="http://${SERVER_HOSTNAME}:8008" + +# Matrix Room ID (get this after first setup using get_room_id.py) +# Format: !roomid:${SERVER_HOSTNAME} +MATRIX_ROOM="!eFWbWEnYsgeIKqyfjw:${SERVER_HOSTNAME}" + +# ======================================== +# BOOKSTACK (WIKI) SETTINGS +# ======================================== +BOOKSTACK_VERSION=latest +BOOKSTACK_PORT=6875 +BOOKSTACK_APP_URL=http://${SERVER_HOSTNAME}:6875 + +# Generate new key with: docker run --rm linuxserver/bookstack php artisan key:generate --show +BOOKSTACK_APP_KEY=base64:YOUR_BOOKSTACK_KEY_HERE + +# ======================================== +# DATABASE SETTINGS (BookStack) +# ======================================== +DB_HOST=bookstack-mariadb +DB_PORT=3306 +DB_DATABASE=bookstack +DB_USERNAME=bookstack +DB_PASSWORD=your_secure_database_password_here + +# MariaDB root password +MARIADB_ROOT_PASSWORD=your_secure_root_password_here + +# ======================================== +# MATRIX SYNAPSE SETTINGS +# ======================================== +SYNAPSE_PORT=8008 +SYNAPSE_SERVER_NAME=${SERVER_HOSTNAME} + +# ======================================== +# OLLAMA (LLM) SETTINGS +# ======================================== +OLLAMA_PORT=11434 + +# ======================================== +# OPEN-WEBUI SETTINGS +# ======================================== +OPENWEBUI_PORT=8080 +OPENWEBUI_OLLAMA_BASE_URL=http://ollama:11434 + +# ======================================== +# PORTAINER (ADMIN) SETTINGS +# ======================================== +PORTAINER_PORT=9000 + +# ======================================== +# NOTES FOR NEW SERVER SETUP +# ======================================== +# 1. Copy this file to .env +# 2. Update SERVER_HOSTNAME to your new server +# 3. Generate new BOOKSTACK_APP_KEY +# 4. Change all passwords to secure values +# 5. After starting Matrix, run get_room_id.py to get MATRIX_ROOM +# 6. Run: docker-compose up -d --build diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md new file mode 100644 index 0000000..df0c438 --- /dev/null +++ b/.github/copilot-instructions.md @@ -0,0 +1,144 @@ +# Copilot Instructions for Studio EinsZwoVier Web Application + +## Project Overview +This is a **FastAPI-based web application** serving as a multi-service hub for Studio EinsZwoVier, a collaborative print studio. The main app provides a PDF print cost calculator with automated ink coverage analysis, integrated with a Matrix server for order collection and payment tracking. + +## Architecture & Service Boundaries + +### Core FastAPI Application (`main.py`, port 80→8000) +- **Landing page** (`/`) with presence state management (studio open/closed indicator) +- **Cost calculator** (`/cost`) for PDF analysis and price estimation +- **About page** (`/about`) +- **Order submission** via Matrix integration + +### Multi-Container Stack (Docker Compose) +The application orchestrates 7+ containerized services: +- **web**: FastAPI app (this repo's code) +- **synapse**: Matrix server for print job collection (port 8008) +- **ollama**: Local LLM inference (port 11434) +- **open-webui**: LLM chat interface (port 8080) +- **bookstack + mariadb**: Documentation wiki +- **docmost + postgres + redis**: Knowledge management system +- **watchtower**: Auto-updates all containers every 24h + +### PDF Processing Pipeline (`cost_calculator.py`) +1. **Upload** → Validate `.pdf` extension only +2. **Page-by-page analysis**: + - Extract dimensions from `CropBox` (preferred) or `MediaBox` + - Convert PDF points to meters: `(points / 72.0) * 0.0254` + - Render at 150 DPI using `pdf2image` + - Calculate ink coverage: pixels with RGB < 250 = ink + - Detect color vs B&W: HSV saturation analysis (>0.1% pixels with sat>10 = color) +3. **Cost calculation**: area (m²) × rate (from env vars `RATE_PER_M2_BLACK`/`COLOR`) + +### Matrix Integration (`mailer.py`) +- Uses `matrix-nio` async client to send orders +- **Critical**: Must set `MATRIX_USER`, `MATRIX_PASS`, `MATRIX_HOMESERVER` env vars +- Sends structured summary (German language) + PDF upload to hardcoded room ID +- **Synchronous wrapper** `send_order_sync()` bridges async/sync contexts for FastAPI + +## Developer Workflows + +### Local Development +```bash +# Option 1: Direct Python execution (auto-reload) +python run_app.py + +# Option 2: Full stack with Docker Compose +docker-compose up --build -d + +# Access at: http://localhost (or einszwovier.local in local network) +``` + +### Environment Configuration +Create `.env` file with: +```bash +# Print rates (€/m²) +RATE_PER_M2_BLACK=4.0 +RATE_PER_M2_COLOR=5.0 + +# Matrix integration +MATRIX_USER=@bot:homeserver +MATRIX_PASS=secret +MATRIX_HOMESERVER=http://einszwovier.local:8008 + +# Service ports +SYNAPSE_PORT=8008 +OLLAMA_PORT=11434 +OPENWEBUI_PORT=8080 +BOOKSTACK_PORT=6875 + +# BookStack/DB configs (see docker-compose.yml for full list) +``` + +### Debugging Matrix Integration +Use `get_room_id.py` to discover Matrix room IDs: +```python +# Connects to local Matrix server, joins room, prints room IDs +python get_room_id.py +``` +Then update the hardcoded room ID in `main.py` line 127: `room_id="!eFW..."` + +## Project-Specific Conventions + +### Presence State Management +- In-memory global `presence_state` dict tracks studio open/closed status +- API endpoints: `GET /presence`, `POST /presence`, `POST /presence/toggle` +- Background task `update_presence_periodically()` runs every 5 min (currently no-op placeholder) + +### German UI/UX +- Templates use German language exclusively +- Error/success messages in German (e.g., "Dein Auftrag wurde erfolgreich gesendet!") +- Cost calculator displays "S/W" (Schwarz/Weiß) vs "Farbe" (color) + +### File Organization +- **Uploads persist** in `data/uploads/` (mounted volume in Docker) +- **Templates** in `templates/` (Jinja2, extending `base.html`) +- **Static assets** in `static/` (CSS, fonts, images) +- **Service data** in dedicated dirs: `bookstack/`, `docmost/`, `matrix/`, `ollama/`, `open-webui/` + +### Docker Production Command +The `Dockerfile` uses **Gunicorn with Uvicorn workers** for production: +```bash +gunicorn main:app -k uvicorn.workers.UvicornWorker --bind 0.0.0.0:8000 --workers 4 --timeout 120 +``` +But `docker-compose.yml` overrides with `--reload` for dev convenience. + +## Critical Integration Points + +### PDF Analysis Return Structure +`analyze_pdf()` returns: +```python +{ + "filename": str, + "pages": [{"page": int, "width_m": float, "height_m": float, + "area_m2": float, "ink_pct": float, "is_color": bool, "cost": float}], + "total_area_black": float, + "total_area_color": float, + "total_cost_black": float, + "total_cost_color": float, + "grand_total": float +} +``` + +### Matrix Room ID Hardcoding +⚠️ **Known technical debt**: Room ID is hardcoded in `send_order_endpoint()`. Update when Matrix server changes or for different deployment environments. + +### Async/Sync Bridge Pattern +Matrix client is async, but FastAPI endpoint is sync. Pattern used: +```python +def send_order_sync(...): + loop = asyncio.new_event_loop() + asyncio.set_event_loop(loop) + loop.run_until_complete(send_order(...)) + loop.close() +``` + +## External Dependencies +- **Poppler** (system): Required for `pdf2image` (installed in Dockerfile) +- **OpenCV** (system): Requires `libgl1`, `libglib2.0-0` (installed in Dockerfile) +- **Font files**: Custom fonts in `static/fonts/` (BauPro, HealTheWebA/B, SISTEMAS) + +## Testing & Utilities +- `test_send_pdf.py`: Manual test script for Matrix integration +- No automated test suite currently implemented diff --git a/.gitignore b/.gitignore index 4dcfc4e..e3cb230 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,105 @@ - +# Environment variables (NEVER commit these!) .env -__pycache__ -.continue -.venv -matrix/data -ollama -open-webui \ No newline at end of file +.env.local +.env.*.local +# Keep .env.example for reference +!.env.example + +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +pip-wheel-metadata/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# Virtual environments +.venv/ +venv/ +ENV/ +env/ + +# IDE and editors +.vscode/ +.idea/ +*.swp +*.swo +*~ +.DS_Store +.continue/ + +# Docker data volumes (NEVER commit these - contain private data!) +matrix/data/ +matrix/*.signing.key +ollama/ +open-webui/ +data/uploads/ +data/*.pdf +docmost/db/ +docmost/redis/ +docmost/storage/ +bookstack/bookstack_db_data/ +bookstack/bookstack_app_data/ + +# Private keys and certificates +*.key +*.pem +!dhparams.pem +*.crt +*.p12 +*.pfx + +# Backup files +*.backup +*.bak +backup/ +backups/ + +# Logs +*.log +logs/ +*.log.* + +# OS specific +.DS_Store +Thumbs.db +desktop.ini + +# Testing +.pytest_cache/ +.coverage +htmlcov/ +.tox/ +.hypothesis/ + +# Jupyter Notebook +.ipynb_checkpoints + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Database files +*.db +*.db-shm +*.db-wal +*.sqlite +*.sqlite3 diff --git a/DEV_SETUP.md b/DEV_SETUP.md new file mode 100644 index 0000000..138bb0f --- /dev/null +++ b/DEV_SETUP.md @@ -0,0 +1,78 @@ +# Development Setup Guide + +## Quick Start for Local Development + +The `run_app.py` script mimics Docker production conditions while enabling fast iteration. + +### Standard Development Mode (Recommended) +```bash +python run_app.py +``` + +**Features:** +- ✓ Loads environment variables from `.env` file +- ✓ Single Uvicorn worker with **fast auto-reload** +- ✓ Mimics Docker environment (`PYTHONUNBUFFERED=1`) +- ✓ Creates upload directory automatically +- ✓ Binds to `0.0.0.0:8000` (same as Docker) + +**Best for:** Quick code iterations, template changes, debugging + +### Production-Like Mode +```bash +python run_app.py --gunicorn +``` + +**Features:** +- ✓ Gunicorn with 4 Uvicorn workers (exactly like Docker) +- ✓ 120s timeout (same as Docker) +- ✓ Gunicorn's reload (slower but tests production server) +- ✓ Tests multi-worker behavior + +**Best for:** Testing before deploying to Docker, load testing + +## Environment Variables + +The script automatically loads `.env` file variables: +- `RATE_PER_M2_BLACK` - Black & white print rate (default: 4.0) +- `RATE_PER_M2_COLOR` - Color print rate (default: 5.0) +- `SERVER_HOSTNAME` - Server hostname (default: einszwovier.local) +- `BOOKSTACK_PORT`, `OPENWEBUI_PORT`, `PORTAINER_PORT` - Service ports +- `MATRIX_USER`, `MATRIX_PASS`, `MATRIX_HOMESERVER` - Matrix integration + +## Comparison: Dev vs Docker + +| Feature | `python run_app.py` | `docker-compose up` | +|---------|---------------------|---------------------| +| Server | Uvicorn (single worker) | Gunicorn + Uvicorn (4 workers) | +| Auto-reload | ✓ Fast (watches all files) | ✓ Slow (Docker rebuild) | +| Env loading | `.env` file | `.env` file | +| Port | 8000 | 80→8000 | +| Memory limit | None | 1GB limit | +| Health checks | No | Yes | +| Dependencies | All services | Isolated | + +## Troubleshooting + +### `.env` file not found +Create `.env` file from template: +```bash +cp .env.example .env +``` + +### Port 8000 already in use +```bash +# Find and kill process +lsof -ti:8000 | xargs kill -9 +``` + +### Environment variables not loading +Ensure `python-dotenv` is installed: +```bash +pip install python-dotenv +``` + +### Testing Matrix integration locally +1. Start Matrix server: `docker-compose up synapse -d` +2. Run app: `python run_app.py` +3. Submit test order via `/cost` endpoint diff --git a/Dockerfile b/Dockerfile index 16a0f96..9f4929d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,29 +8,35 @@ ENV PYTHONUNBUFFERED=1 # --- Set working directory --- WORKDIR /cost-assistant -# --- Install system dependencies (minimal for OpenCV, Poppler, PDF/image handling) --- +# --- Install system dependencies (cached until packages change) --- RUN apt-get update && apt-get install -y --no-install-recommends \ libgl1 \ libglib2.0-0 \ poppler-utils \ + curl \ && rm -rf /var/lib/apt/lists/* -# --- Copy requirements and install Python dependencies --- +# --- Install Python dependencies (cached until requirements.txt changes) --- COPY requirements.txt . RUN python -m pip install --no-cache-dir -r requirements.txt -# --- Copy project files --- -COPY . . +# --- Create user early (cached, rarely changes) --- +RUN groupadd -r appuser && useradd -r -g appuser appuser -# --- Create upload folder and set permissions --- -RUN mkdir -p data/uploads \ - && groupadd -r appuser && useradd -r -g appuser appuser \ - && chown -R appuser:appuser data/uploads +# --- Copy only necessary application files --- +COPY --chown=appuser:appuser main.py . +COPY --chown=appuser:appuser cost_calculator.py . +COPY --chown=appuser:appuser mailer.py . +COPY --chown=appuser:appuser templates/ ./templates/ +COPY --chown=appuser:appuser static/ ./static/ + +# --- Create upload folder --- +RUN mkdir -p data/uploads && chown -R appuser:appuser data/uploads # --- Switch to non-root user for security --- USER appuser -# --- Expose internal port (optional, handled via Docker Compose) --- +# --- Expose internal port --- EXPOSE 8000 # --- Run Gunicorn with Uvicorn worker for production --- diff --git a/PORTAINER_QUICKREF.md b/PORTAINER_QUICKREF.md new file mode 100644 index 0000000..c1d8d9c --- /dev/null +++ b/PORTAINER_QUICKREF.md @@ -0,0 +1,231 @@ +# Portainer Quick Reference + +## 🚀 Quick Start + +### Access Portainer +``` +http://localhost:9000 +or +http://einszwovier.local:9000 +``` + +### First Login +1. Create admin account +2. Select "Local" environment +3. Done! + +## 📊 Stack Overview: studio-einszwovier + +| Service | Port | Health Check | Purpose | +|---------|------|--------------|---------| +| web | 80 | ✅ | PDF Cost Calculator | +| bookstack | 6875 | ✅ | Documentation Wiki | +| bookstack-mariadb | - | ✅ | Database | +| synapse | 8008 | ✅ | Matrix Server | +| ollama | 11434 | ✅ | Local LLM | +| open-webui | 8080 | ✅ | LLM Interface | +| watchtower | - | ✅ | Auto-Updates | +| portainer | 9000 | ✅ | Management UI | + +## 🎯 Common Tasks + +### View All Services +**Portainer**: Stacks → studio-einszwovier +**CLI**: `docker-compose ps` + +### Restart a Service +**Portainer**: Containers → [service] → Restart +**CLI**: `docker-compose restart [service]` + +### View Logs +**Portainer**: Containers → [service] → Logs +**CLI**: `docker-compose logs -f [service]` + +### Check Health Status +**Portainer**: Containers → Look for 🟢/🔴 indicator +**CLI**: `docker-compose ps` (shows (healthy) or (unhealthy)) + +### Stop Everything +**Portainer**: Stacks → studio-einszwovier → Stop +**CLI**: `docker-compose stop` + +### Start Everything +**Portainer**: Stacks → studio-einszwovier → Start +**CLI**: `docker-compose start` + +### Update a Service +**Portainer**: Containers → [service] → Recreate +**CLI**: `docker-compose pull [service] && docker-compose up -d [service]` + +## 🔍 Troubleshooting + +### Service Shows 🔴 Unhealthy +1. Click container → Logs +2. Look for errors +3. Check health check output in Inspect tab +4. Restart if needed + +### Can't Access Portainer +```bash +docker-compose restart portainer +# Wait 30 seconds +# Try again at http://localhost:9000 +``` + +### Service Won't Start +1. Check Portainer logs for the service +2. Look for dependency issues (red containers) +3. Check resource limits (Stats tab) +4. Verify environment variables in Container → Env + +## 📋 Health Check Endpoints + +Test manually if needed: + +```bash +# Web App +curl http://localhost/ + +# BookStack +curl http://localhost:6875/ + +# Matrix Synapse +curl http://localhost:8008/health + +# Ollama +curl http://localhost:11434/api/tags + +# Open WebUI +curl http://localhost:8080/ + +# Portainer +curl http://localhost:9000/api/system/status +``` + +## 🏷️ Labels in Portainer + +All services are tagged with: +- **description**: What it does +- **maintainer**: Studio EinsZwoVier +- **watchtower.enable**: Auto-update enabled + +Filter by labels in Portainer UI! + +## 🔄 Auto-Updates (Watchtower) + +- **Schedule**: Every 24 hours +- **Action**: Pulls latest images and recreates containers +- **Which services**: Only those with `watchtower.enable=true` label +- **View updates**: Containers → watchtower → Logs + +### Disable Auto-Update for a Service +Edit docker-compose.yml, remove: +```yaml +labels: + - "com.centurylinklabs.watchtower.enable=true" +``` + +## 📈 Resource Monitoring + +**Portainer**: Container → Stats +Shows: +- CPU usage (%) +- Memory usage (MB / GB) +- Network I/O +- Block I/O + +**Limits Set**: +- web: 1GB RAM, 1 CPU +- ollama: 8GB RAM, 4 CPU + +## 🌐 Network: einszwovier_network + +All services communicate on this network. + +**View**: Networks → einszwovier_network → Connected containers + +## 💾 Volumes + +| Volume | Used By | Purpose | +|--------|---------|---------| +| portainer_data | portainer | Portainer config | +| ./data/uploads | web | PDF uploads | +| ./bookstack/* | bookstack | Wiki data | +| ./matrix/data | synapse | Matrix data | +| ./ollama | ollama | LLM models | +| ./open-webui | open-webui | Chat history | + +**Backup**: See `backup.sh` script + +## ⚙️ Useful Portainer Features + +### Execute Shell Commands +1. Containers → [service] → Console +2. Select `/bin/bash` or `/bin/sh` +3. Click Connect +4. Run commands + +### View Container Config +1. Containers → [service] → Inspect +2. See full JSON configuration +3. Copy environment variables +4. Check volume mounts + +### Duplicate Container +1. Containers → [service] → Duplicate/Edit +2. Modify settings +3. Deploy as new container + +### Container Template +1. App Templates → Custom Templates +2. Create from existing container +3. Reuse configuration + +## 🎨 Status Icons + +| Icon | Meaning | Action | +|------|---------|--------| +| 🟢 | Healthy | None needed | +| 🟡 | Starting | Wait (within start_period) | +| 🔴 | Unhealthy | Check logs | +| ⚫ | Stopped | Start container | +| 🔄 | Restarting | Wait or investigate | + +## 📞 Quick Help + +### "I can't find my containers!" +- Go to **Home** +- Select **Local** environment +- Go to **Stacks** → studio-einszwovier + +### "Health checks keep failing" +- Increase `start_period` in docker-compose.yml +- Check service logs for actual errors +- Verify network connectivity + +### "Portainer shows wrong status" +- Refresh page (F5) +- Check "Last Updated" timestamp +- Restart Portainer if stale + +## 🔐 Security Notes + +- Portainer admin password is set on first login (save it!) +- Docker socket mounted = full control (use carefully) +- HTTPS available on port 9443 (configure in Portainer settings) + +## 📱 Mobile Access + +Portainer works great on mobile: +1. Open browser on phone +2. Navigate to `http://[server-ip]:9000` +3. Same features as desktop! + +## ✅ Daily Checklist + +- [ ] All services showing 🟢 healthy +- [ ] No unusual CPU/memory spikes +- [ ] Recent watchtower update logs look good +- [ ] No red error logs in critical services + +**Portainer makes this a 30-second check!** diff --git a/README.md b/README.md index 70cc020..2465c2b 100644 --- a/README.md +++ b/README.md @@ -1,86 +1,413 @@ -# webapp_124 +# Studio EinsZwoVier Web Application -Minimal **FastAPI**-based PDF print-cost calculator with optional ink-coverage adjustment. +**FastAPI-based PDF print cost calculator** with automated ink coverage analysis, Matrix integration, and multi-service hub for Studio EinsZwoVier Maker Space. -This project is part of **Studio EinsZwoVier**, a collaborative environment. -Everyone is invited to contribute improvements. See the [source code](https://forgejo.petau.net/aron/124-webapp). +[![Docker](https://img.shields.io/badge/Docker-Ready-2496ED?logo=docker)](https://www.docker.com/) +[![FastAPI](https://img.shields.io/badge/FastAPI-0.104+-009688?logo=fastapi)](https://fastapi.tiangolo.com/) +[![Matrix](https://img.shields.io/badge/Matrix-Integrated-000000?logo=matrix)](https://matrix.org/) --- -## Features +## 🎯 Features -- **Landing Page**: Overview of all available tools and links. -- **Cost Calculator**: Calculate print and material costs for posters and large-format prints. -- **Docmost / Wissenssammlung**: Shared knowledge library for manuals and documentation. -- **Local Chatbot**: Access your own Large Language Models via Open WebUI and Ollama. -- **Matrix Server**: Collects print jobs and payments. -- **Administration**: Manage the Docker stack via Portainer. -- **Automatic Updates**: Watchtower updates all containers every 24 hours and cleans up old images. +### Core Application +- **📄 PDF Cost Calculator**: Automated ink coverage analysis with color/B&W detection +- **🖼️ Course Management**: Dynamic course list with image gallery and modal viewer +- **📊 Cost Estimation**: Per-page breakdown with configurable rates (€/m²) +- **💬 Matrix Integration**: Automatic order submission to Matrix room + +### Integrated Services +- **📚 BookStack Wiki**: Documentation and knowledge base (port 6875) +- **🤖 Ollama + Open WebUI**: Local LLM chatbot interface (port 8080) +- **📨 Matrix Synapse**: Print order collection and payment tracking (port 8008) +- **🐳 Portainer**: Container management dashboard (port 9000) +- **🔄 Watchtower**: Automatic container updates every 24 hours --- -## Getting Started +## 🏗️ Architecture + +```mermaid +graph TB + subgraph "Studio EinsZwoVier Web App (Port 80)" + LP[🏠 Landing Page
studio-einszwovier.local] + About[ℹ️ About Page
/about
Courses + Team Info] + Cost[💰 Cost Calculator
/cost
PDF Analysis] + + LP --> About + LP --> Cost + end + + subgraph "Course Management" + CSV[📝 courses.csv
Title, Description, Dates, Image] + Images[🖼️ Course Images
static/images/courses/] + Modal[🔍 Image Modal
Click to Enlarge] + + About --> CSV + CSV --> Images + Images --> Modal + end + + subgraph "PDF Processing Pipeline" + Upload[📤 Upload PDF] + Analysis[🔬 Analyze
- Dimensions
- Ink Coverage
- Color Detection] + Quote[📋 Quote Generation
Per-page Breakdown] + + Cost --> Upload + Upload --> Analysis + Analysis --> Quote + end + + subgraph "Matrix Integration" + MatrixRoom[💬 Matrix Room
Print Orders] + PDF_Upload[📎 PDF Attachment] + Summary[📊 Order Summary
German Language] + + Quote --> MatrixRoom + Quote --> PDF_Upload + Quote --> Summary + end + + subgraph "Integrated Services" + BookStack[📚 BookStack Wiki
:6875] + Ollama[🤖 Ollama LLM
:11434] + OpenWebUI[💭 Open WebUI
:8080] + Portainer[🐳 Portainer
:9000] + Synapse[📨 Matrix Synapse
:8008] + + LP -.-> BookStack + LP -.-> OpenWebUI + LP -.-> Portainer + OpenWebUI --> Ollama + MatrixRoom --> Synapse + end + + subgraph "Data Persistence" + Uploads[📁 data/uploads/
PDF Files] + Courses[📋 data/courses.csv
Course List] + MatrixDB[(🗄️ Matrix DB
homeserver.db)] + BookDB[(🗄️ BookStack DB
MariaDB)] + + Upload --> Uploads + CSV --> Courses + Synapse --> MatrixDB + BookStack --> BookDB + end + + classDef webapp fill:#e3f2fd,stroke:#1976d2,stroke-width:2px + classDef service fill:#fff3e0,stroke:#f57c00,stroke-width:2px + classDef data fill:#f3e5f5,stroke:#7b1fa2,stroke-width:2px + classDef matrix fill:#e8f5e9,stroke:#388e3c,stroke-width:2px + + class LP,About,Cost,Upload,Analysis,Quote webapp + class BookStack,Ollama,OpenWebUI,Portainer,Synapse service + class Uploads,Courses,MatrixDB,BookDB data + class MatrixRoom,PDF_Upload,Summary,CSV,Images,Modal matrix +``` + +--- + +## 🚀 Quick Start ### Prerequisites -- Docker & Docker Compose installed -- Optional: local network access to `einszwovier.local` for local services - if the server is moved, replace with new host +- **Docker** & **Docker Compose** installed +- **Poppler** (for pdf2image - included in Docker) +- **Port availability**: 80, 8008, 8080, 6875, 9000, 11434 + +### Installation + +1. **Clone the repository:** + ```bash + git clone https://github.com/arontaupe/124-webapp.git + cd 124-webapp + ``` + +2. **Configure environment:** + ```bash + cp .env.example .env + nano .env # Update SERVER_HOSTNAME and passwords + ``` + +3. **Start the stack:** + ```bash + docker compose up -d --build + ``` + +4. **Access services:** + - Web App: http://localhost (or http://your-server) + - BookStack: http://localhost:6875 + - Open WebUI: http://localhost:8080 + - Portainer: http://localhost:9000 + - Matrix: http://localhost:8008 + +### First-Time Setup + +1. **Get Matrix Room ID:** + ```bash + python get_room_id.py + ``` + +2. **Update .env with room ID:** + ```bash + MATRIX_ROOM="!YourRoomID:${SERVER_HOSTNAME}" + ``` + +3. **Restart web container:** + ```bash + docker compose restart web + ``` --- -### Run the Stack +## 📚 Course Management + +Courses are managed via CSV file with optional images: + +### Add a Course + +1. **Edit `data/courses.csv`:** + ```csv + title,description,dates,offen_fuer,image + My Course,Learn cool stuff,"Oct '25",Grade 10,/static/images/courses/my-course.jpg + ``` + +2. **Add course image (optional):** + ```bash + cp my-image.jpg static/images/courses/my-course.jpg + ``` + +3. **Changes apply immediately** (no restart needed) + +### Course Image Features +- **Thumbnail view**: 80x80px next to course info +- **Hover zoom**: Expands to 200x200px on hover +- **Click to enlarge**: Opens full-size modal viewer +- **Auto-cropping**: `object-fit: cover` ensures uniform display + +See [data/KURSE_README.md](data/KURSE_README.md) for detailed documentation. + +--- + +## 🔧 Configuration + +### Environment Variables + +Key variables in `.env`: ```bash -docker-compose up --build -d +# Server Configuration +SERVER_HOSTNAME=your-server.com +# Print Rates (€/m²) +RATE_PER_M2_BLACK=4.0 +RATE_PER_M2_COLOR=5.0 +# Matrix Integration +MATRIX_USER="@einszwovier:${SERVER_HOSTNAME}" +MATRIX_PASS="your_password" +MATRIX_HOMESERVER="http://${SERVER_HOSTNAME}:8008" +MATRIX_ROOM="!RoomID:${SERVER_HOSTNAME}" -graph TD - %% --- Subgraphs for clarity --- - subgraph WebApp ["Studio EinsZwoVier - Internal Web Pages"] - LP[Landing Page
studio-einszwovier.local] - About[About Page
/about] - CostCalc[Cost Calculator
/cost] - Mailto[Contact Email
mailto:einszwovier@gvb-gymnasium.de] - DocmostPage[Wissenssammlung
Docmost @ :3000] - ChatbotPage[Lokaler Chatbot
:8080] - end +# Service Ports +SYNAPSE_PORT=8008 +OLLAMA_PORT=11434 +OPENWEBUI_PORT=8080 +BOOKSTACK_PORT=6875 +PORTAINER_PORT=9000 +``` - subgraph MatrixServer ["Matrix Server"] - MatrixSrv[Matrix Server
Collects print jobs & payments] - end +See [.env.example](.env.example) for full configuration. - subgraph DocmostServer ["Docmost Server"] - DocmostSrv[Docmost Server
Manages manuals & docs] - end +--- - subgraph AdminPanel ["Administration"] - Portainer[Portainer Admin Panel
:9000] - end +## 🐳 Docker Services - %% --- Landing page links --- - LP --> About - LP --> CostCalc - LP --> Mailto - LP --> DocmostPage - LP --> ChatbotPage - LP --> Portainer +| Service | Image | Port | Purpose | Resources | +|---------|-------|------|---------|-----------| +| **web** | Custom (FastAPI) | 80 | Main application | 1 CPU, 1GB RAM | +| **synapse** | matrixdotorg/synapse | 8008 | Matrix homeserver | 2 CPU, 2GB RAM | +| **ollama** | ollama/ollama | 11434 | LLM inference | 6 CPU, 16GB RAM | +| **open-webui** | ghcr.io/open-webui/open-webui | 8080 | LLM chat UI | 2 CPU, 2GB RAM | +| **bookstack** | lscr.io/linuxserver/bookstack | 6875 | Documentation wiki | Default | +| **bookstack-mariadb** | lscr.io/linuxserver/mariadb | 3306 | Database for BookStack | Default | +| **portainer** | portainer/portainer-ce | 9000, 9443 | Container management | Default | +| **watchtower** | containrrr/watchtower | - | Auto-updates (24h) | Default | - %% --- Cost Calculator workflow --- - CostCalc --> PDF[PDF Upload] - PDF --> Quote[Generate Quote] - Quote --> MatrixSrv +### Health Checks - %% --- Docmost workflow --- - DocmostPage --> DocmostSrv +All services have health checks configured: +- **web**: `curl http://localhost:8000/` +- **synapse**: `curl http://localhost:8008/_matrix/static/` +- **ollama**: `curl http://localhost:11434/` +- **open-webui**: `curl http://localhost:8080/` +- **bookstack**: `curl http://localhost/` +- **mariadb**: MariaDB query test +- **portainer**: API status check +- **watchtower**: Process check - %% --- Chatbot workflow --- - ChatbotPage --> Ollama[Ollama AI Server
:11434] - ChatbotPage --> OpenWebUI[Open WebUI
:8080] +--- - %% --- Optional styling for clarity --- - classDef internal fill:#e3f2fd,stroke:#90caf9,stroke-width:1px; - classDef external fill:#fff3e0,stroke:#ffb74d,stroke-width:1px; - class LP,About,CostCalc,Mailto,DocmostPage,ChatbotPage internal; - class MatrixSrv,DocmostSrv,Ollama,OpenWebUI,Portainer external; +## 📖 Documentation + +- **[SECURITY.md](SECURITY.md)** - Security best practices and secrets management +- **[PORTABILITY.md](PORTABILITY.md)** - Server migration guide +- **[PRE_RELEASE_CHECKLIST.md](PRE_RELEASE_CHECKLIST.md)** - Pre-publication verification +- **[data/KURSE_README.md](data/KURSE_README.md)** - Course management guide + +--- + +## 🔐 Security + +**Before deploying to production:** + +1. ✅ Change all passwords in `.env` +2. ✅ Generate new `BOOKSTACK_APP_KEY` +3. ✅ Update Matrix credentials +4. ✅ Configure firewall (restrict Portainer access) +5. ✅ Set up HTTPS/SSL +6. ✅ Enable automated backups + +See [SECURITY.md](SECURITY.md) for comprehensive security guidelines. + +**Security Disclosure:** If you discover a vulnerability, email `einszwovier@gvb-gymnasium.de` instead of opening a public issue. + +--- + +## 🔄 Backup & Restore + +### Backup All Data + +```bash +./backup.sh +``` + +Creates timestamped backups of: +- BookStack database & files +- Matrix homeserver data +- PDF uploads +- Course data & images +- Environment configuration + +### Restore from Backup + +```bash +./restore.sh YYYYMMDD_HHMMSS +``` + +--- + +## 🚢 Deployment & Portability + +This application is designed to be **fully portable**. To move to a new server: + +1. **On old server:** + ```bash + ./backup.sh + ``` + +2. **On new server:** + ```bash + git clone + cd 124-webapp + cp .env.example .env + # Update SERVER_HOSTNAME in .env + ./restore.sh YYYYMMDD_HHMMSS + docker compose up -d + ``` + +See [PORTABILITY.md](PORTABILITY.md) for detailed migration guide. + +--- + +## 🛠️ Development + +### Local Development + +```bash +# Option 1: Direct Python (with auto-reload) +python run_app.py + +# Option 2: Docker Compose +docker compose up --build +``` + +### Project Structure + +``` +. +├── main.py # FastAPI application +├── cost_calculator.py # PDF analysis logic +├── mailer.py # Matrix integration +├── templates/ # Jinja2 templates +│ ├── base.html +│ ├── landing.html +│ ├── about.html +│ ├── cost-calculator.html +│ └── result.html +├── static/ # CSS, images, fonts +│ ├── css/style.css +│ ├── images/ +│ └── fonts/ +├── data/ +│ ├── courses.csv # Course database +│ └── uploads/ # PDF uploads +├── docker-compose.yml # Service orchestration +├── Dockerfile # Web app container +└── requirements.txt # Python dependencies +``` + +### Key Technologies + +- **FastAPI** - Modern Python web framework +- **PyPDF2** - PDF metadata extraction +- **pdf2image** - PDF to image conversion +- **Pillow + NumPy** - Image processing & ink analysis +- **matrix-nio** - Matrix protocol client +- **Jinja2** - Template engine +- **Gunicorn + Uvicorn** - Production WSGI/ASGI servers + +--- + +## 🤝 Contributing + +Contributions are welcome! This is part of **Studio EinsZwoVier**, a collaborative Maker Space. + +1. Fork the repository +2. Create a feature branch (`git checkout -b feature/amazing-feature`) +3. Commit your changes (`git commit -m 'Add amazing feature'`) +4. Push to the branch (`git push origin feature/amazing-feature`) +5. Open a Pull Request + +--- + +## 📄 License + +This project is part of Studio EinsZwoVier educational initiative. + +--- + +## 📞 Contact + +**Studio EinsZwoVier** +Gabriele-von-Bülow-Gymnasium +Tile-Brügge-Weg 63, 13509 Berlin (Tegel) + +- **Email**: einszwovier@gvb-gymnasium.de +- **Team**: Aron Petau & Friedrich Weber +- **Hours**: Tuesday - Thursday, 11:00 - 16:00 +- **Location**: Room 124 + +--- + +## 🙏 Acknowledgments + +- Matrix.org for the communication protocol +- Ollama team for local LLM support +- BookStack for the documentation platform +- FastAPI community +- All contributors and students of Studio EinsZwoVier + +--- + +**Made with ❤️ at Studio EinsZwoVier Maker Space** diff --git a/backup.sh b/backup.sh new file mode 100755 index 0000000..1aa0355 --- /dev/null +++ b/backup.sh @@ -0,0 +1,65 @@ +#!/bin/bash +# Backup script for Studio EinsZwoVier services +# Run daily via cron: 0 2 * * * /path/to/backup.sh + +set -e + +# Get the directory where this script is located +SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +BACKUP_DIR="${BACKUP_DIR:-/path/to/backups/einszwovier}" +DATE=$(date +%Y%m%d_%H%M%S) +RETENTION_DAYS=30 + +# Create backup directory +mkdir -p "$BACKUP_DIR" + +echo "=== Starting backup at $(date) ===" +echo "Working directory: $SCRIPT_DIR" + +# 1. Backup BookStack database +echo "Backing up BookStack database..." +docker exec bookstack-mariadb mariadb-dump \ + -u"${DB_USERNAME:-bookstack}" \ + -p"${DB_PASSWORD}" \ + "${DB_DATABASE:-bookstack}" \ + | gzip > "$BACKUP_DIR/bookstack_db_$DATE.sql.gz" + +# 2. Backup BookStack uploads and config +echo "Backing up BookStack files..." +tar -czf "$BACKUP_DIR/bookstack_files_$DATE.tar.gz" \ + -C "$SCRIPT_DIR" \ + bookstack/bookstack_app_data/www/uploads \ + bookstack/bookstack_app_data/www/images \ + bookstack/bookstack_app_data/www/files + +# 3. Backup Matrix data (includes homeserver.db) +echo "Backing up Matrix server data..." +tar -czf "$BACKUP_DIR/matrix_data_$DATE.tar.gz" \ + -C "$SCRIPT_DIR" \ + matrix/data + +# 4. Backup PDF uploads +echo "Backing up PDF uploads..." +tar -czf "$BACKUP_DIR/pdf_uploads_$DATE.tar.gz" \ + -C "$SCRIPT_DIR" \ + data/uploads + +# 5. Backup courses CSV +echo "Backing up courses data..." +tar -czf "$BACKUP_DIR/courses_$DATE.tar.gz" \ + -C "$SCRIPT_DIR" \ + data/courses.csv \ + static/images/courses + +# 6. Backup .env file (IMPORTANT: Contains secrets!) +echo "Backing up environment configuration..." +cp "$SCRIPT_DIR/.env" "$BACKUP_DIR/env_$DATE.backup" +chmod 600 "$BACKUP_DIR/env_$DATE.backup" + +# 7. Remove old backups (older than RETENTION_DAYS) +echo "Cleaning up old backups..." +find "$BACKUP_DIR" -type f -mtime +$RETENTION_DAYS -delete + +echo "=== Backup completed at $(date) ===" +echo "Backup location: $BACKUP_DIR" +ls -lh "$BACKUP_DIR" | tail -10 diff --git a/bookstack.yml b/bookstack.yml new file mode 100644 index 0000000..8664125 --- /dev/null +++ b/bookstack.yml @@ -0,0 +1,37 @@ +services: + bookstack: + image: lscr.io/linuxserver/bookstack:v25.07.2-ls220 + container_name: bookstack + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/Berlin + - APP_URL=http://einszwovier.local:6875 + - APP_KEY=base64:3qjlIoUX4Tw6fUQgZcxMbz6lb8+dAzqpvItqHvahW1c= + - DB_HOST=bookstack-mariadb + - DB_PORT=3306 + - DB_DATABASE=bookstack + - DB_USERNAME=bookstack + - DB_PASSWORD=bookstack8432 + volumes: + - ./bookstack_app_data:/config + ports: + - 6875:80 + restart: unless-stopped + depends_on: + - bookstack-mariadb + + bookstack-mariadb: + image: lscr.io/linuxserver/mariadb:11.4.4 + container_name: bookstack-mariadb + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/Berlin + - MYSQL_ROOT_PASSWORD=mysupersecretrootpassword + - MYSQL_DATABASE=bookstack + - MYSQL_USER=bookstack + - MYSQL_PASSWORD=bookstack8432 + volumes: + - ./bookstack_db_data:/config + restart: unless-stopped diff --git a/data/KURSE_QUICKREF.md b/data/KURSE_QUICKREF.md new file mode 100644 index 0000000..cd48115 --- /dev/null +++ b/data/KURSE_QUICKREF.md @@ -0,0 +1,104 @@ +# Kurse Schnellanleitung / Quick Reference + +## 🚀 Kurs hinzufügen (Add Course) + +1. Öffne `data/courses.csv` (Open the file) +2. Füge eine neue Zeile hinzu (Add a new line): + +```csv +Kurs Titel,Beschreibung (optional),Termine (optional),Zielgruppe (optional) +``` + +### Beispiele (Examples): + +**Vollständiger Kurs (Full course):** +```csv +Robotik Workshop,LEGO SPIKE Programmierung,"Mo 11.11. 15:00, Mi 13.11. 15:00",Klasse 8-10 +``` + +**Nur Titel + Termin (Title + Date only):** +```csv +Offene Werkstatt,,"Di 12.11. 14:00-16:00", +``` + +**Nur Titel + Zielgruppe (Title + Audience only):** +```csv +Kommt bald,,,alle Schüler:innen +``` + +## 📋 Spalten (Columns) + +| Spalte | Pflicht? | Beispiel | +|--------|----------|----------| +| `title` | ✅ JA | `Löten und Leuchten` | +| `description` | ❌ Nein | `Herstellung von Nachttischleuchten...` | +| `dates` | ❌ Nein | `Di 15.10. 14:00-16:00` | +| `offen_fuer` | ❌ Nein | `Klasse 7-9` | + +## ⚡ Wichtige Regeln (Important Rules) + +1. **Erste Zeile nie löschen!** (Never delete header row) + ```csv + title,description,dates,offen_fuer + ``` + +2. **Kommas in Terminen:** Anführungszeichen verwenden + ```csv + Workshop,"Text","Mo 10:00, Di 10:00",Klasse 8 + ``` + +3. **Leere Felder:** Einfach leer lassen + ```csv + Nur Titel,,, + ``` + +4. **Keine Zeilenumbrüche** in den Feldern + +## 🎨 Darstellung (Display) + +``` +┌─────────────────────────────────────┐ +│ Kurs Titel │ ← Immer sichtbar +│ Beschreibung hier... │ ← Nur wenn vorhanden +│ 📅 Di 15.10. 14:00-16:00 │ ← Nur wenn vorhanden +│ 👥 Offen für: Klasse 7-9 │ ← Nur wenn vorhanden +└─────────────────────────────────────┘ +``` + +## 📝 Vorlage zum Kopieren (Template to Copy) + +```csv +Neuer Kurs,Beschreibung hier,Termine hier,Zielgruppe hier +``` + +## ✅ Checkliste (Checklist) + +- [ ] CSV-Datei geöffnet: `data/courses.csv` +- [ ] Neue Zeile am Ende hinzugefügt +- [ ] Titel ausgefüllt (erforderlich!) +- [ ] Optionale Felder ausgefüllt oder leer gelassen +- [ ] Bei Kommas in Terminen: Anführungszeichen gesetzt +- [ ] Datei gespeichert +- [ ] Website neu laden → Kurs erscheint sofort! + +## 🔄 Live-Update + +**Kein Server-Neustart nötig!** (No restart needed!) +Einfach Datei speichern und Website neu laden. + +## ❓ Beispiel-Szenarien + +### Vergangener Kurs (Past course) +```csv +Löten Basics,Grundlagen des Lötens,"Abgeschlossen: 10.10., 12.10.",Klasse 7-8 +``` + +### Zukünftiger Kurs (Future course) +```csv +Drohnen Flug,Erste Schritte mit Drohnen,"Kommt: 20.11. 15:00",ab Klasse 9 +``` + +### Kurs ohne festen Termin (Course without date) +```csv +Makerspace Tour,Kennenlernen des Studios,,alle Interessierten +``` diff --git a/data/KURSE_README.md b/data/KURSE_README.md new file mode 100644 index 0000000..9cde519 --- /dev/null +++ b/data/KURSE_README.md @@ -0,0 +1,147 @@ +# Kurse verwalten + +## Kurse bearbeiten + +Die aktuellen Kurse werden aus der Datei `courses.csv` geladen und automatisch auf der "Über uns" Seite angezeigt. + +### CSV-Format + +Die Datei hat fünf Spalten (alle außer `title` sind optional): +- `title` - Der Titel des Kurses (erforderlich) +- `description` - Eine kurze Beschreibung (optional) +- `dates` - Termine und Zeiten (optional) +- `offen_fuer` - Zielgruppe/Altersgruppe (optional) +- `image` - Pfad zum Kursbild (optional) + +**Beispiel:** +```csv +title,description,dates,offen_fuer,image +Löten und Leuchten,Herstellung von Nachttischleuchten mit 3D-Design und Löttechnik,"Di 15.10. 14:00-16:00",Klasse 7-9,/static/images/courses/loeten.jpg +Die Vogelvilla,Bau von Vogelhäusern mit Lasercutter und Holzbearbeitung,"Mi 23.10. 13:00-15:00",alle Schüler:innen, +Robotik Intro,,,ab Klasse 5,/static/images/courses/robotik.jpg +``` + +### Kursbilder hinzufügen + +1. Speichere das Bild in `/static/images/courses/` +2. Verwende den Pfad `/static/images/courses/dein-bild.jpg` in der CSV +3. Empfohlene Bildgröße: mindestens 640x400 Pixel +4. Unterstützte Formate: JPG, PNG, WebP + +**Tipp:** Wenn kein Bild angegeben ist, wird der Kurs ohne Bild angezeigt (nur Text).### Felder im Detail + +#### `title` (erforderlich) +Der Kursname - wird immer angezeigt. + +#### `description` (optional) +Kurzbeschreibung des Kurses. Wird nur angezeigt, wenn vorhanden. + +#### `dates` (optional) +Termine und Uhrzeiten. Kann mehrere Termine enthalten: +- Einzelner Termin: `Mi 23.10. 13:00-15:00` +- Mehrere Termine: `Di 15.10. 14:00-16:00, Do 17.10. 14:00-16:00` +- Bei Terminen mit Kommas: In Anführungszeichen setzen + +#### `offen_fuer` (optional) +Freitextfeld für die Zielgruppe: +- `Klasse 7-9` +- `alle Schüler:innen` +- `ab 14 Jahren` +- `Oberstufe` + +### Kurs hinzufügen + +Einfach eine neue Zeile am Ende der Datei hinzufügen: +```csv +title,description,dates,offen_fuer +Löten und Leuchten,Herstellung von Nachttischleuchten mit 3D-Design und Löttechnik,"Di 15.10. 14:00-16:00, Do 17.10. 14:00-16:00",Klasse 7-9 +Neuer Kurs,Beschreibung des neuen Kurses,"Mo 20.10. 15:00-17:00",Klasse 8-10 +``` + +### Fehlende Informationen + +Alle Felder außer `title` sind optional. Beispiele: + +**Nur Titel und Beschreibung:** +```csv +title,description,dates,offen_fuer +Workshop XYZ,Toller Workshop über Making,, +``` + +**Nur Titel und Termine:** +```csv +title,description,dates,offen_fuer +Workshop ABC,,"Fr 25.10. 14:00", +``` + +**Nur Titel und Zielgruppe:** +```csv +title,description,dates,offen_fuer +Workshop 123,,,Klasse 9-10 +``` + +### Kurs entfernen + +Einfach die entsprechende Zeile löschen. + +### Wichtig + +- **Keine Anführungszeichen** verwenden, außer der Text enthält ein Komma +- **Keine Zeilenumbrüche** innerhalb der Beschreibung +- Die erste Zeile (`title,description,dates,offen_fuer,image`) muss erhalten bleiben +- Nach dem Speichern wird die Änderung sofort auf der Website sichtbar + +### Darstellung auf der Website + +Die Kurse werden in einem **Grid-Layout** mit **Karten-Design** angezeigt: + +- **Große, fette Titel** (1.5em) mit pinker Unterstreichung +- **Hover-Effekt**: Karten heben sich beim Überfahren an +- **Responsive**: Auf Mobilgeräten eine Spalte, auf Desktop mehrere Spalten +- **Kursbilder** (optional): 200px hoch, oben auf der Karte +- **Metadata** am unteren Rand: Datum und Zielgruppe mit Icons + +**Beispiel mit Bild:** +``` +┌─────────────────────────────┐ +│ [Kursbild 640x400] │ +├─────────────────────────────┤ +│ Löten und Leuchten │ ← 1.5em, fett, pink unterstrichen +│ ───────────────────── │ +│ │ +│ Herstellung von Nachtisch- │ ← Beschreibung +│ leuchten mit 3D-Design │ +│ │ +├─────────────────────────────┤ +│ 📅 Dez. '24 │ ← Metadata mit Icons +│ 👥 Klasse 5-6 │ +└─────────────────────────────┘ +``` + +**Beispiel ohne Bild:** +``` +┌─────────────────────────────┐ +│ Textiles Plotten │ ← Direkt der Titel +│ ───────────────── │ +│ │ +│ Erschaffe deine eigenen │ +│ Klamottendesigns │ +│ │ +├─────────────────────────────┤ +│ 📅 Mai '25 │ +│ 👥 Jhg. 9 │ +└─────────────────────────────┘ +``` + +### Live-Update + +Die Kurse werden bei jedem Seitenaufruf neu geladen. Es ist **kein Neustart** des Servers erforderlich! + +### Keine Kurse anzeigen + +Wenn keine Kurse stattfinden, einfach alle Zeilen außer der Kopfzeile löschen: +```csv +title,description +``` + +Die Seite zeigt dann: "Aktuell sind keine Kurse geplant. Schaut bald wieder vorbei!" diff --git a/data/courses.csv b/data/courses.csv new file mode 100644 index 0000000..cfc79a8 --- /dev/null +++ b/data/courses.csv @@ -0,0 +1,8 @@ +title,description,dates,offen_fuer,image +Löten und Leuchten,Herstellung von Nachttischleuchten mit 3D-Design und Löttechnik,"Dez. '24",Klasse 5-6,/static/images/courses/löten und leuchten.jpeg +Löten und Leuchten,Herstellung von Nachttischleuchten mit 3D-Design und Löttechnik,"Jan. '25",Klasse 5-6,/static/images/courses/löten und leuchten.jpeg +Die Vogelvilla,Bau von Vogelhäusern mit Lasercutter und Holzbearbeitung,"Mär. '25",Jhg. 8,/static/images/courses/vogelvilla.jpeg +Textiles Plotten,Erschaffe deine eigenen Klamottendesigns,"Mai '25",Jhg. 9,/static/images/courses/textiles plotten.jpeg +Kicker-Glow-Up,Erstelle deine eigene Kickerfigur mit 3D Design,"Jun '25",Jhg. 7, +Projektwoche: Realitäten Transformieren,Erstelle deine eigene Augmented Reality App und lerne 3D Scannen,"Jul '25",Jhg. 10-11, +Reshaping Plastics,Lerne Plastik neu zu formen und eigene Produkte zu designen,"Okt '25",Jhg. 10,/static/images/courses/reshaping plastics.jpeg \ No newline at end of file diff --git a/data/uploads/Nachweis Arbeitsverhältnis Socius.pdf b/data/uploads/Nachweis Arbeitsverhältnis Socius.pdf deleted file mode 100644 index e7cb46e..0000000 Binary files a/data/uploads/Nachweis Arbeitsverhältnis Socius.pdf and /dev/null differ diff --git a/data/uploads/Poster AD (A3) cmyk.pdf b/data/uploads/Poster AD (A3) cmyk.pdf deleted file mode 100644 index dbc7f5b..0000000 Binary files a/data/uploads/Poster AD (A3) cmyk.pdf and /dev/null differ diff --git a/data/uploads/Poster AD (A3).pdf b/data/uploads/Poster AD (A3).pdf deleted file mode 100644 index eb0cfc3..0000000 Binary files a/data/uploads/Poster AD (A3).pdf and /dev/null differ diff --git a/data/uploads/Screen AD.pdf b/data/uploads/Screen AD.pdf deleted file mode 100644 index db2d89c..0000000 Binary files a/data/uploads/Screen AD.pdf and /dev/null differ diff --git a/data/uploads/Socius_Arbeitsvertrag.pdf b/data/uploads/Socius_Arbeitsvertrag.pdf deleted file mode 100644 index e7c2b78..0000000 Binary files a/data/uploads/Socius_Arbeitsvertrag.pdf and /dev/null differ diff --git a/data/uploads/einszwovier infographics 2.pdf b/data/uploads/einszwovier infographics 2.pdf deleted file mode 100644 index 080a119..0000000 Binary files a/data/uploads/einszwovier infographics 2.pdf and /dev/null differ diff --git a/data/uploads/einszwovier infographics.pdf b/data/uploads/einszwovier infographics.pdf deleted file mode 100644 index ebe5059..0000000 Binary files a/data/uploads/einszwovier infographics.pdf and /dev/null differ diff --git a/data/uploads/flyer umzu.pdf b/data/uploads/flyer umzu.pdf deleted file mode 100644 index 62e7cd1..0000000 Binary files a/data/uploads/flyer umzu.pdf and /dev/null differ diff --git a/data/uploads/huk612021p.pdf b/data/uploads/huk612021p.pdf deleted file mode 100644 index 2199e65..0000000 Binary files a/data/uploads/huk612021p.pdf and /dev/null differ diff --git a/docker-compose.yml b/docker-compose.yml index e11f76f..231028c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,99 +1,166 @@ +name: studio-einszwovier + services: web: build: . container_name: 124_webapp ports: - "80:8000" - working_dir: /cost-assistant volumes: - - .:/cost-assistant - - ./data/uploads:/cost-assistant/data/uploads + - ./data:/cost-assistant/data + - ./templates:/cost-assistant/templates:ro + - ./static:/cost-assistant/static:ro env_file: - .env - command: python -m uvicorn main:app --host 0.0.0.0 --port 8000 --reload - - docmost: - image: docmost/docmost:latest - container_name: docmost + restart: unless-stopped + mem_limit: 1g + cpus: 1.0 + mem_reservation: 256m + healthcheck: + test: ["CMD-SHELL", "curl -f http://localhost:8000/ || exit 1"] + interval: 30s + timeout: 10s + retries: 3 + start_period: 40s depends_on: - - db - - redis - environment: - APP_URL: "http://einszwovier.local:3000" - APP_SECRET: "Ltr/i5KY8S8xQQZbaRHVS07gaAqwxPfrMxW6ZetNRqk=" - DATABASE_URL: "postgresql://docmost:einszwo4@db:5432/docmost?schema=public" - REDIS_URL: "redis://redis:6379" - MAIL_DRIVER: "smtp" - SMTP_HOST: "smtp.migadu.com" - SMTP_PORT: 465 - SMTP_SECURE: "true" - SMTP_USERNAME: "aron@petau.net" - SMTP_PASSWORD: "Reprintedservices2766" - MAIL_FROM_ADDRESS: "aron@petau.net" - MAIL_FROM_NAME: "einszwovier - docs" - ports: - - "3000:3000" - restart: unless-stopped - volumes: - - ./docmost/storage:/app/data/storage - - db: - image: postgres:16-alpine - container_name: docmost_postgres - environment: - POSTGRES_DB: docmost - POSTGRES_USER: docmost - POSTGRES_PASSWORD: einszwo4 - restart: unless-stopped - volumes: - - ./docmost/db:/var/lib/postgresql/data - - redis: - image: redis:7.2-alpine - container_name: docmost_redis - restart: unless-stopped - volumes: - - ./docmost/redis:/data + synapse: + condition: service_started + labels: + - "com.centurylinklabs.watchtower.enable=true" + - "description=Studio EinsZwoVier PDF Cost Calculator" + - "maintainer=Studio EinsZwoVier" synapse: image: matrixdotorg/synapse:latest container_name: matrix_server - restart: always ports: - - "8008:8008" + - "${SYNAPSE_PORT:-8008}:8008" volumes: - ./matrix/data:/data environment: - - SYNAPSE_SERVER_NAME=einszwovier.local - - SYNAPSE_REPORT_STATS=no + - SYNAPSE_CONFIG_PATH=/data/homeserver.yaml + restart: unless-stopped + mem_limit: 2g + cpus: 2.0 + mem_reservation: 512m + healthcheck: + test: + ["CMD-SHELL", "curl -f http://localhost:8008/_matrix/static/ || exit 1"] + interval: 30s + timeout: 10s + retries: 3 + start_period: 40s + labels: + - "com.centurylinklabs.watchtower.enable=true" + - "description=Matrix homeserver for print orders" + - "maintainer=Studio EinsZwoVier" ollama: image: ollama/ollama:latest container_name: ollama ports: - - 11434:11434 + - "${OLLAMA_PORT:-11434}:11434" volumes: - ./ollama:/root/.ollama - tty: true restart: unless-stopped + mem_limit: 16g + cpus: 6.0 + mem_reservation: 4g + healthcheck: + test: ["CMD-SHELL", "curl -f http://localhost:11434/ || exit 1"] + interval: 60s + timeout: 10s + retries: 3 + start_period: 60s + labels: + - "com.centurylinklabs.watchtower.enable=true" + - "description=Local LLM inference engine" + - "maintainer=Studio EinsZwoVier" open-webui: - image: ghcr.io/open-webui/open-webui:main + image: ghcr.io/open-webui/open-webui:latest container_name: open-webui - depends_on: - - ollama ports: - - 8080:8080 + - "${OPENWEBUI_PORT:-8080}:8080" volumes: - ./open-webui:/app/backend/data environment: - - 'OLLAMA_BASE_URL=http://ollama:11434' - - 'WEBUI_SECRET_KEY=a8cbc11647c471e5a30d9b182a7147a0777e41a6b0cb036fd6a8d967585502c7' - - 'ENABLE_API=true' - - 'WEBUI_API_KEY=a8cbc11647c471e5a30d9b182a7147a0777e41a6b0cb036fd6a8d967585502c7' - extra_hosts: - - host.docker.internal:host-gateway + - OLLAMA_BASE_URL=http://ollama:11434 + - WEBUI_SECRET_KEY=${WEBUI_SECRET_KEY:-secret_key_change_me} restart: unless-stopped + mem_limit: 2g + cpus: 2.0 + mem_reservation: 512m + depends_on: + - ollama + healthcheck: + test: ["CMD-SHELL", "curl -f http://localhost:8080/ || exit 1"] + interval: 30s + timeout: 10s + retries: 3 + start_period: 40s + labels: + - "com.centurylinklabs.watchtower.enable=true" + - "description=Web UI for Ollama LLM" + - "maintainer=Studio EinsZwoVier" + + bookstack: + image: lscr.io/linuxserver/bookstack:latest + container_name: bookstack + environment: + - APP_KEY=${BOOKSTACK_APP_KEY} + - APP_URL=${BOOKSTACK_APP_URL} + env_file: + - .env + volumes: + - ./bookstack/bookstack_app_data:/config + ports: + - "${BOOKSTACK_PORT}:80" + restart: unless-stopped + depends_on: + bookstack-mariadb: + condition: service_healthy + healthcheck: + test: ["CMD-SHELL", "curl -f http://localhost/ || exit 1"] + interval: 30s + timeout: 10s + retries: 3 + start_period: 60s + labels: + - "com.centurylinklabs.watchtower.enable=true" + - "description=BookStack Documentation Wiki" + - "maintainer=Studio EinsZwoVier" + + bookstack-mariadb: + image: lscr.io/linuxserver/mariadb:latest + container_name: bookstack-mariadb + environment: + - MYSQL_ROOT_PASSWORD=${DB_PASSWORD} + - MYSQL_DATABASE=${DB_DATABASE} + - MYSQL_USER=${DB_USERNAME} + - MYSQL_PASSWORD=${DB_PASSWORD} + - PUID=1000 + - PGID=1000 + - TZ=Europe/Berlin + env_file: + - .env + volumes: + - ./bookstack/bookstack_db_data:/config + restart: unless-stopped + healthcheck: + test: + [ + "CMD-SHELL", + "mariadb -u${DB_USERNAME} -p${DB_PASSWORD} -e 'SELECT 1' || exit 1", + ] + interval: 10s + timeout: 5s + retries: 5 + start_period: 30s + labels: + - "com.centurylinklabs.watchtower.enable=true" + - "description=MariaDB Database for BookStack" + - "maintainer=Studio EinsZwoVier" watchtower: image: containrrr/watchtower:latest @@ -101,19 +168,54 @@ services: restart: unless-stopped volumes: - /var/run/docker.sock:/var/run/docker.sock - command: > - --cleanup - --interval 86400 + environment: + - WATCHTOWER_CLEANUP=true + - WATCHTOWER_POLL_INTERVAL=86400 + - WATCHTOWER_INCLUDE_RESTARTING=true + - WATCHTOWER_LABEL_ENABLE=true + command: --cleanup --interval 86400 --label-enable + healthcheck: + test: ["CMD-SHELL", "pgrep watchtower || exit 1"] + interval: 60s + timeout: 10s + retries: 3 + labels: + - "description=Watchtower Auto-Update Service" + - "maintainer=Studio EinsZwoVier" portainer: image: portainer/portainer-ce:latest container_name: portainer restart: unless-stopped ports: - - "9000:9000" + - "${PORTAINER_PORT}:9000" + - "9443:9443" volumes: - /var/run/docker.sock:/var/run/docker.sock - portainer_data:/data + healthcheck: + test: + [ + "CMD-SHELL", + "curl -f http://localhost:9000/api/system/status || exit 1", + ] + interval: 30s + timeout: 10s + retries: 3 + start_period: 30s + labels: + - "description=Portainer Container Management UI" + - "maintainer=Studio EinsZwoVier" volumes: portainer_data: + driver: local + labels: + - "description=Portainer persistent data" + +networks: + default: + name: einszwovier_network + labels: + - "description=Studio EinsZwoVier network" + - "maintainer=Studio EinsZwoVier" diff --git a/docmost/.DS_Store b/docmost/.DS_Store deleted file mode 100644 index 20dc363..0000000 Binary files a/docmost/.DS_Store and /dev/null differ diff --git a/docmost/db/PG_VERSION b/docmost/db/PG_VERSION deleted file mode 100644 index b6a7d89..0000000 --- a/docmost/db/PG_VERSION +++ /dev/null @@ -1 +0,0 @@ -16 diff --git a/docmost/db/base/1/112 b/docmost/db/base/1/112 deleted file mode 100644 index 2bfc88c..0000000 Binary files a/docmost/db/base/1/112 and /dev/null differ diff --git a/docmost/db/base/1/113 b/docmost/db/base/1/113 deleted file mode 100644 index c36defa..0000000 Binary files a/docmost/db/base/1/113 and /dev/null differ diff --git a/docmost/db/base/1/1247 b/docmost/db/base/1/1247 deleted file mode 100644 index 8961ed4..0000000 Binary files a/docmost/db/base/1/1247 and /dev/null differ diff --git a/docmost/db/base/1/1247_fsm b/docmost/db/base/1/1247_fsm deleted file mode 100644 index 013faac..0000000 Binary files a/docmost/db/base/1/1247_fsm and /dev/null differ diff --git a/docmost/db/base/1/1247_vm b/docmost/db/base/1/1247_vm deleted file mode 100644 index ace0879..0000000 Binary files a/docmost/db/base/1/1247_vm and /dev/null differ diff --git a/docmost/db/base/1/1249 b/docmost/db/base/1/1249 deleted file mode 100644 index 61834d7..0000000 Binary files a/docmost/db/base/1/1249 and /dev/null differ diff --git a/docmost/db/base/1/1249_fsm b/docmost/db/base/1/1249_fsm deleted file mode 100644 index a538ac8..0000000 Binary files a/docmost/db/base/1/1249_fsm and /dev/null differ diff --git a/docmost/db/base/1/1249_vm b/docmost/db/base/1/1249_vm deleted file mode 100644 index 7e705a3..0000000 Binary files a/docmost/db/base/1/1249_vm and /dev/null differ diff --git a/docmost/db/base/1/1255 b/docmost/db/base/1/1255 deleted file mode 100644 index d9518c1..0000000 Binary files a/docmost/db/base/1/1255 and /dev/null differ diff --git a/docmost/db/base/1/1255_fsm b/docmost/db/base/1/1255_fsm deleted file mode 100644 index 69a5d8f..0000000 Binary files a/docmost/db/base/1/1255_fsm and /dev/null differ diff --git a/docmost/db/base/1/1255_vm b/docmost/db/base/1/1255_vm deleted file mode 100644 index d6a7e34..0000000 Binary files a/docmost/db/base/1/1255_vm and /dev/null differ diff --git a/docmost/db/base/1/1259 b/docmost/db/base/1/1259 deleted file mode 100644 index 40e12b5..0000000 Binary files a/docmost/db/base/1/1259 and /dev/null differ diff --git a/docmost/db/base/1/1259_fsm b/docmost/db/base/1/1259_fsm deleted file mode 100644 index 05d8c51..0000000 Binary files a/docmost/db/base/1/1259_fsm and /dev/null differ diff --git a/docmost/db/base/1/1259_vm b/docmost/db/base/1/1259_vm deleted file mode 100644 index 85cec20..0000000 Binary files a/docmost/db/base/1/1259_vm and /dev/null differ diff --git a/docmost/db/base/1/13457 b/docmost/db/base/1/13457 deleted file mode 100644 index 6954f5d..0000000 Binary files a/docmost/db/base/1/13457 and /dev/null differ diff --git a/docmost/db/base/1/13457_fsm b/docmost/db/base/1/13457_fsm deleted file mode 100644 index 2a80b9a..0000000 Binary files a/docmost/db/base/1/13457_fsm and /dev/null differ diff --git a/docmost/db/base/1/13457_vm b/docmost/db/base/1/13457_vm deleted file mode 100644 index 141e044..0000000 Binary files a/docmost/db/base/1/13457_vm and /dev/null differ diff --git a/docmost/db/base/1/13460 b/docmost/db/base/1/13460 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/13461 b/docmost/db/base/1/13461 deleted file mode 100644 index 17aa1d3..0000000 Binary files a/docmost/db/base/1/13461 and /dev/null differ diff --git a/docmost/db/base/1/13462 b/docmost/db/base/1/13462 deleted file mode 100644 index 2756042..0000000 Binary files a/docmost/db/base/1/13462 and /dev/null differ diff --git a/docmost/db/base/1/13462_fsm b/docmost/db/base/1/13462_fsm deleted file mode 100644 index 70d16ce..0000000 Binary files a/docmost/db/base/1/13462_fsm and /dev/null differ diff --git a/docmost/db/base/1/13462_vm b/docmost/db/base/1/13462_vm deleted file mode 100644 index 5822899..0000000 Binary files a/docmost/db/base/1/13462_vm and /dev/null differ diff --git a/docmost/db/base/1/13465 b/docmost/db/base/1/13465 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/13466 b/docmost/db/base/1/13466 deleted file mode 100644 index b59c5ed..0000000 Binary files a/docmost/db/base/1/13466 and /dev/null differ diff --git a/docmost/db/base/1/13467 b/docmost/db/base/1/13467 deleted file mode 100644 index f7cc503..0000000 Binary files a/docmost/db/base/1/13467 and /dev/null differ diff --git a/docmost/db/base/1/13467_fsm b/docmost/db/base/1/13467_fsm deleted file mode 100644 index 0673ada..0000000 Binary files a/docmost/db/base/1/13467_fsm and /dev/null differ diff --git a/docmost/db/base/1/13467_vm b/docmost/db/base/1/13467_vm deleted file mode 100644 index df84b46..0000000 Binary files a/docmost/db/base/1/13467_vm and /dev/null differ diff --git a/docmost/db/base/1/13470 b/docmost/db/base/1/13470 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/13471 b/docmost/db/base/1/13471 deleted file mode 100644 index 4ddcaa4..0000000 Binary files a/docmost/db/base/1/13471 and /dev/null differ diff --git a/docmost/db/base/1/13472 b/docmost/db/base/1/13472 deleted file mode 100644 index ced8b2f..0000000 Binary files a/docmost/db/base/1/13472 and /dev/null differ diff --git a/docmost/db/base/1/13472_fsm b/docmost/db/base/1/13472_fsm deleted file mode 100644 index a836ddf..0000000 Binary files a/docmost/db/base/1/13472_fsm and /dev/null differ diff --git a/docmost/db/base/1/13472_vm b/docmost/db/base/1/13472_vm deleted file mode 100644 index a3cfd31..0000000 Binary files a/docmost/db/base/1/13472_vm and /dev/null differ diff --git a/docmost/db/base/1/13475 b/docmost/db/base/1/13475 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/13476 b/docmost/db/base/1/13476 deleted file mode 100644 index 5af7a00..0000000 Binary files a/docmost/db/base/1/13476 and /dev/null differ diff --git a/docmost/db/base/1/1417 b/docmost/db/base/1/1417 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/1418 b/docmost/db/base/1/1418 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/174 b/docmost/db/base/1/174 deleted file mode 100644 index fedcb88..0000000 Binary files a/docmost/db/base/1/174 and /dev/null differ diff --git a/docmost/db/base/1/175 b/docmost/db/base/1/175 deleted file mode 100644 index 7ee5b4a..0000000 Binary files a/docmost/db/base/1/175 and /dev/null differ diff --git a/docmost/db/base/1/2187 b/docmost/db/base/1/2187 deleted file mode 100644 index 4bb8bea..0000000 Binary files a/docmost/db/base/1/2187 and /dev/null differ diff --git a/docmost/db/base/1/2224 b/docmost/db/base/1/2224 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/2228 b/docmost/db/base/1/2228 deleted file mode 100644 index 738f259..0000000 Binary files a/docmost/db/base/1/2228 and /dev/null differ diff --git a/docmost/db/base/1/2328 b/docmost/db/base/1/2328 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/2336 b/docmost/db/base/1/2336 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/2337 b/docmost/db/base/1/2337 deleted file mode 100644 index b77e77c..0000000 Binary files a/docmost/db/base/1/2337 and /dev/null differ diff --git a/docmost/db/base/1/2579 b/docmost/db/base/1/2579 deleted file mode 100644 index 0e9f4e6..0000000 Binary files a/docmost/db/base/1/2579 and /dev/null differ diff --git a/docmost/db/base/1/2600 b/docmost/db/base/1/2600 deleted file mode 100644 index d98ee62..0000000 Binary files a/docmost/db/base/1/2600 and /dev/null differ diff --git a/docmost/db/base/1/2600_fsm b/docmost/db/base/1/2600_fsm deleted file mode 100644 index 0938592..0000000 Binary files a/docmost/db/base/1/2600_fsm and /dev/null differ diff --git a/docmost/db/base/1/2600_vm b/docmost/db/base/1/2600_vm deleted file mode 100644 index 2617550..0000000 Binary files a/docmost/db/base/1/2600_vm and /dev/null differ diff --git a/docmost/db/base/1/2601 b/docmost/db/base/1/2601 deleted file mode 100644 index d8001c8..0000000 Binary files a/docmost/db/base/1/2601 and /dev/null differ diff --git a/docmost/db/base/1/2601_fsm b/docmost/db/base/1/2601_fsm deleted file mode 100644 index d388044..0000000 Binary files a/docmost/db/base/1/2601_fsm and /dev/null differ diff --git a/docmost/db/base/1/2601_vm b/docmost/db/base/1/2601_vm deleted file mode 100644 index 1363638..0000000 Binary files a/docmost/db/base/1/2601_vm and /dev/null differ diff --git a/docmost/db/base/1/2602 b/docmost/db/base/1/2602 deleted file mode 100644 index 4a27b0a..0000000 Binary files a/docmost/db/base/1/2602 and /dev/null differ diff --git a/docmost/db/base/1/2602_fsm b/docmost/db/base/1/2602_fsm deleted file mode 100644 index 23170d8..0000000 Binary files a/docmost/db/base/1/2602_fsm and /dev/null differ diff --git a/docmost/db/base/1/2602_vm b/docmost/db/base/1/2602_vm deleted file mode 100644 index 67a627c..0000000 Binary files a/docmost/db/base/1/2602_vm and /dev/null differ diff --git a/docmost/db/base/1/2603 b/docmost/db/base/1/2603 deleted file mode 100644 index d511af5..0000000 Binary files a/docmost/db/base/1/2603 and /dev/null differ diff --git a/docmost/db/base/1/2603_fsm b/docmost/db/base/1/2603_fsm deleted file mode 100644 index 949bd18..0000000 Binary files a/docmost/db/base/1/2603_fsm and /dev/null differ diff --git a/docmost/db/base/1/2603_vm b/docmost/db/base/1/2603_vm deleted file mode 100644 index 2a2b0c3..0000000 Binary files a/docmost/db/base/1/2603_vm and /dev/null differ diff --git a/docmost/db/base/1/2604 b/docmost/db/base/1/2604 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/2605 b/docmost/db/base/1/2605 deleted file mode 100644 index eeaa7ea..0000000 Binary files a/docmost/db/base/1/2605 and /dev/null differ diff --git a/docmost/db/base/1/2605_fsm b/docmost/db/base/1/2605_fsm deleted file mode 100644 index f3b92bf..0000000 Binary files a/docmost/db/base/1/2605_fsm and /dev/null differ diff --git a/docmost/db/base/1/2605_vm b/docmost/db/base/1/2605_vm deleted file mode 100644 index e36e087..0000000 Binary files a/docmost/db/base/1/2605_vm and /dev/null differ diff --git a/docmost/db/base/1/2606 b/docmost/db/base/1/2606 deleted file mode 100644 index 8227445..0000000 Binary files a/docmost/db/base/1/2606 and /dev/null differ diff --git a/docmost/db/base/1/2606_fsm b/docmost/db/base/1/2606_fsm deleted file mode 100644 index 267454e..0000000 Binary files a/docmost/db/base/1/2606_fsm and /dev/null differ diff --git a/docmost/db/base/1/2606_vm b/docmost/db/base/1/2606_vm deleted file mode 100644 index ac7ec8a..0000000 Binary files a/docmost/db/base/1/2606_vm and /dev/null differ diff --git a/docmost/db/base/1/2607 b/docmost/db/base/1/2607 deleted file mode 100644 index bfad49a..0000000 Binary files a/docmost/db/base/1/2607 and /dev/null differ diff --git a/docmost/db/base/1/2607_fsm b/docmost/db/base/1/2607_fsm deleted file mode 100644 index 80ac8b1..0000000 Binary files a/docmost/db/base/1/2607_fsm and /dev/null differ diff --git a/docmost/db/base/1/2607_vm b/docmost/db/base/1/2607_vm deleted file mode 100644 index 316b9cd..0000000 Binary files a/docmost/db/base/1/2607_vm and /dev/null differ diff --git a/docmost/db/base/1/2608 b/docmost/db/base/1/2608 deleted file mode 100644 index 9ec119b..0000000 Binary files a/docmost/db/base/1/2608 and /dev/null differ diff --git a/docmost/db/base/1/2608_fsm b/docmost/db/base/1/2608_fsm deleted file mode 100644 index 95081cd..0000000 Binary files a/docmost/db/base/1/2608_fsm and /dev/null differ diff --git a/docmost/db/base/1/2608_vm b/docmost/db/base/1/2608_vm deleted file mode 100644 index 7381933..0000000 Binary files a/docmost/db/base/1/2608_vm and /dev/null differ diff --git a/docmost/db/base/1/2609 b/docmost/db/base/1/2609 deleted file mode 100644 index 46de400..0000000 Binary files a/docmost/db/base/1/2609 and /dev/null differ diff --git a/docmost/db/base/1/2609_fsm b/docmost/db/base/1/2609_fsm deleted file mode 100644 index 624979d..0000000 Binary files a/docmost/db/base/1/2609_fsm and /dev/null differ diff --git a/docmost/db/base/1/2609_vm b/docmost/db/base/1/2609_vm deleted file mode 100644 index 0b00f10..0000000 Binary files a/docmost/db/base/1/2609_vm and /dev/null differ diff --git a/docmost/db/base/1/2610 b/docmost/db/base/1/2610 deleted file mode 100644 index 22db42a..0000000 Binary files a/docmost/db/base/1/2610 and /dev/null differ diff --git a/docmost/db/base/1/2610_fsm b/docmost/db/base/1/2610_fsm deleted file mode 100644 index ecbcb5f..0000000 Binary files a/docmost/db/base/1/2610_fsm and /dev/null differ diff --git a/docmost/db/base/1/2610_vm b/docmost/db/base/1/2610_vm deleted file mode 100644 index 9eae6da..0000000 Binary files a/docmost/db/base/1/2610_vm and /dev/null differ diff --git a/docmost/db/base/1/2611 b/docmost/db/base/1/2611 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/2612 b/docmost/db/base/1/2612 deleted file mode 100644 index 8c61a98..0000000 Binary files a/docmost/db/base/1/2612 and /dev/null differ diff --git a/docmost/db/base/1/2612_fsm b/docmost/db/base/1/2612_fsm deleted file mode 100644 index 877976a..0000000 Binary files a/docmost/db/base/1/2612_fsm and /dev/null differ diff --git a/docmost/db/base/1/2612_vm b/docmost/db/base/1/2612_vm deleted file mode 100644 index 005be6f..0000000 Binary files a/docmost/db/base/1/2612_vm and /dev/null differ diff --git a/docmost/db/base/1/2613 b/docmost/db/base/1/2613 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/2615 b/docmost/db/base/1/2615 deleted file mode 100644 index 35868fc..0000000 Binary files a/docmost/db/base/1/2615 and /dev/null differ diff --git a/docmost/db/base/1/2615_fsm b/docmost/db/base/1/2615_fsm deleted file mode 100644 index d041693..0000000 Binary files a/docmost/db/base/1/2615_fsm and /dev/null differ diff --git a/docmost/db/base/1/2615_vm b/docmost/db/base/1/2615_vm deleted file mode 100644 index 22233fd..0000000 Binary files a/docmost/db/base/1/2615_vm and /dev/null differ diff --git a/docmost/db/base/1/2616 b/docmost/db/base/1/2616 deleted file mode 100644 index 0d60d79..0000000 Binary files a/docmost/db/base/1/2616 and /dev/null differ diff --git a/docmost/db/base/1/2616_fsm b/docmost/db/base/1/2616_fsm deleted file mode 100644 index cb924c9..0000000 Binary files a/docmost/db/base/1/2616_fsm and /dev/null differ diff --git a/docmost/db/base/1/2616_vm b/docmost/db/base/1/2616_vm deleted file mode 100644 index 21787ae..0000000 Binary files a/docmost/db/base/1/2616_vm and /dev/null differ diff --git a/docmost/db/base/1/2617 b/docmost/db/base/1/2617 deleted file mode 100644 index bcdfc18..0000000 Binary files a/docmost/db/base/1/2617 and /dev/null differ diff --git a/docmost/db/base/1/2617_fsm b/docmost/db/base/1/2617_fsm deleted file mode 100644 index 29d6066..0000000 Binary files a/docmost/db/base/1/2617_fsm and /dev/null differ diff --git a/docmost/db/base/1/2617_vm b/docmost/db/base/1/2617_vm deleted file mode 100644 index b52f77d..0000000 Binary files a/docmost/db/base/1/2617_vm and /dev/null differ diff --git a/docmost/db/base/1/2618 b/docmost/db/base/1/2618 deleted file mode 100644 index 26b756c..0000000 Binary files a/docmost/db/base/1/2618 and /dev/null differ diff --git a/docmost/db/base/1/2618_fsm b/docmost/db/base/1/2618_fsm deleted file mode 100644 index bcee926..0000000 Binary files a/docmost/db/base/1/2618_fsm and /dev/null differ diff --git a/docmost/db/base/1/2618_vm b/docmost/db/base/1/2618_vm deleted file mode 100644 index 3ef7d24..0000000 Binary files a/docmost/db/base/1/2618_vm and /dev/null differ diff --git a/docmost/db/base/1/2619 b/docmost/db/base/1/2619 deleted file mode 100644 index 7464781..0000000 Binary files a/docmost/db/base/1/2619 and /dev/null differ diff --git a/docmost/db/base/1/2619_fsm b/docmost/db/base/1/2619_fsm deleted file mode 100644 index 32cddb5..0000000 Binary files a/docmost/db/base/1/2619_fsm and /dev/null differ diff --git a/docmost/db/base/1/2619_vm b/docmost/db/base/1/2619_vm deleted file mode 100644 index 95bff3f..0000000 Binary files a/docmost/db/base/1/2619_vm and /dev/null differ diff --git a/docmost/db/base/1/2620 b/docmost/db/base/1/2620 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/2650 b/docmost/db/base/1/2650 deleted file mode 100644 index 6e3f9d8..0000000 Binary files a/docmost/db/base/1/2650 and /dev/null differ diff --git a/docmost/db/base/1/2651 b/docmost/db/base/1/2651 deleted file mode 100644 index 122f1e9..0000000 Binary files a/docmost/db/base/1/2651 and /dev/null differ diff --git a/docmost/db/base/1/2652 b/docmost/db/base/1/2652 deleted file mode 100644 index 0893403..0000000 Binary files a/docmost/db/base/1/2652 and /dev/null differ diff --git a/docmost/db/base/1/2653 b/docmost/db/base/1/2653 deleted file mode 100644 index 7c90667..0000000 Binary files a/docmost/db/base/1/2653 and /dev/null differ diff --git a/docmost/db/base/1/2654 b/docmost/db/base/1/2654 deleted file mode 100644 index 25acc45..0000000 Binary files a/docmost/db/base/1/2654 and /dev/null differ diff --git a/docmost/db/base/1/2655 b/docmost/db/base/1/2655 deleted file mode 100644 index d7b8b42..0000000 Binary files a/docmost/db/base/1/2655 and /dev/null differ diff --git a/docmost/db/base/1/2656 b/docmost/db/base/1/2656 deleted file mode 100644 index 9eb8cff..0000000 Binary files a/docmost/db/base/1/2656 and /dev/null differ diff --git a/docmost/db/base/1/2657 b/docmost/db/base/1/2657 deleted file mode 100644 index bc6342c..0000000 Binary files a/docmost/db/base/1/2657 and /dev/null differ diff --git a/docmost/db/base/1/2658 b/docmost/db/base/1/2658 deleted file mode 100644 index 0a5baaf..0000000 Binary files a/docmost/db/base/1/2658 and /dev/null differ diff --git a/docmost/db/base/1/2659 b/docmost/db/base/1/2659 deleted file mode 100644 index 286b45f..0000000 Binary files a/docmost/db/base/1/2659 and /dev/null differ diff --git a/docmost/db/base/1/2660 b/docmost/db/base/1/2660 deleted file mode 100644 index 6ac2d3f..0000000 Binary files a/docmost/db/base/1/2660 and /dev/null differ diff --git a/docmost/db/base/1/2661 b/docmost/db/base/1/2661 deleted file mode 100644 index ce3bafa..0000000 Binary files a/docmost/db/base/1/2661 and /dev/null differ diff --git a/docmost/db/base/1/2662 b/docmost/db/base/1/2662 deleted file mode 100644 index 2980c1d..0000000 Binary files a/docmost/db/base/1/2662 and /dev/null differ diff --git a/docmost/db/base/1/2663 b/docmost/db/base/1/2663 deleted file mode 100644 index 3ad607c..0000000 Binary files a/docmost/db/base/1/2663 and /dev/null differ diff --git a/docmost/db/base/1/2664 b/docmost/db/base/1/2664 deleted file mode 100644 index 3b9e870..0000000 Binary files a/docmost/db/base/1/2664 and /dev/null differ diff --git a/docmost/db/base/1/2665 b/docmost/db/base/1/2665 deleted file mode 100644 index c87fc1b..0000000 Binary files a/docmost/db/base/1/2665 and /dev/null differ diff --git a/docmost/db/base/1/2666 b/docmost/db/base/1/2666 deleted file mode 100644 index 4816f00..0000000 Binary files a/docmost/db/base/1/2666 and /dev/null differ diff --git a/docmost/db/base/1/2667 b/docmost/db/base/1/2667 deleted file mode 100644 index 127592d..0000000 Binary files a/docmost/db/base/1/2667 and /dev/null differ diff --git a/docmost/db/base/1/2668 b/docmost/db/base/1/2668 deleted file mode 100644 index 34ad3c5..0000000 Binary files a/docmost/db/base/1/2668 and /dev/null differ diff --git a/docmost/db/base/1/2669 b/docmost/db/base/1/2669 deleted file mode 100644 index c8918e8..0000000 Binary files a/docmost/db/base/1/2669 and /dev/null differ diff --git a/docmost/db/base/1/2670 b/docmost/db/base/1/2670 deleted file mode 100644 index 36bf21b..0000000 Binary files a/docmost/db/base/1/2670 and /dev/null differ diff --git a/docmost/db/base/1/2673 b/docmost/db/base/1/2673 deleted file mode 100644 index c5d12f7..0000000 Binary files a/docmost/db/base/1/2673 and /dev/null differ diff --git a/docmost/db/base/1/2674 b/docmost/db/base/1/2674 deleted file mode 100644 index 81c1420..0000000 Binary files a/docmost/db/base/1/2674 and /dev/null differ diff --git a/docmost/db/base/1/2675 b/docmost/db/base/1/2675 deleted file mode 100644 index d942fbf..0000000 Binary files a/docmost/db/base/1/2675 and /dev/null differ diff --git a/docmost/db/base/1/2678 b/docmost/db/base/1/2678 deleted file mode 100644 index f40d4e8..0000000 Binary files a/docmost/db/base/1/2678 and /dev/null differ diff --git a/docmost/db/base/1/2679 b/docmost/db/base/1/2679 deleted file mode 100644 index 51f60db..0000000 Binary files a/docmost/db/base/1/2679 and /dev/null differ diff --git a/docmost/db/base/1/2680 b/docmost/db/base/1/2680 deleted file mode 100644 index 0eb18c7..0000000 Binary files a/docmost/db/base/1/2680 and /dev/null differ diff --git a/docmost/db/base/1/2681 b/docmost/db/base/1/2681 deleted file mode 100644 index 0519f74..0000000 Binary files a/docmost/db/base/1/2681 and /dev/null differ diff --git a/docmost/db/base/1/2682 b/docmost/db/base/1/2682 deleted file mode 100644 index 86664ca..0000000 Binary files a/docmost/db/base/1/2682 and /dev/null differ diff --git a/docmost/db/base/1/2683 b/docmost/db/base/1/2683 deleted file mode 100644 index 0bf1a55..0000000 Binary files a/docmost/db/base/1/2683 and /dev/null differ diff --git a/docmost/db/base/1/2684 b/docmost/db/base/1/2684 deleted file mode 100644 index 7919656..0000000 Binary files a/docmost/db/base/1/2684 and /dev/null differ diff --git a/docmost/db/base/1/2685 b/docmost/db/base/1/2685 deleted file mode 100644 index 33818d1..0000000 Binary files a/docmost/db/base/1/2685 and /dev/null differ diff --git a/docmost/db/base/1/2686 b/docmost/db/base/1/2686 deleted file mode 100644 index 3bd1a5b..0000000 Binary files a/docmost/db/base/1/2686 and /dev/null differ diff --git a/docmost/db/base/1/2687 b/docmost/db/base/1/2687 deleted file mode 100644 index 34e06cc..0000000 Binary files a/docmost/db/base/1/2687 and /dev/null differ diff --git a/docmost/db/base/1/2688 b/docmost/db/base/1/2688 deleted file mode 100644 index 1d184b4..0000000 Binary files a/docmost/db/base/1/2688 and /dev/null differ diff --git a/docmost/db/base/1/2689 b/docmost/db/base/1/2689 deleted file mode 100644 index 7999fe5..0000000 Binary files a/docmost/db/base/1/2689 and /dev/null differ diff --git a/docmost/db/base/1/2690 b/docmost/db/base/1/2690 deleted file mode 100644 index f6022a5..0000000 Binary files a/docmost/db/base/1/2690 and /dev/null differ diff --git a/docmost/db/base/1/2691 b/docmost/db/base/1/2691 deleted file mode 100644 index 14eaaa0..0000000 Binary files a/docmost/db/base/1/2691 and /dev/null differ diff --git a/docmost/db/base/1/2692 b/docmost/db/base/1/2692 deleted file mode 100644 index df5b102..0000000 Binary files a/docmost/db/base/1/2692 and /dev/null differ diff --git a/docmost/db/base/1/2693 b/docmost/db/base/1/2693 deleted file mode 100644 index 5962231..0000000 Binary files a/docmost/db/base/1/2693 and /dev/null differ diff --git a/docmost/db/base/1/2696 b/docmost/db/base/1/2696 deleted file mode 100644 index 63ba853..0000000 Binary files a/docmost/db/base/1/2696 and /dev/null differ diff --git a/docmost/db/base/1/2699 b/docmost/db/base/1/2699 deleted file mode 100644 index 104781d..0000000 Binary files a/docmost/db/base/1/2699 and /dev/null differ diff --git a/docmost/db/base/1/2701 b/docmost/db/base/1/2701 deleted file mode 100644 index 66bc81a..0000000 Binary files a/docmost/db/base/1/2701 and /dev/null differ diff --git a/docmost/db/base/1/2702 b/docmost/db/base/1/2702 deleted file mode 100644 index dbab200..0000000 Binary files a/docmost/db/base/1/2702 and /dev/null differ diff --git a/docmost/db/base/1/2703 b/docmost/db/base/1/2703 deleted file mode 100644 index 4382396..0000000 Binary files a/docmost/db/base/1/2703 and /dev/null differ diff --git a/docmost/db/base/1/2704 b/docmost/db/base/1/2704 deleted file mode 100644 index 8957a5a..0000000 Binary files a/docmost/db/base/1/2704 and /dev/null differ diff --git a/docmost/db/base/1/2753 b/docmost/db/base/1/2753 deleted file mode 100644 index 3c16dff..0000000 Binary files a/docmost/db/base/1/2753 and /dev/null differ diff --git a/docmost/db/base/1/2753_fsm b/docmost/db/base/1/2753_fsm deleted file mode 100644 index 642bce3..0000000 Binary files a/docmost/db/base/1/2753_fsm and /dev/null differ diff --git a/docmost/db/base/1/2753_vm b/docmost/db/base/1/2753_vm deleted file mode 100644 index 6bf3744..0000000 Binary files a/docmost/db/base/1/2753_vm and /dev/null differ diff --git a/docmost/db/base/1/2754 b/docmost/db/base/1/2754 deleted file mode 100644 index de7dd55..0000000 Binary files a/docmost/db/base/1/2754 and /dev/null differ diff --git a/docmost/db/base/1/2755 b/docmost/db/base/1/2755 deleted file mode 100644 index ccf2508..0000000 Binary files a/docmost/db/base/1/2755 and /dev/null differ diff --git a/docmost/db/base/1/2756 b/docmost/db/base/1/2756 deleted file mode 100644 index eea67e8..0000000 Binary files a/docmost/db/base/1/2756 and /dev/null differ diff --git a/docmost/db/base/1/2757 b/docmost/db/base/1/2757 deleted file mode 100644 index 1d27df5..0000000 Binary files a/docmost/db/base/1/2757 and /dev/null differ diff --git a/docmost/db/base/1/2830 b/docmost/db/base/1/2830 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/2831 b/docmost/db/base/1/2831 deleted file mode 100644 index 0f0513e..0000000 Binary files a/docmost/db/base/1/2831 and /dev/null differ diff --git a/docmost/db/base/1/2832 b/docmost/db/base/1/2832 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/2833 b/docmost/db/base/1/2833 deleted file mode 100644 index f0e78fc..0000000 Binary files a/docmost/db/base/1/2833 and /dev/null differ diff --git a/docmost/db/base/1/2834 b/docmost/db/base/1/2834 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/2835 b/docmost/db/base/1/2835 deleted file mode 100644 index 361e642..0000000 Binary files a/docmost/db/base/1/2835 and /dev/null differ diff --git a/docmost/db/base/1/2836 b/docmost/db/base/1/2836 deleted file mode 100644 index 229706f..0000000 Binary files a/docmost/db/base/1/2836 and /dev/null differ diff --git a/docmost/db/base/1/2836_fsm b/docmost/db/base/1/2836_fsm deleted file mode 100644 index 06e1e26..0000000 Binary files a/docmost/db/base/1/2836_fsm and /dev/null differ diff --git a/docmost/db/base/1/2836_vm b/docmost/db/base/1/2836_vm deleted file mode 100644 index 6d3e02d..0000000 Binary files a/docmost/db/base/1/2836_vm and /dev/null differ diff --git a/docmost/db/base/1/2837 b/docmost/db/base/1/2837 deleted file mode 100644 index d292c70..0000000 Binary files a/docmost/db/base/1/2837 and /dev/null differ diff --git a/docmost/db/base/1/2838 b/docmost/db/base/1/2838 deleted file mode 100644 index 9f32243..0000000 Binary files a/docmost/db/base/1/2838 and /dev/null differ diff --git a/docmost/db/base/1/2838_fsm b/docmost/db/base/1/2838_fsm deleted file mode 100644 index 5b51a82..0000000 Binary files a/docmost/db/base/1/2838_fsm and /dev/null differ diff --git a/docmost/db/base/1/2838_vm b/docmost/db/base/1/2838_vm deleted file mode 100644 index 2eb6d0b..0000000 Binary files a/docmost/db/base/1/2838_vm and /dev/null differ diff --git a/docmost/db/base/1/2839 b/docmost/db/base/1/2839 deleted file mode 100644 index 06d8ae7..0000000 Binary files a/docmost/db/base/1/2839 and /dev/null differ diff --git a/docmost/db/base/1/2840 b/docmost/db/base/1/2840 deleted file mode 100644 index 1a735cb..0000000 Binary files a/docmost/db/base/1/2840 and /dev/null differ diff --git a/docmost/db/base/1/2840_fsm b/docmost/db/base/1/2840_fsm deleted file mode 100644 index 6a8cb34..0000000 Binary files a/docmost/db/base/1/2840_fsm and /dev/null differ diff --git a/docmost/db/base/1/2840_vm b/docmost/db/base/1/2840_vm deleted file mode 100644 index 404f81a..0000000 Binary files a/docmost/db/base/1/2840_vm and /dev/null differ diff --git a/docmost/db/base/1/2841 b/docmost/db/base/1/2841 deleted file mode 100644 index 4d978e8..0000000 Binary files a/docmost/db/base/1/2841 and /dev/null differ diff --git a/docmost/db/base/1/2995 b/docmost/db/base/1/2995 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/2996 b/docmost/db/base/1/2996 deleted file mode 100644 index 9071dbe..0000000 Binary files a/docmost/db/base/1/2996 and /dev/null differ diff --git a/docmost/db/base/1/3079 b/docmost/db/base/1/3079 deleted file mode 100644 index 9b6e94c..0000000 Binary files a/docmost/db/base/1/3079 and /dev/null differ diff --git a/docmost/db/base/1/3079_fsm b/docmost/db/base/1/3079_fsm deleted file mode 100644 index 7732d22..0000000 Binary files a/docmost/db/base/1/3079_fsm and /dev/null differ diff --git a/docmost/db/base/1/3079_vm b/docmost/db/base/1/3079_vm deleted file mode 100644 index 22a0762..0000000 Binary files a/docmost/db/base/1/3079_vm and /dev/null differ diff --git a/docmost/db/base/1/3080 b/docmost/db/base/1/3080 deleted file mode 100644 index 3f77362..0000000 Binary files a/docmost/db/base/1/3080 and /dev/null differ diff --git a/docmost/db/base/1/3081 b/docmost/db/base/1/3081 deleted file mode 100644 index 9b5489e..0000000 Binary files a/docmost/db/base/1/3081 and /dev/null differ diff --git a/docmost/db/base/1/3085 b/docmost/db/base/1/3085 deleted file mode 100644 index 62921de..0000000 Binary files a/docmost/db/base/1/3085 and /dev/null differ diff --git a/docmost/db/base/1/3118 b/docmost/db/base/1/3118 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/3119 b/docmost/db/base/1/3119 deleted file mode 100644 index 8524de7..0000000 Binary files a/docmost/db/base/1/3119 and /dev/null differ diff --git a/docmost/db/base/1/3164 b/docmost/db/base/1/3164 deleted file mode 100644 index 81600cf..0000000 Binary files a/docmost/db/base/1/3164 and /dev/null differ diff --git a/docmost/db/base/1/3256 b/docmost/db/base/1/3256 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/3257 b/docmost/db/base/1/3257 deleted file mode 100644 index 6f325ab..0000000 Binary files a/docmost/db/base/1/3257 and /dev/null differ diff --git a/docmost/db/base/1/3258 b/docmost/db/base/1/3258 deleted file mode 100644 index 10c3c94..0000000 Binary files a/docmost/db/base/1/3258 and /dev/null differ diff --git a/docmost/db/base/1/3350 b/docmost/db/base/1/3350 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/3351 b/docmost/db/base/1/3351 deleted file mode 100644 index 2bfef7f..0000000 Binary files a/docmost/db/base/1/3351 and /dev/null differ diff --git a/docmost/db/base/1/3379 b/docmost/db/base/1/3379 deleted file mode 100644 index d1e70d4..0000000 Binary files a/docmost/db/base/1/3379 and /dev/null differ diff --git a/docmost/db/base/1/3380 b/docmost/db/base/1/3380 deleted file mode 100644 index 9830667..0000000 Binary files a/docmost/db/base/1/3380 and /dev/null differ diff --git a/docmost/db/base/1/3381 b/docmost/db/base/1/3381 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/3394 b/docmost/db/base/1/3394 deleted file mode 100644 index c6381c5..0000000 Binary files a/docmost/db/base/1/3394 and /dev/null differ diff --git a/docmost/db/base/1/3394_fsm b/docmost/db/base/1/3394_fsm deleted file mode 100644 index 38ac5f8..0000000 Binary files a/docmost/db/base/1/3394_fsm and /dev/null differ diff --git a/docmost/db/base/1/3394_vm b/docmost/db/base/1/3394_vm deleted file mode 100644 index 1047124..0000000 Binary files a/docmost/db/base/1/3394_vm and /dev/null differ diff --git a/docmost/db/base/1/3395 b/docmost/db/base/1/3395 deleted file mode 100644 index a319d6a..0000000 Binary files a/docmost/db/base/1/3395 and /dev/null differ diff --git a/docmost/db/base/1/3429 b/docmost/db/base/1/3429 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/3430 b/docmost/db/base/1/3430 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/3431 b/docmost/db/base/1/3431 deleted file mode 100644 index 872ecbe..0000000 Binary files a/docmost/db/base/1/3431 and /dev/null differ diff --git a/docmost/db/base/1/3433 b/docmost/db/base/1/3433 deleted file mode 100644 index c114108..0000000 Binary files a/docmost/db/base/1/3433 and /dev/null differ diff --git a/docmost/db/base/1/3439 b/docmost/db/base/1/3439 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/3440 b/docmost/db/base/1/3440 deleted file mode 100644 index de56c84..0000000 Binary files a/docmost/db/base/1/3440 and /dev/null differ diff --git a/docmost/db/base/1/3455 b/docmost/db/base/1/3455 deleted file mode 100644 index ace32e7..0000000 Binary files a/docmost/db/base/1/3455 and /dev/null differ diff --git a/docmost/db/base/1/3456 b/docmost/db/base/1/3456 deleted file mode 100644 index 26e43c3..0000000 Binary files a/docmost/db/base/1/3456 and /dev/null differ diff --git a/docmost/db/base/1/3456_fsm b/docmost/db/base/1/3456_fsm deleted file mode 100644 index 2823c77..0000000 Binary files a/docmost/db/base/1/3456_fsm and /dev/null differ diff --git a/docmost/db/base/1/3456_vm b/docmost/db/base/1/3456_vm deleted file mode 100644 index 9341825..0000000 Binary files a/docmost/db/base/1/3456_vm and /dev/null differ diff --git a/docmost/db/base/1/3466 b/docmost/db/base/1/3466 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/3467 b/docmost/db/base/1/3467 deleted file mode 100644 index 5b378cb..0000000 Binary files a/docmost/db/base/1/3467 and /dev/null differ diff --git a/docmost/db/base/1/3468 b/docmost/db/base/1/3468 deleted file mode 100644 index ef2294a..0000000 Binary files a/docmost/db/base/1/3468 and /dev/null differ diff --git a/docmost/db/base/1/3501 b/docmost/db/base/1/3501 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/3502 b/docmost/db/base/1/3502 deleted file mode 100644 index 9b7eaca..0000000 Binary files a/docmost/db/base/1/3502 and /dev/null differ diff --git a/docmost/db/base/1/3503 b/docmost/db/base/1/3503 deleted file mode 100644 index 1601fe2..0000000 Binary files a/docmost/db/base/1/3503 and /dev/null differ diff --git a/docmost/db/base/1/3534 b/docmost/db/base/1/3534 deleted file mode 100644 index 0d5583a..0000000 Binary files a/docmost/db/base/1/3534 and /dev/null differ diff --git a/docmost/db/base/1/3541 b/docmost/db/base/1/3541 deleted file mode 100644 index 40869ad..0000000 Binary files a/docmost/db/base/1/3541 and /dev/null differ diff --git a/docmost/db/base/1/3541_fsm b/docmost/db/base/1/3541_fsm deleted file mode 100644 index a3a2de4..0000000 Binary files a/docmost/db/base/1/3541_fsm and /dev/null differ diff --git a/docmost/db/base/1/3541_vm b/docmost/db/base/1/3541_vm deleted file mode 100644 index 7e25dcf..0000000 Binary files a/docmost/db/base/1/3541_vm and /dev/null differ diff --git a/docmost/db/base/1/3542 b/docmost/db/base/1/3542 deleted file mode 100644 index ced0066..0000000 Binary files a/docmost/db/base/1/3542 and /dev/null differ diff --git a/docmost/db/base/1/3574 b/docmost/db/base/1/3574 deleted file mode 100644 index b026df1..0000000 Binary files a/docmost/db/base/1/3574 and /dev/null differ diff --git a/docmost/db/base/1/3575 b/docmost/db/base/1/3575 deleted file mode 100644 index bdec532..0000000 Binary files a/docmost/db/base/1/3575 and /dev/null differ diff --git a/docmost/db/base/1/3576 b/docmost/db/base/1/3576 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/3596 b/docmost/db/base/1/3596 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/3597 b/docmost/db/base/1/3597 deleted file mode 100644 index 6947306..0000000 Binary files a/docmost/db/base/1/3597 and /dev/null differ diff --git a/docmost/db/base/1/3598 b/docmost/db/base/1/3598 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/3599 b/docmost/db/base/1/3599 deleted file mode 100644 index 90bad73..0000000 Binary files a/docmost/db/base/1/3599 and /dev/null differ diff --git a/docmost/db/base/1/3600 b/docmost/db/base/1/3600 deleted file mode 100644 index aa8d56a..0000000 Binary files a/docmost/db/base/1/3600 and /dev/null differ diff --git a/docmost/db/base/1/3600_fsm b/docmost/db/base/1/3600_fsm deleted file mode 100644 index cebec19..0000000 Binary files a/docmost/db/base/1/3600_fsm and /dev/null differ diff --git a/docmost/db/base/1/3600_vm b/docmost/db/base/1/3600_vm deleted file mode 100644 index 9331bd3..0000000 Binary files a/docmost/db/base/1/3600_vm and /dev/null differ diff --git a/docmost/db/base/1/3601 b/docmost/db/base/1/3601 deleted file mode 100644 index 04c846e..0000000 Binary files a/docmost/db/base/1/3601 and /dev/null differ diff --git a/docmost/db/base/1/3601_fsm b/docmost/db/base/1/3601_fsm deleted file mode 100644 index 7732d22..0000000 Binary files a/docmost/db/base/1/3601_fsm and /dev/null differ diff --git a/docmost/db/base/1/3601_vm b/docmost/db/base/1/3601_vm deleted file mode 100644 index 90ff664..0000000 Binary files a/docmost/db/base/1/3601_vm and /dev/null differ diff --git a/docmost/db/base/1/3602 b/docmost/db/base/1/3602 deleted file mode 100644 index 2038ed7..0000000 Binary files a/docmost/db/base/1/3602 and /dev/null differ diff --git a/docmost/db/base/1/3602_fsm b/docmost/db/base/1/3602_fsm deleted file mode 100644 index d7897de..0000000 Binary files a/docmost/db/base/1/3602_fsm and /dev/null differ diff --git a/docmost/db/base/1/3602_vm b/docmost/db/base/1/3602_vm deleted file mode 100644 index f1ea290..0000000 Binary files a/docmost/db/base/1/3602_vm and /dev/null differ diff --git a/docmost/db/base/1/3603 b/docmost/db/base/1/3603 deleted file mode 100644 index ba184af..0000000 Binary files a/docmost/db/base/1/3603 and /dev/null differ diff --git a/docmost/db/base/1/3603_fsm b/docmost/db/base/1/3603_fsm deleted file mode 100644 index c28dd4f..0000000 Binary files a/docmost/db/base/1/3603_fsm and /dev/null differ diff --git a/docmost/db/base/1/3603_vm b/docmost/db/base/1/3603_vm deleted file mode 100644 index 39b0db0..0000000 Binary files a/docmost/db/base/1/3603_vm and /dev/null differ diff --git a/docmost/db/base/1/3604 b/docmost/db/base/1/3604 deleted file mode 100644 index 4efd0c8..0000000 Binary files a/docmost/db/base/1/3604 and /dev/null differ diff --git a/docmost/db/base/1/3605 b/docmost/db/base/1/3605 deleted file mode 100644 index f02a201..0000000 Binary files a/docmost/db/base/1/3605 and /dev/null differ diff --git a/docmost/db/base/1/3606 b/docmost/db/base/1/3606 deleted file mode 100644 index 5d00237..0000000 Binary files a/docmost/db/base/1/3606 and /dev/null differ diff --git a/docmost/db/base/1/3607 b/docmost/db/base/1/3607 deleted file mode 100644 index 3a1af44..0000000 Binary files a/docmost/db/base/1/3607 and /dev/null differ diff --git a/docmost/db/base/1/3608 b/docmost/db/base/1/3608 deleted file mode 100644 index 4333731..0000000 Binary files a/docmost/db/base/1/3608 and /dev/null differ diff --git a/docmost/db/base/1/3609 b/docmost/db/base/1/3609 deleted file mode 100644 index 028b9cb..0000000 Binary files a/docmost/db/base/1/3609 and /dev/null differ diff --git a/docmost/db/base/1/3712 b/docmost/db/base/1/3712 deleted file mode 100644 index ecfd1ac..0000000 Binary files a/docmost/db/base/1/3712 and /dev/null differ diff --git a/docmost/db/base/1/3764 b/docmost/db/base/1/3764 deleted file mode 100644 index 73c5c42..0000000 Binary files a/docmost/db/base/1/3764 and /dev/null differ diff --git a/docmost/db/base/1/3764_fsm b/docmost/db/base/1/3764_fsm deleted file mode 100644 index f64db4d..0000000 Binary files a/docmost/db/base/1/3764_fsm and /dev/null differ diff --git a/docmost/db/base/1/3764_vm b/docmost/db/base/1/3764_vm deleted file mode 100644 index 2433aeb..0000000 Binary files a/docmost/db/base/1/3764_vm and /dev/null differ diff --git a/docmost/db/base/1/3766 b/docmost/db/base/1/3766 deleted file mode 100644 index d2bb654..0000000 Binary files a/docmost/db/base/1/3766 and /dev/null differ diff --git a/docmost/db/base/1/3767 b/docmost/db/base/1/3767 deleted file mode 100644 index 2205e77..0000000 Binary files a/docmost/db/base/1/3767 and /dev/null differ diff --git a/docmost/db/base/1/3997 b/docmost/db/base/1/3997 deleted file mode 100644 index 9ef1f09..0000000 Binary files a/docmost/db/base/1/3997 and /dev/null differ diff --git a/docmost/db/base/1/4143 b/docmost/db/base/1/4143 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/4144 b/docmost/db/base/1/4144 deleted file mode 100644 index de004a0..0000000 Binary files a/docmost/db/base/1/4144 and /dev/null differ diff --git a/docmost/db/base/1/4145 b/docmost/db/base/1/4145 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/4146 b/docmost/db/base/1/4146 deleted file mode 100644 index 83ca124..0000000 Binary files a/docmost/db/base/1/4146 and /dev/null differ diff --git a/docmost/db/base/1/4147 b/docmost/db/base/1/4147 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/4148 b/docmost/db/base/1/4148 deleted file mode 100644 index 850287d..0000000 Binary files a/docmost/db/base/1/4148 and /dev/null differ diff --git a/docmost/db/base/1/4149 b/docmost/db/base/1/4149 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/4150 b/docmost/db/base/1/4150 deleted file mode 100644 index 3746b91..0000000 Binary files a/docmost/db/base/1/4150 and /dev/null differ diff --git a/docmost/db/base/1/4151 b/docmost/db/base/1/4151 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/4152 b/docmost/db/base/1/4152 deleted file mode 100644 index 4f1cdd9..0000000 Binary files a/docmost/db/base/1/4152 and /dev/null differ diff --git a/docmost/db/base/1/4153 b/docmost/db/base/1/4153 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/4154 b/docmost/db/base/1/4154 deleted file mode 100644 index b50bd32..0000000 Binary files a/docmost/db/base/1/4154 and /dev/null differ diff --git a/docmost/db/base/1/4155 b/docmost/db/base/1/4155 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/4156 b/docmost/db/base/1/4156 deleted file mode 100644 index 2ac1bb7..0000000 Binary files a/docmost/db/base/1/4156 and /dev/null differ diff --git a/docmost/db/base/1/4157 b/docmost/db/base/1/4157 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/4158 b/docmost/db/base/1/4158 deleted file mode 100644 index 4210e43..0000000 Binary files a/docmost/db/base/1/4158 and /dev/null differ diff --git a/docmost/db/base/1/4159 b/docmost/db/base/1/4159 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/4160 b/docmost/db/base/1/4160 deleted file mode 100644 index 0d91ef7..0000000 Binary files a/docmost/db/base/1/4160 and /dev/null differ diff --git a/docmost/db/base/1/4163 b/docmost/db/base/1/4163 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/4164 b/docmost/db/base/1/4164 deleted file mode 100644 index 099499b..0000000 Binary files a/docmost/db/base/1/4164 and /dev/null differ diff --git a/docmost/db/base/1/4165 b/docmost/db/base/1/4165 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/4166 b/docmost/db/base/1/4166 deleted file mode 100644 index faa8f27..0000000 Binary files a/docmost/db/base/1/4166 and /dev/null differ diff --git a/docmost/db/base/1/4167 b/docmost/db/base/1/4167 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/4168 b/docmost/db/base/1/4168 deleted file mode 100644 index c4182f2..0000000 Binary files a/docmost/db/base/1/4168 and /dev/null differ diff --git a/docmost/db/base/1/4169 b/docmost/db/base/1/4169 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/4170 b/docmost/db/base/1/4170 deleted file mode 100644 index bab73d9..0000000 Binary files a/docmost/db/base/1/4170 and /dev/null differ diff --git a/docmost/db/base/1/4171 b/docmost/db/base/1/4171 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/4172 b/docmost/db/base/1/4172 deleted file mode 100644 index 2b4fc7b..0000000 Binary files a/docmost/db/base/1/4172 and /dev/null differ diff --git a/docmost/db/base/1/4173 b/docmost/db/base/1/4173 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/4174 b/docmost/db/base/1/4174 deleted file mode 100644 index 6c533c1..0000000 Binary files a/docmost/db/base/1/4174 and /dev/null differ diff --git a/docmost/db/base/1/5002 b/docmost/db/base/1/5002 deleted file mode 100644 index aefa40d..0000000 Binary files a/docmost/db/base/1/5002 and /dev/null differ diff --git a/docmost/db/base/1/548 b/docmost/db/base/1/548 deleted file mode 100644 index d6379eb..0000000 Binary files a/docmost/db/base/1/548 and /dev/null differ diff --git a/docmost/db/base/1/549 b/docmost/db/base/1/549 deleted file mode 100644 index a762ad9..0000000 Binary files a/docmost/db/base/1/549 and /dev/null differ diff --git a/docmost/db/base/1/6102 b/docmost/db/base/1/6102 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/6104 b/docmost/db/base/1/6104 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/6106 b/docmost/db/base/1/6106 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/6110 b/docmost/db/base/1/6110 deleted file mode 100644 index 42e1920..0000000 Binary files a/docmost/db/base/1/6110 and /dev/null differ diff --git a/docmost/db/base/1/6111 b/docmost/db/base/1/6111 deleted file mode 100644 index d012727..0000000 Binary files a/docmost/db/base/1/6111 and /dev/null differ diff --git a/docmost/db/base/1/6112 b/docmost/db/base/1/6112 deleted file mode 100644 index 293367c..0000000 Binary files a/docmost/db/base/1/6112 and /dev/null differ diff --git a/docmost/db/base/1/6113 b/docmost/db/base/1/6113 deleted file mode 100644 index 542f8fa..0000000 Binary files a/docmost/db/base/1/6113 and /dev/null differ diff --git a/docmost/db/base/1/6116 b/docmost/db/base/1/6116 deleted file mode 100644 index 787d5d1..0000000 Binary files a/docmost/db/base/1/6116 and /dev/null differ diff --git a/docmost/db/base/1/6117 b/docmost/db/base/1/6117 deleted file mode 100644 index 2b5656b..0000000 Binary files a/docmost/db/base/1/6117 and /dev/null differ diff --git a/docmost/db/base/1/6175 b/docmost/db/base/1/6175 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/6176 b/docmost/db/base/1/6176 deleted file mode 100644 index caa7faf..0000000 Binary files a/docmost/db/base/1/6176 and /dev/null differ diff --git a/docmost/db/base/1/6228 b/docmost/db/base/1/6228 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/6229 b/docmost/db/base/1/6229 deleted file mode 100644 index e70b603..0000000 Binary files a/docmost/db/base/1/6229 and /dev/null differ diff --git a/docmost/db/base/1/6237 b/docmost/db/base/1/6237 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/6238 b/docmost/db/base/1/6238 deleted file mode 100644 index e7c0e8c..0000000 Binary files a/docmost/db/base/1/6238 and /dev/null differ diff --git a/docmost/db/base/1/6239 b/docmost/db/base/1/6239 deleted file mode 100644 index 6c60b50..0000000 Binary files a/docmost/db/base/1/6239 and /dev/null differ diff --git a/docmost/db/base/1/826 b/docmost/db/base/1/826 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/1/827 b/docmost/db/base/1/827 deleted file mode 100644 index bcaf0a1..0000000 Binary files a/docmost/db/base/1/827 and /dev/null differ diff --git a/docmost/db/base/1/828 b/docmost/db/base/1/828 deleted file mode 100644 index 7aba562..0000000 Binary files a/docmost/db/base/1/828 and /dev/null differ diff --git a/docmost/db/base/1/PG_VERSION b/docmost/db/base/1/PG_VERSION deleted file mode 100644 index b6a7d89..0000000 --- a/docmost/db/base/1/PG_VERSION +++ /dev/null @@ -1 +0,0 @@ -16 diff --git a/docmost/db/base/1/pg_filenode.map b/docmost/db/base/1/pg_filenode.map deleted file mode 100644 index 4fc801a..0000000 Binary files a/docmost/db/base/1/pg_filenode.map and /dev/null differ diff --git a/docmost/db/base/16384/112 b/docmost/db/base/16384/112 deleted file mode 100644 index 7428689..0000000 Binary files a/docmost/db/base/16384/112 and /dev/null differ diff --git a/docmost/db/base/16384/113 b/docmost/db/base/16384/113 deleted file mode 100644 index c4b2491..0000000 Binary files a/docmost/db/base/16384/113 and /dev/null differ diff --git a/docmost/db/base/16384/1247 b/docmost/db/base/16384/1247 deleted file mode 100644 index 47f0f79..0000000 Binary files a/docmost/db/base/16384/1247 and /dev/null differ diff --git a/docmost/db/base/16384/1247_fsm b/docmost/db/base/16384/1247_fsm deleted file mode 100644 index 3009e0a..0000000 Binary files a/docmost/db/base/16384/1247_fsm and /dev/null differ diff --git a/docmost/db/base/16384/1247_vm b/docmost/db/base/16384/1247_vm deleted file mode 100644 index 64b3c47..0000000 Binary files a/docmost/db/base/16384/1247_vm and /dev/null differ diff --git a/docmost/db/base/16384/1249 b/docmost/db/base/16384/1249 deleted file mode 100644 index e5b6a08..0000000 Binary files a/docmost/db/base/16384/1249 and /dev/null differ diff --git a/docmost/db/base/16384/1249_fsm b/docmost/db/base/16384/1249_fsm deleted file mode 100644 index 7e37d72..0000000 Binary files a/docmost/db/base/16384/1249_fsm and /dev/null differ diff --git a/docmost/db/base/16384/1249_vm b/docmost/db/base/16384/1249_vm deleted file mode 100644 index dba1d2b..0000000 Binary files a/docmost/db/base/16384/1249_vm and /dev/null differ diff --git a/docmost/db/base/16384/1255 b/docmost/db/base/16384/1255 deleted file mode 100644 index 894227b..0000000 Binary files a/docmost/db/base/16384/1255 and /dev/null differ diff --git a/docmost/db/base/16384/1255_fsm b/docmost/db/base/16384/1255_fsm deleted file mode 100644 index 3cf5d00..0000000 Binary files a/docmost/db/base/16384/1255_fsm and /dev/null differ diff --git a/docmost/db/base/16384/1255_vm b/docmost/db/base/16384/1255_vm deleted file mode 100644 index e3150b1..0000000 Binary files a/docmost/db/base/16384/1255_vm and /dev/null differ diff --git a/docmost/db/base/16384/1259 b/docmost/db/base/16384/1259 deleted file mode 100644 index 9733563..0000000 Binary files a/docmost/db/base/16384/1259 and /dev/null differ diff --git a/docmost/db/base/16384/1259_fsm b/docmost/db/base/16384/1259_fsm deleted file mode 100644 index 8c85f1b..0000000 Binary files a/docmost/db/base/16384/1259_fsm and /dev/null differ diff --git a/docmost/db/base/16384/1259_vm b/docmost/db/base/16384/1259_vm deleted file mode 100644 index aa618c7..0000000 Binary files a/docmost/db/base/16384/1259_vm and /dev/null differ diff --git a/docmost/db/base/16384/13457 b/docmost/db/base/16384/13457 deleted file mode 100644 index 8dff277..0000000 Binary files a/docmost/db/base/16384/13457 and /dev/null differ diff --git a/docmost/db/base/16384/13457_fsm b/docmost/db/base/16384/13457_fsm deleted file mode 100644 index 1b2fb62..0000000 Binary files a/docmost/db/base/16384/13457_fsm and /dev/null differ diff --git a/docmost/db/base/16384/13457_vm b/docmost/db/base/16384/13457_vm deleted file mode 100644 index c78d631..0000000 Binary files a/docmost/db/base/16384/13457_vm and /dev/null differ diff --git a/docmost/db/base/16384/13460 b/docmost/db/base/16384/13460 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/13461 b/docmost/db/base/16384/13461 deleted file mode 100644 index 6f8d215..0000000 Binary files a/docmost/db/base/16384/13461 and /dev/null differ diff --git a/docmost/db/base/16384/13462 b/docmost/db/base/16384/13462 deleted file mode 100644 index 876c1ec..0000000 Binary files a/docmost/db/base/16384/13462 and /dev/null differ diff --git a/docmost/db/base/16384/13462_fsm b/docmost/db/base/16384/13462_fsm deleted file mode 100644 index f6fd46e..0000000 Binary files a/docmost/db/base/16384/13462_fsm and /dev/null differ diff --git a/docmost/db/base/16384/13462_vm b/docmost/db/base/16384/13462_vm deleted file mode 100644 index e16ae8d..0000000 Binary files a/docmost/db/base/16384/13462_vm and /dev/null differ diff --git a/docmost/db/base/16384/13465 b/docmost/db/base/16384/13465 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/13466 b/docmost/db/base/16384/13466 deleted file mode 100644 index 0df1825..0000000 Binary files a/docmost/db/base/16384/13466 and /dev/null differ diff --git a/docmost/db/base/16384/13467 b/docmost/db/base/16384/13467 deleted file mode 100644 index fb52d9a..0000000 Binary files a/docmost/db/base/16384/13467 and /dev/null differ diff --git a/docmost/db/base/16384/13467_fsm b/docmost/db/base/16384/13467_fsm deleted file mode 100644 index 32c258c..0000000 Binary files a/docmost/db/base/16384/13467_fsm and /dev/null differ diff --git a/docmost/db/base/16384/13467_vm b/docmost/db/base/16384/13467_vm deleted file mode 100644 index 729b951..0000000 Binary files a/docmost/db/base/16384/13467_vm and /dev/null differ diff --git a/docmost/db/base/16384/13470 b/docmost/db/base/16384/13470 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/13471 b/docmost/db/base/16384/13471 deleted file mode 100644 index 9e92d68..0000000 Binary files a/docmost/db/base/16384/13471 and /dev/null differ diff --git a/docmost/db/base/16384/13472 b/docmost/db/base/16384/13472 deleted file mode 100644 index ee2887f..0000000 Binary files a/docmost/db/base/16384/13472 and /dev/null differ diff --git a/docmost/db/base/16384/13472_fsm b/docmost/db/base/16384/13472_fsm deleted file mode 100644 index 6fc6a0b..0000000 Binary files a/docmost/db/base/16384/13472_fsm and /dev/null differ diff --git a/docmost/db/base/16384/13472_vm b/docmost/db/base/16384/13472_vm deleted file mode 100644 index c4547e6..0000000 Binary files a/docmost/db/base/16384/13472_vm and /dev/null differ diff --git a/docmost/db/base/16384/13475 b/docmost/db/base/16384/13475 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/13476 b/docmost/db/base/16384/13476 deleted file mode 100644 index 5c345b3..0000000 Binary files a/docmost/db/base/16384/13476 and /dev/null differ diff --git a/docmost/db/base/16384/1417 b/docmost/db/base/16384/1417 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/1418 b/docmost/db/base/16384/1418 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/16385 b/docmost/db/base/16384/16385 deleted file mode 100644 index 7655186..0000000 Binary files a/docmost/db/base/16384/16385 and /dev/null differ diff --git a/docmost/db/base/16384/16388 b/docmost/db/base/16384/16388 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/16389 b/docmost/db/base/16384/16389 deleted file mode 100644 index 61a59b0..0000000 Binary files a/docmost/db/base/16384/16389 and /dev/null differ diff --git a/docmost/db/base/16384/16390 b/docmost/db/base/16384/16390 deleted file mode 100644 index 3591490..0000000 Binary files a/docmost/db/base/16384/16390 and /dev/null differ diff --git a/docmost/db/base/16384/16392 b/docmost/db/base/16384/16392 deleted file mode 100644 index e4ca820..0000000 Binary files a/docmost/db/base/16384/16392 and /dev/null differ diff --git a/docmost/db/base/16384/16396 b/docmost/db/base/16384/16396 deleted file mode 100644 index f6118fd..0000000 Binary files a/docmost/db/base/16384/16396 and /dev/null differ diff --git a/docmost/db/base/16384/16399 b/docmost/db/base/16384/16399 deleted file mode 100644 index 065ca3d..0000000 Binary files a/docmost/db/base/16384/16399 and /dev/null differ diff --git a/docmost/db/base/16384/16407 b/docmost/db/base/16384/16407 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/16408 b/docmost/db/base/16384/16408 deleted file mode 100644 index e0b2620..0000000 Binary files a/docmost/db/base/16384/16408 and /dev/null differ diff --git a/docmost/db/base/16384/16409 b/docmost/db/base/16384/16409 deleted file mode 100644 index fd9628e..0000000 Binary files a/docmost/db/base/16384/16409 and /dev/null differ diff --git a/docmost/db/base/16384/16411 b/docmost/db/base/16384/16411 deleted file mode 100644 index a07b076..0000000 Binary files a/docmost/db/base/16384/16411 and /dev/null differ diff --git a/docmost/db/base/16384/16413 b/docmost/db/base/16384/16413 deleted file mode 100644 index 241f62e..0000000 Binary files a/docmost/db/base/16384/16413 and /dev/null differ diff --git a/docmost/db/base/16384/16415 b/docmost/db/base/16384/16415 deleted file mode 100644 index 16981b6..0000000 Binary files a/docmost/db/base/16384/16415 and /dev/null differ diff --git a/docmost/db/base/16384/16421 b/docmost/db/base/16384/16421 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/16422 b/docmost/db/base/16384/16422 deleted file mode 100644 index 736c5b2..0000000 Binary files a/docmost/db/base/16384/16422 and /dev/null differ diff --git a/docmost/db/base/16384/16423 b/docmost/db/base/16384/16423 deleted file mode 100644 index 3e17334..0000000 Binary files a/docmost/db/base/16384/16423 and /dev/null differ diff --git a/docmost/db/base/16384/16425 b/docmost/db/base/16384/16425 deleted file mode 100644 index bd8a152..0000000 Binary files a/docmost/db/base/16384/16425 and /dev/null differ diff --git a/docmost/db/base/16384/16437 b/docmost/db/base/16384/16437 deleted file mode 100644 index 3daa689..0000000 Binary files a/docmost/db/base/16384/16437 and /dev/null differ diff --git a/docmost/db/base/16384/16443 b/docmost/db/base/16384/16443 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/16444 b/docmost/db/base/16384/16444 deleted file mode 100644 index 6b81a13..0000000 Binary files a/docmost/db/base/16384/16444 and /dev/null differ diff --git a/docmost/db/base/16384/16445 b/docmost/db/base/16384/16445 deleted file mode 100644 index ec061b2..0000000 Binary files a/docmost/db/base/16384/16445 and /dev/null differ diff --git a/docmost/db/base/16384/16447 b/docmost/db/base/16384/16447 deleted file mode 100644 index f54da8a..0000000 Binary files a/docmost/db/base/16384/16447 and /dev/null differ diff --git a/docmost/db/base/16384/16459 b/docmost/db/base/16384/16459 deleted file mode 100644 index 91586d4..0000000 Binary files a/docmost/db/base/16384/16459 and /dev/null differ diff --git a/docmost/db/base/16384/16465 b/docmost/db/base/16384/16465 deleted file mode 100644 index aeee0a7..0000000 Binary files a/docmost/db/base/16384/16465 and /dev/null differ diff --git a/docmost/db/base/16384/16467 b/docmost/db/base/16384/16467 deleted file mode 100644 index 3a9a95e..0000000 Binary files a/docmost/db/base/16384/16467 and /dev/null differ diff --git a/docmost/db/base/16384/16479 b/docmost/db/base/16384/16479 deleted file mode 100644 index f6fa353..0000000 Binary files a/docmost/db/base/16384/16479 and /dev/null differ diff --git a/docmost/db/base/16384/16487 b/docmost/db/base/16384/16487 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/16488 b/docmost/db/base/16384/16488 deleted file mode 100644 index 2ef6453..0000000 Binary files a/docmost/db/base/16384/16488 and /dev/null differ diff --git a/docmost/db/base/16384/16489 b/docmost/db/base/16384/16489 deleted file mode 100644 index d7d26f6..0000000 Binary files a/docmost/db/base/16384/16489 and /dev/null differ diff --git a/docmost/db/base/16384/16491 b/docmost/db/base/16384/16491 deleted file mode 100644 index 8c43e8d..0000000 Binary files a/docmost/db/base/16384/16491 and /dev/null differ diff --git a/docmost/db/base/16384/16503 b/docmost/db/base/16384/16503 deleted file mode 100644 index 66cdb2e..0000000 Binary files a/docmost/db/base/16384/16503 and /dev/null differ diff --git a/docmost/db/base/16384/16510 b/docmost/db/base/16384/16510 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/16511 b/docmost/db/base/16384/16511 deleted file mode 100644 index df0597c..0000000 Binary files a/docmost/db/base/16384/16511 and /dev/null differ diff --git a/docmost/db/base/16384/16512 b/docmost/db/base/16384/16512 deleted file mode 100644 index add2ff1..0000000 Binary files a/docmost/db/base/16384/16512 and /dev/null differ diff --git a/docmost/db/base/16384/16514 b/docmost/db/base/16384/16514 deleted file mode 100644 index 5c84bcc..0000000 Binary files a/docmost/db/base/16384/16514 and /dev/null differ diff --git a/docmost/db/base/16384/16516 b/docmost/db/base/16384/16516 deleted file mode 100644 index 24e5337..0000000 Binary files a/docmost/db/base/16384/16516 and /dev/null differ diff --git a/docmost/db/base/16384/16543 b/docmost/db/base/16384/16543 deleted file mode 100644 index e2573e1..0000000 Binary files a/docmost/db/base/16384/16543 and /dev/null differ diff --git a/docmost/db/base/16384/16549 b/docmost/db/base/16384/16549 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/16550 b/docmost/db/base/16384/16550 deleted file mode 100644 index 3101ff8..0000000 Binary files a/docmost/db/base/16384/16550 and /dev/null differ diff --git a/docmost/db/base/16384/16551 b/docmost/db/base/16384/16551 deleted file mode 100644 index 2d48ade..0000000 Binary files a/docmost/db/base/16384/16551 and /dev/null differ diff --git a/docmost/db/base/16384/16553 b/docmost/db/base/16384/16553 deleted file mode 100644 index 66d786d..0000000 Binary files a/docmost/db/base/16384/16553 and /dev/null differ diff --git a/docmost/db/base/16384/16565 b/docmost/db/base/16384/16565 deleted file mode 100644 index cf747e8..0000000 Binary files a/docmost/db/base/16384/16565 and /dev/null differ diff --git a/docmost/db/base/16384/16565_fsm b/docmost/db/base/16384/16565_fsm deleted file mode 100644 index 69a1817..0000000 Binary files a/docmost/db/base/16384/16565_fsm and /dev/null differ diff --git a/docmost/db/base/16384/16572 b/docmost/db/base/16384/16572 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/16573 b/docmost/db/base/16384/16573 deleted file mode 100644 index 11d0b6d..0000000 Binary files a/docmost/db/base/16384/16573 and /dev/null differ diff --git a/docmost/db/base/16384/16574 b/docmost/db/base/16384/16574 deleted file mode 100644 index 0868f4e..0000000 Binary files a/docmost/db/base/16384/16574 and /dev/null differ diff --git a/docmost/db/base/16384/16576 b/docmost/db/base/16384/16576 deleted file mode 100644 index c9bd693..0000000 Binary files a/docmost/db/base/16384/16576 and /dev/null differ diff --git a/docmost/db/base/16384/16608 b/docmost/db/base/16384/16608 deleted file mode 100644 index 6f4beea..0000000 Binary files a/docmost/db/base/16384/16608 and /dev/null differ diff --git a/docmost/db/base/16384/16610 b/docmost/db/base/16384/16610 deleted file mode 100644 index 7fc0019..0000000 Binary files a/docmost/db/base/16384/16610 and /dev/null differ diff --git a/docmost/db/base/16384/16616 b/docmost/db/base/16384/16616 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/16617 b/docmost/db/base/16384/16617 deleted file mode 100644 index 7d10894..0000000 Binary files a/docmost/db/base/16384/16617 and /dev/null differ diff --git a/docmost/db/base/16384/16618 b/docmost/db/base/16384/16618 deleted file mode 100644 index ecf563b..0000000 Binary files a/docmost/db/base/16384/16618 and /dev/null differ diff --git a/docmost/db/base/16384/16640 b/docmost/db/base/16384/16640 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/16645 b/docmost/db/base/16384/16645 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/16646 b/docmost/db/base/16384/16646 deleted file mode 100644 index 664f654..0000000 Binary files a/docmost/db/base/16384/16646 and /dev/null differ diff --git a/docmost/db/base/16384/16647 b/docmost/db/base/16384/16647 deleted file mode 100644 index 69e4c98..0000000 Binary files a/docmost/db/base/16384/16647 and /dev/null differ diff --git a/docmost/db/base/16384/16669 b/docmost/db/base/16384/16669 deleted file mode 100644 index df3b71f..0000000 Binary files a/docmost/db/base/16384/16669 and /dev/null differ diff --git a/docmost/db/base/16384/16675 b/docmost/db/base/16384/16675 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/16676 b/docmost/db/base/16384/16676 deleted file mode 100644 index d889f1c..0000000 Binary files a/docmost/db/base/16384/16676 and /dev/null differ diff --git a/docmost/db/base/16384/16677 b/docmost/db/base/16384/16677 deleted file mode 100644 index 2b0a852..0000000 Binary files a/docmost/db/base/16384/16677 and /dev/null differ diff --git a/docmost/db/base/16384/16691 b/docmost/db/base/16384/16691 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/16696 b/docmost/db/base/16384/16696 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/16697 b/docmost/db/base/16384/16697 deleted file mode 100644 index d313641..0000000 Binary files a/docmost/db/base/16384/16697 and /dev/null differ diff --git a/docmost/db/base/16384/16698 b/docmost/db/base/16384/16698 deleted file mode 100644 index 95d87e7..0000000 Binary files a/docmost/db/base/16384/16698 and /dev/null differ diff --git a/docmost/db/base/16384/16710 b/docmost/db/base/16384/16710 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/16716 b/docmost/db/base/16384/16716 deleted file mode 100644 index 2b93c86..0000000 Binary files a/docmost/db/base/16384/16716 and /dev/null differ diff --git a/docmost/db/base/16384/16718 b/docmost/db/base/16384/16718 deleted file mode 100644 index b4743e6..0000000 Binary files a/docmost/db/base/16384/16718 and /dev/null differ diff --git a/docmost/db/base/16384/16735 b/docmost/db/base/16384/16735 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/16741 b/docmost/db/base/16384/16741 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/16742 b/docmost/db/base/16384/16742 deleted file mode 100644 index a71e5d0..0000000 Binary files a/docmost/db/base/16384/16742 and /dev/null differ diff --git a/docmost/db/base/16384/16743 b/docmost/db/base/16384/16743 deleted file mode 100644 index 975a317..0000000 Binary files a/docmost/db/base/16384/16743 and /dev/null differ diff --git a/docmost/db/base/16384/16750 b/docmost/db/base/16384/16750 deleted file mode 100644 index 4618226..0000000 Binary files a/docmost/db/base/16384/16750 and /dev/null differ diff --git a/docmost/db/base/16384/16752 b/docmost/db/base/16384/16752 deleted file mode 100644 index 61e6162..0000000 Binary files a/docmost/db/base/16384/16752 and /dev/null differ diff --git a/docmost/db/base/16384/16783 b/docmost/db/base/16384/16783 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/16789 b/docmost/db/base/16384/16789 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/16790 b/docmost/db/base/16384/16790 deleted file mode 100644 index 34942ee..0000000 Binary files a/docmost/db/base/16384/16790 and /dev/null differ diff --git a/docmost/db/base/16384/16791 b/docmost/db/base/16384/16791 deleted file mode 100644 index af9e022..0000000 Binary files a/docmost/db/base/16384/16791 and /dev/null differ diff --git a/docmost/db/base/16384/16793 b/docmost/db/base/16384/16793 deleted file mode 100644 index 09f04a4..0000000 Binary files a/docmost/db/base/16384/16793 and /dev/null differ diff --git a/docmost/db/base/16384/16812 b/docmost/db/base/16384/16812 deleted file mode 100644 index 9619891..0000000 Binary files a/docmost/db/base/16384/16812 and /dev/null differ diff --git a/docmost/db/base/16384/16820 b/docmost/db/base/16384/16820 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/16821 b/docmost/db/base/16384/16821 deleted file mode 100644 index 92d5606..0000000 Binary files a/docmost/db/base/16384/16821 and /dev/null differ diff --git a/docmost/db/base/16384/16822 b/docmost/db/base/16384/16822 deleted file mode 100644 index 1bf1a40..0000000 Binary files a/docmost/db/base/16384/16822 and /dev/null differ diff --git a/docmost/db/base/16384/16824 b/docmost/db/base/16384/16824 deleted file mode 100644 index aa05f8e..0000000 Binary files a/docmost/db/base/16384/16824 and /dev/null differ diff --git a/docmost/db/base/16384/16846 b/docmost/db/base/16384/16846 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/16852 b/docmost/db/base/16384/16852 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/16853 b/docmost/db/base/16384/16853 deleted file mode 100644 index 83d3aee..0000000 Binary files a/docmost/db/base/16384/16853 and /dev/null differ diff --git a/docmost/db/base/16384/16854 b/docmost/db/base/16384/16854 deleted file mode 100644 index f3171b6..0000000 Binary files a/docmost/db/base/16384/16854 and /dev/null differ diff --git a/docmost/db/base/16384/16871 b/docmost/db/base/16384/16871 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/16879 b/docmost/db/base/16384/16879 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/16880 b/docmost/db/base/16384/16880 deleted file mode 100644 index 13d6a4b..0000000 Binary files a/docmost/db/base/16384/16880 and /dev/null differ diff --git a/docmost/db/base/16384/16881 b/docmost/db/base/16384/16881 deleted file mode 100644 index 7e6e3f1..0000000 Binary files a/docmost/db/base/16384/16881 and /dev/null differ diff --git a/docmost/db/base/16384/16883 b/docmost/db/base/16384/16883 deleted file mode 100644 index 18ee8f6..0000000 Binary files a/docmost/db/base/16384/16883 and /dev/null differ diff --git a/docmost/db/base/16384/17002 b/docmost/db/base/16384/17002 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/17005 b/docmost/db/base/16384/17005 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/17006 b/docmost/db/base/16384/17006 deleted file mode 100644 index 23c99a9..0000000 Binary files a/docmost/db/base/16384/17006 and /dev/null differ diff --git a/docmost/db/base/16384/17007 b/docmost/db/base/16384/17007 deleted file mode 100644 index ac14e2c..0000000 Binary files a/docmost/db/base/16384/17007 and /dev/null differ diff --git a/docmost/db/base/16384/17013 b/docmost/db/base/16384/17013 deleted file mode 100644 index 5474101..0000000 Binary files a/docmost/db/base/16384/17013 and /dev/null differ diff --git a/docmost/db/base/16384/174 b/docmost/db/base/16384/174 deleted file mode 100644 index eed72d6..0000000 Binary files a/docmost/db/base/16384/174 and /dev/null differ diff --git a/docmost/db/base/16384/175 b/docmost/db/base/16384/175 deleted file mode 100644 index c27b095..0000000 Binary files a/docmost/db/base/16384/175 and /dev/null differ diff --git a/docmost/db/base/16384/2187 b/docmost/db/base/16384/2187 deleted file mode 100644 index 4c31c8a..0000000 Binary files a/docmost/db/base/16384/2187 and /dev/null differ diff --git a/docmost/db/base/16384/2224 b/docmost/db/base/16384/2224 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/2228 b/docmost/db/base/16384/2228 deleted file mode 100644 index 83935b5..0000000 Binary files a/docmost/db/base/16384/2228 and /dev/null differ diff --git a/docmost/db/base/16384/2328 b/docmost/db/base/16384/2328 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/2336 b/docmost/db/base/16384/2336 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/2337 b/docmost/db/base/16384/2337 deleted file mode 100644 index 4fb534a..0000000 Binary files a/docmost/db/base/16384/2337 and /dev/null differ diff --git a/docmost/db/base/16384/2579 b/docmost/db/base/16384/2579 deleted file mode 100644 index 7124f8b..0000000 Binary files a/docmost/db/base/16384/2579 and /dev/null differ diff --git a/docmost/db/base/16384/2600 b/docmost/db/base/16384/2600 deleted file mode 100644 index 74748c0..0000000 Binary files a/docmost/db/base/16384/2600 and /dev/null differ diff --git a/docmost/db/base/16384/2600_fsm b/docmost/db/base/16384/2600_fsm deleted file mode 100644 index 5ba3345..0000000 Binary files a/docmost/db/base/16384/2600_fsm and /dev/null differ diff --git a/docmost/db/base/16384/2600_vm b/docmost/db/base/16384/2600_vm deleted file mode 100644 index def98f2..0000000 Binary files a/docmost/db/base/16384/2600_vm and /dev/null differ diff --git a/docmost/db/base/16384/2601 b/docmost/db/base/16384/2601 deleted file mode 100644 index 1a6b876..0000000 Binary files a/docmost/db/base/16384/2601 and /dev/null differ diff --git a/docmost/db/base/16384/2601_fsm b/docmost/db/base/16384/2601_fsm deleted file mode 100644 index 5141b4a..0000000 Binary files a/docmost/db/base/16384/2601_fsm and /dev/null differ diff --git a/docmost/db/base/16384/2601_vm b/docmost/db/base/16384/2601_vm deleted file mode 100644 index 247bef5..0000000 Binary files a/docmost/db/base/16384/2601_vm and /dev/null differ diff --git a/docmost/db/base/16384/2602 b/docmost/db/base/16384/2602 deleted file mode 100644 index 9cd360d..0000000 Binary files a/docmost/db/base/16384/2602 and /dev/null differ diff --git a/docmost/db/base/16384/2602_fsm b/docmost/db/base/16384/2602_fsm deleted file mode 100644 index 6a3a1c8..0000000 Binary files a/docmost/db/base/16384/2602_fsm and /dev/null differ diff --git a/docmost/db/base/16384/2602_vm b/docmost/db/base/16384/2602_vm deleted file mode 100644 index d3dea14..0000000 Binary files a/docmost/db/base/16384/2602_vm and /dev/null differ diff --git a/docmost/db/base/16384/2603 b/docmost/db/base/16384/2603 deleted file mode 100644 index f961fb6..0000000 Binary files a/docmost/db/base/16384/2603 and /dev/null differ diff --git a/docmost/db/base/16384/2603_fsm b/docmost/db/base/16384/2603_fsm deleted file mode 100644 index 96da7a0..0000000 Binary files a/docmost/db/base/16384/2603_fsm and /dev/null differ diff --git a/docmost/db/base/16384/2603_vm b/docmost/db/base/16384/2603_vm deleted file mode 100644 index f46fe14..0000000 Binary files a/docmost/db/base/16384/2603_vm and /dev/null differ diff --git a/docmost/db/base/16384/2604 b/docmost/db/base/16384/2604 deleted file mode 100644 index ba991eb..0000000 Binary files a/docmost/db/base/16384/2604 and /dev/null differ diff --git a/docmost/db/base/16384/2604_fsm b/docmost/db/base/16384/2604_fsm deleted file mode 100644 index 0e3f55c..0000000 Binary files a/docmost/db/base/16384/2604_fsm and /dev/null differ diff --git a/docmost/db/base/16384/2605 b/docmost/db/base/16384/2605 deleted file mode 100644 index 8d457ea..0000000 Binary files a/docmost/db/base/16384/2605 and /dev/null differ diff --git a/docmost/db/base/16384/2605_fsm b/docmost/db/base/16384/2605_fsm deleted file mode 100644 index 7da98f5..0000000 Binary files a/docmost/db/base/16384/2605_fsm and /dev/null differ diff --git a/docmost/db/base/16384/2605_vm b/docmost/db/base/16384/2605_vm deleted file mode 100644 index 269bf28..0000000 Binary files a/docmost/db/base/16384/2605_vm and /dev/null differ diff --git a/docmost/db/base/16384/2606 b/docmost/db/base/16384/2606 deleted file mode 100644 index fe1be13..0000000 Binary files a/docmost/db/base/16384/2606 and /dev/null differ diff --git a/docmost/db/base/16384/2606_fsm b/docmost/db/base/16384/2606_fsm deleted file mode 100644 index e76f2a1..0000000 Binary files a/docmost/db/base/16384/2606_fsm and /dev/null differ diff --git a/docmost/db/base/16384/2606_vm b/docmost/db/base/16384/2606_vm deleted file mode 100644 index c7bc757..0000000 Binary files a/docmost/db/base/16384/2606_vm and /dev/null differ diff --git a/docmost/db/base/16384/2607 b/docmost/db/base/16384/2607 deleted file mode 100644 index a003d56..0000000 Binary files a/docmost/db/base/16384/2607 and /dev/null differ diff --git a/docmost/db/base/16384/2607_fsm b/docmost/db/base/16384/2607_fsm deleted file mode 100644 index d293575..0000000 Binary files a/docmost/db/base/16384/2607_fsm and /dev/null differ diff --git a/docmost/db/base/16384/2607_vm b/docmost/db/base/16384/2607_vm deleted file mode 100644 index 6c0222a..0000000 Binary files a/docmost/db/base/16384/2607_vm and /dev/null differ diff --git a/docmost/db/base/16384/2608 b/docmost/db/base/16384/2608 deleted file mode 100644 index 3fef913..0000000 Binary files a/docmost/db/base/16384/2608 and /dev/null differ diff --git a/docmost/db/base/16384/2608_fsm b/docmost/db/base/16384/2608_fsm deleted file mode 100644 index cfccdd1..0000000 Binary files a/docmost/db/base/16384/2608_fsm and /dev/null differ diff --git a/docmost/db/base/16384/2608_vm b/docmost/db/base/16384/2608_vm deleted file mode 100644 index 3bb9307..0000000 Binary files a/docmost/db/base/16384/2608_vm and /dev/null differ diff --git a/docmost/db/base/16384/2609 b/docmost/db/base/16384/2609 deleted file mode 100644 index 4032511..0000000 Binary files a/docmost/db/base/16384/2609 and /dev/null differ diff --git a/docmost/db/base/16384/2609_fsm b/docmost/db/base/16384/2609_fsm deleted file mode 100644 index 2cc7ec1..0000000 Binary files a/docmost/db/base/16384/2609_fsm and /dev/null differ diff --git a/docmost/db/base/16384/2609_vm b/docmost/db/base/16384/2609_vm deleted file mode 100644 index 8c7c3e7..0000000 Binary files a/docmost/db/base/16384/2609_vm and /dev/null differ diff --git a/docmost/db/base/16384/2610 b/docmost/db/base/16384/2610 deleted file mode 100644 index c6585e6..0000000 Binary files a/docmost/db/base/16384/2610 and /dev/null differ diff --git a/docmost/db/base/16384/2610_fsm b/docmost/db/base/16384/2610_fsm deleted file mode 100644 index 5a75929..0000000 Binary files a/docmost/db/base/16384/2610_fsm and /dev/null differ diff --git a/docmost/db/base/16384/2610_vm b/docmost/db/base/16384/2610_vm deleted file mode 100644 index e143b9a..0000000 Binary files a/docmost/db/base/16384/2610_vm and /dev/null differ diff --git a/docmost/db/base/16384/2611 b/docmost/db/base/16384/2611 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/2612 b/docmost/db/base/16384/2612 deleted file mode 100644 index 1dd8da5..0000000 Binary files a/docmost/db/base/16384/2612 and /dev/null differ diff --git a/docmost/db/base/16384/2612_fsm b/docmost/db/base/16384/2612_fsm deleted file mode 100644 index 3f7440d..0000000 Binary files a/docmost/db/base/16384/2612_fsm and /dev/null differ diff --git a/docmost/db/base/16384/2612_vm b/docmost/db/base/16384/2612_vm deleted file mode 100644 index 3f732c4..0000000 Binary files a/docmost/db/base/16384/2612_vm and /dev/null differ diff --git a/docmost/db/base/16384/2613 b/docmost/db/base/16384/2613 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/2615 b/docmost/db/base/16384/2615 deleted file mode 100644 index 4f0f31d..0000000 Binary files a/docmost/db/base/16384/2615 and /dev/null differ diff --git a/docmost/db/base/16384/2615_fsm b/docmost/db/base/16384/2615_fsm deleted file mode 100644 index 112d485..0000000 Binary files a/docmost/db/base/16384/2615_fsm and /dev/null differ diff --git a/docmost/db/base/16384/2615_vm b/docmost/db/base/16384/2615_vm deleted file mode 100644 index 59550ee..0000000 Binary files a/docmost/db/base/16384/2615_vm and /dev/null differ diff --git a/docmost/db/base/16384/2616 b/docmost/db/base/16384/2616 deleted file mode 100644 index d6e8bef..0000000 Binary files a/docmost/db/base/16384/2616 and /dev/null differ diff --git a/docmost/db/base/16384/2616_fsm b/docmost/db/base/16384/2616_fsm deleted file mode 100644 index 4965a87..0000000 Binary files a/docmost/db/base/16384/2616_fsm and /dev/null differ diff --git a/docmost/db/base/16384/2616_vm b/docmost/db/base/16384/2616_vm deleted file mode 100644 index efe8533..0000000 Binary files a/docmost/db/base/16384/2616_vm and /dev/null differ diff --git a/docmost/db/base/16384/2617 b/docmost/db/base/16384/2617 deleted file mode 100644 index d3cae21..0000000 Binary files a/docmost/db/base/16384/2617 and /dev/null differ diff --git a/docmost/db/base/16384/2617_fsm b/docmost/db/base/16384/2617_fsm deleted file mode 100644 index 8812a01..0000000 Binary files a/docmost/db/base/16384/2617_fsm and /dev/null differ diff --git a/docmost/db/base/16384/2617_vm b/docmost/db/base/16384/2617_vm deleted file mode 100644 index 6fa27b2..0000000 Binary files a/docmost/db/base/16384/2617_vm and /dev/null differ diff --git a/docmost/db/base/16384/2618 b/docmost/db/base/16384/2618 deleted file mode 100644 index 661c8e0..0000000 Binary files a/docmost/db/base/16384/2618 and /dev/null differ diff --git a/docmost/db/base/16384/2618_fsm b/docmost/db/base/16384/2618_fsm deleted file mode 100644 index a3292ff..0000000 Binary files a/docmost/db/base/16384/2618_fsm and /dev/null differ diff --git a/docmost/db/base/16384/2618_vm b/docmost/db/base/16384/2618_vm deleted file mode 100644 index f342f71..0000000 Binary files a/docmost/db/base/16384/2618_vm and /dev/null differ diff --git a/docmost/db/base/16384/2619 b/docmost/db/base/16384/2619 deleted file mode 100644 index 8de38c8..0000000 Binary files a/docmost/db/base/16384/2619 and /dev/null differ diff --git a/docmost/db/base/16384/2619_fsm b/docmost/db/base/16384/2619_fsm deleted file mode 100644 index 7d1d3d1..0000000 Binary files a/docmost/db/base/16384/2619_fsm and /dev/null differ diff --git a/docmost/db/base/16384/2619_vm b/docmost/db/base/16384/2619_vm deleted file mode 100644 index 809871a..0000000 Binary files a/docmost/db/base/16384/2619_vm and /dev/null differ diff --git a/docmost/db/base/16384/2620 b/docmost/db/base/16384/2620 deleted file mode 100644 index 3aa638f..0000000 Binary files a/docmost/db/base/16384/2620 and /dev/null differ diff --git a/docmost/db/base/16384/2620_fsm b/docmost/db/base/16384/2620_fsm deleted file mode 100644 index 315ed91..0000000 Binary files a/docmost/db/base/16384/2620_fsm and /dev/null differ diff --git a/docmost/db/base/16384/2650 b/docmost/db/base/16384/2650 deleted file mode 100644 index a6eec99..0000000 Binary files a/docmost/db/base/16384/2650 and /dev/null differ diff --git a/docmost/db/base/16384/2651 b/docmost/db/base/16384/2651 deleted file mode 100644 index f9bbe0b..0000000 Binary files a/docmost/db/base/16384/2651 and /dev/null differ diff --git a/docmost/db/base/16384/2652 b/docmost/db/base/16384/2652 deleted file mode 100644 index 93cec33..0000000 Binary files a/docmost/db/base/16384/2652 and /dev/null differ diff --git a/docmost/db/base/16384/2653 b/docmost/db/base/16384/2653 deleted file mode 100644 index 23830ad..0000000 Binary files a/docmost/db/base/16384/2653 and /dev/null differ diff --git a/docmost/db/base/16384/2654 b/docmost/db/base/16384/2654 deleted file mode 100644 index 458f0b8..0000000 Binary files a/docmost/db/base/16384/2654 and /dev/null differ diff --git a/docmost/db/base/16384/2655 b/docmost/db/base/16384/2655 deleted file mode 100644 index 4682258..0000000 Binary files a/docmost/db/base/16384/2655 and /dev/null differ diff --git a/docmost/db/base/16384/2656 b/docmost/db/base/16384/2656 deleted file mode 100644 index 7bbcd9c..0000000 Binary files a/docmost/db/base/16384/2656 and /dev/null differ diff --git a/docmost/db/base/16384/2657 b/docmost/db/base/16384/2657 deleted file mode 100644 index 75f395b..0000000 Binary files a/docmost/db/base/16384/2657 and /dev/null differ diff --git a/docmost/db/base/16384/2658 b/docmost/db/base/16384/2658 deleted file mode 100644 index 5c92905..0000000 Binary files a/docmost/db/base/16384/2658 and /dev/null differ diff --git a/docmost/db/base/16384/2659 b/docmost/db/base/16384/2659 deleted file mode 100644 index cd6e72e..0000000 Binary files a/docmost/db/base/16384/2659 and /dev/null differ diff --git a/docmost/db/base/16384/2660 b/docmost/db/base/16384/2660 deleted file mode 100644 index 503d8d9..0000000 Binary files a/docmost/db/base/16384/2660 and /dev/null differ diff --git a/docmost/db/base/16384/2661 b/docmost/db/base/16384/2661 deleted file mode 100644 index f5a85fd..0000000 Binary files a/docmost/db/base/16384/2661 and /dev/null differ diff --git a/docmost/db/base/16384/2662 b/docmost/db/base/16384/2662 deleted file mode 100644 index 6331e3e..0000000 Binary files a/docmost/db/base/16384/2662 and /dev/null differ diff --git a/docmost/db/base/16384/2663 b/docmost/db/base/16384/2663 deleted file mode 100644 index d6fb44e..0000000 Binary files a/docmost/db/base/16384/2663 and /dev/null differ diff --git a/docmost/db/base/16384/2664 b/docmost/db/base/16384/2664 deleted file mode 100644 index d108c00..0000000 Binary files a/docmost/db/base/16384/2664 and /dev/null differ diff --git a/docmost/db/base/16384/2665 b/docmost/db/base/16384/2665 deleted file mode 100644 index a4715f8..0000000 Binary files a/docmost/db/base/16384/2665 and /dev/null differ diff --git a/docmost/db/base/16384/2666 b/docmost/db/base/16384/2666 deleted file mode 100644 index 2abc9d5..0000000 Binary files a/docmost/db/base/16384/2666 and /dev/null differ diff --git a/docmost/db/base/16384/2667 b/docmost/db/base/16384/2667 deleted file mode 100644 index 970895b..0000000 Binary files a/docmost/db/base/16384/2667 and /dev/null differ diff --git a/docmost/db/base/16384/2668 b/docmost/db/base/16384/2668 deleted file mode 100644 index 14e26aa..0000000 Binary files a/docmost/db/base/16384/2668 and /dev/null differ diff --git a/docmost/db/base/16384/2669 b/docmost/db/base/16384/2669 deleted file mode 100644 index c4b7129..0000000 Binary files a/docmost/db/base/16384/2669 and /dev/null differ diff --git a/docmost/db/base/16384/2670 b/docmost/db/base/16384/2670 deleted file mode 100644 index 9275195..0000000 Binary files a/docmost/db/base/16384/2670 and /dev/null differ diff --git a/docmost/db/base/16384/2673 b/docmost/db/base/16384/2673 deleted file mode 100644 index 586ad60..0000000 Binary files a/docmost/db/base/16384/2673 and /dev/null differ diff --git a/docmost/db/base/16384/2674 b/docmost/db/base/16384/2674 deleted file mode 100644 index ad584b5..0000000 Binary files a/docmost/db/base/16384/2674 and /dev/null differ diff --git a/docmost/db/base/16384/2675 b/docmost/db/base/16384/2675 deleted file mode 100644 index 0238096..0000000 Binary files a/docmost/db/base/16384/2675 and /dev/null differ diff --git a/docmost/db/base/16384/2678 b/docmost/db/base/16384/2678 deleted file mode 100644 index bce8531..0000000 Binary files a/docmost/db/base/16384/2678 and /dev/null differ diff --git a/docmost/db/base/16384/2679 b/docmost/db/base/16384/2679 deleted file mode 100644 index 7ddb51a..0000000 Binary files a/docmost/db/base/16384/2679 and /dev/null differ diff --git a/docmost/db/base/16384/2680 b/docmost/db/base/16384/2680 deleted file mode 100644 index aa9e7fd..0000000 Binary files a/docmost/db/base/16384/2680 and /dev/null differ diff --git a/docmost/db/base/16384/2681 b/docmost/db/base/16384/2681 deleted file mode 100644 index 8660aba..0000000 Binary files a/docmost/db/base/16384/2681 and /dev/null differ diff --git a/docmost/db/base/16384/2682 b/docmost/db/base/16384/2682 deleted file mode 100644 index c3f8fa4..0000000 Binary files a/docmost/db/base/16384/2682 and /dev/null differ diff --git a/docmost/db/base/16384/2683 b/docmost/db/base/16384/2683 deleted file mode 100644 index f4cee9e..0000000 Binary files a/docmost/db/base/16384/2683 and /dev/null differ diff --git a/docmost/db/base/16384/2684 b/docmost/db/base/16384/2684 deleted file mode 100644 index a27cc3a..0000000 Binary files a/docmost/db/base/16384/2684 and /dev/null differ diff --git a/docmost/db/base/16384/2685 b/docmost/db/base/16384/2685 deleted file mode 100644 index 0d4c4a4..0000000 Binary files a/docmost/db/base/16384/2685 and /dev/null differ diff --git a/docmost/db/base/16384/2686 b/docmost/db/base/16384/2686 deleted file mode 100644 index 2c9c1b5..0000000 Binary files a/docmost/db/base/16384/2686 and /dev/null differ diff --git a/docmost/db/base/16384/2687 b/docmost/db/base/16384/2687 deleted file mode 100644 index 2a69b9e..0000000 Binary files a/docmost/db/base/16384/2687 and /dev/null differ diff --git a/docmost/db/base/16384/2688 b/docmost/db/base/16384/2688 deleted file mode 100644 index b663d59..0000000 Binary files a/docmost/db/base/16384/2688 and /dev/null differ diff --git a/docmost/db/base/16384/2689 b/docmost/db/base/16384/2689 deleted file mode 100644 index 8b4552a..0000000 Binary files a/docmost/db/base/16384/2689 and /dev/null differ diff --git a/docmost/db/base/16384/2690 b/docmost/db/base/16384/2690 deleted file mode 100644 index 2906dfc..0000000 Binary files a/docmost/db/base/16384/2690 and /dev/null differ diff --git a/docmost/db/base/16384/2691 b/docmost/db/base/16384/2691 deleted file mode 100644 index a3efa1a..0000000 Binary files a/docmost/db/base/16384/2691 and /dev/null differ diff --git a/docmost/db/base/16384/2692 b/docmost/db/base/16384/2692 deleted file mode 100644 index d32f375..0000000 Binary files a/docmost/db/base/16384/2692 and /dev/null differ diff --git a/docmost/db/base/16384/2693 b/docmost/db/base/16384/2693 deleted file mode 100644 index 6b32003..0000000 Binary files a/docmost/db/base/16384/2693 and /dev/null differ diff --git a/docmost/db/base/16384/2696 b/docmost/db/base/16384/2696 deleted file mode 100644 index 8f7e417..0000000 Binary files a/docmost/db/base/16384/2696 and /dev/null differ diff --git a/docmost/db/base/16384/2699 b/docmost/db/base/16384/2699 deleted file mode 100644 index 91d05a5..0000000 Binary files a/docmost/db/base/16384/2699 and /dev/null differ diff --git a/docmost/db/base/16384/2701 b/docmost/db/base/16384/2701 deleted file mode 100644 index 00f1e23..0000000 Binary files a/docmost/db/base/16384/2701 and /dev/null differ diff --git a/docmost/db/base/16384/2702 b/docmost/db/base/16384/2702 deleted file mode 100644 index afa677b..0000000 Binary files a/docmost/db/base/16384/2702 and /dev/null differ diff --git a/docmost/db/base/16384/2703 b/docmost/db/base/16384/2703 deleted file mode 100644 index d694d9a..0000000 Binary files a/docmost/db/base/16384/2703 and /dev/null differ diff --git a/docmost/db/base/16384/2704 b/docmost/db/base/16384/2704 deleted file mode 100644 index 9c5f2d8..0000000 Binary files a/docmost/db/base/16384/2704 and /dev/null differ diff --git a/docmost/db/base/16384/2753 b/docmost/db/base/16384/2753 deleted file mode 100644 index 5bcbbb5..0000000 Binary files a/docmost/db/base/16384/2753 and /dev/null differ diff --git a/docmost/db/base/16384/2753_fsm b/docmost/db/base/16384/2753_fsm deleted file mode 100644 index 7bab5c7..0000000 Binary files a/docmost/db/base/16384/2753_fsm and /dev/null differ diff --git a/docmost/db/base/16384/2753_vm b/docmost/db/base/16384/2753_vm deleted file mode 100644 index 5eaf123..0000000 Binary files a/docmost/db/base/16384/2753_vm and /dev/null differ diff --git a/docmost/db/base/16384/2754 b/docmost/db/base/16384/2754 deleted file mode 100644 index bc962b6..0000000 Binary files a/docmost/db/base/16384/2754 and /dev/null differ diff --git a/docmost/db/base/16384/2755 b/docmost/db/base/16384/2755 deleted file mode 100644 index 7fe5e70..0000000 Binary files a/docmost/db/base/16384/2755 and /dev/null differ diff --git a/docmost/db/base/16384/2756 b/docmost/db/base/16384/2756 deleted file mode 100644 index d99ab71..0000000 Binary files a/docmost/db/base/16384/2756 and /dev/null differ diff --git a/docmost/db/base/16384/2757 b/docmost/db/base/16384/2757 deleted file mode 100644 index fd77659..0000000 Binary files a/docmost/db/base/16384/2757 and /dev/null differ diff --git a/docmost/db/base/16384/2830 b/docmost/db/base/16384/2830 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/2831 b/docmost/db/base/16384/2831 deleted file mode 100644 index d005819..0000000 Binary files a/docmost/db/base/16384/2831 and /dev/null differ diff --git a/docmost/db/base/16384/2832 b/docmost/db/base/16384/2832 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/2833 b/docmost/db/base/16384/2833 deleted file mode 100644 index 18a39ce..0000000 Binary files a/docmost/db/base/16384/2833 and /dev/null differ diff --git a/docmost/db/base/16384/2834 b/docmost/db/base/16384/2834 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/2835 b/docmost/db/base/16384/2835 deleted file mode 100644 index df8a88c..0000000 Binary files a/docmost/db/base/16384/2835 and /dev/null differ diff --git a/docmost/db/base/16384/2836 b/docmost/db/base/16384/2836 deleted file mode 100644 index 9b76e01..0000000 Binary files a/docmost/db/base/16384/2836 and /dev/null differ diff --git a/docmost/db/base/16384/2836_fsm b/docmost/db/base/16384/2836_fsm deleted file mode 100644 index 8021ef9..0000000 Binary files a/docmost/db/base/16384/2836_fsm and /dev/null differ diff --git a/docmost/db/base/16384/2836_vm b/docmost/db/base/16384/2836_vm deleted file mode 100644 index 15ad688..0000000 Binary files a/docmost/db/base/16384/2836_vm and /dev/null differ diff --git a/docmost/db/base/16384/2837 b/docmost/db/base/16384/2837 deleted file mode 100644 index 5f1c5a4..0000000 Binary files a/docmost/db/base/16384/2837 and /dev/null differ diff --git a/docmost/db/base/16384/2838 b/docmost/db/base/16384/2838 deleted file mode 100644 index 9ea5d51..0000000 Binary files a/docmost/db/base/16384/2838 and /dev/null differ diff --git a/docmost/db/base/16384/2838_fsm b/docmost/db/base/16384/2838_fsm deleted file mode 100644 index 9c0a13a..0000000 Binary files a/docmost/db/base/16384/2838_fsm and /dev/null differ diff --git a/docmost/db/base/16384/2838_vm b/docmost/db/base/16384/2838_vm deleted file mode 100644 index 44c0b18..0000000 Binary files a/docmost/db/base/16384/2838_vm and /dev/null differ diff --git a/docmost/db/base/16384/2839 b/docmost/db/base/16384/2839 deleted file mode 100644 index 72ad913..0000000 Binary files a/docmost/db/base/16384/2839 and /dev/null differ diff --git a/docmost/db/base/16384/2840 b/docmost/db/base/16384/2840 deleted file mode 100644 index 06bc39e..0000000 Binary files a/docmost/db/base/16384/2840 and /dev/null differ diff --git a/docmost/db/base/16384/2840_fsm b/docmost/db/base/16384/2840_fsm deleted file mode 100644 index 45d53f7..0000000 Binary files a/docmost/db/base/16384/2840_fsm and /dev/null differ diff --git a/docmost/db/base/16384/2840_vm b/docmost/db/base/16384/2840_vm deleted file mode 100644 index 06168d9..0000000 Binary files a/docmost/db/base/16384/2840_vm and /dev/null differ diff --git a/docmost/db/base/16384/2841 b/docmost/db/base/16384/2841 deleted file mode 100644 index 954936e..0000000 Binary files a/docmost/db/base/16384/2841 and /dev/null differ diff --git a/docmost/db/base/16384/2995 b/docmost/db/base/16384/2995 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/2996 b/docmost/db/base/16384/2996 deleted file mode 100644 index 14f8fde..0000000 Binary files a/docmost/db/base/16384/2996 and /dev/null differ diff --git a/docmost/db/base/16384/3079 b/docmost/db/base/16384/3079 deleted file mode 100644 index feedd12..0000000 Binary files a/docmost/db/base/16384/3079 and /dev/null differ diff --git a/docmost/db/base/16384/3079_fsm b/docmost/db/base/16384/3079_fsm deleted file mode 100644 index 539351d..0000000 Binary files a/docmost/db/base/16384/3079_fsm and /dev/null differ diff --git a/docmost/db/base/16384/3079_vm b/docmost/db/base/16384/3079_vm deleted file mode 100644 index 20211b6..0000000 Binary files a/docmost/db/base/16384/3079_vm and /dev/null differ diff --git a/docmost/db/base/16384/3080 b/docmost/db/base/16384/3080 deleted file mode 100644 index b87daa1..0000000 Binary files a/docmost/db/base/16384/3080 and /dev/null differ diff --git a/docmost/db/base/16384/3081 b/docmost/db/base/16384/3081 deleted file mode 100644 index 68fbfdd..0000000 Binary files a/docmost/db/base/16384/3081 and /dev/null differ diff --git a/docmost/db/base/16384/3085 b/docmost/db/base/16384/3085 deleted file mode 100644 index 1062750..0000000 Binary files a/docmost/db/base/16384/3085 and /dev/null differ diff --git a/docmost/db/base/16384/3118 b/docmost/db/base/16384/3118 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/3119 b/docmost/db/base/16384/3119 deleted file mode 100644 index 0f7f2f9..0000000 Binary files a/docmost/db/base/16384/3119 and /dev/null differ diff --git a/docmost/db/base/16384/3164 b/docmost/db/base/16384/3164 deleted file mode 100644 index 4378942..0000000 Binary files a/docmost/db/base/16384/3164 and /dev/null differ diff --git a/docmost/db/base/16384/3256 b/docmost/db/base/16384/3256 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/3257 b/docmost/db/base/16384/3257 deleted file mode 100644 index ea3db44..0000000 Binary files a/docmost/db/base/16384/3257 and /dev/null differ diff --git a/docmost/db/base/16384/3258 b/docmost/db/base/16384/3258 deleted file mode 100644 index c63fe21..0000000 Binary files a/docmost/db/base/16384/3258 and /dev/null differ diff --git a/docmost/db/base/16384/3350 b/docmost/db/base/16384/3350 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/3351 b/docmost/db/base/16384/3351 deleted file mode 100644 index 7d67ad1..0000000 Binary files a/docmost/db/base/16384/3351 and /dev/null differ diff --git a/docmost/db/base/16384/3379 b/docmost/db/base/16384/3379 deleted file mode 100644 index b92cf93..0000000 Binary files a/docmost/db/base/16384/3379 and /dev/null differ diff --git a/docmost/db/base/16384/3380 b/docmost/db/base/16384/3380 deleted file mode 100644 index 053f61e..0000000 Binary files a/docmost/db/base/16384/3380 and /dev/null differ diff --git a/docmost/db/base/16384/3381 b/docmost/db/base/16384/3381 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/3394 b/docmost/db/base/16384/3394 deleted file mode 100644 index 77590fd..0000000 Binary files a/docmost/db/base/16384/3394 and /dev/null differ diff --git a/docmost/db/base/16384/3394_fsm b/docmost/db/base/16384/3394_fsm deleted file mode 100644 index 6c129d6..0000000 Binary files a/docmost/db/base/16384/3394_fsm and /dev/null differ diff --git a/docmost/db/base/16384/3394_vm b/docmost/db/base/16384/3394_vm deleted file mode 100644 index f206c02..0000000 Binary files a/docmost/db/base/16384/3394_vm and /dev/null differ diff --git a/docmost/db/base/16384/3395 b/docmost/db/base/16384/3395 deleted file mode 100644 index 90242c5..0000000 Binary files a/docmost/db/base/16384/3395 and /dev/null differ diff --git a/docmost/db/base/16384/3429 b/docmost/db/base/16384/3429 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/3430 b/docmost/db/base/16384/3430 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/3431 b/docmost/db/base/16384/3431 deleted file mode 100644 index 9edb015..0000000 Binary files a/docmost/db/base/16384/3431 and /dev/null differ diff --git a/docmost/db/base/16384/3433 b/docmost/db/base/16384/3433 deleted file mode 100644 index ca2ba4e..0000000 Binary files a/docmost/db/base/16384/3433 and /dev/null differ diff --git a/docmost/db/base/16384/3439 b/docmost/db/base/16384/3439 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/3440 b/docmost/db/base/16384/3440 deleted file mode 100644 index bb3c4df..0000000 Binary files a/docmost/db/base/16384/3440 and /dev/null differ diff --git a/docmost/db/base/16384/3455 b/docmost/db/base/16384/3455 deleted file mode 100644 index 27b356f..0000000 Binary files a/docmost/db/base/16384/3455 and /dev/null differ diff --git a/docmost/db/base/16384/3456 b/docmost/db/base/16384/3456 deleted file mode 100644 index 38e71b1..0000000 Binary files a/docmost/db/base/16384/3456 and /dev/null differ diff --git a/docmost/db/base/16384/3456_fsm b/docmost/db/base/16384/3456_fsm deleted file mode 100644 index 2b5fc5e..0000000 Binary files a/docmost/db/base/16384/3456_fsm and /dev/null differ diff --git a/docmost/db/base/16384/3456_vm b/docmost/db/base/16384/3456_vm deleted file mode 100644 index ccf5cc7..0000000 Binary files a/docmost/db/base/16384/3456_vm and /dev/null differ diff --git a/docmost/db/base/16384/3466 b/docmost/db/base/16384/3466 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/3467 b/docmost/db/base/16384/3467 deleted file mode 100644 index 3c024a6..0000000 Binary files a/docmost/db/base/16384/3467 and /dev/null differ diff --git a/docmost/db/base/16384/3468 b/docmost/db/base/16384/3468 deleted file mode 100644 index 5ca9ce3..0000000 Binary files a/docmost/db/base/16384/3468 and /dev/null differ diff --git a/docmost/db/base/16384/3501 b/docmost/db/base/16384/3501 deleted file mode 100644 index 77768d5..0000000 Binary files a/docmost/db/base/16384/3501 and /dev/null differ diff --git a/docmost/db/base/16384/3502 b/docmost/db/base/16384/3502 deleted file mode 100644 index fd85558..0000000 Binary files a/docmost/db/base/16384/3502 and /dev/null differ diff --git a/docmost/db/base/16384/3503 b/docmost/db/base/16384/3503 deleted file mode 100644 index 638d4fb..0000000 Binary files a/docmost/db/base/16384/3503 and /dev/null differ diff --git a/docmost/db/base/16384/3534 b/docmost/db/base/16384/3534 deleted file mode 100644 index f3b3513..0000000 Binary files a/docmost/db/base/16384/3534 and /dev/null differ diff --git a/docmost/db/base/16384/3541 b/docmost/db/base/16384/3541 deleted file mode 100644 index d338bed..0000000 Binary files a/docmost/db/base/16384/3541 and /dev/null differ diff --git a/docmost/db/base/16384/3541_fsm b/docmost/db/base/16384/3541_fsm deleted file mode 100644 index c29b19a..0000000 Binary files a/docmost/db/base/16384/3541_fsm and /dev/null differ diff --git a/docmost/db/base/16384/3541_vm b/docmost/db/base/16384/3541_vm deleted file mode 100644 index f1ff506..0000000 Binary files a/docmost/db/base/16384/3541_vm and /dev/null differ diff --git a/docmost/db/base/16384/3542 b/docmost/db/base/16384/3542 deleted file mode 100644 index 98046df..0000000 Binary files a/docmost/db/base/16384/3542 and /dev/null differ diff --git a/docmost/db/base/16384/3574 b/docmost/db/base/16384/3574 deleted file mode 100644 index 1c2be83..0000000 Binary files a/docmost/db/base/16384/3574 and /dev/null differ diff --git a/docmost/db/base/16384/3575 b/docmost/db/base/16384/3575 deleted file mode 100644 index 043fa24..0000000 Binary files a/docmost/db/base/16384/3575 and /dev/null differ diff --git a/docmost/db/base/16384/3576 b/docmost/db/base/16384/3576 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/3596 b/docmost/db/base/16384/3596 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/3597 b/docmost/db/base/16384/3597 deleted file mode 100644 index 7ee84de..0000000 Binary files a/docmost/db/base/16384/3597 and /dev/null differ diff --git a/docmost/db/base/16384/3598 b/docmost/db/base/16384/3598 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/3599 b/docmost/db/base/16384/3599 deleted file mode 100644 index f41cad9..0000000 Binary files a/docmost/db/base/16384/3599 and /dev/null differ diff --git a/docmost/db/base/16384/3600 b/docmost/db/base/16384/3600 deleted file mode 100644 index 7f13901..0000000 Binary files a/docmost/db/base/16384/3600 and /dev/null differ diff --git a/docmost/db/base/16384/3600_fsm b/docmost/db/base/16384/3600_fsm deleted file mode 100644 index f734b09..0000000 Binary files a/docmost/db/base/16384/3600_fsm and /dev/null differ diff --git a/docmost/db/base/16384/3600_vm b/docmost/db/base/16384/3600_vm deleted file mode 100644 index a031b21..0000000 Binary files a/docmost/db/base/16384/3600_vm and /dev/null differ diff --git a/docmost/db/base/16384/3601 b/docmost/db/base/16384/3601 deleted file mode 100644 index 3f8d2f5..0000000 Binary files a/docmost/db/base/16384/3601 and /dev/null differ diff --git a/docmost/db/base/16384/3601_fsm b/docmost/db/base/16384/3601_fsm deleted file mode 100644 index aecaa1a..0000000 Binary files a/docmost/db/base/16384/3601_fsm and /dev/null differ diff --git a/docmost/db/base/16384/3601_vm b/docmost/db/base/16384/3601_vm deleted file mode 100644 index d211863..0000000 Binary files a/docmost/db/base/16384/3601_vm and /dev/null differ diff --git a/docmost/db/base/16384/3602 b/docmost/db/base/16384/3602 deleted file mode 100644 index d7f32ab..0000000 Binary files a/docmost/db/base/16384/3602 and /dev/null differ diff --git a/docmost/db/base/16384/3602_fsm b/docmost/db/base/16384/3602_fsm deleted file mode 100644 index ddcfb26..0000000 Binary files a/docmost/db/base/16384/3602_fsm and /dev/null differ diff --git a/docmost/db/base/16384/3602_vm b/docmost/db/base/16384/3602_vm deleted file mode 100644 index 2abaa0a..0000000 Binary files a/docmost/db/base/16384/3602_vm and /dev/null differ diff --git a/docmost/db/base/16384/3603 b/docmost/db/base/16384/3603 deleted file mode 100644 index fdd2a49..0000000 Binary files a/docmost/db/base/16384/3603 and /dev/null differ diff --git a/docmost/db/base/16384/3603_fsm b/docmost/db/base/16384/3603_fsm deleted file mode 100644 index 5ba91d9..0000000 Binary files a/docmost/db/base/16384/3603_fsm and /dev/null differ diff --git a/docmost/db/base/16384/3603_vm b/docmost/db/base/16384/3603_vm deleted file mode 100644 index bf2b8ec..0000000 Binary files a/docmost/db/base/16384/3603_vm and /dev/null differ diff --git a/docmost/db/base/16384/3604 b/docmost/db/base/16384/3604 deleted file mode 100644 index 8bf8091..0000000 Binary files a/docmost/db/base/16384/3604 and /dev/null differ diff --git a/docmost/db/base/16384/3605 b/docmost/db/base/16384/3605 deleted file mode 100644 index 56856dc..0000000 Binary files a/docmost/db/base/16384/3605 and /dev/null differ diff --git a/docmost/db/base/16384/3606 b/docmost/db/base/16384/3606 deleted file mode 100644 index 72188a3..0000000 Binary files a/docmost/db/base/16384/3606 and /dev/null differ diff --git a/docmost/db/base/16384/3607 b/docmost/db/base/16384/3607 deleted file mode 100644 index 7b90db7..0000000 Binary files a/docmost/db/base/16384/3607 and /dev/null differ diff --git a/docmost/db/base/16384/3608 b/docmost/db/base/16384/3608 deleted file mode 100644 index a51f735..0000000 Binary files a/docmost/db/base/16384/3608 and /dev/null differ diff --git a/docmost/db/base/16384/3609 b/docmost/db/base/16384/3609 deleted file mode 100644 index 2772f21..0000000 Binary files a/docmost/db/base/16384/3609 and /dev/null differ diff --git a/docmost/db/base/16384/3712 b/docmost/db/base/16384/3712 deleted file mode 100644 index e1d92ef..0000000 Binary files a/docmost/db/base/16384/3712 and /dev/null differ diff --git a/docmost/db/base/16384/3764 b/docmost/db/base/16384/3764 deleted file mode 100644 index 195d881..0000000 Binary files a/docmost/db/base/16384/3764 and /dev/null differ diff --git a/docmost/db/base/16384/3764_fsm b/docmost/db/base/16384/3764_fsm deleted file mode 100644 index 25c0dbb..0000000 Binary files a/docmost/db/base/16384/3764_fsm and /dev/null differ diff --git a/docmost/db/base/16384/3764_vm b/docmost/db/base/16384/3764_vm deleted file mode 100644 index 2d15bec..0000000 Binary files a/docmost/db/base/16384/3764_vm and /dev/null differ diff --git a/docmost/db/base/16384/3766 b/docmost/db/base/16384/3766 deleted file mode 100644 index 12c53dd..0000000 Binary files a/docmost/db/base/16384/3766 and /dev/null differ diff --git a/docmost/db/base/16384/3767 b/docmost/db/base/16384/3767 deleted file mode 100644 index 4b7fe37..0000000 Binary files a/docmost/db/base/16384/3767 and /dev/null differ diff --git a/docmost/db/base/16384/3997 b/docmost/db/base/16384/3997 deleted file mode 100644 index 6a8cf62..0000000 Binary files a/docmost/db/base/16384/3997 and /dev/null differ diff --git a/docmost/db/base/16384/4143 b/docmost/db/base/16384/4143 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/4144 b/docmost/db/base/16384/4144 deleted file mode 100644 index d8d2d4c..0000000 Binary files a/docmost/db/base/16384/4144 and /dev/null differ diff --git a/docmost/db/base/16384/4145 b/docmost/db/base/16384/4145 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/4146 b/docmost/db/base/16384/4146 deleted file mode 100644 index 829e2b8..0000000 Binary files a/docmost/db/base/16384/4146 and /dev/null differ diff --git a/docmost/db/base/16384/4147 b/docmost/db/base/16384/4147 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/4148 b/docmost/db/base/16384/4148 deleted file mode 100644 index cccd338..0000000 Binary files a/docmost/db/base/16384/4148 and /dev/null differ diff --git a/docmost/db/base/16384/4149 b/docmost/db/base/16384/4149 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/4150 b/docmost/db/base/16384/4150 deleted file mode 100644 index be1e273..0000000 Binary files a/docmost/db/base/16384/4150 and /dev/null differ diff --git a/docmost/db/base/16384/4151 b/docmost/db/base/16384/4151 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/4152 b/docmost/db/base/16384/4152 deleted file mode 100644 index 7ad75f8..0000000 Binary files a/docmost/db/base/16384/4152 and /dev/null differ diff --git a/docmost/db/base/16384/4153 b/docmost/db/base/16384/4153 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/4154 b/docmost/db/base/16384/4154 deleted file mode 100644 index 81e8ffd..0000000 Binary files a/docmost/db/base/16384/4154 and /dev/null differ diff --git a/docmost/db/base/16384/4155 b/docmost/db/base/16384/4155 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/4156 b/docmost/db/base/16384/4156 deleted file mode 100644 index 945e78f..0000000 Binary files a/docmost/db/base/16384/4156 and /dev/null differ diff --git a/docmost/db/base/16384/4157 b/docmost/db/base/16384/4157 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/4158 b/docmost/db/base/16384/4158 deleted file mode 100644 index b93d5b4..0000000 Binary files a/docmost/db/base/16384/4158 and /dev/null differ diff --git a/docmost/db/base/16384/4159 b/docmost/db/base/16384/4159 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/4160 b/docmost/db/base/16384/4160 deleted file mode 100644 index 909e36b..0000000 Binary files a/docmost/db/base/16384/4160 and /dev/null differ diff --git a/docmost/db/base/16384/4163 b/docmost/db/base/16384/4163 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/4164 b/docmost/db/base/16384/4164 deleted file mode 100644 index 1c1db99..0000000 Binary files a/docmost/db/base/16384/4164 and /dev/null differ diff --git a/docmost/db/base/16384/4165 b/docmost/db/base/16384/4165 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/4166 b/docmost/db/base/16384/4166 deleted file mode 100644 index 7761973..0000000 Binary files a/docmost/db/base/16384/4166 and /dev/null differ diff --git a/docmost/db/base/16384/4167 b/docmost/db/base/16384/4167 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/4168 b/docmost/db/base/16384/4168 deleted file mode 100644 index 8ff9bc8..0000000 Binary files a/docmost/db/base/16384/4168 and /dev/null differ diff --git a/docmost/db/base/16384/4169 b/docmost/db/base/16384/4169 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/4170 b/docmost/db/base/16384/4170 deleted file mode 100644 index 94283a5..0000000 Binary files a/docmost/db/base/16384/4170 and /dev/null differ diff --git a/docmost/db/base/16384/4171 b/docmost/db/base/16384/4171 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/4172 b/docmost/db/base/16384/4172 deleted file mode 100644 index accd232..0000000 Binary files a/docmost/db/base/16384/4172 and /dev/null differ diff --git a/docmost/db/base/16384/4173 b/docmost/db/base/16384/4173 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/4174 b/docmost/db/base/16384/4174 deleted file mode 100644 index 2b7f8b8..0000000 Binary files a/docmost/db/base/16384/4174 and /dev/null differ diff --git a/docmost/db/base/16384/5002 b/docmost/db/base/16384/5002 deleted file mode 100644 index d273d99..0000000 Binary files a/docmost/db/base/16384/5002 and /dev/null differ diff --git a/docmost/db/base/16384/548 b/docmost/db/base/16384/548 deleted file mode 100644 index 6c6d7cb..0000000 Binary files a/docmost/db/base/16384/548 and /dev/null differ diff --git a/docmost/db/base/16384/549 b/docmost/db/base/16384/549 deleted file mode 100644 index 3c58bf2..0000000 Binary files a/docmost/db/base/16384/549 and /dev/null differ diff --git a/docmost/db/base/16384/6102 b/docmost/db/base/16384/6102 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/6104 b/docmost/db/base/16384/6104 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/6106 b/docmost/db/base/16384/6106 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/6110 b/docmost/db/base/16384/6110 deleted file mode 100644 index caf7fe2..0000000 Binary files a/docmost/db/base/16384/6110 and /dev/null differ diff --git a/docmost/db/base/16384/6111 b/docmost/db/base/16384/6111 deleted file mode 100644 index 14fc01d..0000000 Binary files a/docmost/db/base/16384/6111 and /dev/null differ diff --git a/docmost/db/base/16384/6112 b/docmost/db/base/16384/6112 deleted file mode 100644 index c050409..0000000 Binary files a/docmost/db/base/16384/6112 and /dev/null differ diff --git a/docmost/db/base/16384/6113 b/docmost/db/base/16384/6113 deleted file mode 100644 index 47617f8..0000000 Binary files a/docmost/db/base/16384/6113 and /dev/null differ diff --git a/docmost/db/base/16384/6116 b/docmost/db/base/16384/6116 deleted file mode 100644 index c8899a9..0000000 Binary files a/docmost/db/base/16384/6116 and /dev/null differ diff --git a/docmost/db/base/16384/6117 b/docmost/db/base/16384/6117 deleted file mode 100644 index 1c1fa54..0000000 Binary files a/docmost/db/base/16384/6117 and /dev/null differ diff --git a/docmost/db/base/16384/6175 b/docmost/db/base/16384/6175 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/6176 b/docmost/db/base/16384/6176 deleted file mode 100644 index c3221d3..0000000 Binary files a/docmost/db/base/16384/6176 and /dev/null differ diff --git a/docmost/db/base/16384/6228 b/docmost/db/base/16384/6228 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/6229 b/docmost/db/base/16384/6229 deleted file mode 100644 index bfc8121..0000000 Binary files a/docmost/db/base/16384/6229 and /dev/null differ diff --git a/docmost/db/base/16384/6237 b/docmost/db/base/16384/6237 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/6238 b/docmost/db/base/16384/6238 deleted file mode 100644 index df5e068..0000000 Binary files a/docmost/db/base/16384/6238 and /dev/null differ diff --git a/docmost/db/base/16384/6239 b/docmost/db/base/16384/6239 deleted file mode 100644 index e1da319..0000000 Binary files a/docmost/db/base/16384/6239 and /dev/null differ diff --git a/docmost/db/base/16384/826 b/docmost/db/base/16384/826 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/16384/827 b/docmost/db/base/16384/827 deleted file mode 100644 index 587ae93..0000000 Binary files a/docmost/db/base/16384/827 and /dev/null differ diff --git a/docmost/db/base/16384/828 b/docmost/db/base/16384/828 deleted file mode 100644 index ba59d55..0000000 Binary files a/docmost/db/base/16384/828 and /dev/null differ diff --git a/docmost/db/base/16384/PG_VERSION b/docmost/db/base/16384/PG_VERSION deleted file mode 100644 index b6a7d89..0000000 --- a/docmost/db/base/16384/PG_VERSION +++ /dev/null @@ -1 +0,0 @@ -16 diff --git a/docmost/db/base/16384/pg_filenode.map b/docmost/db/base/16384/pg_filenode.map deleted file mode 100644 index 4fc801a..0000000 Binary files a/docmost/db/base/16384/pg_filenode.map and /dev/null differ diff --git a/docmost/db/base/16384/pg_internal.init b/docmost/db/base/16384/pg_internal.init deleted file mode 100644 index beb9ebf..0000000 Binary files a/docmost/db/base/16384/pg_internal.init and /dev/null differ diff --git a/docmost/db/base/4/112 b/docmost/db/base/4/112 deleted file mode 100644 index 2bfc88c..0000000 Binary files a/docmost/db/base/4/112 and /dev/null differ diff --git a/docmost/db/base/4/113 b/docmost/db/base/4/113 deleted file mode 100644 index c36defa..0000000 Binary files a/docmost/db/base/4/113 and /dev/null differ diff --git a/docmost/db/base/4/1247 b/docmost/db/base/4/1247 deleted file mode 100644 index 8961ed4..0000000 Binary files a/docmost/db/base/4/1247 and /dev/null differ diff --git a/docmost/db/base/4/1247_fsm b/docmost/db/base/4/1247_fsm deleted file mode 100644 index 013faac..0000000 Binary files a/docmost/db/base/4/1247_fsm and /dev/null differ diff --git a/docmost/db/base/4/1247_vm b/docmost/db/base/4/1247_vm deleted file mode 100644 index ace0879..0000000 Binary files a/docmost/db/base/4/1247_vm and /dev/null differ diff --git a/docmost/db/base/4/1249 b/docmost/db/base/4/1249 deleted file mode 100644 index 61834d7..0000000 Binary files a/docmost/db/base/4/1249 and /dev/null differ diff --git a/docmost/db/base/4/1249_fsm b/docmost/db/base/4/1249_fsm deleted file mode 100644 index a538ac8..0000000 Binary files a/docmost/db/base/4/1249_fsm and /dev/null differ diff --git a/docmost/db/base/4/1249_vm b/docmost/db/base/4/1249_vm deleted file mode 100644 index 7e705a3..0000000 Binary files a/docmost/db/base/4/1249_vm and /dev/null differ diff --git a/docmost/db/base/4/1255 b/docmost/db/base/4/1255 deleted file mode 100644 index d9518c1..0000000 Binary files a/docmost/db/base/4/1255 and /dev/null differ diff --git a/docmost/db/base/4/1255_fsm b/docmost/db/base/4/1255_fsm deleted file mode 100644 index 69a5d8f..0000000 Binary files a/docmost/db/base/4/1255_fsm and /dev/null differ diff --git a/docmost/db/base/4/1255_vm b/docmost/db/base/4/1255_vm deleted file mode 100644 index d6a7e34..0000000 Binary files a/docmost/db/base/4/1255_vm and /dev/null differ diff --git a/docmost/db/base/4/1259 b/docmost/db/base/4/1259 deleted file mode 100644 index 1e70ae5..0000000 Binary files a/docmost/db/base/4/1259 and /dev/null differ diff --git a/docmost/db/base/4/1259_fsm b/docmost/db/base/4/1259_fsm deleted file mode 100644 index 05d8c51..0000000 Binary files a/docmost/db/base/4/1259_fsm and /dev/null differ diff --git a/docmost/db/base/4/1259_vm b/docmost/db/base/4/1259_vm deleted file mode 100644 index 85cec20..0000000 Binary files a/docmost/db/base/4/1259_vm and /dev/null differ diff --git a/docmost/db/base/4/13457 b/docmost/db/base/4/13457 deleted file mode 100644 index 6954f5d..0000000 Binary files a/docmost/db/base/4/13457 and /dev/null differ diff --git a/docmost/db/base/4/13457_fsm b/docmost/db/base/4/13457_fsm deleted file mode 100644 index 2a80b9a..0000000 Binary files a/docmost/db/base/4/13457_fsm and /dev/null differ diff --git a/docmost/db/base/4/13457_vm b/docmost/db/base/4/13457_vm deleted file mode 100644 index 141e044..0000000 Binary files a/docmost/db/base/4/13457_vm and /dev/null differ diff --git a/docmost/db/base/4/13460 b/docmost/db/base/4/13460 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/13461 b/docmost/db/base/4/13461 deleted file mode 100644 index 17aa1d3..0000000 Binary files a/docmost/db/base/4/13461 and /dev/null differ diff --git a/docmost/db/base/4/13462 b/docmost/db/base/4/13462 deleted file mode 100644 index 2756042..0000000 Binary files a/docmost/db/base/4/13462 and /dev/null differ diff --git a/docmost/db/base/4/13462_fsm b/docmost/db/base/4/13462_fsm deleted file mode 100644 index 70d16ce..0000000 Binary files a/docmost/db/base/4/13462_fsm and /dev/null differ diff --git a/docmost/db/base/4/13462_vm b/docmost/db/base/4/13462_vm deleted file mode 100644 index 5822899..0000000 Binary files a/docmost/db/base/4/13462_vm and /dev/null differ diff --git a/docmost/db/base/4/13465 b/docmost/db/base/4/13465 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/13466 b/docmost/db/base/4/13466 deleted file mode 100644 index b59c5ed..0000000 Binary files a/docmost/db/base/4/13466 and /dev/null differ diff --git a/docmost/db/base/4/13467 b/docmost/db/base/4/13467 deleted file mode 100644 index f7cc503..0000000 Binary files a/docmost/db/base/4/13467 and /dev/null differ diff --git a/docmost/db/base/4/13467_fsm b/docmost/db/base/4/13467_fsm deleted file mode 100644 index 0673ada..0000000 Binary files a/docmost/db/base/4/13467_fsm and /dev/null differ diff --git a/docmost/db/base/4/13467_vm b/docmost/db/base/4/13467_vm deleted file mode 100644 index df84b46..0000000 Binary files a/docmost/db/base/4/13467_vm and /dev/null differ diff --git a/docmost/db/base/4/13470 b/docmost/db/base/4/13470 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/13471 b/docmost/db/base/4/13471 deleted file mode 100644 index 4ddcaa4..0000000 Binary files a/docmost/db/base/4/13471 and /dev/null differ diff --git a/docmost/db/base/4/13472 b/docmost/db/base/4/13472 deleted file mode 100644 index ced8b2f..0000000 Binary files a/docmost/db/base/4/13472 and /dev/null differ diff --git a/docmost/db/base/4/13472_fsm b/docmost/db/base/4/13472_fsm deleted file mode 100644 index a836ddf..0000000 Binary files a/docmost/db/base/4/13472_fsm and /dev/null differ diff --git a/docmost/db/base/4/13472_vm b/docmost/db/base/4/13472_vm deleted file mode 100644 index a3cfd31..0000000 Binary files a/docmost/db/base/4/13472_vm and /dev/null differ diff --git a/docmost/db/base/4/13475 b/docmost/db/base/4/13475 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/13476 b/docmost/db/base/4/13476 deleted file mode 100644 index 5af7a00..0000000 Binary files a/docmost/db/base/4/13476 and /dev/null differ diff --git a/docmost/db/base/4/1417 b/docmost/db/base/4/1417 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/1418 b/docmost/db/base/4/1418 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/174 b/docmost/db/base/4/174 deleted file mode 100644 index fedcb88..0000000 Binary files a/docmost/db/base/4/174 and /dev/null differ diff --git a/docmost/db/base/4/175 b/docmost/db/base/4/175 deleted file mode 100644 index 7ee5b4a..0000000 Binary files a/docmost/db/base/4/175 and /dev/null differ diff --git a/docmost/db/base/4/2187 b/docmost/db/base/4/2187 deleted file mode 100644 index 4bb8bea..0000000 Binary files a/docmost/db/base/4/2187 and /dev/null differ diff --git a/docmost/db/base/4/2224 b/docmost/db/base/4/2224 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/2228 b/docmost/db/base/4/2228 deleted file mode 100644 index 738f259..0000000 Binary files a/docmost/db/base/4/2228 and /dev/null differ diff --git a/docmost/db/base/4/2328 b/docmost/db/base/4/2328 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/2336 b/docmost/db/base/4/2336 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/2337 b/docmost/db/base/4/2337 deleted file mode 100644 index b77e77c..0000000 Binary files a/docmost/db/base/4/2337 and /dev/null differ diff --git a/docmost/db/base/4/2579 b/docmost/db/base/4/2579 deleted file mode 100644 index 0e9f4e6..0000000 Binary files a/docmost/db/base/4/2579 and /dev/null differ diff --git a/docmost/db/base/4/2600 b/docmost/db/base/4/2600 deleted file mode 100644 index d98ee62..0000000 Binary files a/docmost/db/base/4/2600 and /dev/null differ diff --git a/docmost/db/base/4/2600_fsm b/docmost/db/base/4/2600_fsm deleted file mode 100644 index 0938592..0000000 Binary files a/docmost/db/base/4/2600_fsm and /dev/null differ diff --git a/docmost/db/base/4/2600_vm b/docmost/db/base/4/2600_vm deleted file mode 100644 index 2617550..0000000 Binary files a/docmost/db/base/4/2600_vm and /dev/null differ diff --git a/docmost/db/base/4/2601 b/docmost/db/base/4/2601 deleted file mode 100644 index d8001c8..0000000 Binary files a/docmost/db/base/4/2601 and /dev/null differ diff --git a/docmost/db/base/4/2601_fsm b/docmost/db/base/4/2601_fsm deleted file mode 100644 index d388044..0000000 Binary files a/docmost/db/base/4/2601_fsm and /dev/null differ diff --git a/docmost/db/base/4/2601_vm b/docmost/db/base/4/2601_vm deleted file mode 100644 index 1363638..0000000 Binary files a/docmost/db/base/4/2601_vm and /dev/null differ diff --git a/docmost/db/base/4/2602 b/docmost/db/base/4/2602 deleted file mode 100644 index 4a27b0a..0000000 Binary files a/docmost/db/base/4/2602 and /dev/null differ diff --git a/docmost/db/base/4/2602_fsm b/docmost/db/base/4/2602_fsm deleted file mode 100644 index 23170d8..0000000 Binary files a/docmost/db/base/4/2602_fsm and /dev/null differ diff --git a/docmost/db/base/4/2602_vm b/docmost/db/base/4/2602_vm deleted file mode 100644 index 67a627c..0000000 Binary files a/docmost/db/base/4/2602_vm and /dev/null differ diff --git a/docmost/db/base/4/2603 b/docmost/db/base/4/2603 deleted file mode 100644 index d511af5..0000000 Binary files a/docmost/db/base/4/2603 and /dev/null differ diff --git a/docmost/db/base/4/2603_fsm b/docmost/db/base/4/2603_fsm deleted file mode 100644 index 949bd18..0000000 Binary files a/docmost/db/base/4/2603_fsm and /dev/null differ diff --git a/docmost/db/base/4/2603_vm b/docmost/db/base/4/2603_vm deleted file mode 100644 index 2a2b0c3..0000000 Binary files a/docmost/db/base/4/2603_vm and /dev/null differ diff --git a/docmost/db/base/4/2604 b/docmost/db/base/4/2604 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/2605 b/docmost/db/base/4/2605 deleted file mode 100644 index eeaa7ea..0000000 Binary files a/docmost/db/base/4/2605 and /dev/null differ diff --git a/docmost/db/base/4/2605_fsm b/docmost/db/base/4/2605_fsm deleted file mode 100644 index f3b92bf..0000000 Binary files a/docmost/db/base/4/2605_fsm and /dev/null differ diff --git a/docmost/db/base/4/2605_vm b/docmost/db/base/4/2605_vm deleted file mode 100644 index e36e087..0000000 Binary files a/docmost/db/base/4/2605_vm and /dev/null differ diff --git a/docmost/db/base/4/2606 b/docmost/db/base/4/2606 deleted file mode 100644 index 8227445..0000000 Binary files a/docmost/db/base/4/2606 and /dev/null differ diff --git a/docmost/db/base/4/2606_fsm b/docmost/db/base/4/2606_fsm deleted file mode 100644 index 267454e..0000000 Binary files a/docmost/db/base/4/2606_fsm and /dev/null differ diff --git a/docmost/db/base/4/2606_vm b/docmost/db/base/4/2606_vm deleted file mode 100644 index ac7ec8a..0000000 Binary files a/docmost/db/base/4/2606_vm and /dev/null differ diff --git a/docmost/db/base/4/2607 b/docmost/db/base/4/2607 deleted file mode 100644 index bfad49a..0000000 Binary files a/docmost/db/base/4/2607 and /dev/null differ diff --git a/docmost/db/base/4/2607_fsm b/docmost/db/base/4/2607_fsm deleted file mode 100644 index 80ac8b1..0000000 Binary files a/docmost/db/base/4/2607_fsm and /dev/null differ diff --git a/docmost/db/base/4/2607_vm b/docmost/db/base/4/2607_vm deleted file mode 100644 index 316b9cd..0000000 Binary files a/docmost/db/base/4/2607_vm and /dev/null differ diff --git a/docmost/db/base/4/2608 b/docmost/db/base/4/2608 deleted file mode 100644 index 9ec119b..0000000 Binary files a/docmost/db/base/4/2608 and /dev/null differ diff --git a/docmost/db/base/4/2608_fsm b/docmost/db/base/4/2608_fsm deleted file mode 100644 index 95081cd..0000000 Binary files a/docmost/db/base/4/2608_fsm and /dev/null differ diff --git a/docmost/db/base/4/2608_vm b/docmost/db/base/4/2608_vm deleted file mode 100644 index 7381933..0000000 Binary files a/docmost/db/base/4/2608_vm and /dev/null differ diff --git a/docmost/db/base/4/2609 b/docmost/db/base/4/2609 deleted file mode 100644 index 46de400..0000000 Binary files a/docmost/db/base/4/2609 and /dev/null differ diff --git a/docmost/db/base/4/2609_fsm b/docmost/db/base/4/2609_fsm deleted file mode 100644 index 624979d..0000000 Binary files a/docmost/db/base/4/2609_fsm and /dev/null differ diff --git a/docmost/db/base/4/2609_vm b/docmost/db/base/4/2609_vm deleted file mode 100644 index 0b00f10..0000000 Binary files a/docmost/db/base/4/2609_vm and /dev/null differ diff --git a/docmost/db/base/4/2610 b/docmost/db/base/4/2610 deleted file mode 100644 index 22db42a..0000000 Binary files a/docmost/db/base/4/2610 and /dev/null differ diff --git a/docmost/db/base/4/2610_fsm b/docmost/db/base/4/2610_fsm deleted file mode 100644 index ecbcb5f..0000000 Binary files a/docmost/db/base/4/2610_fsm and /dev/null differ diff --git a/docmost/db/base/4/2610_vm b/docmost/db/base/4/2610_vm deleted file mode 100644 index 9eae6da..0000000 Binary files a/docmost/db/base/4/2610_vm and /dev/null differ diff --git a/docmost/db/base/4/2611 b/docmost/db/base/4/2611 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/2612 b/docmost/db/base/4/2612 deleted file mode 100644 index 8c61a98..0000000 Binary files a/docmost/db/base/4/2612 and /dev/null differ diff --git a/docmost/db/base/4/2612_fsm b/docmost/db/base/4/2612_fsm deleted file mode 100644 index 877976a..0000000 Binary files a/docmost/db/base/4/2612_fsm and /dev/null differ diff --git a/docmost/db/base/4/2612_vm b/docmost/db/base/4/2612_vm deleted file mode 100644 index 005be6f..0000000 Binary files a/docmost/db/base/4/2612_vm and /dev/null differ diff --git a/docmost/db/base/4/2613 b/docmost/db/base/4/2613 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/2615 b/docmost/db/base/4/2615 deleted file mode 100644 index 35868fc..0000000 Binary files a/docmost/db/base/4/2615 and /dev/null differ diff --git a/docmost/db/base/4/2615_fsm b/docmost/db/base/4/2615_fsm deleted file mode 100644 index d041693..0000000 Binary files a/docmost/db/base/4/2615_fsm and /dev/null differ diff --git a/docmost/db/base/4/2615_vm b/docmost/db/base/4/2615_vm deleted file mode 100644 index 22233fd..0000000 Binary files a/docmost/db/base/4/2615_vm and /dev/null differ diff --git a/docmost/db/base/4/2616 b/docmost/db/base/4/2616 deleted file mode 100644 index 0d60d79..0000000 Binary files a/docmost/db/base/4/2616 and /dev/null differ diff --git a/docmost/db/base/4/2616_fsm b/docmost/db/base/4/2616_fsm deleted file mode 100644 index cb924c9..0000000 Binary files a/docmost/db/base/4/2616_fsm and /dev/null differ diff --git a/docmost/db/base/4/2616_vm b/docmost/db/base/4/2616_vm deleted file mode 100644 index 21787ae..0000000 Binary files a/docmost/db/base/4/2616_vm and /dev/null differ diff --git a/docmost/db/base/4/2617 b/docmost/db/base/4/2617 deleted file mode 100644 index bcdfc18..0000000 Binary files a/docmost/db/base/4/2617 and /dev/null differ diff --git a/docmost/db/base/4/2617_fsm b/docmost/db/base/4/2617_fsm deleted file mode 100644 index 29d6066..0000000 Binary files a/docmost/db/base/4/2617_fsm and /dev/null differ diff --git a/docmost/db/base/4/2617_vm b/docmost/db/base/4/2617_vm deleted file mode 100644 index b52f77d..0000000 Binary files a/docmost/db/base/4/2617_vm and /dev/null differ diff --git a/docmost/db/base/4/2618 b/docmost/db/base/4/2618 deleted file mode 100644 index 26b756c..0000000 Binary files a/docmost/db/base/4/2618 and /dev/null differ diff --git a/docmost/db/base/4/2618_fsm b/docmost/db/base/4/2618_fsm deleted file mode 100644 index bcee926..0000000 Binary files a/docmost/db/base/4/2618_fsm and /dev/null differ diff --git a/docmost/db/base/4/2618_vm b/docmost/db/base/4/2618_vm deleted file mode 100644 index 3ef7d24..0000000 Binary files a/docmost/db/base/4/2618_vm and /dev/null differ diff --git a/docmost/db/base/4/2619 b/docmost/db/base/4/2619 deleted file mode 100644 index a639de9..0000000 Binary files a/docmost/db/base/4/2619 and /dev/null differ diff --git a/docmost/db/base/4/2619_fsm b/docmost/db/base/4/2619_fsm deleted file mode 100644 index d1e1152..0000000 Binary files a/docmost/db/base/4/2619_fsm and /dev/null differ diff --git a/docmost/db/base/4/2619_vm b/docmost/db/base/4/2619_vm deleted file mode 100644 index 384c5a8..0000000 Binary files a/docmost/db/base/4/2619_vm and /dev/null differ diff --git a/docmost/db/base/4/2620 b/docmost/db/base/4/2620 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/2650 b/docmost/db/base/4/2650 deleted file mode 100644 index 6e3f9d8..0000000 Binary files a/docmost/db/base/4/2650 and /dev/null differ diff --git a/docmost/db/base/4/2651 b/docmost/db/base/4/2651 deleted file mode 100644 index 122f1e9..0000000 Binary files a/docmost/db/base/4/2651 and /dev/null differ diff --git a/docmost/db/base/4/2652 b/docmost/db/base/4/2652 deleted file mode 100644 index 0893403..0000000 Binary files a/docmost/db/base/4/2652 and /dev/null differ diff --git a/docmost/db/base/4/2653 b/docmost/db/base/4/2653 deleted file mode 100644 index 7c90667..0000000 Binary files a/docmost/db/base/4/2653 and /dev/null differ diff --git a/docmost/db/base/4/2654 b/docmost/db/base/4/2654 deleted file mode 100644 index 25acc45..0000000 Binary files a/docmost/db/base/4/2654 and /dev/null differ diff --git a/docmost/db/base/4/2655 b/docmost/db/base/4/2655 deleted file mode 100644 index d7b8b42..0000000 Binary files a/docmost/db/base/4/2655 and /dev/null differ diff --git a/docmost/db/base/4/2656 b/docmost/db/base/4/2656 deleted file mode 100644 index 9eb8cff..0000000 Binary files a/docmost/db/base/4/2656 and /dev/null differ diff --git a/docmost/db/base/4/2657 b/docmost/db/base/4/2657 deleted file mode 100644 index bc6342c..0000000 Binary files a/docmost/db/base/4/2657 and /dev/null differ diff --git a/docmost/db/base/4/2658 b/docmost/db/base/4/2658 deleted file mode 100644 index 0a5baaf..0000000 Binary files a/docmost/db/base/4/2658 and /dev/null differ diff --git a/docmost/db/base/4/2659 b/docmost/db/base/4/2659 deleted file mode 100644 index 286b45f..0000000 Binary files a/docmost/db/base/4/2659 and /dev/null differ diff --git a/docmost/db/base/4/2660 b/docmost/db/base/4/2660 deleted file mode 100644 index 6ac2d3f..0000000 Binary files a/docmost/db/base/4/2660 and /dev/null differ diff --git a/docmost/db/base/4/2661 b/docmost/db/base/4/2661 deleted file mode 100644 index ce3bafa..0000000 Binary files a/docmost/db/base/4/2661 and /dev/null differ diff --git a/docmost/db/base/4/2662 b/docmost/db/base/4/2662 deleted file mode 100644 index 2980c1d..0000000 Binary files a/docmost/db/base/4/2662 and /dev/null differ diff --git a/docmost/db/base/4/2663 b/docmost/db/base/4/2663 deleted file mode 100644 index 3ad607c..0000000 Binary files a/docmost/db/base/4/2663 and /dev/null differ diff --git a/docmost/db/base/4/2664 b/docmost/db/base/4/2664 deleted file mode 100644 index 3b9e870..0000000 Binary files a/docmost/db/base/4/2664 and /dev/null differ diff --git a/docmost/db/base/4/2665 b/docmost/db/base/4/2665 deleted file mode 100644 index c87fc1b..0000000 Binary files a/docmost/db/base/4/2665 and /dev/null differ diff --git a/docmost/db/base/4/2666 b/docmost/db/base/4/2666 deleted file mode 100644 index 4816f00..0000000 Binary files a/docmost/db/base/4/2666 and /dev/null differ diff --git a/docmost/db/base/4/2667 b/docmost/db/base/4/2667 deleted file mode 100644 index 127592d..0000000 Binary files a/docmost/db/base/4/2667 and /dev/null differ diff --git a/docmost/db/base/4/2668 b/docmost/db/base/4/2668 deleted file mode 100644 index 34ad3c5..0000000 Binary files a/docmost/db/base/4/2668 and /dev/null differ diff --git a/docmost/db/base/4/2669 b/docmost/db/base/4/2669 deleted file mode 100644 index c8918e8..0000000 Binary files a/docmost/db/base/4/2669 and /dev/null differ diff --git a/docmost/db/base/4/2670 b/docmost/db/base/4/2670 deleted file mode 100644 index 36bf21b..0000000 Binary files a/docmost/db/base/4/2670 and /dev/null differ diff --git a/docmost/db/base/4/2673 b/docmost/db/base/4/2673 deleted file mode 100644 index c5d12f7..0000000 Binary files a/docmost/db/base/4/2673 and /dev/null differ diff --git a/docmost/db/base/4/2674 b/docmost/db/base/4/2674 deleted file mode 100644 index 81c1420..0000000 Binary files a/docmost/db/base/4/2674 and /dev/null differ diff --git a/docmost/db/base/4/2675 b/docmost/db/base/4/2675 deleted file mode 100644 index d942fbf..0000000 Binary files a/docmost/db/base/4/2675 and /dev/null differ diff --git a/docmost/db/base/4/2678 b/docmost/db/base/4/2678 deleted file mode 100644 index f40d4e8..0000000 Binary files a/docmost/db/base/4/2678 and /dev/null differ diff --git a/docmost/db/base/4/2679 b/docmost/db/base/4/2679 deleted file mode 100644 index 51f60db..0000000 Binary files a/docmost/db/base/4/2679 and /dev/null differ diff --git a/docmost/db/base/4/2680 b/docmost/db/base/4/2680 deleted file mode 100644 index 0eb18c7..0000000 Binary files a/docmost/db/base/4/2680 and /dev/null differ diff --git a/docmost/db/base/4/2681 b/docmost/db/base/4/2681 deleted file mode 100644 index 0519f74..0000000 Binary files a/docmost/db/base/4/2681 and /dev/null differ diff --git a/docmost/db/base/4/2682 b/docmost/db/base/4/2682 deleted file mode 100644 index 86664ca..0000000 Binary files a/docmost/db/base/4/2682 and /dev/null differ diff --git a/docmost/db/base/4/2683 b/docmost/db/base/4/2683 deleted file mode 100644 index 0bf1a55..0000000 Binary files a/docmost/db/base/4/2683 and /dev/null differ diff --git a/docmost/db/base/4/2684 b/docmost/db/base/4/2684 deleted file mode 100644 index 7919656..0000000 Binary files a/docmost/db/base/4/2684 and /dev/null differ diff --git a/docmost/db/base/4/2685 b/docmost/db/base/4/2685 deleted file mode 100644 index 33818d1..0000000 Binary files a/docmost/db/base/4/2685 and /dev/null differ diff --git a/docmost/db/base/4/2686 b/docmost/db/base/4/2686 deleted file mode 100644 index 3bd1a5b..0000000 Binary files a/docmost/db/base/4/2686 and /dev/null differ diff --git a/docmost/db/base/4/2687 b/docmost/db/base/4/2687 deleted file mode 100644 index 34e06cc..0000000 Binary files a/docmost/db/base/4/2687 and /dev/null differ diff --git a/docmost/db/base/4/2688 b/docmost/db/base/4/2688 deleted file mode 100644 index 1d184b4..0000000 Binary files a/docmost/db/base/4/2688 and /dev/null differ diff --git a/docmost/db/base/4/2689 b/docmost/db/base/4/2689 deleted file mode 100644 index 7999fe5..0000000 Binary files a/docmost/db/base/4/2689 and /dev/null differ diff --git a/docmost/db/base/4/2690 b/docmost/db/base/4/2690 deleted file mode 100644 index f6022a5..0000000 Binary files a/docmost/db/base/4/2690 and /dev/null differ diff --git a/docmost/db/base/4/2691 b/docmost/db/base/4/2691 deleted file mode 100644 index 14eaaa0..0000000 Binary files a/docmost/db/base/4/2691 and /dev/null differ diff --git a/docmost/db/base/4/2692 b/docmost/db/base/4/2692 deleted file mode 100644 index df5b102..0000000 Binary files a/docmost/db/base/4/2692 and /dev/null differ diff --git a/docmost/db/base/4/2693 b/docmost/db/base/4/2693 deleted file mode 100644 index 5962231..0000000 Binary files a/docmost/db/base/4/2693 and /dev/null differ diff --git a/docmost/db/base/4/2696 b/docmost/db/base/4/2696 deleted file mode 100644 index f053f57..0000000 Binary files a/docmost/db/base/4/2696 and /dev/null differ diff --git a/docmost/db/base/4/2699 b/docmost/db/base/4/2699 deleted file mode 100644 index 104781d..0000000 Binary files a/docmost/db/base/4/2699 and /dev/null differ diff --git a/docmost/db/base/4/2701 b/docmost/db/base/4/2701 deleted file mode 100644 index 66bc81a..0000000 Binary files a/docmost/db/base/4/2701 and /dev/null differ diff --git a/docmost/db/base/4/2702 b/docmost/db/base/4/2702 deleted file mode 100644 index dbab200..0000000 Binary files a/docmost/db/base/4/2702 and /dev/null differ diff --git a/docmost/db/base/4/2703 b/docmost/db/base/4/2703 deleted file mode 100644 index 4382396..0000000 Binary files a/docmost/db/base/4/2703 and /dev/null differ diff --git a/docmost/db/base/4/2704 b/docmost/db/base/4/2704 deleted file mode 100644 index 8957a5a..0000000 Binary files a/docmost/db/base/4/2704 and /dev/null differ diff --git a/docmost/db/base/4/2753 b/docmost/db/base/4/2753 deleted file mode 100644 index 3c16dff..0000000 Binary files a/docmost/db/base/4/2753 and /dev/null differ diff --git a/docmost/db/base/4/2753_fsm b/docmost/db/base/4/2753_fsm deleted file mode 100644 index 642bce3..0000000 Binary files a/docmost/db/base/4/2753_fsm and /dev/null differ diff --git a/docmost/db/base/4/2753_vm b/docmost/db/base/4/2753_vm deleted file mode 100644 index 6bf3744..0000000 Binary files a/docmost/db/base/4/2753_vm and /dev/null differ diff --git a/docmost/db/base/4/2754 b/docmost/db/base/4/2754 deleted file mode 100644 index de7dd55..0000000 Binary files a/docmost/db/base/4/2754 and /dev/null differ diff --git a/docmost/db/base/4/2755 b/docmost/db/base/4/2755 deleted file mode 100644 index ccf2508..0000000 Binary files a/docmost/db/base/4/2755 and /dev/null differ diff --git a/docmost/db/base/4/2756 b/docmost/db/base/4/2756 deleted file mode 100644 index eea67e8..0000000 Binary files a/docmost/db/base/4/2756 and /dev/null differ diff --git a/docmost/db/base/4/2757 b/docmost/db/base/4/2757 deleted file mode 100644 index 1d27df5..0000000 Binary files a/docmost/db/base/4/2757 and /dev/null differ diff --git a/docmost/db/base/4/2830 b/docmost/db/base/4/2830 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/2831 b/docmost/db/base/4/2831 deleted file mode 100644 index 0f0513e..0000000 Binary files a/docmost/db/base/4/2831 and /dev/null differ diff --git a/docmost/db/base/4/2832 b/docmost/db/base/4/2832 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/2833 b/docmost/db/base/4/2833 deleted file mode 100644 index f0e78fc..0000000 Binary files a/docmost/db/base/4/2833 and /dev/null differ diff --git a/docmost/db/base/4/2834 b/docmost/db/base/4/2834 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/2835 b/docmost/db/base/4/2835 deleted file mode 100644 index 361e642..0000000 Binary files a/docmost/db/base/4/2835 and /dev/null differ diff --git a/docmost/db/base/4/2836 b/docmost/db/base/4/2836 deleted file mode 100644 index 229706f..0000000 Binary files a/docmost/db/base/4/2836 and /dev/null differ diff --git a/docmost/db/base/4/2836_fsm b/docmost/db/base/4/2836_fsm deleted file mode 100644 index 06e1e26..0000000 Binary files a/docmost/db/base/4/2836_fsm and /dev/null differ diff --git a/docmost/db/base/4/2836_vm b/docmost/db/base/4/2836_vm deleted file mode 100644 index 6d3e02d..0000000 Binary files a/docmost/db/base/4/2836_vm and /dev/null differ diff --git a/docmost/db/base/4/2837 b/docmost/db/base/4/2837 deleted file mode 100644 index d292c70..0000000 Binary files a/docmost/db/base/4/2837 and /dev/null differ diff --git a/docmost/db/base/4/2838 b/docmost/db/base/4/2838 deleted file mode 100644 index 9f32243..0000000 Binary files a/docmost/db/base/4/2838 and /dev/null differ diff --git a/docmost/db/base/4/2838_fsm b/docmost/db/base/4/2838_fsm deleted file mode 100644 index 5b51a82..0000000 Binary files a/docmost/db/base/4/2838_fsm and /dev/null differ diff --git a/docmost/db/base/4/2838_vm b/docmost/db/base/4/2838_vm deleted file mode 100644 index 2eb6d0b..0000000 Binary files a/docmost/db/base/4/2838_vm and /dev/null differ diff --git a/docmost/db/base/4/2839 b/docmost/db/base/4/2839 deleted file mode 100644 index 06d8ae7..0000000 Binary files a/docmost/db/base/4/2839 and /dev/null differ diff --git a/docmost/db/base/4/2840 b/docmost/db/base/4/2840 deleted file mode 100644 index 220abdf..0000000 Binary files a/docmost/db/base/4/2840 and /dev/null differ diff --git a/docmost/db/base/4/2840_fsm b/docmost/db/base/4/2840_fsm deleted file mode 100644 index a454fb0..0000000 Binary files a/docmost/db/base/4/2840_fsm and /dev/null differ diff --git a/docmost/db/base/4/2840_vm b/docmost/db/base/4/2840_vm deleted file mode 100644 index 9493ac1..0000000 Binary files a/docmost/db/base/4/2840_vm and /dev/null differ diff --git a/docmost/db/base/4/2841 b/docmost/db/base/4/2841 deleted file mode 100644 index 0b53423..0000000 Binary files a/docmost/db/base/4/2841 and /dev/null differ diff --git a/docmost/db/base/4/2995 b/docmost/db/base/4/2995 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/2996 b/docmost/db/base/4/2996 deleted file mode 100644 index 9071dbe..0000000 Binary files a/docmost/db/base/4/2996 and /dev/null differ diff --git a/docmost/db/base/4/3079 b/docmost/db/base/4/3079 deleted file mode 100644 index 9b6e94c..0000000 Binary files a/docmost/db/base/4/3079 and /dev/null differ diff --git a/docmost/db/base/4/3079_fsm b/docmost/db/base/4/3079_fsm deleted file mode 100644 index 7732d22..0000000 Binary files a/docmost/db/base/4/3079_fsm and /dev/null differ diff --git a/docmost/db/base/4/3079_vm b/docmost/db/base/4/3079_vm deleted file mode 100644 index 22a0762..0000000 Binary files a/docmost/db/base/4/3079_vm and /dev/null differ diff --git a/docmost/db/base/4/3080 b/docmost/db/base/4/3080 deleted file mode 100644 index 3f77362..0000000 Binary files a/docmost/db/base/4/3080 and /dev/null differ diff --git a/docmost/db/base/4/3081 b/docmost/db/base/4/3081 deleted file mode 100644 index 9b5489e..0000000 Binary files a/docmost/db/base/4/3081 and /dev/null differ diff --git a/docmost/db/base/4/3085 b/docmost/db/base/4/3085 deleted file mode 100644 index 62921de..0000000 Binary files a/docmost/db/base/4/3085 and /dev/null differ diff --git a/docmost/db/base/4/3118 b/docmost/db/base/4/3118 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/3119 b/docmost/db/base/4/3119 deleted file mode 100644 index 8524de7..0000000 Binary files a/docmost/db/base/4/3119 and /dev/null differ diff --git a/docmost/db/base/4/3164 b/docmost/db/base/4/3164 deleted file mode 100644 index 81600cf..0000000 Binary files a/docmost/db/base/4/3164 and /dev/null differ diff --git a/docmost/db/base/4/3256 b/docmost/db/base/4/3256 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/3257 b/docmost/db/base/4/3257 deleted file mode 100644 index 6f325ab..0000000 Binary files a/docmost/db/base/4/3257 and /dev/null differ diff --git a/docmost/db/base/4/3258 b/docmost/db/base/4/3258 deleted file mode 100644 index 10c3c94..0000000 Binary files a/docmost/db/base/4/3258 and /dev/null differ diff --git a/docmost/db/base/4/3350 b/docmost/db/base/4/3350 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/3351 b/docmost/db/base/4/3351 deleted file mode 100644 index 2bfef7f..0000000 Binary files a/docmost/db/base/4/3351 and /dev/null differ diff --git a/docmost/db/base/4/3379 b/docmost/db/base/4/3379 deleted file mode 100644 index d1e70d4..0000000 Binary files a/docmost/db/base/4/3379 and /dev/null differ diff --git a/docmost/db/base/4/3380 b/docmost/db/base/4/3380 deleted file mode 100644 index 9830667..0000000 Binary files a/docmost/db/base/4/3380 and /dev/null differ diff --git a/docmost/db/base/4/3381 b/docmost/db/base/4/3381 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/3394 b/docmost/db/base/4/3394 deleted file mode 100644 index c6381c5..0000000 Binary files a/docmost/db/base/4/3394 and /dev/null differ diff --git a/docmost/db/base/4/3394_fsm b/docmost/db/base/4/3394_fsm deleted file mode 100644 index 38ac5f8..0000000 Binary files a/docmost/db/base/4/3394_fsm and /dev/null differ diff --git a/docmost/db/base/4/3394_vm b/docmost/db/base/4/3394_vm deleted file mode 100644 index 1047124..0000000 Binary files a/docmost/db/base/4/3394_vm and /dev/null differ diff --git a/docmost/db/base/4/3395 b/docmost/db/base/4/3395 deleted file mode 100644 index a319d6a..0000000 Binary files a/docmost/db/base/4/3395 and /dev/null differ diff --git a/docmost/db/base/4/3429 b/docmost/db/base/4/3429 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/3430 b/docmost/db/base/4/3430 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/3431 b/docmost/db/base/4/3431 deleted file mode 100644 index 872ecbe..0000000 Binary files a/docmost/db/base/4/3431 and /dev/null differ diff --git a/docmost/db/base/4/3433 b/docmost/db/base/4/3433 deleted file mode 100644 index c114108..0000000 Binary files a/docmost/db/base/4/3433 and /dev/null differ diff --git a/docmost/db/base/4/3439 b/docmost/db/base/4/3439 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/3440 b/docmost/db/base/4/3440 deleted file mode 100644 index de56c84..0000000 Binary files a/docmost/db/base/4/3440 and /dev/null differ diff --git a/docmost/db/base/4/3455 b/docmost/db/base/4/3455 deleted file mode 100644 index ace32e7..0000000 Binary files a/docmost/db/base/4/3455 and /dev/null differ diff --git a/docmost/db/base/4/3456 b/docmost/db/base/4/3456 deleted file mode 100644 index 26e43c3..0000000 Binary files a/docmost/db/base/4/3456 and /dev/null differ diff --git a/docmost/db/base/4/3456_fsm b/docmost/db/base/4/3456_fsm deleted file mode 100644 index 2823c77..0000000 Binary files a/docmost/db/base/4/3456_fsm and /dev/null differ diff --git a/docmost/db/base/4/3456_vm b/docmost/db/base/4/3456_vm deleted file mode 100644 index 9341825..0000000 Binary files a/docmost/db/base/4/3456_vm and /dev/null differ diff --git a/docmost/db/base/4/3466 b/docmost/db/base/4/3466 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/3467 b/docmost/db/base/4/3467 deleted file mode 100644 index 5b378cb..0000000 Binary files a/docmost/db/base/4/3467 and /dev/null differ diff --git a/docmost/db/base/4/3468 b/docmost/db/base/4/3468 deleted file mode 100644 index ef2294a..0000000 Binary files a/docmost/db/base/4/3468 and /dev/null differ diff --git a/docmost/db/base/4/3501 b/docmost/db/base/4/3501 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/3502 b/docmost/db/base/4/3502 deleted file mode 100644 index 9b7eaca..0000000 Binary files a/docmost/db/base/4/3502 and /dev/null differ diff --git a/docmost/db/base/4/3503 b/docmost/db/base/4/3503 deleted file mode 100644 index 1601fe2..0000000 Binary files a/docmost/db/base/4/3503 and /dev/null differ diff --git a/docmost/db/base/4/3534 b/docmost/db/base/4/3534 deleted file mode 100644 index 0d5583a..0000000 Binary files a/docmost/db/base/4/3534 and /dev/null differ diff --git a/docmost/db/base/4/3541 b/docmost/db/base/4/3541 deleted file mode 100644 index 40869ad..0000000 Binary files a/docmost/db/base/4/3541 and /dev/null differ diff --git a/docmost/db/base/4/3541_fsm b/docmost/db/base/4/3541_fsm deleted file mode 100644 index a3a2de4..0000000 Binary files a/docmost/db/base/4/3541_fsm and /dev/null differ diff --git a/docmost/db/base/4/3541_vm b/docmost/db/base/4/3541_vm deleted file mode 100644 index 7e25dcf..0000000 Binary files a/docmost/db/base/4/3541_vm and /dev/null differ diff --git a/docmost/db/base/4/3542 b/docmost/db/base/4/3542 deleted file mode 100644 index ced0066..0000000 Binary files a/docmost/db/base/4/3542 and /dev/null differ diff --git a/docmost/db/base/4/3574 b/docmost/db/base/4/3574 deleted file mode 100644 index b026df1..0000000 Binary files a/docmost/db/base/4/3574 and /dev/null differ diff --git a/docmost/db/base/4/3575 b/docmost/db/base/4/3575 deleted file mode 100644 index bdec532..0000000 Binary files a/docmost/db/base/4/3575 and /dev/null differ diff --git a/docmost/db/base/4/3576 b/docmost/db/base/4/3576 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/3596 b/docmost/db/base/4/3596 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/3597 b/docmost/db/base/4/3597 deleted file mode 100644 index 6947306..0000000 Binary files a/docmost/db/base/4/3597 and /dev/null differ diff --git a/docmost/db/base/4/3598 b/docmost/db/base/4/3598 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/3599 b/docmost/db/base/4/3599 deleted file mode 100644 index 90bad73..0000000 Binary files a/docmost/db/base/4/3599 and /dev/null differ diff --git a/docmost/db/base/4/3600 b/docmost/db/base/4/3600 deleted file mode 100644 index aa8d56a..0000000 Binary files a/docmost/db/base/4/3600 and /dev/null differ diff --git a/docmost/db/base/4/3600_fsm b/docmost/db/base/4/3600_fsm deleted file mode 100644 index cebec19..0000000 Binary files a/docmost/db/base/4/3600_fsm and /dev/null differ diff --git a/docmost/db/base/4/3600_vm b/docmost/db/base/4/3600_vm deleted file mode 100644 index 9331bd3..0000000 Binary files a/docmost/db/base/4/3600_vm and /dev/null differ diff --git a/docmost/db/base/4/3601 b/docmost/db/base/4/3601 deleted file mode 100644 index 04c846e..0000000 Binary files a/docmost/db/base/4/3601 and /dev/null differ diff --git a/docmost/db/base/4/3601_fsm b/docmost/db/base/4/3601_fsm deleted file mode 100644 index 7732d22..0000000 Binary files a/docmost/db/base/4/3601_fsm and /dev/null differ diff --git a/docmost/db/base/4/3601_vm b/docmost/db/base/4/3601_vm deleted file mode 100644 index 90ff664..0000000 Binary files a/docmost/db/base/4/3601_vm and /dev/null differ diff --git a/docmost/db/base/4/3602 b/docmost/db/base/4/3602 deleted file mode 100644 index 2038ed7..0000000 Binary files a/docmost/db/base/4/3602 and /dev/null differ diff --git a/docmost/db/base/4/3602_fsm b/docmost/db/base/4/3602_fsm deleted file mode 100644 index d7897de..0000000 Binary files a/docmost/db/base/4/3602_fsm and /dev/null differ diff --git a/docmost/db/base/4/3602_vm b/docmost/db/base/4/3602_vm deleted file mode 100644 index f1ea290..0000000 Binary files a/docmost/db/base/4/3602_vm and /dev/null differ diff --git a/docmost/db/base/4/3603 b/docmost/db/base/4/3603 deleted file mode 100644 index ba184af..0000000 Binary files a/docmost/db/base/4/3603 and /dev/null differ diff --git a/docmost/db/base/4/3603_fsm b/docmost/db/base/4/3603_fsm deleted file mode 100644 index c28dd4f..0000000 Binary files a/docmost/db/base/4/3603_fsm and /dev/null differ diff --git a/docmost/db/base/4/3603_vm b/docmost/db/base/4/3603_vm deleted file mode 100644 index 39b0db0..0000000 Binary files a/docmost/db/base/4/3603_vm and /dev/null differ diff --git a/docmost/db/base/4/3604 b/docmost/db/base/4/3604 deleted file mode 100644 index 4efd0c8..0000000 Binary files a/docmost/db/base/4/3604 and /dev/null differ diff --git a/docmost/db/base/4/3605 b/docmost/db/base/4/3605 deleted file mode 100644 index f02a201..0000000 Binary files a/docmost/db/base/4/3605 and /dev/null differ diff --git a/docmost/db/base/4/3606 b/docmost/db/base/4/3606 deleted file mode 100644 index 5d00237..0000000 Binary files a/docmost/db/base/4/3606 and /dev/null differ diff --git a/docmost/db/base/4/3607 b/docmost/db/base/4/3607 deleted file mode 100644 index 3a1af44..0000000 Binary files a/docmost/db/base/4/3607 and /dev/null differ diff --git a/docmost/db/base/4/3608 b/docmost/db/base/4/3608 deleted file mode 100644 index 4333731..0000000 Binary files a/docmost/db/base/4/3608 and /dev/null differ diff --git a/docmost/db/base/4/3609 b/docmost/db/base/4/3609 deleted file mode 100644 index 028b9cb..0000000 Binary files a/docmost/db/base/4/3609 and /dev/null differ diff --git a/docmost/db/base/4/3712 b/docmost/db/base/4/3712 deleted file mode 100644 index ecfd1ac..0000000 Binary files a/docmost/db/base/4/3712 and /dev/null differ diff --git a/docmost/db/base/4/3764 b/docmost/db/base/4/3764 deleted file mode 100644 index 73c5c42..0000000 Binary files a/docmost/db/base/4/3764 and /dev/null differ diff --git a/docmost/db/base/4/3764_fsm b/docmost/db/base/4/3764_fsm deleted file mode 100644 index f64db4d..0000000 Binary files a/docmost/db/base/4/3764_fsm and /dev/null differ diff --git a/docmost/db/base/4/3764_vm b/docmost/db/base/4/3764_vm deleted file mode 100644 index 2433aeb..0000000 Binary files a/docmost/db/base/4/3764_vm and /dev/null differ diff --git a/docmost/db/base/4/3766 b/docmost/db/base/4/3766 deleted file mode 100644 index d2bb654..0000000 Binary files a/docmost/db/base/4/3766 and /dev/null differ diff --git a/docmost/db/base/4/3767 b/docmost/db/base/4/3767 deleted file mode 100644 index 2205e77..0000000 Binary files a/docmost/db/base/4/3767 and /dev/null differ diff --git a/docmost/db/base/4/3997 b/docmost/db/base/4/3997 deleted file mode 100644 index 9ef1f09..0000000 Binary files a/docmost/db/base/4/3997 and /dev/null differ diff --git a/docmost/db/base/4/4143 b/docmost/db/base/4/4143 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/4144 b/docmost/db/base/4/4144 deleted file mode 100644 index de004a0..0000000 Binary files a/docmost/db/base/4/4144 and /dev/null differ diff --git a/docmost/db/base/4/4145 b/docmost/db/base/4/4145 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/4146 b/docmost/db/base/4/4146 deleted file mode 100644 index 83ca124..0000000 Binary files a/docmost/db/base/4/4146 and /dev/null differ diff --git a/docmost/db/base/4/4147 b/docmost/db/base/4/4147 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/4148 b/docmost/db/base/4/4148 deleted file mode 100644 index 850287d..0000000 Binary files a/docmost/db/base/4/4148 and /dev/null differ diff --git a/docmost/db/base/4/4149 b/docmost/db/base/4/4149 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/4150 b/docmost/db/base/4/4150 deleted file mode 100644 index 3746b91..0000000 Binary files a/docmost/db/base/4/4150 and /dev/null differ diff --git a/docmost/db/base/4/4151 b/docmost/db/base/4/4151 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/4152 b/docmost/db/base/4/4152 deleted file mode 100644 index 4f1cdd9..0000000 Binary files a/docmost/db/base/4/4152 and /dev/null differ diff --git a/docmost/db/base/4/4153 b/docmost/db/base/4/4153 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/4154 b/docmost/db/base/4/4154 deleted file mode 100644 index b50bd32..0000000 Binary files a/docmost/db/base/4/4154 and /dev/null differ diff --git a/docmost/db/base/4/4155 b/docmost/db/base/4/4155 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/4156 b/docmost/db/base/4/4156 deleted file mode 100644 index 2ac1bb7..0000000 Binary files a/docmost/db/base/4/4156 and /dev/null differ diff --git a/docmost/db/base/4/4157 b/docmost/db/base/4/4157 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/4158 b/docmost/db/base/4/4158 deleted file mode 100644 index 4210e43..0000000 Binary files a/docmost/db/base/4/4158 and /dev/null differ diff --git a/docmost/db/base/4/4159 b/docmost/db/base/4/4159 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/4160 b/docmost/db/base/4/4160 deleted file mode 100644 index 0d91ef7..0000000 Binary files a/docmost/db/base/4/4160 and /dev/null differ diff --git a/docmost/db/base/4/4163 b/docmost/db/base/4/4163 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/4164 b/docmost/db/base/4/4164 deleted file mode 100644 index 099499b..0000000 Binary files a/docmost/db/base/4/4164 and /dev/null differ diff --git a/docmost/db/base/4/4165 b/docmost/db/base/4/4165 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/4166 b/docmost/db/base/4/4166 deleted file mode 100644 index faa8f27..0000000 Binary files a/docmost/db/base/4/4166 and /dev/null differ diff --git a/docmost/db/base/4/4167 b/docmost/db/base/4/4167 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/4168 b/docmost/db/base/4/4168 deleted file mode 100644 index c4182f2..0000000 Binary files a/docmost/db/base/4/4168 and /dev/null differ diff --git a/docmost/db/base/4/4169 b/docmost/db/base/4/4169 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/4170 b/docmost/db/base/4/4170 deleted file mode 100644 index bab73d9..0000000 Binary files a/docmost/db/base/4/4170 and /dev/null differ diff --git a/docmost/db/base/4/4171 b/docmost/db/base/4/4171 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/4172 b/docmost/db/base/4/4172 deleted file mode 100644 index 2b4fc7b..0000000 Binary files a/docmost/db/base/4/4172 and /dev/null differ diff --git a/docmost/db/base/4/4173 b/docmost/db/base/4/4173 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/4174 b/docmost/db/base/4/4174 deleted file mode 100644 index 6c533c1..0000000 Binary files a/docmost/db/base/4/4174 and /dev/null differ diff --git a/docmost/db/base/4/5002 b/docmost/db/base/4/5002 deleted file mode 100644 index aefa40d..0000000 Binary files a/docmost/db/base/4/5002 and /dev/null differ diff --git a/docmost/db/base/4/548 b/docmost/db/base/4/548 deleted file mode 100644 index d6379eb..0000000 Binary files a/docmost/db/base/4/548 and /dev/null differ diff --git a/docmost/db/base/4/549 b/docmost/db/base/4/549 deleted file mode 100644 index a762ad9..0000000 Binary files a/docmost/db/base/4/549 and /dev/null differ diff --git a/docmost/db/base/4/6102 b/docmost/db/base/4/6102 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/6104 b/docmost/db/base/4/6104 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/6106 b/docmost/db/base/4/6106 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/6110 b/docmost/db/base/4/6110 deleted file mode 100644 index 42e1920..0000000 Binary files a/docmost/db/base/4/6110 and /dev/null differ diff --git a/docmost/db/base/4/6111 b/docmost/db/base/4/6111 deleted file mode 100644 index d012727..0000000 Binary files a/docmost/db/base/4/6111 and /dev/null differ diff --git a/docmost/db/base/4/6112 b/docmost/db/base/4/6112 deleted file mode 100644 index 293367c..0000000 Binary files a/docmost/db/base/4/6112 and /dev/null differ diff --git a/docmost/db/base/4/6113 b/docmost/db/base/4/6113 deleted file mode 100644 index 542f8fa..0000000 Binary files a/docmost/db/base/4/6113 and /dev/null differ diff --git a/docmost/db/base/4/6116 b/docmost/db/base/4/6116 deleted file mode 100644 index 787d5d1..0000000 Binary files a/docmost/db/base/4/6116 and /dev/null differ diff --git a/docmost/db/base/4/6117 b/docmost/db/base/4/6117 deleted file mode 100644 index 2b5656b..0000000 Binary files a/docmost/db/base/4/6117 and /dev/null differ diff --git a/docmost/db/base/4/6175 b/docmost/db/base/4/6175 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/6176 b/docmost/db/base/4/6176 deleted file mode 100644 index caa7faf..0000000 Binary files a/docmost/db/base/4/6176 and /dev/null differ diff --git a/docmost/db/base/4/6228 b/docmost/db/base/4/6228 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/6229 b/docmost/db/base/4/6229 deleted file mode 100644 index e70b603..0000000 Binary files a/docmost/db/base/4/6229 and /dev/null differ diff --git a/docmost/db/base/4/6237 b/docmost/db/base/4/6237 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/6238 b/docmost/db/base/4/6238 deleted file mode 100644 index e7c0e8c..0000000 Binary files a/docmost/db/base/4/6238 and /dev/null differ diff --git a/docmost/db/base/4/6239 b/docmost/db/base/4/6239 deleted file mode 100644 index 6c60b50..0000000 Binary files a/docmost/db/base/4/6239 and /dev/null differ diff --git a/docmost/db/base/4/826 b/docmost/db/base/4/826 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/4/827 b/docmost/db/base/4/827 deleted file mode 100644 index bcaf0a1..0000000 Binary files a/docmost/db/base/4/827 and /dev/null differ diff --git a/docmost/db/base/4/828 b/docmost/db/base/4/828 deleted file mode 100644 index 7aba562..0000000 Binary files a/docmost/db/base/4/828 and /dev/null differ diff --git a/docmost/db/base/4/PG_VERSION b/docmost/db/base/4/PG_VERSION deleted file mode 100644 index b6a7d89..0000000 --- a/docmost/db/base/4/PG_VERSION +++ /dev/null @@ -1 +0,0 @@ -16 diff --git a/docmost/db/base/4/pg_filenode.map b/docmost/db/base/4/pg_filenode.map deleted file mode 100644 index 4fc801a..0000000 Binary files a/docmost/db/base/4/pg_filenode.map and /dev/null differ diff --git a/docmost/db/base/5/112 b/docmost/db/base/5/112 deleted file mode 100644 index 2bfc88c..0000000 Binary files a/docmost/db/base/5/112 and /dev/null differ diff --git a/docmost/db/base/5/113 b/docmost/db/base/5/113 deleted file mode 100644 index c36defa..0000000 Binary files a/docmost/db/base/5/113 and /dev/null differ diff --git a/docmost/db/base/5/1247 b/docmost/db/base/5/1247 deleted file mode 100644 index 8961ed4..0000000 Binary files a/docmost/db/base/5/1247 and /dev/null differ diff --git a/docmost/db/base/5/1247_fsm b/docmost/db/base/5/1247_fsm deleted file mode 100644 index 013faac..0000000 Binary files a/docmost/db/base/5/1247_fsm and /dev/null differ diff --git a/docmost/db/base/5/1247_vm b/docmost/db/base/5/1247_vm deleted file mode 100644 index ace0879..0000000 Binary files a/docmost/db/base/5/1247_vm and /dev/null differ diff --git a/docmost/db/base/5/1249 b/docmost/db/base/5/1249 deleted file mode 100644 index 61834d7..0000000 Binary files a/docmost/db/base/5/1249 and /dev/null differ diff --git a/docmost/db/base/5/1249_fsm b/docmost/db/base/5/1249_fsm deleted file mode 100644 index a538ac8..0000000 Binary files a/docmost/db/base/5/1249_fsm and /dev/null differ diff --git a/docmost/db/base/5/1249_vm b/docmost/db/base/5/1249_vm deleted file mode 100644 index 7e705a3..0000000 Binary files a/docmost/db/base/5/1249_vm and /dev/null differ diff --git a/docmost/db/base/5/1255 b/docmost/db/base/5/1255 deleted file mode 100644 index d9518c1..0000000 Binary files a/docmost/db/base/5/1255 and /dev/null differ diff --git a/docmost/db/base/5/1255_fsm b/docmost/db/base/5/1255_fsm deleted file mode 100644 index 69a5d8f..0000000 Binary files a/docmost/db/base/5/1255_fsm and /dev/null differ diff --git a/docmost/db/base/5/1255_vm b/docmost/db/base/5/1255_vm deleted file mode 100644 index d6a7e34..0000000 Binary files a/docmost/db/base/5/1255_vm and /dev/null differ diff --git a/docmost/db/base/5/1259 b/docmost/db/base/5/1259 deleted file mode 100644 index 6893cc4..0000000 Binary files a/docmost/db/base/5/1259 and /dev/null differ diff --git a/docmost/db/base/5/1259_fsm b/docmost/db/base/5/1259_fsm deleted file mode 100644 index 05d8c51..0000000 Binary files a/docmost/db/base/5/1259_fsm and /dev/null differ diff --git a/docmost/db/base/5/1259_vm b/docmost/db/base/5/1259_vm deleted file mode 100644 index 85cec20..0000000 Binary files a/docmost/db/base/5/1259_vm and /dev/null differ diff --git a/docmost/db/base/5/13457 b/docmost/db/base/5/13457 deleted file mode 100644 index 6954f5d..0000000 Binary files a/docmost/db/base/5/13457 and /dev/null differ diff --git a/docmost/db/base/5/13457_fsm b/docmost/db/base/5/13457_fsm deleted file mode 100644 index 2a80b9a..0000000 Binary files a/docmost/db/base/5/13457_fsm and /dev/null differ diff --git a/docmost/db/base/5/13457_vm b/docmost/db/base/5/13457_vm deleted file mode 100644 index 141e044..0000000 Binary files a/docmost/db/base/5/13457_vm and /dev/null differ diff --git a/docmost/db/base/5/13460 b/docmost/db/base/5/13460 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/13461 b/docmost/db/base/5/13461 deleted file mode 100644 index 17aa1d3..0000000 Binary files a/docmost/db/base/5/13461 and /dev/null differ diff --git a/docmost/db/base/5/13462 b/docmost/db/base/5/13462 deleted file mode 100644 index 2756042..0000000 Binary files a/docmost/db/base/5/13462 and /dev/null differ diff --git a/docmost/db/base/5/13462_fsm b/docmost/db/base/5/13462_fsm deleted file mode 100644 index 70d16ce..0000000 Binary files a/docmost/db/base/5/13462_fsm and /dev/null differ diff --git a/docmost/db/base/5/13462_vm b/docmost/db/base/5/13462_vm deleted file mode 100644 index 5822899..0000000 Binary files a/docmost/db/base/5/13462_vm and /dev/null differ diff --git a/docmost/db/base/5/13465 b/docmost/db/base/5/13465 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/13466 b/docmost/db/base/5/13466 deleted file mode 100644 index b59c5ed..0000000 Binary files a/docmost/db/base/5/13466 and /dev/null differ diff --git a/docmost/db/base/5/13467 b/docmost/db/base/5/13467 deleted file mode 100644 index f7cc503..0000000 Binary files a/docmost/db/base/5/13467 and /dev/null differ diff --git a/docmost/db/base/5/13467_fsm b/docmost/db/base/5/13467_fsm deleted file mode 100644 index 0673ada..0000000 Binary files a/docmost/db/base/5/13467_fsm and /dev/null differ diff --git a/docmost/db/base/5/13467_vm b/docmost/db/base/5/13467_vm deleted file mode 100644 index df84b46..0000000 Binary files a/docmost/db/base/5/13467_vm and /dev/null differ diff --git a/docmost/db/base/5/13470 b/docmost/db/base/5/13470 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/13471 b/docmost/db/base/5/13471 deleted file mode 100644 index 4ddcaa4..0000000 Binary files a/docmost/db/base/5/13471 and /dev/null differ diff --git a/docmost/db/base/5/13472 b/docmost/db/base/5/13472 deleted file mode 100644 index ced8b2f..0000000 Binary files a/docmost/db/base/5/13472 and /dev/null differ diff --git a/docmost/db/base/5/13472_fsm b/docmost/db/base/5/13472_fsm deleted file mode 100644 index a836ddf..0000000 Binary files a/docmost/db/base/5/13472_fsm and /dev/null differ diff --git a/docmost/db/base/5/13472_vm b/docmost/db/base/5/13472_vm deleted file mode 100644 index a3cfd31..0000000 Binary files a/docmost/db/base/5/13472_vm and /dev/null differ diff --git a/docmost/db/base/5/13475 b/docmost/db/base/5/13475 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/13476 b/docmost/db/base/5/13476 deleted file mode 100644 index 5af7a00..0000000 Binary files a/docmost/db/base/5/13476 and /dev/null differ diff --git a/docmost/db/base/5/1417 b/docmost/db/base/5/1417 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/1418 b/docmost/db/base/5/1418 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/174 b/docmost/db/base/5/174 deleted file mode 100644 index fedcb88..0000000 Binary files a/docmost/db/base/5/174 and /dev/null differ diff --git a/docmost/db/base/5/175 b/docmost/db/base/5/175 deleted file mode 100644 index 7ee5b4a..0000000 Binary files a/docmost/db/base/5/175 and /dev/null differ diff --git a/docmost/db/base/5/2187 b/docmost/db/base/5/2187 deleted file mode 100644 index 4bb8bea..0000000 Binary files a/docmost/db/base/5/2187 and /dev/null differ diff --git a/docmost/db/base/5/2224 b/docmost/db/base/5/2224 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/2228 b/docmost/db/base/5/2228 deleted file mode 100644 index 738f259..0000000 Binary files a/docmost/db/base/5/2228 and /dev/null differ diff --git a/docmost/db/base/5/2328 b/docmost/db/base/5/2328 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/2336 b/docmost/db/base/5/2336 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/2337 b/docmost/db/base/5/2337 deleted file mode 100644 index b77e77c..0000000 Binary files a/docmost/db/base/5/2337 and /dev/null differ diff --git a/docmost/db/base/5/2579 b/docmost/db/base/5/2579 deleted file mode 100644 index 0e9f4e6..0000000 Binary files a/docmost/db/base/5/2579 and /dev/null differ diff --git a/docmost/db/base/5/2600 b/docmost/db/base/5/2600 deleted file mode 100644 index d98ee62..0000000 Binary files a/docmost/db/base/5/2600 and /dev/null differ diff --git a/docmost/db/base/5/2600_fsm b/docmost/db/base/5/2600_fsm deleted file mode 100644 index 0938592..0000000 Binary files a/docmost/db/base/5/2600_fsm and /dev/null differ diff --git a/docmost/db/base/5/2600_vm b/docmost/db/base/5/2600_vm deleted file mode 100644 index 2617550..0000000 Binary files a/docmost/db/base/5/2600_vm and /dev/null differ diff --git a/docmost/db/base/5/2601 b/docmost/db/base/5/2601 deleted file mode 100644 index d8001c8..0000000 Binary files a/docmost/db/base/5/2601 and /dev/null differ diff --git a/docmost/db/base/5/2601_fsm b/docmost/db/base/5/2601_fsm deleted file mode 100644 index d388044..0000000 Binary files a/docmost/db/base/5/2601_fsm and /dev/null differ diff --git a/docmost/db/base/5/2601_vm b/docmost/db/base/5/2601_vm deleted file mode 100644 index 1363638..0000000 Binary files a/docmost/db/base/5/2601_vm and /dev/null differ diff --git a/docmost/db/base/5/2602 b/docmost/db/base/5/2602 deleted file mode 100644 index 4a27b0a..0000000 Binary files a/docmost/db/base/5/2602 and /dev/null differ diff --git a/docmost/db/base/5/2602_fsm b/docmost/db/base/5/2602_fsm deleted file mode 100644 index 23170d8..0000000 Binary files a/docmost/db/base/5/2602_fsm and /dev/null differ diff --git a/docmost/db/base/5/2602_vm b/docmost/db/base/5/2602_vm deleted file mode 100644 index 67a627c..0000000 Binary files a/docmost/db/base/5/2602_vm and /dev/null differ diff --git a/docmost/db/base/5/2603 b/docmost/db/base/5/2603 deleted file mode 100644 index d511af5..0000000 Binary files a/docmost/db/base/5/2603 and /dev/null differ diff --git a/docmost/db/base/5/2603_fsm b/docmost/db/base/5/2603_fsm deleted file mode 100644 index 949bd18..0000000 Binary files a/docmost/db/base/5/2603_fsm and /dev/null differ diff --git a/docmost/db/base/5/2603_vm b/docmost/db/base/5/2603_vm deleted file mode 100644 index 2a2b0c3..0000000 Binary files a/docmost/db/base/5/2603_vm and /dev/null differ diff --git a/docmost/db/base/5/2604 b/docmost/db/base/5/2604 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/2605 b/docmost/db/base/5/2605 deleted file mode 100644 index eeaa7ea..0000000 Binary files a/docmost/db/base/5/2605 and /dev/null differ diff --git a/docmost/db/base/5/2605_fsm b/docmost/db/base/5/2605_fsm deleted file mode 100644 index f3b92bf..0000000 Binary files a/docmost/db/base/5/2605_fsm and /dev/null differ diff --git a/docmost/db/base/5/2605_vm b/docmost/db/base/5/2605_vm deleted file mode 100644 index e36e087..0000000 Binary files a/docmost/db/base/5/2605_vm and /dev/null differ diff --git a/docmost/db/base/5/2606 b/docmost/db/base/5/2606 deleted file mode 100644 index 8227445..0000000 Binary files a/docmost/db/base/5/2606 and /dev/null differ diff --git a/docmost/db/base/5/2606_fsm b/docmost/db/base/5/2606_fsm deleted file mode 100644 index 267454e..0000000 Binary files a/docmost/db/base/5/2606_fsm and /dev/null differ diff --git a/docmost/db/base/5/2606_vm b/docmost/db/base/5/2606_vm deleted file mode 100644 index ac7ec8a..0000000 Binary files a/docmost/db/base/5/2606_vm and /dev/null differ diff --git a/docmost/db/base/5/2607 b/docmost/db/base/5/2607 deleted file mode 100644 index bfad49a..0000000 Binary files a/docmost/db/base/5/2607 and /dev/null differ diff --git a/docmost/db/base/5/2607_fsm b/docmost/db/base/5/2607_fsm deleted file mode 100644 index 80ac8b1..0000000 Binary files a/docmost/db/base/5/2607_fsm and /dev/null differ diff --git a/docmost/db/base/5/2607_vm b/docmost/db/base/5/2607_vm deleted file mode 100644 index 316b9cd..0000000 Binary files a/docmost/db/base/5/2607_vm and /dev/null differ diff --git a/docmost/db/base/5/2608 b/docmost/db/base/5/2608 deleted file mode 100644 index 9ec119b..0000000 Binary files a/docmost/db/base/5/2608 and /dev/null differ diff --git a/docmost/db/base/5/2608_fsm b/docmost/db/base/5/2608_fsm deleted file mode 100644 index 95081cd..0000000 Binary files a/docmost/db/base/5/2608_fsm and /dev/null differ diff --git a/docmost/db/base/5/2608_vm b/docmost/db/base/5/2608_vm deleted file mode 100644 index 7381933..0000000 Binary files a/docmost/db/base/5/2608_vm and /dev/null differ diff --git a/docmost/db/base/5/2609 b/docmost/db/base/5/2609 deleted file mode 100644 index 46de400..0000000 Binary files a/docmost/db/base/5/2609 and /dev/null differ diff --git a/docmost/db/base/5/2609_fsm b/docmost/db/base/5/2609_fsm deleted file mode 100644 index 624979d..0000000 Binary files a/docmost/db/base/5/2609_fsm and /dev/null differ diff --git a/docmost/db/base/5/2609_vm b/docmost/db/base/5/2609_vm deleted file mode 100644 index 0b00f10..0000000 Binary files a/docmost/db/base/5/2609_vm and /dev/null differ diff --git a/docmost/db/base/5/2610 b/docmost/db/base/5/2610 deleted file mode 100644 index 22db42a..0000000 Binary files a/docmost/db/base/5/2610 and /dev/null differ diff --git a/docmost/db/base/5/2610_fsm b/docmost/db/base/5/2610_fsm deleted file mode 100644 index ecbcb5f..0000000 Binary files a/docmost/db/base/5/2610_fsm and /dev/null differ diff --git a/docmost/db/base/5/2610_vm b/docmost/db/base/5/2610_vm deleted file mode 100644 index 9eae6da..0000000 Binary files a/docmost/db/base/5/2610_vm and /dev/null differ diff --git a/docmost/db/base/5/2611 b/docmost/db/base/5/2611 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/2612 b/docmost/db/base/5/2612 deleted file mode 100644 index 8c61a98..0000000 Binary files a/docmost/db/base/5/2612 and /dev/null differ diff --git a/docmost/db/base/5/2612_fsm b/docmost/db/base/5/2612_fsm deleted file mode 100644 index 877976a..0000000 Binary files a/docmost/db/base/5/2612_fsm and /dev/null differ diff --git a/docmost/db/base/5/2612_vm b/docmost/db/base/5/2612_vm deleted file mode 100644 index 005be6f..0000000 Binary files a/docmost/db/base/5/2612_vm and /dev/null differ diff --git a/docmost/db/base/5/2613 b/docmost/db/base/5/2613 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/2615 b/docmost/db/base/5/2615 deleted file mode 100644 index 35868fc..0000000 Binary files a/docmost/db/base/5/2615 and /dev/null differ diff --git a/docmost/db/base/5/2615_fsm b/docmost/db/base/5/2615_fsm deleted file mode 100644 index d041693..0000000 Binary files a/docmost/db/base/5/2615_fsm and /dev/null differ diff --git a/docmost/db/base/5/2615_vm b/docmost/db/base/5/2615_vm deleted file mode 100644 index 22233fd..0000000 Binary files a/docmost/db/base/5/2615_vm and /dev/null differ diff --git a/docmost/db/base/5/2616 b/docmost/db/base/5/2616 deleted file mode 100644 index 0d60d79..0000000 Binary files a/docmost/db/base/5/2616 and /dev/null differ diff --git a/docmost/db/base/5/2616_fsm b/docmost/db/base/5/2616_fsm deleted file mode 100644 index cb924c9..0000000 Binary files a/docmost/db/base/5/2616_fsm and /dev/null differ diff --git a/docmost/db/base/5/2616_vm b/docmost/db/base/5/2616_vm deleted file mode 100644 index 21787ae..0000000 Binary files a/docmost/db/base/5/2616_vm and /dev/null differ diff --git a/docmost/db/base/5/2617 b/docmost/db/base/5/2617 deleted file mode 100644 index bcdfc18..0000000 Binary files a/docmost/db/base/5/2617 and /dev/null differ diff --git a/docmost/db/base/5/2617_fsm b/docmost/db/base/5/2617_fsm deleted file mode 100644 index 29d6066..0000000 Binary files a/docmost/db/base/5/2617_fsm and /dev/null differ diff --git a/docmost/db/base/5/2617_vm b/docmost/db/base/5/2617_vm deleted file mode 100644 index b52f77d..0000000 Binary files a/docmost/db/base/5/2617_vm and /dev/null differ diff --git a/docmost/db/base/5/2618 b/docmost/db/base/5/2618 deleted file mode 100644 index 26b756c..0000000 Binary files a/docmost/db/base/5/2618 and /dev/null differ diff --git a/docmost/db/base/5/2618_fsm b/docmost/db/base/5/2618_fsm deleted file mode 100644 index bcee926..0000000 Binary files a/docmost/db/base/5/2618_fsm and /dev/null differ diff --git a/docmost/db/base/5/2618_vm b/docmost/db/base/5/2618_vm deleted file mode 100644 index 3ef7d24..0000000 Binary files a/docmost/db/base/5/2618_vm and /dev/null differ diff --git a/docmost/db/base/5/2619 b/docmost/db/base/5/2619 deleted file mode 100644 index a639de9..0000000 Binary files a/docmost/db/base/5/2619 and /dev/null differ diff --git a/docmost/db/base/5/2619_fsm b/docmost/db/base/5/2619_fsm deleted file mode 100644 index d1e1152..0000000 Binary files a/docmost/db/base/5/2619_fsm and /dev/null differ diff --git a/docmost/db/base/5/2619_vm b/docmost/db/base/5/2619_vm deleted file mode 100644 index 384c5a8..0000000 Binary files a/docmost/db/base/5/2619_vm and /dev/null differ diff --git a/docmost/db/base/5/2620 b/docmost/db/base/5/2620 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/2650 b/docmost/db/base/5/2650 deleted file mode 100644 index 6e3f9d8..0000000 Binary files a/docmost/db/base/5/2650 and /dev/null differ diff --git a/docmost/db/base/5/2651 b/docmost/db/base/5/2651 deleted file mode 100644 index 122f1e9..0000000 Binary files a/docmost/db/base/5/2651 and /dev/null differ diff --git a/docmost/db/base/5/2652 b/docmost/db/base/5/2652 deleted file mode 100644 index 0893403..0000000 Binary files a/docmost/db/base/5/2652 and /dev/null differ diff --git a/docmost/db/base/5/2653 b/docmost/db/base/5/2653 deleted file mode 100644 index 7c90667..0000000 Binary files a/docmost/db/base/5/2653 and /dev/null differ diff --git a/docmost/db/base/5/2654 b/docmost/db/base/5/2654 deleted file mode 100644 index 25acc45..0000000 Binary files a/docmost/db/base/5/2654 and /dev/null differ diff --git a/docmost/db/base/5/2655 b/docmost/db/base/5/2655 deleted file mode 100644 index d7b8b42..0000000 Binary files a/docmost/db/base/5/2655 and /dev/null differ diff --git a/docmost/db/base/5/2656 b/docmost/db/base/5/2656 deleted file mode 100644 index 9eb8cff..0000000 Binary files a/docmost/db/base/5/2656 and /dev/null differ diff --git a/docmost/db/base/5/2657 b/docmost/db/base/5/2657 deleted file mode 100644 index bc6342c..0000000 Binary files a/docmost/db/base/5/2657 and /dev/null differ diff --git a/docmost/db/base/5/2658 b/docmost/db/base/5/2658 deleted file mode 100644 index 0a5baaf..0000000 Binary files a/docmost/db/base/5/2658 and /dev/null differ diff --git a/docmost/db/base/5/2659 b/docmost/db/base/5/2659 deleted file mode 100644 index 286b45f..0000000 Binary files a/docmost/db/base/5/2659 and /dev/null differ diff --git a/docmost/db/base/5/2660 b/docmost/db/base/5/2660 deleted file mode 100644 index 6ac2d3f..0000000 Binary files a/docmost/db/base/5/2660 and /dev/null differ diff --git a/docmost/db/base/5/2661 b/docmost/db/base/5/2661 deleted file mode 100644 index ce3bafa..0000000 Binary files a/docmost/db/base/5/2661 and /dev/null differ diff --git a/docmost/db/base/5/2662 b/docmost/db/base/5/2662 deleted file mode 100644 index 2980c1d..0000000 Binary files a/docmost/db/base/5/2662 and /dev/null differ diff --git a/docmost/db/base/5/2663 b/docmost/db/base/5/2663 deleted file mode 100644 index 3ad607c..0000000 Binary files a/docmost/db/base/5/2663 and /dev/null differ diff --git a/docmost/db/base/5/2664 b/docmost/db/base/5/2664 deleted file mode 100644 index 3b9e870..0000000 Binary files a/docmost/db/base/5/2664 and /dev/null differ diff --git a/docmost/db/base/5/2665 b/docmost/db/base/5/2665 deleted file mode 100644 index c87fc1b..0000000 Binary files a/docmost/db/base/5/2665 and /dev/null differ diff --git a/docmost/db/base/5/2666 b/docmost/db/base/5/2666 deleted file mode 100644 index 4816f00..0000000 Binary files a/docmost/db/base/5/2666 and /dev/null differ diff --git a/docmost/db/base/5/2667 b/docmost/db/base/5/2667 deleted file mode 100644 index 127592d..0000000 Binary files a/docmost/db/base/5/2667 and /dev/null differ diff --git a/docmost/db/base/5/2668 b/docmost/db/base/5/2668 deleted file mode 100644 index 34ad3c5..0000000 Binary files a/docmost/db/base/5/2668 and /dev/null differ diff --git a/docmost/db/base/5/2669 b/docmost/db/base/5/2669 deleted file mode 100644 index c8918e8..0000000 Binary files a/docmost/db/base/5/2669 and /dev/null differ diff --git a/docmost/db/base/5/2670 b/docmost/db/base/5/2670 deleted file mode 100644 index 36bf21b..0000000 Binary files a/docmost/db/base/5/2670 and /dev/null differ diff --git a/docmost/db/base/5/2673 b/docmost/db/base/5/2673 deleted file mode 100644 index c5d12f7..0000000 Binary files a/docmost/db/base/5/2673 and /dev/null differ diff --git a/docmost/db/base/5/2674 b/docmost/db/base/5/2674 deleted file mode 100644 index 81c1420..0000000 Binary files a/docmost/db/base/5/2674 and /dev/null differ diff --git a/docmost/db/base/5/2675 b/docmost/db/base/5/2675 deleted file mode 100644 index d942fbf..0000000 Binary files a/docmost/db/base/5/2675 and /dev/null differ diff --git a/docmost/db/base/5/2678 b/docmost/db/base/5/2678 deleted file mode 100644 index f40d4e8..0000000 Binary files a/docmost/db/base/5/2678 and /dev/null differ diff --git a/docmost/db/base/5/2679 b/docmost/db/base/5/2679 deleted file mode 100644 index 51f60db..0000000 Binary files a/docmost/db/base/5/2679 and /dev/null differ diff --git a/docmost/db/base/5/2680 b/docmost/db/base/5/2680 deleted file mode 100644 index 0eb18c7..0000000 Binary files a/docmost/db/base/5/2680 and /dev/null differ diff --git a/docmost/db/base/5/2681 b/docmost/db/base/5/2681 deleted file mode 100644 index 0519f74..0000000 Binary files a/docmost/db/base/5/2681 and /dev/null differ diff --git a/docmost/db/base/5/2682 b/docmost/db/base/5/2682 deleted file mode 100644 index 86664ca..0000000 Binary files a/docmost/db/base/5/2682 and /dev/null differ diff --git a/docmost/db/base/5/2683 b/docmost/db/base/5/2683 deleted file mode 100644 index 0bf1a55..0000000 Binary files a/docmost/db/base/5/2683 and /dev/null differ diff --git a/docmost/db/base/5/2684 b/docmost/db/base/5/2684 deleted file mode 100644 index 7919656..0000000 Binary files a/docmost/db/base/5/2684 and /dev/null differ diff --git a/docmost/db/base/5/2685 b/docmost/db/base/5/2685 deleted file mode 100644 index 33818d1..0000000 Binary files a/docmost/db/base/5/2685 and /dev/null differ diff --git a/docmost/db/base/5/2686 b/docmost/db/base/5/2686 deleted file mode 100644 index 3bd1a5b..0000000 Binary files a/docmost/db/base/5/2686 and /dev/null differ diff --git a/docmost/db/base/5/2687 b/docmost/db/base/5/2687 deleted file mode 100644 index 34e06cc..0000000 Binary files a/docmost/db/base/5/2687 and /dev/null differ diff --git a/docmost/db/base/5/2688 b/docmost/db/base/5/2688 deleted file mode 100644 index 1d184b4..0000000 Binary files a/docmost/db/base/5/2688 and /dev/null differ diff --git a/docmost/db/base/5/2689 b/docmost/db/base/5/2689 deleted file mode 100644 index 7999fe5..0000000 Binary files a/docmost/db/base/5/2689 and /dev/null differ diff --git a/docmost/db/base/5/2690 b/docmost/db/base/5/2690 deleted file mode 100644 index f6022a5..0000000 Binary files a/docmost/db/base/5/2690 and /dev/null differ diff --git a/docmost/db/base/5/2691 b/docmost/db/base/5/2691 deleted file mode 100644 index 14eaaa0..0000000 Binary files a/docmost/db/base/5/2691 and /dev/null differ diff --git a/docmost/db/base/5/2692 b/docmost/db/base/5/2692 deleted file mode 100644 index df5b102..0000000 Binary files a/docmost/db/base/5/2692 and /dev/null differ diff --git a/docmost/db/base/5/2693 b/docmost/db/base/5/2693 deleted file mode 100644 index 5962231..0000000 Binary files a/docmost/db/base/5/2693 and /dev/null differ diff --git a/docmost/db/base/5/2696 b/docmost/db/base/5/2696 deleted file mode 100644 index f053f57..0000000 Binary files a/docmost/db/base/5/2696 and /dev/null differ diff --git a/docmost/db/base/5/2699 b/docmost/db/base/5/2699 deleted file mode 100644 index 104781d..0000000 Binary files a/docmost/db/base/5/2699 and /dev/null differ diff --git a/docmost/db/base/5/2701 b/docmost/db/base/5/2701 deleted file mode 100644 index 66bc81a..0000000 Binary files a/docmost/db/base/5/2701 and /dev/null differ diff --git a/docmost/db/base/5/2702 b/docmost/db/base/5/2702 deleted file mode 100644 index dbab200..0000000 Binary files a/docmost/db/base/5/2702 and /dev/null differ diff --git a/docmost/db/base/5/2703 b/docmost/db/base/5/2703 deleted file mode 100644 index 4382396..0000000 Binary files a/docmost/db/base/5/2703 and /dev/null differ diff --git a/docmost/db/base/5/2704 b/docmost/db/base/5/2704 deleted file mode 100644 index 8957a5a..0000000 Binary files a/docmost/db/base/5/2704 and /dev/null differ diff --git a/docmost/db/base/5/2753 b/docmost/db/base/5/2753 deleted file mode 100644 index 3c16dff..0000000 Binary files a/docmost/db/base/5/2753 and /dev/null differ diff --git a/docmost/db/base/5/2753_fsm b/docmost/db/base/5/2753_fsm deleted file mode 100644 index 642bce3..0000000 Binary files a/docmost/db/base/5/2753_fsm and /dev/null differ diff --git a/docmost/db/base/5/2753_vm b/docmost/db/base/5/2753_vm deleted file mode 100644 index 6bf3744..0000000 Binary files a/docmost/db/base/5/2753_vm and /dev/null differ diff --git a/docmost/db/base/5/2754 b/docmost/db/base/5/2754 deleted file mode 100644 index de7dd55..0000000 Binary files a/docmost/db/base/5/2754 and /dev/null differ diff --git a/docmost/db/base/5/2755 b/docmost/db/base/5/2755 deleted file mode 100644 index ccf2508..0000000 Binary files a/docmost/db/base/5/2755 and /dev/null differ diff --git a/docmost/db/base/5/2756 b/docmost/db/base/5/2756 deleted file mode 100644 index eea67e8..0000000 Binary files a/docmost/db/base/5/2756 and /dev/null differ diff --git a/docmost/db/base/5/2757 b/docmost/db/base/5/2757 deleted file mode 100644 index 1d27df5..0000000 Binary files a/docmost/db/base/5/2757 and /dev/null differ diff --git a/docmost/db/base/5/2830 b/docmost/db/base/5/2830 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/2831 b/docmost/db/base/5/2831 deleted file mode 100644 index 0f0513e..0000000 Binary files a/docmost/db/base/5/2831 and /dev/null differ diff --git a/docmost/db/base/5/2832 b/docmost/db/base/5/2832 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/2833 b/docmost/db/base/5/2833 deleted file mode 100644 index f0e78fc..0000000 Binary files a/docmost/db/base/5/2833 and /dev/null differ diff --git a/docmost/db/base/5/2834 b/docmost/db/base/5/2834 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/2835 b/docmost/db/base/5/2835 deleted file mode 100644 index 361e642..0000000 Binary files a/docmost/db/base/5/2835 and /dev/null differ diff --git a/docmost/db/base/5/2836 b/docmost/db/base/5/2836 deleted file mode 100644 index 229706f..0000000 Binary files a/docmost/db/base/5/2836 and /dev/null differ diff --git a/docmost/db/base/5/2836_fsm b/docmost/db/base/5/2836_fsm deleted file mode 100644 index 06e1e26..0000000 Binary files a/docmost/db/base/5/2836_fsm and /dev/null differ diff --git a/docmost/db/base/5/2836_vm b/docmost/db/base/5/2836_vm deleted file mode 100644 index 6d3e02d..0000000 Binary files a/docmost/db/base/5/2836_vm and /dev/null differ diff --git a/docmost/db/base/5/2837 b/docmost/db/base/5/2837 deleted file mode 100644 index d292c70..0000000 Binary files a/docmost/db/base/5/2837 and /dev/null differ diff --git a/docmost/db/base/5/2838 b/docmost/db/base/5/2838 deleted file mode 100644 index 9f32243..0000000 Binary files a/docmost/db/base/5/2838 and /dev/null differ diff --git a/docmost/db/base/5/2838_fsm b/docmost/db/base/5/2838_fsm deleted file mode 100644 index 5b51a82..0000000 Binary files a/docmost/db/base/5/2838_fsm and /dev/null differ diff --git a/docmost/db/base/5/2838_vm b/docmost/db/base/5/2838_vm deleted file mode 100644 index 2eb6d0b..0000000 Binary files a/docmost/db/base/5/2838_vm and /dev/null differ diff --git a/docmost/db/base/5/2839 b/docmost/db/base/5/2839 deleted file mode 100644 index 06d8ae7..0000000 Binary files a/docmost/db/base/5/2839 and /dev/null differ diff --git a/docmost/db/base/5/2840 b/docmost/db/base/5/2840 deleted file mode 100644 index 220abdf..0000000 Binary files a/docmost/db/base/5/2840 and /dev/null differ diff --git a/docmost/db/base/5/2840_fsm b/docmost/db/base/5/2840_fsm deleted file mode 100644 index a454fb0..0000000 Binary files a/docmost/db/base/5/2840_fsm and /dev/null differ diff --git a/docmost/db/base/5/2840_vm b/docmost/db/base/5/2840_vm deleted file mode 100644 index 9493ac1..0000000 Binary files a/docmost/db/base/5/2840_vm and /dev/null differ diff --git a/docmost/db/base/5/2841 b/docmost/db/base/5/2841 deleted file mode 100644 index 0b53423..0000000 Binary files a/docmost/db/base/5/2841 and /dev/null differ diff --git a/docmost/db/base/5/2995 b/docmost/db/base/5/2995 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/2996 b/docmost/db/base/5/2996 deleted file mode 100644 index 9071dbe..0000000 Binary files a/docmost/db/base/5/2996 and /dev/null differ diff --git a/docmost/db/base/5/3079 b/docmost/db/base/5/3079 deleted file mode 100644 index 9b6e94c..0000000 Binary files a/docmost/db/base/5/3079 and /dev/null differ diff --git a/docmost/db/base/5/3079_fsm b/docmost/db/base/5/3079_fsm deleted file mode 100644 index 7732d22..0000000 Binary files a/docmost/db/base/5/3079_fsm and /dev/null differ diff --git a/docmost/db/base/5/3079_vm b/docmost/db/base/5/3079_vm deleted file mode 100644 index 22a0762..0000000 Binary files a/docmost/db/base/5/3079_vm and /dev/null differ diff --git a/docmost/db/base/5/3080 b/docmost/db/base/5/3080 deleted file mode 100644 index 3f77362..0000000 Binary files a/docmost/db/base/5/3080 and /dev/null differ diff --git a/docmost/db/base/5/3081 b/docmost/db/base/5/3081 deleted file mode 100644 index 9b5489e..0000000 Binary files a/docmost/db/base/5/3081 and /dev/null differ diff --git a/docmost/db/base/5/3085 b/docmost/db/base/5/3085 deleted file mode 100644 index 62921de..0000000 Binary files a/docmost/db/base/5/3085 and /dev/null differ diff --git a/docmost/db/base/5/3118 b/docmost/db/base/5/3118 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/3119 b/docmost/db/base/5/3119 deleted file mode 100644 index 8524de7..0000000 Binary files a/docmost/db/base/5/3119 and /dev/null differ diff --git a/docmost/db/base/5/3164 b/docmost/db/base/5/3164 deleted file mode 100644 index 81600cf..0000000 Binary files a/docmost/db/base/5/3164 and /dev/null differ diff --git a/docmost/db/base/5/3256 b/docmost/db/base/5/3256 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/3257 b/docmost/db/base/5/3257 deleted file mode 100644 index 6f325ab..0000000 Binary files a/docmost/db/base/5/3257 and /dev/null differ diff --git a/docmost/db/base/5/3258 b/docmost/db/base/5/3258 deleted file mode 100644 index 10c3c94..0000000 Binary files a/docmost/db/base/5/3258 and /dev/null differ diff --git a/docmost/db/base/5/3350 b/docmost/db/base/5/3350 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/3351 b/docmost/db/base/5/3351 deleted file mode 100644 index 2bfef7f..0000000 Binary files a/docmost/db/base/5/3351 and /dev/null differ diff --git a/docmost/db/base/5/3379 b/docmost/db/base/5/3379 deleted file mode 100644 index d1e70d4..0000000 Binary files a/docmost/db/base/5/3379 and /dev/null differ diff --git a/docmost/db/base/5/3380 b/docmost/db/base/5/3380 deleted file mode 100644 index 9830667..0000000 Binary files a/docmost/db/base/5/3380 and /dev/null differ diff --git a/docmost/db/base/5/3381 b/docmost/db/base/5/3381 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/3394 b/docmost/db/base/5/3394 deleted file mode 100644 index c6381c5..0000000 Binary files a/docmost/db/base/5/3394 and /dev/null differ diff --git a/docmost/db/base/5/3394_fsm b/docmost/db/base/5/3394_fsm deleted file mode 100644 index 38ac5f8..0000000 Binary files a/docmost/db/base/5/3394_fsm and /dev/null differ diff --git a/docmost/db/base/5/3394_vm b/docmost/db/base/5/3394_vm deleted file mode 100644 index 1047124..0000000 Binary files a/docmost/db/base/5/3394_vm and /dev/null differ diff --git a/docmost/db/base/5/3395 b/docmost/db/base/5/3395 deleted file mode 100644 index a319d6a..0000000 Binary files a/docmost/db/base/5/3395 and /dev/null differ diff --git a/docmost/db/base/5/3429 b/docmost/db/base/5/3429 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/3430 b/docmost/db/base/5/3430 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/3431 b/docmost/db/base/5/3431 deleted file mode 100644 index 872ecbe..0000000 Binary files a/docmost/db/base/5/3431 and /dev/null differ diff --git a/docmost/db/base/5/3433 b/docmost/db/base/5/3433 deleted file mode 100644 index c114108..0000000 Binary files a/docmost/db/base/5/3433 and /dev/null differ diff --git a/docmost/db/base/5/3439 b/docmost/db/base/5/3439 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/3440 b/docmost/db/base/5/3440 deleted file mode 100644 index de56c84..0000000 Binary files a/docmost/db/base/5/3440 and /dev/null differ diff --git a/docmost/db/base/5/3455 b/docmost/db/base/5/3455 deleted file mode 100644 index ace32e7..0000000 Binary files a/docmost/db/base/5/3455 and /dev/null differ diff --git a/docmost/db/base/5/3456 b/docmost/db/base/5/3456 deleted file mode 100644 index 26e43c3..0000000 Binary files a/docmost/db/base/5/3456 and /dev/null differ diff --git a/docmost/db/base/5/3456_fsm b/docmost/db/base/5/3456_fsm deleted file mode 100644 index 2823c77..0000000 Binary files a/docmost/db/base/5/3456_fsm and /dev/null differ diff --git a/docmost/db/base/5/3456_vm b/docmost/db/base/5/3456_vm deleted file mode 100644 index 9341825..0000000 Binary files a/docmost/db/base/5/3456_vm and /dev/null differ diff --git a/docmost/db/base/5/3466 b/docmost/db/base/5/3466 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/3467 b/docmost/db/base/5/3467 deleted file mode 100644 index 5b378cb..0000000 Binary files a/docmost/db/base/5/3467 and /dev/null differ diff --git a/docmost/db/base/5/3468 b/docmost/db/base/5/3468 deleted file mode 100644 index ef2294a..0000000 Binary files a/docmost/db/base/5/3468 and /dev/null differ diff --git a/docmost/db/base/5/3501 b/docmost/db/base/5/3501 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/3502 b/docmost/db/base/5/3502 deleted file mode 100644 index 9b7eaca..0000000 Binary files a/docmost/db/base/5/3502 and /dev/null differ diff --git a/docmost/db/base/5/3503 b/docmost/db/base/5/3503 deleted file mode 100644 index 1601fe2..0000000 Binary files a/docmost/db/base/5/3503 and /dev/null differ diff --git a/docmost/db/base/5/3534 b/docmost/db/base/5/3534 deleted file mode 100644 index 0d5583a..0000000 Binary files a/docmost/db/base/5/3534 and /dev/null differ diff --git a/docmost/db/base/5/3541 b/docmost/db/base/5/3541 deleted file mode 100644 index 40869ad..0000000 Binary files a/docmost/db/base/5/3541 and /dev/null differ diff --git a/docmost/db/base/5/3541_fsm b/docmost/db/base/5/3541_fsm deleted file mode 100644 index a3a2de4..0000000 Binary files a/docmost/db/base/5/3541_fsm and /dev/null differ diff --git a/docmost/db/base/5/3541_vm b/docmost/db/base/5/3541_vm deleted file mode 100644 index 7e25dcf..0000000 Binary files a/docmost/db/base/5/3541_vm and /dev/null differ diff --git a/docmost/db/base/5/3542 b/docmost/db/base/5/3542 deleted file mode 100644 index ced0066..0000000 Binary files a/docmost/db/base/5/3542 and /dev/null differ diff --git a/docmost/db/base/5/3574 b/docmost/db/base/5/3574 deleted file mode 100644 index b026df1..0000000 Binary files a/docmost/db/base/5/3574 and /dev/null differ diff --git a/docmost/db/base/5/3575 b/docmost/db/base/5/3575 deleted file mode 100644 index bdec532..0000000 Binary files a/docmost/db/base/5/3575 and /dev/null differ diff --git a/docmost/db/base/5/3576 b/docmost/db/base/5/3576 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/3596 b/docmost/db/base/5/3596 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/3597 b/docmost/db/base/5/3597 deleted file mode 100644 index 6947306..0000000 Binary files a/docmost/db/base/5/3597 and /dev/null differ diff --git a/docmost/db/base/5/3598 b/docmost/db/base/5/3598 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/3599 b/docmost/db/base/5/3599 deleted file mode 100644 index 90bad73..0000000 Binary files a/docmost/db/base/5/3599 and /dev/null differ diff --git a/docmost/db/base/5/3600 b/docmost/db/base/5/3600 deleted file mode 100644 index aa8d56a..0000000 Binary files a/docmost/db/base/5/3600 and /dev/null differ diff --git a/docmost/db/base/5/3600_fsm b/docmost/db/base/5/3600_fsm deleted file mode 100644 index cebec19..0000000 Binary files a/docmost/db/base/5/3600_fsm and /dev/null differ diff --git a/docmost/db/base/5/3600_vm b/docmost/db/base/5/3600_vm deleted file mode 100644 index 9331bd3..0000000 Binary files a/docmost/db/base/5/3600_vm and /dev/null differ diff --git a/docmost/db/base/5/3601 b/docmost/db/base/5/3601 deleted file mode 100644 index 04c846e..0000000 Binary files a/docmost/db/base/5/3601 and /dev/null differ diff --git a/docmost/db/base/5/3601_fsm b/docmost/db/base/5/3601_fsm deleted file mode 100644 index 7732d22..0000000 Binary files a/docmost/db/base/5/3601_fsm and /dev/null differ diff --git a/docmost/db/base/5/3601_vm b/docmost/db/base/5/3601_vm deleted file mode 100644 index 90ff664..0000000 Binary files a/docmost/db/base/5/3601_vm and /dev/null differ diff --git a/docmost/db/base/5/3602 b/docmost/db/base/5/3602 deleted file mode 100644 index 2038ed7..0000000 Binary files a/docmost/db/base/5/3602 and /dev/null differ diff --git a/docmost/db/base/5/3602_fsm b/docmost/db/base/5/3602_fsm deleted file mode 100644 index d7897de..0000000 Binary files a/docmost/db/base/5/3602_fsm and /dev/null differ diff --git a/docmost/db/base/5/3602_vm b/docmost/db/base/5/3602_vm deleted file mode 100644 index f1ea290..0000000 Binary files a/docmost/db/base/5/3602_vm and /dev/null differ diff --git a/docmost/db/base/5/3603 b/docmost/db/base/5/3603 deleted file mode 100644 index ba184af..0000000 Binary files a/docmost/db/base/5/3603 and /dev/null differ diff --git a/docmost/db/base/5/3603_fsm b/docmost/db/base/5/3603_fsm deleted file mode 100644 index c28dd4f..0000000 Binary files a/docmost/db/base/5/3603_fsm and /dev/null differ diff --git a/docmost/db/base/5/3603_vm b/docmost/db/base/5/3603_vm deleted file mode 100644 index 39b0db0..0000000 Binary files a/docmost/db/base/5/3603_vm and /dev/null differ diff --git a/docmost/db/base/5/3604 b/docmost/db/base/5/3604 deleted file mode 100644 index 4efd0c8..0000000 Binary files a/docmost/db/base/5/3604 and /dev/null differ diff --git a/docmost/db/base/5/3605 b/docmost/db/base/5/3605 deleted file mode 100644 index f02a201..0000000 Binary files a/docmost/db/base/5/3605 and /dev/null differ diff --git a/docmost/db/base/5/3606 b/docmost/db/base/5/3606 deleted file mode 100644 index 5d00237..0000000 Binary files a/docmost/db/base/5/3606 and /dev/null differ diff --git a/docmost/db/base/5/3607 b/docmost/db/base/5/3607 deleted file mode 100644 index 3a1af44..0000000 Binary files a/docmost/db/base/5/3607 and /dev/null differ diff --git a/docmost/db/base/5/3608 b/docmost/db/base/5/3608 deleted file mode 100644 index 4333731..0000000 Binary files a/docmost/db/base/5/3608 and /dev/null differ diff --git a/docmost/db/base/5/3609 b/docmost/db/base/5/3609 deleted file mode 100644 index 028b9cb..0000000 Binary files a/docmost/db/base/5/3609 and /dev/null differ diff --git a/docmost/db/base/5/3712 b/docmost/db/base/5/3712 deleted file mode 100644 index ecfd1ac..0000000 Binary files a/docmost/db/base/5/3712 and /dev/null differ diff --git a/docmost/db/base/5/3764 b/docmost/db/base/5/3764 deleted file mode 100644 index 73c5c42..0000000 Binary files a/docmost/db/base/5/3764 and /dev/null differ diff --git a/docmost/db/base/5/3764_fsm b/docmost/db/base/5/3764_fsm deleted file mode 100644 index f64db4d..0000000 Binary files a/docmost/db/base/5/3764_fsm and /dev/null differ diff --git a/docmost/db/base/5/3764_vm b/docmost/db/base/5/3764_vm deleted file mode 100644 index 2433aeb..0000000 Binary files a/docmost/db/base/5/3764_vm and /dev/null differ diff --git a/docmost/db/base/5/3766 b/docmost/db/base/5/3766 deleted file mode 100644 index d2bb654..0000000 Binary files a/docmost/db/base/5/3766 and /dev/null differ diff --git a/docmost/db/base/5/3767 b/docmost/db/base/5/3767 deleted file mode 100644 index 2205e77..0000000 Binary files a/docmost/db/base/5/3767 and /dev/null differ diff --git a/docmost/db/base/5/3997 b/docmost/db/base/5/3997 deleted file mode 100644 index 9ef1f09..0000000 Binary files a/docmost/db/base/5/3997 and /dev/null differ diff --git a/docmost/db/base/5/4143 b/docmost/db/base/5/4143 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/4144 b/docmost/db/base/5/4144 deleted file mode 100644 index de004a0..0000000 Binary files a/docmost/db/base/5/4144 and /dev/null differ diff --git a/docmost/db/base/5/4145 b/docmost/db/base/5/4145 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/4146 b/docmost/db/base/5/4146 deleted file mode 100644 index 83ca124..0000000 Binary files a/docmost/db/base/5/4146 and /dev/null differ diff --git a/docmost/db/base/5/4147 b/docmost/db/base/5/4147 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/4148 b/docmost/db/base/5/4148 deleted file mode 100644 index 850287d..0000000 Binary files a/docmost/db/base/5/4148 and /dev/null differ diff --git a/docmost/db/base/5/4149 b/docmost/db/base/5/4149 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/4150 b/docmost/db/base/5/4150 deleted file mode 100644 index 3746b91..0000000 Binary files a/docmost/db/base/5/4150 and /dev/null differ diff --git a/docmost/db/base/5/4151 b/docmost/db/base/5/4151 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/4152 b/docmost/db/base/5/4152 deleted file mode 100644 index 4f1cdd9..0000000 Binary files a/docmost/db/base/5/4152 and /dev/null differ diff --git a/docmost/db/base/5/4153 b/docmost/db/base/5/4153 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/4154 b/docmost/db/base/5/4154 deleted file mode 100644 index b50bd32..0000000 Binary files a/docmost/db/base/5/4154 and /dev/null differ diff --git a/docmost/db/base/5/4155 b/docmost/db/base/5/4155 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/4156 b/docmost/db/base/5/4156 deleted file mode 100644 index 2ac1bb7..0000000 Binary files a/docmost/db/base/5/4156 and /dev/null differ diff --git a/docmost/db/base/5/4157 b/docmost/db/base/5/4157 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/4158 b/docmost/db/base/5/4158 deleted file mode 100644 index 4210e43..0000000 Binary files a/docmost/db/base/5/4158 and /dev/null differ diff --git a/docmost/db/base/5/4159 b/docmost/db/base/5/4159 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/4160 b/docmost/db/base/5/4160 deleted file mode 100644 index 0d91ef7..0000000 Binary files a/docmost/db/base/5/4160 and /dev/null differ diff --git a/docmost/db/base/5/4163 b/docmost/db/base/5/4163 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/4164 b/docmost/db/base/5/4164 deleted file mode 100644 index 099499b..0000000 Binary files a/docmost/db/base/5/4164 and /dev/null differ diff --git a/docmost/db/base/5/4165 b/docmost/db/base/5/4165 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/4166 b/docmost/db/base/5/4166 deleted file mode 100644 index faa8f27..0000000 Binary files a/docmost/db/base/5/4166 and /dev/null differ diff --git a/docmost/db/base/5/4167 b/docmost/db/base/5/4167 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/4168 b/docmost/db/base/5/4168 deleted file mode 100644 index c4182f2..0000000 Binary files a/docmost/db/base/5/4168 and /dev/null differ diff --git a/docmost/db/base/5/4169 b/docmost/db/base/5/4169 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/4170 b/docmost/db/base/5/4170 deleted file mode 100644 index bab73d9..0000000 Binary files a/docmost/db/base/5/4170 and /dev/null differ diff --git a/docmost/db/base/5/4171 b/docmost/db/base/5/4171 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/4172 b/docmost/db/base/5/4172 deleted file mode 100644 index 2b4fc7b..0000000 Binary files a/docmost/db/base/5/4172 and /dev/null differ diff --git a/docmost/db/base/5/4173 b/docmost/db/base/5/4173 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/4174 b/docmost/db/base/5/4174 deleted file mode 100644 index 6c533c1..0000000 Binary files a/docmost/db/base/5/4174 and /dev/null differ diff --git a/docmost/db/base/5/5002 b/docmost/db/base/5/5002 deleted file mode 100644 index aefa40d..0000000 Binary files a/docmost/db/base/5/5002 and /dev/null differ diff --git a/docmost/db/base/5/548 b/docmost/db/base/5/548 deleted file mode 100644 index d6379eb..0000000 Binary files a/docmost/db/base/5/548 and /dev/null differ diff --git a/docmost/db/base/5/549 b/docmost/db/base/5/549 deleted file mode 100644 index a762ad9..0000000 Binary files a/docmost/db/base/5/549 and /dev/null differ diff --git a/docmost/db/base/5/6102 b/docmost/db/base/5/6102 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/6104 b/docmost/db/base/5/6104 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/6106 b/docmost/db/base/5/6106 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/6110 b/docmost/db/base/5/6110 deleted file mode 100644 index 42e1920..0000000 Binary files a/docmost/db/base/5/6110 and /dev/null differ diff --git a/docmost/db/base/5/6111 b/docmost/db/base/5/6111 deleted file mode 100644 index d012727..0000000 Binary files a/docmost/db/base/5/6111 and /dev/null differ diff --git a/docmost/db/base/5/6112 b/docmost/db/base/5/6112 deleted file mode 100644 index 293367c..0000000 Binary files a/docmost/db/base/5/6112 and /dev/null differ diff --git a/docmost/db/base/5/6113 b/docmost/db/base/5/6113 deleted file mode 100644 index 542f8fa..0000000 Binary files a/docmost/db/base/5/6113 and /dev/null differ diff --git a/docmost/db/base/5/6116 b/docmost/db/base/5/6116 deleted file mode 100644 index 787d5d1..0000000 Binary files a/docmost/db/base/5/6116 and /dev/null differ diff --git a/docmost/db/base/5/6117 b/docmost/db/base/5/6117 deleted file mode 100644 index 2b5656b..0000000 Binary files a/docmost/db/base/5/6117 and /dev/null differ diff --git a/docmost/db/base/5/6175 b/docmost/db/base/5/6175 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/6176 b/docmost/db/base/5/6176 deleted file mode 100644 index caa7faf..0000000 Binary files a/docmost/db/base/5/6176 and /dev/null differ diff --git a/docmost/db/base/5/6228 b/docmost/db/base/5/6228 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/6229 b/docmost/db/base/5/6229 deleted file mode 100644 index e70b603..0000000 Binary files a/docmost/db/base/5/6229 and /dev/null differ diff --git a/docmost/db/base/5/6237 b/docmost/db/base/5/6237 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/6238 b/docmost/db/base/5/6238 deleted file mode 100644 index e7c0e8c..0000000 Binary files a/docmost/db/base/5/6238 and /dev/null differ diff --git a/docmost/db/base/5/6239 b/docmost/db/base/5/6239 deleted file mode 100644 index 6c60b50..0000000 Binary files a/docmost/db/base/5/6239 and /dev/null differ diff --git a/docmost/db/base/5/826 b/docmost/db/base/5/826 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/base/5/827 b/docmost/db/base/5/827 deleted file mode 100644 index bcaf0a1..0000000 Binary files a/docmost/db/base/5/827 and /dev/null differ diff --git a/docmost/db/base/5/828 b/docmost/db/base/5/828 deleted file mode 100644 index 7aba562..0000000 Binary files a/docmost/db/base/5/828 and /dev/null differ diff --git a/docmost/db/base/5/PG_VERSION b/docmost/db/base/5/PG_VERSION deleted file mode 100644 index b6a7d89..0000000 --- a/docmost/db/base/5/PG_VERSION +++ /dev/null @@ -1 +0,0 @@ -16 diff --git a/docmost/db/base/5/pg_filenode.map b/docmost/db/base/5/pg_filenode.map deleted file mode 100644 index 4fc801a..0000000 Binary files a/docmost/db/base/5/pg_filenode.map and /dev/null differ diff --git a/docmost/db/global/1213 b/docmost/db/global/1213 deleted file mode 100644 index eec8dc3..0000000 Binary files a/docmost/db/global/1213 and /dev/null differ diff --git a/docmost/db/global/1213_fsm b/docmost/db/global/1213_fsm deleted file mode 100644 index 86074be..0000000 Binary files a/docmost/db/global/1213_fsm and /dev/null differ diff --git a/docmost/db/global/1213_vm b/docmost/db/global/1213_vm deleted file mode 100644 index 8d34b73..0000000 Binary files a/docmost/db/global/1213_vm and /dev/null differ diff --git a/docmost/db/global/1214 b/docmost/db/global/1214 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/global/1232 b/docmost/db/global/1232 deleted file mode 100644 index 3820150..0000000 Binary files a/docmost/db/global/1232 and /dev/null differ diff --git a/docmost/db/global/1233 b/docmost/db/global/1233 deleted file mode 100644 index 4643651..0000000 Binary files a/docmost/db/global/1233 and /dev/null differ diff --git a/docmost/db/global/1260 b/docmost/db/global/1260 deleted file mode 100644 index 4d46be9..0000000 Binary files a/docmost/db/global/1260 and /dev/null differ diff --git a/docmost/db/global/1260_fsm b/docmost/db/global/1260_fsm deleted file mode 100644 index 8bbe958..0000000 Binary files a/docmost/db/global/1260_fsm and /dev/null differ diff --git a/docmost/db/global/1260_vm b/docmost/db/global/1260_vm deleted file mode 100644 index 9d1f0f2..0000000 Binary files a/docmost/db/global/1260_vm and /dev/null differ diff --git a/docmost/db/global/1261 b/docmost/db/global/1261 deleted file mode 100644 index 70eb838..0000000 Binary files a/docmost/db/global/1261 and /dev/null differ diff --git a/docmost/db/global/1261_fsm b/docmost/db/global/1261_fsm deleted file mode 100644 index f32c23e..0000000 Binary files a/docmost/db/global/1261_fsm and /dev/null differ diff --git a/docmost/db/global/1261_vm b/docmost/db/global/1261_vm deleted file mode 100644 index f5a5b69..0000000 Binary files a/docmost/db/global/1261_vm and /dev/null differ diff --git a/docmost/db/global/1262 b/docmost/db/global/1262 deleted file mode 100644 index 761a4c5..0000000 Binary files a/docmost/db/global/1262 and /dev/null differ diff --git a/docmost/db/global/1262_fsm b/docmost/db/global/1262_fsm deleted file mode 100644 index 479fd94..0000000 Binary files a/docmost/db/global/1262_fsm and /dev/null differ diff --git a/docmost/db/global/1262_vm b/docmost/db/global/1262_vm deleted file mode 100644 index 491460d..0000000 Binary files a/docmost/db/global/1262_vm and /dev/null differ diff --git a/docmost/db/global/2396 b/docmost/db/global/2396 deleted file mode 100644 index 4aba0ed..0000000 Binary files a/docmost/db/global/2396 and /dev/null differ diff --git a/docmost/db/global/2396_fsm b/docmost/db/global/2396_fsm deleted file mode 100644 index 7a4f24f..0000000 Binary files a/docmost/db/global/2396_fsm and /dev/null differ diff --git a/docmost/db/global/2396_vm b/docmost/db/global/2396_vm deleted file mode 100644 index c23db8c..0000000 Binary files a/docmost/db/global/2396_vm and /dev/null differ diff --git a/docmost/db/global/2397 b/docmost/db/global/2397 deleted file mode 100644 index 3acd7be..0000000 Binary files a/docmost/db/global/2397 and /dev/null differ diff --git a/docmost/db/global/2671 b/docmost/db/global/2671 deleted file mode 100644 index 4474564..0000000 Binary files a/docmost/db/global/2671 and /dev/null differ diff --git a/docmost/db/global/2672 b/docmost/db/global/2672 deleted file mode 100644 index 15f0725..0000000 Binary files a/docmost/db/global/2672 and /dev/null differ diff --git a/docmost/db/global/2676 b/docmost/db/global/2676 deleted file mode 100644 index 33b5672..0000000 Binary files a/docmost/db/global/2676 and /dev/null differ diff --git a/docmost/db/global/2677 b/docmost/db/global/2677 deleted file mode 100644 index 4487e7b..0000000 Binary files a/docmost/db/global/2677 and /dev/null differ diff --git a/docmost/db/global/2694 b/docmost/db/global/2694 deleted file mode 100644 index 8928d65..0000000 Binary files a/docmost/db/global/2694 and /dev/null differ diff --git a/docmost/db/global/2695 b/docmost/db/global/2695 deleted file mode 100644 index b1acf0e..0000000 Binary files a/docmost/db/global/2695 and /dev/null differ diff --git a/docmost/db/global/2697 b/docmost/db/global/2697 deleted file mode 100644 index be389f1..0000000 Binary files a/docmost/db/global/2697 and /dev/null differ diff --git a/docmost/db/global/2698 b/docmost/db/global/2698 deleted file mode 100644 index e2548a7..0000000 Binary files a/docmost/db/global/2698 and /dev/null differ diff --git a/docmost/db/global/2846 b/docmost/db/global/2846 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/global/2847 b/docmost/db/global/2847 deleted file mode 100644 index 32c26ce..0000000 Binary files a/docmost/db/global/2847 and /dev/null differ diff --git a/docmost/db/global/2964 b/docmost/db/global/2964 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/global/2965 b/docmost/db/global/2965 deleted file mode 100644 index fba579d..0000000 Binary files a/docmost/db/global/2965 and /dev/null differ diff --git a/docmost/db/global/2966 b/docmost/db/global/2966 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/global/2967 b/docmost/db/global/2967 deleted file mode 100644 index de064a1..0000000 Binary files a/docmost/db/global/2967 and /dev/null differ diff --git a/docmost/db/global/3592 b/docmost/db/global/3592 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/global/3593 b/docmost/db/global/3593 deleted file mode 100644 index 2dac047..0000000 Binary files a/docmost/db/global/3593 and /dev/null differ diff --git a/docmost/db/global/4060 b/docmost/db/global/4060 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/global/4061 b/docmost/db/global/4061 deleted file mode 100644 index a68abea..0000000 Binary files a/docmost/db/global/4061 and /dev/null differ diff --git a/docmost/db/global/4175 b/docmost/db/global/4175 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/global/4176 b/docmost/db/global/4176 deleted file mode 100644 index 9095ba5..0000000 Binary files a/docmost/db/global/4176 and /dev/null differ diff --git a/docmost/db/global/4177 b/docmost/db/global/4177 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/global/4178 b/docmost/db/global/4178 deleted file mode 100644 index 8c684a9..0000000 Binary files a/docmost/db/global/4178 and /dev/null differ diff --git a/docmost/db/global/4181 b/docmost/db/global/4181 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/global/4182 b/docmost/db/global/4182 deleted file mode 100644 index d02ec11..0000000 Binary files a/docmost/db/global/4182 and /dev/null differ diff --git a/docmost/db/global/4183 b/docmost/db/global/4183 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/global/4184 b/docmost/db/global/4184 deleted file mode 100644 index 04a2ff7..0000000 Binary files a/docmost/db/global/4184 and /dev/null differ diff --git a/docmost/db/global/4185 b/docmost/db/global/4185 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/global/4186 b/docmost/db/global/4186 deleted file mode 100644 index 69bfc2a..0000000 Binary files a/docmost/db/global/4186 and /dev/null differ diff --git a/docmost/db/global/6000 b/docmost/db/global/6000 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/global/6001 b/docmost/db/global/6001 deleted file mode 100644 index 6a41ce4..0000000 Binary files a/docmost/db/global/6001 and /dev/null differ diff --git a/docmost/db/global/6002 b/docmost/db/global/6002 deleted file mode 100644 index 32ea595..0000000 Binary files a/docmost/db/global/6002 and /dev/null differ diff --git a/docmost/db/global/6100 b/docmost/db/global/6100 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/global/6114 b/docmost/db/global/6114 deleted file mode 100644 index bf887fa..0000000 Binary files a/docmost/db/global/6114 and /dev/null differ diff --git a/docmost/db/global/6115 b/docmost/db/global/6115 deleted file mode 100644 index afafca8..0000000 Binary files a/docmost/db/global/6115 and /dev/null differ diff --git a/docmost/db/global/6243 b/docmost/db/global/6243 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/global/6244 b/docmost/db/global/6244 deleted file mode 100644 index e69de29..0000000 diff --git a/docmost/db/global/6245 b/docmost/db/global/6245 deleted file mode 100644 index c7ecc45..0000000 Binary files a/docmost/db/global/6245 and /dev/null differ diff --git a/docmost/db/global/6246 b/docmost/db/global/6246 deleted file mode 100644 index 084bf17..0000000 Binary files a/docmost/db/global/6246 and /dev/null differ diff --git a/docmost/db/global/6247 b/docmost/db/global/6247 deleted file mode 100644 index 514ffb0..0000000 Binary files a/docmost/db/global/6247 and /dev/null differ diff --git a/docmost/db/global/6302 b/docmost/db/global/6302 deleted file mode 100644 index 78d399c..0000000 Binary files a/docmost/db/global/6302 and /dev/null differ diff --git a/docmost/db/global/6303 b/docmost/db/global/6303 deleted file mode 100644 index 361a777..0000000 Binary files a/docmost/db/global/6303 and /dev/null differ diff --git a/docmost/db/global/pg_control b/docmost/db/global/pg_control deleted file mode 100644 index f77d01c..0000000 Binary files a/docmost/db/global/pg_control and /dev/null differ diff --git a/docmost/db/global/pg_filenode.map b/docmost/db/global/pg_filenode.map deleted file mode 100644 index 97c07a6..0000000 Binary files a/docmost/db/global/pg_filenode.map and /dev/null differ diff --git a/docmost/db/global/pg_internal.init b/docmost/db/global/pg_internal.init deleted file mode 100644 index ab04de2..0000000 Binary files a/docmost/db/global/pg_internal.init and /dev/null differ diff --git a/docmost/db/pg_hba.conf b/docmost/db/pg_hba.conf deleted file mode 100644 index 7f379db..0000000 --- a/docmost/db/pg_hba.conf +++ /dev/null @@ -1,128 +0,0 @@ -# PostgreSQL Client Authentication Configuration File -# =================================================== -# -# Refer to the "Client Authentication" section in the PostgreSQL -# documentation for a complete description of this file. A short -# synopsis follows. -# -# ---------------------- -# Authentication Records -# ---------------------- -# -# This file controls: which hosts are allowed to connect, how clients -# are authenticated, which PostgreSQL user names they can use, which -# databases they can access. Records take one of these forms: -# -# local DATABASE USER METHOD [OPTIONS] -# host DATABASE USER ADDRESS METHOD [OPTIONS] -# hostssl DATABASE USER ADDRESS METHOD [OPTIONS] -# hostnossl DATABASE USER ADDRESS METHOD [OPTIONS] -# hostgssenc DATABASE USER ADDRESS METHOD [OPTIONS] -# hostnogssenc DATABASE USER ADDRESS METHOD [OPTIONS] -# -# (The uppercase items must be replaced by actual values.) -# -# The first field is the connection type: -# - "local" is a Unix-domain socket -# - "host" is a TCP/IP socket (encrypted or not) -# - "hostssl" is a TCP/IP socket that is SSL-encrypted -# - "hostnossl" is a TCP/IP socket that is not SSL-encrypted -# - "hostgssenc" is a TCP/IP socket that is GSSAPI-encrypted -# - "hostnogssenc" is a TCP/IP socket that is not GSSAPI-encrypted -# -# DATABASE can be "all", "sameuser", "samerole", "replication", a -# database name, a regular expression (if it starts with a slash (/)) -# or a comma-separated list thereof. The "all" keyword does not match -# "replication". Access to replication must be enabled in a separate -# record (see example below). -# -# USER can be "all", a user name, a group name prefixed with "+", a -# regular expression (if it starts with a slash (/)) or a comma-separated -# list thereof. In both the DATABASE and USER fields you can also write -# a file name prefixed with "@" to include names from a separate file. -# -# ADDRESS specifies the set of hosts the record matches. It can be a -# host name, or it is made up of an IP address and a CIDR mask that is -# an integer (between 0 and 32 (IPv4) or 128 (IPv6) inclusive) that -# specifies the number of significant bits in the mask. A host name -# that starts with a dot (.) matches a suffix of the actual host name. -# Alternatively, you can write an IP address and netmask in separate -# columns to specify the set of hosts. Instead of a CIDR-address, you -# can write "samehost" to match any of the server's own IP addresses, -# or "samenet" to match any address in any subnet that the server is -# directly connected to. -# -# METHOD can be "trust", "reject", "md5", "password", "scram-sha-256", -# "gss", "sspi", "ident", "peer", "pam", "ldap", "radius" or "cert". -# Note that "password" sends passwords in clear text; "md5" or -# "scram-sha-256" are preferred since they send encrypted passwords. -# -# OPTIONS are a set of options for the authentication in the format -# NAME=VALUE. The available options depend on the different -# authentication methods -- refer to the "Client Authentication" -# section in the documentation for a list of which options are -# available for which authentication methods. -# -# Database and user names containing spaces, commas, quotes and other -# special characters must be quoted. Quoting one of the keywords -# "all", "sameuser", "samerole" or "replication" makes the name lose -# its special character, and just match a database or username with -# that name. -# -# --------------- -# Include Records -# --------------- -# -# This file allows the inclusion of external files or directories holding -# more records, using the following keywords: -# -# include FILE -# include_if_exists FILE -# include_dir DIRECTORY -# -# FILE is the file name to include, and DIR is the directory name containing -# the file(s) to include. Any file in a directory will be loaded if suffixed -# with ".conf". The files of a directory are ordered by name. -# include_if_exists ignores missing files. FILE and DIRECTORY can be -# specified as a relative or an absolute path, and can be double-quoted if -# they contain spaces. -# -# ------------- -# Miscellaneous -# ------------- -# -# This file is read on server startup and when the server receives a -# SIGHUP signal. If you edit the file on a running system, you have to -# SIGHUP the server for the changes to take effect, run "pg_ctl reload", -# or execute "SELECT pg_reload_conf()". -# -# ---------------------------------- -# Put your actual configuration here -# ---------------------------------- -# -# If you want to allow non-local connections, you need to add more -# "host" records. In that case you will also need to make PostgreSQL -# listen on a non-local interface via the listen_addresses -# configuration parameter, or via the -i or -h command line switches. - -# CAUTION: Configuring the system for local "trust" authentication -# allows any local user to connect as any PostgreSQL user, including -# the database superuser. If you do not trust all your local users, -# use another authentication method. - - -# TYPE DATABASE USER ADDRESS METHOD - -# "local" is for Unix domain socket connections only -local all all trust -# IPv4 local connections: -host all all 127.0.0.1/32 trust -# IPv6 local connections: -host all all ::1/128 trust -# Allow replication connections from localhost, by a user with the -# replication privilege. -local replication all trust -host replication all 127.0.0.1/32 trust -host replication all ::1/128 trust - -host all all all scram-sha-256 diff --git a/docmost/db/pg_ident.conf b/docmost/db/pg_ident.conf deleted file mode 100644 index f5225f2..0000000 --- a/docmost/db/pg_ident.conf +++ /dev/null @@ -1,72 +0,0 @@ -# PostgreSQL User Name Maps -# ========================= -# -# --------------- -# Mapping Records -# --------------- -# -# Refer to the PostgreSQL documentation, chapter "Client -# Authentication" for a complete description. A short synopsis -# follows. -# -# This file controls PostgreSQL user name mapping. It maps external -# user names to their corresponding PostgreSQL user names. Records -# are of the form: -# -# MAPNAME SYSTEM-USERNAME PG-USERNAME -# -# (The uppercase quantities must be replaced by actual values.) -# -# MAPNAME is the (otherwise freely chosen) map name that was used in -# pg_hba.conf. SYSTEM-USERNAME is the detected user name of the -# client. PG-USERNAME is the requested PostgreSQL user name. The -# existence of a record specifies that SYSTEM-USERNAME may connect as -# PG-USERNAME. -# -# If SYSTEM-USERNAME starts with a slash (/), it will be treated as a -# regular expression. Optionally this can contain a capture (a -# parenthesized subexpression). The substring matching the capture -# will be substituted for \1 (backslash-one) if present in -# PG-USERNAME. -# -# PG-USERNAME can be "all", a user name, a group name prefixed with "+", or -# a regular expression (if it starts with a slash (/)). If it is a regular -# expression, the substring matching with \1 has no effect. -# -# Multiple maps may be specified in this file and used by pg_hba.conf. -# -# No map names are defined in the default configuration. If all -# system user names and PostgreSQL user names are the same, you don't -# need anything in this file. -# -# --------------- -# Include Records -# --------------- -# -# This file allows the inclusion of external files or directories holding -# more records, using the following keywords: -# -# include FILE -# include_if_exists FILE -# include_dir DIRECTORY -# -# FILE is the file name to include, and DIR is the directory name containing -# the file(s) to include. Any file in a directory will be loaded if suffixed -# with ".conf". The files of a directory are ordered by name. -# include_if_exists ignores missing files. FILE and DIRECTORY can be -# specified as a relative or an absolute path, and can be double-quoted if -# they contain spaces. -# -# ------------------------------- -# Miscellaneous -# ------------------------------- -# -# This file is read on server startup and when the postmaster receives -# a SIGHUP signal. If you edit the file on a running system, you have -# to SIGHUP the postmaster for the changes to take effect. You can -# use "pg_ctl reload" to do that. - -# Put your actual configuration here -# ---------------------------------- - -# MAPNAME SYSTEM-USERNAME PG-USERNAME diff --git a/docmost/db/pg_logical/replorigin_checkpoint b/docmost/db/pg_logical/replorigin_checkpoint deleted file mode 100644 index ec451b0..0000000 Binary files a/docmost/db/pg_logical/replorigin_checkpoint and /dev/null differ diff --git a/docmost/db/pg_multixact/members/0000 b/docmost/db/pg_multixact/members/0000 deleted file mode 100644 index 6d17cf9..0000000 Binary files a/docmost/db/pg_multixact/members/0000 and /dev/null differ diff --git a/docmost/db/pg_multixact/offsets/0000 b/docmost/db/pg_multixact/offsets/0000 deleted file mode 100644 index 6d17cf9..0000000 Binary files a/docmost/db/pg_multixact/offsets/0000 and /dev/null differ diff --git a/docmost/db/pg_subtrans/0000 b/docmost/db/pg_subtrans/0000 deleted file mode 100644 index 6d17cf9..0000000 Binary files a/docmost/db/pg_subtrans/0000 and /dev/null differ diff --git a/docmost/db/pg_wal/000000010000000000000001 b/docmost/db/pg_wal/000000010000000000000001 deleted file mode 100644 index 00d48ab..0000000 Binary files a/docmost/db/pg_wal/000000010000000000000001 and /dev/null differ diff --git a/docmost/db/pg_xact/0000 b/docmost/db/pg_xact/0000 deleted file mode 100644 index c5ba85d..0000000 Binary files a/docmost/db/pg_xact/0000 and /dev/null differ diff --git a/docmost/db/postgresql.auto.conf b/docmost/db/postgresql.auto.conf deleted file mode 100644 index af7125e..0000000 --- a/docmost/db/postgresql.auto.conf +++ /dev/null @@ -1,2 +0,0 @@ -# Do not edit this file manually! -# It will be overwritten by the ALTER SYSTEM command. diff --git a/docmost/db/postgresql.conf b/docmost/db/postgresql.conf deleted file mode 100644 index 534dfde..0000000 --- a/docmost/db/postgresql.conf +++ /dev/null @@ -1,820 +0,0 @@ -# ----------------------------- -# PostgreSQL configuration file -# ----------------------------- -# -# This file consists of lines of the form: -# -# name = value -# -# (The "=" is optional.) Whitespace may be used. Comments are introduced with -# "#" anywhere on a line. The complete list of parameter names and allowed -# values can be found in the PostgreSQL documentation. -# -# The commented-out settings shown in this file represent the default values. -# Re-commenting a setting is NOT sufficient to revert it to the default value; -# you need to reload the server. -# -# This file is read on server startup and when the server receives a SIGHUP -# signal. If you edit the file on a running system, you have to SIGHUP the -# server for the changes to take effect, run "pg_ctl reload", or execute -# "SELECT pg_reload_conf()". Some parameters, which are marked below, -# require a server shutdown and restart to take effect. -# -# Any parameter can also be given as a command-line option to the server, e.g., -# "postgres -c log_connections=on". Some parameters can be changed at run time -# with the "SET" SQL command. -# -# Memory units: B = bytes Time units: us = microseconds -# kB = kilobytes ms = milliseconds -# MB = megabytes s = seconds -# GB = gigabytes min = minutes -# TB = terabytes h = hours -# d = days - - -#------------------------------------------------------------------------------ -# FILE LOCATIONS -#------------------------------------------------------------------------------ - -# The default values of these variables are driven from the -D command-line -# option or PGDATA environment variable, represented here as ConfigDir. - -#data_directory = 'ConfigDir' # use data in another directory - # (change requires restart) -#hba_file = 'ConfigDir/pg_hba.conf' # host-based authentication file - # (change requires restart) -#ident_file = 'ConfigDir/pg_ident.conf' # ident configuration file - # (change requires restart) - -# If external_pid_file is not explicitly set, no extra PID file is written. -#external_pid_file = '' # write an extra PID file - # (change requires restart) - - -#------------------------------------------------------------------------------ -# CONNECTIONS AND AUTHENTICATION -#------------------------------------------------------------------------------ - -# - Connection Settings - - -listen_addresses = '*' - # comma-separated list of addresses; - # defaults to 'localhost'; use '*' for all - # (change requires restart) -#port = 5432 # (change requires restart) -max_connections = 100 # (change requires restart) -#reserved_connections = 0 # (change requires restart) -#superuser_reserved_connections = 3 # (change requires restart) -#unix_socket_directories = '/var/run/postgresql' # comma-separated list of directories - # (change requires restart) -#unix_socket_group = '' # (change requires restart) -#unix_socket_permissions = 0777 # begin with 0 to use octal notation - # (change requires restart) -#bonjour = off # advertise server via Bonjour - # (change requires restart) -#bonjour_name = '' # defaults to the computer name - # (change requires restart) - -# - TCP settings - -# see "man tcp" for details - -#tcp_keepalives_idle = 0 # TCP_KEEPIDLE, in seconds; - # 0 selects the system default -#tcp_keepalives_interval = 0 # TCP_KEEPINTVL, in seconds; - # 0 selects the system default -#tcp_keepalives_count = 0 # TCP_KEEPCNT; - # 0 selects the system default -#tcp_user_timeout = 0 # TCP_USER_TIMEOUT, in milliseconds; - # 0 selects the system default - -#client_connection_check_interval = 0 # time between checks for client - # disconnection while running queries; - # 0 for never - -# - Authentication - - -#authentication_timeout = 1min # 1s-600s -#password_encryption = scram-sha-256 # scram-sha-256 or md5 -#scram_iterations = 4096 -#db_user_namespace = off - -# GSSAPI using Kerberos -#krb_server_keyfile = 'FILE:${sysconfdir}/krb5.keytab' -#krb_caseins_users = off -#gss_accept_delegation = off - -# - SSL - - -#ssl = off -#ssl_ca_file = '' -#ssl_cert_file = 'server.crt' -#ssl_crl_file = '' -#ssl_crl_dir = '' -#ssl_key_file = 'server.key' -#ssl_ciphers = 'HIGH:MEDIUM:+3DES:!aNULL' # allowed SSL ciphers -#ssl_prefer_server_ciphers = on -#ssl_ecdh_curve = 'prime256v1' -#ssl_min_protocol_version = 'TLSv1.2' -#ssl_max_protocol_version = '' -#ssl_dh_params_file = '' -#ssl_passphrase_command = '' -#ssl_passphrase_command_supports_reload = off - - -#------------------------------------------------------------------------------ -# RESOURCE USAGE (except WAL) -#------------------------------------------------------------------------------ - -# - Memory - - -shared_buffers = 128MB # min 128kB - # (change requires restart) -#huge_pages = try # on, off, or try - # (change requires restart) -#huge_page_size = 0 # zero for system default - # (change requires restart) -#temp_buffers = 8MB # min 800kB -#max_prepared_transactions = 0 # zero disables the feature - # (change requires restart) -# Caution: it is not advisable to set max_prepared_transactions nonzero unless -# you actively intend to use prepared transactions. -#work_mem = 4MB # min 64kB -#hash_mem_multiplier = 2.0 # 1-1000.0 multiplier on hash table work_mem -#maintenance_work_mem = 64MB # min 1MB -#autovacuum_work_mem = -1 # min 1MB, or -1 to use maintenance_work_mem -#logical_decoding_work_mem = 64MB # min 64kB -#max_stack_depth = 2MB # min 100kB -#shared_memory_type = mmap # the default is the first option - # supported by the operating system: - # mmap - # sysv - # windows - # (change requires restart) -dynamic_shared_memory_type = posix # the default is usually the first option - # supported by the operating system: - # posix - # sysv - # windows - # mmap - # (change requires restart) -#min_dynamic_shared_memory = 0MB # (change requires restart) -#vacuum_buffer_usage_limit = 256kB # size of vacuum and analyze buffer access strategy ring; - # 0 to disable vacuum buffer access strategy; - # range 128kB to 16GB - -# - Disk - - -#temp_file_limit = -1 # limits per-process temp file space - # in kilobytes, or -1 for no limit - -# - Kernel Resources - - -#max_files_per_process = 1000 # min 64 - # (change requires restart) - -# - Cost-Based Vacuum Delay - - -#vacuum_cost_delay = 0 # 0-100 milliseconds (0 disables) -#vacuum_cost_page_hit = 1 # 0-10000 credits -#vacuum_cost_page_miss = 2 # 0-10000 credits -#vacuum_cost_page_dirty = 20 # 0-10000 credits -#vacuum_cost_limit = 200 # 1-10000 credits - -# - Background Writer - - -#bgwriter_delay = 200ms # 10-10000ms between rounds -#bgwriter_lru_maxpages = 100 # max buffers written/round, 0 disables -#bgwriter_lru_multiplier = 2.0 # 0-10.0 multiplier on buffers scanned/round -#bgwriter_flush_after = 512kB # measured in pages, 0 disables - -# - Asynchronous Behavior - - -#backend_flush_after = 0 # measured in pages, 0 disables -#effective_io_concurrency = 1 # 1-1000; 0 disables prefetching -#maintenance_io_concurrency = 10 # 1-1000; 0 disables prefetching -#max_worker_processes = 8 # (change requires restart) -#max_parallel_workers_per_gather = 2 # limited by max_parallel_workers -#max_parallel_maintenance_workers = 2 # limited by max_parallel_workers -#max_parallel_workers = 8 # number of max_worker_processes that - # can be used in parallel operations -#parallel_leader_participation = on -#old_snapshot_threshold = -1 # 1min-60d; -1 disables; 0 is immediate - # (change requires restart) - - -#------------------------------------------------------------------------------ -# WRITE-AHEAD LOG -#------------------------------------------------------------------------------ - -# - Settings - - -#wal_level = replica # minimal, replica, or logical - # (change requires restart) -#fsync = on # flush data to disk for crash safety - # (turning this off can cause - # unrecoverable data corruption) -#synchronous_commit = on # synchronization level; - # off, local, remote_write, remote_apply, or on -#wal_sync_method = fsync # the default is the first option - # supported by the operating system: - # open_datasync - # fdatasync (default on Linux and FreeBSD) - # fsync - # fsync_writethrough - # open_sync -#full_page_writes = on # recover from partial page writes -#wal_log_hints = off # also do full page writes of non-critical updates - # (change requires restart) -#wal_compression = off # enables compression of full-page writes; - # off, pglz, lz4, zstd, or on -#wal_init_zero = on # zero-fill new WAL files -#wal_recycle = on # recycle WAL files -#wal_buffers = -1 # min 32kB, -1 sets based on shared_buffers - # (change requires restart) -#wal_writer_delay = 200ms # 1-10000 milliseconds -#wal_writer_flush_after = 1MB # measured in pages, 0 disables -#wal_skip_threshold = 2MB - -#commit_delay = 0 # range 0-100000, in microseconds -#commit_siblings = 5 # range 1-1000 - -# - Checkpoints - - -#checkpoint_timeout = 5min # range 30s-1d -#checkpoint_completion_target = 0.9 # checkpoint target duration, 0.0 - 1.0 -#checkpoint_flush_after = 256kB # measured in pages, 0 disables -#checkpoint_warning = 30s # 0 disables -max_wal_size = 1GB -min_wal_size = 80MB - -# - Prefetching during recovery - - -#recovery_prefetch = try # prefetch pages referenced in the WAL? -#wal_decode_buffer_size = 512kB # lookahead window used for prefetching - # (change requires restart) - -# - Archiving - - -#archive_mode = off # enables archiving; off, on, or always - # (change requires restart) -#archive_library = '' # library to use to archive a WAL file - # (empty string indicates archive_command should - # be used) -#archive_command = '' # command to use to archive a WAL file - # placeholders: %p = path of file to archive - # %f = file name only - # e.g. 'test ! -f /mnt/server/archivedir/%f && cp %p /mnt/server/archivedir/%f' -#archive_timeout = 0 # force a WAL file switch after this - # number of seconds; 0 disables - -# - Archive Recovery - - -# These are only used in recovery mode. - -#restore_command = '' # command to use to restore an archived WAL file - # placeholders: %p = path of file to restore - # %f = file name only - # e.g. 'cp /mnt/server/archivedir/%f %p' -#archive_cleanup_command = '' # command to execute at every restartpoint -#recovery_end_command = '' # command to execute at completion of recovery - -# - Recovery Target - - -# Set these only when performing a targeted recovery. - -#recovery_target = '' # 'immediate' to end recovery as soon as a - # consistent state is reached - # (change requires restart) -#recovery_target_name = '' # the named restore point to which recovery will proceed - # (change requires restart) -#recovery_target_time = '' # the time stamp up to which recovery will proceed - # (change requires restart) -#recovery_target_xid = '' # the transaction ID up to which recovery will proceed - # (change requires restart) -#recovery_target_lsn = '' # the WAL LSN up to which recovery will proceed - # (change requires restart) -#recovery_target_inclusive = on # Specifies whether to stop: - # just after the specified recovery target (on) - # just before the recovery target (off) - # (change requires restart) -#recovery_target_timeline = 'latest' # 'current', 'latest', or timeline ID - # (change requires restart) -#recovery_target_action = 'pause' # 'pause', 'promote', 'shutdown' - # (change requires restart) - - -#------------------------------------------------------------------------------ -# REPLICATION -#------------------------------------------------------------------------------ - -# - Sending Servers - - -# Set these on the primary and on any standby that will send replication data. - -#max_wal_senders = 10 # max number of walsender processes - # (change requires restart) -#max_replication_slots = 10 # max number of replication slots - # (change requires restart) -#wal_keep_size = 0 # in megabytes; 0 disables -#max_slot_wal_keep_size = -1 # in megabytes; -1 disables -#wal_sender_timeout = 60s # in milliseconds; 0 disables -#track_commit_timestamp = off # collect timestamp of transaction commit - # (change requires restart) - -# - Primary Server - - -# These settings are ignored on a standby server. - -#synchronous_standby_names = '' # standby servers that provide sync rep - # method to choose sync standbys, number of sync standbys, - # and comma-separated list of application_name - # from standby(s); '*' = all - -# - Standby Servers - - -# These settings are ignored on a primary server. - -#primary_conninfo = '' # connection string to sending server -#primary_slot_name = '' # replication slot on sending server -#hot_standby = on # "off" disallows queries during recovery - # (change requires restart) -#max_standby_archive_delay = 30s # max delay before canceling queries - # when reading WAL from archive; - # -1 allows indefinite delay -#max_standby_streaming_delay = 30s # max delay before canceling queries - # when reading streaming WAL; - # -1 allows indefinite delay -#wal_receiver_create_temp_slot = off # create temp slot if primary_slot_name - # is not set -#wal_receiver_status_interval = 10s # send replies at least this often - # 0 disables -#hot_standby_feedback = off # send info from standby to prevent - # query conflicts -#wal_receiver_timeout = 60s # time that receiver waits for - # communication from primary - # in milliseconds; 0 disables -#wal_retrieve_retry_interval = 5s # time to wait before retrying to - # retrieve WAL after a failed attempt -#recovery_min_apply_delay = 0 # minimum delay for applying changes during recovery - -# - Subscribers - - -# These settings are ignored on a publisher. - -#max_logical_replication_workers = 4 # taken from max_worker_processes - # (change requires restart) -#max_sync_workers_per_subscription = 2 # taken from max_logical_replication_workers -#max_parallel_apply_workers_per_subscription = 2 # taken from max_logical_replication_workers - - -#------------------------------------------------------------------------------ -# QUERY TUNING -#------------------------------------------------------------------------------ - -# - Planner Method Configuration - - -#enable_async_append = on -#enable_bitmapscan = on -#enable_gathermerge = on -#enable_hashagg = on -#enable_hashjoin = on -#enable_incremental_sort = on -#enable_indexscan = on -#enable_indexonlyscan = on -#enable_material = on -#enable_memoize = on -#enable_mergejoin = on -#enable_nestloop = on -#enable_parallel_append = on -#enable_parallel_hash = on -#enable_partition_pruning = on -#enable_partitionwise_join = off -#enable_partitionwise_aggregate = off -#enable_presorted_aggregate = on -#enable_seqscan = on -#enable_sort = on -#enable_tidscan = on - -# - Planner Cost Constants - - -#seq_page_cost = 1.0 # measured on an arbitrary scale -#random_page_cost = 4.0 # same scale as above -#cpu_tuple_cost = 0.01 # same scale as above -#cpu_index_tuple_cost = 0.005 # same scale as above -#cpu_operator_cost = 0.0025 # same scale as above -#parallel_setup_cost = 1000.0 # same scale as above -#parallel_tuple_cost = 0.1 # same scale as above -#min_parallel_table_scan_size = 8MB -#min_parallel_index_scan_size = 512kB -#effective_cache_size = 4GB - -#jit_above_cost = 100000 # perform JIT compilation if available - # and query more expensive than this; - # -1 disables -#jit_inline_above_cost = 500000 # inline small functions if query is - # more expensive than this; -1 disables -#jit_optimize_above_cost = 500000 # use expensive JIT optimizations if - # query is more expensive than this; - # -1 disables - -# - Genetic Query Optimizer - - -#geqo = on -#geqo_threshold = 12 -#geqo_effort = 5 # range 1-10 -#geqo_pool_size = 0 # selects default based on effort -#geqo_generations = 0 # selects default based on effort -#geqo_selection_bias = 2.0 # range 1.5-2.0 -#geqo_seed = 0.0 # range 0.0-1.0 - -# - Other Planner Options - - -#default_statistics_target = 100 # range 1-10000 -#constraint_exclusion = partition # on, off, or partition -#cursor_tuple_fraction = 0.1 # range 0.0-1.0 -#from_collapse_limit = 8 -#jit = on # allow JIT compilation -#join_collapse_limit = 8 # 1 disables collapsing of explicit - # JOIN clauses -#plan_cache_mode = auto # auto, force_generic_plan or - # force_custom_plan -#recursive_worktable_factor = 10.0 # range 0.001-1000000 - - -#------------------------------------------------------------------------------ -# REPORTING AND LOGGING -#------------------------------------------------------------------------------ - -# - Where to Log - - -#log_destination = 'stderr' # Valid values are combinations of - # stderr, csvlog, jsonlog, syslog, and - # eventlog, depending on platform. - # csvlog and jsonlog require - # logging_collector to be on. - -# This is used when logging to stderr: -#logging_collector = off # Enable capturing of stderr, jsonlog, - # and csvlog into log files. Required - # to be on for csvlogs and jsonlogs. - # (change requires restart) - -# These are only used if logging_collector is on: -#log_directory = 'log' # directory where log files are written, - # can be absolute or relative to PGDATA -#log_filename = 'postgresql-%Y-%m-%d_%H%M%S.log' # log file name pattern, - # can include strftime() escapes -#log_file_mode = 0600 # creation mode for log files, - # begin with 0 to use octal notation -#log_rotation_age = 1d # Automatic rotation of logfiles will - # happen after that time. 0 disables. -#log_rotation_size = 10MB # Automatic rotation of logfiles will - # happen after that much log output. - # 0 disables. -#log_truncate_on_rotation = off # If on, an existing log file with the - # same name as the new log file will be - # truncated rather than appended to. - # But such truncation only occurs on - # time-driven rotation, not on restarts - # or size-driven rotation. Default is - # off, meaning append to existing files - # in all cases. - -# These are relevant when logging to syslog: -#syslog_facility = 'LOCAL0' -#syslog_ident = 'postgres' -#syslog_sequence_numbers = on -#syslog_split_messages = on - -# This is only relevant when logging to eventlog (Windows): -# (change requires restart) -#event_source = 'PostgreSQL' - -# - When to Log - - -#log_min_messages = warning # values in order of decreasing detail: - # debug5 - # debug4 - # debug3 - # debug2 - # debug1 - # info - # notice - # warning - # error - # log - # fatal - # panic - -#log_min_error_statement = error # values in order of decreasing detail: - # debug5 - # debug4 - # debug3 - # debug2 - # debug1 - # info - # notice - # warning - # error - # log - # fatal - # panic (effectively off) - -#log_min_duration_statement = -1 # -1 is disabled, 0 logs all statements - # and their durations, > 0 logs only - # statements running at least this number - # of milliseconds - -#log_min_duration_sample = -1 # -1 is disabled, 0 logs a sample of statements - # and their durations, > 0 logs only a sample of - # statements running at least this number - # of milliseconds; - # sample fraction is determined by log_statement_sample_rate - -#log_statement_sample_rate = 1.0 # fraction of logged statements exceeding - # log_min_duration_sample to be logged; - # 1.0 logs all such statements, 0.0 never logs - - -#log_transaction_sample_rate = 0.0 # fraction of transactions whose statements - # are logged regardless of their duration; 1.0 logs all - # statements from all transactions, 0.0 never logs - -#log_startup_progress_interval = 10s # Time between progress updates for - # long-running startup operations. - # 0 disables the feature, > 0 indicates - # the interval in milliseconds. - -# - What to Log - - -#debug_print_parse = off -#debug_print_rewritten = off -#debug_print_plan = off -#debug_pretty_print = on -#log_autovacuum_min_duration = 10min # log autovacuum activity; - # -1 disables, 0 logs all actions and - # their durations, > 0 logs only - # actions running at least this number - # of milliseconds. -#log_checkpoints = on -#log_connections = off -#log_disconnections = off -#log_duration = off -#log_error_verbosity = default # terse, default, or verbose messages -#log_hostname = off -#log_line_prefix = '%m [%p] ' # special values: - # %a = application name - # %u = user name - # %d = database name - # %r = remote host and port - # %h = remote host - # %b = backend type - # %p = process ID - # %P = process ID of parallel group leader - # %t = timestamp without milliseconds - # %m = timestamp with milliseconds - # %n = timestamp with milliseconds (as a Unix epoch) - # %Q = query ID (0 if none or not computed) - # %i = command tag - # %e = SQL state - # %c = session ID - # %l = session line number - # %s = session start timestamp - # %v = virtual transaction ID - # %x = transaction ID (0 if none) - # %q = stop here in non-session - # processes - # %% = '%' - # e.g. '<%u%%%d> ' -#log_lock_waits = off # log lock waits >= deadlock_timeout -#log_recovery_conflict_waits = off # log standby recovery conflict waits - # >= deadlock_timeout -#log_parameter_max_length = -1 # when logging statements, limit logged - # bind-parameter values to N bytes; - # -1 means print in full, 0 disables -#log_parameter_max_length_on_error = 0 # when logging an error, limit logged - # bind-parameter values to N bytes; - # -1 means print in full, 0 disables -#log_statement = 'none' # none, ddl, mod, all -#log_replication_commands = off -#log_temp_files = -1 # log temporary files equal or larger - # than the specified size in kilobytes; - # -1 disables, 0 logs all temp files -log_timezone = UTC - -# - Process Title - - -#cluster_name = '' # added to process titles if nonempty - # (change requires restart) -#update_process_title = on - - -#------------------------------------------------------------------------------ -# STATISTICS -#------------------------------------------------------------------------------ - -# - Cumulative Query and Index Statistics - - -#track_activities = on -#track_activity_query_size = 1024 # (change requires restart) -#track_counts = on -#track_io_timing = off -#track_wal_io_timing = off -#track_functions = none # none, pl, all -#stats_fetch_consistency = cache # cache, none, snapshot - - -# - Monitoring - - -#compute_query_id = auto -#log_statement_stats = off -#log_parser_stats = off -#log_planner_stats = off -#log_executor_stats = off - - -#------------------------------------------------------------------------------ -# AUTOVACUUM -#------------------------------------------------------------------------------ - -#autovacuum = on # Enable autovacuum subprocess? 'on' - # requires track_counts to also be on. -#autovacuum_max_workers = 3 # max number of autovacuum subprocesses - # (change requires restart) -#autovacuum_naptime = 1min # time between autovacuum runs -#autovacuum_vacuum_threshold = 50 # min number of row updates before - # vacuum -#autovacuum_vacuum_insert_threshold = 1000 # min number of row inserts - # before vacuum; -1 disables insert - # vacuums -#autovacuum_analyze_threshold = 50 # min number of row updates before - # analyze -#autovacuum_vacuum_scale_factor = 0.2 # fraction of table size before vacuum -#autovacuum_vacuum_insert_scale_factor = 0.2 # fraction of inserts over table - # size before insert vacuum -#autovacuum_analyze_scale_factor = 0.1 # fraction of table size before analyze -#autovacuum_freeze_max_age = 200000000 # maximum XID age before forced vacuum - # (change requires restart) -#autovacuum_multixact_freeze_max_age = 400000000 # maximum multixact age - # before forced vacuum - # (change requires restart) -#autovacuum_vacuum_cost_delay = 2ms # default vacuum cost delay for - # autovacuum, in milliseconds; - # -1 means use vacuum_cost_delay -#autovacuum_vacuum_cost_limit = -1 # default vacuum cost limit for - # autovacuum, -1 means use - # vacuum_cost_limit - - -#------------------------------------------------------------------------------ -# CLIENT CONNECTION DEFAULTS -#------------------------------------------------------------------------------ - -# - Statement Behavior - - -#client_min_messages = notice # values in order of decreasing detail: - # debug5 - # debug4 - # debug3 - # debug2 - # debug1 - # log - # notice - # warning - # error -#search_path = '"$user", public' # schema names -#row_security = on -#default_table_access_method = 'heap' -#default_tablespace = '' # a tablespace name, '' uses the default -#default_toast_compression = 'pglz' # 'pglz' or 'lz4' -#temp_tablespaces = '' # a list of tablespace names, '' uses - # only default tablespace -#check_function_bodies = on -#default_transaction_isolation = 'read committed' -#default_transaction_read_only = off -#default_transaction_deferrable = off -#session_replication_role = 'origin' -#statement_timeout = 0 # in milliseconds, 0 is disabled -#lock_timeout = 0 # in milliseconds, 0 is disabled -#idle_in_transaction_session_timeout = 0 # in milliseconds, 0 is disabled -#idle_session_timeout = 0 # in milliseconds, 0 is disabled -#vacuum_freeze_table_age = 150000000 -#vacuum_freeze_min_age = 50000000 -#vacuum_failsafe_age = 1600000000 -#vacuum_multixact_freeze_table_age = 150000000 -#vacuum_multixact_freeze_min_age = 5000000 -#vacuum_multixact_failsafe_age = 1600000000 -#bytea_output = 'hex' # hex, escape -#xmlbinary = 'base64' -#xmloption = 'content' -#gin_pending_list_limit = 4MB -#createrole_self_grant = '' # set and/or inherit - -# - Locale and Formatting - - -datestyle = 'iso, mdy' -#intervalstyle = 'postgres' -timezone = UTC -#timezone_abbreviations = 'Default' # Select the set of available time zone - # abbreviations. Currently, there are - # Default - # Australia (historical usage) - # India - # You can create your own file in - # share/timezonesets/. -#extra_float_digits = 1 # min -15, max 3; any value >0 actually - # selects precise output mode -#client_encoding = sql_ascii # actually, defaults to database - # encoding - -# These settings are initialized by initdb, but they can be changed. -lc_messages = 'en_US.utf8' # locale for system error message - # strings -lc_monetary = 'en_US.utf8' # locale for monetary formatting -lc_numeric = 'en_US.utf8' # locale for number formatting -lc_time = 'en_US.utf8' # locale for time formatting - -#icu_validation_level = warning # report ICU locale validation - # errors at the given level - -# default configuration for text search -default_text_search_config = 'pg_catalog.english' - -# - Shared Library Preloading - - -#local_preload_libraries = '' -#session_preload_libraries = '' -#shared_preload_libraries = '' # (change requires restart) -#jit_provider = 'llvmjit' # JIT library to use - -# - Other Defaults - - -#dynamic_library_path = '$libdir' -#gin_fuzzy_search_limit = 0 - - -#------------------------------------------------------------------------------ -# LOCK MANAGEMENT -#------------------------------------------------------------------------------ - -#deadlock_timeout = 1s -#max_locks_per_transaction = 64 # min 10 - # (change requires restart) -#max_pred_locks_per_transaction = 64 # min 10 - # (change requires restart) -#max_pred_locks_per_relation = -2 # negative values mean - # (max_pred_locks_per_transaction - # / -max_pred_locks_per_relation) - 1 -#max_pred_locks_per_page = 2 # min 0 - - -#------------------------------------------------------------------------------ -# VERSION AND PLATFORM COMPATIBILITY -#------------------------------------------------------------------------------ - -# - Previous PostgreSQL Versions - - -#array_nulls = on -#backslash_quote = safe_encoding # on, off, or safe_encoding -#escape_string_warning = on -#lo_compat_privileges = off -#quote_all_identifiers = off -#standard_conforming_strings = on -#synchronize_seqscans = on - -# - Other Platforms and Clients - - -#transform_null_equals = off - - -#------------------------------------------------------------------------------ -# ERROR HANDLING -#------------------------------------------------------------------------------ - -#exit_on_error = off # terminate session on any error? -#restart_after_crash = on # reinitialize after backend crash? -#data_sync_retry = off # retry or panic on failure to fsync - # data? - # (change requires restart) -#recovery_init_sync_method = fsync # fsync, syncfs (Linux 5.8+) - - -#------------------------------------------------------------------------------ -# CONFIG FILE INCLUDES -#------------------------------------------------------------------------------ - -# These options allow settings to be loaded from files other than the -# default postgresql.conf. Note that these are directives, not variable -# assignments, so they can usefully be given more than once. - -#include_dir = '...' # include files ending in '.conf' from - # a directory, e.g., 'conf.d' -#include_if_exists = '...' # include file only if it exists -#include = '...' # include file - - -#------------------------------------------------------------------------------ -# CUSTOMIZED OPTIONS -#------------------------------------------------------------------------------ - -# Add settings for extensions here diff --git a/docmost/db/postmaster.opts b/docmost/db/postmaster.opts deleted file mode 100644 index 77c8b5d..0000000 --- a/docmost/db/postmaster.opts +++ /dev/null @@ -1 +0,0 @@ -/usr/local/bin/postgres diff --git a/docmost/db/postmaster.pid b/docmost/db/postmaster.pid deleted file mode 100644 index 5cfbd2d..0000000 --- a/docmost/db/postmaster.pid +++ /dev/null @@ -1,8 +0,0 @@ -1 -/var/lib/postgresql/data -1759398604 -5432 -/var/run/postgresql -* - 17 0 -ready diff --git a/docmost/redis/dump.rdb b/docmost/redis/dump.rdb deleted file mode 100644 index 62c294a..0000000 Binary files a/docmost/redis/dump.rdb and /dev/null differ diff --git a/docmost/storage/.DS_Store b/docmost/storage/.DS_Store deleted file mode 100644 index 542a4dd..0000000 Binary files a/docmost/storage/.DS_Store and /dev/null differ diff --git a/docmost/storage/01997b2d-34b6-732b-a4c8-96f097176fd7/.DS_Store b/docmost/storage/01997b2d-34b6-732b-a4c8-96f097176fd7/.DS_Store deleted file mode 100644 index c191a5a..0000000 Binary files a/docmost/storage/01997b2d-34b6-732b-a4c8-96f097176fd7/.DS_Store and /dev/null differ diff --git a/docmost/storage/01997b2d-34b6-732b-a4c8-96f097176fd7/avatars/981c38c7-9bcd-41ab-8055-c52b4024adcd.png b/docmost/storage/01997b2d-34b6-732b-a4c8-96f097176fd7/avatars/981c38c7-9bcd-41ab-8055-c52b4024adcd.png deleted file mode 100644 index 2209316..0000000 Binary files a/docmost/storage/01997b2d-34b6-732b-a4c8-96f097176fd7/avatars/981c38c7-9bcd-41ab-8055-c52b4024adcd.png and /dev/null differ diff --git a/docmost/storage/01997b2d-34b6-732b-a4c8-96f097176fd7/files/.DS_Store b/docmost/storage/01997b2d-34b6-732b-a4c8-96f097176fd7/files/.DS_Store deleted file mode 100644 index c10ee09..0000000 Binary files a/docmost/storage/01997b2d-34b6-732b-a4c8-96f097176fd7/files/.DS_Store and /dev/null differ diff --git a/docmost/storage/01997b2d-34b6-732b-a4c8-96f097176fd7/files/01997bcb-b6b7-764c-939e-6142b7b3a94f/089f6684-6cd5-4d0c-a85f-79ff2bee52f9.jpg b/docmost/storage/01997b2d-34b6-732b-a4c8-96f097176fd7/files/01997bcb-b6b7-764c-939e-6142b7b3a94f/089f6684-6cd5-4d0c-a85f-79ff2bee52f9.jpg deleted file mode 100644 index 95d7096..0000000 Binary files a/docmost/storage/01997b2d-34b6-732b-a4c8-96f097176fd7/files/01997bcb-b6b7-764c-939e-6142b7b3a94f/089f6684-6cd5-4d0c-a85f-79ff2bee52f9.jpg and /dev/null differ diff --git a/docmost/storage/01997b2d-34b6-732b-a4c8-96f097176fd7/files/01997bcb-c99a-7167-a967-5b5317e89140/image.png b/docmost/storage/01997b2d-34b6-732b-a4c8-96f097176fd7/files/01997bcb-c99a-7167-a967-5b5317e89140/image.png deleted file mode 100644 index d367489..0000000 Binary files a/docmost/storage/01997b2d-34b6-732b-a4c8-96f097176fd7/files/01997bcb-c99a-7167-a967-5b5317e89140/image.png and /dev/null differ diff --git a/docmost/storage/01997b2d-34b6-732b-a4c8-96f097176fd7/files/01997bcc-0ff6-766b-9e43-6711e5c635dd/image.png b/docmost/storage/01997b2d-34b6-732b-a4c8-96f097176fd7/files/01997bcc-0ff6-766b-9e43-6711e5c635dd/image.png deleted file mode 100644 index d367489..0000000 Binary files a/docmost/storage/01997b2d-34b6-732b-a4c8-96f097176fd7/files/01997bcc-0ff6-766b-9e43-6711e5c635dd/image.png and /dev/null differ diff --git a/docmost/storage/01997b2d-34b6-732b-a4c8-96f097176fd7/workspace-logos/86cecde0-bd17-47ea-9ecf-44bb9f0d996a.png b/docmost/storage/01997b2d-34b6-732b-a4c8-96f097176fd7/workspace-logos/86cecde0-bd17-47ea-9ecf-44bb9f0d996a.png deleted file mode 100644 index 1afdfce..0000000 Binary files a/docmost/storage/01997b2d-34b6-732b-a4c8-96f097176fd7/workspace-logos/86cecde0-bd17-47ea-9ecf-44bb9f0d996a.png and /dev/null differ diff --git a/main.py b/main.py index 964ef3b..94ccde6 100644 --- a/main.py +++ b/main.py @@ -1,5 +1,7 @@ import os import shutil +import csv +from pathlib import Path from fastapi import FastAPI, UploadFile, File, Request, Form from fastapi.responses import HTMLResponse from fastapi.templating import Jinja2Templates @@ -11,6 +13,15 @@ from mailer import send_order_sync from dotenv import load_dotenv load_dotenv() +# Get server hostname from environment +SERVER_HOSTNAME = os.environ.get("SERVER_HOSTNAME", "einszwovier.local") +BOOKSTACK_PORT = os.environ.get("BOOKSTACK_PORT", "6875") +OPENWEBUI_PORT = os.environ.get("OPENWEBUI_PORT", "8080") +PORTAINER_PORT = os.environ.get("PORTAINER_PORT", "9000") + +# Courses CSV path +COURSES_CSV = Path("data/courses.csv") + app = FastAPI() templates = Jinja2Templates(directory="templates") os.makedirs(UPLOAD_FOLDER, exist_ok=True) @@ -68,13 +79,30 @@ async def welcome(request: Request): { "request": request, "studio_open": presence_state["present"], - "opening_hours": "Di-Do 11:00–16:00", # or read from config + "opening_hours": "Di-Do 11:00–16:00", + "server_hostname": SERVER_HOSTNAME, + "bookstack_port": BOOKSTACK_PORT, + "openwebui_port": OPENWEBUI_PORT, + "portainer_port": PORTAINER_PORT, }, ) @app.get("/about", response_class=HTMLResponse) async def about(request: Request): - return templates.TemplateResponse("about.html", {"request": request}) + # Load courses from CSV + courses = [] + if COURSES_CSV.exists(): + try: + with open(COURSES_CSV, 'r', encoding='utf-8') as f: + reader = csv.DictReader(f) + courses = list(reader) + except Exception as e: + print(f"Error loading courses: {e}") + + return templates.TemplateResponse("about.html", { + "request": request, + "courses": courses + }) @app.get("/cost", response_class=HTMLResponse) async def cost_dashboard(request: Request): @@ -127,11 +155,14 @@ def send_order_endpoint( analysis = analyze_pdf(path) + # Get Matrix room ID from environment + matrix_room = os.environ.get("MATRIX_ROOM", "!eFWbWEnYsgeIKqyfjw:einszwovier.local") + try: send_order_sync( pdf_path=path, analysis=analysis, - room_id="!eFWbWEnYsgeIKqyfjw:einszwovier.local", + room_id=matrix_room, name=name, comment=comment, ) diff --git a/requirements.txt b/requirements.txt index 1ba2eca..ee29dc9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,12 +1,20 @@ +# Web framework fastapi uvicorn[standard] +gunicorn + +# Templating and forms jinja2 python-multipart + +# PDF processing pypdf2 -pdf2image +pdf2image # Requires poppler (install via system package manager) Pillow numpy -opencv-python + +# Configuration python-dotenv + +# Matrix integration matrix-nio -gunicorn diff --git a/restore.sh b/restore.sh new file mode 100755 index 0000000..a766bf5 --- /dev/null +++ b/restore.sh @@ -0,0 +1,72 @@ +#!/bin/bash +# Restore script for Studio EinsZwoVier services +# Usage: ./restore.sh YYYYMMDD_HHMMSS + +set -e + +if [ -z "$1" ]; then + echo "Usage: $0 BACKUP_DATE" + echo "Example: $0 20251007_020000" + exit 1 +fi + +# Get the directory where this script is located +SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +BACKUP_DIR="${BACKUP_DIR:-/path/to/backups/einszwovier}" +DATE=$1 + +echo "=== WARNING: This will OVERWRITE current data! ===" +echo "=== Press Ctrl+C within 10 seconds to cancel... ===" +sleep 10 + +echo "=== Starting restore from backup $DATE ===" +echo "Working directory: $SCRIPT_DIR" + +# Stop all containers +echo "Stopping containers..." +cd "$SCRIPT_DIR" +docker compose down + +# 1. Restore BookStack database +echo "Restoring BookStack database..." +docker compose up -d bookstack-mariadb +sleep 10 # Wait for MariaDB to start + +zcat "$BACKUP_DIR/bookstack_db_$DATE.sql.gz" | \ + docker exec -i bookstack-mariadb mariadb \ + -u"${DB_USERNAME:-bookstack}" \ + -p"${DB_PASSWORD}" \ + "${DB_DATABASE:-bookstack}" + +# 2. Restore BookStack files +echo "Restoring BookStack files..." +tar -xzf "$BACKUP_DIR/bookstack_files_$DATE.tar.gz" -C "$SCRIPT_DIR" + +# 3. Restore Matrix data +echo "Restoring Matrix data..." +rm -rf "$SCRIPT_DIR/matrix/data" +tar -xzf "$BACKUP_DIR/matrix_data_$DATE.tar.gz" -C "$SCRIPT_DIR" + +# 4. Restore PDF uploads +echo "Restoring PDF uploads..." +rm -rf "$SCRIPT_DIR/data/uploads" +tar -xzf "$BACKUP_DIR/pdf_uploads_$DATE.tar.gz" -C "$SCRIPT_DIR" + +# 5. Restore courses data (if exists) +if [ -f "$BACKUP_DIR/courses_$DATE.tar.gz" ]; then + echo "Restoring courses data..." + tar -xzf "$BACKUP_DIR/courses_$DATE.tar.gz" -C "$SCRIPT_DIR" +fi + +# 6. Restore .env if needed +if [ -f "$BACKUP_DIR/env_$DATE.backup" ]; then + echo "Environment file backup found (not automatically restored)" + echo "To restore: cp $BACKUP_DIR/env_$DATE.backup $SCRIPT_DIR/.env" +fi + +# Start all containers +echo "Starting all containers..." +docker compose up -d + +echo "=== Restore completed at $(date) ===" +echo "Please verify all services are working correctly" diff --git a/run_app.py b/run_app.py index 8b1824a..2e4e0a4 100644 --- a/run_app.py +++ b/run_app.py @@ -1,15 +1,62 @@ # run_app.py +""" +Development server that mimics Docker production conditions. +Uses Gunicorn with Uvicorn workers (like Docker) but with auto-reload enabled. +Loads environment variables from .env file. +""" import os -import uvicorn +import sys +from pathlib import Path -# Ensure upload folder exists +# Load environment variables from .env file (mimics docker-compose env_file) +try: + from dotenv import load_dotenv + env_path = Path(__file__).parent / '.env' + if env_path.exists(): + load_dotenv(env_path) + print(f"✓ Loaded environment from {env_path}") + else: + print(f"⚠ No .env file found at {env_path}") +except ImportError: + print("⚠ python-dotenv not installed. Run: pip install python-dotenv") + print(" Environment variables from .env will not be loaded") + +# Mimic Docker environment variables +os.environ.setdefault('PYTHONDONTWRITEBYTECODE', '1') +os.environ.setdefault('PYTHONUNBUFFERED', '1') + +# Ensure upload folder exists (mimics Dockerfile RUN mkdir) UPLOAD_FOLDER = "data/uploads" os.makedirs(UPLOAD_FOLDER, exist_ok=True) if __name__ == "__main__": - uvicorn.run( - "main:app", # module_name:app_instance - host="0.0.0.0", # accessible on all interfaces - port=8000, - reload=True, # enables auto-reload on code changes - ) + # Check if we should use Gunicorn (production-like) or Uvicorn (faster dev) + use_gunicorn = "--gunicorn" in sys.argv + + if use_gunicorn: + # Production-like: Gunicorn with Uvicorn workers (mimics Docker CMD exactly) + import subprocess + print("🚀 Starting with Gunicorn + Uvicorn workers (Docker production mode)") + print(" Workers: 4, Host: 0.0.0.0:8000, Timeout: 120s") + print(" Note: Auto-reload NOT available in Gunicorn mode") + subprocess.run([ + "gunicorn", "main:app", + "-k", "uvicorn.workers.UvicornWorker", + "--bind", "0.0.0.0:8000", + "--workers", "4", + "--timeout", "120", + "--reload" # Gunicorn's reload (watches Python files) + ]) + else: + # Development: Single Uvicorn worker with fast auto-reload + import uvicorn + print("🔧 Starting with Uvicorn (development mode with auto-reload)") + print(" Host: 0.0.0.0:8000") + print(" Tip: Use --gunicorn flag to test with production server") + uvicorn.run( + "main:app", + host="0.0.0.0", + port=8000, + reload=True, + log_level="info" + ) diff --git a/static/css/style.css b/static/css/style.css index 520ebaa..385587b 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -1,4 +1,7 @@ -/* === Fonts === */ +/* ======================================== + FONTS + ======================================== */ + @font-face { font-family: "HealTheWebB"; src: url("/static/fonts/HealTheWebB-Regular.otf") format("opentype"); @@ -9,13 +12,15 @@ src: url("/static/fonts/HealTheWebA-Regular.otf") format("opentype"); } -/* === Base Typography & Layout === */ + +/* ======================================== + BASE STYLES + ======================================== */ + body { font-family: 'HealTheWebA', sans-serif; background-color: #F5F5F7; - /* soft Apple-like neutral */ color: #1C1C1E; - /* dark grey text instead of pure black */ margin: 0; display: flex; flex-direction: column; @@ -23,26 +28,22 @@ body { width: 100%; } -h1, -h2, -h3, -h4, -h5, -h6 { +h1, h2, h3, h4, h5, h6 { font-family: 'HealTheWebB', sans-serif; color: #2C3E50; - /* muted marine blue for headers */ margin: 0.5em 0; text-align: center; } -/* === Header === */ + +/* ======================================== + HEADER + ======================================== */ + header { width: 100%; background-color: #E9EEF5; - /* light muted blue */ color: #1C1C1E; - /* dark grey instead of white */ padding: 1.5em 0; display: flex; flex-direction: column; @@ -53,7 +54,6 @@ header { header h1 { font-size: 2em; color: #2C3E50; - /* dark marine blue */ } header p { @@ -68,13 +68,17 @@ header p { cursor: pointer; } + +/* ======================================== + NAVIGATION + ======================================== */ + nav { margin-top: 0.5em; } nav a { color: #2C3E50; - /* muted dark blue links */ text-decoration: none; margin: 0 0.5em; font-weight: 600; @@ -82,10 +86,13 @@ nav a { nav a:hover { color: #FFCC00; - /* soft yellow hover */ } -/* === Main Container === */ + +/* ======================================== + MAIN CONTENT + ======================================== */ + main { flex: 1; width: 100%; @@ -104,49 +111,407 @@ main { box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08); } -/* === Link Cards & Buttons === */ -a.link-card, -button { - display: block; - padding: 1.2em 1em; +section { + margin-bottom: 2em; + padding: 1.5em; + background-color: #FAFAFA; + border-radius: 8px; + transition: transform 0.2s ease, box-shadow 0.2s ease; +} + +section:hover { + transform: translateY(-2px); + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); +} + +section h2 { + text-align: center; + margin-bottom: 1em; + color: #2C3E50; + border-bottom: 2px solid #cd0d80; + padding-bottom: 0.5em; + display: inline-block; + width: 100%; +} + +section p { + text-align: center; + line-height: 1.6; + max-width: 800px; + margin: 0 auto 1em; + color: #333; +} + +section ul { + max-width: 700px; + margin: 0 auto; + padding-left: 0; + list-style-position: inside; +} + +section ul li { + text-align: left; + line-height: 1.8; + margin-bottom: 0.5em; + padding-left: 1em; +} + +section a { + color: #cd0d80; + font-weight: 600; + text-decoration: none; + transition: color 0.2s ease; +} + +section a:hover { + color: #2C3E50; + text-decoration: underline; +} + +/* Course list specific styles */ +.courses-grid { + display: grid; + grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); + gap: 2em; + padding: 0; + margin-top: 2em; +} + +.course-card { + background-color: #FFFFFF; + border-radius: 12px; + overflow: visible; + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); + transition: transform 0.3s ease, box-shadow 0.3s ease; + display: flex; + flex-direction: row; + align-items: flex-start; + gap: 1em; + padding: 1.5em; + position: relative; +} + +.course-card:hover { + transform: translateY(-4px); + box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); +} + +.course-image { + width: 80px; + height: 80px; + min-width: 80px; + overflow: hidden; + border-radius: 8px; + background-color: #f0f0f0; + transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); + z-index: 1; + cursor: pointer; +} + +.course-image img { + width: 100%; + height: 100%; + object-fit: cover; + object-position: center; + transition: transform 0.3s ease; +} + +.course-card:hover .course-image { + width: 200px; + height: 200px; + box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3); + z-index: 10; +} + +.course-card:hover .course-image img { + transform: scale(1.02); +} + +.course-content { + flex-grow: 1; + display: flex; + flex-direction: column; +} + +.course-title { + font-size: 1.25em; + color: #2C3E50; + margin-bottom: 0.6em; + font-weight: 700; + line-height: 1.3; + border-bottom: 2px solid #cd0d80; + padding-bottom: 0.4em; +} + +.course-description { + color: #555; + line-height: 1.7; + margin-bottom: 1em; + flex-grow: 1; + font-size: 1em; +} + +.course-meta { + display: flex; + flex-direction: column; + gap: 0.5em; + margin-top: auto; + padding-top: 1em; + border-top: 1px solid #eee; +} + +.course-dates { + color: #cd0d80; + font-size: 1em; + font-weight: 600; + display: flex; + align-items: center; + gap: 0.5em; +} + +.course-audience { + color: #2C3E50; + font-size: 0.95em; + font-weight: 500; + display: flex; + align-items: center; + gap: 0.5em; +} + +/* Responsive adjustments for courses */ +@media (max-width: 768px) { + .courses-grid { + grid-template-columns: 1fr; + } + + .course-card { + flex-direction: column; + align-items: stretch; + } + + .course-image { + width: 100%; + height: 120px; + min-width: unset; + } + + .course-card:hover .course-image { + width: 100%; + height: 180px; + } + + .course-title { + font-size: 1.2em; + } +} + +/* Image Modal / Lightbox */ +.image-modal { + display: none; + position: fixed; + z-index: 9999; + left: 0; + top: 0; + width: 100%; + height: 100%; + background-color: rgba(0, 0, 0, 0.95); + justify-content: center; + align-items: center; + flex-direction: column; + padding: 20px; + animation: fadeIn 0.3s ease; +} + +@keyframes fadeIn { + from { opacity: 0; } + to { opacity: 1; } +} + +.modal-close { + position: absolute; + top: 20px; + right: 40px; + color: #ffffff; + font-size: 50px; + font-weight: bold; + cursor: pointer; + transition: color 0.3s ease; + z-index: 10000; +} + +.modal-close:hover { + color: #cd0d80; +} + +.modal-content { + max-width: 90%; + max-height: 85vh; + object-fit: contain; + border-radius: 8px; + box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5); + animation: zoomIn 0.3s ease; +} + +@keyframes zoomIn { + from { + transform: scale(0.8); + opacity: 0; + } + to { + transform: scale(1); + opacity: 1; + } +} + +#modalCaption { + color: #ffffff; font-size: 1.2em; text-align: center; - border-radius: 12px; - cursor: pointer; - transition: all 0.3s ease; - font-weight: 600; - box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08); + margin-top: 20px; + padding: 10px 20px; + background-color: rgba(0, 0, 0, 0.6); + border-radius: 8px; } -a.link-card { + +/* ======================================== + LINK CARDS + ======================================== */ + +a.link-card, +.link-card { + display: block; + padding: 1.2em 1em; background-color: #F9F9F9; - /* soft neutral card */ color: #1C1C1E; border-left: 6px solid #cd0d80; + border-radius: 12px; text-decoration: none; + cursor: pointer; + transition: all 0.3s ease; + box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08); + margin-bottom: 1rem; } -a.link-card:hover { +a.link-card:hover, +.link-card:hover { background-color: #cd0d80; color: #FFFFFF; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); transform: translateY(-2px); } +.link-card .title { + font-size: 1.25rem; + font-weight: 600; +} + +.link-card .tagline { + font-size: 0.875rem; + color: #666; + margin-top: 0.25rem; +} + + +/* ======================================== + STATUS CARDS + ======================================== */ + +.status-cards-container { + display: flex; + flex-wrap: wrap; + gap: 20px; + margin-bottom: 20px; +} + +.status-cards-container .status-card { + flex: 1 1 300px; + min-width: 280px; +} + +.status-card { + background-color: #ffffff; + border: 1px solid #ddd; + border-radius: 8px; + box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); + padding: 15px; +} + +.status-header { + font-weight: 600; + font-size: 1.1rem; + margin-bottom: 10px; +} + +.status-body { + display: flex; + align-items: center; + gap: 0.5rem; + font-size: 0.95rem; + line-height: 1.5; + color: #333; +} + +.status-body a { + color: #1976d2; + text-decoration: underline; +} + +.status-body a:hover { + text-decoration: none; +} + +.status-indicator { + display: inline-block; + width: 12px; + height: 12px; + border-radius: 50%; + margin-right: 8px; + flex-shrink: 0; +} + +.status-indicator.open { + background-color: #28a745; +} + +.status-indicator.closed { + background-color: #dc3545; +} + +.status-text { + font-size: 0.9rem; +} + + +/* ======================================== + BUTTONS + ======================================== */ + button { + display: block; + padding: 1.2em 1em; + font-size: 1.2em; + font-weight: 600; + text-align: center; background-color: #cd0d80; color: #FFFFFF; border: none; border-radius: 8px; + cursor: pointer; + transition: all 0.3s ease; + box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08); } button:hover { background-color: #FFCC00; - /* soft yellow */ color: #1C1C1E; } -/* === Forms === */ + +/* ======================================== + FORMS + ======================================== */ + form { display: flex; flex-direction: column; @@ -165,7 +530,6 @@ form input[type="file"] { width: 100%; padding: 0.6em; border: 1px solid #D1D1D6; - /* light grey border like Apple forms */ border-radius: 8px; font-size: 1em; box-sizing: border-box; @@ -178,22 +542,11 @@ form textarea { min-height: 90px; } -/* === Rate Info & Errors === */ -.rate-info { - text-align: center; - color: #2C3E50; - margin-top: 1em; -} -.error { - color: #D93025; - /* subtle red */ - font-weight: bold; - text-align: center; - margin-top: 1em; -} +/* ======================================== + TABLES + ======================================== */ -/* === Tables === */ table { width: 100%; border-collapse: collapse; @@ -203,8 +556,7 @@ table { box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06); } -th, -td { +th, td { border: 1px solid #E1E1E6; padding: 0.5em; text-align: center; @@ -218,19 +570,34 @@ th { .color { background-color: #FDE9F2; - /* soft pink */ } .black { background-color: #E5E5FF; - /* soft blue */ } .totals { font-weight: 600; } -/* === Alerts === */ + +/* ======================================== + ALERTS & MESSAGES + ======================================== */ + +.rate-info { + text-align: center; + color: #2C3E50; + margin-top: 1em; +} + +.error { + color: #D93025; + font-weight: bold; + text-align: center; + margin-top: 1em; +} + .alert { padding: 1em; border-radius: 8px; @@ -241,7 +608,6 @@ th { .alert.success { background-color: #2C3E50; - /* muted marine blue */ color: #FFFFFF; } @@ -250,14 +616,41 @@ th { color: #FFFFFF; } -/* === Footer === */ -footer { - text-align: center; - padding: 1.5em 1em; - background-color: #F2F2F7; - /* soft neutral */ - color: #1C1C1E; +.disclaimer-alert { + margin-top: 10px; + padding: 10px 15px; + background-color: #fff8e1; + border-left: 4px solid #fbc02d; + border-radius: 6px; + font-size: 0.9rem; + color: #333; + line-height: 1.4; +} + +.disclaimer-alert a { + color: #1976d2; + text-decoration: underline; +} + +.disclaimer-alert a:hover { + text-decoration: none; +} + + +/* ======================================== + FOOTER + ======================================== */ + +footer, +.footer { width: 100%; + margin-top: 30px; + padding: 15px 0; + background-color: #F2F2F7; + text-align: center; + font-size: 0.85rem; + color: #555; + border-top: 1px solid #ddd; } footer img.footer-logo { @@ -265,7 +658,33 @@ footer img.footer-logo { margin-bottom: 0.5em; } -/* === Links under forms === */ +.footer-container { + display: flex; + justify-content: center; + gap: 10px; + flex-wrap: wrap; +} + +.footer a, +footer a { + color: #1976d2; + text-decoration: none; +} + +.footer a:hover, +footer a:hover { + text-decoration: underline; +} + +.admin-link { + font-weight: 600; +} + + +/* ======================================== + LINKS + ======================================== */ + .link a { color: #2C3E50; text-decoration: underline; @@ -273,7 +692,11 @@ footer img.footer-logo { text-align: center; } -/* === Responsive / Mobile Friendly === */ + +/* ======================================== + RESPONSIVE - TABLET (max-width: 1024px) + ======================================== */ + @media (max-width: 1024px) { .container { width: 95%; @@ -319,13 +742,17 @@ footer img.footer-logo { overflow-x: auto; } - th, - td { + th, td { padding: 0.45em; font-size: 0.9em; } } + +/* ======================================== + RESPONSIVE - MOBILE (max-width: 768px) + ======================================== */ + @media (max-width: 768px) { header h1 { font-size: 1.5em; @@ -348,191 +775,4 @@ footer img.footer-logo { form textarea { min-height: 70px; } -} - -.link-card { - display: block; - padding: 1rem; - border-radius: 0.75rem; - text-decoration: none; - color: inherit; - background: #f5f5f5; - margin-bottom: 1rem; - transition: background 0.2s; -} - -.link-card:hover { - background: #eaeaea; -} - -.link-card .title { - font-size: 1.25rem; - font-weight: 600; -} - -.link-card .tagline { - font-size: 0.875rem; - color: #666; - margin-top: 0.25rem; -} - - -.status-card { - border: 1px solid #ddd; - border-radius: 8px; - padding: 1rem; - width: 220px; - margin-bottom: 1rem; - background-color: #f9f9f9; -} - -.status-header { - font-weight: bold; - margin-bottom: 0.5rem; -} - -.status-body { - display: flex; - align-items: center; - gap: 0.5rem; -} - -.status-indicator { - display: inline-block; - width: 16px; - height: 16px; - border-radius: 50%; - flex-shrink: 0; -} - -.status-indicator.open { - background-color: #28a745; - /* green */ -} - -.status-indicator.closed { - background-color: #dc3545; - /* red */ -} - -.status-text { - font-size: 0.9rem; -} - -/* --- Disclaimer Alert --- */ -.disclaimer-alert { - margin-top: 10px; - padding: 10px 15px; - background-color: #fff8e1; - /* subtle light yellow */ - border-left: 4px solid #fbc02d; - /* yellow accent */ - border-radius: 6px; - font-size: 0.9rem; - color: #333; - line-height: 1.4; -} - -.disclaimer-alert a { - color: #1976d2; - /* subtle blue for links */ - text-decoration: underline; -} - -.disclaimer-alert a:hover { - text-decoration: none; -} - -/* --- Footer --- */ -.footer { - margin-top: 30px; - padding: 15px 0; - background-color: #f5f5f5; - text-align: center; - font-size: 0.85rem; - color: #555; - border-top: 1px solid #ddd; -} - -.footer-container { - display: flex; - justify-content: center; - gap: 10px; - flex-wrap: wrap; -} - -.footer a { - color: #1976d2; - text-decoration: none; -} - -.footer a:hover { - text-decoration: underline; -} - -/* Optional: subtle visual separation for admin link */ -.admin-link { - font-weight: 600; -} - -/* Container for status cards side by side */ -.status-cards-container { - display: flex; - flex-wrap: wrap; - gap: 20px; - /* space between cards */ - margin-bottom: 20px; -} - -/* Each card takes equal width, responsive */ -.status-cards-container .status-card { - flex: 1 1 300px; - /* grow, shrink, minimum width */ - min-width: 280px; - /* ensures cards don't shrink too small on mobile */ -} - -/* Optional: keep existing status-card styles */ -.status-card { - background-color: #ffffff; - border-radius: 8px; - box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); - padding: 15px; -} - -.status-header { - font-weight: 600; - font-size: 1.1rem; - margin-bottom: 10px; -} - -.status-body { - font-size: 0.95rem; - line-height: 1.5; - color: #333; -} - -.status-indicator { - display: inline-block; - width: 12px; - height: 12px; - border-radius: 50%; - margin-right: 8px; -} - -.status-indicator.open { - background-color: #4caf50; -} - -.status-indicator.closed { - background-color: #f44336; -} - -.status-body a { - color: #1976d2; - text-decoration: underline; -} - -.status-body a:hover { - text-decoration: none; } \ No newline at end of file diff --git a/static/images/courses/löten und leuchten.jpeg b/static/images/courses/löten und leuchten.jpeg new file mode 100644 index 0000000..d25aebe Binary files /dev/null and b/static/images/courses/löten und leuchten.jpeg differ diff --git a/static/images/courses/reshaping plastics.jpeg b/static/images/courses/reshaping plastics.jpeg new file mode 100644 index 0000000..3eff11c Binary files /dev/null and b/static/images/courses/reshaping plastics.jpeg differ diff --git a/static/images/courses/textiles plotten.jpeg b/static/images/courses/textiles plotten.jpeg new file mode 100644 index 0000000..b899507 Binary files /dev/null and b/static/images/courses/textiles plotten.jpeg differ diff --git a/static/images/courses/vogelvilla.jpeg b/static/images/courses/vogelvilla.jpeg new file mode 100644 index 0000000..22d8fa8 Binary files /dev/null and b/static/images/courses/vogelvilla.jpeg differ diff --git a/templates/about.html b/templates/about.html index f3e1089..b30fd80 100644 --- a/templates/about.html +++ b/templates/about.html @@ -18,17 +18,21 @@

Ausstattung

Betreuungsteam

Betreut wird der Maker Space von Aron Petau und Friedrich Weber. Sie sind - montags bis mittwochs von 11:00 bis 15:00 Uhr vor Ort. Einfach vorbeischauen, Ideen vorstellen und loslegen! + von Dienstag bis Donnerstag von 11:00 bis 16:00 Uhr vor Ort. Einfach vorbeischauen, Ideen vorstellen und loslegen!

@@ -45,13 +49,72 @@

Aktuelle Kurse

- + {% if courses %} +
+ {% for course in courses %} +
+ {% if course.image %} +
+ {{ course.title }} +
+ {% endif %} +
+

{{ course.title }}

+ {% if course.description %} +

{{ course.description }}

+ {% endif %} +
+ {% if course.dates %} +
📅 {{ course.dates }}
+ {% endif %} + {% if course.offen_fuer %} +
👥 {{ course.offen_fuer }}
+ {% endif %} +
+
+
+ {% endfor %} +
+ {% else %} +

Aktuell sind keine Kurse geplant. Schaut bald wieder vorbei!

+ {% endif %}
+ +
+ × + +
+
+ + +

Standort

Gabriele-von-Bülow-Gymnasium
diff --git a/templates/landing.html b/templates/landing.html index 7409136..25f4275 100644 --- a/templates/landing.html +++ b/templates/landing.html @@ -30,7 +30,7 @@

Hinweis
- Diese Website ist ein gemeinschaftliches Projekt. Jede*r ist eingeladen, Verbesserungen beizutragen. + Diese Website ist ein gemeinschaftliches Projekt. Jede*r ist eingeladen, Verbesserungen beizutragen: Quellcode ansehen.
@@ -49,13 +49,13 @@
Berechne einfach Druck- und Materialkosten für Posterprints und andere Großformate.
- +
Wissenssammlung
-
Zugriff auf geteilte Anleitungen und Dokumente innerhalb von Docmost – ideal für die - Zusammenarbeit.
+
Zugriff auf geteilte Anleitungen und Dokumente innerhalb von BookStack – ideal für die + Zusammenarbeit. Schreib uns eine kurze E-Mail, um einen Login zu erhalten.
- +
Lokaler Chatbot
Teste unsere schulischen Large Language Models direkt über die Weboberfläche.
@@ -70,7 +70,7 @@