diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..dfdb8b77 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +*.sh text eol=lf diff --git a/.github/workflows/common_crawler.yaml b/.github/workflows/common_crawler.yaml deleted file mode 100644 index 52b4007d..00000000 --- a/.github/workflows/common_crawler.yaml +++ /dev/null @@ -1,40 +0,0 @@ -name: Common Crawler - -# Pull request will run every day at 1AM. -on: - workflow_dispatch: -env: - # The access token enabling write access to the Huggingface Database - HUGGINGFACE_ACCESS_TOKEN: ${{ secrets.HUGGINGFACE_ACCESS_TOKEN }} - -jobs: - build-and-commit: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - with: - # This is necessary to push commits back to the repository - persist-credentials: true - fetch-depth: 0 # Fetch all history for all tags and branches - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: 3.11.8 - - name: Upgrade pip - run: python -m pip install --upgrade pip - - name: Install dependencies - run: pip install -r source_collectors/common_crawler/requirements_common_crawler_action.txt - - name: Run script - run: python source_collectors/common_crawler/main.py CC-MAIN-2024-10 *.gov police --config source_collectors/common_crawler/config.ini --pages 20 - - name: Configure Git - run: | - git config --local user.email "action@github.com" - git config --local user.name "GitHub Action" - - name: Add common_crawler cache and common_crawler batch_info - run: | - git add source_collectors/common_crawler/data/cache.json - git add source_collectors/common_crawler/data/batch_info.csv - - name: Commit changes - run: git commit -m "Update common_crawler cache and batch_info" - - name: Push changes - run: git push \ No newline at end of file diff --git a/.github/workflows/populate_labelstudio.yml b/.github/workflows/populate_labelstudio.yml deleted file mode 100644 index 09ca68b2..00000000 --- a/.github/workflows/populate_labelstudio.yml +++ /dev/null @@ -1,94 +0,0 @@ -name: Populate LabelStudio - -on: - workflow_dispatch: - inputs: - crawl_id: - description: 'Common Crawl Corpus' - required: true - default: 'CC-MAIN-2024-10' - url: - description: 'URL type' - required: true - default: '*.gov' - keyword: - description: 'keyword' - required: true - default: 'police' - pages: - description: 'num pages' - required: true - default: '2' - record_type: - description: 'record type' - required: false - - -jobs: - run-script: - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v3 - with: - ref: main - - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: '3.x' - - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r annotation_pipeline/requirements.txt - - - name: Run main script - env: - HUGGINGFACE_ACCESS_TOKEN: ${{ secrets.HUGGINGFACE_ACCESS_TOKEN }} - LABEL_STUDIO_ACCESS_TOKEN: ${{ secrets.LABEL_STUDIO_ACCESS_TOKEN }} - LABEL_STUDIO_PROJECT_ID: ${{ secrets.LABEL_STUDIO_PROJECT_ID }} - LABEL_STUDIO_ORGANIZATION: ${{ secrets.LABEL_STUDIO_ORGANIZATION }} - run: | - if [ -n "${{ github.event.inputs.record_type }}" ]; then - python annotation_pipeline/populate_labelstudio.py ${{ github.event.inputs.crawl_id }} "${{ github.event.inputs.url }}" ${{ github.event.inputs.keyword }} --pages ${{ github.event.inputs.pages }} --record_type "${{ github.event.inputs.record_type }}" - else - python annotation_pipeline/populate_labelstudio.py ${{ github.event.inputs.crawl_id }} "${{ github.event.inputs.url }}" ${{ github.event.inputs.keyword }} --pages ${{ github.event.inputs.pages }} - fi - - - name: Check created/modified files - run: | - echo "Checking files in annotation_pipeline/data/" - ls -R annotation_pipeline/data/ - - - name: Create new branch - run: | - BRANCH_NAME=bot-update-$(date +%Y%m%d%H%M%S) - git checkout -b $BRANCH_NAME - echo "BRANCH_NAME=$BRANCH_NAME" >> $GITHUB_ENV - - - name: Commit and push outputs - run: | - git config --global user.name "github-actions[bot]" - git config --global user.email "action@github.com" - git add annotation_pipeline/data/batch_info.csv - git add annotation_pipeline/data/cache.json - if [ -d "annotation_pipeline/data/tag_collector" ]; then - git add annotation_pipeline/data/tag_collector/* - fi - git commit -m "Update batch info, cache, and collected urls & tags" - git log -1 --stat - git push --set-upstream origin $BRANCH_NAME - - - name: Create pull request - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - BRANCH_NAME: ${{ env.BRANCH_NAME }} - run: | - PR_TITLE="Update batch info, cache, and collected urls & tags" - PR_BODY="This PR was created automatically by a GitHub Action." - echo "Creating PR from branch $BRANCH_NAME to main" - curl -X POST -H "Authorization: token $GITHUB_TOKEN" \ - -d "{\"title\":\"$PR_TITLE\",\"body\":\"$PR_BODY\",\"head\":\"$BRANCH_NAME\",\"base\":\"main\"}" \ - https://api.github.com/repos/${{ github.repository }}/pulls diff --git a/.github/workflows/test_app.yml b/.github/workflows/test_app.yml index c83608ac..64164dc3 100644 --- a/.github/workflows/test_app.yml +++ b/.github/workflows/test_app.yml @@ -1,27 +1,12 @@ -# This workflow will test the Source Collector App -# Utilizing the docker-compose file in the root directory name: Test Source Collector App -on: pull_request -#jobs: -# build: -# runs-on: ubuntu-latest -# steps: -# - name: Checkout repository -# uses: actions/checkout@v4 -# - name: Run docker-compose -# uses: hoverkraft-tech/compose-action@v2.0.1 -# with: -# compose-file: "docker-compose.yml" -# - name: Execute tests in the running service -# run: | -# docker ps -a && docker exec data-source-identification-app-1 pytest /app/tests/test_automated +on: pull_request jobs: container-job: runs-on: ubuntu-latest timeout-minutes: 20 - container: python:3.12.8 + container: python:3.11.9 services: postgres: @@ -34,22 +19,28 @@ jobs: --health-timeout 5s --health-retries 5 + env: + POSTGRES_PASSWORD: postgres + POSTGRES_USER: postgres + POSTGRES_DB: postgres + POSTGRES_HOST: postgres + POSTGRES_PORT: 5432 + GOOGLE_API_KEY: TEST + GOOGLE_CSE_ID: TEST + steps: - name: Checkout repository uses: actions/checkout@v4 - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements.txt + + - name: Install uv and set the python version + uses: astral-sh/setup-uv@v5 + with: + python-version: ${{ matrix.python-version }} + + - name: Install the project + run: uv sync --locked --all-extras --dev + - name: Run tests run: | - pytest tests/test_automated - pytest tests/test_alembic - env: - POSTGRES_PASSWORD: postgres - POSTGRES_USER: postgres - POSTGRES_DB: postgres - POSTGRES_HOST: postgres - POSTGRES_PORT: 5432 - GOOGLE_API_KEY: TEST - GOOGLE_CSE_ID: TEST + uv run pytest tests/automated + uv run pytest tests/alembic diff --git a/agency_identifier/__init__.py b/.project-root similarity index 100% rename from agency_identifier/__init__.py rename to .project-root diff --git a/Dockerfile b/Dockerfile index 8e64b85d..85931528 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,17 +1,32 @@ # Dockerfile for Source Collector FastAPI app -FROM python:3.12.8 +FROM python:3.11.9-slim +COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/ # Set working directory WORKDIR /app -# Copy project files -COPY . . +COPY pyproject.toml uv.lock ./ # Install dependencies -RUN pip install --no-cache-dir -r requirements.txt +ENV UV_PROJECT_ENVIRONMENT="/usr/local/" +RUN uv sync --locked --no-dev +# Must call from the root directory because uv does not add playwright to path +RUN playwright install-deps chromium +RUN playwright install chromium + +# Copy project files +COPY src ./src +COPY alembic.ini ./alembic.ini +COPY alembic ./alembic +COPY apply_migrations.py ./apply_migrations.py +COPY execute.sh ./execute.sh +COPY .project-root ./.project-root # Expose the application port EXPOSE 80 -RUN chmod +x execute.sh \ No newline at end of file +RUN chmod +x execute.sh +# Use the below for ease of local development, but remove when pushing to GitHub +# Because there is no .env file in the repository (for security reasons) +#COPY .env ./.env diff --git a/ENV.md b/ENV.md index a8210fb9..a2e84f24 100644 --- a/ENV.md +++ b/ENV.md @@ -2,17 +2,44 @@ This page provides a full list, with description, of all the environment variabl Please ensure these are properly defined in a `.env` file in the root directory. -| Name | Description | Example | -|--------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------| -| `LABEL_STUDIO_ACCESS_TOKEN` | The access token for the Label Studio API. The access token for the Label Studio API. This can be obtained by logging into Label Studio and navigating to the [user account section](https://app.heartex.com/user/account), where the access token can be copied. | `abc123` | -| `LABEL_STUDIO_PROJECT_ID` | The project ID for the Label Studio API. This can be obtained by logging into Label Studio and navigating to the relevant project, where the project id will be in the URL, as in `https://app.heartex.com/projects/58475/` | `58475` | -| `LABEL_STUDIO_ORGANIZATION_ID` | The organization ID for the Label Studio API. This can be obtained by logging into Label Studio and navigating to the [Organization section](https://app.heartex.com/organization?page=1), where the organization ID can be copied. | `6758` | -| `GOOGLE_API_KEY` | The API key required for accessing the Google Custom Search API | `abc123` | -| `GOOGLE_CSE_ID` | The CSE ID required for accessing the Google Custom Search API | `abc123` | -|`POSTGRES_USER` | The username for the test database | `test_source_collector_user` | -|`POSTGRES_PASSWORD` | The password for the test database | `HanviliciousHamiltonHilltops` | -|`POSTGRES_DB` | The database name for the test database | `source_collector_test_db` | -|`POSTGRES_HOST` | The host for the test database | `127.0.0.1` | -|`POSTGRES_PORT` | The port for the test database | `5432` | -|`DS_APP_SECRET_KEY`| The secret key used for decoding JWT tokens produced by the Data Sources App. Must match the secret token that is used in the Data Sources App for encoding. |`abc123`| -|`DEV`| Set to any value to run the application in development mode. |`true`| +| Name | Description | Example | +|----------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------| +| `GOOGLE_API_KEY` | The API key required for accessing the Google Custom Search API | `abc123` | +| `GOOGLE_CSE_ID` | The CSE ID required for accessing the Google Custom Search API | `abc123` | +|`POSTGRES_USER` | The username for the test database | `test_source_collector_user` | +|`POSTGRES_PASSWORD` | The password for the test database | `HanviliciousHamiltonHilltops` | +|`POSTGRES_DB` | The database name for the test database | `source_collector_test_db` | +|`POSTGRES_HOST` | The host for the test database | `127.0.0.1` | +|`POSTGRES_PORT` | The port for the test database | `5432` | +|`DS_APP_SECRET_KEY`| The secret key used for decoding JWT tokens produced by the Data Sources App. Must match the secret token `JWT_SECRET_KEY` that is used in the Data Sources App for encoding. | `abc123` | +|`DEV`| Set to any value to run the application in development mode. | `true` | +|`DEEPSEEK_API_KEY`| The API key required for accessing the DeepSeek API. | `abc123` | +|`OPENAI_API_KEY`| The API key required for accessing the OpenAI API. | `abc123` | +|`PDAP_EMAIL`| An email address for accessing the PDAP API.[^1] | `abc123@test.com` | +|`PDAP_PASSWORD`| A password for accessing the PDAP API.[^1] | `abc123` | +|`PDAP_API_KEY`| An API key for accessing the PDAP API. | `abc123` | +|`PDAP_API_URL`| The URL for the PDAP API| `https://data-sources-v2.pdap.dev/api`| +|`DISCORD_WEBHOOK_URL`| The URL for the Discord webhook used for notifications| `abc123` | +|`HUGGINGFACE_INFERENCE_API_KEY` | The API key required for accessing the Huggingface Inference API. | `abc123` | + +[^1:] The user account in question will require elevated permissions to access certain endpoints. At a minimum, the user will require the `source_collector` and `db_write` permissions. + +## Foreign Data Wrapper (FDW) +``` +FDW_DATA_SOURCES_HOST=127.0.0.1 # The host of the Data Sources Database, used for FDW setup +FDW_DATA_SOURCES_PORT=1234 # The port of the Data Sources Database, used for FDW setup +FDW_DATA_SOURCES_USER=fdw_user # The username for the Data Sources Database, used for FDW setup +FDW_DATA_SOURCES_PASSWORD=password # The password for the Data Sources Database, used for FDW setup +FDW_DATA_SOURCES_DB=db_name # The database name for the Data Sources Database, used for FDW setup + +``` + +## Data Dumper + +``` +PROD_DATA_SOURCES_HOST=127.0.0.1 # The host of the production Data Sources Database, used for Data Dumper +PROD_DATA_SOURCES_PORT=1234 # The port of the production Data Sources Database, used for Data Dumper +PROD_DATA_SOURCES_USER=dump_user # The username for the production Data Sources Database, used for Data Dumper +PROD_DATA_SOURCES_PASSWORD=password # The password for the production Data Sources Database, used for Data Dumper +PROD_DATA_SOURCES_DB=db_name # The database name for the production Data Sources Database, used for Data Dumper +``` \ No newline at end of file diff --git a/README.md b/README.md index 34211198..ae2263dc 100644 --- a/README.md +++ b/README.md @@ -8,28 +8,38 @@ name | description of purpose agency_identifier | Matches URLs with an agency from the PDAP database annotation_pipeline | Automated pipeline for generating training data in our ML data source identification models. Manages common crawl, HTML tag collection, and Label Studio import/export html_tag_collector | Collects HTML header, meta, and title tags and appends them to a JSON file. The idea is to make a richer dataset for algorithm training and data labeling. -hugging_face | Utilities for interacting with our machine learning space at [Hugging Face](https://huggingface.co/PDAP) identification_pipeline.py | The core python script uniting this modular pipeline. More details below. -openai-playground | Scripts for accessing the openai API on PDAP's shared account +llm_api_logic | Scripts for accessing the openai API on PDAP's shared account source_collectors| Tools for extracting metadata from different sources, including CKAN data portals and Common Crawler collector_db | Database for storing data from source collectors collector_manager | A module which provides a unified interface for interacting with source collectors and relevant data core | A module which integrates other components, such as collector_manager and collector_db api | API for interacting with collector_manager, core, and collector_db local_database | Resources for setting up a test database for local development +security_manager| A module which provides a unified interface for interacting with authentication and authorization | +tests | Unit and integration tests | +util | various utility functions | + +## Installation + +``` +uv sync +``` ## How to use -1. Create an .env file in this directory with these contents, or set the environment variable another way: `VUE_APP_PDAP_API_KEY=KeyGoesHere` -2. Create a file in this directory containing a list of urls to be identified, or modify the existing `urls.csv` file. This requires one URL per line with at least a `url` column. -3. Run `python3 identification_pipeline.py urls.csv` -4. Results will be written in the same directory as results.csv -5. If importing "identification_pipeline_main" function, it expects a dataframe as an argument and returns a resulting dataframe +1. Create an .env file in this directory following the instructions in `ENV.md` + 1. If necessary, start up the database using `docker compose up -d` while in the `local_database` directory +2. Run `fastapi dev main.py` to start up the fast API server +3. In a browser, navigate to `http://localhost:8000/docs` to see the full list of API endpoints + +Note that to access API endpoints, you will need to have a valid Bearer Token from the Data Sources API at `https://data-sources.pdap.io/api` # Contributing Thank you for your interest in contributing to this project! Please follow these guidelines: +- [These Design Principles](https://github.com/Police-Data-Accessibility-Project/meta/blob/main/DESIGN-PRINCIPLES.md) may be used to make decisions or guide your work. - If you want to work on something, create an issue first so the broader community can discuss it. - If you make a utility, script, app, or other useful bit of code: put it in a top-level directory with an appropriate name and dedicated README and add it to the index. @@ -58,7 +68,7 @@ To access the API documentation, visit `http://{host}:8000/docs`. To run tests on the container, run: ```bash -docker exec data-source-identification-app-1 pytest /app/tests/test_automated +docker exec data-source-identification-app-1 pytest /app/tests/automated ``` Be sure to inspect the `docker-compose.yml` file in the root directory -- some environment variables are dependant upon the Operating System you are using. @@ -69,19 +79,16 @@ Be sure to inspect the `docker-compose.yml` file in the root directory -- some e ```mermaid flowchart TD - SourceCollectors["**Source Collectors:** batches of potentially useful URLs created with a variety of strategies"] - Logging["Logging source collection attempts"] - API["Submitting sources to the **Data Sources API** for approval"] - Identifier["**Data Source Identifier:** automatically collecting metadata and attempting to identify properties"] - SourceCollectorLabeling["Human labeling of missing or uncertain metadata in Source Collector"] - - Identifier --> SourceCollectorLabeling - Identifier ---> API - SourceCollectorLabeling --> API - Identifier --> Logging + SourceCollectors["**Source Collectors:** scripts for creating batches of potentially useful URLs using different strategies"] + Identifier["Batches are prepared for labeling by automatically collecting metadata and identifying low-hanging fruit properties"] + SourceCollectorLabeling["Human labeling of missing or uncertain metadata takes place in Source Collector Retool app"] + SourceCollectorReview["Human Final Review of the labeled sources, for submission or discard, in Retool"] + API["Submitting sources to the Data Sources API when they are Relevant and have an **Agency, Record Type, and Name**"] SourceCollectors --> Identifier - + Identifier --> SourceCollectorLabeling + SourceCollectorLabeling --> SourceCollectorReview + SourceCollectorReview --> API API --> Search["Allowing users to search for data and browse maps"] Search --> Sentiment["Capturing user sentiment and overall database utility"] API --> MLModels["Improving ML metadata labelers: relevance, agency, record type, etc"] @@ -95,7 +102,6 @@ flowchart TD class API gold; class Search lightgold; class MLModels,Missingness lightergold; - class SourceCollectors,Identifier byzantium %% Define specific classes classDef gray fill:#bfc0c0 diff --git a/agency_identifier/README.md b/agency_identifier/README.md deleted file mode 100644 index c1dadcf2..00000000 --- a/agency_identifier/README.md +++ /dev/null @@ -1,40 +0,0 @@ -# Agency Identifier - -The Agency Identifier is a Python application that matches URLs with an agency from the PDAP database. It takes a list of URLs as input, either from a CSV file or a DataFrame, and returns a DataFrame with the matched agencies. - -## How to use - -### Running from the command line - -1. Clone the repository. -2. Create a CSV file containing a list of URLs to be identified. The URLs should be listed one per line, and the file should have at least a "url" column. -3. Run the command `python3 identifier.py [url_file]`, replacing `[url_file]` with the path to your CSV file. -4. The results will be written to a file named `results.csv` in the same directory. - -### Using the "identifier_main" function - -If you're using the Agency Identifier in your own Python code, you can import the `process_and_write_data` function. This function takes a DataFrame as an argument and returns a DataFrame with the matched agencies. - -Here's an example of how to use it: - -```python -import polar as pl -from identifier import process_and_write_data - -# Create a DataFrame with the URLs to be identified -df = pl.DataFrame({"url": ["http://agency1.com/page1", "http://agency2.com/page2"]}) - -# Call the identifier_main function -result = process_and_write_data(df) - -# Print the resulting DataFrame -print(result) -``` - -# Requirements - -- Python 3 -- urllib -- re -- polars -- requests \ No newline at end of file diff --git a/agency_identifier/identifier.py b/agency_identifier/identifier.py deleted file mode 100644 index 786aeba6..00000000 --- a/agency_identifier/identifier.py +++ /dev/null @@ -1,234 +0,0 @@ -import os -import re -import sys -from urllib.parse import urlparse - -import polars -import requests - -API_URL = "https://data-sources.pdap.io/api/agencies/" - - -def get_page_data(page: int) -> dict: - """Fetches a page of data from the API. - - Args: - page (int): The page number to fetch. - - Returns: - dict: The data for the page. - """ - api_key = "Bearer " + os.getenv("VUE_APP_PDAP_API_KEY") - response = requests.get(f"{API_URL}{page}", headers={"Authorization": api_key}) - if response.status_code != 200: - raise Exception("Request to PDAP API failed. Response code:", response.status_code) - return response.json()["data"] - - -def get_agencies_data() -> polars.DataFrame: - """Retrives a list of agency dictionaries from file. - - Returns: - list: List of agency dictionaries. - """ - page = 1 - agencies_df = polars.DataFrame() - results = get_page_data(page) - - while results: - # Use list comprehension to clean results - clean_results = clean_page_data_results(results) - new_agencies_df = polars.DataFrame(clean_results) - if not new_agencies_df.is_empty(): - agencies_df = polars.concat([agencies_df, new_agencies_df]) - page += 1 - results = get_page_data(page) - - return agencies_df - - -def clean_page_data_results(results: list[dict[str, str]]) -> list[dict[str, str]]: - clean_results = [] - for result in results: - clean_result = {} - for k, v in result.items(): - if v is None: - clean_result[k] = "" - else: - clean_result[k] = v - clean_results.append(clean_result) - return clean_results - - -def parse_hostname(url: str) -> str: - """Retrieves the hostname (example.com) from a url string. - - Args: - url (str): Url to parse. - - Returns: - str: The url's hostname. - """ - try: - # Remove leading and trailing whitespaces and quotes - url = url.strip().strip('"') - - # Add "http://" to the url if it's not present - if not re.match(r'http(s)?://', url): - url = "http://" + url - - # Parse the url and retrieve the hostname - parsed_url = urlparse(url) - hostname = parsed_url.hostname - - # Remove "www." from the hostname - hostname = re.sub(r'^www\.', '', hostname) - except Exception as e: - print(f"An error occurred while parsing the URL: {e}") - raise e - return hostname - - -def remove_http(url: str) -> str: - """Removes http(s)://www. from a given url so that different protocols don't throw off the matcher. - - Args: - url (str): Url to remove http from. - - Returns: - str: The url without http(s)://www. - """ - try: - # Remove http(s)://www. and www. prefixes from the url - url = re.sub(r'^(http(s)?://)?(www\.)?', '', url) - # Ensure the url ends with a / - if not url.endswith('/'): - url += '/' - except Exception as e: - print(f"An error occurred while processing the URL: {e}") - raise e - return url - - -def match_agencies(agencies, agency_hostnames, url): - """Attempts to match a url with an agency. - - Args: - agencies (list): List of agency dictionaries. - agency_hostnames (list): List of corresponding agency hostnames. - url (str): Url to match. - - Returns: - dict: Dictionary of a match in the form {"url": url, "agency": matched_agency}. - """ - url = url.strip().strip('"') - url_hostname = parse_hostname(url) - - if url_hostname in agency_hostnames: - # All agencies with the same hostname as the url are found - matched_agency = [ - agencies[i] for i, agency_hostname in enumerate(agency_hostnames) if url_hostname == agency_hostname - ] - else: - return {"url": url, "agency": [], "status": "No match found"} - - # More than one agency was found - if len(matched_agency) > 1: - url_no_http = remove_http(url) - - for agency in matched_agency: - agency_homepage = remove_http(agency["homepage_url"]) - # It is assumed that if the url begins with the agency's url, then it belongs to that agency - if url_no_http.startswith(agency_homepage): - return {"url": url, "agency": agency, "status": "Match found"} - break - - return {"url": url, "agency": [], "status": "Contested match"} - - return {"url": url, "agency": matched_agency[0], "status": "Match found"} - - -def match_urls_to_agencies_and_clean_data(urls_df: polars.DataFrame) -> polars.DataFrame: - agencies_df = get_agencies_data() - # Filter out agencies without a homepage_url set - # Define column names as variables for flexibility - homepage_url_col = "homepage_url" - hostname_col = "hostname" - count_data_sources_col = "count_data_sources" - max_data_sources_col = "max_data_sources" - - # Perform operations on DataFrame - try: - agencies_df = ( - agencies_df - # Filter out rows without a homepage_url - .filter(polars.col(homepage_url_col).is_not_null()) - .filter(polars.col(homepage_url_col) != "") - # Add a new column 'hostname' by applying the parse_hostname function to 'homepage_url' - .with_columns(polars.col(homepage_url_col).map_elements(parse_hostname).alias(hostname_col), - polars.col(count_data_sources_col).fill_null(0)) - # Add a new column 'max_data_sources' which is the max of 'count_data_sources' over 'hostname' - .with_columns(polars.col(count_data_sources_col).max().over(hostname_col).alias(max_data_sources_col)) - # Filter rows where 'count_data_sources' equals 'max_data_sources' - .filter(polars.col(count_data_sources_col) == polars.col(max_data_sources_col)) - # Keep only unique rows based on 'homepage_url' - .unique(subset=[homepage_url_col]) - ) - print("Indentifying agencies...") - # Add a new column 'hostname' by applying the parse_hostname function to 'url' - urls_df = urls_df.with_columns(polars.col("url").map_elements(parse_hostname).alias("hostname")) - - # Join urls_df with agencies_df on 'hostname' - matched_agencies_df = urls_df.join(agencies_df, on="hostname", how="left") - - # Replace all null values with an empty string - matched_agencies_clean_df = matched_agencies_df.with_columns(polars.all().fill_null("")) - except Exception as e: - print(f"An error occurred while processing the data: {e}") - raise e - return matched_agencies_clean_df - - -def read_data(file_path: str) -> polars.DataFrame: - try: - return polars.read_csv(file_path) - except Exception as e: - print(f"An error occurred while reading the file: {e}") - raise e - - -def write_data(df: polars.DataFrame, file_path: str): - try: - df.write_csv(file_path) - print("Results written to results.csv") - except Exception as e: - print(f"An error occurred while writing to the file: {e}") - raise e - - -def process_data(urls_df: polars.DataFrame) -> polars.DataFrame: - matched_agencies_df = match_urls_to_agencies_and_clean_data(urls_df) - - # Filter out rows where the hostname is not null - matches_only = matched_agencies_df.filter(polars.col("hostname").is_not_null()) - num_matches = len(matches_only) - num_urls = len(urls_df) - percent_urls_matched = 100 * float(num_matches) / float(num_urls) - - # Print the number and percentage of URLs that were matched - print(f"\n{num_matches} / {num_urls} ({percent_urls_matched:0.1f}%) of urls identified") - - # Return the DataFrame containing only the matched URLs - return matches_only - - -def process_and_write_data(input_file: str, output_file: str): - urls_df = read_data(input_file) - matches_only = process_data(urls_df) - if not matches_only.is_empty(): - write_data(matches_only, output_file) - - -if __name__ == "__main__": - process_and_write_data(sys.argv[1], "results.csv") - print("Results written to results.csv") diff --git a/alembic.ini b/alembic.ini index 7cc1a0d5..cfa2db9a 100644 --- a/alembic.ini +++ b/alembic.ini @@ -3,13 +3,13 @@ [alembic] # path to migration scripts # Use forward slashes (/) also on windows to provide an os agnostic path -script_location = collector_db/alembic +script_location = alembic # template used to generate migration file names; The default value is %%(rev)s_%%(slug)s # Uncomment the line below if you want the files to be prepended with date and time # see https://alembic.sqlalchemy.org/en/latest/tutorial.html#editing-the-ini-file # for all available tokens -# file_template = %%(year)d_%%(month).2d_%%(day).2d_%%(hour).2d%%(minute).2d-%%(rev)s_%%(slug)s +file_template = %%(year)d_%%(month).2d_%%(day).2d_%%(hour).2d%%(minute).2d-%%(rev)s_%%(slug)s # sys.path path, will be prepended to sys.path if present. # defaults to the current working directory. diff --git a/collector_db/alembic/README.md b/alembic/README.md similarity index 100% rename from collector_db/alembic/README.md rename to alembic/README.md diff --git a/collector_db/alembic/env.py b/alembic/env.py similarity index 78% rename from collector_db/alembic/env.py rename to alembic/env.py index 69587988..3d305e32 100644 --- a/collector_db/alembic/env.py +++ b/alembic/env.py @@ -1,11 +1,13 @@ +import logging +from datetime import datetime from logging.config import fileConfig from alembic import context from sqlalchemy import engine_from_config from sqlalchemy import pool -from collector_db.helper_functions import get_postgres_connection_string -from collector_db.models import Base +from src.db.helpers import get_postgres_connection_string +from src.db.models.templates import Base # this is the Alembic Config object, which provides # access to the values within the .ini file in use. @@ -59,6 +61,13 @@ def run_migrations_online() -> None: and associate a connection with the context. """ + + def process_revision_directives(context, revision, directives): + # 20210801211024 for a migration generated on Aug 1st, 2021 at 21:10:24 + rev_id = datetime.now().strftime("%Y%m%d%H%M%S") + for directive in directives: + directive.rev_id = rev_id + connectable = engine_from_config( config.get_section(config.config_ini_section, {}), prefix="sqlalchemy.", @@ -67,7 +76,9 @@ def run_migrations_online() -> None: with connectable.connect() as connection: context.configure( - connection=connection, target_metadata=target_metadata + connection=connection, + target_metadata=target_metadata, + process_revision_directives=process_revision_directives ) with context.begin_transaction(): diff --git a/collector_db/alembic/script.py.mako b/alembic/script.py.mako similarity index 100% rename from collector_db/alembic/script.py.mako rename to alembic/script.py.mako diff --git a/alembic/versions/072b32a45b1c_add_task_tables_and_linking_logic.py b/alembic/versions/072b32a45b1c_add_task_tables_and_linking_logic.py new file mode 100644 index 00000000..a67d128f --- /dev/null +++ b/alembic/versions/072b32a45b1c_add_task_tables_and_linking_logic.py @@ -0,0 +1,79 @@ +"""Add Task Tables and linking logic + +Revision ID: 072b32a45b1c +Revises: dae00e5aa8dd +Create Date: 2025-01-27 15:48:02.713484 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa + +from src.db.enums import PGEnum + +# revision identifiers, used by Alembic. +revision: str = '072b32a45b1c' +down_revision: Union[str, None] = 'dae00e5aa8dd' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + +task_type = PGEnum( + 'HTML', + 'Relevancy', + 'Record Type', + name='task_type', +) + + +def upgrade() -> None: + op.create_table('tasks', + sa.Column('id', sa.Integer(), nullable=False), + sa.Column('task_type', task_type, nullable=False), + sa.Column( + 'task_status', + PGEnum( + 'complete', 'error', 'in-process', 'aborted', + name='batch_status', + create_type=False + ), + nullable=False + ), + sa.Column('updated_at', sa.TIMESTAMP(), server_default=sa.text('now()'), nullable=False), + sa.PrimaryKeyConstraint('id'), + ) + op.create_table('task_errors', + sa.Column('id', sa.Integer(), nullable=False), + sa.Column('task_id', sa.Integer(), nullable=False), + sa.Column('error', sa.Text(), nullable=False), + sa.Column('updated_at', sa.TIMESTAMP(), server_default=sa.text('now()'), nullable=False), + sa.ForeignKeyConstraint(['task_id'], ['tasks.id'], ondelete='CASCADE'), + sa.PrimaryKeyConstraint('id') + ) + op.create_table('link_task_urls', + sa.Column('task_id', sa.Integer(), nullable=False), + sa.Column('url_id', sa.Integer(), nullable=False), + sa.ForeignKeyConstraint(['task_id'], ['tasks.id'], ondelete='CASCADE'), + sa.ForeignKeyConstraint(['url_id'], ['urls.id'], ondelete='CASCADE'), + sa.PrimaryKeyConstraint('task_id', 'url_id'), + sa.UniqueConstraint('task_id', 'url_id', name='uq_task_id_url_id') + ) + # Change to URL Error Info requires deleting prior data + op.execute("DELETE FROM url_error_info;") + + op.add_column('url_error_info', sa.Column('task_id', sa.Integer(), nullable=False)) + op.add_column("url_metadata", sa.Column('notes', sa.Text(), nullable=True)) + op.create_unique_constraint('uq_url_id_error', 'url_error_info', ['url_id', 'task_id']) + op.create_foreign_key("url_error_info_task_id_fkey", 'url_error_info', 'tasks', ['task_id'], ['id']) + + +def downgrade() -> None: + + op.drop_constraint("url_error_info_task_id_fkey", 'url_error_info', type_='foreignkey') + op.drop_constraint('uq_url_id_error', 'url_error_info', type_='unique') + op.drop_column('url_error_info', 'task_id') + op.drop_table('link_task_urls') + op.drop_table('task_errors') + op.drop_table('tasks') + + task_type.drop(op.get_bind(), checkfirst=True) diff --git a/collector_db/alembic/versions/108dac321086_update_metadata_validation_status.py b/alembic/versions/108dac321086_update_metadata_validation_status.py similarity index 81% rename from collector_db/alembic/versions/108dac321086_update_metadata_validation_status.py rename to alembic/versions/108dac321086_update_metadata_validation_status.py index 5212865a..aa05ee1b 100644 --- a/collector_db/alembic/versions/108dac321086_update_metadata_validation_status.py +++ b/alembic/versions/108dac321086_update_metadata_validation_status.py @@ -43,13 +43,13 @@ def upgrade() -> None: def downgrade() -> None: validation_status.create(op.get_bind()) - - op.alter_column( - table_name="url_metadata", - column_name="validation_status", - existing_type=metadata_validation_status, - type_=validation_status, - postgresql_using="validation_status::text::validation_status" - ) + # + # op.alter_column( + # table_name="url_metadata", + # column_name="validation_status", + # existing_type=metadata_validation_status, + # type_=validation_status, + # postgresql_using="validation_status::text::validation_status" + # ) metadata_validation_status.drop(op.get_bind(), checkfirst=True) diff --git a/alembic/versions/19bf57df581a_add_url_agency_suggestions.py b/alembic/versions/19bf57df581a_add_url_agency_suggestions.py new file mode 100644 index 00000000..c113b8fc --- /dev/null +++ b/alembic/versions/19bf57df581a_add_url_agency_suggestions.py @@ -0,0 +1,69 @@ +"""Add url_agency_suggestions + +Revision ID: 19bf57df581a +Revises: 072b32a45b1c +Create Date: 2025-02-02 10:33:02.029875 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa +from src.db.enums import PGEnum +# revision identifiers, used by Alembic. +revision: str = '19bf57df581a' +down_revision: Union[str, None] = '072b32a45b1c' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +suggestion_type_enum = PGEnum( + 'Auto Suggestion', + 'Manual Suggestion', + 'Unknown', + 'New Agency', + 'Confirmed', name='url_agency_suggestion_type' +) + +old_task_options = ( + 'HTML', + 'Relevancy', + 'Record Type', +) +new_task_options = old_task_options + ('Agency Identification',) + +old_task_type_enum = PGEnum( + *old_task_options, + name='task_type_old' +) + +new_task_type_enum = PGEnum( + *new_task_options, + name='task_type' +) + +def upgrade() -> None: + op.execute("ALTER TYPE task_type ADD VALUE 'Agency Identification';") + op.create_table('url_agency_suggestions', + sa.Column('id', sa.Integer(), nullable=False), + sa.Column('url_id', sa.Integer(), nullable=False), + sa.Column('suggestion_type', suggestion_type_enum, nullable=False), + sa.Column('agency_id', sa.Integer(), nullable=True), + sa.Column('agency_name', sa.String(), nullable=True), + sa.Column('state', sa.String(), nullable=True), + sa.Column('county', sa.String(), nullable=True), + sa.Column('locality', sa.String(), nullable=True), + sa.Column('updated_at', sa.TIMESTAMP(), server_default=sa.text('now()'), nullable=False), + sa.ForeignKeyConstraint(['url_id'], ['urls.id'], ), + sa.PrimaryKeyConstraint('id') + ) + + +def downgrade() -> None: + op.drop_table('url_agency_suggestions') + suggestion_type_enum.drop(op.get_bind(), checkfirst=True) + old_task_type_enum.create(op.get_bind()) + op.execute("DELETE FROM TASKS;") + op.execute("ALTER TABLE tasks ALTER COLUMN task_type TYPE task_type_old USING task_type::text::task_type_old;") + new_task_type_enum.drop(op.get_bind(), checkfirst=True) + op.execute("ALTER TYPE task_type_old RENAME TO task_type;") diff --git a/alembic/versions/2025_02_23_0855-0c6dc00806ce_update_confirmed_url_agency_unique_.py b/alembic/versions/2025_02_23_0855-0c6dc00806ce_update_confirmed_url_agency_unique_.py new file mode 100644 index 00000000..b081ec9d --- /dev/null +++ b/alembic/versions/2025_02_23_0855-0c6dc00806ce_update_confirmed_url_agency_unique_.py @@ -0,0 +1,44 @@ +"""Update confirmed_url_agency unique constraint to be only url_id + +Revision ID: 0c6dc00806ce +Revises: 76f902fe18cd +Create Date: 2025-02-23 08:55:07.046607 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision: str = '0c6dc00806ce' +down_revision: Union[str, None] = '76f902fe18cd' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def upgrade() -> None: + op.drop_constraint( + constraint_name="uq_confirmed_url_agency", + table_name="confirmed_url_agency", + ) + + op.create_unique_constraint( + constraint_name="uq_confirmed_url_agency", + table_name="confirmed_url_agency", + columns=["url_id"], + ) + + +def downgrade() -> None: + op.drop_constraint( + constraint_name="uq_confirmed_url_agency", + table_name="confirmed_url_agency", + ) + + op.create_unique_constraint( + constraint_name="uq_confirmed_url_agency", + table_name="confirmed_url_agency", + columns=["url_id", "agency_id"], + ) \ No newline at end of file diff --git a/alembic/versions/2025_02_23_1023-33421c0590bb_overhaul_annotation_organization.py b/alembic/versions/2025_02_23_1023-33421c0590bb_overhaul_annotation_organization.py new file mode 100644 index 00000000..97889bd9 --- /dev/null +++ b/alembic/versions/2025_02_23_1023-33421c0590bb_overhaul_annotation_organization.py @@ -0,0 +1,294 @@ +"""Overhaul annotation organization + +New Tables +- AutoRelevantSuggestions +- AutoRecordTypeSuggestions +- UserRelevantSuggestions +- UserRecordTypeSuggestions + +New Columns for `URL` +- `agency_id` +- `record_type` +- `relevant` + +Removed Tables +- `URLMetadata` +- `ConfirmedURLAgency` +- `MetadataAnnotation` + +Update URL Status to just three enum value: +- VALIDATED +- SUBMITTED +- PENDING + +Revision ID: 33421c0590bb +Revises: 0c6dc00806ce +Create Date: 2025-02-23 10:23:19.696248 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa +from sqlalchemy import UniqueConstraint + +from src.util.alembic_helpers import switch_enum_type + +# revision identifiers, used by Alembic. +revision: str = '33421c0590bb' +down_revision: Union[str, None] = '0c6dc00806ce' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + +record_type_values = [ + "Accident Reports", + "Arrest Records", + "Calls for Service", + "Car GPS", + "Citations", + "Dispatch Logs", + "Dispatch Recordings", + "Field Contacts", + "Incident Reports", + "Misc Police Activity", + "Officer Involved Shootings", + "Stops", + "Surveys", + "Use of Force Reports", + "Vehicle Pursuits", + "Complaints & Misconduct", + "Daily Activity Logs", + "Training & Hiring Info", + "Personnel Records", + "Annual & Monthly Reports", + "Budgets & Finances", + "Contact Info & Agency Meta", + "Geographic", + "List of Data Sources", + "Policies & Contracts", + "Crime Maps & Reports", + "Crime Statistics", + "Media Bulletins", + "Records Request Info", + "Resources", + "Sex Offender Registry", + "Wanted Persons", + "Booking Reports", + "Court Cases", + "Incarceration Records", + "Other" +] + + +record_type_enum = sa.Enum(*record_type_values, name='record_type') + +def run_data_migrations(): + + op.execute( + """ + INSERT INTO AUTO_RELEVANT_SUGGESTIONS (url_id, relevant) + SELECT url_id, LOWER(value)::boolean + FROM public.url_metadata + WHERE validation_source = 'Machine Learning' + and attribute = 'Relevant' + """ + ) + + op.execute( + """ + INSERT INTO AUTO_RECORD_TYPE_SUGGESTIONS(url_id, record_type) + SELECT url_id, value::record_type + FROM public.url_metadata + WHERE validation_source = 'Machine Learning' + and attribute = 'Record Type' + """ + ) + + op.execute( + """ + INSERT INTO USER_RELEVANT_SUGGESTIONS(url_id, relevant, user_id) + SELECT um.url_id, LOWER(um.value)::boolean, ma.user_id + FROM public.url_metadata um + INNER join metadata_annotations ma on um.id = ma.metadata_id + where um.attribute = 'Relevant' + """ + ) + + op.execute( + """ + INSERT INTO USER_RECORD_TYPE_SUGGESTIONS(url_id, record_type, user_id) + SELECT um.url_id, um.value::record_type, ma.user_id + FROM public.url_metadata um + INNER join metadata_annotations ma on um.id = ma.metadata_id + where um.attribute = 'Record Type' + + """ + ) + +def upgrade() -> None: + + # Create the new tables + op.create_table( + 'auto_relevant_suggestions', + sa.Column('id', sa.Integer(), primary_key=True), + sa.Column('url_id', sa.Integer(), sa.ForeignKey('urls.id', ondelete='CASCADE'), nullable=False), + sa.Column('relevant', sa.Boolean(), nullable=False), + sa.Column('created_at', sa.TIMESTAMP(), nullable=False, server_default=sa.text('now()')), + sa.Column('updated_at', sa.TIMESTAMP(), nullable=False, server_default=sa.text('now()'), onupdate=sa.text('now()')), + UniqueConstraint( + 'url_id', + name='auto_relevant_suggestions_uq_url_id' + ) + ) + + op.create_table( + 'auto_record_type_suggestions', + sa.Column('id', sa.Integer(), primary_key=True), + sa.Column( + 'url_id', + sa.Integer(), + sa.ForeignKey('urls.id', ondelete='CASCADE'), + nullable=False + ), + sa.Column('record_type', record_type_enum, nullable=False), + sa.Column('created_at', sa.TIMESTAMP(), nullable=False, server_default=sa.text('now()')), + sa.Column('updated_at', sa.TIMESTAMP(), nullable=False, server_default=sa.text('now()'), onupdate=sa.text('now()')), + UniqueConstraint( + 'url_id', + name='auto_record_type_suggestions_uq_url_id' + ) + ) + + op.create_table( + 'user_relevant_suggestions', + sa.Column('id', sa.Integer(), primary_key=True), + sa.Column( + 'url_id', + sa.Integer(), + sa.ForeignKey('urls.id', ondelete='CASCADE'), + nullable=False + ), + sa.Column('user_id', sa.Integer(), nullable=False), + sa.Column('relevant', sa.Boolean(), nullable=False), + sa.Column('created_at', sa.TIMESTAMP(), nullable=False, server_default=sa.text('now()')), + sa.Column('updated_at', sa.TIMESTAMP(), nullable=False, server_default=sa.text('now()'), onupdate=sa.text('now()')), + sa.UniqueConstraint("url_id", "user_id", name="uq_user_relevant_suggestions") + ) + + op.create_table( + 'user_record_type_suggestions', + sa.Column('id', sa.Integer(), primary_key=True), + sa.Column( + 'url_id', + sa.Integer(), + sa.ForeignKey('urls.id', ondelete='CASCADE'), + nullable=False + ), + sa.Column('user_id', sa.Integer(), nullable=False), + sa.Column('record_type', record_type_enum, nullable=False), + sa.Column('created_at', sa.TIMESTAMP(), nullable=False, server_default=sa.text('now()')), + sa.Column('updated_at', sa.TIMESTAMP(), nullable=False, server_default=sa.text('now()'), onupdate=sa.text('now()')), + sa.UniqueConstraint("url_id", "user_id", name="uq_user_record_type_suggestions") + ) + + # Add the new columns + op.add_column( + 'urls', + sa.Column('record_type', record_type_enum, nullable=True) + ) + + op.add_column( + 'urls', + sa.Column('relevant', sa.Boolean(), nullable=True) + ) + + op.add_column( + 'urls', + sa.Column( + 'agency_id', + sa.Integer(), + sa.ForeignKey('agencies.agency_id', ondelete='NO ACTION'), + nullable=True + ) + ) + + run_data_migrations() + + # Delete the old tables + op.drop_table('metadata_annotations') + op.drop_table('url_metadata') + op.drop_table('confirmed_url_agency') + + switch_enum_type( + table_name='urls', + column_name='outcome', + enum_name='url_status', + new_enum_values=['pending', 'submitted', 'validated', 'error', 'duplicate'] + ) + + + + + +def downgrade() -> None: + # Drop the new tables + op.drop_table('auto_relevant_suggestions') + op.drop_table('auto_record_type_suggestions') + op.drop_table('user_relevant_suggestions') + op.drop_table('user_record_type_suggestions') + + # Drop the new columns + op.drop_column('urls', 'record_type') + op.drop_column('urls', 'relevant') + op.drop_column('urls', 'agency_id') + + # Create the old tables + op.create_table( + 'url_metadata', + sa.Column('id', sa.Integer(), primary_key=True), + sa.Column('url_id', sa.Integer(), sa.ForeignKey('urls.id', ondelete='CASCADE'), nullable=False), + sa.Column('attribute', sa.String(), nullable=False), + sa.Column('value', sa.String(), nullable=False), + sa.Column('created_at', sa.TIMESTAMP(), nullable=False, server_default=sa.text('now()')), + sa.Column('updated_at', sa.TIMESTAMP(), nullable=False, server_default=sa.text('now()'), onupdate=sa.text('now()')), + sa.UniqueConstraint( + "url_id", + "attribute", + name="uq_url_id_attribute"), + ) + + op.create_table( + 'confirmed_url_agency', + sa.Column('id', sa.Integer(), primary_key=True), + sa.Column('url_id', sa.Integer(), sa.ForeignKey('urls.id', ondelete='CASCADE'), nullable=False), + sa.Column( + 'agency_id', + sa.Integer(), + sa.ForeignKey('agencies.agency_id', ondelete='CASCADE'), nullable=False), + sa.Column('created_at', sa.TIMESTAMP(), nullable=False, server_default=sa.text('now()')), + sa.Column('updated_at', sa.TIMESTAMP(), nullable=False, server_default=sa.text('now()'), onupdate=sa.text('now()')), + sa.UniqueConstraint("url_id", name="uq_confirmed_url_agency") + ) + + op.create_table( + 'metadata_annotations', + sa.Column('id', sa.Integer(), primary_key=True), + sa.Column('metadata_id', sa.Integer(), sa.ForeignKey('url_metadata.id', ondelete='CASCADE'), nullable=False), + sa.Column('user_id', sa.Integer(), nullable=False), + sa.Column('created_at', sa.TIMESTAMP(), nullable=False, server_default=sa.text('now()')), + sa.Column('updated_at', sa.TIMESTAMP(), nullable=False, server_default=sa.text('now()'), onupdate=sa.text('now()')), + sa.UniqueConstraint( + "user_id", + "metadata_id", + name="metadata_annotations_uq_user_id_metadata_id"), + ) + + switch_enum_type( + table_name='urls', + column_name='outcome', + enum_name='url_status', + new_enum_values=['pending', 'submitted', 'human_labeling', 'rejected', 'duplicate', 'error'] + ) + + # Drop enum + record_type_enum.drop(op.get_bind()) diff --git a/alembic/versions/2025_03_11_1539-69f7cc4f56d4_create_approving_user_url_table.py b/alembic/versions/2025_03_11_1539-69f7cc4f56d4_create_approving_user_url_table.py new file mode 100644 index 00000000..f38d33dc --- /dev/null +++ b/alembic/versions/2025_03_11_1539-69f7cc4f56d4_create_approving_user_url_table.py @@ -0,0 +1,34 @@ +"""Create approving_user_url table + +Revision ID: 69f7cc4f56d4 +Revises: 33421c0590bb +Create Date: 2025-03-11 15:39:27.563567 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision: str = '69f7cc4f56d4' +down_revision: Union[str, None] = '33421c0590bb' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def upgrade() -> None: + op.create_table( + 'approving_user_url', + sa.Column('id', sa.Integer(), nullable=False, primary_key=True), + sa.Column('user_id', sa.Integer(), nullable=False), + sa.Column('url_id', sa.Integer(), nullable=False), + sa.Column('created_at', sa.TIMESTAMP(), nullable=False, server_default=sa.text('now()')), + sa.ForeignKeyConstraint(['url_id'], ['urls.id'], ), + sa.UniqueConstraint('url_id', name='approving_user_url_uq_user_id_url_id') + ) + + +def downgrade() -> None: + op.drop_table('approving_user_url') diff --git a/alembic/versions/2025_03_15_1745-6eb8084e2f48_add_name_description_and_url_optional_.py b/alembic/versions/2025_03_15_1745-6eb8084e2f48_add_name_description_and_url_optional_.py new file mode 100644 index 00000000..36bfbf4e --- /dev/null +++ b/alembic/versions/2025_03_15_1745-6eb8084e2f48_add_name_description_and_url_optional_.py @@ -0,0 +1,62 @@ +"""Add name, description, and url optional data source metadata + +Revision ID: 6eb8084e2f48 +Revises: 69f7cc4f56d4 +Create Date: 2025-03-15 17:45:46.619721 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa + +from src.util.alembic_helpers import switch_enum_type + +# revision identifiers, used by Alembic. +revision: str = '6eb8084e2f48' +down_revision: Union[str, None] = '69f7cc4f56d4' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def upgrade() -> None: + # Add name and description columns to URL table + op.add_column('urls', sa.Column('name', sa.String(), nullable=True)) + op.add_column('urls', sa.Column('description', sa.String(), nullable=True)) + + # Create URL_optional_data_source_metadata + op.create_table( + 'url_optional_data_source_metadata', + sa.Column('id', sa.Integer(), nullable=False), + sa.Column('url_id', sa.Integer(), nullable=False), + sa.Column('record_formats', sa.ARRAY(sa.String()), nullable=True), + sa.Column('data_portal_type', sa.String(), nullable=True), + sa.Column('supplying_entity', sa.String(), nullable=True), + sa.ForeignKeyConstraint(['url_id'], ['urls.id'], ), + sa.PrimaryKeyConstraint('id') + ) + + # Add 'Misc Metadata' to TaskType enum + switch_enum_type( + table_name='tasks', + column_name='task_type', + enum_name='task_type', + new_enum_values=['HTML', 'Relevancy', 'Record Type', 'Agency Identification', 'Misc Metadata'] + ) + + +def downgrade() -> None: + # Remove name and description columns from URL table + op.drop_column('urls', 'name') + op.drop_column('urls', 'description') + + # Drop URL_optional_data_source_metadata + op.drop_table('url_optional_data_source_metadata') + + # Remove 'Misc Metadata' from TaskType enum + switch_enum_type( + table_name='tasks', + column_name='task_type', + enum_name='task_type', + new_enum_values=['HTML', 'Relevancy', 'Record Type', 'Agency Identification'] + ) diff --git a/alembic/versions/2025_03_28_0807-5ea47dacd0ef_remove_agency_id_parameter_from_urls.py b/alembic/versions/2025_03_28_0807-5ea47dacd0ef_remove_agency_id_parameter_from_urls.py new file mode 100644 index 00000000..bc3f9bd3 --- /dev/null +++ b/alembic/versions/2025_03_28_0807-5ea47dacd0ef_remove_agency_id_parameter_from_urls.py @@ -0,0 +1,56 @@ +"""Remove agency_id parameter from URLs + +Revision ID: 5ea47dacd0ef +Revises: 6eb8084e2f48 +Create Date: 2025-03-28 08:07:24.442764 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision: str = '5ea47dacd0ef' +down_revision: Union[str, None] = '6eb8084e2f48' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def upgrade() -> None: + # Remove agency ID column from URLs + op.drop_column( + 'urls', + 'agency_id' + ) + + op.create_table( + 'confirmed_url_agency', + sa.Column('id', sa.Integer(), primary_key=True), + sa.Column('url_id', sa.Integer(), sa.ForeignKey('urls.id', ondelete='CASCADE'), nullable=False), + sa.Column( + 'agency_id', + sa.Integer(), + sa.ForeignKey('agencies.agency_id', ondelete='CASCADE'), nullable=False), + sa.Column('created_at', sa.TIMESTAMP(), nullable=False, server_default=sa.text('now()')), + sa.Column('updated_at', sa.TIMESTAMP(), nullable=False, server_default=sa.text('now()'), onupdate=sa.text('now()')), + sa.UniqueConstraint( + 'url_id', 'agency_id', + name="uq_confirmed_url_agency" + ) + ) + + +def downgrade() -> None: + op.add_column( + 'urls', + sa.Column( + 'agency_id', + sa.Integer(), + sa.ForeignKey('agencies.agency_id', ondelete='NO ACTION'), + nullable=True + ) + ) + + op.drop_table('confirmed_url_agency') \ No newline at end of file diff --git a/alembic/versions/2025_03_29_1716-33a546c93441_add_data_source_id_column_to_url_table.py b/alembic/versions/2025_03_29_1716-33a546c93441_add_data_source_id_column_to_url_table.py new file mode 100644 index 00000000..b92fe1ef --- /dev/null +++ b/alembic/versions/2025_03_29_1716-33a546c93441_add_data_source_id_column_to_url_table.py @@ -0,0 +1,31 @@ +"""Add data source ID column to URL table + +Revision ID: 33a546c93441 +Revises: 45271f8fe75d +Create Date: 2025-03-29 17:16:11.863064 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision: str = '33a546c93441' +down_revision: Union[str, None] = '45271f8fe75d' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def upgrade() -> None: + op.add_column( + 'urls', + sa.Column('data_source_id', sa.Integer(), nullable=True) + ) + # Add unique constraint to data_source_id column + op.create_unique_constraint('uq_data_source_id', 'urls', ['data_source_id']) + + +def downgrade() -> None: + op.drop_column('urls', 'data_source_id') diff --git a/alembic/versions/2025_04_02_2040-4c70177eba78_add_rejected_batch_status.py b/alembic/versions/2025_04_02_2040-4c70177eba78_add_rejected_batch_status.py new file mode 100644 index 00000000..c61f310d --- /dev/null +++ b/alembic/versions/2025_04_02_2040-4c70177eba78_add_rejected_batch_status.py @@ -0,0 +1,47 @@ +"""Add rejected batch status + +Revision ID: 4c70177eba78 +Revises: 5ea47dacd0ef +Create Date: 2025-04-02 20:40:54.982954 + +""" +from typing import Sequence, Union + + +from src.util.alembic_helpers import switch_enum_type + +# revision identifiers, used by Alembic. +revision: str = '4c70177eba78' +down_revision: Union[str, None] = '5ea47dacd0ef' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def upgrade() -> None: + switch_enum_type( + table_name='urls', + column_name='outcome', + enum_name='url_status', + new_enum_values=[ + 'pending', + 'submitted', + 'validated', + 'duplicate', + 'rejected', + 'error' + ] + ) + +def downgrade() -> None: + switch_enum_type( + table_name='urls', + column_name='outcome', + enum_name='url_status', + new_enum_values=[ + 'pending', + 'submitted', + 'validated', + 'duplicate', + 'error', + ] + ) diff --git a/alembic/versions/2025_04_02_2051-e3fe6d099583_rename_approving_user_url_to_reviewing_.py b/alembic/versions/2025_04_02_2051-e3fe6d099583_rename_approving_user_url_to_reviewing_.py new file mode 100644 index 00000000..c9c4eec1 --- /dev/null +++ b/alembic/versions/2025_04_02_2051-e3fe6d099583_rename_approving_user_url_to_reviewing_.py @@ -0,0 +1,25 @@ +"""Rename approving_user_url to reviewing_user_url + +Revision ID: e3fe6d099583 +Revises: 4c70177eba78 +Create Date: 2025-04-02 20:51:10.738159 + +""" +from typing import Sequence, Union + +from alembic import op + + +# revision identifiers, used by Alembic. +revision: str = 'e3fe6d099583' +down_revision: Union[str, None] = '4c70177eba78' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def upgrade() -> None: + op.rename_table('approving_user_url', 'reviewing_user_url') + + +def downgrade() -> None: + op.rename_table('reviewing_user_url', 'approving_user_url') diff --git a/alembic/versions/2025_04_02_2114-45271f8fe75d_remove_relevant_column_from_urls.py b/alembic/versions/2025_04_02_2114-45271f8fe75d_remove_relevant_column_from_urls.py new file mode 100644 index 00000000..3f884391 --- /dev/null +++ b/alembic/versions/2025_04_02_2114-45271f8fe75d_remove_relevant_column_from_urls.py @@ -0,0 +1,27 @@ +"""Remove relevant column from urls + +Revision ID: 45271f8fe75d +Revises: e3fe6d099583 +Create Date: 2025-04-02 21:14:29.778488 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision: str = '45271f8fe75d' +down_revision: Union[str, None] = 'e3fe6d099583' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def upgrade() -> None: + op.drop_column('urls', 'relevant') + + + +def downgrade() -> None: + op.add_column('urls', sa.Column('relevant', sa.BOOLEAN(), nullable=True)) diff --git a/alembic/versions/2025_04_15_1338-b363794fa4e9_add_submit_url_task_type_enum.py b/alembic/versions/2025_04_15_1338-b363794fa4e9_add_submit_url_task_type_enum.py new file mode 100644 index 00000000..f19dfd90 --- /dev/null +++ b/alembic/versions/2025_04_15_1338-b363794fa4e9_add_submit_url_task_type_enum.py @@ -0,0 +1,48 @@ +"""Add Submit URL Task Type Enum + +Revision ID: b363794fa4e9 +Revises: 33a546c93441 +Create Date: 2025-04-15 13:38:58.293627 + +""" +from typing import Sequence, Union + + +from src.util.alembic_helpers import switch_enum_type + +# revision identifiers, used by Alembic. +revision: str = 'b363794fa4e9' +down_revision: Union[str, None] = '33a546c93441' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def upgrade() -> None: + switch_enum_type( + table_name='tasks', + column_name='task_type', + enum_name='task_type', + new_enum_values=[ + "HTML", + "Relevancy", + "Record Type", + "Agency Identification", + "Misc Metadata", + "Submit Approved URLs" + ] + ) + + +def downgrade() -> None: + switch_enum_type( + table_name='tasks', + column_name='task_type', + enum_name='task_type', + new_enum_values=[ + "HTML", + "Relevancy", + "Record Type", + "Agency Identification", + "Misc Metadata", + ] + ) \ No newline at end of file diff --git a/alembic/versions/2025_04_15_1532-ed06a5633d2e_revert_to_pending_validated_urls_.py b/alembic/versions/2025_04_15_1532-ed06a5633d2e_revert_to_pending_validated_urls_.py new file mode 100644 index 00000000..82ce97a4 --- /dev/null +++ b/alembic/versions/2025_04_15_1532-ed06a5633d2e_revert_to_pending_validated_urls_.py @@ -0,0 +1,42 @@ +"""Revert to pending validated URLs without name and add constraint + +Revision ID: ed06a5633d2e +Revises: b363794fa4e9 +Create Date: 2025-04-15 15:32:26.465488 + +""" +from typing import Sequence, Union + +from alembic import op + + +# revision identifiers, used by Alembic. +revision: str = 'ed06a5633d2e' +down_revision: Union[str, None] = 'b363794fa4e9' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def upgrade() -> None: + + op.execute( + """ + UPDATE public.urls + SET OUTCOME = 'pending' + WHERE OUTCOME = 'validated' AND NAME IS NULL + """ + ) + + op.create_check_constraint( + 'url_name_not_null_when_validated', + 'urls', + "NAME IS NOT NULL OR OUTCOME != 'validated'" + ) + + +def downgrade() -> None: + op.drop_constraint( + 'url_name_not_null_when_validated', + 'urls', + type_='check' + ) diff --git a/alembic/versions/2025_04_16_1954-997f5bf53772_set_user_annotation_tables_to_allow_.py b/alembic/versions/2025_04_16_1954-997f5bf53772_set_user_annotation_tables_to_allow_.py new file mode 100644 index 00000000..775caddf --- /dev/null +++ b/alembic/versions/2025_04_16_1954-997f5bf53772_set_user_annotation_tables_to_allow_.py @@ -0,0 +1,61 @@ +"""Set user annotation tables to allow only one annotation per url + +Revision ID: 997f5bf53772 +Revises: ed06a5633d2e +Create Date: 2025-04-16 19:54:59.798580 + +""" +from typing import Sequence, Union + +from alembic import op + + +# revision identifiers, used by Alembic. +revision: str = '997f5bf53772' +down_revision: Union[str, None] = 'ed06a5633d2e' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def upgrade() -> None: + # Delete entries with more than one annotation + # Relevance + op.execute(""" + with ranked as( + SELECT + id, + ROW_NUMBER() OVER (PARTITION BY URL_ID ORDER BY id) as rn + FROM + USER_RELEVANT_SUGGESTIONS + ) + DELETE FROM user_relevant_suggestions + USING ranked + WHERE USER_RELEVANT_SUGGESTIONS.id = ranked.id + and ranked.rn > 1 + """) + # Record Type + op.execute(""" + with ranked as( + SELECT + id, + ROW_NUMBER() OVER (PARTITION BY URL_ID ORDER BY id) as rn + FROM + USER_RECORD_TYPE_SUGGESTIONS + ) + DELETE FROM user_record_type_suggestions + USING ranked + WHERE USER_RECORD_TYPE_SUGGESTIONS.id = ranked.id + and ranked.rn > 1 + """) + + # Add unique constraint to url_id column + op.create_unique_constraint('uq_user_relevant_suggestions_url_id', 'user_relevant_suggestions', ['url_id']) + op.create_unique_constraint('uq_user_record_type_suggestions_url_id', 'user_record_type_suggestions', ['url_id']) + op.create_unique_constraint('uq_user_agency_suggestions_url_id', 'user_url_agency_suggestions', ['url_id']) + + + +def downgrade() -> None: + op.drop_constraint('uq_user_relevant_suggestions_url_id', 'user_relevant_suggestions', type_='unique') + op.drop_constraint('uq_user_record_type_suggestions_url_id', 'user_record_type_suggestions', type_='unique') + op.drop_constraint('uq_user_agency_suggestions_url_id', 'user_url_agency_suggestions', type_='unique') \ No newline at end of file diff --git a/alembic/versions/2025_04_17_0909-e285e6e7cf71_change_batch_completed_to_ready_to_label.py b/alembic/versions/2025_04_17_0909-e285e6e7cf71_change_batch_completed_to_ready_to_label.py new file mode 100644 index 00000000..bc60015b --- /dev/null +++ b/alembic/versions/2025_04_17_0909-e285e6e7cf71_change_batch_completed_to_ready_to_label.py @@ -0,0 +1,33 @@ +"""Change batch completed to ready to label + +Revision ID: e285e6e7cf71 +Revises: 997f5bf53772 +Create Date: 2025-04-17 09:09:38.137131 + +""" +from typing import Sequence, Union + +from src.util.alembic_helpers import alter_enum_value + +# revision identifiers, used by Alembic. +revision: str = 'e285e6e7cf71' +down_revision: Union[str, None] = '997f5bf53772' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def upgrade() -> None: + alter_enum_value( + enum_name="batch_status", + old_value="complete", + new_value="ready to label" + ) + + + +def downgrade() -> None: + alter_enum_value( + enum_name="batch_status", + old_value="ready to label", + new_value="complete" + ) diff --git a/alembic/versions/2025_05_03_0956-028565b77b9e_add_manual_strategy_to_batch_strategy_.py b/alembic/versions/2025_05_03_0956-028565b77b9e_add_manual_strategy_to_batch_strategy_.py new file mode 100644 index 00000000..cb7fd988 --- /dev/null +++ b/alembic/versions/2025_05_03_0956-028565b77b9e_add_manual_strategy_to_batch_strategy_.py @@ -0,0 +1,59 @@ +"""Add manual strategy to Batch strategy enum + +Revision ID: 028565b77b9e +Revises: e285e6e7cf71 +Create Date: 2025-05-03 09:56:51.134406 + +""" +from typing import Sequence, Union + +from alembic import op + +from src.util.alembic_helpers import switch_enum_type + +# revision identifiers, used by Alembic. +revision: str = '028565b77b9e' +down_revision: Union[str, None] = 'e285e6e7cf71' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def upgrade() -> None: + switch_enum_type( + table_name="batches", + column_name="strategy", + enum_name="batch_strategy", + new_enum_values=[ + "example", + "ckan", + "muckrock_county_search", + "auto_googler", + "muckrock_all_search", + "muckrock_simple_search", + "common_crawler", + "manual" + ], + ) + + +def downgrade() -> None: + # Delete all batches with manual strategy + op.execute(""" + DELETE FROM BATCHES + WHERE STRATEGY = 'manual' + """) + + switch_enum_type( + table_name="batches", + column_name="strategy", + enum_name="batch_strategy", + new_enum_values=[ + "example", + "ckan", + "muckrock_county_search", + "auto_googler", + "muckrock_all_search", + "muckrock_simple_search", + "common_crawler" + ], + ) diff --git a/alembic/versions/2025_05_06_0816-e55e16e0738f_create_backlogsnapshot_table.py b/alembic/versions/2025_05_06_0816-e55e16e0738f_create_backlogsnapshot_table.py new file mode 100644 index 00000000..4d2fe7c5 --- /dev/null +++ b/alembic/versions/2025_05_06_0816-e55e16e0738f_create_backlogsnapshot_table.py @@ -0,0 +1,31 @@ +"""Create BacklogSnapshot Table + +Revision ID: e55e16e0738f +Revises: 028565b77b9e +Create Date: 2025-05-06 08:16:29.385305 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision: str = 'e55e16e0738f' +down_revision: Union[str, None] = '028565b77b9e' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def upgrade() -> None: + op.create_table( + 'backlog_snapshot', + sa.Column('id', sa.Integer(), nullable=False, primary_key=True), + sa.Column('count_pending_total', sa.Integer(), nullable=False), + sa.Column('created_at', sa.DateTime(), nullable=False), + ) + + +def downgrade() -> None: + op.drop_table('backlog_snapshot') diff --git a/alembic/versions/2025_05_06_0919-f25852e17c04_create_url_annotation_flags_view.py b/alembic/versions/2025_05_06_0919-f25852e17c04_create_url_annotation_flags_view.py new file mode 100644 index 00000000..09f8d825 --- /dev/null +++ b/alembic/versions/2025_05_06_0919-f25852e17c04_create_url_annotation_flags_view.py @@ -0,0 +1,47 @@ +"""Create URL Annotation Flags View + +Revision ID: f25852e17c04 +Revises: e55e16e0738f +Create Date: 2025-05-06 09:19:54.000410 + +""" +from typing import Sequence, Union + +from alembic import op + + +# revision identifiers, used by Alembic. +revision: str = 'f25852e17c04' +down_revision: Union[str, None] = 'e55e16e0738f' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def upgrade() -> None: + op.execute(""" + CREATE OR REPLACE VIEW url_annotation_flags AS + ( + SELECT u.id, + CASE WHEN arts.url_id IS NOT NULL THEN TRUE ELSE FALSE END AS has_auto_record_type_suggestion, + CASE WHEN ars.url_id IS NOT NULL THEN TRUE ELSE FALSE END AS has_auto_relevant_suggestion, + CASE WHEN auas.url_id IS NOT NULL THEN TRUE ELSE FALSE END AS has_auto_agency_suggestion, + CASE WHEN urts.url_id IS NOT NULL THEN TRUE ELSE FALSE END AS has_user_record_type_suggestion, + CASE WHEN urs.url_id IS NOT NULL THEN TRUE ELSE FALSE END AS has_user_relevant_suggestion, + CASE WHEN uuas.url_id IS NOT NULL THEN TRUE ELSE FALSE END AS has_user_agency_suggestion, + CASE WHEN cua.url_id IS NOT NULL THEN TRUE ELSE FALSE END AS has_confirmed_agency, + CASE WHEN ruu.url_id IS NOT NULL THEN TRUE ELSE FALSE END AS was_reviewed + FROM urls u + LEFT JOIN public.auto_record_type_suggestions arts ON u.id = arts.url_id + LEFT JOIN public.auto_relevant_suggestions ars ON u.id = ars.url_id + LEFT JOIN public.automated_url_agency_suggestions auas ON u.id = auas.url_id + LEFT JOIN public.user_record_type_suggestions urts ON u.id = urts.url_id + LEFT JOIN public.user_relevant_suggestions urs ON u.id = urs.url_id + LEFT JOIN public.user_url_agency_suggestions uuas ON u.id = uuas.url_id + LEFT JOIN public.reviewing_user_url ruu ON u.id = ruu.url_id + LEFT JOIN public.confirmed_url_agency cua on u.id = cua.url_id + ) + """) + + +def downgrade() -> None: + op.execute("DROP VIEW url_annotation_flags;") diff --git a/alembic/versions/2025_05_06_1115-6f2007bbcce3_create_url_data_sources_table.py b/alembic/versions/2025_05_06_1115-6f2007bbcce3_create_url_data_sources_table.py new file mode 100644 index 00000000..499de2e4 --- /dev/null +++ b/alembic/versions/2025_05_06_1115-6f2007bbcce3_create_url_data_sources_table.py @@ -0,0 +1,79 @@ +"""Create url_data_sources table + +Revision ID: 6f2007bbcce3 +Revises: f25852e17c04 +Create Date: 2025-05-06 11:15:24.485465 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa + +# revision identifiers, used by Alembic. +revision: str = '6f2007bbcce3' +down_revision: Union[str, None] = 'f25852e17c04' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def upgrade() -> None: + # Create url_data_sources_table table + op.create_table( + 'url_data_sources', + sa.Column( + 'id', + sa.Integer(), + primary_key=True + ), + sa.Column( + 'url_id', + sa.Integer(), + sa.ForeignKey( + 'urls.id', + ondelete='CASCADE' + ), + nullable=False + ), + sa.Column( + 'data_source_id', + sa.Integer(), + nullable=False + ), + sa.Column( + 'created_at', + sa.TIMESTAMP(), + nullable=False, + server_default=sa.text('now()') + ), + sa.UniqueConstraint('url_id', name='uq_url_data_sources_url_id'), + sa.UniqueConstraint('data_source_id', name='uq_url_data_sources_data_source_id') + ) + + # Migrate existing urls with a data source ID + op.execute(""" + INSERT INTO url_data_sources + (url_id, data_source_id) + SELECT id, data_source_id + FROM urls + WHERE data_source_id IS NOT NULL + """) + + # Drop existing data source ID column from urls table + op.drop_column('urls', 'data_source_id') + + +def downgrade() -> None: + + op.drop_table('url_data_sources') + + op.add_column( + 'urls', + sa.Column( + 'data_source_id', + sa.Integer(), + nullable=True + ) + ) + + diff --git a/alembic/versions/2025_05_11_1054-9d4002437ebe_set_default_created_at_for_backlog_.py b/alembic/versions/2025_05_11_1054-9d4002437ebe_set_default_created_at_for_backlog_.py new file mode 100644 index 00000000..fbdb5645 --- /dev/null +++ b/alembic/versions/2025_05_11_1054-9d4002437ebe_set_default_created_at_for_backlog_.py @@ -0,0 +1,38 @@ +"""Set default created_at for backlog_snapshot + +Revision ID: 9d4002437ebe +Revises: 6f2007bbcce3 +Create Date: 2025-05-11 10:54:22.797147 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision: str = '9d4002437ebe' +down_revision: Union[str, None] = '6f2007bbcce3' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def upgrade() -> None: + op.alter_column( + table_name='backlog_snapshot', + column_name='created_at', + existing_type=sa.DateTime(), + nullable=False, + server_default=sa.text('now()') + ) + + +def downgrade() -> None: + op.alter_column( + table_name='backlog_snapshot', + column_name='created_at', + existing_type=sa.DateTime(), + nullable=False, + server_default=None + ) diff --git a/alembic/versions/2025_05_13_0704-864107b703ae_create_url_checked_for_duplicate_table.py b/alembic/versions/2025_05_13_0704-864107b703ae_create_url_checked_for_duplicate_table.py new file mode 100644 index 00000000..39ab8125 --- /dev/null +++ b/alembic/versions/2025_05_13_0704-864107b703ae_create_url_checked_for_duplicate_table.py @@ -0,0 +1,81 @@ +"""Create url_checked_for_duplicate table + +Revision ID: 864107b703ae +Revises: 9d4002437ebe +Create Date: 2025-05-13 07:04:22.592396 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa + +from src.util.alembic_helpers import switch_enum_type + +# revision identifiers, used by Alembic. +revision: str = '864107b703ae' +down_revision: Union[str, None] = '9d4002437ebe' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def upgrade() -> None: + op.create_table( + 'url_checked_for_duplicate', + sa.Column( + 'id', + sa.Integer(), + primary_key=True + ), + sa.Column( + 'url_id', + sa.Integer(), + sa.ForeignKey( + 'urls.id', + ondelete='CASCADE' + ), + nullable=False + ), + sa.Column( + 'created_at', + sa.DateTime(), + nullable=False, + server_default=sa.text('now()') + ), + ) + + switch_enum_type( + table_name='tasks', + column_name='task_type', + enum_name='task_type', + new_enum_values=[ + "HTML", + "Relevancy", + "Record Type", + "Agency Identification", + "Misc Metadata", + "Submit Approved URLs", + "Duplicate Detection" + ] + ) + + +def downgrade() -> None: + op.drop_table('url_checked_for_duplicate') + + # Delete tasks of type "Duplicate Detection" + op.execute("DELETE FROM TASKS WHERE TASK_TYPE = 'Duplicate Detection';") + + switch_enum_type( + table_name='tasks', + column_name='task_type', + enum_name='task_type', + new_enum_values=[ + "HTML", + "Relevancy", + "Record Type", + "Agency Identification", + "Misc Metadata", + "Submit Approved URLs", + ] + ) diff --git a/alembic/versions/2025_05_13_1234-b5f079b6b8cb_create_url_probed_for_404_table_and_.py b/alembic/versions/2025_05_13_1234-b5f079b6b8cb_create_url_probed_for_404_table_and_.py new file mode 100644 index 00000000..1fc0c8e6 --- /dev/null +++ b/alembic/versions/2025_05_13_1234-b5f079b6b8cb_create_url_probed_for_404_table_and_.py @@ -0,0 +1,137 @@ +"""Create url_probed_for_404 table and adjust logic for 404 probe + +Revision ID: b5f079b6b8cb +Revises: 864107b703ae +Create Date: 2025-05-13 12:34:46.846656 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa + +from src.util.alembic_helpers import switch_enum_type + +# revision identifiers, used by Alembic. +revision: str = 'b5f079b6b8cb' +down_revision: Union[str, None] = '864107b703ae' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def upgrade() -> None: + op.create_table( + 'url_probed_for_404', + sa.Column('id', sa.Integer(), nullable=False, primary_key=True), + sa.Column('url_id', sa.Integer(), nullable=False), + sa.Column('last_probed_at', sa.DateTime(), nullable=False, server_default=sa.text('now()')), + ) + + # Add unique constraint to url_id column + op.create_unique_constraint('uq_url_probed_for_404_url_id', 'url_probed_for_404', ['url_id']) + # Add unique constraint for url_id column in url_checked_for_duplicate table + op.create_unique_constraint('uq_url_checked_for_duplicates_url_id', 'url_checked_for_duplicate', ['url_id']) + + # Create new `404 Not Found` URL Status + switch_enum_type( + table_name='urls', + column_name='outcome', + enum_name='url_status', + new_enum_values=[ + 'pending', + 'submitted', + 'validated', + 'duplicate', + 'rejected', + 'error', + '404 not found', + ], + check_constraints_to_drop=['url_name_not_null_when_validated'] + ) + + # Add '404 Probe' to TaskType Enum + switch_enum_type( + table_name='tasks', + column_name='task_type', + enum_name='task_type', + new_enum_values=[ + 'HTML', + 'Relevancy', + 'Record Type', + 'Agency Identification', + 'Misc Metadata', + 'Submit Approved URLs', + 'Duplicate Detection', + '404 Probe' + ] + ) + + op.execute( + """ + ALTER TABLE urls + ADD CONSTRAINT url_name_not_null_when_validated + CHECK ((name IS NOT NULL) OR (outcome <> 'validated'::url_status)) + """ + ) + + # Update existing error URLs with an error message of 404 Not Found + op.execute(""" + UPDATE urls + SET outcome = '404 not found' + FROM url_error_info uei + WHERE urls.id = uei.url_id + AND urls.outcome = 'error' + AND uei.error LIKE '%404%'; + """) + + +def downgrade() -> None: + op.drop_table('url_probed_for_404') + + # Drop unique constraint for url_id column in url_checked_for_duplicate table + op.drop_constraint('uq_url_checked_for_duplicates_url_id', 'url_checked_for_duplicate', type_='unique') + + # Drop `404 Not Found` URL Status + op.execute(""" + UPDATE urls + SET outcome = 'error' + WHERE outcome = '404 not found'; + """) + + switch_enum_type( + table_name='urls', + column_name='outcome', + enum_name='url_status', + new_enum_values=[ + 'pending', + 'submitted', + 'validated', + 'duplicate', + 'rejected', + 'error', + ], + check_constraints_to_drop=['url_name_not_null_when_validated'] + ) + + op.execute( + """ + ALTER TABLE urls + ADD CONSTRAINT url_name_not_null_when_validated + CHECK ((name IS NOT NULL) OR (outcome <> 'validated'::url_status)) + """ + ) + + switch_enum_type( + table_name='tasks', + column_name='task_type', + enum_name='task_type', + new_enum_values=[ + 'HTML', + 'Relevancy', + 'Record Type', + 'Agency Identification', + 'Misc Metadata', + 'Submit Approved URLs', + 'Duplicate Detection', + ] + ) diff --git a/alembic/versions/2025_05_16_1031-00cc949e0347_update_relevancy_logic.py b/alembic/versions/2025_05_16_1031-00cc949e0347_update_relevancy_logic.py new file mode 100644 index 00000000..78307640 --- /dev/null +++ b/alembic/versions/2025_05_16_1031-00cc949e0347_update_relevancy_logic.py @@ -0,0 +1,162 @@ +"""Update relevancy logic + +- Add new status to URL Status outcome: `individual record` +- Change URL Status value `rejected` to `not relevant` , for specificity +- Create `user_suggested_status` enum +- ` Add `suggested_status` column to `user_relevant_suggestions` +- Migrate `user_relevant_suggestions:relevant` to `user_relevant_suggestions:user_suggested_status` + +Revision ID: 00cc949e0347 +Revises: b5f079b6b8cb +Create Date: 2025-05-16 10:31:04.417203 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa + +from src.util.alembic_helpers import switch_enum_type + +# revision identifiers, used by Alembic. +revision: str = '00cc949e0347' +down_revision: Union[str, None] = 'b5f079b6b8cb' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +suggested_status_enum = sa.Enum( + 'relevant', + 'not relevant', + 'individual record', + 'broken page/404 not found', + name='suggested_status' +) + +def upgrade() -> None: + suggested_status_enum.create(op.get_bind()) + # Replace `relevant` column with `suggested_status` column + op.add_column( + 'user_relevant_suggestions', + sa.Column( + 'suggested_status', + suggested_status_enum, + nullable=True + ) + ) + # Migrate existing entries + op.execute(""" + UPDATE user_relevant_suggestions + SET suggested_status = 'relevant' + WHERE relevant = true + """) + op.execute(""" + UPDATE user_relevant_suggestions + SET suggested_status = 'not relevant' + WHERE relevant = false + """) + op.alter_column( + 'user_relevant_suggestions', + 'suggested_status', + nullable=False + ) + op.drop_column( + 'user_relevant_suggestions', + 'relevant' + ) + + # Update `url_status` enum to include + # `individual record` + # And change `rejected` to `not relevant` + op.execute(""" + ALTER TYPE url_status RENAME VALUE 'rejected' TO 'not relevant'; + """) + switch_enum_type( + table_name='urls', + column_name='outcome', + enum_name='url_status', + new_enum_values=[ + 'pending', + 'submitted', + 'validated', + 'duplicate', + 'not relevant', + 'error', + '404 not found', + 'individual record' + ], + check_constraints_to_drop=['url_name_not_null_when_validated'] + ) + op.execute( + """ + ALTER TABLE urls + ADD CONSTRAINT url_name_not_null_when_validated + CHECK ((name IS NOT NULL) OR (outcome <> 'validated'::url_status)) + """ + ) + + +def downgrade() -> None: + # Update `url_status` enum to remove + # `individual record` + # And change `not relevant` to `rejected` + op.execute(""" + ALTER TYPE url_status RENAME VALUE 'not relevant' TO 'rejected'; + """) + op.execute(""" + UPDATE urls + SET outcome = 'rejected' + WHERE outcome = 'individual record' + """) + switch_enum_type( + table_name='urls', + column_name='outcome', + enum_name='url_status', + new_enum_values=[ + 'pending', + 'submitted', + 'validated', + 'duplicate', + 'rejected', + 'error', + '404 not found', + ], + check_constraints_to_drop=['url_name_not_null_when_validated'] + ) + op.execute( + """ + ALTER TABLE urls + ADD CONSTRAINT url_name_not_null_when_validated + CHECK ((name IS NOT NULL) OR (outcome <> 'validated'::url_status)) + """ + ) + + # Replace `suggested_status` column with `relevant` column + op.add_column( + 'user_relevant_suggestions', + sa.Column( + 'relevant', + sa.BOOLEAN(), + nullable=True + ) + ) + op.execute(""" + UPDATE user_relevant_suggestions + SET relevant = true + WHERE suggested_status = 'relevant' + """) + op.execute(""" + UPDATE user_relevant_suggestions + SET relevant = false + WHERE suggested_status = 'not relevant' + """) + op.alter_column( + 'user_relevant_suggestions', + 'relevant', + nullable=False + ) + op.drop_column( + 'user_relevant_suggestions', + 'suggested_status' + ) + suggested_status_enum.drop(op.get_bind(), checkfirst=True) diff --git a/alembic/versions/2025_06_03_0814-c1380f90f5de_remove_unused_batch_columns.py b/alembic/versions/2025_06_03_0814-c1380f90f5de_remove_unused_batch_columns.py new file mode 100644 index 00000000..f88d4b4c --- /dev/null +++ b/alembic/versions/2025_06_03_0814-c1380f90f5de_remove_unused_batch_columns.py @@ -0,0 +1,43 @@ +"""Remove unused batch columns + +Revision ID: c1380f90f5de +Revises: 00cc949e0347 +Create Date: 2025-06-03 08:14:15.583777 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision: str = 'c1380f90f5de' +down_revision: Union[str, None] = '00cc949e0347' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + +TABLE_NAME = "batches" +TOTAL_URL_COUNT_COLUMN = "total_url_count" +ORIGINAL_URL_COUNT_COLUMN = "original_url_count" +DUPLICATE_URL_COUNT_COLUMN = "duplicate_url_count" + +def upgrade() -> None: + for column in [ + TOTAL_URL_COUNT_COLUMN, + ORIGINAL_URL_COUNT_COLUMN, + DUPLICATE_URL_COUNT_COLUMN, + ]: + op.drop_column(TABLE_NAME, column) + + +def downgrade() -> None: + for column in [ + TOTAL_URL_COUNT_COLUMN, + ORIGINAL_URL_COUNT_COLUMN, + DUPLICATE_URL_COUNT_COLUMN, + ]: + op.add_column( + TABLE_NAME, + sa.Column(column, sa.Integer(), nullable=False, default=0), + ) diff --git a/alembic/versions/2025_06_16_0922-fb199cf58ecd_update_agencies_table.py b/alembic/versions/2025_06_16_0922-fb199cf58ecd_update_agencies_table.py new file mode 100644 index 00000000..48a55bc7 --- /dev/null +++ b/alembic/versions/2025_06_16_0922-fb199cf58ecd_update_agencies_table.py @@ -0,0 +1,110 @@ +"""Update agencies table and add `agencies_sync_state` table + +Revision ID: fb199cf58ecd +Revises: c1380f90f5de +Create Date: 2025-06-16 09:22:05.813695 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa + +from src.util.alembic_helpers import created_at_column, updated_at_column, switch_enum_type, id_column + +# revision identifiers, used by Alembic. +revision: str = 'fb199cf58ecd' +down_revision: Union[str, None] = 'c1380f90f5de' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + +AGENCIES_TABLE_NAME = 'agencies' + +def upgrade() -> None: + op.add_column( + AGENCIES_TABLE_NAME, + created_at_column() + ) + + # Add trigger for updated_at to update on any change + op.execute(""" + CREATE OR REPLACE FUNCTION update_updated_at_column() + RETURNS TRIGGER AS $$ + BEGIN + NEW.updated_at = CURRENT_TIMESTAMP; + RETURN NEW; + END; + $$ LANGUAGE plpgsql; + """) + op.execute(""" + CREATE TRIGGER set_updated_at + BEFORE UPDATE ON agencies + FOR EACH ROW + EXECUTE FUNCTION update_updated_at_column(); + """) + + op.add_column( + AGENCIES_TABLE_NAME, + sa.Column('ds_last_updated_at', sa.DateTime(), nullable=True) + ) + + table = op.create_table( + 'agencies_sync_state', + id_column(), + sa.Column('last_full_sync_at', sa.DateTime(), nullable=True), + sa.Column('current_cutoff_date', sa.Date(), nullable=True), + sa.Column('current_page', sa.Integer(), nullable=True), + ) + + # Add row to `agencies_sync_state` table + op.bulk_insert( + table, + [ + { + "last_full_sync_at": None, + "current_cutoff_date": None, + "current_page": None + } + ] + ) + + # Add 'Sync Agencies' to TaskType Enum + switch_enum_type( + table_name='tasks', + column_name='task_type', + enum_name='task_type', + new_enum_values=[ + 'HTML', + 'Relevancy', + 'Record Type', + 'Agency Identification', + 'Misc Metadata', + 'Submit Approved URLs', + 'Duplicate Detection', + '404 Probe', + 'Sync Agencies', + ] + ) + + +def downgrade() -> None: + for column in ['ds_last_updated_at', 'created_at']: + op.drop_column(AGENCIES_TABLE_NAME, column) + + op.drop_table('agencies_sync_state') + + switch_enum_type( + table_name='tasks', + column_name='task_type', + enum_name='task_type', + new_enum_values=[ + 'HTML', + 'Relevancy', + 'Record Type', + 'Agency Identification', + 'Misc Metadata', + 'Submit Approved URLs', + 'Duplicate Detection', + '404 Probe', + ] + ) diff --git a/alembic/versions/2025_07_05_0801-4b0f43f61598_add_url_compressed_html_table.py b/alembic/versions/2025_07_05_0801-4b0f43f61598_add_url_compressed_html_table.py new file mode 100644 index 00000000..7a1d0425 --- /dev/null +++ b/alembic/versions/2025_07_05_0801-4b0f43f61598_add_url_compressed_html_table.py @@ -0,0 +1,37 @@ +"""Add url_compressed_html table + +Revision ID: 4b0f43f61598 +Revises: fb199cf58ecd +Create Date: 2025-07-05 08:01:58.124060 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa + +from src.util.alembic_helpers import created_at_column, updated_at_column, id_column + +# revision identifiers, used by Alembic. +revision: str = '4b0f43f61598' +down_revision: Union[str, None] = 'fb199cf58ecd' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + +TABLE_NAME = 'url_compressed_html' + +def upgrade() -> None: + op.create_table( + TABLE_NAME, + id_column(), + sa.Column('url_id', sa.Integer(), nullable=False), + sa.Column('compressed_html', sa.LargeBinary(), nullable=False), + created_at_column(), + updated_at_column(), + sa.ForeignKeyConstraint(['url_id'], ['urls.id'], name='fk_url_compressed_html_url_id'), + sa.UniqueConstraint('url_id', name='uq_url_compressed_html_url_id') + ) + + +def downgrade() -> None: + op.drop_table(TABLE_NAME) diff --git a/alembic/versions/2025_07_15_1106-d6519a3ca5c9_alter_relevant_annotations_table.py b/alembic/versions/2025_07_15_1106-d6519a3ca5c9_alter_relevant_annotations_table.py new file mode 100644 index 00000000..fa6edadf --- /dev/null +++ b/alembic/versions/2025_07_15_1106-d6519a3ca5c9_alter_relevant_annotations_table.py @@ -0,0 +1,59 @@ +"""Alter relevant annotations table + +Revision ID: d6519a3ca5c9 +Revises: 4b0f43f61598 +Create Date: 2025-07-15 11:06:36.534900 + +""" +from typing import Sequence, Union + +import sqlalchemy as sa +from alembic import op + +# revision identifiers, used by Alembic. +revision: str = 'd6519a3ca5c9' +down_revision: Union[str, None] = '4b0f43f61598' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + +HTML_TABLE_NAME = 'url_compressed_html' +AUTO_RELEVANT_TABLE_NAME = 'auto_relevant_suggestions' + +CONFIDENCE_COLUMN_NAME = 'confidence' +MODEL_NAME_COLUMN_NAME = 'model_name' + +CHECK_CONSTRAINT_NAME = f'ck_{AUTO_RELEVANT_TABLE_NAME}_{CONFIDENCE_COLUMN_NAME}_between_0_and_1' + + +def _alter_auto_relevant_table() -> None: + # Add confidence column + op.add_column( + AUTO_RELEVANT_TABLE_NAME, + sa.Column(CONFIDENCE_COLUMN_NAME, sa.Float(), nullable=True) + ) + # Add check constraint that confidence is between 0 and 1 + op.create_check_constraint( + CHECK_CONSTRAINT_NAME, + AUTO_RELEVANT_TABLE_NAME, + f'{CONFIDENCE_COLUMN_NAME} BETWEEN 0 AND 1' + ) + + # Add model name column + op.add_column( + AUTO_RELEVANT_TABLE_NAME, + sa.Column(MODEL_NAME_COLUMN_NAME, sa.String(), nullable=True) + ) + + +def _revert_auto_relevant_table() -> None: + op.drop_column(AUTO_RELEVANT_TABLE_NAME, CONFIDENCE_COLUMN_NAME) + op.drop_column(AUTO_RELEVANT_TABLE_NAME, MODEL_NAME_COLUMN_NAME) + + + +def upgrade() -> None: + _alter_auto_relevant_table() + + +def downgrade() -> None: + _revert_auto_relevant_table() diff --git a/alembic/versions/2025_07_17_0856-9552d354ccf4_remove_batches_dependency_for_urls.py b/alembic/versions/2025_07_17_0856-9552d354ccf4_remove_batches_dependency_for_urls.py new file mode 100644 index 00000000..5a97a228 --- /dev/null +++ b/alembic/versions/2025_07_17_0856-9552d354ccf4_remove_batches_dependency_for_urls.py @@ -0,0 +1,83 @@ +"""Remove batches dependency for urls + +Revision ID: 9552d354ccf4 +Revises: d6519a3ca5c9 +Create Date: 2025-07-17 08:56:22.919486 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa + +from src.util.alembic_helpers import id_column, created_at_column, updated_at_column, url_id_column, batch_id_column + +# revision identifiers, used by Alembic. +revision: str = '9552d354ccf4' +down_revision: Union[str, None] = 'd6519a3ca5c9' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + +LINK_TABLE_NAME = 'link_batch_urls' + +BATCHES_COLUMN_NAME = 'batch_id' + +def _create_link_table(): + op.create_table( + LINK_TABLE_NAME, + id_column(), + batch_id_column(), + url_id_column(), + created_at_column(), + updated_at_column(), + sa.UniqueConstraint('url_id', name='uq_link_table_url_id') + ) + +def _drop_link_table(): + op.drop_table(LINK_TABLE_NAME) + +def _migrate_batch_ids_to_link_table(): + op.execute(f""" + INSERT INTO {LINK_TABLE_NAME} (batch_id, url_id) + SELECT batch_id, id + FROM urls + """) + +def _migrate_link_table_to_batch_ids(): + op.execute(f""" + UPDATE urls + SET batch_id = ( + SELECT batch_id + FROM {LINK_TABLE_NAME} + WHERE url_id = urls.id + ) + """) + +def _drop_url_batches_column(): + op.drop_column('urls', BATCHES_COLUMN_NAME) + +def _add_url_batches_column(): + op.add_column( + 'urls', + batch_id_column(nullable=True) + ) + +def _add_not_null_constraint(): + op.alter_column( + 'urls', + BATCHES_COLUMN_NAME, + nullable=False + ) + + +def upgrade() -> None: + _create_link_table() + _migrate_batch_ids_to_link_table() + _drop_url_batches_column() + + +def downgrade() -> None: + _add_url_batches_column() + _migrate_link_table_to_batch_ids() + _add_not_null_constraint() + _drop_link_table() diff --git a/collector_db/alembic/versions/5a5ca06f36fa_create_url_error_info_table_and_url_error_status.py b/alembic/versions/5a5ca06f36fa_create_url_error_info_table_and_url_error_status.py similarity index 100% rename from collector_db/alembic/versions/5a5ca06f36fa_create_url_error_info_table_and_url_error_status.py rename to alembic/versions/5a5ca06f36fa_create_url_error_info_table_and_url_error_status.py diff --git a/alembic/versions/76f902fe18cd_add_approved_enum_value_to_urlstatus.py b/alembic/versions/76f902fe18cd_add_approved_enum_value_to_urlstatus.py new file mode 100644 index 00000000..b548cc54 --- /dev/null +++ b/alembic/versions/76f902fe18cd_add_approved_enum_value_to_urlstatus.py @@ -0,0 +1,80 @@ +"""Add approved enum value to URLStatus + +Revision ID: 76f902fe18cd +Revises: d7eb670edaf0 +Create Date: 2025-02-21 13:46:00.621485 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa +from sqlalchemy.dialects import postgresql + +# revision identifiers, used by Alembic. +revision: str = '76f902fe18cd' +down_revision: Union[str, None] = 'd7eb670edaf0' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + +old_enum_values = ('pending', 'submitted', 'human_labeling', 'rejected', 'duplicate', 'error') +new_enum_values = old_enum_values + ('approved',) + +old_outcome_enum = postgresql.ENUM( + *old_enum_values, + name='url_status' +) + +tmp_new_outcome_enum = postgresql.ENUM( + *new_enum_values, + name='tmp_url_status' +) +new_outcome_enum = postgresql.ENUM( + *new_enum_values, + name='url_status' +) + +common_args = { + "table_name": "urls", + "column_name": "outcome", +} + +def upgrade() -> None: + tmp_new_outcome_enum.create(op.get_bind(), checkfirst=True) + op.alter_column( + **common_args, + existing_type=old_outcome_enum, + type_=tmp_new_outcome_enum, + postgresql_using='outcome::text::tmp_url_status' + ) + old_outcome_enum.drop(op.get_bind(), checkfirst=True) + new_outcome_enum.create(op.get_bind(), checkfirst=True) + + op.alter_column( + **common_args, + existing_type=tmp_new_outcome_enum, + type_=new_outcome_enum, + postgresql_using='outcome::text::url_status' + ) + tmp_new_outcome_enum.drop(op.get_bind(), checkfirst=True) + +def downgrade() -> None: + tmp_new_outcome_enum.create(op.get_bind()) + op.alter_column( + **common_args, + existing_type=new_outcome_enum, + type_=tmp_new_outcome_enum, + postgresql_using='outcome::text::tmp_url_status' + ) + + new_outcome_enum.drop(op.get_bind(), checkfirst=True) + old_outcome_enum.create(op.get_bind(), checkfirst=True) + + op.alter_column( + **common_args, + existing_type=tmp_new_outcome_enum, + type_=old_outcome_enum, + postgresql_using='outcome::text::url_status' + ) + + tmp_new_outcome_enum.drop(op.get_bind(), checkfirst=True) \ No newline at end of file diff --git a/collector_db/alembic/versions/86692fc1d862_add_url_metadata_table.py b/alembic/versions/86692fc1d862_add_url_metadata_table.py similarity index 100% rename from collector_db/alembic/versions/86692fc1d862_add_url_metadata_table.py rename to alembic/versions/86692fc1d862_add_url_metadata_table.py diff --git a/alembic/versions/8c44e02733ae_add_user_url_agency_suggestions_and_.py b/alembic/versions/8c44e02733ae_add_user_url_agency_suggestions_and_.py new file mode 100644 index 00000000..87c069fa --- /dev/null +++ b/alembic/versions/8c44e02733ae_add_user_url_agency_suggestions_and_.py @@ -0,0 +1,59 @@ +"""Add user_url_agency_suggestions and trigger + +Revision ID: 8c44e02733ae +Revises: 19bf57df581a +Create Date: 2025-02-05 10:33:46.002025 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa +from sqlalchemy import Column, Integer +from sqlalchemy.dialects import postgresql + +# revision identifiers, used by Alembic. +revision: str = '8c44e02733ae' +down_revision: Union[str, None] = '19bf57df581a' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def upgrade() -> None: + op.add_column( + table_name='url_agency_suggestions', + column=Column( + name="user_id", + type_=Integer, + nullable=True + ) + ) + + op.execute( + """ + CREATE OR REPLACE FUNCTION user_url_agency_suggestions_value() + RETURNS TRIGGER AS $$ + BEGIN + IF NEW.suggestion_type = 'Manual Suggestion' and NEW.user_id IS NULL THEN + RAISE EXCEPTION 'User ID must not be null when suggestion type is "Manual Suggestion"'; + END IF; + RETURN NEW; + END; + $$ LANGUAGE plpgsql; + + CREATE TRIGGER enforce_url_agency_suggestions_manual_suggestion_user_id + BEFORE INSERT ON url_agency_suggestions + FOR EACH ROW + EXECUTE FUNCTION user_url_agency_suggestions_value(); + + """ + ) + + +def downgrade() -> None: + op.execute("DROP TRIGGER IF EXISTS enforce_url_agency_suggestions_manual_suggestion_user_id ON url_agency_suggestions;") + op.execute( + """ + DROP FUNCTION IF EXISTS user_url_agency_suggestions_value(); + """ + ) diff --git a/collector_db/alembic/versions/9afd8a5633c9_create_htmlcontent_and_rooturl_tables.py b/alembic/versions/9afd8a5633c9_create_htmlcontent_and_rooturl_tables.py similarity index 98% rename from collector_db/alembic/versions/9afd8a5633c9_create_htmlcontent_and_rooturl_tables.py rename to alembic/versions/9afd8a5633c9_create_htmlcontent_and_rooturl_tables.py index 81401c06..ed4bea29 100644 --- a/collector_db/alembic/versions/9afd8a5633c9_create_htmlcontent_and_rooturl_tables.py +++ b/alembic/versions/9afd8a5633c9_create_htmlcontent_and_rooturl_tables.py @@ -10,7 +10,7 @@ import sqlalchemy as sa from alembic import op -from collector_db.enums import PGEnum +from src.db.enums import PGEnum # revision identifiers, used by Alembic. revision: str = '9afd8a5633c9' diff --git a/collector_db/alembic/versions/a4750e7ff8e7_add_updated_at_to_url_table.py b/alembic/versions/a4750e7ff8e7_add_updated_at_to_url_table.py similarity index 100% rename from collector_db/alembic/versions/a4750e7ff8e7_add_updated_at_to_url_table.py rename to alembic/versions/a4750e7ff8e7_add_updated_at_to_url_table.py diff --git a/collector_db/alembic/versions/d11f07224d1f_initial_creation.py b/alembic/versions/d11f07224d1f_initial_creation.py similarity index 100% rename from collector_db/alembic/versions/d11f07224d1f_initial_creation.py rename to alembic/versions/d11f07224d1f_initial_creation.py diff --git a/alembic/versions/d7eb670edaf0_revise_agency_identification_logic.py b/alembic/versions/d7eb670edaf0_revise_agency_identification_logic.py new file mode 100644 index 00000000..cd68a4b5 --- /dev/null +++ b/alembic/versions/d7eb670edaf0_revise_agency_identification_logic.py @@ -0,0 +1,150 @@ +"""Revise agency identification logic + +Revision ID: d7eb670edaf0 +Revises: 8c44e02733ae +Create Date: 2025-02-07 13:10:41.181578 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa + +from src.db.enums import PGEnum + +# revision identifiers, used by Alembic. +revision: str = 'd7eb670edaf0' +down_revision: Union[str, None] = '8c44e02733ae' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + +suggestion_type_enum = PGEnum( + 'Auto Suggestion', + 'Manual Suggestion', + 'Unknown', + 'New Agency', + 'Confirmed', name='url_agency_suggestion_type' +) + +def upgrade(): + # Create agencies table + op.create_table( + "agencies", + sa.Column("agency_id", sa.Integer(), primary_key=True), + sa.Column("name", sa.String(), nullable=False), + sa.Column("state", sa.String(), nullable=True), + sa.Column("county", sa.String(), nullable=True), + sa.Column("locality", sa.String(), nullable=True), + sa.Column("updated_at", sa.DateTime(), nullable=False, server_default=sa.func.now()), + ) + + # Create confirmed_url_agency table + op.create_table( + "confirmed_url_agency", + sa.Column("id", sa.Integer(), primary_key=True, autoincrement=True), + sa.Column("agency_id", sa.Integer(), sa.ForeignKey("agencies.agency_id"), nullable=False), + sa.Column("url_id", sa.Integer(), sa.ForeignKey("urls.id"), nullable=False), + ) + op.create_unique_constraint( + "uq_confirmed_url_agency", "confirmed_url_agency", ["agency_id", "url_id"] + ) + + # Create automated_url_agency_suggestions table + op.create_table( + "automated_url_agency_suggestions", + sa.Column("id", sa.Integer(), primary_key=True, autoincrement=True), + sa.Column("agency_id", sa.Integer(), sa.ForeignKey("agencies.agency_id"), nullable=True), + sa.Column("url_id", sa.Integer(), sa.ForeignKey("urls.id"), nullable=False), + sa.Column("is_unknown", sa.Boolean(), nullable=True), + ) + op.create_unique_constraint( + "uq_automated_url_agency_suggestions", "automated_url_agency_suggestions", ["agency_id", "url_id"] + ) + op.execute(""" + CREATE OR REPLACE FUNCTION enforce_no_agency_id_if_unknown() + RETURNS TRIGGER AS $$ + BEGIN + IF NEW.is_unknown = TRUE AND NEW.agency_id IS NOT NULL THEN + RAISE EXCEPTION 'agency_id must be null when is_unknown is TRUE'; + END IF; + RETURN NEW; + END; + $$ LANGUAGE plpgsql; + """) + op.execute(""" + CREATE TRIGGER enforce_no_agency_id_if_unknown + BEFORE INSERT ON automated_url_agency_suggestions + FOR EACH ROW + EXECUTE FUNCTION enforce_no_agency_id_if_unknown(); + """) + # Create user_url_agency_suggestions table + op.create_table( + "user_url_agency_suggestions", + sa.Column("id", sa.Integer(), primary_key=True, autoincrement=True), + sa.Column("agency_id", sa.Integer(), sa.ForeignKey("agencies.agency_id"), nullable=True), + sa.Column("url_id", sa.Integer(), sa.ForeignKey("urls.id"), nullable=False), + sa.Column("user_id", sa.Integer(), nullable=False), + sa.Column("is_new", sa.Boolean(), nullable=True), + ) + op.create_unique_constraint( + "uq_user_url_agency_suggestions", "user_url_agency_suggestions", ["agency_id", "url_id", "user_id"] + ) + op.execute(""" + CREATE OR REPLACE FUNCTION enforce_no_agency_id_if_new() + RETURNS TRIGGER AS $$ + BEGIN + IF NEW.is_new = TRUE AND NEW.agency_id IS NOT NULL THEN + RAISE EXCEPTION 'agency_id must be null when is_new is TRUE'; + END IF; + RETURN NEW; + END; + $$ LANGUAGE plpgsql; + """) + op.execute(""" + CREATE TRIGGER enforce_no_agency_id_if_new + BEFORE INSERT ON user_url_agency_suggestions + FOR EACH ROW + EXECUTE FUNCTION enforce_no_agency_id_if_new(); + """) + + + + + op.drop_table('url_agency_suggestions') + suggestion_type_enum.drop(op.get_bind(), checkfirst=True) + + + +def downgrade(): + # Drop constraints first + op.drop_constraint("uq_confirmed_url_agency", "confirmed_url_agency", type_="unique") + op.drop_constraint("uq_automated_url_agency_suggestions", "automated_url_agency_suggestions", type_="unique") + op.drop_constraint("uq_user_url_agency_suggestions", "user_url_agency_suggestions", type_="unique") + + # Drop tables + op.drop_table("user_url_agency_suggestions") + op.drop_table("automated_url_agency_suggestions") + op.drop_table("confirmed_url_agency") + op.drop_table("agencies") + + op.create_table('url_agency_suggestions', + sa.Column('id', sa.Integer(), nullable=False), + sa.Column('url_id', sa.Integer(), nullable=False), + sa.Column('suggestion_type', suggestion_type_enum, nullable=False), + sa.Column('agency_id', sa.Integer(), nullable=True), + sa.Column('agency_name', sa.String(), nullable=True), + sa.Column('state', sa.String(), nullable=True), + sa.Column('county', sa.String(), nullable=True), + sa.Column('locality', sa.String(), nullable=True), + sa.Column('updated_at', sa.TIMESTAMP(), server_default=sa.text('now()'), nullable=False), + sa.ForeignKeyConstraint(['url_id'], ['urls.id'], ), + sa.PrimaryKeyConstraint('id') + ) + op.execute(""" + DROP TRIGGER IF EXISTS enforce_no_agency_id_if_unknown ON automated_url_agency_suggestions; + """) + op.execute(""" + DROP FUNCTION IF EXISTS enforce_no_agency_id_if_unknown; + """) + op.execute("DROP FUNCTION enforce_no_agency_id_if_new()") + diff --git a/alembic/versions/dae00e5aa8dd_create_rooturlcache.py b/alembic/versions/dae00e5aa8dd_create_rooturlcache.py new file mode 100644 index 00000000..c95b10e0 --- /dev/null +++ b/alembic/versions/dae00e5aa8dd_create_rooturlcache.py @@ -0,0 +1,34 @@ +"""Create RootURLCache + +Revision ID: dae00e5aa8dd +Revises: dcd158092de0 +Create Date: 2025-01-19 10:40:19.650982 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa +from sqlalchemy.dialects import postgresql + +# revision identifiers, used by Alembic. +revision: str = 'dae00e5aa8dd' +down_revision: Union[str, None] = 'dcd158092de0' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def upgrade() -> None: + op.create_table('root_url_cache', + sa.Column('id', sa.Integer(), nullable=False), + sa.Column('url', sa.String(), nullable=False), + sa.Column('page_title', sa.String(), nullable=False), + sa.Column('page_description', sa.String(), nullable=True), + sa.Column('updated_at', sa.TIMESTAMP(), server_default=sa.text('now()'), nullable=False), + sa.PrimaryKeyConstraint('id'), + sa.UniqueConstraint('url', name='root_url_cache_uq_url') + ) + + +def downgrade() -> None: + op.drop_table('root_url_cache') diff --git a/collector_db/alembic/versions/db6d60feda7d_convert_batch_strategy_status_to_enums.py b/alembic/versions/db6d60feda7d_convert_batch_strategy_status_to_enums.py similarity index 100% rename from collector_db/alembic/versions/db6d60feda7d_convert_batch_strategy_status_to_enums.py rename to alembic/versions/db6d60feda7d_convert_batch_strategy_status_to_enums.py diff --git a/collector_db/alembic/versions/dcd158092de0_create_metadata_annotation_table.py b/alembic/versions/dcd158092de0_create_metadata_annotation_table.py similarity index 100% rename from collector_db/alembic/versions/dcd158092de0_create_metadata_annotation_table.py rename to alembic/versions/dcd158092de0_create_metadata_annotation_table.py diff --git a/collector_db/alembic/versions/e27c5f8409a3_convert_url_outcome_to_enum.py b/alembic/versions/e27c5f8409a3_convert_url_outcome_to_enum.py similarity index 100% rename from collector_db/alembic/versions/e27c5f8409a3_convert_url_outcome_to_enum.py rename to alembic/versions/e27c5f8409a3_convert_url_outcome_to_enum.py diff --git a/annotation_pipeline/README.md b/annotation_pipeline/README.md deleted file mode 100644 index a6d7a1e4..00000000 --- a/annotation_pipeline/README.md +++ /dev/null @@ -1,43 +0,0 @@ -# Annotation Pipeline - -This Python script automates the process of crawling for relevant URLs, scraping HTML content from those pages, formatting the data as Label Studio tasks, and uploading them to Label Studio for annotation. - -## Features - -- **Common Crawl Integration**: Initiates the Common Crawl script to crawl for relevant URLs based on specified parameters such as Common Crawl ID, URL type, keyword, and number of pages to process. - -- **HTML Tag Collector**: Collects HTML tags from the crawled URLs using the tag collector script. - -- **Label Studio Tasks**: Formats the collected data into tasks suitable for Label Studio annotation, including pre-annotation support for assumed record types. - -- **Upload to Label Studio**: Uploads the tasks to Label Studio for review and annotation. - -## Setup - -1. Create venv and install Python dependencies (if not done previously) - (assuming these are run within the annotation_pipeline/ folder): - - `python -m venv annotation-pipeline-env` - - `source annotation-pipeline-env` - - `pip install -r requirements.txt` - -2. Setup Environment variables in data_source_identification/.env - - HUGGINGFACE_ACCESS_TOKEN=... - - LABEL_STUDIO_ACCESS_TOKEN=... - - LABEL_STUDIO_PROJECT_ID=... - - LABEL_STUDIO_ORGANIZATION_ID=... - -## Usage - -Run from the parent directory (data-source-identification/) - -The output logs from common crawl will be stored in `annotation_pipeline/data` by default. This can be modified by editing the `annotation_pipeline/config.ini` file. - -`python annotation_pipeline/populate_labelstudio.py common_crawl_id url keyword --pages num_pages [--record-type record_type]` - -- `common_crawl_id`: ID of the Common Crawl Corpus to search -- `url`: Type of URL to search for (e.g. *.gov for all .gov domains). -- `keyword`: Keyword that must be matched in the full URL -- `--pages num_pages`: Number of pages to search -- `--record-type record_type` (optional): Assumed record type for pre-annotation. - -e.g. `python annotation_pipeline/populate_labelstudio.py CC-MAIN-2024-10 '*.gov' arrest --pages 2 --record-type 'Arrest Records'` diff --git a/annotation_pipeline/config.ini b/annotation_pipeline/config.ini deleted file mode 100644 index 6f2deb96..00000000 --- a/annotation_pipeline/config.ini +++ /dev/null @@ -1,19 +0,0 @@ -# This configuration file contains default settings for the Common Crawler application. -# Settings can be modified to suit different environments or testing needs. - -[DEFAULT] -# Filename for the cache. Stores which pages have been crawled -# at which combinations of index, url search term, and keyword -# to avoid re-crawling them. -cache_filename = cache - -# Directory where data files (both cache and output) are stored. -# Change as needed for different environments. -# Path is relative from working directory that executes common_crawler/main.py -data_dir = annotation_pipeline/data - -# Filename for the output CSV containing crawled URLs. -output_filename = urls - -# Name of the huggingface repo -huggingface_repo_id = PDAP/unlabeled-urls diff --git a/annotation_pipeline/data/batch_info.csv b/annotation_pipeline/data/batch_info.csv deleted file mode 100644 index 35b2c19e..00000000 --- a/annotation_pipeline/data/batch_info.csv +++ /dev/null @@ -1,4 +0,0 @@ -Datetime,Source,Count,Keywords,Notes,Filename -2024-08-12 16:31:20.362180,Common Crawl,0,*.com - police,"CC-MAIN-2024-14, 10 pages, starting at 1",urls_2024-08-12_16-31-20 -2024-08-16 15:18:09.405734,Common Crawl,2,*.com - police,"CC-MAIN-2024-30, 2 pages, starting at 1",urls_2024-08-16_15-18-09 -2024-08-20 14:07:03.339044,Common Crawl,22,*.gov - police,"CC-MAIN-2024-30, 2 pages, starting at 1",urls_2024-08-20_14-07-03 diff --git a/annotation_pipeline/data/cache.json b/annotation_pipeline/data/cache.json deleted file mode 100644 index 066b4285..00000000 --- a/annotation_pipeline/data/cache.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "CC-MAIN-2024-14": { - "*.com": { - "police": 1 - } - }, - "CC-MAIN-2024-30": { - "*.com": { - "police": 2 - }, - "*.gov": { - "police": 2 - } - } -} \ No newline at end of file diff --git a/annotation_pipeline/data/tag_collector/urls_2024-08-16_15-18-09.csv b/annotation_pipeline/data/tag_collector/urls_2024-08-16_15-18-09.csv deleted file mode 100644 index b7b488cd..00000000 --- a/annotation_pipeline/data/tag_collector/urls_2024-08-16_15-18-09.csv +++ /dev/null @@ -1,3 +0,0 @@ -url,url_path,html_title,meta_description,root_page_title,http_response,h1,h2,h3,h4,h5,h6,div_text,batch_id -https://001-adult-toys-n-sex-dolls.com/video/3879/stoya-gets-investigated-by-the-police/,video/3879/stoya-gets-investigated-by-the-police,Stoya gets investigated by the police | One truly amazing adult page with everything included,"Stoya tweeted her accusations, and neither porn star James.",Sex dolls porn clips | One truly amazing adult page with everything included,200,"[""Stoya gets investigated by the police""]","[""Related Videos""]",[],[],[],[],Sex dolls Home Models Categories Sex dolls Home Models Categories Home Models Categories ,2024-08-16 15:18:09 -https://001-adult-toys-n-sex-dolls.com/video/39592/policeman-helps-out-jasmine-jae-glaze-up-her-filth/,video/39592/policeman-helps-out-jasmine-jae-glaze-up-her-filth,Policeman helps out Jasmine Jae glaze up her filth | One truly amazing adult page with everything included,Please rest assured that we are working hard to reach out to.,Sex dolls porn clips | One truly amazing adult page with everything included,200,"[""Policeman helps out Jasmine Jae glaze up her filth""]","[""Related Videos""]",[],[],[],[],Sex dolls Home Models Categories Sex dolls Home Models Categories Home Models Categories ,2024-08-16 15:18:09 diff --git a/annotation_pipeline/data/tag_collector/urls_2024-08-20_14-07-03.csv b/annotation_pipeline/data/tag_collector/urls_2024-08-20_14-07-03.csv deleted file mode 100644 index 66108893..00000000 --- a/annotation_pipeline/data/tag_collector/urls_2024-08-20_14-07-03.csv +++ /dev/null @@ -1,23 +0,0 @@ -url,url_path,html_title,meta_description,root_page_title,http_response,h1,h2,h3,h4,h5,h6,div_text,batch_id -https://origin-www.acquisition.gov/dfars/252.225-7029-acquisition-uniform-components-afghan-military-or-afghan-national-police.,dfars/252.225-7029-acquisition-uniform-components-afghan-military-or-afghan-national-police.,252.225-7029 Acquisition of Uniform Components for Afghan Military or Afghan National Police. | Acquisition.GOV,,Home | Acquisition.GOV,200,"[""DFARS"", ""252.225-7029 Acquisition of Uniform Components for Afghan Military or Afghan National Police.""]","[""Main navigation"", ""Breadcrumb"", ""DFARS Parts"", ""Regulations DFARS Menu"", ""DFARS Appendix"", ""Regulations DFARS Appendix Menu"", ""Upper Footer Menu""]","[""FAR""]","[""Favorite"", ""X""]",[],[],,2024-08-20 14:07:03 -https://acworth-ga.gov/events/category/police-event/,events/category/police-event,"Events from November 16 – November 16 › police-event › – City of Acworth, GA",,"Home - City of Acworth, GA",200,"[""police-event""]","[""Events Search and Views Navigation"", ""November 2024""]","[""Event Views Navigation""]",[],[],[],Open toolbar Accessibility Tools Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset ,2024-08-20 14:07:03 -https://acworth-ga.gov/events/tag/police-department/,events/tag/police-department,"Events from November 16 – November 16 – City of Acworth, GA",,"Home - City of Acworth, GA",200,"[""police-department""]","[""Events Search and Views Navigation"", ""November 2024""]","[""Event Views Navigation""]",[],[],[],Open toolbar Accessibility Tools Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset ,2024-08-20 14:07:03 -https://acworth-ga.gov/faq-items/i-got-a-ticket-from-an-acworth-police-officer-what-do-i-do/,faq-items/i-got-a-ticket-from-an-acworth-police-officer-what-do-i-do,"I got a ticket from an Acworth Police officer. What do I do? - City of Acworth, GA",There is a court date listed on the citation. This is an arraignment date. You will be asked to enter a plea at this time. Please be on time for your appointed court date as the judge will give you a lot of valuable information at the opening of the court session.,"Home - City of Acworth, GA",200,"[""I got a ticket from an Acworth Police officer. What do I do?""]",[],[],"[""Please Feel Free to Share This Story:""]",[],[],"Open toolbar Accessibility Tools Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset Previous Next I got a ticket from an Acworth Police officer. What do I do? There is a court date listed on the citation. This is an arraignment date. You will be asked to enter a plea at this time. Please be on time for your appointed court date as the judge will give you a lot of valuable information at the opening of the court session. Mike Brooks 2024-07-29T13:52:05-04:00 September 15, 2023 | Please Feel Free to Share This Story: Facebook X LinkedIn Pinterest Email 4415 Center Street, Acworth GA 30101 Phone Directory Contact Us © 2023 City of Acworth Acworth is located in the foothills of the North Georgia mountains and is nestled along the banks of Lake Acworth and Lake Allatoona, hence its nickname “The Lake City.” The city boasts a rich history, a charming downtown, abundant outdoor recreational activities, a vibrant restaurant scene, and an active festival and events calendar. Acworth is one of the best, family-friendly destinations in the Atlanta region. Come discover why You’re Welcome in Acworth! ESS | Webmail | Handbook | Laserfiche | Login Previous Next I got a ticket from an Acworth Police officer. What do I do? There is a court date listed on the citation. This is an arraignment date. You will be asked to enter a plea at this time. Please be on time for your appointed court date as the judge will give you a lot of valuable information at the opening of the court session. Mike Brooks 2024-07-29T13:52:05-04:00 September 15, 2023 | Please Feel Free to Share This Story: Facebook X LinkedIn Pinterest Email 4415 Center Street, Acworth GA 30101 Phone Directory Contact Us © 2023 City of Acworth Acworth is located in the foothills of the North Georgia mountains and is nestled along the banks of Lake Acworth and Lake Allatoona, hence its nickname “The Lake City.” The city boasts a rich history, a charming downtown, abundant outdoor recreational activities, a vibrant restaurant scene, and an active festival and events calendar. Acworth is one of the best, family-friendly destinations in the Atlanta region. Come discover why You’re Welcome in Acworth! ESS | Webmail | Handbook | Laserfiche | Login ",2024-08-20 14:07:03 -https://acworth-ga.gov/presentation-introducing-three-new-civilian-members-of-the-acworth-police-department/,presentation-introducing-three-new-civilian-members-of-the-acworth-police-department,"Presentation Introducing Three New Civilian Members of the Acworth Police Department - City of Acworth, GA","At the Thursday, May 18 regular city council meeting, Chief Evans introduced three new civilian members of the Acworth Police Department. Macey Williams serves as Crime Analyst, Madison Harrison serves as Evidence Tech, and Emily Hall serves as Victim Advocate. These employees play an integral role in assisting officers with solving cases, and Chief Evans","Home - City of Acworth, GA",200,[],[],"[""Presentation Introducing Three New Civilian Members of the Acworth Police Department""]","[""Share this on Social Media""]",[],[],"Open toolbar Accessibility Tools Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset PHONE DIRECTORY RESOURCES Search for: Search Button PHONE DIRECTORY RESOURCES Search for: Search Button NEWS DEPARTMENTS GOVERNANCE & DEVELOPMENT Development Clerks Office Court Services DDA, Tourism, and Historic Preservation OPERATIONS Parks, Recreation, and Community Resources Power, Public Works, and Stormwater SUPPORT SERVICES Administration Customer Service Human Resources Finance Information Technology PUBLIC SAFETY Acworth Police RESIDENTS Public Art Master Plan Application for Boards & Commissions Board of Aldermen Customer Service Parks, Recreation, and Community Resources Historic Acworth Master Fee Schedule E-News Sign Up Online Payments BUSINESS Bids & Projects E-Verify Permits, Applications, & Ordinances City Code of Ordinances Master Fee Schedule Start a Business EVENTS VISIT ACWORTH NEWS DEPARTMENTS GOVERNANCE & DEVELOPMENT Development Clerks Office Court Services DDA, Tourism, and Historic Preservation OPERATIONS Parks, Recreation, and Community Resources Power, Public Works, and Stormwater SUPPORT SERVICES Administration Customer Service Human Resources Finance Information Technology PUBLIC SAFETY Acworth Police RESIDENTS Public Art Master Plan Application for Boards & Commissions Board of Aldermen Customer Service Parks, Recreation, and Community Resources Historic Acworth Master Fee Schedule E-News Sign Up Online Payments BUSINESS Bids & Projects E-Verify Permits, Applications, & Ordinances City Code of Ordinances Master Fee Schedule Start a Business EVENTS VISIT ACWORTH Presentation Introducing Three New Civilian Members of the Acworth Police Department Published On: May 18, 2023 At the Thursday, May 18 regular city council meeting, Chief Evans introduced three new civilian members of the Acworth Police Department. Macey Williams serves as Crime Analyst, Madison Harrison serves as Evidence Tech, and Emily Hall serves as Victim Advocate. These employees play an integral role in assisting officers with solving cases, and Chief Evans was pleased to share with Mayor Allegood and Acworth’s Aldermen how important their new positions are in supporting both the Acworth Police Department and the community as a whole. Share this on Social Media 4415 Center Street, Acworth GA 30101 Phone Directory Contact Us © 2023 City of Acworth Acworth is located in the foothills of the North Georgia mountains and is nestled along the banks of Lake Acworth and Lake Allatoona, hence its nickname “The Lake City.” The city boasts a rich history, a charming downtown, abundant outdoor recreational activities, a vibrant restaurant scene, and an active festival and events calendar. Acworth is one of the best, family-friendly destinations in the Atlanta region. Come discover why You’re Welcome in Acworth! ESS | Webmail | Handbook | Laserfiche | Login ",2024-08-20 14:07:03 -https://acworth-ga.gov/team_member/police-department-records/,team_member/police-department-records,"Police Department Records - City of Acworth, GA",,"Home - City of Acworth, GA",200,"[""Police Department Records""]",[],[],"[""Please Feel Free to Share This Story:""]",[],[],"Open toolbar Accessibility Tools Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset PHONE DIRECTORY RESOURCES Search for: Search Button PHONE DIRECTORY RESOURCES Search for: Search Button NEWS DEPARTMENTS GOVERNANCE & DEVELOPMENT Development Clerks Office Court Services DDA, Tourism, and Historic Preservation OPERATIONS Parks, Recreation, and Community Resources Power, Public Works, and Stormwater SUPPORT SERVICES Administration Customer Service Human Resources Finance Information Technology PUBLIC SAFETY Acworth Police RESIDENTS Public Art Master Plan Application for Boards & Commissions Board of Aldermen Customer Service Parks, Recreation, and Community Resources Historic Acworth Master Fee Schedule E-News Sign Up Online Payments BUSINESS Bids & Projects E-Verify Permits, Applications, & Ordinances City Code of Ordinances Master Fee Schedule Start a Business EVENTS VISIT ACWORTH NEWS DEPARTMENTS GOVERNANCE & DEVELOPMENT Development Clerks Office Court Services DDA, Tourism, and Historic Preservation OPERATIONS Parks, Recreation, and Community Resources Power, Public Works, and Stormwater SUPPORT SERVICES Administration Customer Service Human Resources Finance Information Technology PUBLIC SAFETY Acworth Police RESIDENTS Public Art Master Plan Application for Boards & Commissions Board of Aldermen Customer Service Parks, Recreation, and Community Resources Historic Acworth Master Fee Schedule E-News Sign Up Online Payments BUSINESS Bids & Projects E-Verify Permits, Applications, & Ordinances City Code of Ordinances Master Fee Schedule Start a Business EVENTS VISIT ACWORTH Previous Next Police Department Records Mike Brooks 2023-12-18T10:02:20-05:00 December 18, 2023 | Please Feel Free to Share This Story: Facebook X LinkedIn Pinterest Email 4415 Center Street, Acworth GA 30101 Phone Directory Contact Us © 2023 City of Acworth Acworth is located in the foothills of the North Georgia mountains and is nestled along the banks of Lake Acworth and Lake Allatoona, hence its nickname “The Lake City.” The city boasts a rich history, a charming downtown, abundant outdoor recreational activities, a vibrant restaurant scene, and an active festival and events calendar. Acworth is one of the best, family-friendly destinations in the Atlanta region. Come discover why You’re Welcome in Acworth! ESS | Webmail | Handbook | Laserfiche | Login ",2024-08-20 14:07:03 -https://www.ada.gov/_pages/redirects/illinois_state_police/,_pages/redirects/illinois_state_police,SETTLEMENT AGREEMENT BETWEEN THE UNITED STATES AND ILLINOIS STATE POLICE,"The ADA Home Page provides access to Americans with Disabilities Act (ADA) regulations for businesses and State and local governments, technical assistance materials, ADA Standards for Accessible Design, links to Federal agencies with ADA responsibilities and information, updates on new ADA requirements, streaming video, information about Department of Justice ADA settlement agreements, consent decrees, and enforcement activities and access to Freedom of Information Act (FOIA) ADA material",The Americans with Disabilities Act | ADA.gov,200,"[""SETTLEMENT AGREEMENT BETWEEN THE UNITED STATES \n OF AMERICA AND AND ILLINOIS STATE POLICE""]","[""I. BACKGROUND"", ""II. GENERAL AGREEMENT"", ""III. SPECIFIC REMEDIAL RELIEF"", ""IV. IMPLEMENTATION AND ENFORCEMENT""]",[],[],[],[],,2024-08-20 14:07:03 -https://www.ada.gov/policeinfo.htm,policeinfo.htm,American's with Disabilities Act: Information for Law Enforcement,"The ADA Home Page provides access to Americans with Disabilities Act (ADA) regulations for businesses and State and local governments, technical assistance materials, ADA Standards for Accessible Design, links to Federal agencies with ADA responsibilities and information, updates on new ADA requirements, streaming video, information about Department of Justice ADA settlement agreements, consent decrees, and enforcement activities and access to Freedom of Information Act (FOIA) ADA material",The Americans with Disabilities Act | ADA.gov,200,"[""Americans with Disabilites Act Information for Law Enforcement""]","[""PUBLICATIONS""]",[],[],[],[],"Americans with Disabilites Act Information for Law Enforcement How do you interview a witness who is deaf? How do you assist a person who is having a seizure? How do you transport a suspect who uses a wheelchair? Under the Americans with Disabilities Act (ADA), people who have disabilities are entitled to the same services law enforcement provides to anyone else. They may not be excluded or segregated from services, be denied services, or otherwise be treated differently than other people. The following compliance assistance materials will help state and local law enforcement officers understand how to interact with victims, witnesses, suspects, and others who have disabilities. PUBLICATIONS Communicating with People Who Are Deaf or Hard of Hearing: ADA Guide for Law Enforcement Officers - This 8-panel pocket guide provides basic information for officers about communicating effectively with people who are deaf or hard of hearing. Guide for Officers Model Policy for Law Enforcement on Communicating with People Who Are Deaf or Hard of Hearing - This 4-page document serves as a model for law enforcement agencies when adopting a policy on effective communication with people who are deaf or hard of hearing. Agencies are encouraged to download and adapt the policy to suit their needs. Model Policy (PDF) | Model Policy (HTML) Commonly Asked Questions about the Americans with Disabilities Act and Law Enforcement - This 12-page fact sheet answers frequent questions about the ADA and its effect on law enforcement services involving people with disabilities. Commonly Asked Questions (PDF) | Commonly Asked Questions (HTML) Questions and Answers: The Americans with Disabilities Act and Hiring Police Officers - This 5-page fact sheet answers frequent questions about the ADA and its impact on law enforcement officers with disabilities. Questions and Answers (PDF) | Questions and Answers (HTML) Additional ADA information for state and local government agencies including law enforcement ADA Regulations | Other Publications December 1, 2008 ",2024-08-20 14:07:03 -https://www.ada.gov/policevideo/policedialupgallery.htm,policevideo/policedialupgallery.htm,,,The Americans with Disabilities Act | ADA.gov,404,,,,,,,,2024-08-20 14:07:03 -https://www.adamscountypa.gov/departments/victimwitness/police-departments,departments/victimwitness/police-departments,Adams County PA - Police Departments,,Adams County PA - Official Website,200,"[""Police Departments"", ""Police Departments""]",[],[],[],[],[],[Skip to Content] ,2024-08-20 14:07:03 -https://www.adamscountypa.gov/police-14c9658f036316bb91289647492de2ae/narema/contact-us,police-14c9658f036316bb91289647492de2ae/narema/contact-us,Adams County PA - Contact Us,,Adams County PA - Official Website,200,"[""Contact Us"", ""Contact Us""]","[""Emergency Dial 9-1-1 - Non-Emergency 717-334-8603""]",[],[],[],[],[Skip to Content] ,2024-08-20 14:07:03 -https://www.adamscountypa.gov/police/earpd/calendar/police-department-commission-meeting,police/earpd/calendar/police-department-commission-meeting,Adams County PA - Police Department Commission Meeting,,Adams County PA - Official Website,200,"[""Police Department Commission Meeting""]",[],[],[],[],[],"[Skip to Content] Search ✖ Home Services Locations Powered by Translate Log in Register ✖ Commissioners Board of Commissioners Commissioners Office Elections and Voters Registration Human Resources Solicitor Tax Services Veterans Affairs County Services Board of Commissioners Meetings County Budget Employment Opportunites Open Records Right to Know Parcel Locator - Interactive Mapping Pay Delinquent Taxes Register to Vote Veterans Services Controller's Fraud Hotline About Adams County Adams County Broadband Taskforce Adams County Profile Adams County School Districts Adams County Plans, Studies, and Publications Adams County Tax Collectors Adams Economic Alliance Land Conservancy of Adams County Penn State Extension Office of Adams County Courts 51st Judicial District Court Court of Common Pleas Court Administration Magisterial District Judges Magisterial District Judges Home District Court 51-3-01 District Court 51-3-02 District Court 51-3-03 District Court 51-3-04 Court Departments Criminal Justice Advisory Board (CJAB) Domestic Relations Section Law Library Operational Services Probation Services County Government County Administration Adult Correction Complex Building and Maintenance Children and Youth Services Conservation District Department of Emergency Services Elections and Voter Registration Human Resources Information Technology Office of Budget and Purchasing Office of Planning and Development Protective Services Public Defender Security Solicitor Tax Services Veterans Affairs Victim Witness Elected Officials Clerk of Court Clerk of Orphans' Court Controller Coroner District Attorney Prothonotary Recorder of Deeds Register of Wills Sheriff Treasurer Municipalities Boroughs Abbottstown Borough Arendtsville Borough Bendersville Borough Biglerville Borough Bonneauville Borough Carroll Valley Borough East Berlin Borough Fairfield Borough Gettysburg Borough Littlestown Borough New Oxford Borough McSherrystown Borough York Springs Borough Townships Berwick Township Butler Township Conewago Township Cumberland Township Franklin Township Freedom Township Germany Township Hamiltonban Township Hamilton Township Highland Township Huntington Township Latimore Township Liberty Township Menallen Township Mt. Joy Township Mt. Pleasant Township Oxford Township Reading Township Straban Township Tyrone Township Union Township Associations Council of Government Association of Borough Officials Association of Township Officials York/Adams MH IDD Program Adams County Volunteer Emergency Services Northern Adams Regional Emergency Management Agency Police Department (EARPD) Search Search Police Department Commission Meeting Start Date: Sunday, January 1, 2023 End Date: Sunday, December 31, 2023 Location: Eastern Adams Regional Police Department - 110 N Berlin Road Start Time: 4:00 PM Back to previous page Resources County by Location County Coat of Arms Privacy Statement Terms of Use Navigation Commissioners County Government Courts Municipalities Services Courts Self-Help Center Election Resources Employment Office of Open Records Tax Services Copyright 2024 ",2024-08-20 14:07:03 -https://www.adamscountypa.gov/police/earpd/calendar/police-department-commission-meeting/07-18-2023-04-00-00-pm-police-department-commission-meeting,police/earpd/calendar/police-department-commission-meeting/07-18-2023-04-00-00-pm-police-department-commission-meeting,Adams County PA - 07/18/2023 04:00:00 PM Police Department Commission Meeting,,Adams County PA - Official Website,200,"[""Police Department Commission Meeting""]",[],[],[],[],[],"[Skip to Content] Search ✖ Home Services Locations Powered by Translate Log in Register ✖ Commissioners Board of Commissioners Commissioners Office Elections and Voters Registration Human Resources Solicitor Tax Services Veterans Affairs County Services Board of Commissioners Meetings County Budget Employment Opportunites Open Records Right to Know Parcel Locator - Interactive Mapping Pay Delinquent Taxes Register to Vote Veterans Services Controller's Fraud Hotline About Adams County Adams County Broadband Taskforce Adams County Profile Adams County School Districts Adams County Plans, Studies, and Publications Adams County Tax Collectors Adams Economic Alliance Land Conservancy of Adams County Penn State Extension Office of Adams County Courts 51st Judicial District Court Court of Common Pleas Court Administration Magisterial District Judges Magisterial District Judges Home District Court 51-3-01 District Court 51-3-02 District Court 51-3-03 District Court 51-3-04 Court Departments Criminal Justice Advisory Board (CJAB) Domestic Relations Section Law Library Operational Services Probation Services County Government County Administration Adult Correction Complex Building and Maintenance Children and Youth Services Conservation District Department of Emergency Services Elections and Voter Registration Human Resources Information Technology Office of Budget and Purchasing Office of Planning and Development Protective Services Public Defender Security Solicitor Tax Services Veterans Affairs Victim Witness Elected Officials Clerk of Court Clerk of Orphans' Court Controller Coroner District Attorney Prothonotary Recorder of Deeds Register of Wills Sheriff Treasurer Municipalities Boroughs Abbottstown Borough Arendtsville Borough Bendersville Borough Biglerville Borough Bonneauville Borough Carroll Valley Borough East Berlin Borough Fairfield Borough Gettysburg Borough Littlestown Borough New Oxford Borough McSherrystown Borough York Springs Borough Townships Berwick Township Butler Township Conewago Township Cumberland Township Franklin Township Freedom Township Germany Township Hamiltonban Township Hamilton Township Highland Township Huntington Township Latimore Township Liberty Township Menallen Township Mt. Joy Township Mt. Pleasant Township Oxford Township Reading Township Straban Township Tyrone Township Union Township Associations Council of Government Association of Borough Officials Association of Township Officials York/Adams MH IDD Program Adams County Volunteer Emergency Services Northern Adams Regional Emergency Management Agency Police Department (EARPD) Search Search Police Department Commission Meeting Start Date: Tuesday, July 18, 2023 End Date: Tuesday, July 18, 2023 Location: Eastern Adams Regional Police Department - 110 N Berlin Road Start Time: 4:00 PM Back to previous page Resources County by Location County Coat of Arms Privacy Statement Terms of Use Navigation Commissioners County Government Courts Municipalities Services Courts Self-Help Center Election Resources Employment Office of Open Records Tax Services Copyright 2024 ",2024-08-20 14:07:03 -https://cumberland.adamscountypa.gov/departments/contactuspolice/policecontacts/brian-weikert,departments/contactuspolice/policecontacts/brian-weikert,Adams County Municipality Cumberland Township - Brian Weikert,,Adams County Municipality Cumberland Township - Official Website,200,[],[],[],[],[],[],"[Skip to Content] Search ✖ Log in Register ✖ Home Township Meetings Township Services Township Land Use Search Search Brian Weikert Patrolman Email: bweikert@cumberlandtwppa.gov Extension: 450 Direct Phone: 717-334-6485 Ext. 450 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Search ✖ Log in Register ✖ Home Township Meetings Township Services Township Land Use Search Search Search ✖ Log in Register ✖ Log in Register Home Township Meetings Township Services Township Land Use Search Search Search Brian Weikert Patrolman Email: bweikert@cumberlandtwppa.gov Extension: 450 Direct Phone: 717-334-6485 Ext. 450 Brian Weikert Patrolman Email: bweikert@cumberlandtwppa.gov Extension: 450 Direct Phone: 717-334-6485 Ext. 450 Brian Weikert Patrolman Email: bweikert@cumberlandtwppa.gov Extension: 450 Direct Phone: 717-334-6485 Ext. 450 Brian Weikert Patrolman Email: bweikert@cumberlandtwppa.gov Extension: 450 Direct Phone: 717-334-6485 Ext. 450 Brian Weikert Patrolman Email: bweikert@cumberlandtwppa.gov Extension: 450 Direct Phone: 717-334-6485 Ext. 450 Brian Weikert Patrolman Email: bweikert@cumberlandtwppa.gov Email: Extension: 450 Extension: Direct Phone: 717-334-6485 Ext. 450 Direct Phone: Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Copyright 2024 Copyright 2024 Copyright 2024 ",2024-08-20 14:07:03 -https://cumberland.adamscountypa.gov/departments/contactuspolice/policecontacts/daniel-barbagelle,departments/contactuspolice/policecontacts/daniel-barbagelle,Adams County Municipality Cumberland Township - Daniel Barbagello,,Adams County Municipality Cumberland Township - Official Website,200,[],[],[],[],[],[],"[Skip to Content] Search ✖ Log in Register ✖ Home Township Meetings Township Services Township Land Use Search Search Daniel Barbagello Patrolman First Class Email: dbarbagello@cumberlandtwppa.gov Extension: 404 Direct Phone: 717-334-6485 Ext. 404 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Search ✖ Log in Register ✖ Home Township Meetings Township Services Township Land Use Search Search Search ✖ Log in Register ✖ Log in Register Home Township Meetings Township Services Township Land Use Search Search Search Daniel Barbagello Patrolman First Class Email: dbarbagello@cumberlandtwppa.gov Extension: 404 Direct Phone: 717-334-6485 Ext. 404 Daniel Barbagello Patrolman First Class Email: dbarbagello@cumberlandtwppa.gov Extension: 404 Direct Phone: 717-334-6485 Ext. 404 Daniel Barbagello Patrolman First Class Email: dbarbagello@cumberlandtwppa.gov Extension: 404 Direct Phone: 717-334-6485 Ext. 404 Daniel Barbagello Patrolman First Class Email: dbarbagello@cumberlandtwppa.gov Extension: 404 Direct Phone: 717-334-6485 Ext. 404 Daniel Barbagello Patrolman First Class Email: dbarbagello@cumberlandtwppa.gov Extension: 404 Direct Phone: 717-334-6485 Ext. 404 Daniel Barbagello Patrolman First Class Email: dbarbagello@cumberlandtwppa.gov Email: Extension: 404 Extension: Direct Phone: 717-334-6485 Ext. 404 Direct Phone: Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Copyright 2024 Copyright 2024 Copyright 2024 ",2024-08-20 14:07:03 -https://cumberland.adamscountypa.gov/departments/contactuspolice/policecontacts/eric-yost,departments/contactuspolice/policecontacts/eric-yost,Adams County Municipality Cumberland Township - Eric Yost,,Adams County Municipality Cumberland Township - Official Website,200,[],[],[],[],[],[],"[Skip to Content] Search ✖ Log in Register ✖ Home Township Meetings Township Services Township Land Use Search Search Eric Yost Patrolman Email: eyost@cumberlandtwppa.gov Extension: 4400 Direct Phone: 717-334-6485 Ext. 4400 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Search ✖ Log in Register ✖ Home Township Meetings Township Services Township Land Use Search Search Search ✖ Log in Register ✖ Log in Register Home Township Meetings Township Services Township Land Use Search Search Search Eric Yost Patrolman Email: eyost@cumberlandtwppa.gov Extension: 4400 Direct Phone: 717-334-6485 Ext. 4400 Eric Yost Patrolman Email: eyost@cumberlandtwppa.gov Extension: 4400 Direct Phone: 717-334-6485 Ext. 4400 Eric Yost Patrolman Email: eyost@cumberlandtwppa.gov Extension: 4400 Direct Phone: 717-334-6485 Ext. 4400 Eric Yost Patrolman Email: eyost@cumberlandtwppa.gov Extension: 4400 Direct Phone: 717-334-6485 Ext. 4400 Eric Yost Patrolman Email: eyost@cumberlandtwppa.gov Extension: 4400 Direct Phone: 717-334-6485 Ext. 4400 Eric Yost Patrolman Email: eyost@cumberlandtwppa.gov Email: Extension: 4400 Extension: Direct Phone: 717-334-6485 Ext. 4400 Direct Phone: Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Copyright 2024 Copyright 2024 Copyright 2024 ",2024-08-20 14:07:03 -https://cumberland.adamscountypa.gov/departments/contactuspolice/policecontacts/josh-goodling,departments/contactuspolice/policecontacts/josh-goodling,Adams County Municipality Cumberland Township - Josh Goodling,,Adams County Municipality Cumberland Township - Official Website,200,[],[],[],[],[],[],"[Skip to Content] Search ✖ Log in Register ✖ Home Township Meetings Township Services Township Land Use Search Search Josh Goodling Sergeant Email: jgoodling@cumberlandtwppa.gov Extension: 407 Direct Phone: 717-334-6485 Ext. 407 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Search ✖ Log in Register ✖ Home Township Meetings Township Services Township Land Use Search Search Search ✖ Log in Register ✖ Log in Register Home Township Meetings Township Services Township Land Use Search Search Search Josh Goodling Sergeant Email: jgoodling@cumberlandtwppa.gov Extension: 407 Direct Phone: 717-334-6485 Ext. 407 Josh Goodling Sergeant Email: jgoodling@cumberlandtwppa.gov Extension: 407 Direct Phone: 717-334-6485 Ext. 407 Josh Goodling Sergeant Email: jgoodling@cumberlandtwppa.gov Extension: 407 Direct Phone: 717-334-6485 Ext. 407 Josh Goodling Sergeant Email: jgoodling@cumberlandtwppa.gov Extension: 407 Direct Phone: 717-334-6485 Ext. 407 Josh Goodling Sergeant Email: jgoodling@cumberlandtwppa.gov Extension: 407 Direct Phone: 717-334-6485 Ext. 407 Josh Goodling Sergeant Email: jgoodling@cumberlandtwppa.gov Email: Extension: 407 Extension: Direct Phone: 717-334-6485 Ext. 407 Direct Phone: Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Copyright 2024 Copyright 2024 Copyright 2024 ",2024-08-20 14:07:03 -https://cumberland.adamscountypa.gov/departments/contactuspolice/policecontacts/joshua-rosenberger,departments/contactuspolice/policecontacts/joshua-rosenberger,Adams County Municipality Cumberland Township - Joshua Rosenberger,,Adams County Municipality Cumberland Township - Official Website,200,[],[],[],[],[],[],"[Skip to Content] Search ✖ Log in Register ✖ Home Township Meetings Township Services Township Land Use Search Search Joshua Rosenberger Sergeant Email: jrosenberger@cumberlandtwppa.gov Extension: 402 Direct Phone: 717-334-6485 Ext. 402 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Search ✖ Log in Register ✖ Home Township Meetings Township Services Township Land Use Search Search Search ✖ Log in Register ✖ Log in Register Home Township Meetings Township Services Township Land Use Search Search Search Joshua Rosenberger Sergeant Email: jrosenberger@cumberlandtwppa.gov Extension: 402 Direct Phone: 717-334-6485 Ext. 402 Joshua Rosenberger Sergeant Email: jrosenberger@cumberlandtwppa.gov Extension: 402 Direct Phone: 717-334-6485 Ext. 402 Joshua Rosenberger Sergeant Email: jrosenberger@cumberlandtwppa.gov Extension: 402 Direct Phone: 717-334-6485 Ext. 402 Joshua Rosenberger Sergeant Email: jrosenberger@cumberlandtwppa.gov Extension: 402 Direct Phone: 717-334-6485 Ext. 402 Joshua Rosenberger Sergeant Email: jrosenberger@cumberlandtwppa.gov Extension: 402 Direct Phone: 717-334-6485 Ext. 402 Joshua Rosenberger Sergeant Email: jrosenberger@cumberlandtwppa.gov Email: Extension: 402 Extension: Direct Phone: 717-334-6485 Ext. 402 Direct Phone: Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Copyright 2024 Copyright 2024 Copyright 2024 ",2024-08-20 14:07:03 -https://cumberland.adamscountypa.gov/departments/contactuspolice/policecontacts/lane-hartley,departments/contactuspolice/policecontacts/lane-hartley,Adams County Municipality Cumberland Township - Lane Hartley,,Adams County Municipality Cumberland Township - Official Website,200,[],[],[],[],[],[],"[Skip to Content] Search ✖ Log in Register ✖ Home Township Meetings Township Services Township Land Use Search Search Lane Hartley Patrolman Email: lhartley@cumberlandtwppa.gov Extension: 408 Direct Phone: 717-334-6485 Ext. 408 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Search ✖ Log in Register ✖ Home Township Meetings Township Services Township Land Use Search Search Search ✖ Log in Register ✖ Log in Register Home Township Meetings Township Services Township Land Use Search Search Search Lane Hartley Patrolman Email: lhartley@cumberlandtwppa.gov Extension: 408 Direct Phone: 717-334-6485 Ext. 408 Lane Hartley Patrolman Email: lhartley@cumberlandtwppa.gov Extension: 408 Direct Phone: 717-334-6485 Ext. 408 Lane Hartley Patrolman Email: lhartley@cumberlandtwppa.gov Extension: 408 Direct Phone: 717-334-6485 Ext. 408 Lane Hartley Patrolman Email: lhartley@cumberlandtwppa.gov Extension: 408 Direct Phone: 717-334-6485 Ext. 408 Lane Hartley Patrolman Email: lhartley@cumberlandtwppa.gov Extension: 408 Direct Phone: 717-334-6485 Ext. 408 Lane Hartley Patrolman Email: lhartley@cumberlandtwppa.gov Email: Extension: 408 Extension: Direct Phone: 717-334-6485 Ext. 408 Direct Phone: Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Copyright 2024 Copyright 2024 Copyright 2024 ",2024-08-20 14:07:03 -https://cumberland.adamscountypa.gov/departments/contactuspolice/policecontacts/ryan-eiker,departments/contactuspolice/policecontacts/ryan-eiker,Adams County Municipality Cumberland Township - Ryan Eiker,,Adams County Municipality Cumberland Township - Official Website,200,[],[],[],[],[],[],"[Skip to Content] Search ✖ Log in Register ✖ Home Township Meetings Township Services Township Land Use Search Search Ryan Eiker Patrolman First Class Email: reiker@cumberlandtwppa.gov Extension: 403 Direct Phone: 717-334-6485 Ext. 403 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Search ✖ Log in Register ✖ Home Township Meetings Township Services Township Land Use Search Search Search ✖ Log in Register ✖ Log in Register Home Township Meetings Township Services Township Land Use Search Search Search Ryan Eiker Patrolman First Class Email: reiker@cumberlandtwppa.gov Extension: 403 Direct Phone: 717-334-6485 Ext. 403 Ryan Eiker Patrolman First Class Email: reiker@cumberlandtwppa.gov Extension: 403 Direct Phone: 717-334-6485 Ext. 403 Ryan Eiker Patrolman First Class Email: reiker@cumberlandtwppa.gov Extension: 403 Direct Phone: 717-334-6485 Ext. 403 Ryan Eiker Patrolman First Class Email: reiker@cumberlandtwppa.gov Extension: 403 Direct Phone: 717-334-6485 Ext. 403 Ryan Eiker Patrolman First Class Email: reiker@cumberlandtwppa.gov Extension: 403 Direct Phone: 717-334-6485 Ext. 403 Ryan Eiker Patrolman First Class Email: reiker@cumberlandtwppa.gov Email: Extension: 403 Extension: Direct Phone: 717-334-6485 Ext. 403 Direct Phone: Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Copyright 2024 Copyright 2024 Copyright 2024 ",2024-08-20 14:07:03 -https://cumberland.adamscountypa.gov/home/newsinformation/now-hiring-police-department,home/newsinformation/now-hiring-police-department,Adams County Municipality Cumberland Township - Official Website,Official Website,Adams County Municipality Cumberland Township - Official Website,200,"[""Now Hiring - Police Department""]",[],[],[],[],[],"[Skip to Content] Search ✖ Log in Register ✖ Home Township Meetings Township Services Township Land Use Search Search Now Hiring - Police Department News Date: Tuesday, June 18, 2024 Full Time Police Cadet Full Time Officer Application Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Search ✖ Log in Register ✖ Home Township Meetings Township Services Township Land Use Search Search Search ✖ Log in Register ✖ Log in Register Home Township Meetings Township Services Township Land Use Search Search Search Now Hiring - Police Department News Date: Tuesday, June 18, 2024 Full Time Police Cadet Full Time Officer Application Now Hiring - Police Department Now Hiring - Police Department News Date: Tuesday, June 18, 2024 News Date: Tuesday, June 18, 2024 News Date: Tuesday, June 18, 2024 Full Time Police Cadet Full Time Officer Application Full Time Police Cadet Full Time Officer Application Full Time Police Cadet Full Time Officer Application Full Time Police Cadet Full Time Officer Application Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Cumberland Township 1370 Fairfield Road Gettysburg, PA 17325 Phone - 717-334-6485 Fax - 717-334-3632 Copyright 2024 Copyright 2024 Copyright 2024 Copyright 2024 ",2024-08-20 14:07:03 -https://cumberland.adamscountypa.gov/home/newsinformation/press-release-for-police-department-donations,home/newsinformation/press-release-for-police-department-donations,,,Adams County Municipality Cumberland Township - Official Website,404,,,,,,,,2024-08-20 14:07:03 diff --git a/annotation_pipeline/populate_labelstudio.py b/annotation_pipeline/populate_labelstudio.py deleted file mode 100644 index 49c673c2..00000000 --- a/annotation_pipeline/populate_labelstudio.py +++ /dev/null @@ -1,256 +0,0 @@ -""" -This Python script automates the process of crawling Common Crawl Corpus for relevant URLs, -scraping HTML content from those pages, -formatting the data as Label Studio tasks, -and uploading them to Label Studio for annotation. -""" - -import argparse -import configparser -import os -import subprocess -import sys -from http import HTTPStatus - -import pandas as pd -from huggingface_hub import hf_hub_download - -# The below code sets the working directory to be the root of the entire repository for module imports -sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))) - -from label_studio_interface.LabelStudioConfig import LabelStudioConfig -from label_studio_interface.LabelStudioAPIManager import LabelStudioAPIManager - -def run_subprocess(terminal_command: str): - """ - Runs subprocesses (e.g. common crawl and html tag collector) and handles their outputs + errors - """ - - process = subprocess.Popen(terminal_command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True, bufsize=1) - - with process.stdout, process.stderr: - for line in process.stdout: - print(line, end='') - for line in process.stderr: - print(line, end='') - - return_code = process.wait() - - stdout, stderr = process.communicate() - - return return_code, stdout, stderr - -def run_common_crawl(common_crawl_id: str, url: str, search_term: str, num_pages: str): - """ - Prompts terminal to run common crawl script provided the following: - Args: SEE def process_crawl() - - See Common Crawl Documentation @ https://github.com/Police-Data-Accessibility-Project/data-source-identification/blob/main/common_crawler/README.md - - CSV of crawled URL's uploaded to HuggingFace - """ - - common_crawl = f"python common_crawler/main.py {common_crawl_id} '{url}' {search_term} --config annotation_pipeline/config.ini --pages {num_pages}" - - return_code, stdout, stderr = run_subprocess(common_crawl) - - return return_code, stdout, stderr - -def run_tag_collector(filename: str): - """ - Prompts terminal to run tag collector on crawled URL's - filename: name of csv containing crawled URL's - - CSV of URL's + collected tags saved in ./labeled-source-text.csv - """ - tag_collector = f"python3 html_tag_collector/collector.py annotation_pipeline/data/{filename} --render-javascript" - - return_code, stdout, stderr = run_subprocess(tag_collector) - - return return_code, stdout, stderr - -def csv_to_label_studio_tasks(csv_file_path: str, batch_id: str, output_name: str, record_type: str = None) -> list[dict]: - """ - Formats CSV into list[dict] with "data" key as labelstudio expects - csv_file_path: path to csv with labeled source text - batch_id: timestamp to append to all URL's in batch - output_name: saves tag_collected CSV + batch_info in data/tag_collector/{output_name} - """ - df = pd.read_csv(csv_file_path) - df['batch_id'] = [batch_id] * len(df) - df = df.fillna('') - os.makedirs("annotation_pipeline/data/tag_collector/", exist_ok=True) - df.to_csv("annotation_pipeline/data/tag_collector/" + output_name.replace("urls/", "", 1), index=False) - - #remove labeled-source-text.csv (updated and written to data/tag_collector) - if os.path.exists(csv_file_path): - os.remove(csv_file_path) - - tasks = [] - - if record_type: - for _, row in df.iterrows(): - task_data = row.to_dict() - task_predictions = { - "model_version": "record-type prediction", - "result": [ - { - "from_name": "record-type", - "to_name": "url", - "type": "choices", - "value": { - "choices": [record_type] - } - } - ] - } - - tasks.append({"data": task_data, "predictions": [task_predictions]}) - else: - tasks = [{"data": row.to_dict()} for _, row in df.iterrows()] - - return tasks - -def get_valid_record_types(file_path: str) -> set: - """ load file containing valid record types and return them as a set""" - with open(file_path, 'r') as file: - valid_record_types = {line.strip() for line in file} - return valid_record_types - -def get_huggingface_repo_id(config_file: str) -> str: - """ Returns HuggingFace REPO_ID (where unlabeled URLs are stashed) from config.ini file""" - - config = configparser.ConfigParser() - config.read(config_file) - - # Retrieve the huggingface_repo_id from the DEFAULT section - huggingface_repo_id = config['DEFAULT'].get('huggingface_repo_id') - - if huggingface_repo_id is None: - raise ValueError("huggingface_repo_id not found in the config file.") - - return huggingface_repo_id - -def process_crawl(common_crawl_id: str, url: str, search_term: str, num_pages: str) -> pd.Series: - """Initiated common crawl script and handles output for further processing - - Args: - common_crawl_id: string to specify which common crawl corpus to search - url: specify type of url to search for (e.g. *.gov for all .gov domains) - search_term: further refine search with keyword that must be matched in full URL - num_pages: number of pages to search (15,000 records per page) - - Returns: - batch_info (pd.Series): summary info of crawl, including filename of csv containing relevant URLs - """ - #run common crawl - crawl_return_code, crawl_stdout, crawl_stderr = run_common_crawl(common_crawl_id, url, search_term, num_pages) - - print(f"from populate label studio crawl error: crawl return {crawl_return_code}, crawl stdout {crawl_stdout}, crawl stderr {crawl_stderr}") - - #check success - if crawl_return_code != 0: - raise ValueError(f"Common crawl script failed:\n{crawl_stderr}") - - #print batch info to verify before continuing - batch_info = pd.read_csv("annotation_pipeline/data/batch_info.csv").iloc[-1] - print("Batch Info:\n" + f"{batch_info}") - - if(batch_info["Count"] == 0): - raise ValueError("Batch count is 0. Rerun to crawl more pages.") - - return batch_info - -def process_tag_collector(batch_info: pd.Series, FILENAME: str) -> str: - """ - Initiates tag collector script and creates a batch id for all samples - - Args: - batch_info (pd.Series): summary info for crawl - FILENAME (str): filename of csv to collect tags on - - Returns: - batch_id (str): a datetime stamp to track batches - """ - - #run tag collector - tag_collector_return_code, tag_collector_stdout, tag_collector_stderr = run_tag_collector(FILENAME) - - #check success - if tag_collector_return_code != 0: - raise ValueError(f"Tag collector script failed:\n{tag_collector_stderr}") - - #create batch_id from datetime (removes milliseconds) - datetime = batch_info["Datetime"] - batch_id = datetime[:datetime.find('.')] - - return batch_id - -def label_studio_upload(batch_id: str, FILENAME: str, record_type: str): - """ - Handles label studio task formatting and upload - """ - - #convert to label studio task format - data = csv_to_label_studio_tasks("labeled-source-text.csv", batch_id, FILENAME, record_type) - - # Load the configuration for the Label Studio API - config = LabelStudioConfig(".env") - if "REPLACE_WITH_YOUR_TOKEN" in config.authorization_token: - raise ValueError("Please replace the access token in .env with your own access token") - - # Create an API manager - api_manager = LabelStudioAPIManager(config) - - #import tasks - label_studio_response = api_manager.export_tasks_into_project(data) - - #check import success - if label_studio_response.status_code == HTTPStatus.CREATED: - labelstudio_url = api_manager.api_url_constructor.get_import_url().rstrip('/import') - print(f"Tasks successfully imported. Please access the project at {labelstudio_url} to perform review and annotation tasks") - else: - raise ValueError(f"Failed to import tasks. Response code: {label_studio_response.status_code}\n{label_studio_response.text}") - -def main(): - """ - This script automates the process of crawling for relevant URL's, - scraping HTML content from those pages, formatting the data as label studio tasks, - and uploading to label studio - """ - - parser = argparse.ArgumentParser(description='Process crawl arguments') - parser.add_argument('common_crawl_id', type=str, help='common crawl ID') - parser.add_argument('url', type=str, help='URL type to search for') - parser.add_argument('keyword', type=str, help='require this keyword in URL results') - parser.add_argument('--pages', type=str, required=True, help='number of pages to process') - parser.add_argument('--record-type', type=str, required=False, help='assumed record type for pre-annotation') - args = parser.parse_args() - - if args.record_type is not None: - valid_record_types = get_valid_record_types("annotation_pipeline/record_types.txt") - if args.record_type not in valid_record_types: - raise ValueError(f"Invalid record type: {args.record_type}. Must be one of {valid_record_types}") - return - - try: - # COMMON CRAWL - batch_info = process_crawl(args.common_crawl_id, args.url, args.keyword, args.pages) - #get urls from hugging face - REPO_ID = get_huggingface_repo_id("annotation_pipeline/config.ini") - FILENAME = "urls/" + batch_info["Filename"] + ".csv" - hf_hub_download(repo_id=REPO_ID, filename=FILENAME, repo_type="dataset", local_dir="annotation_pipeline/data/") - - # TAG COLLECTOR - batch_id = process_tag_collector(batch_info, FILENAME) - - # LABEL STUDIO UPLOAD - label_studio_upload(batch_id, FILENAME, args.record_type) - except ValueError as e: - print(f"Error: {e}") - return - -if __name__ == "__main__": - print("Running Annotation Pipeline...") - main() - diff --git a/annotation_pipeline/record_types.txt b/annotation_pipeline/record_types.txt deleted file mode 100644 index b12931d6..00000000 --- a/annotation_pipeline/record_types.txt +++ /dev/null @@ -1,36 +0,0 @@ -Accident Reports -Arrest Records -Calls for Service -Car GPS -Citations -Dispatch Logs -Dispatch Recordings -Field Contacts -Incident Reports -Misc Police Activity -Officer Involved Shootings -Stops -Surveys -Use of Force Reports -Vehicle Pursuits -Complaints & Misconduct -Daily Activity Logs -Training & Hiring Info -Personnel Records -Annual & Monthly Reports -Budgets & Finances -Contact Info & Agency Meta -Geographic -List of Data Sources -Policies & Contracts -Crime Maps & Reports -Crime Statistics -Media Bulletins -Records Request Info -Resources -Sex Offender Registry -Wanted Persons -Booking Reports -Court Cases -Incarceration Records -Poor Data Source \ No newline at end of file diff --git a/annotation_pipeline/requirements.txt b/annotation_pipeline/requirements.txt deleted file mode 100644 index 5ff85815..00000000 --- a/annotation_pipeline/requirements.txt +++ /dev/null @@ -1,13 +0,0 @@ -pandas==2.1.4 -python-dotenv~=1.0.1 -argparse~=1.1 -huggingface-hub~=0.22.2 -requests~=2.31.0 -requests_html>=0.10.0 -lxml~=5.1.0 -pyppeteer>=2.0.0 -beautifulsoup4>=4.12.3 -bs4~=0.0.2 -tqdm>=4.64.1 -polars~=0.20.10 -urllib3~=1.26.18 diff --git a/api/dependencies.py b/api/dependencies.py deleted file mode 100644 index 0d14a00c..00000000 --- a/api/dependencies.py +++ /dev/null @@ -1,12 +0,0 @@ -from core.AsyncCore import AsyncCore -from core.SourceCollectorCore import SourceCollectorCore - - -def get_core() -> SourceCollectorCore: - from api.main import app - return app.state.core - - -def get_async_core() -> AsyncCore: - from api.main import app - return app.state.async_core \ No newline at end of file diff --git a/api/main.py b/api/main.py index 356467af..e69de29b 100644 --- a/api/main.py +++ b/api/main.py @@ -1,78 +0,0 @@ -from contextlib import asynccontextmanager - -from fastapi import FastAPI - -from api.routes.annotate import annotate_router -from api.routes.batch import batch_router -from api.routes.collector import collector_router -from api.routes.root import root_router -from api.routes.url import url_router -from collector_db.AsyncDatabaseClient import AsyncDatabaseClient -from collector_db.DatabaseClient import DatabaseClient -from core.AsyncCore import AsyncCore -from core.CoreLogger import CoreLogger -from core.ScheduledTaskManager import AsyncScheduledTaskManager -from core.SourceCollectorCore import SourceCollectorCore -from html_tag_collector.ResponseParser import HTMLResponseParser -from html_tag_collector.RootURLCache import RootURLCache -from html_tag_collector.URLRequestInterface import URLRequestInterface -from hugging_face.HuggingFaceInterface import HuggingFaceInterface -from util.helper_functions import get_from_env - - -@asynccontextmanager -async def lifespan(app: FastAPI): - # Initialize shared dependencies - db_client = DatabaseClient() - await setup_database(db_client) - source_collector_core = SourceCollectorCore( - core_logger=CoreLogger( - db_client=db_client - ), - db_client=DatabaseClient(), - ) - async_core = AsyncCore( - adb_client=AsyncDatabaseClient(), - huggingface_interface=HuggingFaceInterface(), - url_request_interface=URLRequestInterface(), - html_parser=HTMLResponseParser( - root_url_cache=RootURLCache() - ) - ) - async_scheduled_task_manager = AsyncScheduledTaskManager(async_core=async_core) - - # Pass dependencies into the app state - app.state.core = source_collector_core - app.state.async_core = async_core - app.state.async_scheduled_task_manager = async_scheduled_task_manager - - # Startup logic - yield # Code here runs before shutdown - - # Shutdown logic (if needed) - app.state.core.shutdown() - # Clean up resources, close connections, etc. - pass - - -async def setup_database(db_client): - # Initialize database if dev environment, otherwise apply migrations - try: - get_from_env("DEV") - db_client.init_db() - except Exception as e: - return - - -app = FastAPI( - title="Source Collector API", - description="API for collecting data sources", - version="0.1.0", - lifespan=lifespan -) - -app.include_router(root_router) -app.include_router(collector_router) -app.include_router(batch_router) -app.include_router(annotate_router) -app.include_router(url_router) \ No newline at end of file diff --git a/api/routes/annotate.py b/api/routes/annotate.py deleted file mode 100644 index 25eab1d3..00000000 --- a/api/routes/annotate.py +++ /dev/null @@ -1,41 +0,0 @@ -from fastapi import APIRouter, Depends, Path - -from api.dependencies import get_async_core -from core.AsyncCore import AsyncCore -from core.DTOs.GetNextURLForRelevanceAnnotationResponse import GetNextURLForRelevanceAnnotationResponse -from core.DTOs.RelevanceAnnotationInfo import RelevanceAnnotationPostInfo -from security_manager.SecurityManager import get_access_info, AccessInfo - -annotate_router = APIRouter( - prefix="/annotate", - tags=["annotate"], - responses={404: {"description": "Not found"}}, -) - - -@annotate_router.get("/relevance") -async def get_next_url_for_relevance_annotation( - access_info: AccessInfo = Depends(get_access_info), - async_core: AsyncCore = Depends(get_async_core), -) -> GetNextURLForRelevanceAnnotationResponse: - result = await async_core.get_next_url_for_relevance_annotation(user_id=access_info.user_id) - return result - - -@annotate_router.post("/relevance/{metadata_id}") -async def annotate_url_for_relevance_and_get_next_url( - relevance_annotation_post_info: RelevanceAnnotationPostInfo, - metadata_id: int = Path(description="The metadata id for the associated URL metadata"), - async_core: AsyncCore = Depends(get_async_core), - access_info: AccessInfo = Depends(get_access_info) -) -> GetNextURLForRelevanceAnnotationResponse: - """ - Post URL annotation and get next URL to annotate - """ - await async_core.submit_url_relevance_annotation( - user_id=access_info.user_id, - metadata_id=metadata_id, - annotation=relevance_annotation_post_info - ) - result = await async_core.get_next_url_for_relevance_annotation(user_id=access_info.user_id) - return result diff --git a/apply_migrations.py b/apply_migrations.py index 5be4cd99..6b3188f3 100644 --- a/apply_migrations.py +++ b/apply_migrations.py @@ -1,9 +1,9 @@ from alembic import command from alembic.config import Config -from collector_db.helper_functions import get_postgres_connection_string +from src.db.helpers import get_postgres_connection_string -if __name__ == "__main__": +def apply_migrations(): print("Applying migrations...") alembic_config = Config("alembic.ini") alembic_config.set_main_option( @@ -11,4 +11,7 @@ get_postgres_connection_string() ) command.upgrade(alembic_config, "head") - print("Migrations applied.") \ No newline at end of file + print("Migrations applied.") + +if __name__ == "__main__": + apply_migrations() \ No newline at end of file diff --git a/collector_db/AsyncDatabaseClient.py b/collector_db/AsyncDatabaseClient.py deleted file mode 100644 index db94a8d5..00000000 --- a/collector_db/AsyncDatabaseClient.py +++ /dev/null @@ -1,381 +0,0 @@ -from functools import wraps - -from sqlalchemy import select, exists -from sqlalchemy.ext.asyncio import create_async_engine, AsyncSession, async_sessionmaker -from sqlalchemy.orm import selectinload - -from collector_db.ConfigManager import ConfigManager -from collector_db.DTOs.MetadataAnnotationInfo import MetadataAnnotationInfo -from collector_db.DTOs.URLAnnotationInfo import URLAnnotationInfo -from collector_db.DTOs.URLErrorInfos import URLErrorPydanticInfo -from collector_db.DTOs.URLHTMLContentInfo import URLHTMLContentInfo -from collector_db.DTOs.URLMetadataInfo import URLMetadataInfo -from collector_db.DTOs.URLWithHTML import URLWithHTML -from collector_db.enums import URLMetadataAttributeType, ValidationStatus, ValidationSource -from collector_db.helper_functions import get_postgres_connection_string -from collector_db.models import URLMetadata, URL, URLErrorInfo, URLHTMLContent, Base, MetadataAnnotation, \ - RootURL -from collector_manager.enums import URLStatus -from core.DTOs.GetURLsResponseInfo import GetURLsResponseInfo, GetURLsResponseMetadataInfo, GetURLsResponseErrorInfo, \ - GetURLsResponseInnerInfo -from core.DTOs.RelevanceAnnotationInfo import RelevanceAnnotationPostInfo - -def add_standard_limit_and_offset(statement, page, limit=100): - offset = (page - 1) * limit - return statement.limit(limit).offset(offset) - -class AsyncDatabaseClient: - def __init__(self, db_url: str = get_postgres_connection_string(is_async=True)): - self.engine = create_async_engine( - url=db_url, - echo=ConfigManager.get_sqlalchemy_echo(), - ) - self.session_maker = async_sessionmaker(bind=self.engine, expire_on_commit=False) - - @staticmethod - def session_manager(method): - """Decorator to manage async session lifecycle.""" - @wraps(method) - async def wrapper(self, *args, **kwargs): - async with self.session_maker() as session: - async with session.begin(): - try: - result = await method(self, session, *args, **kwargs) - return result - except Exception as e: - await session.rollback() - raise e - return wrapper - - @session_manager - async def get_url_metadata_by_status( - self, - session: AsyncSession, - url_status: URLStatus, - offset: int = 0 - ): - statement = (select(URLMetadata) - .join(URL) - .where(URL.outcome == url_status.value) - .limit(100) - .offset(offset) - .order_by(URLMetadata.id)) - scalar_result = await session.scalars(statement) - model_result = scalar_result.all() - return [URLMetadataInfo(**url_metadata.__dict__) for url_metadata in model_result] - - @session_manager - async def add_url_metadata(self, session: AsyncSession, url_metadata_info: URLMetadataInfo): - url_metadata = URLMetadata(**url_metadata_info.model_dump()) - session.add(url_metadata) - - @session_manager - async def add_url_metadatas(self, session: AsyncSession, url_metadata_infos: list[URLMetadataInfo]): - for url_metadata_info in url_metadata_infos: - url_metadata = URLMetadata(**url_metadata_info.model_dump()) - session.add(url_metadata) - - @session_manager - async def add_url_error_infos(self, session: AsyncSession, url_error_infos: list[URLErrorPydanticInfo]): - for url_error_info in url_error_infos: - statement = select(URL).where(URL.id == url_error_info.url_id) - scalar_result = await session.scalars(statement) - url = scalar_result.first() - url.outcome = URLStatus.ERROR.value - - url_error = URLErrorInfo(**url_error_info.model_dump()) - session.add(url_error) - - @session_manager - async def get_urls_with_errors(self, session: AsyncSession) -> list[URLErrorPydanticInfo]: - statement = (select(URL, URLErrorInfo.error, URLErrorInfo.updated_at) - .join(URLErrorInfo) - .where(URL.outcome == URLStatus.ERROR.value) - .order_by(URL.id)) - scalar_result = await session.execute(statement) - results = scalar_result.all() - final_results = [] - for url, error, updated_at in results: - final_results.append(URLErrorPydanticInfo(url_id=url.id, error=error, updated_at=updated_at)) - - return final_results - - @session_manager - async def add_html_content_infos(self, session: AsyncSession, html_content_infos: list[URLHTMLContentInfo]): - for html_content_info in html_content_infos: - # Add HTML Content Info to database - db_html_content_info = URLHTMLContent(**html_content_info.model_dump()) - session.add(db_html_content_info) - - @session_manager - async def get_pending_urls_without_html_data(self, session: AsyncSession): - # TODO: Add test that includes some urls WITH html data. Check they're not returned - statement = (select(URL). - outerjoin(URLHTMLContent). - where(URLHTMLContent.id == None). - where(URL.outcome == URLStatus.PENDING.value). - limit(100). - order_by(URL.id)) - scalar_result = await session.scalars(statement) - return scalar_result.all() - - @session_manager - async def get_urls_with_html_data_and_no_relevancy_metadata( - self, - session: AsyncSession - ) -> list[URLWithHTML]: - # Get URLs with no relevancy metadata - statement = (select(URL.id, URL.url, URLHTMLContent). - join(URLHTMLContent). - where(URL.outcome == URLStatus.PENDING.value) - # No relevancy metadata - .where( - ~exists( - select(URLMetadata.id). - where( - URLMetadata.url_id == URL.id, - URLMetadata.attribute == URLMetadataAttributeType.RELEVANT.value - ) - ) - ) - .limit(100) - .order_by(URL.id) - ) - raw_result = await session.execute(statement) - result = raw_result.all() - url_ids_to_urls = {url_id: url for url_id, url, _ in result} - url_ids_to_html_info = {url_id: [] for url_id, _, _ in result} - - for url_id, _, html_info in result: - url_ids_to_html_info[url_id].append( - URLHTMLContentInfo(**html_info.__dict__) - ) - - final_results = [] - for url_id, url in url_ids_to_urls.items(): - url_with_html = URLWithHTML( - url_id=url_id, - url=url, - html_infos=url_ids_to_html_info[url_id] - ) - final_results.append(url_with_html) - - - return final_results - - @session_manager - async def get_urls_with_metadata( - self, - session: AsyncSession, - attribute: URLMetadataAttributeType, - validation_status: ValidationStatus, - offset: int = 0 - ) -> list[URLMetadataInfo]: - statement = (select(URL.id, URLMetadata.id). - join(URLMetadata). - where(URLMetadata.attribute == attribute.value). - where(URLMetadata.validation_status == validation_status.value). - limit(100). - offset(offset). - order_by(URL.id) - ) - - raw_result = await session.execute(statement) - result = raw_result.all() - final_results = [] - for url_id, url_metadata_id in result: - info = URLMetadataInfo( - url_id=url_id, - id=url_metadata_id, - ) - final_results.append(info) - - return final_results - - @session_manager - async def update_url_metadata_status(self, session: AsyncSession, metadata_ids: list[int], validation_status: ValidationStatus): - for metadata_id in metadata_ids: - statement = select(URLMetadata).where(URLMetadata.id == metadata_id) - scalar_result = await session.scalars(statement) - url_metadata = scalar_result.first() - url_metadata.validation_status = validation_status - - @session_manager - async def get_next_url_for_relevance_annotation( - self, - session: AsyncSession, - user_id: int - ) -> URLAnnotationInfo: - # Get a URL, its relevancy metadata ID, and HTML data - # For a URL which has not yet been annotated by this user id - # First, subquery retrieving URL and its metadata ID where its relevant metadata - # does not have an annotation for that user - subquery = ( - select( - URL.id.label("url_id"), - URL.url, - URLMetadata.id.label("metadata_id"), - ) - .join(URLMetadata) - # Metadata must be relevant - .where(URLMetadata.attribute == URLMetadataAttributeType.RELEVANT.value) - # Metadata must not be validated - .where(URLMetadata.validation_status == ValidationStatus.PENDING_VALIDATION.value) - # URL must have HTML content entries - .where(exists(select(URLHTMLContent).where(URLHTMLContent.url_id == URL.id))) - # URL must not have been annotated by the user - .where(~exists( - select(MetadataAnnotation). - where( - MetadataAnnotation.metadata_id == URLMetadata.id, - MetadataAnnotation.user_id == user_id - ) - )) - .limit(1) - ) - - raw_result = await session.execute(subquery) - result = raw_result.all() - - # Next, get all HTML content for the URL - - statement = ( - select( - subquery.c.url, - subquery.c.metadata_id, - URLHTMLContent.content_type, - URLHTMLContent.content, - ) - .join(URLHTMLContent) - .where(subquery.c.url_id == URLHTMLContent.url_id) - ) - - raw_result = await session.execute(statement) - result = raw_result.all() - - if len(result) == 0: - # No available URLs to annotate - return None - - annotation_info = URLAnnotationInfo( - url=result[0][0], - metadata_id=result[0][1], - html_infos=[] - ) - for _, _, content_type, content in result: - html_info = URLHTMLContentInfo( - content_type=content_type, - content=content - ) - annotation_info.html_infos.append(html_info) - return annotation_info - - @session_manager - async def add_relevance_annotation( - self, - session: AsyncSession, - user_id: int, - metadata_id: int, - annotation_info: RelevanceAnnotationPostInfo): - annotation = MetadataAnnotation( - metadata_id=metadata_id, - user_id=user_id, - value=str(annotation_info.is_relevant) - ) - session.add(annotation) - - @session_manager - async def get_annotations_for_metadata_id( - self, - session: AsyncSession, - metadata_id: int - ) -> list[MetadataAnnotation]: - statement = (select(MetadataAnnotation). - where(MetadataAnnotation.metadata_id == metadata_id)) - scalar_result = await session.scalars(statement) - all_results = scalar_result.all() - return [MetadataAnnotationInfo(**result.__dict__) for result in all_results] - - @session_manager - async def get_all(self, session, model: Base): - """ - Get all records of a model - Used primarily in testing - """ - statement = select(model) - result = await session.execute(statement) - return result.scalars().all() - - @session_manager - async def load_root_url_cache(self, session: AsyncSession) -> dict[str, str]: - statement = select(RootURL) - scalar_result = await session.scalars(statement) - model_result = scalar_result.all() - d = {} - for result in model_result: - d[result.url] = result.page_title - return d - - @session_manager - async def add_to_root_url_cache(self, session: AsyncSession, url: str, page_title: str) -> None: - cache = RootURL(url=url, page_title=page_title) - session.add(cache) - - @session_manager - async def get_urls(self, session: AsyncSession, page: int, errors: bool) -> GetURLsResponseInfo: - statement = select(URL).options( - selectinload(URL.url_metadata), selectinload(URL.error_info) - ) - if errors: - # Only return URLs with errors - statement = statement.where( - exists( - select(URLErrorInfo).where(URLErrorInfo.url_id == URL.id) - ) - ) - add_standard_limit_and_offset(statement, page) - execute_result = await session.execute(statement) - all_results = execute_result.scalars().all() - final_results = [] - for result in all_results: - metadata_results = [] - for metadata in result.url_metadata: - metadata_result = GetURLsResponseMetadataInfo( - id=metadata.id, - attribute=URLMetadataAttributeType(metadata.attribute), - value=metadata.value, - validation_status=ValidationStatus(metadata.validation_status), - validation_source=ValidationSource(metadata.validation_source), - created_at=metadata.created_at, - updated_at=metadata.updated_at - ) - metadata_results.append(metadata_result) - error_results = [] - for error in result.error_info: - error_result = GetURLsResponseErrorInfo( - id=error.id, - error=error.error, - updated_at=error.updated_at - ) - error_results.append(error_result) - final_results.append( - GetURLsResponseInnerInfo( - id=result.id, - batch_id=result.batch_id, - url=result.url, - status=URLStatus(result.outcome), - collector_metadata=result.collector_metadata, - updated_at=result.updated_at, - created_at=result.created_at, - errors=error_results, - metadata=metadata_results - ) - ) - - return GetURLsResponseInfo( - urls=final_results, - count=len(final_results) - ) - - - diff --git a/collector_db/DTOs/BatchInfo.py b/collector_db/DTOs/BatchInfo.py deleted file mode 100644 index ba16539a..00000000 --- a/collector_db/DTOs/BatchInfo.py +++ /dev/null @@ -1,24 +0,0 @@ -from datetime import datetime -from typing import Optional - -from pydantic import BaseModel - -from core.enums import BatchStatus - - -class BatchInfo(BaseModel): - id: Optional[int] = None - strategy: str - status: BatchStatus - parameters: dict - user_id: int - total_url_count: int = 0 - original_url_count: int = 0 - duplicate_url_count: int = 0 - strategy_success_rate: Optional[float] = None - metadata_success_rate: Optional[float] = None - agency_match_rate: Optional[float] = None - record_type_match_rate: Optional[float] = None - record_category_match_rate: Optional[float] = None - compute_time: Optional[float] = None - date_generated: Optional[datetime] = None diff --git a/collector_db/DTOs/RelevanceLabelStudioInputCycleInfo.py b/collector_db/DTOs/RelevanceLabelStudioInputCycleInfo.py deleted file mode 100644 index 644e0e27..00000000 --- a/collector_db/DTOs/RelevanceLabelStudioInputCycleInfo.py +++ /dev/null @@ -1,9 +0,0 @@ -from pydantic import BaseModel - -from collector_db.DTOs.URLHTMLContentInfo import URLHTMLContentInfo - - -class RelevanceLabelStudioInputCycleInfo(BaseModel): - url: str - metadata_id: int - html_content_info: list[URLHTMLContentInfo] \ No newline at end of file diff --git a/collector_db/DTOs/URLAnnotationInfo.py b/collector_db/DTOs/URLAnnotationInfo.py deleted file mode 100644 index 54792dfc..00000000 --- a/collector_db/DTOs/URLAnnotationInfo.py +++ /dev/null @@ -1,9 +0,0 @@ -from pydantic import BaseModel - -from collector_db.DTOs.URLHTMLContentInfo import URLHTMLContentInfo - - -class URLAnnotationInfo(BaseModel): - metadata_id: int - url: str - html_infos: list[URLHTMLContentInfo] \ No newline at end of file diff --git a/collector_db/DTOs/URLRelevancyInfo.py b/collector_db/DTOs/URLRelevancyInfo.py deleted file mode 100644 index 6369da2a..00000000 --- a/collector_db/DTOs/URLRelevancyInfo.py +++ /dev/null @@ -1,6 +0,0 @@ -from pydantic import BaseModel - - -class URLRelevancyInfo(BaseModel): - url_id: int - relevant: bool \ No newline at end of file diff --git a/collector_db/DatabaseClient.py b/collector_db/DatabaseClient.py deleted file mode 100644 index 2a659f3f..00000000 --- a/collector_db/DatabaseClient.py +++ /dev/null @@ -1,284 +0,0 @@ -from datetime import datetime, timedelta -from functools import wraps -from typing import Optional, List - -from sqlalchemy import create_engine, Row -from sqlalchemy.exc import IntegrityError -from sqlalchemy.orm import sessionmaker, scoped_session, aliased - -from collector_db.ConfigManager import ConfigManager -from collector_db.DTOs.BatchInfo import BatchInfo -from collector_db.DTOs.DuplicateInfo import DuplicateInfo, DuplicateInsertInfo -from collector_db.DTOs.InsertURLsInfo import InsertURLsInfo -from collector_db.DTOs.LogInfo import LogInfo, LogOutputInfo -from collector_db.DTOs.URLInfo import URLInfo -from collector_db.DTOs.URLMapping import URLMapping -from collector_db.helper_functions import get_postgres_connection_string -from collector_db.models import Base, Batch, URL, Log, Duplicate -from collector_manager.enums import CollectorType -from core.enums import BatchStatus - - -# SQLAlchemy ORM models - - -# Database Client -class DatabaseClient: - def __init__(self, db_url: str = get_postgres_connection_string()): - """Initialize the DatabaseClient.""" - self.engine = create_engine( - url=db_url, - echo=ConfigManager.get_sqlalchemy_echo(), - ) - self.session_maker = scoped_session(sessionmaker(bind=self.engine)) - self.session = None - - def init_db(self): - Base.metadata.create_all(self.engine) - - def session_manager(method): - @wraps(method) - def wrapper(self, *args, **kwargs): - session = self.session_maker() - try: - result = method(self, session, *args, **kwargs) - session.commit() - return result - except Exception as e: - session.rollback() - raise e - finally: - session.close() # Ensures the session is cleaned up - - return wrapper - - def row_to_dict(self, row: Row) -> dict: - return dict(row._mapping) - - - @session_manager - def insert_batch(self, session, batch_info: BatchInfo) -> int: - """Insert a new batch into the database and return its ID.""" - batch = Batch( - strategy=batch_info.strategy, - user_id=batch_info.user_id, - status=batch_info.status.value, - parameters=batch_info.parameters, - total_url_count=batch_info.total_url_count, - original_url_count=batch_info.original_url_count, - duplicate_url_count=batch_info.duplicate_url_count, - compute_time=batch_info.compute_time, - strategy_success_rate=batch_info.strategy_success_rate, - metadata_success_rate=batch_info.metadata_success_rate, - agency_match_rate=batch_info.agency_match_rate, - record_type_match_rate=batch_info.record_type_match_rate, - record_category_match_rate=batch_info.record_category_match_rate, - ) - session.add(batch) - session.commit() - session.refresh(batch) - return batch.id - - @session_manager - def update_batch_post_collection( - self, - session, - batch_id: int, - total_url_count: int, - original_url_count: int, - duplicate_url_count: int, - batch_status: BatchStatus, - compute_time: float = None, - ): - batch = session.query(Batch).filter_by(id=batch_id).first() - batch.total_url_count = total_url_count - batch.original_url_count = original_url_count - batch.duplicate_url_count = duplicate_url_count - batch.status = batch_status.value - batch.compute_time = compute_time - - @session_manager - def get_batch_by_id(self, session, batch_id: int) -> Optional[BatchInfo]: - """Retrieve a batch by ID.""" - batch = session.query(Batch).filter_by(id=batch_id).first() - return BatchInfo(**batch.__dict__) - - def insert_urls(self, url_infos: List[URLInfo], batch_id: int) -> InsertURLsInfo: - url_mappings = [] - duplicates = [] - for url_info in url_infos: - url_info.batch_id = batch_id - try: - url_id = self.insert_url(url_info) - url_mappings.append(URLMapping(url_id=url_id, url=url_info.url)) - except IntegrityError: - orig_url_info = self.get_url_info_by_url(url_info.url) - duplicate_info = DuplicateInsertInfo( - duplicate_batch_id=batch_id, - original_url_id=orig_url_info.id - ) - duplicates.append(duplicate_info) - self.insert_duplicates(duplicates) - - return InsertURLsInfo( - url_mappings=url_mappings, - total_count=len(url_infos), - original_count=len(url_mappings), - duplicate_count=len(duplicates), - ) - - @session_manager - def insert_duplicates(self, session, duplicate_infos: list[DuplicateInsertInfo]): - for duplicate_info in duplicate_infos: - duplicate = Duplicate( - batch_id=duplicate_info.duplicate_batch_id, - original_url_id=duplicate_info.original_url_id, - ) - session.add(duplicate) - - - - @session_manager - def get_url_info_by_url(self, session, url: str) -> Optional[URLInfo]: - url = session.query(URL).filter_by(url=url).first() - return URLInfo(**url.__dict__) - - @session_manager - def insert_url(self, session, url_info: URLInfo) -> int: - """Insert a new URL into the database.""" - url_entry = URL( - batch_id=url_info.batch_id, - url=url_info.url, - collector_metadata=url_info.collector_metadata, - outcome=url_info.outcome.value - ) - session.add(url_entry) - session.commit() - session.refresh(url_entry) - return url_entry.id - - - @session_manager - def get_urls_by_batch(self, session, batch_id: int, page: int = 1) -> List[URLInfo]: - """Retrieve all URLs associated with a batch.""" - urls = (session.query(URL).filter_by(batch_id=batch_id) - .order_by(URL.id).limit(100).offset((page - 1) * 100).all()) - return ([URLInfo(**url.__dict__) for url in urls]) - - @session_manager - def is_duplicate_url(self, session, url: str) -> bool: - result = session.query(URL).filter_by(url=url).first() - return result is not None - - @session_manager - def insert_logs(self, session, log_infos: List[LogInfo]): - for log_info in log_infos: - log = Log(log=log_info.log, batch_id=log_info.batch_id) - if log_info.created_at is not None: - log.created_at = log_info.created_at - session.add(log) - - @session_manager - def get_logs_by_batch_id(self, session, batch_id: int) -> List[LogOutputInfo]: - logs = session.query(Log).filter_by(batch_id=batch_id).order_by(Log.created_at.asc()).all() - return ([LogOutputInfo(**log.__dict__) for log in logs]) - - @session_manager - def get_all_logs(self, session) -> List[LogInfo]: - logs = session.query(Log).all() - return ([LogInfo(**log.__dict__) for log in logs]) - - @session_manager - def add_duplicate_info(self, session, duplicate_infos: list[DuplicateInfo]): - # TODO: Add test for this method when testing CollectorDatabaseProcessor - for duplicate_info in duplicate_infos: - duplicate = Duplicate( - batch_id=duplicate_info.original_batch_id, - original_url_id=duplicate_info.original_url_id, - ) - session.add(duplicate) - - @session_manager - def get_batch_status(self, session, batch_id: int) -> BatchStatus: - batch = session.query(Batch).filter_by(id=batch_id).first() - return BatchStatus(batch.status) - - @session_manager - def get_recent_batch_status_info( - self, - session, - page: int, - collector_type: Optional[CollectorType] = None, - status: Optional[BatchStatus] = None, - ) -> List[BatchInfo]: - # Get only the batch_id, collector_type, status, and created_at - limit = 100 - query = (session.query(Batch) - .order_by(Batch.date_generated.desc())) - if collector_type: - query = query.filter(Batch.strategy == collector_type.value) - if status: - query = query.filter(Batch.status == status.value) - query = (query.limit(limit) - .offset((page - 1) * limit)) - batches = query.all() - return [BatchInfo(**batch.__dict__) for batch in batches] - - @session_manager - def get_duplicates_by_batch_id(self, session, batch_id: int, page: int) -> List[DuplicateInfo]: - original_batch = aliased(Batch) - duplicate_batch = aliased(Batch) - - query = ( - session.query( - URL.url.label("source_url"), - URL.id.label("original_url_id"), - duplicate_batch.id.label("duplicate_batch_id"), - duplicate_batch.parameters.label("duplicate_batch_parameters"), - original_batch.id.label("original_batch_id"), - original_batch.parameters.label("original_batch_parameters"), - ) - .select_from(Duplicate) - .join(URL, Duplicate.original_url_id == URL.id) - .join(duplicate_batch, Duplicate.batch_id == duplicate_batch.id) - .join(original_batch, URL.batch_id == original_batch.id) - .filter(duplicate_batch.id == batch_id) - .limit(100) - .offset((page - 1) * 100) - ) - results = query.all() - final_results = [] - for result in results: - final_results.append( - DuplicateInfo( - source_url=result.source_url, - duplicate_batch_id=result.duplicate_batch_id, - duplicate_metadata=result.duplicate_batch_parameters, - original_batch_id=result.original_batch_id, - original_metadata=result.original_batch_parameters, - original_url_id=result.original_url_id - ) - ) - return final_results - - @session_manager - def delete_all_logs(self, session): - session.query(Log).delete() - - @session_manager - def delete_old_logs(self, session): - """ - Delete logs older than a day - """ - session.query(Log).filter( - Log.created_at < datetime.now() - timedelta(days=1) - ).delete() - - @session_manager - def update_url(self, session, url_info: URLInfo): - url = session.query(URL).filter_by(id=url_info.id).first() - url.collector_metadata = url_info.collector_metadata - -if __name__ == "__main__": - client = DatabaseClient() - print("Database client initialized.") diff --git a/collector_db/helper_functions.py b/collector_db/helper_functions.py deleted file mode 100644 index dcb161b9..00000000 --- a/collector_db/helper_functions.py +++ /dev/null @@ -1,16 +0,0 @@ -import os - -import dotenv - - -def get_postgres_connection_string(is_async = False): - dotenv.load_dotenv() - username = os.getenv("POSTGRES_USER") - password = os.getenv("POSTGRES_PASSWORD") - host = os.getenv("POSTGRES_HOST") - port = os.getenv("POSTGRES_PORT") - database = os.getenv("POSTGRES_DB") - driver = "postgresql" - if is_async: - driver += "+asyncpg" - return f"{driver}://{username}:{password}@{host}:{port}/{database}" \ No newline at end of file diff --git a/collector_db/models.py b/collector_db/models.py deleted file mode 100644 index 273d956f..00000000 --- a/collector_db/models.py +++ /dev/null @@ -1,233 +0,0 @@ -""" -SQLAlchemy ORM models -""" -from sqlalchemy import func, Column, Integer, String, TIMESTAMP, Float, JSON, ForeignKey, Text, UniqueConstraint -from sqlalchemy.dialects import postgresql -from sqlalchemy.orm import declarative_base, relationship - -from collector_db.enums import PGEnum -from core.enums import BatchStatus -from util.helper_functions import get_enum_values - -# Base class for SQLAlchemy ORM models -Base = declarative_base() - -status_check_string = ", ".join([f"'{status}'" for status in get_enum_values(BatchStatus)]) - -CURRENT_TIME_SERVER_DEFAULT = func.now() - - -class Batch(Base): - __tablename__ = 'batches' - - id = Column(Integer, primary_key=True) - strategy = Column( - postgresql.ENUM( - 'example', 'ckan', 'muckrock_county_search', 'auto_googler', 'muckrock_all_search', 'muckrock_simple_search', 'common_crawler', - name='batch_strategy'), - nullable=False) - user_id = Column(Integer, nullable=False) - # Gives the status of the batch - status = Column( - postgresql.ENUM( - 'complete', 'error', 'in-process', 'aborted', - name='batch_status'), - nullable=False - ) - # The number of URLs in the batch - # TODO: Add means to update after execution - total_url_count = Column(Integer, nullable=False, default=0) - original_url_count = Column(Integer, nullable=False, default=0) - duplicate_url_count = Column(Integer, nullable=False, default=0) - date_generated = Column(TIMESTAMP, nullable=False, server_default=CURRENT_TIME_SERVER_DEFAULT) - # How often URLs ended up approved in the database - strategy_success_rate = Column(Float) - # Percentage of metadata identified by models - metadata_success_rate = Column(Float) - # Rate of matching to agencies - agency_match_rate = Column(Float) - # Rate of matching to record types - record_type_match_rate = Column(Float) - # Rate of matching to record categories - record_category_match_rate = Column(Float) - # Time taken to generate the batch - # TODO: Add means to update after execution - compute_time = Column(Float) - # The parameters used to generate the batch - parameters = Column(JSON) - - # Relationships - urls = relationship("URL", back_populates="batch") - missings = relationship("Missing", back_populates="batch") - logs = relationship("Log", back_populates="batch") - duplicates = relationship("Duplicate", back_populates="batch") - - -class URL(Base): - __tablename__ = 'urls' - - id = Column(Integer, primary_key=True) - # The batch this URL is associated with - batch_id = Column(Integer, ForeignKey('batches.id', name='fk_url_batch_id'), nullable=False) - url = Column(Text, unique=True) - # The metadata from the collector - collector_metadata = Column(JSON) - # The outcome of the URL: submitted, human_labeling, rejected, duplicate, etc. - outcome = Column( - postgresql.ENUM('pending', 'submitted', 'human_labeling', 'rejected', 'duplicate', 'error', name='url_status'), - nullable=False - ) - created_at = Column(TIMESTAMP, nullable=False, server_default=CURRENT_TIME_SERVER_DEFAULT) - updated_at = Column(TIMESTAMP, nullable=False, server_default=CURRENT_TIME_SERVER_DEFAULT) - - # Relationships - batch = relationship("Batch", back_populates="urls") - duplicates = relationship("Duplicate", back_populates="original_url") - url_metadata = relationship("URLMetadata", back_populates="url", cascade="all, delete-orphan") - html_content = relationship("URLHTMLContent", back_populates="url", cascade="all, delete-orphan") - error_info = relationship("URLErrorInfo", back_populates="url", cascade="all, delete-orphan") - - -# URL Metadata table definition -class URLMetadata(Base): - __tablename__ = 'url_metadata' - __table_args__ = (UniqueConstraint( - "url_id", - "attribute", - name="model_num2_key"), - ) - - id = Column(Integer, primary_key=True) - url_id = Column(Integer, ForeignKey('urls.id'), nullable=False) - attribute = Column( - PGEnum('Record Type', 'Agency', 'Relevant', name='url_attribute'), - nullable=False) - value = Column(Text, nullable=False) - validation_status = Column( - PGEnum('Pending Validation', 'Validated', name='metadata_validation_status'), - nullable=False) - validation_source = Column( - PGEnum('Machine Learning', 'Label Studio', 'Manual', name='validation_source'), - nullable=False - ) - - # Timestamps - created_at = Column(TIMESTAMP, nullable=False, server_default=func.now()) - updated_at = Column(TIMESTAMP, nullable=False, server_default=func.now(), onupdate=func.now()) - - # Relationships - url = relationship("URL", back_populates="url_metadata") - annotations = relationship("MetadataAnnotation", back_populates="url_metadata") - -class MetadataAnnotation(Base): - __tablename__ = 'metadata_annotations' - __table_args__ = (UniqueConstraint( - "user_id", - "metadata_id", - name="metadata_annotations_uq_user_id_metadata_id"), - ) - - id = Column(Integer, primary_key=True) - user_id = Column(Integer, nullable=False) - metadata_id = Column(Integer, ForeignKey('url_metadata.id'), nullable=False) - value = Column(Text, nullable=False) - created_at = Column(TIMESTAMP, nullable=False, server_default=func.now()) - - # Relationships - url_metadata = relationship("URLMetadata", back_populates="annotations") - -class RootURL(Base): - __tablename__ = 'root_urls' - __table_args__ = ( - UniqueConstraint( - "url", - name="uq_root_url_url"), - ) - - id = Column(Integer, primary_key=True) - url = Column(String, nullable=False) - page_title = Column(String, nullable=False) - page_description = Column(String, nullable=True) - updated_at = Column(TIMESTAMP, nullable=False, server_default=func.now(), onupdate=func.now()) - - -class URLErrorInfo(Base): - __tablename__ = 'url_error_info' - - id = Column(Integer, primary_key=True) - url_id = Column(Integer, ForeignKey('urls.id'), nullable=False) - error = Column(Text, nullable=False) - updated_at = Column(TIMESTAMP, nullable=False, server_default=CURRENT_TIME_SERVER_DEFAULT) - - # Relationships - url = relationship("URL", back_populates="error_info") - -class URLHTMLContent(Base): - __tablename__ = 'url_html_content' - __table_args__ = (UniqueConstraint( - "url_id", - "content_type", - name="uq_url_id_content_type"), - ) - - id = Column(Integer, primary_key=True) - url_id = Column(Integer, ForeignKey('urls.id'), nullable=False) - content_type = Column( - PGEnum('Title', 'Description', 'H1', 'H2', 'H3', 'H4', 'H5', 'H6', 'Div', name='url_html_content_type'), - nullable=False) - content = Column(Text, nullable=False) - - updated_at = Column(TIMESTAMP, nullable=False, server_default=func.now(), onupdate=func.now()) - - # Relationships - url = relationship("URL", back_populates="html_content") - -class Duplicate(Base): - """ - Identifies duplicates which occur within a batch - """ - __tablename__ = 'duplicates' - - id = Column(Integer, primary_key=True) - batch_id = Column( - Integer, - ForeignKey('batches.id'), - nullable=False, - doc="The batch that produced the duplicate" - ) - original_url_id = Column( - Integer, - ForeignKey('urls.id'), - nullable=False, - doc="The original URL ID" - ) - - # Relationships - batch = relationship("Batch", back_populates="duplicates") - original_url = relationship("URL", back_populates="duplicates") - - - -class Log(Base): - __tablename__ = 'logs' - - id = Column(Integer, primary_key=True) - batch_id = Column(Integer, ForeignKey('batches.id'), nullable=False) - log = Column(Text, nullable=False) - created_at = Column(TIMESTAMP, nullable=False, server_default=CURRENT_TIME_SERVER_DEFAULT) - - # Relationships - batch = relationship("Batch", back_populates="logs") - -class Missing(Base): - __tablename__ = 'missing' - - id = Column(Integer, primary_key=True) - place_id = Column(Integer, nullable=False) - record_type = Column(String, nullable=False) - batch_id = Column(Integer, ForeignKey('batches.id')) - strategy_used = Column(Text, nullable=False) - date_searched = Column(TIMESTAMP, nullable=False, server_default=CURRENT_TIME_SERVER_DEFAULT) - - # Relationships - batch = relationship("Batch", back_populates="missings") diff --git a/collector_manager/CollectorBase.py b/collector_manager/CollectorBase.py deleted file mode 100644 index 4fcb8f58..00000000 --- a/collector_manager/CollectorBase.py +++ /dev/null @@ -1,139 +0,0 @@ -""" -Base class for all collectors -""" -import abc -import threading -import time -from abc import ABC -from typing import Optional, Type - -from pydantic import BaseModel - -from collector_db.DTOs.InsertURLsInfo import InsertURLsInfo -from collector_db.DTOs.LogInfo import LogInfo -from collector_db.DatabaseClient import DatabaseClient -from collector_manager.enums import CollectorType -from core.CoreLogger import CoreLogger -from core.enums import BatchStatus -from core.preprocessors.PreprocessorBase import PreprocessorBase - - -class CollectorAbortException(Exception): - pass - -class CollectorBase(ABC): - collector_type: CollectorType = None - preprocessor: Type[PreprocessorBase] = None - - def __init__( - self, - batch_id: int, - dto: BaseModel, - logger: CoreLogger, - db_client: DatabaseClient, - raise_error: bool = False, - ) -> None: - self.batch_id = batch_id - self.db_client = db_client - self.dto = dto - self.data: Optional[BaseModel] = None - self.logger = logger - self.status = BatchStatus.IN_PROCESS - self.start_time = None - self.compute_time = None - self.raise_error = raise_error - # # TODO: Determine how to update this in some of the other collectors - self._stop_event = threading.Event() - - @abc.abstractmethod - def run_implementation(self) -> None: - """ - This is the method that will be overridden by each collector - No other methods should be modified except for this one. - However, in each inherited class, new methods in addition to this one can be created - Returns: - - """ - raise NotImplementedError - - def start_timer(self) -> None: - self.start_time = time.time() - - def stop_timer(self) -> None: - self.compute_time = time.time() - self.start_time - - def handle_error(self, e: Exception) -> None: - if self.raise_error: - raise e - self.log(f"Error: {e}") - self.db_client.update_batch_post_collection( - batch_id=self.batch_id, - batch_status=self.status, - compute_time=self.compute_time, - total_url_count=0, - original_url_count=0, - duplicate_url_count=0 - ) - - def process(self) -> None: - self.log("Processing collector...", allow_abort=False) - preprocessor = self.preprocessor() - url_infos = preprocessor.preprocess(self.data) - self.log(f"URLs processed: {len(url_infos)}", allow_abort=False) - - self.log("Inserting URLs...", allow_abort=False) - insert_urls_info: InsertURLsInfo = self.db_client.insert_urls( - url_infos=url_infos, - batch_id=self.batch_id - ) - self.log("Updating batch...", allow_abort=False) - self.db_client.update_batch_post_collection( - batch_id=self.batch_id, - total_url_count=insert_urls_info.total_count, - duplicate_url_count=insert_urls_info.duplicate_count, - original_url_count=insert_urls_info.original_count, - batch_status=self.status, - compute_time=self.compute_time - ) - self.log("Done processing collector.", allow_abort=False) - - - def run(self) -> None: - try: - self.start_timer() - self.run_implementation() - self.stop_timer() - self.log("Collector completed successfully.") - self.close() - self.process() - except CollectorAbortException: - self.stop_timer() - self.status = BatchStatus.ABORTED - self.db_client.update_batch_post_collection( - batch_id=self.batch_id, - batch_status=BatchStatus.ABORTED, - compute_time=self.compute_time, - total_url_count=0, - original_url_count=0, - duplicate_url_count=0 - ) - except Exception as e: - self.stop_timer() - self.status = BatchStatus.ERROR - self.handle_error(e) - - def log(self, message: str, allow_abort = True) -> None: - if self._stop_event.is_set() and allow_abort: - raise CollectorAbortException - self.logger.log(LogInfo( - batch_id=self.batch_id, - log=message - )) - - def abort(self) -> None: - self._stop_event.set() # Signal the thread to stop - self.log("Collector was aborted.", allow_abort=False) - - def close(self) -> None: - self._stop_event.set() - self.status = BatchStatus.COMPLETE diff --git a/collector_manager/CollectorManager.py b/collector_manager/CollectorManager.py deleted file mode 100644 index 658b20a8..00000000 --- a/collector_manager/CollectorManager.py +++ /dev/null @@ -1,117 +0,0 @@ -""" -Manager for all collectors -Can start, stop, and get info on running collectors -And manages the retrieval of collector info -""" -import threading -from concurrent.futures import Future, ThreadPoolExecutor -from typing import Dict, List - -from pydantic import BaseModel - -from collector_db.DatabaseClient import DatabaseClient -from collector_manager.CollectorBase import CollectorBase -from collector_manager.collector_mapping import COLLECTOR_MAPPING -from collector_manager.enums import CollectorType -from core.CoreLogger import CoreLogger - - -class InvalidCollectorError(Exception): - pass - -# Collector Manager Class -class CollectorManager: - def __init__( - self, - logger: CoreLogger, - db_client: DatabaseClient, - dev_mode: bool = False, - max_workers: int = 10 # Limit the number of concurrent threads - ): - self.collectors: Dict[int, CollectorBase] = {} - self.futures: Dict[int, Future] = {} - self.threads: Dict[int, threading.Thread] = {} - self.db_client = db_client - self.logger = logger - self.lock = threading.Lock() - self.max_workers = max_workers - self.dev_mode = dev_mode - self.executor = ThreadPoolExecutor(max_workers=self.max_workers) - - def restart_executor(self): - self.executor = ThreadPoolExecutor(max_workers=self.max_workers) - - def list_collectors(self) -> List[str]: - return [cm.value for cm in list(COLLECTOR_MAPPING.keys())] - - def start_collector( - self, - collector_type: CollectorType, - batch_id: int, - dto: BaseModel - ) -> None: - with self.lock: - # If executor is shutdown, restart it - if self.executor._shutdown: - self.restart_executor() - - if batch_id in self.collectors: - raise ValueError(f"Collector with batch_id {batch_id} is already running.") - try: - collector_class = COLLECTOR_MAPPING[collector_type] - collector = collector_class( - batch_id=batch_id, - dto=dto, - logger=self.logger, - db_client=self.db_client, - raise_error=True if self.dev_mode else False - ) - except KeyError: - raise InvalidCollectorError(f"Collector {collector_type.value} not found.") - self.collectors[batch_id] = collector - - future = self.executor.submit(collector.run) - self.futures[batch_id] = future - - # thread = threading.Thread(target=collector.run) - # self.threads[batch_id] = thread - # thread.start() - - def get_info(self, cid: str) -> str: - collector = self.collectors.get(cid) - if not collector: - return f"Collector with CID {cid} not found." - logs = "\n".join(collector.logs[-3:]) # Show the last 3 logs - return f"{cid} ({collector.name}) - {collector.status}\nLogs:\n{logs}" - - - def try_getting_collector(self, cid): - collector = self.collectors.get(cid) - if collector is None: - raise InvalidCollectorError(f"Collector with CID {cid} not found.") - return collector - - def abort_collector(self, cid: int) -> None: - collector = self.try_getting_collector(cid) - # Get collector thread - thread = self.threads.get(cid) - future = self.futures.get(cid) - collector.abort() - # thread.join(timeout=1) - self.collectors.pop(cid) - self.futures.pop(cid) - # self.threads.pop(cid) - - def shutdown_all_collectors(self) -> None: - with self.lock: - for cid, future in self.futures.items(): - if future.done(): - try: - future.result() - except Exception as e: - raise e - self.collectors[cid].abort() - - self.executor.shutdown(wait=True) - self.collectors.clear() - self.futures.clear() \ No newline at end of file diff --git a/collector_manager/ExampleCollector.py b/collector_manager/ExampleCollector.py deleted file mode 100644 index c5c2a69c..00000000 --- a/collector_manager/ExampleCollector.py +++ /dev/null @@ -1,29 +0,0 @@ -""" -Example collector -Exists as a proof of concept for collector functionality - -""" -import time - -from collector_manager.CollectorBase import CollectorBase -from collector_manager.DTOs.ExampleInputDTO import ExampleInputDTO -from collector_manager.DTOs.ExampleOutputDTO import ExampleOutputDTO -from collector_manager.enums import CollectorType -from core.preprocessors.ExamplePreprocessor import ExamplePreprocessor - - -class ExampleCollector(CollectorBase): - collector_type = CollectorType.EXAMPLE - preprocessor = ExamplePreprocessor - - def run_implementation(self) -> None: - dto: ExampleInputDTO = self.dto - sleep_time = dto.sleep_time - for i in range(sleep_time): # Simulate a task - self.log(f"Step {i + 1}/{sleep_time}") - time.sleep(1) # Simulate work - self.data = ExampleOutputDTO( - message=f"Data collected by {self.batch_id}", - urls=["https://example.com", "https://example.com/2"], - parameters=self.dto.model_dump(), - ) diff --git a/collector_manager/collector_mapping.py b/collector_manager/collector_mapping.py deleted file mode 100644 index 9ec49f4e..00000000 --- a/collector_manager/collector_mapping.py +++ /dev/null @@ -1,17 +0,0 @@ -from collector_manager.ExampleCollector import ExampleCollector -from collector_manager.enums import CollectorType -from source_collectors.auto_googler.AutoGooglerCollector import AutoGooglerCollector -from source_collectors.ckan.CKANCollector import CKANCollector -from source_collectors.common_crawler.CommonCrawlerCollector import CommonCrawlerCollector -from source_collectors.muckrock.classes.MuckrockCollector import MuckrockSimpleSearchCollector, \ - MuckrockCountyLevelSearchCollector, MuckrockAllFOIARequestsCollector - -COLLECTOR_MAPPING = { - CollectorType.EXAMPLE: ExampleCollector, - CollectorType.AUTO_GOOGLER: AutoGooglerCollector, - CollectorType.COMMON_CRAWLER: CommonCrawlerCollector, - CollectorType.MUCKROCK_SIMPLE_SEARCH: MuckrockSimpleSearchCollector, - CollectorType.MUCKROCK_COUNTY_SEARCH: MuckrockCountyLevelSearchCollector, - CollectorType.MUCKROCK_ALL_SEARCH: MuckrockAllFOIARequestsCollector, - CollectorType.CKAN: CKANCollector -} diff --git a/collector_manager/configs/sample_autogoogler_config.json b/collector_manager/configs/sample_autogoogler_config.json deleted file mode 100644 index b90724c1..00000000 --- a/collector_manager/configs/sample_autogoogler_config.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "api_key": "REPLACE_ME", - "cse_id": "REPLACE_ME", - "urls_per_result": 10, - "queries": [ - "Disco Elysium", - "Dune" - ] -} \ No newline at end of file diff --git a/core/AsyncCore.py b/core/AsyncCore.py deleted file mode 100644 index 67f134b1..00000000 --- a/core/AsyncCore.py +++ /dev/null @@ -1,89 +0,0 @@ -import logging - -from collector_db.AsyncDatabaseClient import AsyncDatabaseClient -from collector_db.DTOs.URLAnnotationInfo import URLAnnotationInfo -from core.DTOs.GetNextURLForRelevanceAnnotationResponse import GetNextURLForRelevanceAnnotationResponse -from core.DTOs.GetURLsResponseInfo import GetURLsResponseInfo -from core.DTOs.RelevanceAnnotationInfo import RelevanceAnnotationPostInfo -from core.DTOs.RelevanceAnnotationRequestInfo import RelevanceAnnotationRequestInfo -from core.classes.URLHTMLCycler import URLHTMLCycler -from core.classes.URLRelevanceHuggingfaceCycler import URLRelevanceHuggingfaceCycler -from html_tag_collector.DataClassTags import convert_to_response_html_info -from html_tag_collector.ResponseParser import HTMLResponseParser -from html_tag_collector.URLRequestInterface import URLRequestInterface -from hugging_face.HuggingFaceInterface import HuggingFaceInterface - - -class AsyncCore: - - def __init__( - self, - adb_client: AsyncDatabaseClient, - huggingface_interface: HuggingFaceInterface, - url_request_interface: URLRequestInterface, - html_parser: HTMLResponseParser - ): - self.adb_client = adb_client - self.huggingface_interface = huggingface_interface - self.url_request_interface = url_request_interface - self.html_parser = html_parser - self.logger = logging.getLogger(__name__) - self.logger.setLevel(logging.INFO) - - async def run_url_html_cycle(self): - self.logger.info("Running URL HTML Cycle") - cycler = URLHTMLCycler( - adb_client=self.adb_client, - url_request_interface=self.url_request_interface, - html_parser=self.html_parser - ) - await cycler.cycle() - - async def run_url_relevance_huggingface_cycle(self): - self.logger.info("Running URL Relevance Huggingface Cycle") - cycler = URLRelevanceHuggingfaceCycler( - adb_client=self.adb_client, - huggingface_interface=self.huggingface_interface - ) - await cycler.cycle() - - async def run_cycles(self): - await self.run_url_html_cycle() - await self.run_url_relevance_huggingface_cycle() - - async def convert_to_relevance_annotation_request_info(self, url_info: URLAnnotationInfo) -> RelevanceAnnotationRequestInfo: - response_html_info = convert_to_response_html_info( - html_content_infos=url_info.html_infos - ) - - return RelevanceAnnotationRequestInfo( - url=url_info.url, - metadata_id=url_info.metadata_id, - html_info=response_html_info - ) - - async def get_next_url_for_relevance_annotation(self, user_id: int) -> GetNextURLForRelevanceAnnotationResponse: - response = GetNextURLForRelevanceAnnotationResponse() - ua_info: URLAnnotationInfo = await self.adb_client.get_next_url_for_relevance_annotation(user_id=user_id) - if ua_info is None: - return response - # Format result - result = await self.convert_to_relevance_annotation_request_info(url_info=ua_info) - response.next_annotation = result - return response - - - async def submit_url_relevance_annotation( - self, - user_id: int, - metadata_id: int, - annotation: RelevanceAnnotationPostInfo - ) -> GetNextURLForRelevanceAnnotationResponse: - await self.adb_client.add_relevance_annotation( - user_id=user_id, - metadata_id=metadata_id, - annotation_info=annotation) - return await self.get_next_url_for_relevance_annotation(user_id=user_id) - - async def get_urls(self, page: int, errors: bool) -> GetURLsResponseInfo: - return await self.adb_client.get_urls(page=page, errors=errors) diff --git a/core/CoreLogger.py b/core/CoreLogger.py deleted file mode 100644 index 79263c78..00000000 --- a/core/CoreLogger.py +++ /dev/null @@ -1,97 +0,0 @@ - - -import queue -import threading -import time -from concurrent.futures import Future -from concurrent.futures.thread import ThreadPoolExecutor - -from collector_db.DTOs.LogInfo import LogInfo -from collector_db.DatabaseClient import DatabaseClient - - -class CoreLogger: - def __init__( - self, - db_client: DatabaseClient, - flush_interval=10, - batch_size=100 - ): - self.db_client = db_client - self.flush_interval = flush_interval - self.batch_size = batch_size - - self.log_queue = queue.Queue() - self.lock = threading.Lock() - self.stop_event = threading.Event() - # Start the periodic flush task - self.executor = ThreadPoolExecutor(max_workers=1) - self.flush_future: Future = self.executor.submit(self._flush_logs) - - def __enter__(self): - """ - Start the logger for use in a context. - """ - return self - - def __exit__(self, exc_type, exc_value, traceback): - """ - Gracefully shut down the logger when exiting the context. - """ - self.shutdown() - - def log(self, log_info: LogInfo): - """ - Adds a log entry to the queue. - """ - self.log_queue.put(log_info) - - def _flush_logs(self): - """ - Periodically flushes logs from the queue to the database. - """ - while not self.stop_event.is_set(): - time.sleep(self.flush_interval) - self.flush() - - def flush(self): - """ - Flushes all logs from the queue to the database in batches. - """ - with self.lock: - logs: list[LogInfo] = [] - while not self.log_queue.empty() and len(logs) < self.batch_size: - try: - log = self.log_queue.get_nowait() - logs.append(log) - except queue.Empty: - break - - if logs: - try: - self.db_client.insert_logs(log_infos=logs) - except Exception as e: - # Handle logging database errors (e.g., save to fallback storage) - print(f"Error while flushing logs: {e}") - - def flush_all(self): - """ - Flushes all logs from the queue to the database. - """ - while not self.log_queue.empty(): - self.flush() - - def restart(self): - self.flush_all() - self.executor.shutdown(wait=False) - self.executor = ThreadPoolExecutor(max_workers=1) - self.flush_future = self.executor.submit(self._flush_logs) - - def shutdown(self): - """ - Stops the logger gracefully and flushes any remaining logs. - """ - self.stop_event.set() - # if self.flush_future and not self.flush_future.done(): - self.flush_future.result(timeout=10) - self.flush_all() # Flush remaining logs diff --git a/core/DTOs/BatchStatusInfo.py b/core/DTOs/BatchStatusInfo.py deleted file mode 100644 index f0362a71..00000000 --- a/core/DTOs/BatchStatusInfo.py +++ /dev/null @@ -1,13 +0,0 @@ -from datetime import datetime - -from pydantic import BaseModel - -from collector_manager.enums import CollectorType -from core.enums import BatchStatus - - -class BatchStatusInfo(BaseModel): - id: int - date_generated: datetime - strategy: CollectorType - status: BatchStatus \ No newline at end of file diff --git a/core/DTOs/CollectionLifecycleInfo.py b/core/DTOs/CollectionLifecycleInfo.py deleted file mode 100644 index dc1b538f..00000000 --- a/core/DTOs/CollectionLifecycleInfo.py +++ /dev/null @@ -1,11 +0,0 @@ -from pydantic import BaseModel - -from collector_db.DTOs.DuplicateInfo import DuplicateInfo -from collector_db.DTOs.URLMapping import URLMapping - - -class CollectionLifecycleInfo(BaseModel): - batch_id: int - url_id_mapping: list[URLMapping] - duplicates: list[DuplicateInfo] - message: str diff --git a/core/DTOs/CollectorStartParams.py b/core/DTOs/CollectorStartParams.py deleted file mode 100644 index 5038afc6..00000000 --- a/core/DTOs/CollectorStartParams.py +++ /dev/null @@ -1,9 +0,0 @@ -from pydantic import BaseModel - -from collector_manager.enums import CollectorType - - -class CollectorStartParams(BaseModel): - collector_type: CollectorType - config: dict - batch_id: int = None diff --git a/core/DTOs/GetBatchStatusResponse.py b/core/DTOs/GetBatchStatusResponse.py deleted file mode 100644 index 2624f0c3..00000000 --- a/core/DTOs/GetBatchStatusResponse.py +++ /dev/null @@ -1,7 +0,0 @@ -from pydantic import BaseModel - -from collector_db.DTOs.BatchInfo import BatchInfo - - -class GetBatchStatusResponse(BaseModel): - results: list[BatchInfo] \ No newline at end of file diff --git a/core/DTOs/GetNextURLForRelevanceAnnotationResponse.py b/core/DTOs/GetNextURLForRelevanceAnnotationResponse.py deleted file mode 100644 index a58a4565..00000000 --- a/core/DTOs/GetNextURLForRelevanceAnnotationResponse.py +++ /dev/null @@ -1,9 +0,0 @@ -from typing import Optional - -from pydantic import BaseModel - -from core.DTOs.RelevanceAnnotationRequestInfo import RelevanceAnnotationRequestInfo - - -class GetNextURLForRelevanceAnnotationResponse(BaseModel): - next_annotation: Optional[RelevanceAnnotationRequestInfo] = None diff --git a/core/DTOs/LabelStudioExportResponseInfo.py b/core/DTOs/LabelStudioExportResponseInfo.py deleted file mode 100644 index fae94096..00000000 --- a/core/DTOs/LabelStudioExportResponseInfo.py +++ /dev/null @@ -1,9 +0,0 @@ -from typing import Annotated - -from fastapi.param_functions import Doc -from pydantic import BaseModel - - -class LabelStudioExportResponseInfo(BaseModel): - label_studio_import_id: Annotated[int, Doc("The ID of the Label Studio import")] - num_urls_imported: Annotated[int, Doc("The number of URLs imported")] \ No newline at end of file diff --git a/core/DTOs/LabelStudioTaskInfo.py b/core/DTOs/LabelStudioTaskInfo.py deleted file mode 100644 index 5c277c8a..00000000 --- a/core/DTOs/LabelStudioTaskInfo.py +++ /dev/null @@ -1,11 +0,0 @@ -from pydantic import BaseModel - -from collector_db.enums import URLMetadataAttributeType -from core.enums import LabelStudioTaskStatus - - -class LabelStudioTaskInfo(BaseModel): - metadata_id: int - attribute: URLMetadataAttributeType - task_id: int - task_status: LabelStudioTaskStatus \ No newline at end of file diff --git a/core/DTOs/MessageCountResponse.py b/core/DTOs/MessageCountResponse.py deleted file mode 100644 index acf5faf0..00000000 --- a/core/DTOs/MessageCountResponse.py +++ /dev/null @@ -1,7 +0,0 @@ -from pydantic import Field - -from core.DTOs.MessageResponse import MessageResponse - - -class MessageCountResponse(MessageResponse): - count: int = Field(description="The associated count") \ No newline at end of file diff --git a/core/DTOs/README.md b/core/DTOs/README.md deleted file mode 100644 index a93eddbe..00000000 --- a/core/DTOs/README.md +++ /dev/null @@ -1 +0,0 @@ -This directory consists of Data Transfer Objects (DTOs) which are utilized by other core submodules. \ No newline at end of file diff --git a/core/DTOs/RelevanceAnnotationInfo.py b/core/DTOs/RelevanceAnnotationInfo.py deleted file mode 100644 index 1aec0d51..00000000 --- a/core/DTOs/RelevanceAnnotationInfo.py +++ /dev/null @@ -1,5 +0,0 @@ -from pydantic import BaseModel - - -class RelevanceAnnotationPostInfo(BaseModel): - is_relevant: bool \ No newline at end of file diff --git a/core/DTOs/RelevanceAnnotationRequestInfo.py b/core/DTOs/RelevanceAnnotationRequestInfo.py deleted file mode 100644 index de4036db..00000000 --- a/core/DTOs/RelevanceAnnotationRequestInfo.py +++ /dev/null @@ -1,9 +0,0 @@ -from pydantic import BaseModel - -from html_tag_collector.DataClassTags import ResponseHTMLInfo - - -class RelevanceAnnotationRequestInfo(BaseModel): - url: str - metadata_id: int - html_info: ResponseHTMLInfo \ No newline at end of file diff --git a/core/DTOs/URLHTMLCycleInfo.py b/core/DTOs/URLHTMLCycleInfo.py deleted file mode 100644 index 1d739375..00000000 --- a/core/DTOs/URLHTMLCycleInfo.py +++ /dev/null @@ -1,14 +0,0 @@ -from dataclasses import dataclass -from typing import Optional - -from collector_db.DTOs.URLInfo import URLInfo -from html_tag_collector.DataClassTags import ResponseHTMLInfo -from html_tag_collector.URLRequestInterface import URLResponseInfo - - -@dataclass -class URLHTMLCycleInfo: - url_info: URLInfo - url_response_info: Optional[URLResponseInfo] = None - html_tag_info: Optional[ResponseHTMLInfo] = None - diff --git a/core/DTOs/URLRelevanceHuggingfaceCycleInfo.py b/core/DTOs/URLRelevanceHuggingfaceCycleInfo.py deleted file mode 100644 index 19318e6a..00000000 --- a/core/DTOs/URLRelevanceHuggingfaceCycleInfo.py +++ /dev/null @@ -1,10 +0,0 @@ -from typing import Optional - -from pydantic import BaseModel - -from collector_db.DTOs.URLWithHTML import URLWithHTML - - -class URLRelevanceHuggingfaceCycleInfo(BaseModel): - url_with_html: URLWithHTML - relevant: Optional[bool] = None diff --git a/core/README.md b/core/README.md deleted file mode 100644 index c9095c41..00000000 --- a/core/README.md +++ /dev/null @@ -1,5 +0,0 @@ -The Source Collector Core is a directory which integrates: -1. The Collector Manager -2. The Source Collector Database -3. The API (to be developed) -4. The PDAP API Client (to be developed) \ No newline at end of file diff --git a/core/ScheduledTaskManager.py b/core/ScheduledTaskManager.py deleted file mode 100644 index 590690d1..00000000 --- a/core/ScheduledTaskManager.py +++ /dev/null @@ -1,64 +0,0 @@ -from datetime import datetime, timedelta - -from apscheduler.schedulers.asyncio import AsyncIOScheduler -from apscheduler.schedulers.background import BackgroundScheduler -from apscheduler.triggers.interval import IntervalTrigger - -from collector_db.DatabaseClient import DatabaseClient -from core.AsyncCore import AsyncCore - - -class ScheduledTaskManager: - - def __init__(self, db_client: DatabaseClient): - # Dependencies - self.db_client = db_client - - # Main objects - self.scheduler = BackgroundScheduler() - self.scheduler.start() - self.add_scheduled_tasks() - - # Jobs - self.delete_old_logs_job = None - - - def add_scheduled_tasks(self): - self.delete_old_logs_job = self.scheduler.add_job( - self.db_client.delete_old_logs, - trigger=IntervalTrigger( - days=1, - start_date=datetime.now() + timedelta(minutes=10) - ) - ) - - def shutdown(self): - if self.scheduler.running: - self.scheduler.shutdown() - -class AsyncScheduledTaskManager: - - def __init__(self, async_core: AsyncCore): - # Dependencies - self.async_core = async_core - - # Main objects - self.scheduler = AsyncIOScheduler() - self.scheduler.start() - self.add_scheduled_tasks() - - # Jobs - self.run_cycles_job = None - - def add_scheduled_tasks(self): - self.run_cycles_job = self.scheduler.add_job( - self.async_core.run_cycles, - trigger=IntervalTrigger( - hours=1, - start_date=datetime.now() + timedelta(minutes=1) - ) - ) - - def shutdown(self): - if self.scheduler.running: - self.scheduler.shutdown() \ No newline at end of file diff --git a/core/SourceCollectorCore.py b/core/SourceCollectorCore.py deleted file mode 100644 index b341bda3..00000000 --- a/core/SourceCollectorCore.py +++ /dev/null @@ -1,139 +0,0 @@ -from typing import Optional - -from pydantic import BaseModel - -from collector_db.DTOs.BatchInfo import BatchInfo -from collector_db.DatabaseClient import DatabaseClient -from collector_manager.CollectorManager import CollectorManager -from collector_manager.enums import CollectorType -from core.CoreLogger import CoreLogger -from core.DTOs.CollectorStartInfo import CollectorStartInfo -from core.DTOs.GetBatchLogsResponse import GetBatchLogsResponse -from core.DTOs.GetBatchStatusResponse import GetBatchStatusResponse -from core.DTOs.GetDuplicatesByBatchResponse import GetDuplicatesByBatchResponse -from core.DTOs.GetURLsByBatchResponse import GetURLsByBatchResponse -from core.DTOs.LabelStudioExportResponseInfo import LabelStudioExportResponseInfo -from core.DTOs.MessageResponse import MessageResponse -from core.ScheduledTaskManager import ScheduledTaskManager -from core.enums import BatchStatus -from label_studio_interface.DTOs.LabelStudioTaskExportInfo import LabelStudioTaskExportInfo -from label_studio_interface.LabelStudioAPIManager import LabelStudioAPIManager - - -class SourceCollectorCore: - def __init__( - self, - core_logger: CoreLogger, - db_client: DatabaseClient = DatabaseClient(), - label_studio_api_manager: LabelStudioAPIManager = LabelStudioAPIManager(), - dev_mode: bool = False - ): - self.db_client = db_client - self.core_logger = core_logger - self.collector_manager = CollectorManager( - logger=core_logger, - db_client=db_client - ) - if not dev_mode: - self.scheduled_task_manager = ScheduledTaskManager(db_client=db_client) - else: - self.scheduled_task_manager = None - self.label_studio_api_manager = label_studio_api_manager - - def get_batch_info(self, batch_id: int) -> BatchInfo: - return self.db_client.get_batch_by_id(batch_id) - - def get_urls_by_batch(self, batch_id: int, page: int = 1) -> GetURLsByBatchResponse: - url_infos = self.db_client.get_urls_by_batch(batch_id, page) - return GetURLsByBatchResponse(urls=url_infos) - - def get_duplicate_urls_by_batch(self, batch_id: int, page: int = 1) -> GetDuplicatesByBatchResponse: - dup_infos = self.db_client.get_duplicates_by_batch_id(batch_id, page=page) - return GetDuplicatesByBatchResponse(duplicates=dup_infos) - - def get_batch_statuses( - self, - collector_type: Optional[CollectorType], - status: Optional[BatchStatus], - page: int - ) -> GetBatchStatusResponse: - results = self.db_client.get_recent_batch_status_info( - collector_type=collector_type, - status=status, - page=page - ) - return GetBatchStatusResponse(results=results) - - def get_status(self, batch_id: int) -> BatchStatus: - return self.db_client.get_batch_status(batch_id) - - def initiate_collector( - self, - collector_type: CollectorType, - user_id: int, - dto: Optional[BaseModel] = None, - ): - """ - Reserves a batch ID from the database - and starts the requisite collector - """ - batch_info = BatchInfo( - strategy=collector_type.value, - status=BatchStatus.IN_PROCESS, - parameters=dto.model_dump(), - user_id=user_id - ) - batch_id = self.db_client.insert_batch(batch_info) - self.collector_manager.start_collector( - collector_type=collector_type, - batch_id=batch_id, - dto=dto - ) - return CollectorStartInfo( - batch_id=batch_id, - message=f"Started {collector_type.value} collector." - ) - - def get_batch_logs(self, batch_id: int) -> GetBatchLogsResponse: - logs = self.db_client.get_logs_by_batch_id(batch_id) - return GetBatchLogsResponse(logs=logs) - - def export_batch_to_label_studio(self, batch_id: int) -> LabelStudioExportResponseInfo: - # TODO: Might this need to be a separate thread? - db_url_infos = self.db_client.get_urls_by_batch(batch_id) - url_count = len(db_url_infos) - export_infos = [] - for url_info in db_url_infos: - export_infos.append(LabelStudioTaskExportInfo(url=url_info.url)) - import_id = self.label_studio_api_manager.export_tasks_into_project( - data=export_infos - ) - return LabelStudioExportResponseInfo( - label_studio_import_id=import_id, - num_urls_imported=url_count - ) - - def abort_batch(self, batch_id: int) -> MessageResponse: - self.collector_manager.abort_collector(cid=batch_id) - return MessageResponse(message=f"Batch aborted.") - - def restart(self): - self.collector_manager.shutdown_all_collectors() - self.collector_manager.restart_executor() - self.collector_manager.logger.restart() - - - def shutdown(self): - self.collector_manager.shutdown_all_collectors() - self.collector_manager.logger.shutdown() - if self.scheduled_task_manager is not None: - self.scheduled_task_manager.shutdown() - - - - - -""" -TODO: Add logic for batch processing - -""" \ No newline at end of file diff --git a/core/classes/URLHTMLCycler.py b/core/classes/URLHTMLCycler.py deleted file mode 100644 index 73344a9c..00000000 --- a/core/classes/URLHTMLCycler.py +++ /dev/null @@ -1,95 +0,0 @@ -from collector_db.AsyncDatabaseClient import AsyncDatabaseClient -from collector_db.DTOs.URLErrorInfos import URLErrorPydanticInfo -from collector_db.DTOs.URLInfo import URLInfo -from core.DTOs.URLHTMLCycleInfo import URLHTMLCycleInfo -from core.classes.HTMLContentInfoGetter import HTMLContentInfoGetter -from html_tag_collector.ResponseParser import HTMLResponseParser -from html_tag_collector.URLRequestInterface import URLRequestInterface - - -class URLHTMLCycler: - - def __init__( - self, - url_request_interface: URLRequestInterface, - adb_client: AsyncDatabaseClient, - html_parser: HTMLResponseParser - ): - self.url_request_interface = url_request_interface - self.adb_client = adb_client - self.html_parser = html_parser - - async def cycle(self): - print("Running URL HTML Cycle...") - cycle_infos = await self.get_pending_urls_without_html_data() - await self.get_raw_html_data_for_urls(cycle_infos) - success_cycles, error_cycles = await self.separate_success_and_error_cycles(cycle_infos) - await self.update_errors_in_database(error_cycles) - await self.process_html_data(success_cycles) - await self.update_html_data_in_database(success_cycles) - - - async def get_just_urls(self, cycle_infos: list[URLHTMLCycleInfo]): - return [cycle_info.url_info.url for cycle_info in cycle_infos] - - async def get_pending_urls_without_html_data(self): - pending_urls: list[URLInfo] = await self.adb_client.get_pending_urls_without_html_data() - cycle_infos = [ - URLHTMLCycleInfo( - url_info=url_info, - ) for url_info in pending_urls - ] - return cycle_infos - - async def get_raw_html_data_for_urls(self, cycle_infos: list[URLHTMLCycleInfo]): - just_urls = await self.get_just_urls(cycle_infos) - url_response_infos = await self.url_request_interface.make_requests(just_urls) - for cycle_info, url_response_info in zip(cycle_infos, url_response_infos): - cycle_info.url_response_info = url_response_info - - async def separate_success_and_error_cycles( - self, - cycle_infos: list[URLHTMLCycleInfo] - ) -> tuple[ - list[URLHTMLCycleInfo], # Successful - list[URLHTMLCycleInfo] # Error - ]: - errored_cycle_infos = [] - successful_cycle_infos = [] - for cycle_info in cycle_infos: - if not cycle_info.url_response_info.success: - errored_cycle_infos.append(cycle_info) - else: - successful_cycle_infos.append(cycle_info) - return successful_cycle_infos, errored_cycle_infos - - async def update_errors_in_database(self, errored_cycle_infos: list[URLHTMLCycleInfo]): - error_infos = [] - for errored_cycle_info in errored_cycle_infos: - error_info = URLErrorPydanticInfo( - url_id=errored_cycle_info.url_info.id, - error=str(errored_cycle_info.url_response_info.exception), - ) - error_infos.append(error_info) - await self.adb_client.add_url_error_infos(error_infos) - - async def process_html_data(self, cycle_infos: list[URLHTMLCycleInfo]): - for cycle_info in cycle_infos: - html_tag_info = await self.html_parser.parse( - url=cycle_info.url_info.url, - html_content=cycle_info.url_response_info.html, - content_type=cycle_info.url_response_info.content_type - ) - cycle_info.html_tag_info = html_tag_info - - async def update_html_data_in_database(self, cycle_infos: list[URLHTMLCycleInfo]): - html_content_infos = [] - for cycle_info in cycle_infos: - hcig = HTMLContentInfoGetter( - response_html_info=cycle_info.html_tag_info, - url_id=cycle_info.url_info.id - ) - results = hcig.get_all_html_content() - html_content_infos.extend(results) - - await self.adb_client.add_html_content_infos(html_content_infos) diff --git a/core/classes/URLRelevanceHuggingfaceCycler.py b/core/classes/URLRelevanceHuggingfaceCycler.py deleted file mode 100644 index 8ffdb705..00000000 --- a/core/classes/URLRelevanceHuggingfaceCycler.py +++ /dev/null @@ -1,56 +0,0 @@ -from collector_db.AsyncDatabaseClient import AsyncDatabaseClient -from collector_db.DTOs.URLMetadataInfo import URLMetadataInfo -from collector_db.DTOs.URLWithHTML import URLWithHTML -from collector_db.enums import URLMetadataAttributeType, ValidationStatus, ValidationSource -from core.DTOs.URLRelevanceHuggingfaceCycleInfo import URLRelevanceHuggingfaceCycleInfo -from hugging_face.HuggingFaceInterface import HuggingFaceInterface - - -class URLRelevanceHuggingfaceCycler: - - def __init__( - self, - adb_client: AsyncDatabaseClient, - huggingface_interface: HuggingFaceInterface - ): - self.adb_client = adb_client - self.huggingface_interface = huggingface_interface - - async def cycle(self): - # Get pending urls from Source Collector - # with HTML data and without Relevancy Metadata - cycle_infos = await self.get_pending_url_info() - # Pipe into Huggingface - await self.add_huggingface_relevancy(cycle_infos) - - # Put results into Database - await self.put_results_into_database(cycle_infos) - - async def put_results_into_database(self, cycle_infos): - url_metadatas = [] - for cycle_info in cycle_infos: - url_metadata = URLMetadataInfo( - url_id=cycle_info.url_with_html.url_id, - attribute=URLMetadataAttributeType.RELEVANT, - value=str(cycle_info.relevant), - validation_status=ValidationStatus.PENDING_VALIDATION, - validation_source=ValidationSource.MACHINE_LEARNING - ) - url_metadatas.append(url_metadata) - await self.adb_client.add_url_metadatas(url_metadatas) - - async def add_huggingface_relevancy(self, cycle_infos: list[URLRelevanceHuggingfaceCycleInfo]): - urls_with_html = [cycle_info.url_with_html for cycle_info in cycle_infos] - results = self.huggingface_interface.get_url_relevancy(urls_with_html) - for cycle_info, result in zip(cycle_infos, results): - cycle_info.relevant = result - - async def get_pending_url_info(self) -> list[URLRelevanceHuggingfaceCycleInfo]: - cycle_infos = [] - pending_urls: list[URLWithHTML] = await self.adb_client.get_urls_with_html_data_and_no_relevancy_metadata() - for url_with_html in pending_urls: - cycle_info = URLRelevanceHuggingfaceCycleInfo( - url_with_html=url_with_html - ) - cycle_infos.append(cycle_info) - return cycle_infos diff --git a/core/enums.py b/core/enums.py deleted file mode 100644 index 69505406..00000000 --- a/core/enums.py +++ /dev/null @@ -1,12 +0,0 @@ -from enum import Enum - - -class BatchStatus(Enum): - COMPLETE = "complete" - IN_PROCESS = "in-process" - ERROR = "error" - ABORTED = "aborted" - -class LabelStudioTaskStatus(Enum): - PENDING = "pending" - COMPLETED = "completed" \ No newline at end of file diff --git a/core/exceptions.py b/core/exceptions.py deleted file mode 100644 index edaa32a3..00000000 --- a/core/exceptions.py +++ /dev/null @@ -1,2 +0,0 @@ -class InvalidPreprocessorError(Exception): - pass diff --git a/docker-compose.yml b/docker-compose.yml index d813a97f..58cb29e1 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -6,7 +6,7 @@ services: build: context: . dockerfile: Dockerfile - command: pytest /app/tests/test_automated + command: pytest /app/tests/automated ports: - "8000:80" environment: diff --git a/execute.sh b/execute.sh index 6bfd03b1..98332709 100644 --- a/execute.sh +++ b/execute.sh @@ -1,4 +1,4 @@ #!/bin/sh python apply_migrations.py -uvicorn api.main:app --host 0.0.0.0 --port 80 +uvicorn src.api.main:app --host 0.0.0.0 --port 80 diff --git a/html_tag_collector/DataClassTags.py b/html_tag_collector/DataClassTags.py deleted file mode 100644 index d39a0767..00000000 --- a/html_tag_collector/DataClassTags.py +++ /dev/null @@ -1,41 +0,0 @@ -from dataclasses import dataclass - -from collector_db.DTOs.URLHTMLContentInfo import URLHTMLContentInfo, HTMLContentType - - -@dataclass -class ResponseHTMLInfo: - index: int = -1 - url: str = "" - url_path: str = "" - title: str = "" - description: str = "" - root_page_title: str = "" - http_response: int = -1 - h1: str = "" - h2: str = "" - h3: str = "" - h4: str = "" - h5: str = "" - h6: str = "" - div: str = "" - -ENUM_TO_ATTRIBUTE_MAPPING = { - HTMLContentType.TITLE: "title", - HTMLContentType.DESCRIPTION: "description", - HTMLContentType.H1: "h1", - HTMLContentType.H2: "h2", - HTMLContentType.H3: "h3", - HTMLContentType.H4: "h4", - HTMLContentType.H5: "h5", - HTMLContentType.H6: "h6", - HTMLContentType.DIV: "div" -} - -def convert_to_response_html_info(html_content_infos: list[URLHTMLContentInfo]): - response_html_info = ResponseHTMLInfo() - - for html_content_info in html_content_infos: - setattr(response_html_info, ENUM_TO_ATTRIBUTE_MAPPING[html_content_info.content_type], html_content_info.content) - - return response_html_info \ No newline at end of file diff --git a/html_tag_collector/README.md b/html_tag_collector/README.md deleted file mode 100644 index 0089f338..00000000 --- a/html_tag_collector/README.md +++ /dev/null @@ -1,30 +0,0 @@ -# HTML tag collector - -This script adds HTML properties to a JSON or CSV file of existing URLs (and their labels optionally) -*Properties added:* `title`, `meta`, `root_page_title` and `header` HTML tags, `http_response` - -## How to use - -1. If running from the command line, pass the name of the file you want to run as an argument and make sure your file in the same directory. It should be populated with URLs and properties as in the example provided. If importing collector_main, it expects a polars dataframe as an input. -2. Optionally, create a virtual environment. This is especially useful if you don't already have `beautifulsoup4`, `requests`, and `polars` installed. In your terminal: -```commandline -python -m venv collector-environment -source collector-environment/bin/activate -``` -3. Now install the required python libraries: -```commandline -$pip install -r requirements.txt -``` -4. Run `python3 collector.py [filename]` -5. If running from the command line, check the directory: you should now have a `labeled-urls-headers.csv` file. Invalid URLs are removed. Otherewise the function returns a processed polars dataframe. - -## JavaScript rendered HTML tags - -Some webpages will render HTML tags with JavaScript. The tag collector can render these tags at the cost of significantly longer execution time. To enable this feature on the command line, add the `--render-javascript` flag like so: - -```commandline -python3 collector.py urls.csv --render-javascript -``` - -## Why does this exist? -We can use machine learning to predict whether a URL is relevant with some success, but labelers otherwise need to visit a URL in order to determine what is kept there. By adding these properties we can label data without navigating to the URL as often. diff --git a/html_tag_collector/ResponseFetcher.py b/html_tag_collector/ResponseFetcher.py deleted file mode 100644 index 04ef3f21..00000000 --- a/html_tag_collector/ResponseFetcher.py +++ /dev/null @@ -1,64 +0,0 @@ -import ssl -import traceback -from dataclasses import dataclass -from typing import Optional - -import requests -import urllib3 -from requests_html import AsyncHTMLSession - -from html_tag_collector.constants import REQUEST_HEADERS -from html_tag_collector.url_adjustment_functions import http_to_https - - -class ResponseFetcher: - - def __init__(self, session: AsyncHTMLSession, url: str, debug=False): - self.headers = REQUEST_HEADERS - self.session = session - self.url = url - self.debug = debug - - def debug_print(self, s: str): - if self.debug: - print(s) - - async def fetch(self, verify_ssl=True): - return await self.session.get( - self.url, - headers=self.headers, - timeout=120, - verify=verify_ssl - ) - - async def get_response(self): - response = None - try: - response = await self.fetch() - except (requests.exceptions.SSLError, ssl.SSLError): - # This error is raised when the website uses a legacy SSL version, which is not supported by requests - self.debug_print(f"SSLError: {self.url}") - - # Retry without SSL verification - response = await self.fetch(verify_ssl=False) - except requests.exceptions.ConnectionError: - # Sometimes this error is raised because the provided url uses http - # when it should be https and the website does not handle it properly - self.debug_print(f"MaxRetryError: {self.url}") - - response = await self.retry_with_https() - except (urllib3.exceptions.LocationParseError, requests.exceptions.ReadTimeout) as e: - self.debug_print(f"{type(e).__name__}: {self.url}") - except Exception as e: - self.debug_print(f""" - "Exception:", {self.url} - {traceback.format_exc()} - {e} - """) - finally: - self.debug_print(f"{self.url} - {str(response)}") - return response - - async def retry_with_https(self): - self.url = http_to_https(self.url) - return await self.fetch() diff --git a/html_tag_collector/url_adjustment_functions.py b/html_tag_collector/url_adjustment_functions.py deleted file mode 100644 index b4d25c3c..00000000 --- a/html_tag_collector/url_adjustment_functions.py +++ /dev/null @@ -1,42 +0,0 @@ -from urllib.parse import urlparse - - -def standardize_url_prefixes(urls: list[tuple[str]]): - new_urls = [] - for url_tup in urls: - url = url_tup[0] - # TODO: Need logic for if URL is none -- should not be included - # (also an unlikely case in the Source Collector) - url = add_https(url) - new_urls.append(url) - return new_urls - - -def http_to_https(url): - # Assumes url is in http format - if not url[4] == "s": - url = url[:4] + "s" + url[4:] - return url - - -async def remove_json_suffix(url): - if url is not None: - url = url.removesuffix(".json") - return url - - -def add_https(url: str) -> str: - if not url.startswith("http"): - url = "https://" + url - return url - - -def remove_trailing_backslash(url_path): - if url_path and url_path[-1] == "/": - url_path = url_path[:-1] - return url_path - - -def drop_hostname(new_url): - url_path = urlparse(new_url).path[1:] - return url_path diff --git a/html_tag_collector/url_cache.json b/html_tag_collector/url_cache.json deleted file mode 100644 index d4a340e1..00000000 --- a/html_tag_collector/url_cache.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "http://www.example.com": "Example Domain", - "http://www.google.com": "Google", - "https://books.toscrape.com": "\n All products | Books to Scrape - Sandbox\n" -} \ No newline at end of file diff --git a/html_tag_collector/urls.json b/html_tag_collector/urls.json deleted file mode 100644 index 79574f93..00000000 --- a/html_tag_collector/urls.json +++ /dev/null @@ -1,17 +0,0 @@ -[{ - "id": 1, - "url": "https://pdap.io", - "label": "Label" -}, { - "id": 2, - "url": "https://pdapio.io", - "label": "Label" -}, { - "id": 3, - "url": "https://pdap.dev", - "label": "Label" -}, { - "id": 4, - "url": "https://pdap.io/404test", - "label": "Label" -}] diff --git a/html_tag_collector/util.py b/html_tag_collector/util.py deleted file mode 100644 index aa067bc7..00000000 --- a/html_tag_collector/util.py +++ /dev/null @@ -1,10 +0,0 @@ -def remove_excess_whitespace(s: str) -> str: - """Removes leading, trailing, and excess adjacent whitespace. - - Args: - s (str): String to remove whitespace from. - - Returns: - str: Clean string with excess whitespace stripped. - """ - return " ".join(s.split()).strip() diff --git a/hugging_face/HuggingFaceInterface.py b/hugging_face/HuggingFaceInterface.py deleted file mode 100644 index efb54b75..00000000 --- a/hugging_face/HuggingFaceInterface.py +++ /dev/null @@ -1,30 +0,0 @@ -from transformers import pipeline - -from collector_db.DTOs.URLWithHTML import URLWithHTML - - -class HuggingFaceInterface: - - def __init__(self): - self.pipe = pipeline("text-classification", model="PDAP/url-relevance") - - def get_url_relevancy( - self, - urls_with_html: list[URLWithHTML], - threshold: float = 0.5 - ) -> list[bool]: - urls = [url_with_html.url for url_with_html in urls_with_html] - results: list[dict] = self.pipe(urls) - - bool_results = [] - for result in results: - score = result["score"] - if score >= threshold: - bool_results.append(True) - else: - bool_results.append(False) - return bool_results - - - - diff --git a/hugging_face/README.md b/hugging_face/README.md deleted file mode 100644 index b7adb405..00000000 --- a/hugging_face/README.md +++ /dev/null @@ -1,58 +0,0 @@ -# URL Classifier Test - -This is a test model for URL classification related to criminal justice. - -You can view the model repository on Hugging Face here: [https://huggingface.co/PDAP/url-classifier-test](https://huggingface.co/PDAP/url-classifier-test) - -## Models - -The models used for training are: - -- BERT (bert-base-uncased) - [https://huggingface.co/docs/transformers/model_doc/bert](https://huggingface.co/docs/transformers/model_doc/bert) -- DistilBERT (distilbert-base-uncased) - [https://huggingface.co/docs/transformers/model_doc/distilbert](https://huggingface.co/docs/transformers/model_doc/distilbert) - -Training a model with BERT took about 17 hours for 2 epochs (training time is affected by hardware used and can be more or less depending on it). DistilBERT is a lightweight version of BERT and took about 6 hours of training for 1.4 epochs while only losing a few percentage points of accuracy. For testing purposes we can use DistilBERT for speedier training and BERT to further refine the model if necessary. - -## Accuracy - -The model accuracy is currently about 60% when predicting from a pool of 28 labels. - -You can view accuracy and various other training metrics on the model page here: [https://huggingface.co/PDAP/url-classifier-test/tensorboard](https://huggingface.co/PDAP/url-classifier-test/tensorboard) - -Things that can increase accuracy include: - -- Training with BERT -- Increasing the `max_steps` parameter of the `TrainingArguments()` function -- Expanding the database, especially having more training examples available for the less used labels -- Adding HTML headers for websites into the mix to give the model more information to work with -- MAYBE: use the 'precision' evaluation strategy instead of 'accuracy' - more testing will be required if this would improve overall accuracy - -Most of these methods will come at the cost of training time. - -`MAX_STEPS` is set to 500 by default, or about 1.4 epochs of training; at this point in the training the accuracy would increase by about 1% per 200 steps, meaning much more training time would be needed to increase the accuracy significantly and may have a point where it plateaus and cannot get any more accurate. - -## Dataset - -The dataset used for training can be found here [https://huggingface.co/datasets/PDAP/urls](https://huggingface.co/datasets/PDAP/urls) - -One dataset is for training data and the other is for accuracy testing - -## Files - -- `huggingface_test.py` - Script that starts the model training process -- `labels.txt` - Text file containing all possible labels that are used for prediction. If a label does not appear in the dataset, it may cause and error. If a label appears in the dataset and is not in the labels file, it will cause an error -- `clean_data.py` - Takes a CSV file and splits it into two, one for training and the other for evaluation -- `train-urls.csv` - CSV of URLs used for model training -- `test-urls.csv` - CSV of URLs used for model accuracy evaluation - -## How to Run - -### Training script - -You can run the training script by installing the libraries in `requirements.txt` and running `python3 huggingface_test.py`. Everythning should be setup and ready to go. You can change the training model by editing the `MODEL` variable and number of training steps with the `MAX_STEPS` variable. - -### Using the trained model - -You can test the trained model by entering one link at a time in the Inference API GUI box on the model's [homepage](https://huggingface.co/PDAP/url-classifier-test). - -You can also consume the trained model programmatically using Hugging Face's Inference API. Learn more about that here: [https://huggingface.co/docs/api-inference/quicktour](https://huggingface.co/docs/api-inference/quicktour) diff --git a/hugging_face/example/huggingface_test.py b/hugging_face/example/huggingface_test.py deleted file mode 100644 index 014ea0ec..00000000 --- a/hugging_face/example/huggingface_test.py +++ /dev/null @@ -1,53 +0,0 @@ -import evaluate -import numpy as np -from datasets import ClassLabel -from datasets import load_dataset -from transformers import AutoModelForSequenceClassification -from transformers import AutoTokenizer -from transformers import TrainingArguments, Trainer -from transformers import pipeline - -MODEL = "distilbert-base-uncased" -MAX_STEPS = 500 - -dataset = load_dataset("PDAP/urls") -tokenizer = AutoTokenizer.from_pretrained(MODEL) -labels = ClassLabel(names_file="labels.txt") - -def tokenize_function(batch): - tokens = tokenizer(batch["url"], padding="max_length", truncation=False) - tokens["label"] = labels.str2int(batch["label"]) - return tokens - -tokenized_datasets = dataset.map(tokenize_function, batched=True) -# Add custom labels to the results -tokenized_datasets = tokenized_datasets.cast_column("label", labels) - -# Shuffles the dataset, a smaller range can be selected to speed up training -# Selecting a smaller range may come at the cost of accuracy and may cause errors if some labels end up being excluded from the dataset -train_dataset = tokenized_datasets["train"].shuffle(seed=42)#.select(range(1000)) -eval_dataset = tokenized_datasets["test"].shuffle(seed=42)#.select(range(1000)) - -classifier = pipeline("text-classification", model=MODEL, framework="pt", tokenizer=tokenizer) -model = AutoModelForSequenceClassification.from_pretrained(MODEL, num_labels=28) -training_args = TrainingArguments(output_dir="test_trainer_1.1", evaluation_strategy="epoch", max_steps=MAX_STEPS)#, push_to_hub=True) -metric = evaluate.load("accuracy") - -def compute_metrics(eval_pred): - logits, labels = eval_pred - predictions = np.argmax(logits, axis=-1) - return metric.compute(predictions=predictions, references=labels) - -trainer = Trainer( - model=model, - args=training_args, - train_dataset=train_dataset, - eval_dataset=eval_dataset, - compute_metrics=compute_metrics -) - -trainer.train() - -# These will push a new model version to the Hugging Face Hub upon training completion -#trainer.push_to_hub("PDAP/url-classifier-test") -#tokenizer.push_to_hub("PDAP/url-classifier-test") diff --git a/hugging_face/example/labels.txt b/hugging_face/example/labels.txt deleted file mode 100644 index ce5f22d9..00000000 --- a/hugging_face/example/labels.txt +++ /dev/null @@ -1,28 +0,0 @@ -Accident Reports -Annual & Monthly Reports -Arrest Records -Calls for Service -Contact Info & Agency Meta -Complaints & Misconduct -Court Cases -Crime Maps & Reports -Crime Statistics -Daily Activity Logs -Dispatch Logs -Dispatch Recordings -Field Contacts -Geographic -Incident Reports -List of Data Sources -Media Bulletins -Misc Police Activity -Not Criminal Justice Related -Officer Involved Shootings -Personnel Records -Policies & Contracts -Poor Data Source -Records Request Info -Resources -Sex Offender Registry -Training & Hiring Info -Wanted Persons \ No newline at end of file diff --git a/hugging_face/example/split_data.py b/hugging_face/example/split_data.py deleted file mode 100644 index aa6728ff..00000000 --- a/hugging_face/example/split_data.py +++ /dev/null @@ -1,43 +0,0 @@ -import csv -import random -import sys - - -""" This script randomly seperates a csv into a train and test split for use in training. - The script will filter out rows containing multiple labels and preservve at least one unique label for the test script. -""" - - -labels = set() -csv.field_size_limit(sys.maxsize) - -with open("labeled-urls-headers_all.csv", newline="") as csvfile: - reader = csv.DictReader(csvfile) - # result = sorted(reader, key=lambda d: int(d["id"])) - with open("train-urls.csv", "w", newline="") as writefile: - writer = csv.writer(writefile) - writer.writerow(["url", "label"]) - - vd_writer = csv.writer(open("test-urls.csv", "w", newline="")) - vd_writer.writerow(["url", "label"]) - - for row in reader: - label = row["label"] - - if "#" in label: - continue - - url = row["url"] - - if not url: - continue - - rand = random.randint(1, 13) - - if label not in labels: - labels.add(label) - writer.writerow([url, row["label"]]) - elif rand != 1: - writer.writerow([url, row["label"]]) - else: - vd_writer.writerow([url, row["label"]]) diff --git a/hugging_face/example/test-urls.csv b/hugging_face/example/test-urls.csv deleted file mode 100644 index efdfdb99..00000000 --- a/hugging_face/example/test-urls.csv +++ /dev/null @@ -1,201 +0,0 @@ -url,label -https://www.southamptontownnypolice.gov/faq.aspx?qid=120,Not Criminal Justice Related -https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0442/,Complaints & Misconduct -https://mukilteowa.gov/news/mukilteo-police-department-public-safety-community-survey/,Media Bulletins -http://www.lafayettepolice.us/771/tactical-rescue-team,Contact Info & Agency Meta -https://hutchinsonmn.gov/departmentsfacilities/police-services/annual-report/,Annual & Monthly Reports -https://alpha.austin.gov/police-oversight/formal-complaint-purpose-and-scope-impartial-attitude-and-courtesy-secure-and-identify-witnesses-and-other-policy-violations/,Complaints & Misconduct -https://www.southamptontownnypolice.gov/1370/2020-budgets,List of Data Sources -https://www.coppelltx.gov/1083/sunshine-room,Not Criminal Justice Related -https://www.jacksontn.gov/government/departments/police/command_staff/captain_jeff_shepard,Personnel Records -https://www.antioch.il.gov/wpfb-file/12-06-14-police-and-fire-agenda-pdf-3/,Poor Data Source -https://delcopa.gov/treasurer/propertyassessment.html,Not Criminal Justice Related -https://delcopa.gov/ojs/ojsforms/rulesconfidentiality.pdf,Records Request Info -https://virginiabeach.gov/whats-up/whats-new/commonwealth-v-jasper-miles-wynn-60-years-to-serve-for-shooting-at-police-following-7-eleven-robbery,Not Criminal Justice Related -http://www.ryepolice.us/chief/attachment/chiefphoto,Poor Data Source -https://police.greenvillesc.gov/faq.aspx?qid=213,Not Criminal Justice Related -https://www.stpaul.gov/news/mayor-melvin-carter-statement-saint-paul-police-officer-involved-shooting-midway-neighborhood,Media Bulletins -http://www.lafayettepolice.us/753/process-overview,Not Criminal Justice Related -https://alpha.austin.gov/en/police-oversight/formal-complaint-responsibility-to-know-and-comply-and-ot/,Poor Data Source -https://www.foxcrossingwi.gov/departments/police-department/resources/tmpd-burg-prev-pers-safe-home-svc-safe/,Poor Data Source -https://www.memphistn.gov/government/city-court-clerk/ticket-prices/ridgeway-police-station/,Poor Data Source -https://www.coppelltx.gov/417/investigations-division,Contact Info & Agency Meta -https://delcopa.gov/ich/resources/covid19/businesspresentation.html,Poor Data Source -https://delcopa.gov/planning/pubs/osrgp/vol-iii_chapter3glenprovidencecountypark.pdf,Not Criminal Justice Related -https://spdblotter.seattle.gov/2017/06/07/police-seize-two-guns-arrest-wanted-felon/,Media Bulletins -https://chandlerazpd.gov/2019/12/chandler-police-investigate-animal-cruelty/,Media Bulletins -https://www.hayward-ca.gov/discover/news/apr21/police-blotter-april-18-24-2021,Annual & Monthly Reports -https://spdblotter.seattle.gov/2022/07/18/police-arrest-security-guard-in-capitol-hill-after-he-fights-stabs-trespasser/,Media Bulletins -https://www.hayward-ca.gov/police-department/crime-prevention/hate-crimes,Contact Info & Agency Meta -https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0487/,Poor Data Source -http://police.portlandmaine.gov/596/winter-operations,Not Criminal Justice Related -http://www.ryepolice.us/logs/police-logs-12-15-21-12-21-21,Daily Activity Logs -https://roxburynj.us/721/how-do-i-obtain-a-police-report,Records Request Info -https://www.milpitas.gov/milpitas/departments/police/department-training/,Poor Data Source -https://detroitmi.gov/departments/police-department/dpd-surveillance-technology-reports-documents,List of Data Sources -https://www.sandiego.gov/police/services/child-abuse,Resources -https://www.southbendin.gov/transparency-and-performance/police-transparency-hub/sbpd-compliments-and-complaints-data/,Complaints & Misconduct -https://barnegatpolice.us/download/codis-dna-refusal-form/,Not Criminal Justice Related -https://www.antioch.il.gov/wpfb-file/15th-annual-cop-on-a-rooftop-pdf-5/,Poor Data Source -https://champaignil.gov/2015/05/01/champaign-police-arrest-armed-robbery-suspect/,Media Bulletins -https://police.greenvillesc.gov/430/historical-archives,List of Data Sources -https://delcopa.gov/vote/pdf/2020/brdmeetinglegalnotice_09172020.pdf,Not Criminal Justice Related -https://delcopa.gov/publicrelations/releases/2019/chronicdiseaseselfmanagement.html,Not Criminal Justice Related -https://www.mass.gov/doc/2014-reading-list-for-brookline-police-sergeant-lieutenant-and-captain-promotional-examinations/download,Not Criminal Justice Related -https://detroitmi.gov/departments/police-department/detroit-rewards-tv/about-rewards-tv,Not Criminal Justice Related -https://delcopa.gov/planning/pdf/demodata/populationchange2010-2020.pdf,Poor Data Source -https://council.seattle.gov/2012/02/27/seattle-police-department-is-hiring-police-officers/,Media Bulletins -https://police.greenvillesc.gov/faq.aspx?qid=131,Resources -https://ose.louisiana.gov/event/police-lieutenant-44/,Poor Data Source -http://police.portlandmaine.gov/278/safety-tips,Not Criminal Justice Related -https://police.greenvillesc.gov/faq.aspx?qid=591,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/traffic-fatality-shoreline-dr-and-710-fwy/,Media Bulletins -http://www.longbeach.gov/police/press-releases/dui-enforcement-operations-planned-this-weekend-2-/,Media Bulletins -http://beaverpolice.us/wp-sitemap-posts-ai1ec_event-1.xml,List of Data Sources -https://coloradosprings.gov/police-department/article/news/homicide-investigation-2001-e-platte-ave,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality-21-/,Media Bulletins -https://oceancitymd.gov/oc/ocean-city-police-investigating-fatal-pedestrian-collision/,Media Bulletins -https://www.sandiego.gov/department-document/police-chief-recruitment-process-update-august-22-2017,Training & Hiring Info -https://www.arlingtontx.gov/news/my_arlington_t_x/news_archive/2016_archived_news/december_2016/volunteer_for_arlington_police_department_s_dog,Not Criminal Justice Related -https://alpha.austin.gov/en/police-oversight/notice-of-complaint-related-to-2022-0721/,Poor Data Source -http://www.longbeach.gov/police/press-releases/officer-involved-shooting3/,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality---lakewood-blvd-and-sb-405-fwy/,Media Bulletins -https://www.wakeforestnc.gov/police/public-information,Resources -https://www.arlingtontx.gov/news/my_arlington_t_x/news_archive/2017_archived_news/march_2017/february_2017_arlington_police_community,Media Bulletins -http://www.tampa.gov/news/tampa-police-investigate-shooting-genesee-st-76411,Media Bulletins -https://cityofpowell.us/powell-police-officer-audrey-wilt-named-2022-cit-officer-of-the-year-by-delaware-morrow-mental-health-recovery-services-board/,Media Bulletins -https://www.sandiego.gov/police/about/chief,Personnel Records -https://southamptontownnypolice.gov/1624/public-information,Not Criminal Justice Related -https://www.somervillema.gov/policebodycameras,Media Bulletins -https://www.richmondindiana.gov/news/chief-of-police-michael-britt-officer-seara-burton,Media Bulletins -https://www.ci.san-bernardino.ca.us/city_hall/police_department/department_goals/improve_quality_of_life,Crime Statistics -http://www.longbeach.gov/police/press-releases/officer-involved-shooting-6-/,Media Bulletins -https://detroitmi.gov/es/departments/departamento-de-agua-y-alcantarillado/atencion-al-cliente/que-hacer-si-tiene-una-copia-de-seguridad-de-alcantarillado,Not Criminal Justice Related -https://bouldercolorado.gov/events/police-oversight-panel-0,Poor Data Source -https://delcopa.gov/pdf/animalshelterrfpfinal.pdf,Not Criminal Justice Related -https://www.scribner-ne.gov/wp-content/uploads/helicopter-3.jpg,Poor Data Source -https://www.montgomeryohio.gov/police-resources/,Poor Data Source -https://www.southamptontownnypolice.gov/878/deer-protection-and-management-advisory-,Not Criminal Justice Related -https://www.ci.bellefontaine.oh.us/announcements/bellefontaine-police-accepting-lateral-transfer-applicants,Training & Hiring Info -https://www.lehi-ut.gov/departments/police/lehi-police-ride-along/,Misc Police Activity -https://delcopa.gov/council/2015minutes/081215minutes.pdf,Not Criminal Justice Related -https://hilliardohio.gov/coffee-with-a-cop-2/,Poor Data Source -https://southamptontownnypolice.gov/335/services-programs,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/arrest-made-in-murder-case-2-/,Media Bulletins -https://bouldercolorado.gov/police-master-plan-process-subcommittee,Policies & Contracts -https://www.naperville.il.us/2022-news-articles/naperville-police-investigate-personal-injury-hit-and-run-crash/,Media Bulletins -https://cityofyuma.colorado.gov/departments/emergency-services/police-department,List of Data Sources -http://police.byram-ms.us/wpt_slider/sro/,Poor Data Source -https://www.lincolnca.gov/en/living-here/police-department.aspx?_mid_=484,Resources -https://alpha.austin.gov/en/police-oversight/formal-complaint-impartial-attitude-courtesy-department-issued-bwc/,Poor Data Source -https://covington.va.us/city-government/city-departments/police/police-patrol/,Misc Police Activity -https://www.desmoineswa.gov/departments/police/forms_documents,Resources -https://alpha.austin.gov/en/health-safety/accountability-and-transparency-in-policing/police-feedback-and-records/bwc-dmav-vendors-glossary-and-additional-information/,Poor Data Source -http://lafayettepolice.us/1585/concessions-nearby-restaurants,Not Criminal Justice Related -https://www.rentonwa.gov/city_hall/police/patrol_operations/false_alarm_reduction_program,Misc Police Activity -https://spdblotter.seattle.gov/2014/10/20/police-investigating-collision-between-vehicle-and-pedestrian-in-northgate-area/,Media Bulletins -https://champaignil.gov/2014/08/11/champaign-police-investigate-domestic-battery-shooting/,Media Bulletins -https://www.mass.gov/doc/attachment-a-police-departments/download,Poor Data Source -https://delcopa.gov/ems/pdfdocs/initialcertificationeducationtesting/emsinstructorchecklist.doc,Not Criminal Justice Related -https://www.mass.gov/info-details/audit-of-the-massachusetts-rehabilitation-commission-objectives-scope-and-methodology,Media Bulletins -https://cheswold.delaware.gov/cheswold-police-department-crime-statistics/may-19-activity-report/,Annual & Monthly Reports -https://delcopa.gov/publicrelations/releases/2021/primary_electiondayguide.html,Not Criminal Justice Related -https://www.memphistn.gov/news/category/police/,Media Bulletins -http://police.byram-ms.us/contact-us/recordsrequest/,Records Request Info -https://delcopa.gov/clerk/boardpositions/sustainability.html,Poor Data Source -https://delcopa.gov/publicrelations/releases/2021/healthyfortheholidays.html,Not Criminal Justice Related -https://pharr-tx.gov/animated-columns/pharr-police/,Poor Data Source -http://lafayettepolice.us/1672/internships,Training & Hiring Info -http://www.lafayettepolice.us/faq.aspx?qid=122,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/traffic-fatality-4-/,Media Bulletins -https://rexburg.us/unified-police-locate-person-of-interest-in-suspicious-death-in-taylorsville/,Poor Data Source -https://www.pleasantprairiewi.gov/departments/police/news/police_and_fire___rescue_news_archive/2021_news_releases/w_i_l_e_a_g_re-_accreditation,Media Bulletins -https://www.mass.gov/doc/semexant-jeffrey-v-boston-police-department-52121/download,Court Cases -https://www.mass.gov/doc/beauregard-david-v-city-of-chicopee-4920/download,Court Cases -http://www.longbeach.gov/police/about-the-lbpd/,Contact Info & Agency Meta -https://www.wakeforestnc.gov/news/joyner-park-restrooms-destroyed-vandals-police-seek-public%e2%80%99s-help-identifying-culprits,Media Bulletins -https://detroitmi.gov/departments/law-department/submit-foia-request/non-routine-or-complex-police-foia-request,Poor Data Source -https://townofeaton.colorado.gov/departments/police-department,Resources -https://delcopa.gov/publicrelations/releases/2021/wellnesscenteropening.html,Not Criminal Justice Related -https://www.antioch.il.gov/wpfb-file/04-09-13-police-pension-agenda-pdf/,Poor Data Source -https://www.jacksonms.gov/meetings/personnel-management-administration-police-and-fire/,Resources -https://sf.gov/departments/department-police-accountability,Resources -https://alpha.austin.gov/es/police-oversight/formal-complaint-obedience-to-orders/,Poor Data Source -https://www.southamptontownnypolice.gov/953/lyzon-hat-shop,Not Criminal Justice Related -https://alpha.austin.gov/en/police-oversight/formal-complaint-impartial-attitude-and-courtesy-4/,Poor Data Source -http://www.longbeach.gov/police/press-releases/murder-37-/,Media Bulletins -https://www.belen-nm.gov/wp-content/uploads/2021/01/120193874_3263039293803054_6835373498020090735_o-copy.jpg,Poor Data Source -https://www.coppelltx.gov/faq.aspx?qid=232,Resources -https://spdblotter.seattle.gov/2017/12/05/police-need-your-help-identifying-man-who-robbed-two-lower-queen-anne-businesses/,Media Bulletins -https://www.mass.gov/info-details/oig-annual-report-2019-division-of-state-police-oversight,Annual & Monthly Reports -https://www.hayward-ca.gov/police-department/public-services/crisis-intervention,Resources -http://www.longbeach.gov/police/press-releases/celebrate-the-4th-of-july-holiday-responsibly/,Media Bulletins -https://www.pinevillenc.gov/government/departments/police/join-ppd/,Training & Hiring Info -https://delcopa.gov/sustainability/commission/otherpdfs/sustcommmtg_slidedeck_2021-8-19.pdf,Poor Data Source -https://coloradosprings.gov/police-department/page/alternate-education-program,Resources -https://www.tukwilawa.gov/departments/police/command-staff-bios/pd-boyd-kraig-bio-pic/,Media Bulletins -https://coloradosprings.gov/police-department/article/news/adrian-vasquez-serve-interim-police-chief,Media Bulletins -https://www.gurnee.il.us/government/departments/police-department/community-involvement/gurnee-citizen-police-academy/gurnee-citizen-police-academy/week-6,Training & Hiring Info -https://delcopa.gov/council/2018minutes/050218minutes.pdf,Not Criminal Justice Related -https://brookfieldil.gov/brookfields-police-and-fire-chiefs-safety-talk-for-seniors-9-19-19/mtc-2019-poster-3/,Poor Data Source -https://alpha.austin.gov/police-oversight/joint-report-analysis-of-apd-racial-profiling-data/,Poor Data Source -https://delcopa.gov/publicrelations/releases/2020/delcocares_sept1.html,Not Criminal Justice Related -https://www.milpitas.gov/milpitas/departments/police/community-relations/citizen-volunteer-and-explorer-applications/,Poor Data Source -https://www.mass.gov/news/governor-baker-signs-police-reform-legislation,Poor Data Source -https://frederica.delaware.gov/tag/police-officer/,Training & Hiring Info -https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0250/,Poor Data Source -https://alpha.austin.gov/police-oversight/formal-complaint-obedience-to-orders-insubordination/,Poor Data Source -http://www.tampa.gov/fire-and-police-pension/info/meeting-notices,List of Data Sources -http://www.longbeach.gov/police/contact-us/,Contact Info & Agency Meta -http://www.longbeach.gov/police/press-releases/dui-checkpoint-nets-two-arrests-3-/,Media Bulletins -https://dagsboro.delaware.gov/police-department/police-department/nick-disciullo-promotion-2019-2/,Poor Data Source -https://www.sandiego.gov/department-document/police-arrest-suspect-encanto-homicide,Media Bulletins -https://wildwoodpolice-fl.gov/attempt_to_identify_type-sitemap.xml,Poor Data Source -https://police.greenvillesc.gov/faq.aspx?qid=359,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/critical-missing-juvenile---michael-veal/,Media Bulletins -https://delcopa.gov/vote/votebymail.html,Not Criminal Justice Related -https://www.dps.nm.gov/blog/2021/02/10/update-cancel-amber-alert-albuquerque-police-department/,Media Bulletins -https://oceancitymd.gov/oc/ocean-city-police-arrest-two-individuals-after-a-serious-assault/,Media Bulletins -https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0674/,Poor Data Source -https://delcopa.gov/planning/pdf/agendas/2020/agenda202010.pdf,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/traffic-fatality-pico-and-pier-c/,Media Bulletins -https://townofspringfield.colorado.gov/departments/police-department/winter-vehicle-safety-kits,Poor Data Source -http://www.longbeach.gov/police/press-releases/traffic-fatality-7-/,Media Bulletins -https://ose.louisiana.gov/event/police-corporal-14/,Poor Data Source -https://delcopa.gov/planning/pdf/currentprojects/rosetreeplayoverallsiteloc.pdf,Not Criminal Justice Related -https://delcopa.gov/publicrelations/releases/2022/www.vaccines.gov,Poor Data Source -http://www.longbeach.gov/police/press-releases/murder-ruled-self-defense/,Media Bulletins -http://www.lafayettepolice.us/1/home,Poor Data Source -https://beaumonttexas.gov/beaumont-police-arrest-port-arthur-man-for-murder/,Media Bulletins -https://alpha.austin.gov/es/police-oversight/formal-complaint-impartial-attitude-and-courtesy-28/,Poor Data Source -https://rexburg.us/police-man-sexually-abused-hairstylist-in-ogden-barbershop/,Media Bulletins -http://www.longbeach.gov/police/press-releases/two-suspects-arrested-in-murder-case/,Media Bulletins -http://www.longbeach.gov/police/press-releases/dui-drivers-license-checkpoint-planned-this-weekend-1-/,Media Bulletins -https://delcopa.gov/arpa/pdf/20220731annualarpareportfiled7-29-22final.pdf,Annual & Monthly Reports -https://brookfieldil.gov/publication/072512-july-25-2012-brookfield-police-pension-board/,Poor Data Source -https://southamptontownnypolice.gov/1370/2020-budgets,List of Data Sources -http://www.longbeach.gov/police/press-releases/protect-yourself-from-fraud-this-holiday-season/,Media Bulletins -https://delcopa.gov/courts/pdf/emergencyjudicialorders/fifthemergencyorderextendingearlyparolereviewandsuchpossiblerelease.pdf,Court Cases -http://www.longbeach.gov/police/press-releases/juvenile-investigations-operation-results-in-6-arrests/,Media Bulletins -https://barnegatpolice.us/barnegat-police-department-2/professional-standards/,Policies & Contracts -http://www.longbeach.gov/police/press-releases/charges-filed-in-attempt-murder-case/,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality27/,Media Bulletins -https://www.ci.neenah.wi.us/departments/police/police-annual-reports/survey-results/,List of Data Sources -http://www.longbeach.gov/press-releases/robert-g--luna-appointed-police-chief-of-long-beach/,Media Bulletins -http://www.longbeach.gov/police/press-releases/long-beach-police-are-asking-for-the-public-s-help/,Media Bulletins -http://www.longbeach.gov/police/press-releases/officer-involved-shooting-2800-block-15th/,Media Bulletins -http://www.longbeach.gov/police/press-releases/dui-checkpoint-results/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-44-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/identity-theft-suspect-charged-with-11-felony-counts/,Media Bulletins -http://www.longbeach.gov/police/press-releases/dui-saturation-patrol-proves-effective-2-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/dui-saturation-patrol-proves-effective-7-/,Media Bulletins -https://springfield-or.gov/event/springfield-police-advisory-committee-meeting/,Poor Data Source -http://www.longbeach.gov/police/press-releases/traffic-fatality7/,Media Bulletins -http://www.longbeach.gov/police/press-releases/national-night-out-set-for-august-4th/,Media Bulletins -http://www.longbeach.gov/police/press-releases/human-trafficking-charges-filed-and-additional-victims-sought/,Media Bulletins -http://www.longbeach.gov/police/press-releases/police---fire-memorial-ceremony-1-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/dui-drivers-license-checkpoint-planned/,Media Bulletins -https://coloradosprings.gov/police-department/webform/community-outreach-request,Resources -http://www.longbeach.gov/police/press-releases/traffic-fatality-pch-and-studebaker-rd/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-6-/,Media Bulletins -https://ose.louisiana.gov/event/police-records-clerk-3/,Poor Data Source diff --git a/hugging_face/example/train-urls.csv b/hugging_face/example/train-urls.csv deleted file mode 100644 index 5354a4fe..00000000 --- a/hugging_face/example/train-urls.csv +++ /dev/null @@ -1,2533 +0,0 @@ -url,label -https://delcopa.gov/council/2016minutes/101216minutes.pdf,Policies & Contracts -https://www.mass.gov/doc/coping-with-overdose-fatalities/download,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/murder-7-/,Media Bulletins -https://www.lynchburgvapolice.gov/wp-content/uploads/2021/05/img_1545.jpg,Poor Data Source -http://police.portlandmaine.gov/526/permit-license-fees,Resources -https://www.arlingtontx.gov/news/my_arlington_t_x/news_archive/2012_and_prior_archived_news/police_graduate_18_recruits,Personnel Records -https://police.greenvillesc.gov/1996/getting-here-parking,Contact Info & Agency Meta -http://lafayettepolice.us/3386/donate,Resources -http://www.lafayettepolice.us/2111/youth-classes-and-weekend-workshops,Misc Police Activity -https://norfolkne.gov/assets/site/documentcentral/police/archived-arrests/2020-arrests/may-arrests.pdf,Arrest Records -http://www.longbeach.gov/police/press-releases/murder-18-/,Media Bulletins -https://www.edmondswa.gov/government/departments/police_department/anonymous_tip,Contact Info & Agency Meta -https://www.southamptontownnypolice.gov/1698/calissa-restaurant,Not Criminal Justice Related -https://ose.louisiana.gov/event/police-communications-officer-i-5/,Poor Data Source -https://www.mass.gov/doc/essential-functions-for-municipal-police-officers/download,Policies & Contracts -https://www.jacksonms.gov/documents/mayoral-executive-order-amending-the-city-of-jackson-police-departments-use-of-force-policy/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-600-block-of-e-9th-street/,Media Bulletins -https://www.dps.arkansas.gov/law-enforcement/arkansas-state-police/divisions/highway-patrol/troop-c-commander/,Personnel Records -https://www.roseville.ca.us/government/departments/police_department/community_services/my_neighborhood_officer/neighborhood_officer_program_information,Misc Police Activity -https://www.pleasantprairiewi.gov/departments/police/news/police_and_fire___rescue_news_archive/2021_news_releases/arrest_leads_to_officer_injury,Media Bulletins -https://cityofmebanenc.gov/documents/police-officer-2/police-officer-updated-2-21-2022/,Resources -https://www.eutawal.gov/policeman/,Poor Data Source -http://www.longbeach.gov/police/press-releases/murder-investigation4/,Media Bulletins -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/090921blotter.pdf,Dispatch Logs -https://delcopa.gov/planning/programsandinitiatives/heritagecommission/historyofhcpreservationawards.pdf,Not Criminal Justice Related -https://www.antioch.il.gov/wpfb-file/12-13-11-police-pension-fund-agenda-pdf/,Poor Data Source -https://www.bedminster.us/government/police/history,Contact Info & Agency Meta -https://www.ci.neenah.wi.us/departments/police/neighborhood-policing/,Policies & Contracts -http://www.lafayettepolice.us/1635/learning-adventures-camps-ages-5-7,Not Criminal Justice Related -https://www.sheridanwy.gov/faq_s/police_department,Contact Info & Agency Meta -https://www.sandyspringsgapolice.gov/category/uncategorized/,Poor Data Source -https://mukilteowa.gov/news/mukilteo-seeks-new-police-chief/,Personnel Records -https://www.foxcrossingwi.gov/departments/police-department/community-policing/tricom/,Poor Data Source -https://www.edmondswa.gov/government/departments/police_department/public_information/can_you_i_d_me_,Wanted Persons -https://www.lynchburgvapolice.gov/traffic-safety-information/,List of Data Sources -http://chico.ca.us/post/police-community-advisory-board-pcab,Media Bulletins -http://www.lafayettepolice.us/488/swimming-lessons,Not Criminal Justice Related -https://alpha.austin.gov/police-oversight/written-reprimand-of-officer-jason-goodman/,Complaints & Misconduct -https://www.arlingtontx.gov/news/my_arlington_t_x/news_archive/2013_archived_news/december_2013/arlington_police_remind_safe_holiday_season,Media Bulletins -https://www.antioch.il.gov/police-department/,List of Data Sources -https://decaturil.gov/decatur-police-department-to-host-coffee-with-a-cop-on-august-8-2018/,Misc Police Activity -https://www.newcastlewa.gov/departments/police/solicitors,Not Criminal Justice Related -https://www.hayward-ca.gov/discover/news/mar21/hayward-police-departments-community-academy-goes-virtual-april,Misc Police Activity -https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/summary/031422summary.pdf,Daily Activity Logs -https://alpha.austin.gov/police-oversight/formal-complaint-impartial-attitude-and-courtesy-and-other-policy-violations-4/,Complaints & Misconduct -https://alpha.austin.gov/es/police-oversight/2020-06-30-7/,Complaints & Misconduct -https://spdblotter.seattle.gov/2013/05/02/man-leads-police-on-chase-in-stolen-patrol-car-after-attacking-bus-riders-officers/,Media Bulletins -http://www.ryepolice.us/announcements/dmv-phone-scam,Media Bulletins -https://www.mass.gov/doc/2021-foxborough-police-sergeant-sole-assessment-center-examination-in-title-employment-verification-form/download,Training & Hiring Info -https://www.pleasantprairiewi.gov/news/2017_news/1_20_2017___shop_with_a_cop,Media Bulletins -https://www.bedminster.us/government/police/tips,Contact Info & Agency Meta -https://champaignil.gov/2019/02/20/champaign-police-investigating-tuesday-night-shooting/,Misc Police Activity -https://champaignil.gov/2012/04/05/champaign-police-officers-cook-with-%e2%80%9ckids-in-the-kitchen%e2%80%9d/,Media Bulletins -https://www.gurnee.il.us/government/departments/police-department/community-involvement/parking,Policies & Contracts -https://www.ci.auburn.in.us/wp-content/uploads/2019/08/police-rad-class-2.jpg,Poor Data Source -https://delcopa.gov/treasurer/pdf/2021reassessmentvalues/25.pdf,Not Criminal Justice Related -https://delcopa.gov/departments/liveworkplay.html,Not Criminal Justice Related -https://www.stcharlesil.gov/events/public-meetings/police-pension-board/10889,Policies & Contracts -https://coloradosprings.gov/police-department/article/news/man-posing-realtor-arrested,Media Bulletins -https://police.greenvillesc.gov/160/services,Resources -https://cheswold.delaware.gov/cheswold-police-department-policy-and-procedure-manual/snow-energency-plan/,Policies & Contracts -http://boro.dormont.pa.us/labor-agreements/police_union_contract_-_extended/,Policies & Contracts -https://coloradosprings.gov/police-department/article/news/motorcyclist-identified-austin-bluffs,Media Bulletins -https://www.osc.state.ny.us/state-agencies/payroll-bulletins/state-agencies/1923-police-benevolent-association-new-york-state-inc-pbanys-dues-increase,Misc Police Activity -https://www.arlingtontx.gov/city_hall/departments/police/recruiting/internships,Resources -https://www.coppelltx.gov/faq.aspx?qid=351,Not Criminal Justice Related -https://cityofpowell.us/police-agency/traffic-surveys/traffic-survey-report-1-3-18/,Misc Police Activity -https://www.bristolri.gov/departments/police/public-safety-services/police-detail-request/,Resources -https://takomaparkmd.gov/government/police/crime-prevention/burglary-prevention/,Media Bulletins -https://fenwickisland.delaware.gov/comprehensive-plan/town-of-fenwick-island-fi-comp-plan_cleancopy_version6/,Not Criminal Justice Related -https://delcopa.gov/employment/jobpostings/deputydirector_workforcedevelopment.html,Not Criminal Justice Related -https://alpha.austin.gov/en/police-oversight/formal-complaint-purpose-and-scope-24/,Poor Data Source -https://coloradosprings.gov/police-department/article/news/cspd-asks-communitys-help-fatal-crash,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality-22-/,Media Bulletins -https://delcopa.gov/publicrelations/releases/2021/covidtesting_darbyfeb3.html,Not Criminal Justice Related -https://raleighnc.gov/safety/police-administrative-services-division,Resources -https://coloradosprings.gov/police-department/article/news/cspd-conduct-abandoned-or-out-compliance,Media Bulletins -https://es.carpinteriaca.gov/wp-content/uploads/2022/11/palms-copy-scaled.jpg,Poor Data Source -https://coloradosprings.gov/police-department/article/news/i-25-traffic-safety-deployment-after-stop,Media Bulletins -https://dccouncil.gov/judiciary-public-safety/copy-of-ag0-fy-2019-proposed-schedule-a-two-position-changes-1/,Annual & Monthly Reports -https://barnegatpolice.us/warrant-arrest-2/,Arrest Records -https://www.mass.gov/doc/606-cmr-1500-clean-copy/download,Not Criminal Justice Related -https://training.detroitmi.gov/bn/departments/paulaisa-baibhaaga/detroit-police-department-shield-program/paraogaraama-ebam-saebaa,Poor Data Source -https://www.mass.gov/info-details/audit-of-the-massachusetts-commission-on-the-status-of-women-objectives-scope-and-methodology,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/pursuit-with-traffic-fatality---3rd-street-and-temple-avenue/,Media Bulletins -http://www.ryepolice.us/logs/police-logs-for-6-3-20-6-9-20,Daily Activity Logs -http://www.ryepolice.us/logs/police-logs-for-11216-11816,Daily Activity Logs -https://delcopa.gov/sheriff/pdf/atf_letter.pdf,Media Bulletins -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/arrests/010322arrests.pdf,Arrest Records -https://www.sandiego.gov/department-document/police-investigate-homicide-lincoln-park-0,Media Bulletins -https://alpha.austin.gov/es/police-oversight/2020-08-26-2/,Poor Data Source -https://wyoming.delaware.gov/police-department/irma/,Poor Data Source -http://www.princetoniowa.us/chapter-30---police-department.html,Resources -https://rexburg.us/police-identify-man-who-died-in-shooting-at-taylorsville-apartment-complex/,Poor Data Source -https://bouldercolorado.gov/news/boulder-police-searching-additional-victims-witnesses-investigation,Media Bulletins -https://www.villageofallouezwi.gov/depts/police/prescription-drug-collections/,Resources -https://www.southamptontownnypolice.gov/439/southampton-shinnecock-hills-tuckahoe-ca,Resources -https://cityofpowell.us/powell-police-officer-audrey-wilt-named-2022-cit-officer-of-the-year-by-delaware-morrow-mental-health-recovery-services-board/hrytzikwilt22citofficeroftheyear/,Poor Data Source -https://southamptontownnypolice.gov/1702/lake-agawam--injection-well-prb-sh-villa,Not Criminal Justice Related -https://www.mass.gov/event/jlmc-17-6105-watertown-police-association-3a-hearing-open-meeting-notice-05-09-2018-2018-05-09t100000-0400-2018-05-09t170000-0400,Misc Police Activity -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/090721blotter.pdf,Calls for Service -https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/blotter/012222blotter.pdf,Poor Data Source -https://www.coppelltx.gov/939/events-activities,Not Criminal Justice Related -https://alpha.austin.gov/es/police-oversight/temporary-suspension-of-officer-william-norrell/,Poor Data Source -https://alpha.austin.gov/police-oversight/2020-08-17-9/,Poor Data Source -https://bouldercolorado.gov/news/police-chief-maris-herold-op-ed-police-reform,Media Bulletins -https://ose.louisiana.gov/event/police-communications-officer-20/,Poor Data Source -https://www.stpaul.gov/departments/police/administration-office-chief/community-engagement-division/community-partnerships,Contact Info & Agency Meta -https://www.woburnma.gov/government/recreation/spring-summer-brochure-2018-final-copy/,Not Criminal Justice Related -https://southamptontownnypolice.gov/faq.aspx?qid=270,Contact Info & Agency Meta -https://brooklynwi.gov/open-house-brooklyn-police-dane-county-sheriffs-office-april-8-at-6pm-or-april-9-at-6pm-at-community-bldg/,Poor Data Source -https://alpha.austin.gov/en/police-oversight/documents-regarding-the-use-of-racial-profiling-in-policin/,Poor Data Source -https://ridgelandsc.gov/police-department/daily-arrest-reports-may,Arrest Records -https://www.mass.gov/doc/maldenpolicesergeant3554rtf/download,Poor Data Source -https://spdblotter.seattle.gov/2018/05/21/detective-cookies-urban-youth-chess-club-announces-kids-vs-cops-chess-rumble-tournament/,Misc Police Activity -https://alpha.austin.gov/en/police-oversight/notice-of-complaint-related-to-2022-0439/,Poor Data Source -https://delcopa.gov/planning/programsandinitiatives/commissionsandtaskforces.html,Contact Info & Agency Meta -https://coloradosprings.gov/police-department/page/cases-interest-randy-bishop,Officer Involved Shootings -https://www.wakeforestnc.gov/news/police-department-turkey-drive-continues-through-november-20,Media Bulletins -https://delcopa.gov/row/pdf/2020/informationforcouplesgettingmarriedform.pdf,Not Criminal Justice Related -https://coloradosprings.gov/police-department/article/news/traffic-fatality-3500-block-austin-bluffs,Media Bulletins -https://delcopa.gov/courts/pdf/mdjlistmuni01jan2018.pdf,Contact Info & Agency Meta -https://www.mooresville.in.gov/event/police-commission-3/,Poor Data Source -https://delcopa.gov/planning/pdf/demodata/minoritypopulation2020map.pdf,Not Criminal Justice Related -http://lafayettepolice.us/208/police-officer-lateral-entry-program,Training & Hiring Info -https://www.pleasantprairiewi.gov/news/2016_news/shop_with_a_cop__firefighter,Misc Police Activity -https://delcopa.gov/health/news/dchdtorelocatecovid19vaccinationclinics.html,Not Criminal Justice Related -https://spdblotter.seattle.gov/2018/06/01/seattle-police-officer-charged-with-assault/,Poor Data Source -https://delcopa.gov/meo/careers/forensicinvestigator.html,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/motorcycle-safety-operation-proves-effective/,Media Bulletins -https://council.seattle.gov/2011/12/16/justice-department-findings-on-seattle-police/,Poor Data Source -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/summary/110221summary.pdf,Dispatch Logs -https://www.mass.gov/doc/jlm-17-5884-city-of-quincy-and-quincy-police-patrol-officers-association-february-8-2019/download,Policies & Contracts -https://www.mass.gov/doc/2022-tewksbury-police-lieutenant-sole-assessment-employment-verification-form/download,Training & Hiring Info -https://www.newcastlewa.gov/departments/police/safe_place_program,Resources -https://www.roseville.ca.us/government/departments/police_department/crime_log/crime_log_feb_15_-_feb_28__2020,Crime Maps & Reports -https://springfield-or.gov/event/springfield-police-advisory-committee-spac-19/,Poor Data Source -https://delcopa.gov/departments/history.html,Not Criminal Justice Related -https://www.stcharlesil.gov/events/public-meetings/2018-01-08-230000/regular-meeting-board-fire-and-police-commissioners,Poor Data Source -https://www.mass.gov/doc/christine-kennedy-v-city-of-chicopee-school-dept/download,Court Cases -https://delcopa.gov/publicrelations/releases/2019/passportmonth.html,Not Criminal Justice Related -https://detroitmi.gov/departments/police-department/detroit-police-department-office-civil-rights/definitions-consent-decree,Policies & Contracts -https://delcopa.gov/publicrelations/releases/2020/delcoraterminated2.html,Not Criminal Justice Related -https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0376-3/,Complaints & Misconduct -http://www.lafayettepolice.us/152/animal-control,Contact Info & Agency Meta -http://www.longbeach.gov/police/press-releases/murder-2300-blk-spaulding/,Poor Data Source -https://police.greenvillesc.gov/faq.aspx?qid=443,Not Criminal Justice Related -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/112821blotter.pdf,Dispatch Logs -http://www.lafayettepolice.us/2338/housing,Not Criminal Justice Related -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/051521blotter.pdf,Dispatch Logs -https://www.mass.gov/doc/jlm-13-2733-city-of-beverly-and-beverly-police-superiors-association-july-29-2015/download,Policies & Contracts -https://townofnederland.colorado.gov/police,Contact Info & Agency Meta -http://www.lafayettepolice.us/296/compliments-concerns,Poor Data Source -http://www.longbeach.gov/police/press-releases/dui-saturation-patrol-results-1-/,Media Bulletins -https://chandlerazpd.gov/police-facilities/desert-breeze-substation/,Contact Info & Agency Meta -https://www.pleasantprairiewi.gov/departments/police/news/police_and_fire___rescue_news_archive/2019_news_releases/police_arrest_three_zion_men_in_kidnapping_event,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder---6400-block-of-coronado-avenue/,Media Bulletins -https://www.townofhamburgny.gov/citizens-police-academy/,Training & Hiring Info -https://delcopa.gov/vote/pdf/2022/p2022-write-in-cumulation-request.pdf,Not Criminal Justice Related -https://www.roseville.ca.us/government/departments/police_department/crime_log/crime_log_oct_03_-_oct_16__2020,Crime Maps & Reports -https://www.clarkstown.gov/police/child-safety-seats/,Media Bulletins -https://detroitmi.gov/departments/police-department/abandoned-vehicle,Policies & Contracts -http://www.lafayettepolice.us/1879/water-tips,Not Criminal Justice Related -https://springfield-or.gov/copy-of-springfield-police-seeking-community-input-via-online-survey/,Poor Data Source -https://hollister.ca.gov/government/city-departments/police/social-networking/,Contact Info & Agency Meta -https://www.antioch.il.gov/wpfb-file/03-10-17-police-and-fire-agenda-pdf-3/,Poor Data Source -https://www.mass.gov/doc/anderson-deborah-v-boston-police-department-71510/download,Court Cases -https://spdblotter.seattle.gov/2012/08/28/two-arrested-for-trying-to-pimp-undercover-cops-at-westlake/,Media Bulletins -http://www.tampa.gov/police/recruit-scholarship-program,Resources -http://lafayettepolice.us/340/guard-rail-repair-replacement,Not Criminal Justice Related -https://www.montgomeryohio.gov/topics/police-safety-programs/,Poor Data Source -https://chandlerazpd.gov/2013/07/prescription-medication-drop-boxes-now-accessible-in-all-chandler-police-stations/,Media Bulletins -https://www.mass.gov/doc/2022-dalton-police-sergeant-sole-assessment-center-examination-employment-verification-form/download,Training & Hiring Info -https://southamptontownnypolice.gov/775/county-road-39-corridor,Not Criminal Justice Related -https://www.stcharlesil.gov/news/2018/07/25/police-bike-patrol-unit-patrols-where-cars-can%e2%80%99t,Poor Data Source -https://www.mass.gov/doc/appendix-x-family-assistance-copayments-and-deductibles-0/download,Not Criminal Justice Related -https://www.elburn.il.us/event/board-of-police-commissioners-2022-09-22/,Poor Data Source -https://www.coppelltx.gov/faq.aspx?qid=142,Not Criminal Justice Related -https://www.montebelloca.gov/departments/police/divisions/patrol/district_policing,Contact Info & Agency Meta -https://www.mass.gov/doc/randolph-covered-police-firefighterpdf/download,Poor Data Source -https://brookfieldil.gov/village-manager-selects-new-police-chief/petrak-press-release/,Media Bulletins -https://delcopa.gov/courts/judges/pileggi.html,Poor Data Source -https://pittsburghpa.gov/files/police/orders/ch4/43-10.01-juvenile-policy-legal-mandates-regarding-child-abuse.pdf,Poor Data Source -https://www.providenceri.gov/hr/wellness/cop-manage-anxiety-9-11/,Poor Data Source -https://spdblotter.seattle.gov/2017/01/07/police-respond-to-three-fatal-heroin-overdoses-remind-public-of-good-samaritan-law/,Media Bulletins -https://champaignil.gov/2012/05/14/police-respond-to-weapon-call-central-high-school-610-w-university-ave/,Media Bulletins -https://www.ci.plymouth.mi.us/services/police,Poor Data Source -https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0202/,Poor Data Source -https://www.rentonwa.gov/city_hall/police/police_services/special_operations,Contact Info & Agency Meta -https://alpha.austin.gov/es/police-oversight/2020-06-05-13/,Poor Data Source -https://dagsboro.delaware.gov/ngg_tag/new-police-cars/,Poor Data Source -https://norfolkne.gov/government/departments/police-division/press-releases/may-13th-press-release.html,Media Bulletins -https://www.coppelltx.gov/faq.aspx?qid=106,Not Criminal Justice Related -https://police.bixbyok.gov/faq.aspx?qid=83,Resources -https://beaumonttexas.gov/beaumont-police-arrest-3-for-aggravated-sexual-assault-aggravated-robbery-and-aggravated-kidnapping-1155-ih-10-n/,Poor Data Source -https://police.crystalmn.gov/police/services/request_a_report,Records Request Info -https://www.southamptontownnypolice.gov/608/animal-control,Not Criminal Justice Related -https://www.lomalinda-ca.gov/services/police_department/tips,Resources -https://www.mass.gov/doc/sco-pace-disenrol-scopdf/download,Not Criminal Justice Related -https://www.mass.gov/doc/unit-5-cops-salary-chart-effective-742021/download,Poor Data Source -https://www.fortworthtexas.gov/departments/police/events/police-chief-finalist,Poor Data Source -https://www.antioch.il.gov/wpfb-file/police-blotter-02-01-21-to-02-07-21-pdf/,Arrest Records -http://www.cityofpataskalaohio.gov/cop_people/tom-lee/,Not Criminal Justice Related -https://hutchinsonmn.gov/document_category/police/,Poor Data Source -https://www.mass.gov/doc/gardnerpolicesergeant2119rtf/download,Training & Hiring Info -https://www.ci.oakley.ca.us/police-accident-reports/,Accident Reports -https://delcopa.gov/jdboard/index.html,Contact Info & Agency Meta -https://barnegatpolice.us/wpdmpro-sitemap.xml,Poor Data Source -https://www.ci.san-bernardino.ca.us/city_hall/police_department/over_100_years_of_service/historical_photos,Not Criminal Justice Related -https://delcopa.gov/council/2018minutes/103118minutes.pdf,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/civilian-employee-arrested/,Media Bulletins -https://hollister.ca.gov/government/city-departments/police/incident-reports/,Resources -"https://norfolkne.gov/government/departments/police-division/press-releases/february-14,-2022-press-release.html",Media Bulletins -https://www.southamptontownnypolice.gov/faq.aspx?qid=138,Training & Hiring Info -http://www.lafayettepolice.us/714/city-website-policy,Not Criminal Justice Related -https://www.bedminster.us/government/police/vision__mission___core_values/body_camera,Poor Data Source -https://www.mass.gov/doc/tavares-bruce-v-fall-river-police-department-51707/download,Court Cases -https://delcopa.gov/vote/pdf/2021/delco-boe-meeting-notice_certification-municipal-primary-results_6-7-2021.pdf,Not Criminal Justice Related -https://delcopa.gov/sheriff/pdf/list1.pdf,Not Criminal Justice Related -http://www.lafayettepolice.us/3469/gis-zoning-maps,Resources -https://www.east-windsor.nj.us/police-athletic-league,Misc Police Activity -http://www.longbeach.gov/police/press-releases/murder2/,Media Bulletins -https://www.tukwilawa.gov/departments/police/annual-reports/pd-2004report/,Poor Data Source -https://springfield-or.gov/city/police-department/patrol/k9-team/,Contact Info & Agency Meta -https://www.stpaul.gov/departments/police/administration-office-chief/community-engagement-division/special-events-application-sppd,Not Criminal Justice Related -https://www.lynchburgvapolice.gov/wp-content/uploads/2021/06/lpd-seal-e1662580813573.png,Poor Data Source -https://alpha.austin.gov/en/health-safety/accountability-and-transparency-in-policing/police-feedback-and-records/citations-for-summary-of-policy-language-recommendations/,Poor Data Source -https://detroitmi.gov/departments/police-department/detroit-police-department-shield-program/detroit-police-shield-partners,Contact Info & Agency Meta -https://www.mass.gov/info-details/audit-of-the-office-for-refugees-and-immigrants-objectives-scope-and-methodology,Not Criminal Justice Related -https://delcopa.gov/dropbox/,Not Criminal Justice Related -https://delcopa.gov/sustainability/presentations/22/06ruthabbe.pptx,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/public-s-help-needed-in-hit-and-run-investigation/,Media Bulletins -https://takomaparkmd.gov/government/police/covid-19-info-resources/,Not Criminal Justice Related -https://www.southamptontownnypolice.gov/faq.aspx?qid=259,Not Criminal Justice Related -https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/arrests/092322arrests.pdf,Poor Data Source -http://www.lafayettepolice.us/456/special-events,Not Criminal Justice Related -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/summary/082621summary.pdf,Daily Activity Logs -https://www.mass.gov/doc/handout-for-the-may-24-2018-design-public-hearing-in-chicopee/download,Not Criminal Justice Related -https://oceancitymd.gov/oc/ocean-city-police-sergeant-retires-after-27-years-of-service/,Media Bulletins -https://delcopa.gov/sustainability/commission/meetingminutes/sustainabilitycommissionkick-offmeetingminutesoct2020.pdf,Poor Data Source -https://delcopa.gov/publicrelations/publicrelations/releases/2020/herobowlboard.html,Poor Data Source -https://www.mass.gov/doc/minutes-of-april-2019-chicopee/download,Not Criminal Justice Related -https://www.roseville.ca.us/government/departments/police_department/divisions/police_explorers,Resources -https://www.osc.state.ny.us/state-agencies/payroll-bulletins/state-police/sp-130-2010-state-police-expertise-pay,Media Bulletins -https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/summary/080822summary.pdf,Poor Data Source -https://www.antioch.il.gov/wpfb-file/10-22-13-police-and-fire-agenda-pdf-3/,Poor Data Source -https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/blotter/053022blotter.pdf,Poor Data Source -https://www.lynchburgvapolice.gov/news-updates/homicide-1100-blk-of-15th-street/,Media Bulletins -https://www.antioch.il.gov/wpfb-file/04-19-16-police-pension-agenda-pdf/,Media Bulletins -https://delcopa.gov/publicrelations/releases/2020/pdf/citizencorpsorienationfeb21.pdf,Not Criminal Justice Related -https://piedmont.ca.gov/services___departments/police/transparency_portal/training_materials,Policies & Contracts -https://police.birminghamal.gov/command-staff/lieutenant-richard-haluska/,Contact Info & Agency Meta -https://cityofgulfbreeze.us/staff/police-general/,Contact Info & Agency Meta -https://southamptontownnypolice.gov/1151/sustainability---transportation,Not Criminal Justice Related -https://spdblotter.seattle.gov/2014/07/02/ive-got-a-pistol-too-man-tells-police-before-officer-involved-shooting/,Media Bulletins -https://www.southamptontownnypolice.gov/137/town-council-office,Not Criminal Justice Related -https://spdblotter.seattle.gov/2008/10/02/seattle-police-investigate-possible-attempt-abduction/,Media Bulletins -https://sanfordfl.gov/wp-content/uploads/2020/07/police_employment.jpg,Poor Data Source -https://harrington.delaware.gov/links-forms/citizens-police-academy-flyer/,Poor Data Source -https://spdblotter.seattle.gov/2013/07/23/police-investigating-gunfire-in-rainier-beach/,Media Bulletins -https://chandlerazpd.gov/2013/01/chandler-police-explorers-host-competition-2/,Media Bulletins -https://dps.georgia.gov/job-vacancy-announcement-georgia-capitol-police-officer-four-positions-0,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-investigation6/,Media Bulletins -https://police.greenvillesc.gov/faq.aspx?qid=317,Resources -https://southamptontownnypolice.gov/722/great-east-end-cleanup---2022,Poor Data Source -http://www.ryepolice.us/parking/attachment/parkingappeal-2,Resources -https://www.roseville.ca.us/government/departments/electric_utility/about_us/building_and_renovation_copy/request_for_proposal_archived,Poor Data Source -https://www.knoxvilletn.gov/archived_news_stories/2009/knoxville_police_prepared_for_holiday_traffic,Media Bulletins -https://coloradosprings.gov/police-department/article/news/colorado-springs-police-departments-k9-zev,Media Bulletins -https://rexburg.us/police-identify-woman-killed-in-9-vehicle-crash-in-sandy/,Poor Data Source -https://beaumonttexas.gov/beaumont-police-investigating-homicide-4300-woodlawn/,Poor Data Source -https://delcopa.gov/sustainability/pdf/raise/trailplanappendixe.pdf,Poor Data Source -https://www.mass.gov/doc/chaves-david-v-boston-police-department-related-superior-court-order-42711/download,Court Cases -https://www.ci.vallejo.ca.us/our_city/departments_divisions/police_department,Contact Info & Agency Meta -https://www.mass.gov/doc/shackford-michael-v-boston-police-department-72414/download,Court Cases -https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/blotter/041422blotter.pdf,Poor Data Source -https://www.ci.san-bernardino.ca.us/city_hall/police_department/emergency_management/cert/cert_basic_training,Not Criminal Justice Related -https://beaumonttexas.gov/beaumont-police-investigating-aggravated-robbery-2568-college/,Poor Data Source -https://police.crystalmn.gov/police/community_outreach/run_for_leo,Misc Police Activity -https://wyoming.delaware.gov/wp-content/uploads/sites/33/nggallery/3rd-annual-wyoming-police-department-fishing-derby/p1010878.jpg,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/robbery-suspects-arrestd-and-charged/,Media Bulletins -https://www.huntsvilleal.gov/huntsville-police-launch-summer-slowdown-campaign/,Media Bulletins -https://ose.louisiana.gov/event/supervisor-of-police-records/,Poor Data Source -https://alpha.austin.gov/es/police-oversight/2021-03-05-7/,Poor Data Source -https://alpha.austin.gov/police-oversight/formal-complaint-follow-up-investigations/,Poor Data Source -http://www.ryepolice.us/logs/police-logs-for-4-8-20-4-15-20,Daily Activity Logs -http://www.longbeach.gov/police/press-releases/robbery-suspect-arrested-and-charges-filed/,Media Bulletins -https://delcopa.gov/ich/resources/healthclinics.html,Not Criminal Justice Related -https://www.mass.gov/doc/revocation-establishment-and-merging-of-police-promotional-eligible-lists-4/download,Policies & Contracts -https://champaignil.gov/tag/coffee-with-a-cop/,Misc Police Activity -https://coloradosprings.gov/police-department/article/news/update-attempted-homicide-4300-block,Media Bulletins -https://www.sanramon.ca.gov/our_city/departments_and_divisions/police/srpd_calendar,Poor Data Source -https://alpha.austin.gov/es/police-oversight/formal-complaint-family-violence-involving-mental-illness-and-other-policy-violations/,Poor Data Source -https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0765/,Poor Data Source -https://delcopa.gov/publicrelations/releases/2021/covid_vaccinebooster.html,Media Bulletins -https://ridgelandsc.gov/police-department/daily-crime-reports-may,Crime Maps & Reports -https://alpha.austin.gov/police-oversight/formal-complaints-de-escalation-of-potential/,Poor Data Source -https://delcopa.gov/courts/pdf/emergencyjudicialorders/fourthorderextendingstayofresidentialpropertyejectment.pdf,Court Cases -https://delcopa.gov/publicrelations/releases/2020/councilreforms.html,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/robbery-suspect-arrested---charges-filed/,Media Bulletins -https://champaignil.gov/tag/champaign-police-officers/,Poor Data Source -https://www.osc.state.ny.us/state-agencies/payroll-bulletins/state-police/sp-25-fitness-payment,Media Bulletins -https://delcopa.gov/planning/pdf/applicationforact247review.pdf,Not Criminal Justice Related -http://www.police.wallingfordct.gov/divisions/,Contact Info & Agency Meta -http://lafayettepolice.us/3391/census-2020,Not Criminal Justice Related -https://mattoon.illinois.gov/government/police-department/police-officer-hiring/,Training & Hiring Info -https://www.elburn.il.us/village-staff-directory/name/police-and-fire-emergencies/,Poor Data Source -http://lafayettepolice.us/3469/gis-zoning-maps,Not Criminal Justice Related -https://www.antioch.il.gov/event/police-and-fire-commission/,Poor Data Source -http://www.rocklin.ca.us/news/rocklin-appoints-police-chief-chad-butler-interim-city-manager,Media Bulletins -https://www.rentonwa.gov/city_hall/police/administrative_services/community_programs/renton_police_safe_place,Resources -https://police.greenvillesc.gov/1757/reserve-a-conference-room,Not Criminal Justice Related -https://cheswold.delaware.gov/cheswold-police-department-crime-statistics/march-16-activity-report/,Incident Reports -https://alpha.austin.gov/police-oversight/formal-complaint-acts-bringing-discredit-4/,Poor Data Source -https://coloradosprings.gov/police-department/page/colorado-springs-police-cadet-program-0,Resources -https://delcopa.gov/employment/jobpostings/dba.html,Not Criminal Justice Related -https://champaignil.gov/2020/08/18/chief-of-police-anthony-cobb-issues-statement-regarding-vandalism-of-champaign-police-department/,Media Bulletins -https://champaignil.gov/police/news-data/police-body-cameras/,Media Bulletins -https://biloxi.ms.us/podcast/meet-biloxi-police-fire-at-a-fun-event/,Poor Data Source -https://delcopa.gov/planning/planningeducation.html,Not Criminal Justice Related -https://claytonca.gov/police/community-youth-outreach/smart911/,Media Bulletins -https://www.arlingtonva.us/government/programs/housing/housing-arlington-latest-news/county-board-reviews-scope-and-charge-for-missing-middle-housing-study,Not Criminal Justice Related -http://lafayettepolice.us/1693/fountain-plaza-and-sculptures,Not Criminal Justice Related -https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0716/,Poor Data Source -https://sanramon.ca.gov/our_city/departments_and_divisions/police/community_programs/youth_services/police_explorers,Misc Police Activity -http://lafayettepolice.us/455/aquatics,Not Criminal Justice Related -http://police.portlandmaine.gov/396/tickets,Contact Info & Agency Meta -https://www.normanok.gov/public-safety/police-department/divisions/investigations/registered-offenders,Resources -https://delcopa.gov/vote/pdf/2021/delcoboardelections_meeting_legalnotice_0407-2021.pdf,Not Criminal Justice Related -https://www.mooresville.in.gov/event/mpd-police-commission-meeting-3/,Poor Data Source -https://coloradosprings.gov/city-council/article/public-notice/police-cso-graduation,Media Bulletins -https://www.coppelltx.gov/340/get-involved,Resources -https://alpha.austin.gov/es/police-oversight/2020-08-14-3/,Poor Data Source -https://www.knoxvilletn.gov/archived_news_stories/2010/knoxville_police_prepared_for_increase_of_holiday_,Media Bulletins -http://www.lafayettepolice.us/faq.aspx?qid=142,Not Criminal Justice Related -https://police.kingstontn.gov/events/categories/,Poor Data Source -https://www.plymouthmi.gov/government/departments/police/preliminary_breath_tests,Contact Info & Agency Meta -https://www.minneapolismn.gov/government/departments/police/professional-standards/discipline-matrix/,Policies & Contracts -https://cityofpowell.us/powell-police-searching-for-suspect-after-attempted-home-robbery/41-3/,Poor Data Source -https://ci.san-bernardino.ca.us/city_hall/police_department/online_reports,Poor Data Source -https://delcopa.gov/treasurer/pdf/2021reassessmentvalues/03.pdf,Poor Data Source -https://delcopa.gov/publicrelations/releases/2019/domesticviolenceawareness.html,Media Bulletins -https://virginiabeach.gov/whats-up/whats-new/commonwealth-v-nathaniel-lee-campbell-maximum-sentence-of-10-years-for-man-who-killed-military-police-officer-in-crash,Media Bulletins -http://www.lafayettepolice.us/759/burn-leaves-on-a-city-street,Media Bulletins -https://cityofpowell.us/government/employment-opportunities/police-officer-selection-process/,Training & Hiring Info -https://www.normanok.gov/public-safety/police-department/community-outreach/citizens-police-academy,Poor Data Source -https://www.dps.arkansas.gov/law-enforcement/arkansas-state-police/divisions/crimes-against-children/,Contact Info & Agency Meta -http://lafayettepolice.us/3532/schools-out-day-camps,Media Bulletins -https://www.lasalle-il.gov/shared-police-services-committee-4,Poor Data Source -https://www.minneapolismn.gov/government/programs-initiatives/community-safety/focus-areas/alternatives-police-response/new-pilot-response/,Policies & Contracts -https://delcopa.gov/purchasing/bidsprops/cp081921_addendum4.pdf,Poor Data Source -https://www.mass.gov/doc/summary-results-of-recent-lead-and-copper-drinking-water-testing-at-massachusetts-schools/download,Not Criminal Justice Related -http://www.cityofpataskalaohio.gov/city-of-pataskala-careers/ordinance-2021-4399-exhibit-a-full-time-police-clerk-2/,Poor Data Source -https://cheswold.delaware.gov/cheswold-police-department-crime-statistics/july-2021-activity-report/,Crime Maps & Reports -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/072521blotter.pdf,Dispatch Logs -https://delcopa.gov/publicrelations/releases/2021/deppublichearing_0922.html,Not Criminal Justice Related -http://www.lafayettepolice.us/1716/emu,Not Criminal Justice Related -https://www.coppelltx.gov/530/virtual-recreation,Poor Data Source -https://coloradosprings.gov/police-department/article/news/shooting-investigation-1800-block-monterey,Media Bulletins -https://www.antioch.il.gov/wpfb-file/01-14-14-police-and-fire-agenda-pdf-2/,Poor Data Source -https://www.gov.ca.gov/2022/02/27/governor-newsom-statement-on-death-of-salinas-police-officer-2-27-22/,Media Bulletins -https://www.southamptontownnypolice.gov/1446/hampton-resorts-atlantic-hotel-ia-system,Not Criminal Justice Related -https://delcopa.gov/departments/emergencyservices.html,Not Criminal Justice Related -https://www.roundrocktexas.gov/news/police-arrest-two-suspects-series-vehicle-burglaries/,Media Bulletins -https://www.coronadelmar.us/residents-show-support-for-the-newport-beach-police-department-media-4/,Poor Data Source -https://santabarbaraca.gov/government/departments/police-department/funciones-miscelaneos,Misc Police Activity -https://www.antioch.il.gov/wpfb-file/04-08-14-police-pension-agenda-pdf-3/,Poor Data Source -http://www.ryepolice.us/event/makn-llc-dba-mission-portsmouth,Not Criminal Justice Related -https://www.kenedytx.gov/2022/04/18/kenedy-police-departments-k9-robbie-to-get-donation-of-body-armor/,Media Bulletins -http://www.lafayettepolice.us/873/fire-stopping,Not Criminal Justice Related -https://www.antioch.il.gov/wpfb-file/04-10-18-police-and-fire-agenda-pdf/,Poor Data Source -http://lafayettepolice.us/2144/events,Not Criminal Justice Related -https://delcopa.gov/vote/pdf/2021/minutes01_15_2021.pdf,Poor Data Source -https://delcopa.gov/planning/pubs/osrgp/vol-iii_chapter7uplandcountypark.pdf,Not Criminal Justice Related -https://cityofyuma.colorado.gov/departments/emergency-services/police-department/police-department-staff,Personnel Records -https://www.mass.gov/doc/mptc-police-standards-subcommittee-open-meeting-notice-060821/download,Policies & Contracts -https://delcopa.gov/vote/candidatelist.html,Not Criminal Justice Related -https://delcopa.gov/purchasing/bidsprops/delcomicrowavekmz.zip,Not Criminal Justice Related -https://www.mass.gov/doc/woburnpolicelieutenant5802rtf/download,Training & Hiring Info -https://delcopa.gov/employment/jobpostings/communityengagementspecialist.html,Training & Hiring Info -https://police.crystalmn.gov/g_o_v_e_r_n_m_e_n_t/departments_a-_z/administration,Contact Info & Agency Meta -https://coloradosprings.gov/police-department/article/news/public-assistance-needed-identify-sexual,Media Bulletins -https://delcopa.gov/publicrelations/releases/2019/girlsspark.html,Not Criminal Justice Related -https://www.providenceri.gov/providence-police-department-deploy-axon-2-body-worn-cameras/police-body-camera/,Poor Data Source -https://southamptontownnypolice.gov/1/home,Not Criminal Justice Related -http://police.portlandmaine.gov/638/nathan-clifford-re-use-advisory-task-for,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality---palo-verde-ave-and-los-coyotes-diagonal/,Media Bulletins -https://www.southamptontownnypolice.gov/442/community-preservation-advisory-board,Media Bulletins -https://spdblotter.seattle.gov/2015/03/24/police-arrest-suspect-in-violent-robbery-at-rainier-beach-doughnut-shop/,Media Bulletins -https://delcopa.gov/treasurer/forms/2023appealformscommercial.pdf,Poor Data Source -https://www.lynchburgvapolice.gov/wp-content/uploads/2021/03/dsc0161-scaled.jpg,Poor Data Source -http://www.longbeach.gov/police/press-releases/traffic-fatality-pacific-coast-highway-and-lime-avenue/,Media Bulletins -https://alpha.austin.gov/police-oversight/2020-11-12/,Poor Data Source -http://www.longbeach.gov/police/press-releases/arrests-made-in-two-robberies--charges-filed/,Media Bulletins -http://www.lafayettepolice.us/list.aspx,Resources -https://www.coppelltx.gov/faq.aspx?qid=432,Resources -https://www.hayward-ca.gov/discover/news/may21/hayward-police-department-maintains-national-law-enforcement-accreditation-calea,Media Bulletins -https://delcopa.gov/council/2019minutes/111319minutes.pdf,Not Criminal Justice Related -https://www.lynchburgvapolice.gov/wp-content/uploads/2022/02/cotw-1-e1644350006495.jpg,Poor Data Source -https://www.stcharlesil.gov/news/2021/04/01/welcome-new-police-officers,Media Bulletins -https://alpha.austin.gov/en/police-oversight/written-reprimand-of-officer-david-lara/,Poor Data Source -http://www.longbeach.gov/police/press-releases/suspect-arrested-for-murder-of-high-school-student/,Media Bulletins -https://alpha.austin.gov/es/police-oversight/formal-complaint-purpose-and-scope-and-other-policy-violations-9/,Poor Data Source -https://www.hermonmaine.gov/departments/police-department/gallery/,Poor Data Source -https://delcopa.gov/departments/recorderofdeeds.html,Contact Info & Agency Meta -https://alpha.austin.gov/es/police-oversight/formal-complaint-impartial-attitude-and-courtesy-and-other-policy-violations-8/,Poor Data Source -https://www.tukwilawa.gov/event/virtual-town-hall-with-chief-of-police/,Poor Data Source -https://www.coppelltx.gov/faq.aspx?qid=119,Resources -http://www.longbeach.gov/police/,Contact Info & Agency Meta -https://www.warracres-ok.gov/police-department-history/warr-acres-pd-first-patch/,Poor Data Source -https://police.greenvillesc.gov/faq.aspx?qid=382,Not Criminal Justice Related -https://www.southamptontownnypolice.gov/faq.aspx?qid=421,Not Criminal Justice Related -https://ose.louisiana.gov/event/police-sergeant-18/,Poor Data Source -https://www.providenceri.gov/officer-louis-salinaro-k-9-gero-locate-apprehend-subject-wanted-police-hiding-basement/press-release-k9/,Poor Data Source -http://www.ryepolice.us/logs/police-logs-11-09-22-11-15-22,Daily Activity Logs -https://delcopa.gov/planning/pubs/connectivityranking.pdf,Not Criminal Justice Related -https://www.sandiego.gov/department-document/commission-police-practices-members-psln-committee-re-list-recommendations,Resources -https://www.stpaul.gov/departments/police/21st-century-policing-report/pillar-1-trust-and-legitimacy/report-7,Media Bulletins -https://www.grovecityohio.gov/division-of-police/coin-survey/,Not Criminal Justice Related -https://www.antioch.il.gov/wpfb-file/11-16-10-police-pension-fund-agenda-pdf-4/,Poor Data Source -http://www.longbeach.gov/globalassets/police/media-library/images/press-releases/2015/thumb_bobbysketch-.jpg,Poor Data Source -http://www.longbeach.gov/police/press-releases/robbery-suspects-arrested--charged/,Media Bulletins -https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0372/,Poor Data Source -https://champaignil.gov/tag/police-continue-to-seek-suspect-in-september-12-bank-robbery-regions-bank/,Media Bulletins -https://www.dps.arkansas.gov/law-enforcement/arkansas-state-police/directors-office/asp-commission/,Contact Info & Agency Meta -https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0455/,Poor Data Source -https://coloradosprings.gov/police-department/page/investigations-division,Poor Data Source -https://www.rentonwa.gov/city_hall/police/investigations/domestic_violence/cycle_of_violence,Media Bulletins -https://www.pleasantprairiewi.gov/departments/police/news/police_and_fire___rescue_news_archive/2019_news_releases/release_of_sex_offender_into_community_-_navarro,Media Bulletins -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/arrests/091421arrests.pdf,Arrest Records -https://data.charlottenc.gov/datasets/cmpd-police-wrecker-zones,Poor Data Source -http://www.lafayettepolice.us/614/find,Resources -http://www.longbeach.gov/police/press-releases/lbpd-joins-crackdown-on-texting---hand-held-cell-use-behind-the-wheel/,Media Bulletins -https://www.ashevillenc.gov/wp-content/uploads/2019/03/crime-scene-investigation-police2.jpg,Poor Data Source -https://champaignil.gov/2019/09/29/champaign-police-investigating-shooting-2/,Media Bulletins -https://alpha.austin.gov/en/police-oversight/community-police-review-commission-memo-2019-0267/,Poor Data Source -https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-1022/,Poor Data Source -https://spdblotter.seattle.gov/2012/08/03/seattle-neighborhood-group-and-seattle-police-department-team-up-to-tackle-graffiti-in-little-saigon/,Media Bulletins -https://alpha.austin.gov/en/police-oversight/formal-complaint-purpose-and-scope-and-other-policy-violations-9/,Complaints & Misconduct -https://normandyparkwa.gov/city-news/police-department/happy-thanksgiving/,Not Criminal Justice Related -https://alpha.austin.gov/en/police-oversight/formal-complaint-impartial-attitude-and-courtesy-and-other-policy-violations-1/,Complaints & Misconduct -https://www.hendersonvillenc.gov/police-department/information-crime-safety-tips/winter-safety-tips,Poor Data Source -https://www.mass.gov/doc/notification-of-copper-algaecide-application/download,Not Criminal Justice Related -https://champaignil.gov/2010/05/04/champaign-police-celebrates-olympic-champion/,Not Criminal Justice Related -https://alpha.austin.gov/es/police-oversight/2020-08-10-3/,Complaints & Misconduct -http://lafayettepolice.us/765/request-a-report,Not Criminal Justice Related -https://www.antioch.il.gov/event/police-fire-commission-cancelled/,Not Criminal Justice Related -https://www.lynchburgvapolice.gov/wp-content/uploads/2021/06/lpd-seal-e1662580813573.png,Poor Data Source -https://osp.maryland.gov/2020/01/17/january-17-2020-greensboro-police-chief-pleads-guilty-to-misconduct-in-office/,Media Bulletins -https://ci.new-hope.mn.us/city_hall/police_department/records_division/temporary_permit_to_purchase_procedure,Poor Data Source -https://www.austintexas.gov/blog/good-police-work,Media Bulletins -http://sheriff.co.seneca.ny.us/the-department/copy-of-biography-the-chief-deputy-2/,Contact Info & Agency Meta -https://hollister.ca.gov/government/city-departments/police/,List of Data Sources -https://delcopa.gov/courts/juvenilecourt/upperdarbyprobation.html,Contact Info & Agency Meta -http://www.ryepolice.us/wp-content/uploads/lynch_dan.jpg,Poor Data Source -https://delcopa.gov/council/2017minutes/012517minutes.pdf,Not Criminal Justice Related -https://alpha.austin.gov/es/police-oversight/formal-complaint-impartial-attitude-and-courtesy-46/,Complaints & Misconduct -https://champaignil.gov/tag/police-request-community-assistance-in-fatal-shooting-investigation/,Media Bulletins -https://alpha.austin.gov/es/police-oversight/community-feedback-and-final-recommendations-ban-chokeholds-and-strangleholds/,Poor Data Source -https://coloradosprings.gov/police-department/article/calendar-event/holiday-hill,Misc Police Activity -https://www.naperville.il.us/services/naperville-police-department/community-education-and-crime-prevention/paws-on-patrol/,Resources -https://www.police.wallingfordct.gov/careers/current-employment-opportunities/,Resources -https://www.coppelltx.gov/376/command-staff,Contact Info & Agency Meta -https://alpha.austin.gov/es/police-oversight/8-26-20-3/,Complaints & Misconduct -https://coloradosprings.gov/police-department/article/news/officer-involved-shooting-i25-and-north,Media Bulletins -https://www.arlingtontx.gov/news/my_arlington_t_x/news_stories/police_chief_al_jones,Media Bulletins -https://www.sandiego.gov/risk-management/flexible-benefits/fbp-police-safety-members-fy2022,Policies & Contracts -https://hamiltonma.gov/events/event/police-training-gun-club-3/,Poor Data Source -https://brookfieldil.gov/2021-04-28-regular-police-pension-board-meeting-agenda-for-posting/,Poor Data Source -http://www.longbeach.gov/police/press-releases/charges-filed-on-carjacking-suspect--a-convicted-felon-on-post-release-community-supervision/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-1300-block-of-wesley-drive/,Media Bulletins -http://www.longbeach.gov/police/press-releases/this-labor-day-and-every-day-drive-sober-or-get-pulled-over/,Media Bulletins -https://coloradosprings.gov/police-department/article/news/fatal-crash-marksheffel-road-and-dublin-0,Media Bulletins -https://www.roundrocktexas.gov/city-departments/police/divisions/training-division/,Contact Info & Agency Meta -https://alpha.austin.gov/en/police-oversight/notice-of-complaint-related-to-2022-0486/,Complaints & Misconduct -https://alpha.austin.gov/government-business/connect-with-city/contribute-to-police-oversight/complaint-process/,Policies & Contracts -https://delcopa.gov/sheriff/realestate.html,Not Criminal Justice Related -https://delcopa.gov/publicrelations/releases/2021/pdf/phonescam.pdf,Not Criminal Justice Related -https://www.ci.rohnert-park.ca.us/city_hall/departments/development_services/copy_of_downtown/demo_downtown_news,Not Criminal Justice Related -https://townofcampbellwi.gov/public-safety/police/contact-an-officer/,Contact Info & Agency Meta -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/arrests/080421arrests.pdf,Arrest Records -https://whitestown.in.gov/news/whitestown-police-detectives-arrest-local-man-on-child-molestation-charges/,Media Bulletins -http://lafayettepolice.us/456/special-events,Not Criminal Justice Related -https://www.clarkstown.gov/police/surveillance-camera-registration/,Resources -https://delcopa.gov/publicrelations/releases/2022/delcoartsweek.html,Not Criminal Justice Related -https://spdblotter.seattle.gov/2013/05/02/mayor-council-signal-intent-to-site-and-build-new-police-station-for-north-precinct/,Media Bulletins -https://www.coronadelmar.us/safes-cash-pricey-watches-and-jewelry-police-documents-reveal-items-stolen-in-rash-of/,Media Bulletins -https://www.knoxvilletn.gov/government/mayors_office/c_o_v_i_d-19___coronavirus_/stress_and_coping/knox_well/kid___parent_resources/general_adult_resources,Resources -https://oceancitymd.gov/oc/ocean-city-police-captain-austin-retires-after-31-years-of-service/,Media Bulletins -https://www.rolesvillenc.gov/police,Contact Info & Agency Meta -https://www.prescott-az.gov/services-safety/police/reporting/accident-reports-on-line/,Contact Info & Agency Meta -https://alpha.austin.gov/es/police-oversight/formal-complaint-impartial-attitude-and-courtesy-40/,Complaints & Misconduct -https://delcopa.gov/controller/pdf/2020/dccwfinal-signed.pdf,Not Criminal Justice Related -https://www.antioch.il.gov/wpfb_file_category/commissions-police-and-fire-commission-agendas-2014-commissions-police-and-fire-commission-agendas-commissions-police-and-fire-commission-commissions/,Poor Data Source -https://alpha.austin.gov/es/police-oversight/2020-06-12-11/,Complaints & Misconduct -http://www.lafayettepolice.us/214/application-process,Policies & Contracts -https://www.knightdalenc.gov/departments/police/crime-prevention/crime-stoppers,Contact Info & Agency Meta -https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0255/,Complaints & Misconduct -https://www.sandiego.gov/department-document/commission-police-practices-makes-recommendations-san-diego-police-department%e2%80%99s,Policies & Contracts -https://www.casperwy.gov/news/news/newsroom/casper_police_officer_involved_shooting,Poor Data Source -http://www.ryepolice.us/logs/police-logs-for-8-8-18-8-14-18,Dispatch Logs -https://delcopa.gov/planning/programsandinitiatives/heritagecommission/upcomingevents.html,Not Criminal Justice Related -https://www.mass.gov/doc/municipal-police-training-committee-mptc-open-meeting-notice-061522/download,Media Bulletins -https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-1002/,Poor Data Source -https://www.sandiego.gov/police/contact,Contact Info & Agency Meta -https://delcopa.gov/publicrelations/releases/2021/votebymail1018.html,Not Criminal Justice Related -https://dps.iowa.gov/dci-and-ames-police-department-investigate-suspicious-death,Media Bulletins -http://www.longbeach.gov/police/press-releases/dui-checkpoint/,Media Bulletins -https://training.detroitmi.gov/departments/police-department/project-green-light-detroit/agreements,Media Bulletins -https://www.antioch.il.gov/wpfb-file/10-11-11-police-and-fire-agenda-pdf-5/,Poor Data Source -http://cityofcanalfulton-oh.gov/police-department-hiring-entry-level-police-officer/,Training & Hiring Info -https://police.crystalmn.gov/r_e_s_i_d_e_n_t/public_works,Not Criminal Justice Related -https://www.ci.plymouth.mi.us/government/departments/police/history,Not Criminal Justice Related -https://rexburg.us/police-ask-for-help-finding-man-who-left-for-work-and-hasnt-been-seen-since/,Media Bulletins -https://spdblotter.seattle.gov/2014/12/17/police-increasing-patrols-after-early-morning-gunfire-near-south-seattle-school/,Media Bulletins -https://coloradosprings.gov/police-department/article/news/multiple-arrests-internet-crimes-against,Media Bulletins -https://www.lynchburgvapolice.gov/news-updates/2124/,Media Bulletins -https://www.mass.gov/event/2022-pittsfield-police-department-open-house-5-pm-2022-01-11t170000-0500-2022-01-11t180000-0500,Resources -https://brookfieldil.gov/publication/july-1-2020-board-of-fire-and-police-commissioners/,Poor Data Source -https://delcopa.gov/sustainability/pdf/raise/potentialeconomicimptwaterfront.pdf,Not Criminal Justice Related -https://www.providenceri.gov/police/explorers-program/attention/,Poor Data Source -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/summary/021121summary.pdf,Dispatch Logs -https://piedmont.ca.gov/services___departments/police/services/social_media,Contact Info & Agency Meta -https://gonzalesca.gov/services/police/how-do-i/learn-what-crime-rate-gonzales,Resources -https://council.seattle.gov/2022/08/19/west-seattle-bridge-police-recruitment-and-incentives-bill-passes-abortion-access-bill-signing-metropolitan-parks-district-public-hearing-small-tenant-improvement-fund-seattle-restored-program/,Policies & Contracts -https://estespark.colorado.gov/departments/police/operations/patrol/code-enforcement/report-a-potential-code-violation,Not Criminal Justice Related -https://oceancitymd.gov/oc/worcester-county-law-enforcement-agencies-to-co-host-citizens-police-academy/,Misc Police Activity -https://delcopa.gov/ich/pdfs/covid_govwolf_march12.pdf,Not Criminal Justice Related -http://www.longbeach.gov/police/news/south-division-forum/,Media Bulletins -https://delcopa.gov/departments/heatplan/heatsafetytips.pdf,Media Bulletins -"https://norfolkne.gov/government/departments/police-division/press-releases/march-11,-2021-press-release.html",Media Bulletins -https://www.newhopemn.gov/news___features/now_recruiting_police_reserves,Training & Hiring Info -https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/arrests/083022arrests.pdf,Arrest Records -https://rockfordil.gov/police-lgbtqia-liaison/,Contact Info & Agency Meta -https://www.sandiego.gov/police/community,Resources -https://www.naperville.il.us/services/naperville-police-department/programs-and-services/fingerprinting/,Resources -https://spdblotter.seattle.gov/2013/02/25/if-you-see-a-handcuffed-man-walking-around-near-harborview-give-police-a-call/,Media Bulletins -https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0421/,Poor Data Source -https://coloradosprings.gov/police-department/page/falcon-division,Contact Info & Agency Meta -https://wyoming.delaware.gov/police-department/policedepartmentapplication2017/,Training & Hiring Info -http://lafayettepolice.us/149/departments-a---f,Contact Info & Agency Meta -https://delcopa.gov/sustainability/sustainabilityplan.html,Not Criminal Justice Related -https://hollister.ca.gov/government/city-departments/police/,Contact Info & Agency Meta -https://spdblotter.seattle.gov/2022/05/26/police-arrest-one-seize-gun-drugs-cash-downtown-thursday-evening/,Media Bulletins -http://www.longbeach.gov/police/press-releases/l-b-p-d--receives-grant-for-special-traffic-enforce----crash-prevention/,Media Bulletins -https://ci.san-bernardino.ca.us/city_hall/police_department/public_safety/traffic_safety_programs/alpr_statistics,Poor Data Source -https://www.knoxvilletn.gov/government/city_departments_offices/police_department/field_operations_bureau/community_partnership_officers/c_p_t_e_d_security_surveys,Resources -https://www.mass.gov/news/environmental-police-officer-ab-exam-update,Training & Hiring Info -https://coloradosprings.gov/tag/police,Media Bulletins -https://www.lasalle-il.gov/departments/police-department,Contact Info & Agency Meta -https://www.sandiego.gov/event/community-coffee-cop,Poor Data Source -https://www.mass.gov/doc/police-standards-subcommittee-open-meeting-notice-agenda/download,Poor Data Source -https://www.dps.nm.gov/blog/2022/04/12/update-cancel-silver-alert-belen-nm-sally-krieger-has-been-located-and-is-safe-please-refer-all-inquiries-and-questions-to-belen-police-department-at-505-865-9130/,Media Bulletins -http://www.longbeach.gov/press-releases/jason-campbell-appointed-police-administration-bureau-chief/,Media Bulletins -http://www.tampa.gov/news/tampa-police-work-identify-battery-suspect-64991,Media Bulletins -https://cityofgulfbreeze.us/departments/police/faqs-2/,Resources -https://spdblotter.seattle.gov/2014/03/08/citizens-respond-to-a-woman-in-distress-and-hold-down-robbery-suspect-until-police-arrive/,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality-anaheim-st-and-long-beach-blv/,Media Bulletins -http://www.longbeach.gov/police/press-releases/sexual-assault-suspect-arrested--additional-victims-sought/,Media Bulletins -https://delcopa.gov/publicrelations/releases/2019/pdf/nationalcrimevictimsrightsweekeventflyer2019.pdf,Poor Data Source -https://www.rolesvillenc.gov/police/frequently-asked-questions,Contact Info & Agency Meta -https://ethics.ny.gov/news/jcope-settles-lobbyist-alleged-lobbying-law-gift-violation,Media Bulletins -https://spdblotter.seattle.gov/2017/06/05/police-conducting-death-investigation-at-sr-509-encampment/,Media Bulletins -https://alpha.austin.gov/es/police-oversight/2020-06-4-8/,Poor Data Source -https://alpha.austin.gov/en/police-oversight/formal-complaint-impartial-attitude-and-courtesy-22/,Poor Data Source -https://delcopa.gov/publicrelations/releases/2020/votingdemo_canceled.html,Media Bulletins -https://delcopa.gov/publicrelations/releases/2018/jurorphonesscam.pdf,Media Bulletins -https://www.waynesvillenc.gov/departments/police/about-us,Contact Info & Agency Meta -https://beaumonttexas.gov/beaumont-police-investigating-fatality-accident-2400-block-of-s-mlk/,Poor Data Source -https://www.knoxvilletn.gov/government/city_departments_offices/police_department/management_services_bureau/recruitment_job_opportunities/basic_info_for_becoming_a_police_cadet,Training & Hiring Info -https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0103/,Poor Data Source -http://www.ryepolice.us/pressrelease/pioneer-rd-closed-due-to-crash,Not Criminal Justice Related -http://www.lafayettepolice.us/faq.aspx?qid=183,Not Criminal Justice Related -https://riag.ri.gov/press-releases/state-federal-and-law-enforcement-leaders-announce-16-million-grants-police,Media Bulletins -https://www.stmatthewsky.gov/police/srt-vehicle/,Poor Data Source -https://www.ci.corcoran.mn.us/public_services/police/training_and_safety/emergency_preparedness_guide,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/traffic-fatality-artesia-and-myrtle1/,Media Bulletins -http://www.ryepolice.us/logs/police-logs-for-71316-71916,Daily Activity Logs -http://www.longbeach.gov/police/press-releases/dui-checkpoint-proves-effective-4-/,Media Bulletins -https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/blotter/111522blotter.pdf,Poor Data Source -https://www.huntsvilleal.gov/videos/huntsville-police-departments-captain-mccarver-lets-grow-together/,Poor Data Source -http://www.ryepolice.us/pressrelease/positive-covid-19-case-at-rye-recycling-center/attachment/ryerecyclecase-2020-dhhs-edits-covid-09282020,Not Criminal Justice Related -https://police.greenvillesc.gov/313/trails-bikes,Not Criminal Justice Related -http://www.lafayettepolice.us/851/fire-resistance-rated-construction,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/arrests-made-in-murder-case/,Media Bulletins -https://cityoflakewood.us/police-homepage/lakewood-police-apply-for-a-job/,Poor Data Source -http://lafayettepolice.us/3547/e-sports,Not Criminal Justice Related -https://www.lynchburgvapolice.gov/news-updates/update-child-found-wandering-on-linkhorne-road-mother-located/,Media Bulletins -https://spdblotter.seattle.gov/2019/07/25/police-arrest-suspected-heroin-dealer-arrested-downtown/,Media Bulletins -https://spdblotter.seattle.gov/2021/08/19/police-arrest-woman-for-violating-court-order-protecting-mayor-durkan/,Media Bulletins -http://www.police.wallingfordct.gov/police-station-project/,Contact Info & Agency Meta -https://www.floresvilletx.gov/departments/police/complaints-commendations/,Contact Info & Agency Meta -https://delcopa.gov/ojs/efileforms/court admin forms for efile/writofexecutionnotice.pdf,Poor Data Source -http://www.longbeach.gov/police/press-releases/police-seek-public-s-help-with-identifying-financial-crimes-suspect/,Media Bulletins -https://www.pleasantprairiewi.gov/departments/police/news/police_and_fire___rescue_news_archive/2019_news_releases/coffee_with_a_cop,Media Bulletins -https://police.greenvillesc.gov/599/paratransit-information,Not Criminal Justice Related -https://www.fultoncountyga.gov/news/2021/07/23/fulton-county-police-observe-national-night-out,Media Bulletins -https://www.sandiego.gov/department-document/march242009100-16th-streetaudioofficer-k-copeland-walkthroughredactedkmwav,Misc Police Activity -https://delcopa.gov/publicrelations/releases/2020/babyitempickup_june19.html,Not Criminal Justice Related -https://broadview-il.gov/events/police-and-fire-committee-meeting/,Poor Data Source -https://jamestownnd.gov/event/public-works-police-fire-committees-2-2023-06-22/,Poor Data Source -https://police.birminghamal.gov/command-staff/captains/,Contact Info & Agency Meta -http://www.longbeach.gov/police/press-releases/long-beach-police-seeking-the-public-s-help-in-identifying-armed-robbery-suspect---video-footage-available--/,Media Bulletins -http://lafayettepolice.us/316/housing-information-and-application,Not Criminal Justice Related -https://spdblotter.seattle.gov/2020/05/30/police-respond-to-protests-property-damage-arrest-seven/,Media Bulletins -https://southamptontownnypolice.gov/205/adopt-a-planting-program,Not Criminal Justice Related -https://townofpaonia.colorado.gov/paonia-police-department-employment-application,Training & Hiring Info -https://delcopa.gov/controller/pdf/2017andolder/sheriffaudit2017.pdf,Policies & Contracts -http://www.longbeach.gov/police/press-releases/holiday-toy-drive-collection/,Media Bulletins -https://alpha.austin.gov/en/police-oversight/notice-of-complaint-related-to-2022-0825/,Poor Data Source -https://police.greenvillesc.gov/faq.aspx?qid=445,Poor Data Source -https://cheswold.delaware.gov/cheswold-police-department-crime-statistics/january-2020-activity-report/,Annual & Monthly Reports -https://delcopa.gov/sustainability/conference.html,Not Criminal Justice Related -https://www.wakeforestnc.gov/police/crime-prevention/reporting-suspicious-activity,Resources -https://ose.louisiana.gov/event/police-sergeant-80/,Contact Info & Agency Meta -https://pittsburghpa.gov/files/police/orders/ch6/68-02-grafitti-tracking-system.pdf,Poor Data Source -http://www.tampa.gov/events/national-coffee-cop-day/105796,Poor Data Source -"https://norfolkne.gov/government/departments/police-division/press-releases/april-27,-2021-press-release.html",Media Bulletins -https://police.birminghamal.gov/wp-content/uploads/2020/01/dsc_2278-225.jpg,Poor Data Source -https://delcopa.gov/vote/pdf/2021/delco_boe-meeting-notice_04-28-2021.pdf,Not Criminal Justice Related -https://delcopa.gov/vote/becomingapollworker.html,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/undetermined-death-investigation-2-/,Media Bulletins -https://ci.san-bernardino.ca.us/city_hall/police_department/crime_statistics/about_ucr_statistics/part_2_crimes,Poor Data Source -https://police.greenvillesc.gov/2025/project-safe-neighborhoods,Resources -https://delcopa.gov/publicrelations/releases/2022/pdf/vetresourcefair.pdf,Not Criminal Justice Related -http://www.ryepolice.us/event/annies-angels-rye-by-the-sea-duathlon-2,Not Criminal Justice Related -https://southamptontownnypolice.gov/faq.aspx?qid=437,Resources -https://frederica.delaware.gov/2016/06/27/ad-for-part-time-police-office/townoffred-50-121467-1/,Media Bulletins -https://www.knoxvilletn.gov/government/city_departments_offices/police_department/management_services_bureau/community_police_academy,Media Bulletins -https://www.southamptontownnypolice.gov/493/pump-out-boat-program,Not Criminal Justice Related -https://www.sandiego.gov/form/get-it-done-police,Contact Info & Agency Meta -https://www.minneapolismn.gov/government/departments/police/,Contact Info & Agency Meta -https://council.seattle.gov/2016/09/15/councilmember-johnsons-statement-on-the-north-precinct-police-station/,Not Criminal Justice Related -https://alpha.austin.gov/en/police-oversight/formal-complaint-impartial-attitude-and-courtesy-29/,Poor Data Source -https://www.cityofrc.us/news/rancho-cucamonga-welcomes-new-police-chief,Media Bulletins -https://arcadia-fl.gov/departments/police/,Contact Info & Agency Meta -https://delcopa.gov/weightsmeasures/pdf/complaintform.pdf,Complaints & Misconduct -https://www.ci.san-bernardino.ca.us/city_hall/police_department/crime_statistics/about_ucr_statistics/arrest_statistics/arrest_statistics_-_2008,Crime Maps & Reports -https://www.mass.gov/doc/gardnerpolicelieutenant2374rtf/download,Training & Hiring Info -https://www.coronadelmar.us/newport-beach-police-department-issues-citations-for-selling-alcohol-to-minors/,Media Bulletins -https://www.sandiego.gov/police/news-center/cold-cases/sleiman-hallak,Wanted Persons -https://www.dps.arkansas.gov/news/settlement-agreement-in-civil-action-against-state-police/,Media Bulletins -https://cheswold.delaware.gov/2015/03/06/cheswold-police-department-dea-sponsoring-national-take-back-day-sept-27-2014/,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/murder3/,Media Bulletins -https://pharr-tx.gov/ngg_tag/pharr-police-department-athletic-league/,Not Criminal Justice Related -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/summary/102821summary.pdf,Dispatch Logs -https://www.southamptontownnypolice.gov/faq.aspx?qid=249,Not Criminal Justice Related -https://delcopa.gov/heroin/tipsforprevention.html,Poor Data Source -https://www.woburnma.gov/government/police/police-records-request/arrest-records/,Arrest Records -http://www.longbeach.gov/police/press-releases/dui-saturation-patrol/,Media Bulletins -https://police.greenvillesc.gov/874/transparency-portal,Resources -http://www.longbeach.gov/police/press-releases/fatal-traffic-accident-1-/,Media Bulletins -https://coloradosprings.gov/police-department/page/commander-rigdon,Poor Data Source -https://lockhavenpa.gov/government/manager/personnel/lifeins_ft_police/,Not Criminal Justice Related -https://www.newarknj.gov/news/mayor-ras-j-barakas-statement-on-police-chief-darnell-henry,Media Bulletins -https://alpha.austin.gov/es/police-oversight/2020-09-17-08/,Poor Data Source -http://www.longbeach.gov/police/press-releases/k-9-officer-is-partnered-with-new-police-service-dog/,Media Bulletins -https://columbiacitypolice.us/documents/publiccomplaint.pdf,Complaints & Misconduct -https://www.southamptontownnypolice.gov/1695/2022-tentative-roll-assessment-rolls,List of Data Sources -https://www.corcoranmn.gov/public_services/police/press_releases_records_and_complaint_recognition/press_releases,List of Data Sources -http://lafayettepolice.us/1079/staff,Contact Info & Agency Meta -https://delcopa.gov/publicrelations/releases/2021/covid_countiesvaccinestatement.html,Not Criminal Justice Related -https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0838/,Poor Data Source -http://www.longbeach.gov/police/about-the-lbpd/bureaus/investigations-bureau/detective-division/auto-theft-detail-and-t.r.a.p/,Resources -https://delcopa.gov/ich/resources/covid19/pdf/coronavirustestingifnohealthcareprovider.pdf,Poor Data Source -https://rocklandmaine.gov/police-department/officer-duhamel-promoted-to-patrol-sergeant/attachment/f45111ed-37de-4a3d-b8e7-099f09cad7fb-15/,Poor Data Source -https://www.madera.gov/wp-content/uploads/2016/05/madera-south-copy.jpg,Poor Data Source -https://www.fortworthtexas.gov/departments/police/public-safety/fw-pd-central-hemphill,Contact Info & Agency Meta -https://delcopa.gov/publicrelations/releases/2019/pdf/2019stateofthecounty.pdf,Media Bulletins -https://police.greenvillesc.gov/304/health-wellness,Not Criminal Justice Related -https://champaignil.gov/2010/08/05/champaign-police-hosts-pool-party-for-youth/,Media Bulletins -https://police.bixbyok.gov/faq.aspx?qid=79,Resources -https://spdblotter.seattle.gov/2018/12/02/theater-cancels-matinee-police-investigate-after-theater-employees-discover-threats-on-facebook/,Media Bulletins -https://www.mass.gov/info-details/audit-of-the-massachusetts-cultural-council-objectives-scope-and-methodology,Not Criminal Justice Related -https://www.montebelloca.gov/departments/police/services/pay_a_parking_ticket,Poor Data Source -https://delcopa.gov/publicrelations/releases/2020/covid_twoadditionaldeaths.html,Not Criminal Justice Related -https://www.foxcrossingwi.gov/foxcrossingwi.gov/police/,Annual & Monthly Reports -https://www.troyny.gov/photos-troy-community-commemorates-retirement-of-troy-police-chief-john-tedesco/,Poor Data Source -https://delcopa.gov/vetaffairs/forms/instructionsforfilingaclaim.pdf,Not Criminal Justice Related -https://www.littlerock.gov/media/5607/05-22-19-police.pdf,Media Bulletins -https://dccouncil.gov/judiciary-public-safety/copy-of-fb0-fy19-attachment-i-contracts-and-grants/,Policies & Contracts -https://northbrunswicknj.gov/wp-content/uploads/2020/09/national-police-week-2.jpg,Poor Data Source -https://www.coppelltx.gov/faq.aspx?qid=155,Not Criminal Justice Related -https://spdblotter.seattle.gov/2021/06/08/police-seize-five-firearms-following-crisis-call-arrest-man-for-earlier-drive-by-shooting/,Media Bulletins -http://www.longbeach.gov/police/press-releases/fatality-1-/,Media Bulletins -https://www.sandiego.gov/department-document/san-diego-kicks-community-conversations-about-next-police-chief,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-20-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality---palo-verde-ave-and-los-coyotes-diagonal/,Media Bulletins -https://norfolkne.gov/government/departments/police-division/press-releases/may-21st-press-release.html,Media Bulletins -https://alpha.austin.gov/police-oversight/formal-complaint-when-department-issued-bwc-system-use-is-required/,Poor Data Source -https://www.southamptontownnypolice.gov/1469/kenyatta-nash,Poor Data Source -https://www.elburn.il.us/police-department/,Personnel Records -https://ci.san-bernardino.ca.us/city_hall/police_department/contacting_sbpd,Contact Info & Agency Meta -http://www.tampa.gov/police/memorial/thank-you,Media Bulletins -http://www.longbeach.gov/police/press-releases/update---arrest-made-in-murder-5900-block-of-l-b--blvd-/,Media Bulletins -https://southamptontownnypolice.gov/1139/office-of-sustainability,Poor Data Source -https://police.bixbyok.gov/faq.aspx?qid=77,Resources -https://delcopa.gov/prison/pdfs/wardensreportapril2022.pdf,Poor Data Source -https://www.antioch.il.gov/wpfb-file/08-11-10-police-and-fire-commission-minutes-pdf/,Poor Data Source -https://delcopa.gov/planning/pdf/mapping/colwyn.pdf,Poor Data Source -http://www.ryepolice.us/logs/police-logs-for-1-9-19-1-15-19,Daily Activity Logs -https://champaignil.gov/police/news-data/traffic/,Contact Info & Agency Meta -https://www.minneapolismn.gov/resident-services/public-safety/police-public-safety/police-reports-and-data-requests/frequently-requested/critical-incidents/feb-2-2022-officer-involved-shooting/,Media Bulletins -http://www.tampa.gov/news/tampa-police-officer-killed-line-duty-66406,Media Bulletins -http://www.cityofpataskalaohio.gov/government/clerk-of-council/public-notices/advertisement-of-legislation-passed-september-5-2017-copy/,Not Criminal Justice Related -http://www.ryepolice.us/wp-content/uploads/scannerpd@town.rye_.nh_.us_20180430_142152_001.jpg,Media Bulletins -https://delcopa.gov/ich/resources/covid19/pdf/spcapressrelease.pdf,Not Criminal Justice Related -https://www.antioch.il.gov/wpfb-file/01-24-12-police-and-fire-agenda-pdf-5/,Poor Data Source -https://bouldercolorado.gov/events/police-chief-town-hall-person-virtual-1,Contact Info & Agency Meta -https://florence-ky.gov/police-department-easter-drive-thru/,Not Criminal Justice Related -https://health.wyo.gov/healthcarefin/chip/kid-care-chip-copays/providers-handout-light/,Not Criminal Justice Related -https://chandlerazpd.gov/2015/02/chandler-police-department-offering-non-emergency-text-messaging/,Media Bulletins -http://www.longbeach.gov/police/press-releases/graduation-and-summer-break-safety-tips-1-/,Resources -https://coloradosprings.gov/police-department/article/news/community-assistance-bank-robbery-suspects,Media Bulletins -https://coloradosprings.gov/police-department/article/news/motorcyclist-identified-fountain-boulevard,Media Bulletins -https://www.hickoryhillspd.us/2016/09/message-from-the-chief-of-police-2/,Media Bulletins -https://www.mass.gov/doc/01222016-dmf-scoping-meeting-scheduled-for-february-8-2016-potential-changes-to-summertime/download,Not Criminal Justice Related -https://police.birminghamal.gov/contacts/,Contact Info & Agency Meta -https://sanramon.ca.gov/police/victim,Resources -https://delcopa.gov/ich/resources/covid19/pdf/contactidentification.pdf,Poor Data Source -https://delcopa.gov/publicrelations/releases/2022/delcolaunchesfreefraudsleuthsoftwaretohelpfightpropertyfraud.html,Not Criminal Justice Related -https://spdblotter.seattle.gov/2022/08/26/police-investigating-fatal-shooting-on-aurora/,Media Bulletins -http://www.lafayettepolice.us/faq.aspx?qid=247,Training & Hiring Info -https://covington.va.us/city-government/city-departments/police/police-patrol/tfrydare/,Misc Police Activity -https://www.sandiego.gov/department-document/copy-resolution-no-79288,Not Criminal Justice Related -http://police.portlandmaine.gov/668/finance-committee,Not Criminal Justice Related -http://www.police.wallingfordct.gov/divisions/records-division/,Records Request Info -https://rocklandmaine.gov/events/police-review-committee-meeting-14/,Not Criminal Justice Related -https://alpha.austin.gov/en/police-oversight/formal-complaint-impartial-attitude-and-courtesy-and-other-policy-violations-3/,Complaints & Misconduct -https://sanfordfl.gov/wp-content/uploads/2020/07/police_employment.jpg,Poor Data Source -"https://norfolkne.gov/government/departments/police-division/press-releases/january-12,-2022-press-release.html",Media Bulletins -https://dagsboro.delaware.gov/wp-content/blogs.dir/106/files/police-department/newpolicecars2008-001.jpg,Poor Data Source -https://www.ashevillenc.gov/news/asheville-police-be-a-connection-for-children-during-child-abuse-prevention-month/,Resources -https://policeanalysis.tucsonaz.gov/items/9fb161581d264cf99cc9e6da47dafa36,Poor Data Source -https://www.clintonvillewi.gov/government/departments/police/use_of_force_policies,Policies & Contracts -https://www.auburnwa.gov/city_hall/police/community_programs/crime_prevention/crime_prevention_through_environmental_design,Resources -https://www.newhopemn.gov/city_hall/police_department/community_services_crime_prevention,Resources -https://www.gurnee.il.us/events/2022/05/12/default-calendar/police-department-blood-drive,Misc Police Activity -https://delcopa.gov/courts/pretrialbail.html,Contact Info & Agency Meta -https://www.arlingtontx.gov/news/my_arlington_t_x/news_archive/2017_archived_news/january_2017/citizens_can_help_police_keep_neighborhoods,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality-7th-and-santiago/,Poor Data Source -https://police.bixbyok.gov/faq.aspx?qid=107,Not Criminal Justice Related -https://www.coronadelmar.us/nb-police-department-says-drive-sober-or-get-pulled-over/,Poor Data Source -https://spdblotter.seattle.gov/2016/03/31/police-investigating-two-overnight-shootings-in-rainier-valley/,Media Bulletins -http://www.longbeach.gov/police/press-releases/police-seek-additional-indecent-exposure-victims-1-/,Media Bulletins -https://delcopa.gov/vote/pdf/2022/mail-in-ballot-application_delco(spanish).pdf,Not Criminal Justice Related -https://alpha.austin.gov/es/police-oversight/formal-complaint-impartial-attitude-and-courtesy-and-other-policy-violations-27/,Complaints & Misconduct -https://cityofpowell.us/police-agency/traffic-surveys/ridge-side-dr/,Not Criminal Justice Related -https://www.mass.gov/doc/walpolepolicelieutenant6835rtf/download,Training & Hiring Info -http://lafayettepolice.us/826/fire-blocking,Not Criminal Justice Related -https://spdblotter.seattle.gov/2021/05/04/police-arrest-two-felons-in-stolen-car-with-drugs-and-gun-in-cid/,Media Bulletins -https://delcopa.gov/planning/demodata/ridleyparkborough.html,Poor Data Source -https://chandlerazpd.gov/police-leadership/chris-perez/,Personnel Records -https://www.stpaul.gov/departments/police/level-ii-notifications,Resources -https://www.mass.gov/doc/plaza-justiniano-v-boston-police-department-related-superior-court-decision-81909/download,Court Cases -https://council.seattle.gov/2014/05/22/police-chief-confirmation-schedule-updated/,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/traffic-fatality9/,Media Bulletins -https://www.mass.gov/doc/cordeiro-jeffrey-v-boston-police-department-related-superior-court-decision-13111/download,Court Cases -https://www.stcharlesil.gov/departments/police/overview/tactical-response-unit-tru,Contact Info & Agency Meta -https://southamptontownnypolice.gov/206/printable-permit-applications,Not Criminal Justice Related -https://coloradosprings.gov/police-department/article/news/colorado-springs-police-department-0,Not Criminal Justice Related -https://www.clermontpolice.in.gov/post/traffic-alert-town-parade,Media Bulletins -https://cheswold.delaware.gov/cheswold-police-department-crime-statistics/august-17-activity-report/,Annual & Monthly Reports -https://cityofvanalstyne.us/departments/police/emergency-preparedness/,Resources -https://beaumonttexas.gov/beaumont-police-investigating-aggravated-assault-400-block-of-giles/,Media Bulletins -https://champaignil.gov/2022/02/20/champaign-police-investigating-overnight-battery-shooting/,Media Bulletins -https://coloradosprings.gov/police-department/article/news/cspd-takes-part-calea-accreditation,Media Bulletins -https://www.stmatthewsky.gov/police/how-do-i-submit/,Records Request Info -https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0264/,Complaints & Misconduct -https://johnstown.colorado.gov/news-article/johnstown-police-department-is-participating-in-7-11s-operation-chill,Media Bulletins -https://coloradosprings.gov/police-department/article/news/update-officer-involved-shooting,Media Bulletins -https://www.ashevillenc.gov/department/police/office-of-the-chief/submit-a-commendation/,Contact Info & Agency Meta -https://delcopa.gov/prison/21job.html,Misc Police Activity -https://www.austintexas.gov/content/firefighters-and-police-officers-and-emergency-medical-services-personnel-civil-service-commission-2013-meetings-page-1,Misc Police Activity -http://www.longbeach.gov/police/press-releases/felony-suspects-arrested-and-charged/,Media Bulletins -http://police.portlandmaine.gov/788/sound-oversight-committee,Misc Police Activity -https://www.lasalle-il.gov/shared-police-services-committee-0,Misc Police Activity -https://dps.georgia.gov/press-releases/2008-02-08/gsp-and-atlanta-police-announce-new-partnership,Poor Data Source -https://www.mass.gov/doc/emergencycarrulespromulgated02062008red-linedcopypdf/download,Not Criminal Justice Related -https://www.cityofauburnwa.gov/city_hall/police/dispute_resolution,Not Criminal Justice Related -https://southamptontownnypolice.gov/325/duties-responsibilities,Not Criminal Justice Related -https://icjia.illinois.gov/about/publications/a-profile-of-the-illinois-state-police-motor-vehicle-theft-intelligence-clearinghouse/,Poor Data Source -https://www.colma.ca.gov/documents/executive-assistant-chief-police/,Training & Hiring Info -https://delcopa.gov/publicrelations/releases/2020/votingsystemdemo.html,Not Criminal Justice Related -https://santabarbaraca.gov/press-releases/community-members-help-santa-barbara-police-apprehend-reckless-driver,Media Bulletins -https://www.southamptontownnypolice.gov/faq.aspx?qid=322,Not Criminal Justice Related -https://www.mass.gov/lists/don-northeast-endoscopy,Not Criminal Justice Related -https://delcopa.gov/prison/pdfs/dresscodevisitors2022.pdf,Poor Data Source -http://www.lafayettepolice.us/2067/residential-projects,Not Criminal Justice Related -https://southamptontownnypolice.gov/456/planning-policy-advisory-committee,Not Criminal Justice Related -https://www.sandiego.gov/police/news-center/cold-cases/carole-defleice,Poor Data Source -https://delcopa.gov/publicrelations/releases/2019/htf_communityday.html,Not Criminal Justice Related -http://lafayettepolice.us/1846/berlowitz-development-area-master-plan,Not Criminal Justice Related -https://champaignil.gov/police/about-us/recruitment/,Training & Hiring Info -https://alpha.austin.gov/en/police-oversight/notice-of-complaint-related-to-2022-0364/,Complaints & Misconduct -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/040921blotter.pdf,Dispatch Logs -http://www.ryepolice.us/wp-content/uploads/storm-preparedness-1.jpg,Not Criminal Justice Related -https://champaignil.gov/2013/11/25/champaign-police-respond-to-check-welfare-and-shots-heard-call-2000-block-of-cynthia-drive/,Media Bulletins -https://alpha.austin.gov/police-oversight/formal-complaint-impartial-attitude-4/,Complaints & Misconduct -http://www.longbeach.gov/police/news/$10-000-reward-issued-in-fatal-hit-and-run-case/,Media Bulletins -https://www.antioch.il.gov/wpfb-file/02-14-12-police-pension-agenda-pdf-5/,Poor Data Source -https://police.greenvillesc.gov/faq.aspx?qid=156,Poor Data Source -https://coloradosprings.gov/police-department/article/news/cspd-accident-alert-status-may-7-11-2021,Media Bulletins -https://dccouncil.gov/judiciary-public-safety/copy-of-fi0_fy19_attachment-i/,Not Criminal Justice Related -https://www.coppelltx.gov/268/cpr-aed-courses,Not Criminal Justice Related -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/summary/062121summary.pdf,Dispatch Logs -https://police.bixbyok.gov/formcenter,Contact Info & Agency Meta -https://www.lynchburgvapolice.gov/wp-content/uploads/2022/02/id-2.png,Poor Data Source -https://spdblotter.seattle.gov/2017/10/27/police-recover-gun-stolen-car-and-arrest-two-prowlers/,Media Bulletins -https://delcopa.gov/courts/judges/scanlon.html,Not Criminal Justice Related -http://www.ryepolice.us/logs/police-logs-for-62817-7417,Calls for Service -https://www.east-windsor.nj.us/police-reports,Resources -https://www.ci.san-bernardino.ca.us/city_hall/police_department/records_bureau,Records Request Info -https://www.rosslynfarmspa.gov/police-activity-reports/november-police-activity-report-2021/,Annual & Monthly Reports -https://delcopa.gov/row/notices.html,Not Criminal Justice Related -https://www.pleasantprairiewi.gov/news/2022_news/police_and_fire_station_design_contracts,Poor Data Source -http://lafayettepolice.us/faq.aspx?qid=92,Media Bulletins -https://bolivar.mo.us/shop-with-a-copr/img_1198-2/,Poor Data Source -https://champaignil.gov/2012/10/25/life-as-a-police-officer/,Misc Police Activity -https://alpha.austin.gov/en/police-oversight/formal-complaint-acts-bringing-discredit-upon-the-department-and-employee-domestic-violence/,Poor Data Source -https://springfield-or.gov/city/police-department/open-data/,List of Data Sources -https://www.mass.gov/info-details/audit-of-the-norfolk-sheriffs-office-civil-process-division-objectives-scope-and-methodology,Resources -https://champaignil.gov/2019/05/11/police-investigating-two-overnight-shootings/,Media Bulletins -https://www.doj.state.or.us/venue/portland-police-bureau/,Contact Info & Agency Meta -https://www.mass.gov/doc/regional-assessment-center-initiative-memo-police-chief-and-deputy-police-chief-0/download,Policies & Contracts -https://www.mass.gov/info-details/audit-of-the-quinsigamond-community-college-foundation-objectives-scope-and-methodology,Not Criminal Justice Related -https://www.roseville.ca.us/government/departments/police_department/press_releases,Media Bulletins -https://ose.louisiana.gov/event/police-forensic-scientist-3/,Training & Hiring Info -https://detroitmi.gov/departments/police-department/detroit-police-department-shield-program/faith-based-partners,Resources -https://www.ci.rohnert-park.ca.us/i_want_to__/police_transparency,List of Data Sources -https://delcopa.gov/sustainability/pdf/raise/populationforecast-2015-2045_2016.pdf,Not Criminal Justice Related -https://cityofpowell.us/police-agency/traffic-surveys/traffic-survey-report-4-2-18-1/,Poor Data Source -https://spdblotter.seattle.gov/2019/06/22/police-arrest-man-in-greenwood-following-saturday-morning-stabbing/,Media Bulletins -https://delcopa.gov/council/2016minutes/062216minutes.pdf,Not Criminal Justice Related -https://police.birminghamal.gov/services/,Resources -https://www.stpaul.gov/departments/police/21st-century-policing-report/pillar-2-policy-and-oversight/report-4,List of Data Sources -https://www.coppelltx.gov/faq.aspx?qid=439,Not Criminal Justice Related -https://delcopa.gov/publicrelations/releases/2019/pdf/recoveryeventflyer.pdf,Not Criminal Justice Related -https://cityofmebanenc.gov/police-staff/officer-s-r-jones-min/,Poor Data Source -https://www.southamptontownnypolice.gov/786/2015-budgets,Not Criminal Justice Related -https://spdblotter.seattle.gov/2016/06/19/police-wound-knife-wielding-domestic-violence-suspect-during-confrontation-in-jackson-place-neighborhood/,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality----pacific-coast-highway710-freeway-overpass/,Media Bulletins -https://www.mass.gov/doc/chicopee-maximum-capacity-sports-bar-grille-violation-4-8-13/download,Media Bulletins -https://www.montebelloca.gov/departments/police/news/all_news_articles/etch_catch,Misc Police Activity -https://delcopa.gov/employment/jobpostings/senioradministrativespecialist.html,Not Criminal Justice Related -https://linden-nj.gov/parent-university-helping-cope-with-anxiety-in-your-children/,Not Criminal Justice Related -https://bouldercolorado.gov/events/police-oversight-panel-18,Resources -https://cityofpowell.us/police-agency/traffic-surveys/traffic-survey-report-5-15-18/,Poor Data Source -https://www.sandiego.gov/department-document/san-diego-police-announce-arrest-balboa-park-sexual-assault-case,Media Bulletins -http://www.longbeach.gov/police/press-releases/critical-missing-person---edward-merrill-dephore/,Media Bulletins -http://police.portlandmaine.gov/623/green-packaging-working-group,Not Criminal Justice Related -https://delcopa.gov/ojs/ojsforms/divorcefees.pdf,Contact Info & Agency Meta -http://boro.dormont.pa.us/wp-content/uploads/2022/04/5j3a9282-10-copy-scaled.jpg,Not Criminal Justice Related -https://delcopa.gov/publicrelations/releases/2020/gamingauthoritymeeting.html,Not Criminal Justice Related -https://wyoming.delaware.gov/wp-content/uploads/sites/33/nggallery/3rd-annual-wyoming-police-department-fishing-derby/p1010883.jpg,Poor Data Source -https://townoflandisnc.gov/departments/public-safety/police-department/faqs/,Resources -http://www.longbeach.gov/police/press-releases/motorcycle-safety-operation-proves-effective-2-/,Media Bulletins -https://www.wakeforestnc.gov/police/operations/special-operations/tactical-services-unit,Contact Info & Agency Meta -https://jordanmn.gov/city-departments/jordan-police-department/frequently-used-forms/,Training & Hiring Info -https://delcopa.gov/planning/forms.html,Not Criminal Justice Related -https://delcopa.gov/courts/domesticrelations/forms.html,Not Criminal Justice Related -https://delcopa.gov/planning/pdf/greenspace/taskforce/andrew bunting.pdf,Not Criminal Justice Related -https://www.stpaul.gov/departments/police/administration-office-chief/support-services-administration/police-impound-lot-1,Resources -https://www.sandiego.gov/police/news-center/cold-cases/dave-earl-carr,Media Bulletins -https://bolivar.mo.us/shop-with-a-copr/img_1184-2/,Poor Data Source -https://coloradosprings.gov/police-department/article/news/update-december-21-officer-involved,Officer Involved Shootings -https://www.lakewoodoh.gov/coffee-with-a-cop-set-for-friday-december-1st/,Misc Police Activity -https://www.mass.gov/doc/lynn-police-credit-union-cra-public-evaluation-0/download,Poor Data Source -https://www.southamptontownnypolice.gov/1197/hampton-hills-association---bulkhead,Not Criminal Justice Related -https://coloradosprings.gov/police-department/page/patrol-bureau,Contact Info & Agency Meta -https://norfolkne.gov/government/departments/police-division/press-releases/august-14-press-release.html,Media Bulletins -https://bouldercolorado.gov/news/boulder-police-looking-unlawful-sexual-contact-suspect,Media Bulletins -http://police.portlandmaine.gov/225/fire-department-careers,Not Criminal Justice Related -https://www.arlingtontx.gov/news/my_arlington_t_x/police_news_releases/fatality_crash_report__2019-00690088,Media Bulletins -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/summary/031621summary.pdf,Dispatch Logs -http://www.ryepolice.us/announcements/state-of-new-hampshire-department-of-safety-press-release-extreme-heat/attachment/heat-press-release,Media Bulletins -http://www.ryepolice.us/logs/police-logs-for-3-6-19-3-12-19,Daily Activity Logs -https://delcopa.gov/planning/programsandinitiatives/bicyclemasterplans.html,Not Criminal Justice Related -https://delcopa.gov/council/2015minutes/092315minutes.pdf,Not Criminal Justice Related -https://www.littlerock.gov/news/new-little-rock-police-department-chief-to-hold-public-meetings-in-all-city-wards/,Media Bulletins -https://www.mass.gov/event/scoping-meeting-ma-response-to-anticipated-changes-to-federal-atlantic-large-whale-take-reduction-plan-affecting-trap-fisheries-2020-02-19t180000-0500-2020-02-19t200000-0500,Not Criminal Justice Related -https://wrightstown.us/police-reports/11-29-2015-12-05-2015/,Media Bulletins -https://sanramon.ca.gov/our_city/departments_and_divisions/police/alarms,Policies & Contracts -http://www.longbeach.gov/police/press-releases/dui-driver-s-license-checkpoint-planned-this-weekend-3-/,Media Bulletins -https://www.stcharlesil.gov/departments/police/overview/bike-patrol,Media Bulletins -https://ridgelandsc.gov/police-department/daily-arrest-reports-december-2019,Arrest Records -https://barnegatpolice.us/wp-content/uploads/2018/05/contactuspageheader-300x135.jpg,Poor Data Source -https://www.bedminster.us/police_fire_rescue/far_hills__bedminster_fire_dept,Not Criminal Justice Related -https://brewermaine.gov/news/brewer-police-pull-woman-from-joshua-chamberlain-bridge/bridges-1gd-jpg/,Poor Data Source -https://www.mass.gov/how-to/register-for-cops-on-bicycles-with-education-for-bicyclists-cobweb,Misc Police Activity -https://ijjc.illinois.gov/newsroom/mayor-emanuel-chicago-police-department-department-family-and-support-services-announce-40/,Poor Data Source -https://www.kennesaw-ga.gov/business-resources/copy-of-buttons-for-business-assistance/,Not Criminal Justice Related -https://www.lynchburgvapolice.gov/news-updates/shots-fired-on-hillside-court/,Media Bulletins -https://delcopa.gov/planning/pdf/mapping/norwood.pdf,Not Criminal Justice Related -https://delcopa.gov/sustainability/commission/meetingminutes/sustcommmtg_minutes_2021-9-17.pdf,Not Criminal Justice Related -https://delcopa.gov/ich/resources/covid19/pdf/govwolf_dangersofnoprotection.pdf,Poor Data Source -http://lafayettepolice.us/754/indiana-building-code-occupancy-classifi,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/dui-checkpoint-nets-one-arrest1/,Media Bulletins -https://alpha.austin.gov/es/police-oversight/indefinite-suspension-of-officer-bryan-black-and-appeals-finding/,Poor Data Source -https://delcopa.gov/council/2017minutes/121317minutes.pdf,Not Criminal Justice Related -http://www.ryepolice.us/pressrelease/stolen-f-350-with-dump-trailer,Media Bulletins -https://www.williamsaz.gov/departments_and_services/police_department/forms,Poor Data Source -https://www.arlingtontx.gov/news/my_arlington_t_x/news_archive/2017_archived_news/october_2017/arlington_polices_national_night_out_continues,Poor Data Source -http://lafayettepolice.us/144/find,Resources -http://www.longbeach.gov/insidelb/blogs/conversations-with-a-long-beach-police-department-crime-analyst/,Poor Data Source -https://www.dps.ms.gov/capitol-police/patrol-division,Contact Info & Agency Meta -http://police.portlandmaine.gov/1125/neighborhoods-islands-directory,Not Criminal Justice Related -http://www.lafayettepolice.us/1122/rent-a-pool,Not Criminal Justice Related -https://delcopa.gov/sustainability/pdf/raise/highlandavetod2009.pdf,Not Criminal Justice Related -http://www.ryepolice.us/logs/police-logs-for-11-7-18-11-13-18,Daily Activity Logs -https://champaignil.gov/police-slide-sitemap.xml,Poor Data Source -https://www.stpaul.gov/departments/police/saint-paul-police-manual/10000-department-policy,Policies & Contracts -https://coloradosprings.gov/police-department/article/news/motorcycle-driver-fatal-accident,Media Bulletins -https://dccouncil.gov/judiciary-public-safety/copy-of-ag0_fy_2019-schedule-a-1/,Not Criminal Justice Related -https://hilliardohio.gov/hilliard-schools-and-police-collaborate-with-attorney-general-to-prevent-school-violence/,Media Bulletins -https://spdblotter.seattle.gov/2019/08/13/police-investigating-after-woman-pepper-sprays-employee-at-university-district-store/,Media Bulletins -https://www.huntsvilleal.gov/videos/never-forgotten-huntsville-police-remembers-fallen-officers/,Poor Data Source -https://northbrunswicknj.gov/programs_and_service/obtain-a-police-incident-report/,Resources -https://www.pullman-wa.gov/government/departments/police_department/news___statistics/national_public_safety_telecommunicators_week_2022,Media Bulletins -https://www.huntsvilleal.gov/videos/huntsville-police-honor-fallen-officers-with-remembrance-ceremony/,Poor Data Source -https://champaignil.gov/2012/04/25/police-investigate-shooting-clock-st-bellefontaine-st/,Media Bulletins -https://www.coppelltx.gov/916/interlibrary-loan,Not Criminal Justice Related -https://www.southamptontownnypolice.gov/bids.aspx,Poor Data Source -https://www.coppelltx.gov/389/crime-prevention,Resources -https://www.giddingspolice-tx.us/join-the-force,Training & Hiring Info -https://delcopa.gov/council/2021minutes/040721minutes.pdf,Not Criminal Justice Related -https://icjia.illinois.gov/about/publications/community-policing-accountability-in-management-in-the-chicago-police-department/,Policies & Contracts -https://dps.georgia.gov/job-vacancy-announcement-georgia-capitol-police-officer-5,Media Bulletins -https://ose.louisiana.gov/event/police-officer-first-class-11/,Training & Hiring Info -https://www.bristolri.gov/departments/police/police-branches/honor-guard/,Poor Data Source -https://police.greenvillesc.gov/424/explore-downtown,Not Criminal Justice Related -http://lafayettepolice.us/595/business-owners,Not Criminal Justice Related -https://delcopa.gov/vote/pdf/2020/pollworkers/howtovotewiththescannerposter.pdf,Not Criminal Justice Related -https://columbiacitypolice.us/photogallary.html,Poor Data Source -https://www.mass.gov/doc/david-casey-v-town-of-natick-police-department/download,Court Cases -http://www.ryepolice.us/announcements/rye-public-safety-building-open-house,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/missing-child-found/,Media Bulletins -https://coloradosprings.gov/police-department/article/news/drug-take-back-april-24th-2021,Media Bulletins -https://alpha.austin.gov/en/police-oversight/2020-06-08-4/,Poor Data Source -https://unioncitypa.us/police/uc-police-employment-application-2022/,Training & Hiring Info -https://www.ci.northville.mi.us/services/police_department/service_fees,Policies & Contracts -https://rockymountnc.gov/police/,Contact Info & Agency Meta -https://ci.piedmont.ca.us/services___departments/police/transparency_portal/department_policies,Poor Data Source -http://www.longbeach.gov/police/press-releases/murder-investigation3/,Media Bulletins -https://champaignil.gov/2013/12/04/champaign-police-make-arrest-in-roper-street-homicide/,Media Bulletins -http://www.longbeach.gov/police/press-releases/don-t-spend-the-holidays-in-jail--drive-safely-or-get-pulled-over/,Media Bulletins -https://portorchardwa.gov/press-releases/pr-22-003-police-investigate-shooting-related-to-stolen-vehicle/,Media Bulletins -http://www.ryepolice.us/wp-content/uploads/harbor-rd-closure.png,Poor Data Source -https://police.greenvillesc.gov/736/heritage-green,Not Criminal Justice Related -https://delcopa.gov/publicrelations/releases/2019/emergencypreparedness.html,Not Criminal Justice Related -http://www.lafayettepolice.us/1798/accessibility,Not Criminal Justice Related -https://www.lynchburgvapolice.gov/department-information/,Contact Info & Agency Meta -https://police.greenvillesc.gov/faq.aspx?qid=575,Not Criminal Justice Related -https://delcopa.gov/publicrelations/releases/2020/keepthecheerhere.html,Not Criminal Justice Related -https://champaignil.gov/police/resources/bullying-prevention/,Resources -https://www.foxcrossingwi.gov/departments/police-department/resources/bullies/,Poor Data Source -http://lafayettepolice.us/761/location-of-smoke-detectors,Not Criminal Justice Related -https://sf.gov/get-copy-confidential-marriage-certificate,Resources -https://www.mass.gov/doc/westfordpolicesergeant5443rtf/download,Training & Hiring Info -https://www.mass.gov/doc/chicopee-city-hall-april-2007-0/download,Not Criminal Justice Related -https://joinstatepolice.ny.gov/15-mile-run,Training & Hiring Info -https://estespark.colorado.gov/departments/police/operations-landing-page,Contact Info & Agency Meta -https://delcopa.gov/planning/pdf/mapping/brookhaven.pdf,Not Criminal Justice Related -https://www.mass.gov/doc/instructions-dcamm-scoping-form-for-maab-compliance/download,Not Criminal Justice Related -https://www.jacksontn.gov/government/departments/police/citizen_engagement/national_night_out,Misc Police Activity -https://westplains.gov/first-annual-community-police-academy/,Poor Data Source -https://chandlerazpd.gov/2011/02/police-need-help-identifying-burglary-and-fraud-suspects/,Media Bulletins -https://www.southamptontownnypolice.gov/faq.aspx?qid=284,Not Criminal Justice Related -https://www.sandiego.gov/department-document/san-diego-police-arrest-suspect-horton-plaza-homicide,Media Bulletins -https://www.providenceri.gov/police-city-officials-announce-progress-continued-efforts-related-illegal-vehicles/press-release-illegal-vehicles/,Poor Data Source -https://delcopa.gov/publicrelations/releases/2019/emergencypreparedness.html,Not Criminal Justice Related -https://beaumonttexas.gov/bpd-police-memorial-ceremony-thursday-may-19-2022-at-900-am/,Poor Data Source -https://www.osc.state.ny.us/state-agencies/payroll-bulletins/state-police/sp-103-fitness-bonus-payment-fiscal-year-2007-08,Training & Hiring Info -http://www.longbeach.gov/police/press-releases/two-cited-during-undercover-vice-operation/,Media Bulletins -https://www.jerseycitynj.gov/news/pressreleases20182017/jersey_city_police_department_reaches_record_numbe,Media Bulletins -https://delcopa.gov/publicrelations/releases/2019/pdf/youthmentalhealthfirstaiddec3.pdf,Not Criminal Justice Related -https://www.roseville.ca.us/government/departments/police_department/resources/crime___arrest_information/neighborhood_police_activity_digests,Poor Data Source -https://delcopa.gov/council/index.html,Not Criminal Justice Related -https://www.waynesvillenc.gov/services/file-police-report,Contact Info & Agency Meta -https://sanramon.ca.gov/our_city/departments_and_divisions/police/divisions_and_units/youth_and_family/youth_resource_officer,Contact Info & Agency Meta -https://www.mass.gov/locations/chicopee-retirement-system/locations,Not Criminal Justice Related -https://martinsville.in.gov/departments-services/police-department/,Contact Info & Agency Meta -https://champaignil.gov/2020/10/22/champaign-police-seeking-armed-robbery-suspect/,Media Bulletins -https://alpha.austin.gov/en/police-oversight/formal-complaint-arrest-requirement-assaultive-offenses-and-other-policy-violations/,Poor Data Source -https://camptonhills.illinois.gov/village-of-campton-hills-police-department/request-for-public-records-form/,Records Request Info -https://southamptontownnypolice.gov/1000/adopted-studies,Not Criminal Justice Related -https://www.antioch.il.gov/wpfb-file/12-11-12-police-pension-agenda-pdf-4/,Media Bulletins -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/040621blotter.pdf,Dispatch Logs -https://delcopa.gov/courts/judges/scanlon.html,Poor Data Source -https://www.mass.gov/doc/opencompetitiveeducationandexperienceratingworksheetforpoliceofficerdoc/download,Training & Hiring Info -https://www.troyny.gov/troy-police-seek-publics-help-in-solving-double-homicide-case/,Poor Data Source -https://www.sandyspringsgapolice.gov/apartment-safety-checker/,Resources -http://www.lafayettepolice.us/782/recruitment,Training & Hiring Info -https://coloradosprings.gov/police-department/page/meth-lab-cleanup,Poor Data Source -https://training.detroitmi.gov/departments/police-department/detroit-police-department-office-civil-rights/definitions-consent-decree,Policies & Contracts -http://police.portlandmaine.gov/676/design-manual-overhaul-2021,Not Criminal Justice Related -https://www.antioch.il.gov/event/police-pension-board-special-meeting-2/,Poor Data Source -https://detroitmi.gov/bn/departments/paulaisa-baibhaaga/detroit-police-department-shield-program/paraogaraama-ebam-saebaa,Poor Data Source -https://www.newarknj.gov/news/mayor-barak-and-public-safety-director-ambrose-release-details-on-stepped-up-police-presence-for-new-years-eve,Media Bulletins -https://www.huntsvilleal.gov/city-calendar-event/deadline-apply-58th-session-huntsville-police-academy/,Training & Hiring Info -https://champaignil.gov/2022/05/19/police-department-hosts-employee-awards-ceremony/,Not Criminal Justice Related -https://www.antiochca.gov/police/animal-services/animal-services-faqs/,Poor Data Source -http://police.portlandmaine.gov/449/contact-us,Contact Info & Agency Meta -https://hollister.ca.gov/government/city-departments/police/comments/,Contact Info & Agency Meta -https://delcopa.gov/employment/jobpostings/clerktypist2_childrenservices.html,Not Criminal Justice Related -https://newtownohio.gov/police/department-news/,Media Bulletins -https://www.stpaul.gov/departments/police/projects,Not Criminal Justice Related -https://www.coppelltx.gov/faq.aspx?qid=396,Not Criminal Justice Related -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/062121blotter.pdf,Dispatch Logs -https://www.southamptontownnypolice.gov/1696/2022-wqip---applications-proposal-summar,Not Criminal Justice Related -https://www.mass.gov/doc/municipal-police-training-committee-mptc-meeting-minutes-042022/download,Training & Hiring Info -https://delcopa.gov/publicrelations/releases/2019/mumps.html,Not Criminal Justice Related -https://port-orange.us/2014/11/18/vehicle-break-ins-rise-port-orange-police-warn-residents/,Media Bulletins -https://delcopa.gov/courts/judges/capuzzi.html,Poor Data Source -https://www.mass.gov/doc/monteiro-lencol-v-boston-police-department-101614/download,Court Cases -http://www.lafayettepolice.us/321/landlordowner-information,Not Criminal Justice Related -https://delcopa.gov/electionsbureau/absenteevoting.html,Not Criminal Justice Related -https://coloradosprings.gov/police-department/article/news/traffic-fatality-s-chelton-road-and,Media Bulletins -https://strafford.nh.gov/event/police-chief-search-committee-3/,Training & Hiring Info -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/050321blotter.pdf,Daily Activity Logs -https://delcopa.gov/controller/pdf/retirement/2018/0523retirementboardminutes.pdf,Not Criminal Justice Related -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/060421blotter.pdf,Dispatch Recordings -https://www.knoxvilletn.gov/government/mayors_office/c_o_v_i_d-19___coronavirus_/stress_and_coping/knox_well/general_adult_resources/kid___parent_resources,Not Criminal Justice Related -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/summary/060521summary.pdf,Dispatch Logs -https://southcoffeyvilleok.gov/police-department/city-hall-south-coffeyville/,Not Criminal Justice Related -https://champaignil.gov/2017/12/22/police-investigate-shooting-2400-block-n-neil-street/,Media Bulletins -http://police.portlandmaine.gov/279/general-assistance-reports,Poor Data Source -https://sheriff.berkeleycountysc.gov/community/citizen-police-academy/,Training & Hiring Info -https://www.sandiego.gov/department-document/copy-sublease-3,Not Criminal Justice Related -https://www.hayward-ca.gov/discover/news/apr21/police-blotter-april-4-10-2021-0,Crime Maps & Reports -https://ose.louisiana.gov/event/police-communications-officer-57/,Poor Data Source -https://www.southamptontownnypolice.gov/466/emergency-notifications,Not Criminal Justice Related -https://www.osc.state.ny.us/state-agencies/payroll-bulletins/state-police/sp-34-2000-holiday-bonus-pay,Media Bulletins -http://www.longbeach.gov/police/press-releases/dui-enforcement-operation-1-/,Media Bulletins -https://pharr-tx.gov/individual-arrested-by-pharr-police-dies-at-hospital/,Media Bulletins -http://www.longbeach.gov/police/press-releases/fireworks-seized/,Media Bulletins -https://www.minneapolismn.gov/government/programs-initiatives/police-explorers/police-explorer-form/,Resources -https://www.antiochca.gov/police/child-safety-programs-events/,Misc Police Activity -https://delcopa.gov/purchasing/bidsprops/delcomicrowavekmz.zip,Not Criminal Justice Related -https://www.lynchburgvapolice.gov/news-updates/crime-of-the-week-may-18-2021/,Media Bulletins -https://champaignil.gov/2015/04/21/2014-police-department-employee-awards/,Misc Police Activity -https://www.sandiego.gov/department-document/sdpd-investigate-attempted-murder-police-officer-jamacha-lolita,Media Bulletins -https://southamptontownnypolice.gov/faq.aspx?qid=257,Not Criminal Justice Related -https://www.hayward-ca.gov/discover/news/may21/police-blotter-may-16-22-2021,Crime Maps & Reports -https://www.lakewoodoh.gov/coffee-with-a-cop-set-for-friday-october-26th/,Misc Police Activity -https://rexburg.us/police-ask-for-help-finding-woman-who-went-missing-tuesday-in-juab-county/,Media Bulletins -https://www.minneapolismn.gov/government/programs-initiatives/community-safety/focus-areas/alternatives-police-response/new-pilot-response/,Policies & Contracts -https://www.minneapolismn.gov/government/departments/police/precincts/precinct-4/,Contact Info & Agency Meta -https://sanfordfl.gov/government/police/,Contact Info & Agency Meta -https://columbiacitypolice.us/documents/firearm responsibility.pdf,Resources -https://santabarbaraca.gov/press-releases/magical-winter-wonderland-experience-deserving-families-hosted-santa-barbara-police,Not Criminal Justice Related -https://www.burienwa.gov/residents/public_safety/police/lead_program,Resources -https://chandlerazpd.gov/2019/11/vehicle-burglary-crew-arrested-after-fleeing-from-police/,Media Bulletins -https://www.southamptontownnypolice.gov/182/teen-assessment-project,Resources -https://alpha.austin.gov/police-oversight/2020-08-17-2/,Poor Data Source -https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0021/,Poor Data Source -https://rockfordil.gov/calendars/category/police-department/,Poor Data Source -https://delcopa.gov/council/2019minutes/121819minutes.pdf,Not Criminal Justice Related -https://www.mass.gov/service-details/becoming-an-environmental-police-officer,Training & Hiring Info -https://www.roundrocktexas.gov/wp-content/uploads/2021/12/recycling-wide-copy-1.jpg,Poor Data Source -https://www.huntsvilleal.gov/city-calendar-event/apply-to-be-a-huntsville-police-officer/,Training & Hiring Info -https://coloradosprings.gov/police-department/page/cspd-salary-benefits,Resources -https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0680/,Poor Data Source -https://www.mass.gov/doc/municipal-police-training-committee-mptc-meeting-minutes-62119/download,Not Criminal Justice Related -https://delcopa.gov/courts/pdf/emergencyjudicialorders/presidentjudgeadministrativeorderfamilysectionoperationalandschedulingprotocols.pdf,Court Cases -https://alpha.austin.gov/es/health-safety/accountability-and-transparency-in-policing/police-feedback-and-records/bwc-dmav-data-analysis-methodology/,Poor Data Source -https://www.goldenbeach.us/documents/reso-1550-03-authorizing-the-donation-of-an-obsolete-police-vehicle-light-bar/,Not Criminal Justice Related -https://www.doravillepolice.us/join-dpd/requirements/,Training & Hiring Info -http://www.longbeach.gov/police/press-releases/arrest-made-in-2-murder-cases/,Media Bulletins -https://www.mass.gov/doc/robert-dececcopdf/download,Poor Data Source -https://delcopa.gov/recycle/paint.html,Poor Data Source -https://www.pinevillenc.gov/government/departments/police/services/,Resources -https://alpha.austin.gov/en/police-oversight/notice-of-complaint-related-to-2022-0800/,Poor Data Source -https://www.coppelltx.gov/203/election-information,Not Criminal Justice Related -https://cheswold.delaware.gov/cheswold-police-department-crime-statistics/october-14-activity-report/,Incident Reports -http://www.longbeach.gov/police/press-releases/$10000-reward-issued-in-fatal-hit---run-investigation/,Media Bulletins -https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/summary/031522summary.pdf,Poor Data Source -http://www.lafayettepolice.us/faq.aspx?qid=168,Not Criminal Justice Related -https://www.hayward-ca.gov/police-department/programs/hayward-eyes,Resources -https://cheswold.delaware.gov/cheswold-police-department-crime-statistics/may-17-activity-report/,Daily Activity Logs -https://alpha.austin.gov/en/health-safety/accountability-and-transparency-in-policing/police-feedback-and-records/bwc-dmav-data-analysis-additional-information/,Poor Data Source -https://delcopa.gov/publicrelations/releases/2020/blooddrive.html,Not Criminal Justice Related -http://www.ryepolice.us/wp-content/uploads/deterra-intro.jpg,Poor Data Source -https://www.mass.gov/doc/merging-of-police-officer-list-memorandum-to-police-appointing-authorities/download,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/arrest-made-in-sexual-assault-case/,Media Bulletins -https://www.roundrocktexas.gov/news/police-identify-victim-fatal-auto-pedestrian-crash-mays-street/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-26-/,Media Bulletins -https://alpha.austin.gov/en/police-oversight/formal-complaint-opo-declines-to-make-a-recommendation-5/,Poor Data Source -https://www.mass.gov/news/dighton-police-chief-robert-macdonald-pays-7000-civil-penalty-for-conflict-of-interest-law-violations,Media Bulletins -https://www.mass.gov/doc/ung-dararith-v-lowell-police-department-82009/download,Court Cases -https://www.coppelltx.gov/482/water-backflow-prevention,Not Criminal Justice Related -http://www.hickoryhillspd.us/2022/05/the-hickory-hills-police-departments-distracted-driving-enforcement-results/,Resources -http://www.longbeach.gov/police/press-releases/charges-filed-in-murder-case/,Media Bulletins -https://www.antioch.il.gov/wpfb-file/11-29-10-police-and-fire-agenda-pdf-2/,Poor Data Source -https://delcopa.gov/council/2015minutes/042215minutes.pdf,Policies & Contracts -https://santabarbaraca.gov/press-releases/santa-barbara-police-department-promotes-three-officers,Personnel Records -https://www.ci.bonney-lake.wa.us/news/what_s_new/message_from_the_police_chief_on_2021_legislation,Poor Data Source -https://springfield-or.gov/event/springfield-police-advisory-committee-spac-21/,Not Criminal Justice Related -https://www.rockvillecentrepolice.us/situational-awareness/,Media Bulletins -https://www.minneapolismn.gov/government/departments/police/precincts/,Geographic -https://alpha.austin.gov/es/police-oversight/official-complaint-documents-related-to-protests/,Poor Data Source -https://delcopa.gov/publicrelations/releases/2020/spottedlanternflytreatment.html,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/murder-suicide-investigation/,Media Bulletins -https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/blotter/022722blotter.pdf,Poor Data Source -https://pittsburghpa.gov/files/police/orders/ch6/69-05-pictures-videos-&-audio-recordings-of-police-officers-while-in-public-spaces.pdf,Poor Data Source -https://www.southamptontownnypolice.gov/366/skate-parks,Resources -http://www.longbeach.gov/police/press-releases/attempt-murder-suspect-arrested/,Media Bulletins -https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0201/,Poor Data Source -https://pittsburghpa.gov/police/task-force-police-reform,Resources -https://pittsburghpa.gov/police/police-zone4,Contact Info & Agency Meta -https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/summary/092522summary.pdf,Poor Data Source -https://www.littlerock.gov/media/4332/robert-ryan-hunter-copy.png?width=204&height=248,Poor Data Source -https://sanfordfl.gov/wp-content/uploads/2021/10/rateourservice_police.png,Poor Data Source -http://www.lafayettepolice.us/faq.aspx?qid=116,Complaints & Misconduct -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/summary/071921summary.pdf,Poor Data Source -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/summary/063021summary.pdf,Dispatch Logs -https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0967/,Poor Data Source -http://www.longbeach.gov/police/press-releases/traffic-fatality---harvy-way-and-bellflower-blvd/,Media Bulletins -https://hilliardohio.gov/remembering-hilliard-police-officer-sean-johnson/,Not Criminal Justice Related -https://www.mass.gov/doc/william-j-wagner-president-chicopee-savings-bank/download,Not Criminal Justice Related -https://www.mass.gov/locations/state-police-boston-barracks/locations,Geographic -https://www.mass.gov/doc/lynch-matthew-v-bridgewater-police-department-121913/download,Court Cases -http://www.lafayettepolice.us/1587/cpz-history,Not Criminal Justice Related -https://police.crystalmn.gov/g_o_v_e_r_n_m_e_n_t/departments_a-_z/assessing,Not Criminal Justice Related -https://broadview-il.gov/documents/police-department-board-report-may-2022/,Poor Data Source -https://statepatrol.nebraska.gov/nsp-investigating-milford-police-officer-involved-shooting,Poor Data Source -http://www.longbeach.gov/police/press-releases/traffic-fatality-wardlow-and-magnolia/,Media Bulletins -https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0973/,Poor Data Source -https://data.naperville.il.us/datasets/police-department-accidents,Poor Data Source -https://www.southamptontownnypolice.gov/292/sag-harbor,Not Criminal Justice Related -https://www.sandyspringsgapolice.gov/intelligence-and-technology-division/,Contact Info & Agency Meta -https://www.colma.ca.gov/documents/executive-assistant-chief-police/jd-executive-assistant-to-chief-of-police-6-24/,Media Bulletins -https://brookfieldil.gov/publication/05510-may-5-2010-fire-and-police-commission/,Poor Data Source -https://delcopa.gov/publicrelations/releases/2021/hurricaneida.html,Not Criminal Justice Related -https://www.goldenbeach.us/police-department/beach-patrol/,Misc Police Activity -https://www.southbendin.gov/job/police-officer-lateral-entry-in-south-bend/,Training & Hiring Info -https://delcopa.gov/treasurer/forms/bingo_law.pdf,Not Criminal Justice Related -https://www.stpaul.gov/departments/police/blueprint-safety,Policies & Contracts -https://alpha.austin.gov/police-oversight/formal-complaint-impartial-attitude-and-courtesy-and-other-policy-violations55/,Complaints & Misconduct -https://www.osc.state.ny.us/state-agencies/payroll-bulletins/state-police/sp-141-fitness-bonus-payment-state-fiscal-year-2011-12,Media Bulletins -https://cityofsalemnj.gov/police-fire-ems/,Contact Info & Agency Meta -https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0547/,Complaints & Misconduct -https://www.southamptontownnypolice.gov/faq.aspx?qid=505,Poor Data Source -https://manitowoccountywi.gov/departments/joint-dispatch-center/policefireems-contact-information/,Contact Info & Agency Meta -http://www.lafayettepolice.us/2201/outdoor-maintenance,Resources -https://www.edmondswa.gov/government/departments/police_department/security_camera_registration,Resources -https://police.crystalmn.gov/police/contact_us/crime_report,Poor Data Source -https://delcopa.gov/treasurer/pdf/2021reassessmentvalues/10.pdf,Annual & Monthly Reports -https://www.dps.nm.gov/blog/2021/12/08/update-cancel-silver-alert-rio-rancho-police-department-eric-engquist/,Incident Reports -https://www.lynchburgvapolice.gov/news-updates/e-c-glass-on-lockdown-due-to-suspicious-phone-call/,Media Bulletins -https://delcopa.gov/prison/mail.html,Poor Data Source -https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0868/,Poor Data Source -http://www.longbeach.gov/police/press-releases/roadway-safety-is-important-for-everyone-to-follow/,Policies & Contracts -http://www.tampa.gov/police/info/domestic-violence/options,Resources -https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/summary/052722summary.pdf,Daily Activity Logs -https://www.roseville.ca.us/government/departments/police_department/crime_log/crime_log_may_14__2021_-_june_04__2021,Poor Data Source -https://champaignil.gov/police/community-engagement/neighborhood-watch/,Resources -https://www.osc.state.ny.us/state-agencies/payroll-bulletins/state-police/sp-59-dues-increase-rehired-retirees-who-are-members-police-benevolent,Media Bulletins -https://cityofpowell.us/government/building-department/city-of-powell-commercial-building/checklist-cop-comm-tent-01-08-19/,Resources -https://alpha.austin.gov/en/police-oversight/notice-of-complaint-related-to-2022-0900/,Poor Data Source -https://www.mass.gov/doc/fas-31-2018-hcpcs-code-revisions-new-prior-authorization-requirement-for-knee-arthroscopy/download,Not Criminal Justice Related -https://www.coppelltx.gov/1051/s-belt-line-reconstruction-updates,Not Criminal Justice Related -https://delcopa.gov/planning/pubs/delco2035economicdevelopmentplan.html,Not Criminal Justice Related -https://www.farmingtonmn.gov/government/departments/police/divisions/crime_scene_unit,Resources -https://cityofpowell.us/reports/auto-draft-91/07-2017-police-report/,Annual & Monthly Reports -https://beaumonttexas.gov/beaumont-police-investigating-aggravated-robbery-grant-irving-intersection/,Media Bulletins -https://www.roseville.ca.us/government/departments/police_department/contact_roseville_police/ride-_along_application,Poor Data Source -https://www.stpaul.gov/departments/police/department-history,Not Criminal Justice Related -https://police.greenvillesc.gov/526/colonel-elias-earle-historic-district,Not Criminal Justice Related -https://delcopa.gov/jdboard/pdfs/agenda_2021_12_21.pdf,Poor Data Source -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/summary/010622summary.pdf,Daily Activity Logs -https://www.harrisonburgva.gov/online-police-reporting-faq,Poor Data Source -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/summary/bike-patrol.pdf,Media Bulletins -https://edenny.gov/honoring-edens-police-chief-and-lieutenant/,Media Bulletins -http://www.longbeach.gov/police/press-releases/toddlers-found-alone--police-asking-for-help-in-determining-their-identity-and-locating-parents/,Media Bulletins -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/arrests/070121arrests.pdf,Arrest Records -https://www.florenceaz.gov/florence-police-department-citizen-academy/,Resources -https://coloradosprings.gov/police-department/article/news/homicide-investigation-3200-block-heather,Media Bulletins -https://www.arlingtonva.us/government/projects/plans-studies/land-use/crystal-city-building-heights-study/process-scope-timeline,Media Bulletins -https://cityofspoonerwi.gov/spooner-police-ordinances/,Resources -https://www.antioch.il.gov/wpfb-file/01-17-12-police-and-fire-agenda-pdf-3/,Poor Data Source -https://www.sandyspringsgapolice.gov/chatcomm911/,Resources -https://training.detroitmi.gov/departments/police-department/project-green-light-detroit/agreements,Not Criminal Justice Related -https://delcopa.gov/publicrelations/releases/2021/mailballotrequestdeadline.html,Media Bulletins -https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0204/,Complaints & Misconduct -https://www.dps.nm.gov/blog/2022/03/05/update-3-nmsp-investigates-fatal-crash-on-i-25-involving-the-santa-fe-police-department-during-pursuit-of-carjacking-and-kidnapping-suspect/,Media Bulletins -https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0481/,Complaints & Misconduct -https://delcopa.gov/planning/education/plannersportfolios/plannersportfolioaginginplace.html,Not Criminal Justice Related -https://www.mass.gov/doc/boston-police-department-drug-test-appeals-related-superior-court-decision-8222/download,Misc Police Activity -https://www.montgomerycountymd.gov/ccm/mcpolicebeat.html,Media Bulletins -https://southamptontownnypolice.gov/faq.aspx?qid=546,Resources -https://southamptontownnypolice.gov/187/youth-advisory-committee,Resources -https://delcopa.gov/vote/news/20emergencyabsenteeballots.html,Not Criminal Justice Related -https://www.antiochca.gov/police/alarm-registration/,Resources -https://coloradosprings.gov/police-department/article/news/recovered-property-february-2021,Media Bulletins -https://alpha.austin.gov/en/police-oversight/notice-of-complaint-related-to-2022-0868/,Complaints & Misconduct -https://delcopa.gov/hcd/pdfs/leadinformationforhomeowners.pdf,Not Criminal Justice Related -https://www.sandiego.gov/department-document/police-identify-attempted-murder-victim-oak-park,Media Bulletins -https://ci.san-bernardino.ca.us/news/archived_news/downtown_specific_plan_scoping_meeting,Not Criminal Justice Related -https://springfield-or.gov/coffee-with-a-cop-scheduled-for-afternoon-on-november-4th/,Media Bulletins -https://alpha.austin.gov/police-oversight/2020-08-17/,Poor Data Source -https://coloradosprings.gov/police-department/article/news/update-homicide-investigation-200-block-e,Incident Reports -https://normandyparkwa.gov/police-services/,Media Bulletins -https://www.southamptontownnypolice.gov/1557/southampton-sustainability-drawdown-east,Poor Data Source -https://www.pleasantprairiewi.gov/departments/police/news/police_and_fire___rescue_news_releases/police_investigate_1993_john_doe_case,Media Bulletins -https://www.roundrocktexas.gov/wp-content/uploads/2020/02/rrpd_police_patch.png,Poor Data Source -https://police.greenvillesc.gov/faq.aspx?qid=546,Not Criminal Justice Related -https://southamptontownnypolice.gov/891/dune-road-reconstruction,Not Criminal Justice Related -http://www.ryepolice.us/./pressrelease,Media Bulletins -https://www.waterloo.il.us/departments/police-department/,Media Bulletins -https://townofspringfield.colorado.gov/police-department-9,Resources -https://ose.louisiana.gov/event/police-lieutenant-10/,Poor Data Source -https://coloradosprings.gov/police-department/article/news/seeking-community-assistance,Media Bulletins -https://coloradosprings.gov/police-department/article/news/homicide-investigation-2001-e-platte-ave,Media Bulletins -https://alpha.austin.gov/en/police-oversight/2020-06-08-6/,Poor Data Source -http://lafayettepolice.us/9/how-do-i,Not Criminal Justice Related -https://www.hickoryhillspd.us/2018/10/police-chief-announces-his-retirement/,Media Bulletins -https://mukilteowa.gov/news/mukilteo-police-brings-awareness-to-domestic-violence/,Media Bulletins -https://www.desmoineswa.gov/departments/police/programs_services/his_victim_notification_program,Resources -https://www.arlingtontx.gov/news/my_arlington_t_x/news_stories/police_chief_community_welcome,Media Bulletins -https://www.austintexas.gov/blog/austin-green-business-leader-featured-member-st-andrews-episcopal-school,Not Criminal Justice Related -https://vpd.vernonia-or.gov/blotter/2019/02/01/january-2019-police-blotter/,Dispatch Logs -https://www.osc.state.ny.us/state-agencies/payroll-bulletins/state-police/sp-201-2019-state-police-hazardous-duty-pay,Media Bulletins -http://www.longbeach.gov/police/press-releases/motorcycle-safety-operation-a-success/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder---900-block-of-elm/,Media Bulletins -http://www.police.wallingfordct.gov/,Resources -https://norfolkne.gov/assets/site/documentcentral/police/archived-calls-for-service/2020-calls-for-service/5.pdf,Dispatch Logs -https://www.scribner-ne.gov/help-define-our-schools-future/copy-of-scribner-profile-pics-2020/,Poor Data Source -https://cityofpowell.us/reports/auto-draft-223/04-2019-police-department/,Annual & Monthly Reports -http://lafayettepolice.us/faq.aspx?qid=125,Not Criminal Justice Related -https://www.sandiego.gov/police/contact/meeting-request,Contact Info & Agency Meta -https://hilliardohio.gov/introducing-newest-police-officer-k9-jawaak/,Media Bulletins -https://www.sandiego.gov/police/data-transparency/crime-statistics/annual-crime-reports,Crime Maps & Reports -https://www.lynchburgvapolice.gov/lpd-policies-and-procedures/,Poor Data Source -https://delcopa.gov/courts/pdf/emergencyjudicialorders/secondemergencyorderextensionandamendments_juveniledelinquencyanddependencymatters.pdf,Court Cases -http://www.longbeach.gov/police/press-releases/long-beach-police-seeking-the-public-s-help-in-identifying-armed-robbery-suspect---video-footage-available--/,Wanted Persons -https://cityofgulfbreeze.us/departments/police/divisions/,Resources -https://www.austintexas.gov/blog/office-police-oversight-community-event-apd-use-force,Media Bulletins -http://www.lafayettepolice.us/1598/castaway-bay,Not Criminal Justice Related -https://delcopa.gov/treasurer/pdf/2021reassessmentvalues/39.pdf,Not Criminal Justice Related -https://www.westmayfieldborough.us/cropped-white-blank-header-banner-copy1-jpg/,Poor Data Source -https://delcopa.gov/publicrelations/publicrelations/releases/2020/index.html,Poor Data Source -https://alpha.austin.gov/police-oversight/formal-complaint-de-escalation-of-potential-force-encount-3/,Poor Data Source -https://delcopa.gov/planning/pubs/portfolio-14_foodsystems.pdf,Not Criminal Justice Related -https://www.mass.gov/doc/copleydental2013-003rfd/download,Not Criminal Justice Related -https://brecknocktownship.us/police-and-emergency-services/,Contact Info & Agency Meta -https://gonzalesca.gov/services/police/police-department-staff,Contact Info & Agency Meta -https://bolivar.mo.us/shop-with-a-copr/img_1333-2/,Poor Data Source -https://www.rentonwa.gov/city_hall/police/police_services/8_can_t_wait/require_use_of_force_continuum,Policies & Contracts -https://chester-ny.gov/town-departments/police/house-check-request/,Resources -https://www.mass.gov/doc/reference-copy-of-2016-massdep-municipal-solid-waste-recycling-survey/download,Not Criminal Justice Related -https://www.minneapolismn.gov/resident-services/public-safety/police-public-safety/police-reports-and-data-requests/frequently-requested/critical-incidents/feb-2-2022-officer-involved-shooting/,Officer Involved Shootings -https://www.lynchburgvapolice.gov/wp-content/uploads/2022/05/pwm-2-4.jpg,Poor Data Source -https://directory.arkansas.gov/agency/department-of-public-safety/arkansas-state-police/news/crack-down-on-speeders-part-of-statewide-traffic-safety-blitz-obey-the-sign-or-pay-the-fine/,Poor Data Source -https://www.coppelltx.gov/faq.aspx?qid=218,Not Criminal Justice Related -https://dccouncil.gov/donation-disclosures/copy-of-april-2018-donation-disclosure-2/,Not Criminal Justice Related -https://alpha.austin.gov/es/police-oversight/memo-changes-to-apd-impartial-attitude-and-courtesyper/,Poor Data Source -https://www.santamonica.gov/press/2022/09/21/santa-monica-police-holding-motorcycle-safety-enforcement-operation-september-23-2022,Media Bulletins -https://www.providenceri.gov/hr/wellness/cop-9-elements-of-longevity-flyer-10-23/,Poor Data Source -https://delcopa.gov/planning/pdf/mapping/media.pdf,Not Criminal Justice Related -https://police.crystalmn.gov/emergency_center,Media Bulletins -https://www.dps.nm.gov/blog/2021/07/07/state-police-officer-attacked-by-felon-with-a-loaded-gun-in-pecos-nm/,Media Bulletins -https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0473/,Complaints & Misconduct -https://police.birminghamal.gov/bureaus/administrative/,Contact Info & Agency Meta -https://www.southamptontownnypolice.gov/faq.aspx?qid=463,Not Criminal Justice Related -https://www.goldenbeach.us/documents/reso-2034-09-authorizing-the-purchase-of-two-new-police-patrol-boat-motors/,Media Bulletins -http://www.longbeach.gov/police/how-do-i/permits-fees-and-licensing/~/link/dea878b9816040a8afeeaa7799933a7f.aspx,Poor Data Source -https://police.greenvillesc.gov/513/parking,Not Criminal Justice Related -https://delcopa.gov/departments/parks/sagelife.com/plush-mills/,Poor Data Source -https://delcopa.gov/publicrelations/releases/2021/statement_capitolbuildingviolencejan6.html,Media Bulletins -http://www.longbeach.gov/police/press-releases/undetermined-death2/,Media Bulletins -https://police.bixbyok.gov/1260/communications,Contact Info & Agency Meta -http://www.longbeach.gov/police/press-releases/murder-locust-and-12th/,Media Bulletins -https://ridgelandsc.gov/police-department/daily-arrest-reports-april,Poor Data Source -https://www.sandiego.gov/department-document/copy-agreement,Poor Data Source -http://www.tampa.gov/police/online-reporting,Resources -http://www.lafayettepolice.us/faq.aspx?qid=150,Not Criminal Justice Related -https://southamptontownnypolice.gov/786/2015-budgets,Poor Data Source -https://delcopa.gov/planning/greenspace/greenspaceroe.html,Not Criminal Justice Related -https://delcopa.gov/publicrelations/releases/2019/narcanatdccc.html,Resources -http://www.longbeach.gov/police/press-releases/spring-break-safety-tips-1-/,Media Bulletins -http://www.lafayettepolice.us/2319/travel,Not Criminal Justice Related -https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0792/,Poor Data Source -https://bouldercolorado.gov/news/boulder-police-investigating-fatal-traffic-crash-friday,Media Bulletins -https://www.hayward-ca.gov/discover/news/oct16/turn-your-prescription-drugs-hayward-police-department-1022,Poor Data Source -https://www.lasalle-il.gov/departments/police-department/registered-sex-offenders,Sex Offender Registry -https://www.hayward-ca.gov/your-government/departments/police,Resources -https://delcopa.gov/courts/judges/brennan.html,Contact Info & Agency Meta -https://delcopa.gov/publicrelations/releases/2021/covid_popupvaccinationprogram.html,Not Criminal Justice Related -https://delcopa.gov/publicrelations/releases/2022/gwhgraduation.html,Media Bulletins -https://www.southamptontownnypolice.gov/faq.aspx?qid=373,Not Criminal Justice Related -https://pittsburghpa.gov/files/police/orders/ch1/16-01-standards-of-conduct.pdf,Poor Data Source -http://police.portlandmaine.gov/1167/ocean-gateway,Not Criminal Justice Related -https://www.ci.san-bernardino.ca.us/news/archived_news/downtown_specific_plan_scoping_meeting,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/traffic-fatality---burnett-street-and-pacific-avenue/,Media Bulletins -https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/blotter/011322blotter.pdf,Media Bulletins -https://alpha.austin.gov/police-oversight/formal-complaint-incident-reporting-and-other-policy-violations/,Poor Data Source -http://www.longbeach.gov/police/press-releases/reward-issued-in-2013-murder-investigation/,Media Bulletins -http://chico.ca.us/post/chico-police-utilize-grant-money-dui-enforcement,Media Bulletins -https://www.southamptontownnypolice.gov/faq.aspx?qid=400,Not Criminal Justice Related -https://hilliardohio.gov/hilliard-officer-named-central-ohios-top-cop/,Poor Data Source -https://www.knoxvilletn.gov/government/city_departments_offices/police_department/field_operations_bureau/inspections_unit/taxi_limo_services/application_for_certificate_of_public_convenience_and_necessity___p_d_f_,Not Criminal Justice Related -https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/blotter/041222blotter.pdf,Poor Data Source -http://www.longbeach.gov/police/press-releases/halloween-safety-tips2/,Media Bulletins -https://delcopa.gov/employment/jobpostings/clerical.html,Training & Hiring Info -https://alpha.austin.gov/police-oversight/body-worn-cameras-and-dashboard-cameras-final-recommendations-report/,Poor Data Source -https://delcopa.gov/vote/news/20nov5update.html,Not Criminal Justice Related -https://londonky.gov/london-police-promote-officers/,Personnel Records -http://www.cityofpataskalaohio.gov/cop_folder/minutes-2015/,List of Data Sources -https://www.sandiego.gov/police/recruiting/volunteer/sddcrt-application-submit,Poor Data Source -https://police.greenvillesc.gov/653/benefits-and-incentives-for-firefighters,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/buzzed-driving-is-drunk-driving/,Media Bulletins -https://www.southamptontownnypolice.gov/1450/southampton-village---agawam-pond-phase-,Not Criminal Justice Related -https://www.mass.gov/info-details/situational-analysis-of-municipal-police-in-service-training-in-the-commonwealth,Training & Hiring Info -https://detroitmi.gov/es/departments/aeropuerto-internacional-coleman-young/mi-vuelo-paseos-en-helicoptero,Poor Data Source -https://www.providenceri.gov/police/providence-police-recruitment-application/clements_e-sig/,Poor Data Source -https://www.lakewoodoh.gov/coffee-with-a-cop-set-for-may-4th/,Not Criminal Justice Related -https://bolivar.mo.us/shop-with-a-copr/img_1293-2/,Poor Data Source -http://www.longbeach.gov/police/press-releases/september-is-california-pedestrian-safety-month/,Media Bulletins -https://www.mass.gov/regulations/118-cmr-100-scope-and-authority,Court Cases -https://southamptontownnypolice.gov/faq.aspx?qid=490,Resources -http://www.longbeach.gov/police/press-releases/l.b.p.d2.-promotes-new-leaders/,Media Bulletins -https://police.greenvillesc.gov/faq.aspx?qid=598,Resources -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/080521blotter.pdf,Dispatch Logs -https://www.poconopa.gov/police/,Contact Info & Agency Meta -https://cityofyuma.colorado.gov/departments/emergency-services/police-department/police-department-staff,Personnel Records -https://delcopa.gov/council/newsletter/index.html,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/murder---3100-block-e-artesia-blvd/,Media Bulletins -https://www.memphistn.gov/news/wpfd_file/resolution-requesting-the-memphis-police-department-to-enforce-the-curfews-of-the-child-curfew-act-of-1995-and-work-with-the-city-of-memphis-administration-on-a-proposal-for-a-designated-curfew-center/,Poor Data Source -https://police.bixbyok.gov/faq.aspx?qid=94,Resources -https://cityofyuma.colorado.gov/departments/emergency-services/police-department/police-department-fees,Resources -https://alpha.austin.gov/en/police-oversight/notice-of-complaint-related-to-2022-0182/,Poor Data Source -http://www.longbeach.gov/police/press-releases/juvenile-investigations-operation-results-in-6-arrests/,Media Bulletins -https://www.mass.gov/regulations/700-cmr-600-use-of-road-flaggers-and-police-details-on-public-works-projects,Misc Police Activity -https://delcopa.gov/publicrelations/releases/2020/passportservicesresumejuly6.html,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/lbpd-swat-officers-shot-at-during-search-warrant-service/,Media Bulletins -https://www.lynchburgvapolice.gov/resources/,Resources -https://delcopa.gov/planning/pubs/delco2035/historicplan.pdf,Not Criminal Justice Related -https://spdblotter.seattle.gov/2021/01/27/police-arrest-u-district-rape-suspect/,Media Bulletins -https://beaumonttexas.gov/beaumont-police-investigating-overnight-shooting-at-2550-ih-10-east/,Poor Data Source -https://ose.louisiana.gov/event/police-communications-officer-ii/,Poor Data Source -http://www.longbeach.gov/police/how-do-i/prevent-crime/general-guidelines-for-retail-stores/,Resources -https://alpha.austin.gov/es/police-oversight/2020-06-17-7/,Poor Data Source -http://www.lafayettepolice.us/faq.aspx?qid=68,Not Criminal Justice Related -https://www.mass.gov/info-details/audit-of-mount-wachusett-community-college-objectives-scope-and-methodology,Not Criminal Justice Related -http://lafayettepolice.us/faq.aspx?qid=80,Resources -https://columbiacitypolice.us/photos/group 2017.jpg,Poor Data Source -https://police.greenvillesc.gov/faq.aspx?qid=140,Resources -https://www.coronadelmar.us/newport-beach-mourns-locals-killed-in-helicopter-crash/,Not Criminal Justice Related -https://www.mass.gov/doc/municipal-police-training-committee-meeting-minutes-091521/download,Training & Hiring Info -https://www.madera.gov/tr-accordion/police-programs/,Not Criminal Justice Related -https://mountpocono-pa.gov/question/how-do-i-reach-the-police-department-with-a-non-emergency/,Contact Info & Agency Meta -https://champaignil.gov/2021/04/03/champaign-police-investigating-overnight-shooting-2/,Media Bulletins -https://alpha.austin.gov/en/police-oversight/2020-11-01/,Poor Data Source -https://southamptontownnypolice.gov/256/town-law-200-procedure,Resources -https://www.somervillema.gov/news/femino-named-interim-acting-chief-police,Personnel Records -https://police.greenvillesc.gov/faq.aspx,Resources -"https://norfolkne.gov/government/departments/police-division/press-releases/january-4,-2021-press-release.html",Media Bulletins -https://www.osc.state.ny.us/state-agencies/payroll-bulletins/state-police/sp-42-permanent-rank-sergeant-payment-employees-represented-nys-police,Media Bulletins -https://www.mass.gov/doc/municipal-police-training-committee-mptc-meeting-agenda-71719/download,Misc Police Activity -http://www.ryepolice.us/logs/police-logs-for-12517-13117,Daily Activity Logs -https://police.greenvillesc.gov/994/crisis-intervention,Resources -https://alvordtx.gov/question/how-can-i-obtain-a-copy-of-the-municipal-codes/,Resources -http://www.longbeach.gov/police/press-releases/murder-investigation---wardlow--orange/,Media Bulletins -https://louisvilleky.gov/news/louisville-metro-police-foundation-endorses-louisville-affordable-housing-trust-fund,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/murder-1600-block-of-pine-avenue/,Media Bulletins -https://alpha.austin.gov/en/police-oversight/notice-of-complaint-related-to-2022-0415/,Poor Data Source -https://delcopa.gov/publicrelations/releases/18pdfs/18emergencypreparednessmonth.pdf,Media Bulletins -http://lafayettepolice.us/773/foam-systems,Not Criminal Justice Related -https://www.newarknj.gov/news/mayor-ras-j-barakas-statement-on-appointment-of-brian-ohara-as-deputy-mayor-of-strategic-initiatives-for-police-services-public-safety,Personnel Records -https://mtcb.colorado.gov/departments-services/police,Contact Info & Agency Meta -http://www.lafayettepolice.us/725/fireworks-safety,Not Criminal Justice Related -https://www.cityofrc.us/public-safety/police/crime-mapping,Crime Maps & Reports -https://delcopa.gov/courts/pdf/jd/2017preareport.pdf,Annual & Monthly Reports -https://delcopa.gov/publicrelations/releases/2020/pdf/govwolf_indoorrestaurants50percent.pdf,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/dui-driver-s-license-checkpoint-planned-this-weekend-8-/,Media Bulletins -https://delcopa.gov/prison/pdfs/wardereports/2021/wardensreportmay2021.pdf,Annual & Monthly Reports -https://www.goldenbeach.us/documents/resolution-2219-12-authorizing-the-participation-in-a-lease-agreement-for-two-police-motorcycles/,Policies & Contracts -https://felton.delaware.gov/police/request-for-security-check-form/,Resources -https://delcopa.gov/publicrelations/releases/2021/covid_jan15update.html,Not Criminal Justice Related -https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0391/,Poor Data Source -https://www.southamptontownnypolice.gov/1084/ia-owts-requirements,Not Criminal Justice Related -https://brookfieldil.gov/publication/special-fire-police-commission-meeting-august-23-2017/,Poor Data Source -https://delcopa.gov/employment/jobpostings/caseworker2_oid.html,Poor Data Source -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/022621blotter.pdf,Dispatch Logs -http://police.portlandmaine.gov/660/cdbg-priority-task-force,Not Criminal Justice Related -https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0756/,Poor Data Source -https://alpha.austin.gov/es/police-oversight/indefinite-suspension-of-officer-jordan-wagstaff/,Poor Data Source -https://port-orange.us/2013/08/07/volusia-co-sheriffs-helicopter-makes-emergency-landing-on-beach/,Media Bulletins -https://brookfieldil.gov/calendar/police-pension-fund-board-of-trustees-meeting/,Poor Data Source -https://mountpocono-pa.gov/topics/police-courts/,Resources -https://cityofpowell.us/government/employment-opportunities/police-officer-selection-process-6/,Resources -https://delcopa.gov/ems/pdfdocs/initialcertificationeducationtesting/2022regionalemslistmap.pdf,Geographic -http://chico.ca.us/police-department-volunteers,Media Bulletins -http://www.longbeach.gov/police/press-releases/two-arrested-and-numerous-guns-seized/,Media Bulletins -http://www.lafayettepolice.us/faq.aspx?qid=208,Not Criminal Justice Related -https://alpha.austin.gov/es/police-oversight/temporary-suspension-of-officer-jeremy-bohannon/,Poor Data Source -https://alpha.austin.gov/police-oversight/temporary-suspension-of-officer-ryan-seweryn-2/,Poor Data Source -https://www.ci.san-bernardino.ca.us/city_hall/police_department/crime_statistics/about_ucr_statistics/arrest_statistics/arrest_statistics-2009,Crime Statistics -https://www.mass.gov/locations/state-police-millbury-barracks/locations,Geographic -https://www.coppelltx.gov/faq.aspx?qid=309,Not Criminal Justice Related -https://southcoffeyvilleok.gov/police-department/screen-shot-2016-09-27-at-4-41-47-pm/,Poor Data Source -http://www.longbeach.gov/police/press-releases/halloween-safety-tips/,Media Bulletins -http://www.ryepolice.us/logs/police-logs-for-21716-22316,Calls for Service -https://www.southbendin.gov/police/,Contact Info & Agency Meta -https://beaumonttexas.gov/beaumont-police-investigating-officer-involved-shooting-lindbergh-overpass/,Poor Data Source -https://police.greenvillesc.gov/324/business-assistance,Not Criminal Justice Related -https://www.wakeforestnc.gov/police/about-us/police-jobs/police-officer-employment,Training & Hiring Info -https://spdblotter.seattle.gov/2019/01/25/police-arrest-man-following-stabbing-in-pioneer-square-neighborhood/,Media Bulletins -https://www.mass.gov/doc/2020-chelmsford-police-lieutenant-sole-assessment-center-examination-in-title-employment/download,Training & Hiring Info -http://www.longbeach.gov/police/press-releases/fatal-traffic-collision/,Media Bulletins -https://oceansprings-ms.gov/form-pdf/ospd-police-reserve-application/,Poor Data Source -https://www.alamoheightstx.gov/public-safety/police/services/solicitor-information/,Resources -https://elkhartlakewi.gov/departments/police/meet-us/,Personnel Records -https://www.sanramon.ca.gov/our_city/departments_and_divisions/police/police_news/weekly_arrest_log,Arrest Records -https://www.dps.nm.gov/blog/2022/10/22/silver-alert-alamogordo-police-department-ralph-magruder/,Resources -https://www.ashevillenc.gov/news/asheville-police-department-to-add-patrol-district-realign-existing-districts-in-2020/,Media Bulletins -https://www.naperville.il.us/services/naperville-police-department/programs-and-services/police-department-tours/,Resources -https://southamptontownnypolice.gov/faq.aspx?qid=499,Resources -https://spdblotter.seattle.gov/2014/05/16/police-bolstering-patrols-as-detectives-investigate-recent-shootings/,Media Bulletins -https://www.newlexingtonohio.gov/resources/forms/police-department-public-records-request-form/,Records Request Info -https://champaignil.gov/police/resources/gun-violence-prevention-and-response/,Resources -https://townofkremmling.colorado.gov/departments/police,Resources -http://www.longbeach.gov/police/press-releases/murder-23-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-pch-and-pacific/,Media Bulletins -https://champaignil.gov/2014/03/24/police-arrest-one-suspect-in-home-invasion/,Media Bulletins -https://www.mass.gov/doc/rossi-cully-v-duxbury-police-department-related-superior-court-decision-52710/download,Court Cases -https://galenaks.gov/view-more-http-emjophotography-pass-us-galenapolicedepartment2018-8/,Poor Data Source -http://www.longbeach.gov/police/press-releases/significant-crime-reduction-during-first-year-metro-blue-line-contract/,Media Bulletins -https://southamptontownnypolice.gov/faq.aspx?qid=297,Resources -https://www.mass.gov/doc/copper-in-drinking-water-faq-english-0/download,Not Criminal Justice Related -https://police.beaumonttexas.gov/taxonomy-template/,Poor Data Source -http://www.longbeach.gov/police/press-releases/directed-enforcement-patrols-and-bicycle-theft-sting-results-in-arrests/,Media Bulletins -http://www.lafayettepolice.us/354/juvenile-investigations,Resources -https://www.mass.gov/directive/directive-93-7-exempt-sales-of-copying-machines-and-related-items,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/defendant-sentenced-to-45-years-for-charges-relating-to-human-trafficking/,Media Bulletins -https://delcopa.gov/publicrelations/releases/2018/2019doglicenses.html,Resources -https://www.knoxvilletn.gov/government/mayors_office/c_o_v_i_d-19___coronavirus_/stress_and_coping/knox_well/kid___parent_resources,Resources -https://spdblotter.seattle.gov/2016/08/17/police-search-for-leads-on-teen-girls-suspected-in-south-seattle-bleach-attacks/,Media Bulletins -https://www.chesterfield.in.gov/departments/police/,Resources -https://www.mass.gov/doc/fitchburgpolicesergeant7929rtf/download,Training & Hiring Info -http://www.tampa.gov/police/info/honoring-our-heroes/curtis-and-kocab/david-curtis,Personnel Records -https://www.antioch.il.gov/wpfb-file/08-03-11-police-and-fire-agenda-pdf/,Media Bulletins -https://www.southamptontownnypolice.gov/1782/2023-budgets,Resources -https://alpha.austin.gov/es/police-oversight/2020-06-30-2/,Poor Data Source -https://www.coronadelmar.us/procession-honors-newport-beach-police-detective/,Not Criminal Justice Related -https://coloradosprings.gov/police-department/article/news/las-vegas-street-and-south-tejon-street,Media Bulletins -https://rocklandmaine.gov/events/police-review-committee-meeting-18/,Poor Data Source -https://coloradosprings.gov/police-department/article/news/city-ordinance-area-expanded,Media Bulletins -https://delcopa.gov/publicrelations/releases/2022/delcohonoredtoreceivegovernersawardforlocalgovtexcellence.html,Media Bulletins -https://delcopa.gov/health/pages/animalbites.html,Resources -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/arrests/011321arrests.pdf,Arrest Records -http://www.longbeach.gov/police/press-releases/dui-drivers-license-checkpoint/,Media Bulletins -https://www.mass.gov/doc/perry-brian-v-boston-police-department-92012/download,Court Cases -https://www.memphistn.gov/government/police-department/in-memoriam/,Poor Data Source -https://www.mass.gov/doc/hamm-brendan-v-boston-police-department-111308/download,Court Cases -https://www.coppelltx.gov/666/sustainability-data,Poor Data Source -https://edenny.gov/town-of-eden-police-reform-plan/,Contact Info & Agency Meta -https://police.crystalmn.gov/r_e_s_i_d_e_n_t/community_development/permits_and_inspections,Resources -https://www.mass.gov/news/police-arrest-juvenile-for-homicide-in-adams-death,Media Bulletins -https://www.roseville.ca.us/government/departments/police_department/social_services/shop_with_a_cop,Misc Police Activity -https://alpha.austin.gov/en/police-oversight/2020-06-12-3/,Poor Data Source -https://www.mass.gov/regulations/515-cmr-500-standards-of-skill-for-special-state-police-officers,Training & Hiring Info -https://www.ci.rohnert-park.ca.us/city_hall/departments/public_safety/police_services/permits___licensing/solicitors_peddlers_permit,Resources -https://council.seattle.gov/2011/07/14/seattle-city-council-seeking-candidates-for-police-accountability-review-board/,Media Bulletins -https://directory.arkansas.gov/agency/arkansas-fire-and-police-pension-review-board/questions/,Poor Data Source -https://www.mass.gov/doc/pdf-copy-of-the-field-auditor-i-performance-audits-chicopee-job-description-2020-05-06/download,Training & Hiring Info -https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0031-2/,Poor Data Source -https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/blotter/081722blotter.pdf,Poor Data Source -https://edmonstonmd.gov/prince-georges-county-news-police-chief-town-hall-beautification/,Not Criminal Justice Related -https://www.dps.nm.gov/blog/2022/03/24/new-mexico-state-police-arrest-fugitive-tennessee-murder-suspects/,Media Bulletins -https://www.southamptontownnypolice.gov/943/the-hills---deis-april-2016,Resources -https://www.florenceaz.gov/police-hosting-a-town-hall-meeting-on-december-9th/,Misc Police Activity -https://www.hayward-ca.gov/discover/news/sep21/police-blotter-august-22-28-2021,Media Bulletins -http://police.portlandmaine.gov/552/peaks-island-services,Not Criminal Justice Related -https://beaumonttexas.gov/beaumont-police-arrest-hike-bike-auto-burglar-6450-folsom/,Poor Data Source -http://www.ryepolice.us/logs/police-logs-07-27-2022-08-02-2022,Daily Activity Logs -https://alpha.austin.gov/health-safety/accountability-and-transparency-in-policing/police-feedback-and-records/office-of-police-oversight-official-reports/,Poor Data Source -https://coloradosprings.gov/police-department/page/vin-verification-services,Resources -https://hollister.ca.gov/government/city-departments/police/join-our-team/,Training & Hiring Info -https://www.mass.gov/doc/fitzgibbon-daniel-v-boston-police-department-related-superior-court-decision-32113/download,Court Cases -https://delcopa.gov/pdf/2021budget.pdf,Policies & Contracts -http://www.longbeach.gov/police/about-the-lbpd/bureaus/investigations-bureau/detective-division/auto-theft-detail-and-t.r.a.p/,Resources -https://www.ci.san-ramon.ca.us/our_city/departments_and_divisions/police/srpd-downloads,Poor Data Source -https://www.antioch.il.gov/event/police-fire-commission-special-meeting-4/,Poor Data Source -http://www.longbeach.gov/police/press-releases/murder-investigation---2300-block-of-elm-avenue/,Media Bulletins -https://dps.iowa.gov/former-clarksville-police-officer-arrested,Media Bulletins -http://www.longbeach.gov/police/press-releases/dui-checkpoint-1-/,Media Bulletins -https://alpha.austin.gov/es/police-oversight/formal-complaint-de-escalation-of-potential-force-encounters-and-other-policy-violations-3/,Poor Data Source -https://www.southamptontownnypolice.gov/faq.aspx?qid=554,Resources -https://www.southamptontownnypolice.gov/faq.aspx?qid=78,Resources -http://www.longbeach.gov/police/press-releases/charges-filed-against-robbery-suspects/,Media Bulletins -http://www.longbeach.gov/police/press-releases/improving-motorcycle-safety-aim-of-l-b-p-d--operation-2-/,Media Bulletins -https://bouldercolorado.gov/events/police-oversight-panel-community-engagement-committee-meeting-0,Misc Police Activity -http://police.portlandmaine.gov/650/needle-exchange-program,Resources -https://delcopa.gov/departments/parks/pdf/redwoodmonthlyschedule.pdf,Poor Data Source -https://delcopa.gov/publicrelations/releases/2018/hopefortheholidays.html,Media Bulletins -https://detroitmi.gov/es/departments/departamento-de-policia/detroit-police-department-shield-program/recursos-de-socios-comunitarios,Poor Data Source -https://www.normanok.gov/public-safety/police-department/divisions/professional-standards,Complaints & Misconduct -http://www.longbeach.gov/police/press-releases/traffic-fatality7/,Media Bulletins -https://alpha.austin.gov/en/health-safety/accountability-and-transparency-in-policing/contribute-to-police-oversight/file-a-complaint-about-an-austin-police-officer/,Poor Data Source -https://pittsburghpa.gov/police/police-administration,Poor Data Source -http://www.longbeach.gov/police/press-releases/dui-enforcement-operations-planned-this-weekend-3-/,Media Bulletins -https://www.mass.gov/event/2022-lowell-police-open-house-2022-01-10t170000-0500-2022-01-10t190000-0500,Poor Data Source -https://www.lynchburgvapolice.gov/wp-content/uploads/2022/10/suspect-express-lane-76-gas-10.27.2022-e1666893965762.png,Poor Data Source -https://southcoffeyvilleok.gov/police-department/contact/,Contact Info & Agency Meta -https://www.pleasantprairiewi.gov/departments/police/retail_theft_reporting,Resources -https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/summary/042622summary.pdf,Poor Data Source -https://delcopa.gov/council/2020minutes/05202020minutes.pdf,Poor Data Source -https://www.sandiego.gov/department-document/mayor-glorias-appointment-citizens-advisory-board-policecommunity-relations,Media Bulletins -https://www.mass.gov/doc/chicopee-district-court/download,Misc Police Activity -https://delcopa.gov/controller/pdf/2022/faq-changetothecustodialbankfordelawarecountyretirementaccounts.pdf,Resources -https://www.troyny.gov/mayor-madden-announces-the-promotion-of-steven-barker-to-the-rank-of-assistant-chief-of-police/,Poor Data Source -http://www.longbeach.gov/police/press-releases/traffic-fatality-5-/,Media Bulletins -https://cheswold.delaware.gov/cheswold-police-department-crime-statistics/january-16-activity-report/,Incident Reports -https://delcopa.gov/courts/judges/kelly.html,Personnel Records -https://www.mass.gov/doc/the-challenging-investment-climate-how-to-cope/download,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/robbery-suspect-arrested-and-charged-2-/,Media Bulletins -https://twp.northfield.il.us/coffee-with-a-cop-northbrook/,Poor Data Source -https://delcopa.gov/publicrelations/releases/2021/pdf/delcoerainpersonflyer.pdf,Not Criminal Justice Related -https://www.naperville.il.us/services/naperville-police-department/programs-and-services/false-alarm-reduction-program/,Resources -https://alpha.austin.gov/police-oversight/2020-06-4-18/,Poor Data Source -https://www.va.gov/martinsburg-health-care/stories/martinsburg-vamc-premiers-use-of-disposable-duodenoscopes/,Not Criminal Justice Related -https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0460/,Poor Data Source -https://spdblotter.seattle.gov/2012/03/02/south-seattle-residents-police-team-up-to-take-back-rainier-beach/,Misc Police Activity -https://delcopa.gov/publicrelations/releases/2019/prisonboardmeetingcancelled.html,Poor Data Source -https://delcopa.gov/ojs/efileforms/ojs forms for efile/writofsummons.pdf,Poor Data Source -https://alpha.austin.gov/en/health-safety/accountability-and-transparency-in-policing/police-feedback-and-records/summary-of-overarching-recommendations/,Poor Data Source -https://delcopa.gov/workshops/,Not Criminal Justice Related -https://alpha.austin.gov/en/police-oversight/formal-complaint-purpose-and-scoperesponsibility-to-the-community-and-other-policy-violations-1/,Poor Data Source -https://ose.louisiana.gov/event/chief-of-police/,Poor Data Source -http://www.longbeach.gov/police/press-releases/l-b-p-d--offers-holiday-safety-tips/,Media Bulletins -https://www.sandiego.gov/department-document/police-identify-emerald-hills-homicide-victim,Media Bulletins -https://rocklandmaine.gov/police-department/pedestrian-safety-crosswalk-safety/attachment/crosswalk-enforcement-2/,Poor Data Source -https://alpha.austin.gov/police-oversight/formal-complaint-impartial-attitude-and-courtesy-and-other-policy-violations-6/,Poor Data Source -https://ci.piedmont.ca.us/services___departments/police/services/request_a_report,Resources -http://www.longbeach.gov/police/press-releases/dui---driver-s-license-checkpoint-planned-this-weekend-2147407661/,Media Bulletins -http://www.longbeach.gov/police/press-releases/sexual-assault-suspect-arrested--additional-victims-sought/,Media Bulletins -https://www.southamptontownnypolice.gov/1560/candle-light-vigil,Misc Police Activity -https://www.southamptontownnypolice.gov/faq.aspx?qid=425,Resources -http://www.tampa.gov/police/info/honoring-our-heroes/1998/detective-randy-bell,Media Bulletins -https://alpha.austin.gov/es/police-oversight/formal-complaint-2020-1346/,Poor Data Source -http://www.longbeach.gov/police/press-releases/officer-involved-shootings-occur-after-suspect-fires-at-officers--leads-police-on-vehicle-pursuit/,Media Bulletins -https://www.coppelltx.gov/903/coppell-recreation-and-development-corpo,Not Criminal Justice Related -https://www.sanramon.ca.gov/our_city/departments_and_divisions/police/victims_rights_information/domestic_violence,Resources -https://www.mass.gov/doc/cruceta-neysa-v-boston-police-department-4512/download,Court Cases -https://www.montgomeryohio.gov/police-department-2020-annual-report/office-otte-sro/,Poor Data Source -https://dccouncil.gov/donation-disclosures/copy-of-april-2018-donation-disclosure-4/,Media Bulletins -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/arrests/092421arrests.pdf,Arrest Records -https://champaignil.gov/2014/04/23/fire-and-police-memorial-public-dedication-ceremony/,Not Criminal Justice Related -https://alpha.austin.gov/en/police-oversight/notice-of-complaint-related-to-2022-0976/,Poor Data Source -https://www.pleasantprairiewi.gov/departments/police/news/police_and_fire___rescue_news_archive/2017_news_releases/police_continue_missing_person_investigation,Media Bulletins -https://alpha.austin.gov/en/police-oversight/notice-of-complaint-related-to-2022-0129/,Poor Data Source -http://www.longbeach.gov/police/press-releases/business-license-operation-conducted/,Media Bulletins -https://www.antioch.il.gov/wpfb-file/08-11-10-police-and-fire-commission-minutes-pdf-2/,Not Criminal Justice Related -https://delcopa.gov/publicrelations/releases/2020/staythecourse.html,Media Bulletins -http://www.longbeach.gov/police/press-releases/robbery-suspects-arrested/,Media Bulletins -https://delcopa.gov/jdboard/pdfs/minutes_2021_09_21.pdf,Misc Police Activity -https://police.kingstontn.gov/team/raymond-gold/,Poor Data Source -https://www.montebelloca.gov/departments/police/news/all_news_articles/national_night_out_2021,Misc Police Activity -https://www.lynchburgvapolice.gov/wp-content/uploads/2021/05/headlamp-2940-scaled.jpg,Poor Data Source -http://www.ryepolice.us/logs/police-logs-for-4-22-20-4-28-20,Daily Activity Logs -https://mtcb.colorado.gov/police/animal-regulations-ordinances,Resources -http://www.ryepolice.us/logs/police-logs-for-52516-53116,Daily Activity Logs -https://delcopa.gov/ich/resources/covid19/pdf/delcocovid19vaccinationsites.pdf,Poor Data Source -https://delcopa.gov/publicrelations/releases/2019/energyefficiency.html,Not Criminal Justice Related -https://cheswold.delaware.gov/cheswold-police-department-policy-and-procedure-manual/reports/,Policies & Contracts -http://police.portlandmaine.gov/400/payments,Resources -https://delcopa.gov/courts/pdf/emergencyjudicialorders/sixthemergencyextensionorder_criminalsection.pdf,Court Cases -https://www.mass.gov/doc/cspolicechiefeeinstructions2010doc/download,Poor Data Source -https://www.mass.gov/doc/011718-public-scoping-meeting-commercial-menhaden-management/download,Not Criminal Justice Related -https://delcopa.gov/pollingplace/,Not Criminal Justice Related -https://police.greenvillesc.gov/1826/laurens-road-transit-study,Not Criminal Justice Related -http://lafayettepolice.us/1099/operations,Poor Data Source -https://www.mass.gov/doc/2021-hanover-police-lieutenant-sole-assessment-center-examination-employment-verification-form/download,Not Criminal Justice Related -http://www.ryepolice.us/logs/police-logs-for-7-25-18-7-31-18,Daily Activity Logs -https://hollister.ca.gov/government/city-departments/police/,Media Bulletins -https://www.foxcrossingwi.gov/departments/police-department/patrol/wreck/,Poor Data Source -https://www.lakewoodoh.gov/coffee-with-a-cop-set-for-friday-january-12th/,Misc Police Activity -https://www.panynj.gov/police/en/about/leadership.html#main,Personnel Records -https://gonzalesca.gov/services/police/how-do-i/learn-what-do-if-i-become-victim-crime,Resources -https://southamptontownnypolice.gov/faq.aspx?qid=323,Not Criminal Justice Related -https://www.hayward-ca.gov/police-department/public-services/youth-family-services-bureau/contact,Resources -http://lafayettepolice.us/3400/enrichment-and-training-programs,Not Criminal Justice Related -https://delcopa.gov/vetaffairs/forms/va26-1880-are.pdf,Not Criminal Justice Related -https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0034/,Poor Data Source -https://champaignil.gov/tag/police-chief-recruitment/,Media Bulletins -http://www.longbeach.gov/police/press-releases/dui-driver-s-license-checkpoint-planned-this-weekend-8-/,Media Bulletins -https://southamptontownnypolice.gov/faq.aspx?qid=485,Not Criminal Justice Related -https://www.antioch.il.gov/2017/09/18/police-department-media-release-2/,Media Bulletins -https://www.southamptontownnypolice.gov/faq.aspx?qid=443,Resources -https://delcopa.gov/publicrelations/releases/18pdfs/18opioidmentalsummit.pdf,Misc Police Activity -https://www.huntsvilleal.gov/huntsville-police-department-honors-12-fallen-officers-2/,Media Bulletins -https://alpha.austin.gov/police-oversight/formal-complaint-purpose-and-scope-10/,Poor Data Source -https://council.seattle.gov/2016/09/15/our-north-seattle-police-precinct/,Policies & Contracts -https://www.southamptontownnypolice.gov/1629/nitrogen-reducing-biofilter-incarnation-,Not Criminal Justice Related -https://spdblotter.seattle.gov/2011/03/04/one-day-community-police-academy/,Media Bulletins -https://southamptontownnypolice.gov/faq.aspx?qid=266,Complaints & Misconduct -https://norfolkne.gov/assets/site/documentcentral/police/archived-arrests/2017-arrests/oct-2017-arrests.pdf,Arrest Records -https://owd.boston.gov/wp-content/uploads/2022/06/davidramos3-1-copy.jpg,Poor Data Source -https://delcopa.gov/courts/domesticrelations/forms/directdepositenrollment.pdf,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/traffic-fatality3/,Media Bulletins -https://www.knoxvilletn.gov/government/city_departments_offices/community_empowerment/police_advisory_review_committee,Misc Police Activity -https://www.arlingtontx.gov/news/my_arlington_t_x/news_archive/2018_archived_news/september_2018/two_arlington_police_officers_honored_by_governor,Media Bulletins -https://www.colma.ca.gov/question/how-do-i-get-a-copy-of-a-birth-certificate/,Resources -https://beaumonttexas.gov/beaumont-police-traffic-division-investigating-a-fatality-crash-eastex-frwy-and-chinn-ln/,Poor Data Source -http://www.longbeach.gov/police/press-releases/lbpd-recruit-academy-graduation-ceremony-held-today/,Media Bulletins -http://beaverpolice.us/event/beaver-county-symphonic-wind-ensemble-concert/,Not Criminal Justice Related -https://hilliardohio.gov/tag/police-recruitment/,Poor Data Source -https://brookfieldil.gov/publication/050609-may-6-2009-fire-and-police-commission/,Poor Data Source -https://www.southamptontownnypolice.gov/faq.aspx?qid=262,Not Criminal Justice Related -https://www.sandiego.gov/department-document/police-identify-burned-homicide-victim-bay-park,Media Bulletins -https://delcopa.gov/council/2018minutes/101718minutes.pdf,Not Criminal Justice Related -https://hollister.ca.gov/government/city-departments/police/,Personnel Records -https://alpha.austin.gov/es/police-oversight/2020-06-09-14/,Poor Data Source -https://delcopa.gov/sustainability/presentations/22/12_victordonnay_v2.pptx,Not Criminal Justice Related -https://coloradosprings.gov/police-department/page/cspd-community-survey,Poor Data Source -http://chico.ca.us/post/chico-police-officer-mark-bass-honored-chico-noon-exchange-74th-annual-peace-officer-year,Media Bulletins -https://www.roseville.ca.us/government/departments/police_department/community_services/my_neighborhood_officer/beat_4,Resources -http://www.longbeach.gov/police/press-releases/murder-suicide-1500-block-of-park-avenue/,Media Bulletins -https://www.happyvalleyor.gov/services/police-department/reporting-accidents/,Resources -https://www.gov.ca.gov/2020/04/02/governor-newsom-statement-on-death-of-santa-rosa-police-detective/,Poor Data Source -https://www.milpitas.gov/milpitas/departments/police/recruitment-training/,Poor Data Source -http://www.longbeach.gov/police/press-releases/arsonist-sought-in-flag-burning-case/,Media Bulletins -https://delcopa.gov/departments/womenscommission/20history.html,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/traffic-fatality-spring-street-west-of-el-dorado-park/,Media Bulletins -https://www.southamptontownnypolice.gov/faq.aspx?qid=510,Resources -https://alpha.austin.gov/en/police-oversight/formal-complaint-impartial-attitude-and-courtesy-42/,Poor Data Source -https://ci.newcastle.wa.us/departments/police/e-_alerts,Resources -http://www.longbeach.gov/police/press-releases/traffic-fatality-pch--myrtle-ave/,Media Bulletins -https://www.mass.gov/doc/05-14-15-police-and-school-officials-attend-da-morrisseys-safe-and-supportive-schools-0/download,Not Criminal Justice Related -https://www.mass.gov/doc/emergencywaiverpcopdf/download,Poor Data Source -https://www.antioch.il.gov/wpfb-file/12-13-11-police-pension-fund-agenda-pdf-4/,Policies & Contracts -https://www.mass.gov/doc/state-police-academy-rules-and-regulations/download,Training & Hiring Info -https://www.crystalmn.gov/how_do_i____/contact/police_department,Contact Info & Agency Meta -https://www.roundrocktexas.gov/news/police-investigate-new-years-eve-auto-pedestrian-collision/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-investigation8/,Media Bulletins -https://www.roseville.ca.us/news/archive_news/2017_archive_news/police_digest_120117,Poor Data Source -https://www.huntsvilleal.gov/organizer/huntsville-police-department/,Misc Police Activity -https://brimfieldohio.gov/event/bpd-coffee-with-a-cop/,Misc Police Activity -https://shelbycity.oh.gov/wp-content/uploads/2020/03/downtown-flag-dark-copy-150x150.jpg,Poor Data Source -https://delcopa.gov/ampembed?url=https://delcowebmedia2-usea.streaming.media.azure.net/79bc7ec7-9862-4100-bfd8-06a71de3d5af/delaware county covid-19 memoria.ism/manifest,Poor Data Source -https://police.greenvillesc.gov/faq.aspx?qid=63,Resources -https://alpha.austin.gov/police-oversight/formal-complaint-impartial-attitude-courtesy-department-issued-bwc/,Poor Data Source -http://edmonstonmd.gov/departments-services/police/photo-enforcement/,Resources -https://health.wyo.gov/publichealth/office-of-performance-improvement-and-health-equity/sha/health-improvement-strategy/copy-of-ship-access-cga-video-es/,Resources -https://www.mass.gov/doc/flaherty-and-mccarthy-v-boston-police-department-12909/download,Court Cases -https://www.mass.gov/doc/municipal-police-training-committee-cjt/download,Poor Data Source -https://delcopa.gov/council/2016minutes/080316minutes.pdf,Not Criminal Justice Related -https://www.lynchburgvapolice.gov/wp-content/uploads/2021/05/headlamp-2940-scaled.jpg,Poor Data Source -https://coloradosprings.gov/police-department/article/news/traffic-fatality-1200-block-north-academy,Media Bulletins -https://delcopa.gov/planning/pubs/saldoappenixcpreliminary.pdf,Not Criminal Justice Related -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/summary/040421summary.pdf,Daily Activity Logs -http://www.longbeach.gov/police/press-releases/found---critical-missing-person---/,Media Bulletins -http://www.longbeach.gov/police/press-releases/dui-saturation-patrol-2-/,Media Bulletins -https://www.mass.gov/info-details/audit-of-the-worcester-state-university-objectives-scope-and-methodology,Not Criminal Justice Related -https://wrightstown.us/police-crime-prevention-programs/neighborhood-watch/img_2876/,Poor Data Source -https://southamptontownnypolice.gov/214/transportation-traffic-safety,Not Criminal Justice Related -https://www.rentonwa.gov/city_hall/police/staff_services,Resources -http://beaverpolice.us/staff-members/eric-schwartz/,Poor Data Source -https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0159/,Poor Data Source -http://www.ryepolice.us/announcements/new-rye-animal-control-instragram/attachment/dumpster-divers,Poor Data Source -https://www.wakeforestnc.gov/police/public-information/firing-range,Resources -https://www.antioch.il.gov/wpfb-file/coffee-with-the-cop-oct-pdf/,Misc Police Activity -https://www.coronadelmar.us/police-investigating-social-media-threat-against-newport-mesa-unified-high-schools/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-investigation---4th-street-and-pacific-avenue/,Media Bulletins -https://www.coronadelmar.us/newport-beach-mourns-locals-killed-in-helicopter-crash-media-6/,Not Criminal Justice Related -https://southamptontownnypolice.gov/439/southampton-shinnecock-hills-tuckahoe-ca,Not Criminal Justice Related -https://santabarbaraca.gov/news/santa-barbara-police-requesting-assistance-locating-attempt-murder-suspect,Media Bulletins -https://www.hickoryhillspd.us/2014/06/message-from-the-chief-of-police/,Poor Data Source -https://www.woodvillageor.gov/departments/public-safety/police-law-enforcement/,Resources -https://www.mass.gov/info-details/the-massachusetts-port-authority-audit-objectives-scope-and-methodology,Policies & Contracts -https://www.coppelltx.gov/faq.aspx?qid=249,Resources -https://www.hayward-ca.gov/police-department/programs/business-watch-program,Resources -http://www.longbeach.gov/police/press-releases/residential-burglary-suspect-arrested/,Media Bulletins -https://www.burienwa.gov/news_events/city_newsroom/news_announcements/burien_police_chief_promoted_within_kcso,Media Bulletins -https://www.lynchburgvapolice.gov/news-updates/update-news-release-incident-involving-lpd-officer/,Media Bulletins -https://delcopa.gov/vsc/,Not Criminal Justice Related -https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/arrests/070722arrests.pdf,Poor Data Source -http://www.ryepolice.us/westnile,Not Criminal Justice Related -https://www.ashevillenc.gov/news/asheville-police-department-launches-online-reporting-as-part-of-upgraded-police-to-citizen-tool/,Media Bulletins -https://delcopa.gov/courts/juror/eresponse.html,Resources -https://www.mass.gov/doc/public-meeting-ma-state-police-lower-basin-barracks-modernization/download,Not Criminal Justice Related -https://norfolkne.gov/assets/site/documentcentral/police/archived-calls-for-service/2017-calls-for-service/march2017cfs.pdf,Calls for Service -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/summary/111821summary.pdf,Dispatch Logs -http://www.greenvillenc.gov/government/police/mental-health-crisis-services,Poor Data Source -https://www.roseville.ca.us/government/departments/electric_utility/rebates___energy_savings/your_trusted_solar_advisor_copy,Not Criminal Justice Related -https://delcopa.gov/publicrelations/releases/2020/covidtesting_canceledmillbournesept.html,Not Criminal Justice Related -https://www.lynchburgvapolice.gov/wp-content/uploads/2021/06/lynchburg-police-patch-new-w-red.png,Poor Data Source -http://www.longbeach.gov/police/press-releases/charges-filed-in-2002-murder/,Media Bulletins -https://www.gurnee.il.us/events/2017/06/10/default-calendar/2017-outrun-the-cops!,Not Criminal Justice Related -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/092921blotter.pdf,Dispatch Logs -https://santabarbaraca.gov/government/departments/santa-barbara-police-department,Contact Info & Agency Meta -https://www.pleasantprairiewi.gov/departments/police/news/police_and_fire___rescue_news_archive/2019_news_releases/19-_year-_old_suffers_fatal_gunshot_wound_update,Not Criminal Justice Related -https://www.prescott-az.gov/services-safety/police/police-program-and-services/,Contact Info & Agency Meta -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/summary/060721summary1.pdf,Dispatch Logs -https://delcopa.gov/planning/programsandinitiatives/naturalresourceprotection.html,Resources -https://www.edmondswa.gov/services/police,Contact Info & Agency Meta -https://www.southamptontownnypolice.gov/faq.aspx?qid=79,Not Criminal Justice Related -https://coloradosprings.gov/police-department/page/coffee-cop,Not Criminal Justice Related -https://www.wheelingwv.gov/policejobs,Training & Hiring Info -http://www.ryepolice.us/announcements/aquarion-water-company-boil-order-8-23-19,Not Criminal Justice Related -https://delcopa.gov/delcoready/involved.html,Resources -https://alpha.austin.gov/en/police-oversight/notice-of-complaint-related-to-2022-0889/,Poor Data Source -https://delcopa.gov/publicrelations/releases/2019/airforceflagraising.html,Not Criminal Justice Related -https://police.birminghamal.gov/command-staff/lieutenants/,Personnel Records -https://www.mass.gov/info-details/audit-of-the-massachusetts-bay-transportation-authority-objectives-scope-and-methodology,Not Criminal Justice Related -https://alpha.austin.gov/en/police-oversight/notice-of-complaint-related-to-2022-0765/,Poor Data Source -http://www.longbeach.gov/police/press-releases/fatal-hit-and-run/,Media Bulletins -https://ose.louisiana.gov/event/police-communications-officer-34/,Poor Data Source -https://www.ci.san-ramon.ca.us/our_city/departments_and_divisions/police/victims_rights_information/hate_violence,Poor Data Source -https://delcopa.gov/planning/pdf/demodata/povertystatus.pdf,Not Criminal Justice Related -https://www.lynchburgvapolice.gov/wp-content/uploads/2022/02/20220201_162001000_ios.jpg,Poor Data Source -http://www.longbeach.gov/police/press-releases/murder-1200-block-of-e--17th-street/,Media Bulletins -https://www.mass.gov/doc/municipal-police-training-committee-mptc-meeting-minutes-101619/download,Misc Police Activity -https://www.arlingtontx.gov/news/my_arlington_t_x/news_stories/arlington_police_chief_announces_retirement,Media Bulletins -https://coloradosprings.gov/article/news/balltoberfest-collects-donated-sports-balls-police-departments-play-cos,Not Criminal Justice Related -https://www.florenceaz.gov/jobs/police-records-clerk/,Poor Data Source -https://coloradosprings.gov/police-department/article/news/homicide-investigation-3500-block-south,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder--9th-st----locust-ave--/,Media Bulletins -https://www.pleasantprairiewi.gov/news/2021_news/police_department_celebrates_50_years_of_service,Media Bulletins -https://www.sandiego.gov/department-document/san-diego-police-announce-arrests-home-invasion-series,Media Bulletins -http://www.ryepolice.us/pressrelease/birchwood-drive-reckless-conduct-press-release/attachment/hordon,Poor Data Source -https://champaignil.gov/police/about-us/policies-and-procedures/,Policies & Contracts -http://www.longbeach.gov/police/press-releases/dui-enforcement-operation-planned-st--patrick-s-day/,Media Bulletins -https://civicpride.jacksontn.gov/government/public_notices___press_releases/newjpdchiefofpolice,Not Criminal Justice Related -https://police.greenvillesc.gov/1643/photo-gallery,Resources -https://alpha.austin.gov/en/police-oversight/formal-complaint-purpose-and-scoperesponsibility-to-the-community-and-other-policy-violations-13/,Poor Data Source -https://delcopa.gov/council/2015minutes/032515minutes.pdf,Not Criminal Justice Related -https://norfolkne.gov/government/departments/police-division/press-releases/,List of Data Sources -http://www.lafayettepolice.us/175/physical-tactics-room,Training & Hiring Info -http://www.longbeach.gov/police/press-releases/officer-involved-shooting2/,Media Bulletins -https://www.douglas.co.us/documents/how-to-open-a-copy-account-with-douglas-county.pdf/,Records Request Info -https://www.ashevillenc.gov/news/asheville-police-release-citizen-complaint-and-9-1-1-call-data-on-open-data-portal/,Resources -http://www.longbeach.gov/police/press-releases/crime-continues-to-decrease-in-long-beach/,Media Bulletins -https://www.michigan.gov/som/government/state-license-search/l/law-enforcement-officer-police,Poor Data Source -https://www.colma.ca.gov/documents/jd-police-commander/,Training & Hiring Info -https://alpha.austin.gov/en/health-safety/accountability-and-transparency-in-policing/police-feedback-and-records/how-to-use-official-documents/,Poor Data Source -https://civicpride.jacksontn.gov/government/departments/police/divisions/administrative/law_enforcement_technologies,Not Criminal Justice Related -https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/arrests/021622arrests.pdf,Poor Data Source -https://delcopa.gov/ojs/ojsforms/cifinfosheet.pdf,Resources -http://www.longbeach.gov/police/press-releases/l-b-p-d--academy-graduation-ceremony-held-today/,Media Bulletins -https://ethics.ny.gov/news/jcope-settles-public-officers-law-violation-former-mta-employee,Media Bulletins -https://sanramon.ca.gov/our_city/departments_and_divisions/police/community_programs/youth_services/station_tours,Resources -http://police.portlandmaine.gov/293/elder-services,Resources -https://www.ci.san-ramon.ca.us/our_city/departments_and_divisions/police/fee_and_forms/violation_of_city_ordinance,Resources -https://www.mass.gov/doc/wallace-patrick-v-beverly-police-department-11608/download,Court Cases -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/093021blotter.pdf,Dispatch Logs -https://www.lasalle-il.gov/about-la-salle/city-governance/city-committees/police-judiciary,Contact Info & Agency Meta -https://spdblotter.seattle.gov/2015/08/26/police-need-your-help-to-find-missing-toddler-kevin-szal/,Media Bulletins -https://www.sandiego.gov/department-document/update-police-investigate-murder-clairemont,Media Bulletins -https://www.mass.gov/doc/bcntsaplymouthreverecopperamendmentpdf/download,Poor Data Source -http://www.ryepolice.us/pressrelease/rye-beaches-reopening-june-1-2020-press-release/attachment/press-release_0001,Media Bulletins -https://detroitmi.gov/departments/police-department/detroit-police-department-shield-program/community-partner-resources,Misc Police Activity -https://www.southamptontownnypolice.gov/faq.aspx?qid=539,Not Criminal Justice Related -https://www.lynchburgvapolice.gov/news-updates/attempted-armed-robbery-at-att-store/,Media Bulletins -https://delcopa.gov/publicrelations/releases/2020/blackhistorymonth.html,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/traffic-fatality-14-/,Media Bulletins -https://www.foxcrossingwi.gov/departments/police-department/history/badge1/,Poor Data Source -https://www.knoxvilletn.gov/archived_news_stories/2008/police_explorer_class_orientation,Not Criminal Justice Related -https://coloradosprings.gov/police-department/article/news/officer-involved-shooting-march-7-2022,Officer Involved Shootings -https://coloradosprings.gov/police-department/article/news/cspd-accident-alert-status-may-7-11-2021,Media Bulletins -http://www.longbeach.gov/police/press-releases/felony-robbery-suspect-arrested-and-charged-1-/,Media Bulletins -https://www.osc.state.ny.us/local-government/audits/fire-company-or-department/2015/12/18/copenhagen-fire-department-controls-over-financial-activities,Not Criminal Justice Related -https://hilliardohio.gov/hilliard-polices-sgt-higgins-retires-april/,Media Bulletins -https://delcopa.gov/courts/specialtycourts/pdf/drugtreatment/treatment court - general rules.pdf,Resources -https://www.arlingtontx.gov/news/my_arlington_t_x/news_archive/2018_archived_news/july_2018/july_2018_arlington_police_community_newsletter,Media Bulletins -http://www.longbeach.gov/police/how-do-i/get-inmate-information/,Resources -http://www.lafayettepolice.us/726/home-emergency-plans,Contact Info & Agency Meta -https://delcopa.gov/council/2019minutes/010919minutes.pdf,Not Criminal Justice Related -https://covington.va.us/city-government/city-departments/police/,Media Bulletins -https://www.southamptontownnypolice.gov/899/law-enforcement-career-exploring-program,Training & Hiring Info -https://delcopa.gov/sustainability/presentations/22/11_kellysanders_v1.pptx,Not Criminal Justice Related -https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0725/,Poor Data Source -https://www.lynchburgvapolice.gov/news-updates/shooting-scene-on-golf-park-drive/,Media Bulletins -https://www.montgomeryohio.gov/historic-photos/police-officers-1970_50506081303_o/,Poor Data Source -https://www.montgomeryohio.gov/police-department-citizen-complaint-notice/,Complaints & Misconduct -https://www.doj.state.or.us/events/predicting-intimate-partner-violence-injuries-based-on-police-reports/,Poor Data Source -https://alpha.austin.gov/es/police-oversight/formal-complaint-de-escalation-of-potential-force-encounters-and-other-policy-violations-7/,Poor Data Source -https://alpha.austin.gov/es/police-oversight/9-17-20-3/,Poor Data Source -https://delcopa.gov/planning/pdf/mapping/tinicum.pdf,Poor Data Source -https://detroitmi.gov/departments/police-department/senior-citizens-911-profile,Resources -https://pittsburghpa.gov/police/ssd,Poor Data Source -http://www.longbeach.gov/police/press-releases/in-custody-death-1-/,Media Bulletins -https://www.hayward-ca.gov/police-department/public-services/youth-family-services-bureau//curfew-violations,Media Bulletins -https://dccouncil.gov/judiciary-public-safety/copy-of-fo0_fy19_attachment-iv/,Annual & Monthly Reports -http://www.longbeach.gov/police/press-releases/deceased-infant-found-in-alley/,Media Bulletins -https://toddmissiontx.gov/mp_teams/police-department/,Contact Info & Agency Meta -https://police.birminghamal.gov/bureaus/patrol/tactical-operations-precinct/,Contact Info & Agency Meta -https://www.mass.gov/doc/jlm-13-2559-city-of-springfield-and-international-brotherhood-of-police-officers-local-364/download,Misc Police Activity -https://www.southamptontownnypolice.gov/1340/endangered-species-resolutions,Not Criminal Justice Related -https://alpha.austin.gov/es/police-oversight/recommendations-for-improving-apds-policy-development-practices/,Poor Data Source -http://www.lafayettepolice.us/1618/research-participation-spotlight,Not Criminal Justice Related -https://spdblotter.seattle.gov/2012/07/03/spd-taking-applications-for-autumn-community-police-academy/,Media Bulletins -http://www.tampa.gov/news/tampa-police-conduct-death-investigation-interstate-275-76591,Poor Data Source -https://champaignil.gov/2012/03/22/police-officer-written-exam/,Training & Hiring Info -https://audgen.michigan.gov/complete-projects/michigan-state-police-retirement-system/r071015416/,List of Data Sources -https://cityofpowell.us/reports/auto-draft-322/2020-08-police-department/,Annual & Monthly Reports -http://police.portlandmaine.gov/652/portland-community-free-clinic,Resources -https://barnegatpolice.us/download/missing-person-report-ncic/,Resources -https://delcopa.gov/courts/domesticrelations/changeofaddress.html,Resources -https://www.newcarrolltonmd.gov/government/departments/police_department/how_do_i__/vehicle_release,Contact Info & Agency Meta -https://www.colma.ca.gov/document_taxonomy/police-department/,List of Data Sources -https://www.fortworthtexas.gov/departments/police/professional-standards,List of Data Sources -https://brookfieldil.gov/police-pension-board-012920/,Poor Data Source -https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0373/,Poor Data Source -https://alpha.austin.gov/en/police-oversight/temporary-suspension-of-police-sergeant-jeffrey-dwyer/,Poor Data Source -http://www.longbeach.gov/police/press-releases/murder-46-/,Media Bulletins -https://www.southamptontownnypolice.gov/1325/mill-pond-association,Not Criminal Justice Related -https://www.southamptontownnypolice.gov/1323/village-of-sag-harbor---green-infrastruc,Not Criminal Justice Related -https://elkhartlakewi.gov/departments/police/,Contact Info & Agency Meta -https://alpha.austin.gov/en/police-oversight/formal-complaint-purpose-and-scoperesponsibility-to-the-community-and-other-policy-violations-7/,Poor Data Source -https://columbiacitypolice.us/documents/daily stats/3.23.21.pdf,Poor Data Source -http://police.portlandmaine.gov/844/friends-of-woodfords-corner,Not Criminal Justice Related -https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0145/,Poor Data Source -http://www.longbeach.gov/police/press-releases/dui-saturation-patrol-nets-3-arrest/,Media Bulletins -https://www.southamptontownnypolice.gov/154/forms-applications,Resources -https://www.antioch.il.gov/wpfb-file/04-14-15-police-and-fire-agenda-pdf-3/,Poor Data Source -https://delcopa.gov/planning/pubs/delco2035transportationplan.html,Not Criminal Justice Related -https://www.antioch.il.gov/wpfb-file/nicorcoppernotice-pdf-3/,Not Criminal Justice Related -https://www.giddingspolice-tx.us/about-1,Complaints & Misconduct -http://lafayettepolice.us/441/how-you-can-help,Not Criminal Justice Related -https://www.woburnma.gov/government/police/policies-and-procedures-for-issuing-a-ltc-with-application/,Training & Hiring Info -http://www.longbeach.gov/police/press-releases/murder-anaheim-st.--walnut-ave/,Media Bulletins -https://www.ci.rohnert-park.ca.us/services/emergency_services/police_and_fire_services,Resources -http://www.longbeach.gov/police/press-releases/critical-missing-person-rosa-ella-brady/,Media Bulletins -https://cityofpowell.us/powell-police-chief-stephen-hrytzik-elected-section-iv-representative-of-fbi-national-academy-associates/chiefhrytzik_credit_klattephotography/,Contact Info & Agency Meta -http://police.byram-ms.us/news/,Poor Data Source -https://delcopa.gov/courts/domesticrelations/copiesoforder.html,Resources -https://riag.ri.gov/press-releases/pawtucket-police-officer-charged-west-greenwich-shooting-incident,Officer Involved Shootings -https://alpha.austin.gov/en/police-oversight/formal-complaint-insubordination-and-other-policy-violations/,Poor Data Source -https://alpha.austin.gov/en/police-oversight/formal-complaint-purpose-and-scoperesponsibility-to-the-community-and-other-policy-violations-5/,Poor Data Source -https://www.antioch.il.gov/wpfb-file/09-09-11-police-pension-fund-agenda-pdf-2/,Poor Data Source -http://www.longbeach.gov/police/press-releases/traffic-fatality-5-/,Media Bulletins -https://www.mass.gov/doc/proposed-amendments-to-115-cmr-100-scope-and-authority-0/download,Policies & Contracts -https://delcopa.gov/publicrelations/releases/18pdfs/18hearthealthwearred .pdf,Not Criminal Justice Related -https://cityofpowell.us/government/building-department/city-of-powell-commercial-building/checklist-cop-comm-change-of-occ-01-08-19/,Resources -https://www.stpaul.gov/departments/police/administration-office-chief/operations-division/canine-k-9-unit,Training & Hiring Info -https://coloradosprings.gov/police-department/page/colorado-springs-police-department-birthday,Not Criminal Justice Related -https://alpha.austin.gov/es/police-oversight/message-from-the-office-of-police-oversight-director/,Poor Data Source -https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/summary/102122summary.pdf,Poor Data Source -https://norfolkne.gov/assets/site/documentcentral/police/statistical-reports/ytd-mayor-030120.pdf,Annual & Monthly Reports -https://cheswold.delaware.gov/cheswold-police-department-crime-statistics/may-2018-activity-report/,Annual & Monthly Reports -https://www.mass.gov/how-to/submit-a-public-records-request-to-the-municipal-police-training-committee,Resources -https://ose.louisiana.gov/event/police-communications-officer-52/,Poor Data Source -https://www.minneapolismn.gov/government/programs-initiatives/community-safety/background/police-operational-assessment/mpd-operational-assessment-contract/,Policies & Contracts -https://delcopa.gov/courts/districtjudges/index.html,Media Bulletins -http://www.cityofpataskalaohio.gov/cop_folder/minutes-2015/january-5-2015-council-public-hearing/,Not Criminal Justice Related -https://delcopa.gov/publicrelations/releases/2020/flushot_broomall.html,Not Criminal Justice Related -https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0323/,Poor Data Source -https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/blotter/092022blotter.pdf,Dispatch Logs -https://www.roseville.ca.us/government/departments/police_department/divisions/k-9,Misc Police Activity -http://www.longbeach.gov/police/press-releases/dui-checkpoint-nets-one-arrest2/,Media Bulletins -https://alpha.austin.gov/police-oversight/know-your-rights-video-series/,Poor Data Source -https://toddmissiontx.gov/departments/police-department/mission-statement/,Policies & Contracts -https://delcopa.gov/planning/demodata/municipalinformation.html,Poor Data Source -https://alpha.austin.gov/en/police-oversight/written-reprimand-of-officer-david-freston/,Poor Data Source -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/122421blotter.pdf,Dispatch Logs -https://www.pleasantprairiewi.gov/news/2014_news/police_department_live,Poor Data Source -https://delcopa.gov/publicrelations/releases/2021/emergencybroadbandbenefitprogram.html,Not Criminal Justice Related -https://www.osc.state.ny.us/state-agencies/payroll-bulletins/state-police/sp-216-april-2021-increases-location-pay-supplemental-location-pay-expanded,Media Bulletins -https://cityofpowell.us/police-agency/traffic-surveys/traffic-survey-report-1-13-20-2/,Contact Info & Agency Meta -https://townofcampbellwi.gov/public-safety/police/forms/,Poor Data Source -https://alpha.austin.gov/es/police-oversight/formal-complaint-search-protocol/,Poor Data Source -https://www.antioch.il.gov/wpfb-file/12-11-12-police-pension-agenda-pdf-5/,Poor Data Source -https://delcopa.gov/planning/calendar/eventcalendar_june.html,Misc Police Activity -https://www.mass.gov/doc/chelmsford-police-department-promotion-investigation-report/download,Court Cases -https://www.troyny.gov/photos-troy-police-department-appoints-new-officers/,Media Bulletins -http://www.paloshillspolice.us/wp-content/uploads/2013/05/redlight.jpg,Poor Data Source -https://www.bedminster.us/police_fire_rescue/police_department,Contact Info & Agency Meta -https://scrantonpa.gov/your-government/police-department/juvenile-unit/,Contact Info & Agency Meta -http://www.longbeach.gov/police/press-releases/applications-for-volunteer-senior-police-partners-program-now-being-accepted/,Media Bulletins -https://www.va.gov/eastern-oklahoma-health-care/stories/va-suicide-prevention-program-recognizes-tulsa-police-officer/,Media Bulletins -https://champaignil.gov/2017/09/07/now-cgtv-champaign-police-department-employee-awards-ceremony/,Not Criminal Justice Related -https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0647/,Complaints & Misconduct -http://www.longbeach.gov/police/about-the-lbpd/employment/long-beach-mounted-police/,Misc Police Activity -https://www.arlingtontx.gov/news/my_arlington_t_x/news_archive/2016_archived_news/may_2016/arlington_honors_police_salutes_sacrifice,Media Bulletins -https://delcopa.gov/sustainability/pdf/raise/eastcostgreenwaytrailfeasibilitystudy_2009.pdf,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/murder-1600-block-of-pine-avenue/,Media Bulletins -https://spdblotter.seattle.gov/2010/08/09/john-diaz-confirmed-as-new-chief-of-police/,Media Bulletins -https://spdblotter.seattle.gov/2010/02/01/police-arrest-grab-n-go-bandit/,Media Bulletins -https://www.sandiego.gov/department-document/san-diego-police-arrest-two-suspects-multiple-car-burglaries,Media Bulletins -https://www.antioch.il.gov/2019/11/21/police-fire-commission-special-meeting/,Misc Police Activity -http://www.longbeach.gov/police/press-releases/police-seek-publics-help/,Media Bulletins -https://www.mass.gov/regulations/273-cmr-400-scope-of-practice,Not Criminal Justice Related -https://champaignil.gov/tag/youth-police-academy/,Media Bulletins -https://delcopa.gov/planning/pubs/delco2035.html,Not Criminal Justice Related -https://www.sandiego.gov/department-document/resolution-no-115919-copy,Poor Data Source -https://southamptontownnypolice.gov/faq.aspx?qid=237,Not Criminal Justice Related -https://champaignil.gov/police/about-us/level-up-experienced-officer-interest-form/,Contact Info & Agency Meta -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/arrests/052421arrests.pdf,Arrest Records -https://www.londonohio.gov/copy-of-city-ordances,Poor Data Source -https://estespark.colorado.gov/departments/police/operations/patrol,Contact Info & Agency Meta -https://www.tukwilawa.gov/departments/police/police-department-services/online-reporting/,Resources -https://www.sandiego.gov/police/recruiting/contact,Contact Info & Agency Meta -https://delcopa.gov/publicrelations/releases/2021/sheriffsofficeaccreditation.html,Media Bulletins -https://www.roseville.ca.us/news/what_s_happening_in_roseville/police_thank_local_community,Media Bulletins -http://www.longbeach.gov/police/press-releases/l-b-p-d--dui-checkpoint-proves-effective/,Media Bulletins -https://www.sandiego.gov/department-document/police-officer-cleared-shooting-jury-finds-actions-were-reasonable,Officer Involved Shootings -https://www.roundrocktexas.gov/news/police-seek-assistance-locating-robbery-suspect-3/,Media Bulletins -https://www.plymouthmi.gov/government/departments/police/forms_and_documents/i_c_m_a_public_safety_reports,Annual & Monthly Reports -https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0351/,Complaints & Misconduct -https://www.stpaul.gov/departments/police/connect-with-department/minnesota-crime-alert-network,Contact Info & Agency Meta -https://alpha.austin.gov/en/police-oversight/formal-complaint-purpose-and-scope-12/,Poor Data Source -https://pittsburghpa.gov/files/police/orders/ch3/35-03-infectious-disease-kits.pdf,Poor Data Source -https://www.minneapolismn.gov/news/2022/september/new-police-chief-/,Poor Data Source -https://coloradosprings.gov/police-department/article/news/traffic-fatality-briargate-parkway-and-1,Media Bulletins -http://www.lafayettepolice.us/3537/report-an-issue,Resources -https://coloradosprings.gov/police-department/article/news/cspd-asks-communitys-help-fatal-crash,Media Bulletins -http://police.portlandmaine.gov/1170/maine-state-pier,Not Criminal Justice Related -https://alpha.austin.gov/en/police-oversight/2020-08-26-12/,Complaints & Misconduct -https://www.roundrocktexas.gov/news/round-rock-police-investigate-suspicious-death-subject-in-custody/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-3500-block-of-faust-ave/,Media Bulletins -https://www.antioch.il.gov/wpfb-file/national-coffee-with-a-cop-flyer-template-ppt-pdf/,Misc Police Activity -http://www.longbeach.gov/police/press-releases/murder-19-/,Media Bulletins -https://pittsburghpa.gov/files/police/orders/ch2/25-02-reinstatement-voluntary-break-in-service.pdf,Poor Data Source -http://www.longbeach.gov/police/press-releases/dui-checkpoint-nets-one-arrest---numerous-citations/,Media Bulletins -https://dccouncil.gov/donation-disclosures/copy-of-december-2018-donation-disclosures-3/,Not Criminal Justice Related -https://www.sandyspringsgapolice.gov/north-metro-s-w-a-t/,Contact Info & Agency Meta -https://www.ashevillenc.gov/news/three-promoted-in-asheville-police-dept/,Media Bulletins -https://www.east-windsor.nj.us//police/cpanel,Poor Data Source -https://www.dps.nm.gov/blog/2021/04/14/new-mexico-state-police-arrests-driver-for-vehicular-homicide-in-chaves-county/,Media Bulletins -https://cityofpowell.us/police-agency/traffic-surveys/traffic-survey-report-11-13-17-2/,Not Criminal Justice Related -https://ose.louisiana.gov/event/police-officer-20/,Poor Data Source -https://delcopa.gov/publicrelations/releases/2021/covid_vaccineupdate0217.html,Media Bulletins -http://www.longbeach.gov/police/press-releases/police-asking-for-publics-help-in-identifying-person-of-interest-in-sexual-battery/,Media Bulletins -http://www.longbeach.gov/police/press-releases/fireworks-seized/,Media Bulletins -https://alpha.austin.gov/es/police-oversight/formal-complaint-responsibility-to-the-community-2/,Poor Data Source -https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0014/,Complaints & Misconduct -https://www.ci.san-ramon.ca.us/our_city/departments_and_divisions/police/victims_rights_information/survivor_of_sexual_assault,Resources -https://www.elrenook.gov/departments/police-department/services-resources/resource-numbers/,Contact Info & Agency Meta -https://www.attorneygeneral.utah.gov/wp-content/uploads/2015/03/img_7489-copy-2.jpg,Media Bulletins -https://www.mass.gov/doc/october-30-1996-out-of-state-domestic-violence-restraining-orders-with-a-copy-of-memorandum/download,Policies & Contracts -https://www.alamoheightstx.gov/public-safety/police/divisions/,Contact Info & Agency Meta -https://delcopa.gov/planning/pubs/portfolio-12_tacticalplacemaking.pdf,Not Criminal Justice Related -https://icjia.illinois.gov/researchhub/articles/law-enforcement-response-to-mental-health-crisis-incidents-a-survey-of-illinois-police-and-sheriff-s-departments/,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality-20-/,Media Bulletins -https://southamptontownnypolice.gov/1663/2022-adopted-budget-operating,List of Data Sources -https://delcopa.gov/purchasing/bidsprops/kyo878.pdf,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/murder-investigation/,Media Bulletins -https://www.fortworthtexas.gov/departments/hr/administration/prr/police-prr,Policies & Contracts -https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/blotter/022622blotter.pdf,Poor Data Source -https://joinmpd.dc.gov/metropolitan-police/reserve-police-officer,Training & Hiring Info -https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0932/,Poor Data Source -https://delcopa.gov/ojs/ojsforms/praecipetosettlediscontinue.pdf,Resources -http://www.longbeach.gov/police/about-the-lbpd/bureaus/investigations-bureau/officer-involved-shooting-investigation-process/,Policies & Contracts -https://delcopa.gov/council/2020minutes/10072020minutes.pdf,Not Criminal Justice Related -https://www.ci.rohnert-park.ca.us/city_hall/departments/public_works/drainage___stormwater/creeks__environmental_information/copeland_test,Not Criminal Justice Related -https://champaignil.gov/2022/08/27/champaign-police-investigating-overnight-shooting-incidents/,Media Bulletins -https://delcopa.gov/publicrelations/releases/2020/pdf/delawarecountynovemberflushotclinics_mercyfitz.pdf,Not Criminal Justice Related -https://www.jacksontn.gov/government/departments/police/daily_arrest_reports,Poor Data Source -https://alpha.austin.gov/police-oversight/2020-06-4-17/,Poor Data Source -https://louisvilleky.gov/police/forms/submit-crime-tip,Resources -https://bolivar.mo.us/shop-with-a-copr/img_3318/,Poor Data Source -https://www.farmingtonmn.gov/government/departments/police/staff_directory,Poor Data Source -https://delcopa.gov/vote/pdf/2021/delco-boe_legal-notice_public-meeting_9-20-2021.pdf,Not Criminal Justice Related -https://www.panynj.gov/police/en/about/leadership.html,Personnel Records -https://rexburg.us/police-investigating-road-rage-after-man-killed-in-box-elder-county-rollover-thursday/,Poor Data Source -https://cheswold.delaware.gov/cheswold-police-department-policy-and-procedure-manual/directive-10-2-43-naloxone-programs/,Policies & Contracts -https://policing.cityofpleasantonca.gov/police-department-faqs/,Resources -https://delcopa.gov/health/pdf/agendaminutes/bohagenda_jan_6_22.pdf,Not Criminal Justice Related -https://alpha.austin.gov/en/police-oversight/bwc-dmav-the-role-of-vendors-and-community-input-in-policy/,Poor Data Source -https://champaignil.gov/tag/champaign-police-arrest-kidnapping-suspect/,Media Bulletins -https://delcopa.gov/hcd/cdbg.html,Not Criminal Justice Related -https://delcopa.gov/ich/pdfs/covid_govwolf_medicaidchip.pdf,Poor Data Source -https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0328/,Poor Data Source -http://www.longbeach.gov/police/press-releases/murder-31-/,Media Bulletins -https://www.knoxvilletn.gov/government/boards_commissions/police_advisory_review_committee_parc/p_a_r_c_20th_anniversary/history_of_p_a_r_c___p_d_f_,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/arrest-made-in-2007-murder-case/,Media Bulletins -https://www.southamptontownnypolice.gov/1056/xeriscaping,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/update---companion-dog-taken-in-vehicle-theft/,Media Bulletins -https://delcopa.gov/vote/pdf/2022/2022primary-electiondayguidedigitaleditionv-rev1.pdf,Not Criminal Justice Related -https://dccouncil.gov/judiciary-public-safety/copy-of-ag0_fy19_-attachment-iv/,Annual & Monthly Reports -http://www.longbeach.gov/police/press-releases/undetermined-deaths--possibly-related-to-carbon-monoxide-poisoning/,Media Bulletins -https://www.cityofladue-mo.gov/departments/police-department/annual-reports-158,Annual & Monthly Reports -"https://norfolkne.gov/government/departments/police-division/press-releases/march-4,-2021-press-release.html",Media Bulletins -http://www.longbeach.gov/police/press-releases/robbery-suspect-arrested--charges-filed/,Media Bulletins -https://alpha.austin.gov/police-oversight/formal-complaint-impartial-attitude-and-courtesy-13/,Poor Data Source -http://www.longbeach.gov/police/press-releases/dui-checkpoint/,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality---long-beach-blvd.--cambridge-st/,Media Bulletins -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/071421blotter.pdf,Dispatch Logs -http://www.longbeach.gov/police/press-releases/halloween-safety-tips-1-/,Media Bulletins -https://www.ashevillenc.gov/wp-content/uploads/2016/08/citizens-police-academy.jpg,Poor Data Source -https://www.lyndhurstohio.gov/police-crime-prevention-run-hide-fight.html,Poor Data Source -https://www.hayward-ca.gov/discover/news/feb19/applicants-sought-new-police-community-advisory-panel,Training & Hiring Info -https://southamptontownnypolice.gov/169/parent-resources,Resources -https://www.mass.gov/doc/essential-functions-of-a-police-officer/download,Poor Data Source -http://www.longbeach.gov/police/press-releases/l.b.p.d2.-promotes-new-leaders/,Media Bulletins -https://www.jacksonms.gov/meetings/bid-opening-jpd-november-30-2021/jpd-rfp-catering-services-for-the-city-of-jackson-police-training-academy/,Not Criminal Justice Related -https://www.stpaul.gov/departments/police/21st-century-policing-report/pillar-2-policy-and-oversight/report-0,List of Data Sources -https://delcopa.gov/publicrelations/releases/2020/pdf/citizencorptrainingaug27.pdf,Media Bulletins -http://www.longbeach.gov/police/press-releases/l.b.p.d.-seizes-large-quantity-of-fireworks/,Media Bulletins -https://www.coppelltx.gov/217/emergency-notification-system-notifycopp,Resources -https://www.sandiego.gov/police/news-center/cold-cases/frank-lee-foust,Media Bulletins -http://www.longbeach.gov/police/press-releases/dui-saturation-patrol-results/,Media Bulletins -http://www.lafayettepolice.us/2356/photos,Not Criminal Justice Related -https://wyomingohio.gov/departments/police-department-2/coyote-information/,Poor Data Source -http://www.longbeach.gov/police/press-releases/l-b-p-d--seeks-public-s-help-in-robbery-being-investigated-as-hate-crime/,Media Bulletins -https://alpha.austin.gov/es/police-oversight/formal-complaint-acts-bringing-discredit-upon-the-department/,Poor Data Source -https://www.roundrocktexas.gov/news/police-looking-witnesses-fatal-collision/,Media Bulletins -https://champaignil.gov/2015/03/02/champaign-police-investigate-downtown-shooting/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-6700-block-gardenia/,Media Bulletins -https://alpha.austin.gov/en/police-oversight/notice-of-complaint-related-to-2022-0876/,Poor Data Source -http://www.longbeach.gov/police/press-releases/residential-robbery-suspects-charged/,Media Bulletins -https://mukilteowa.gov/departments/police/gun-safety-class-scholarship-program/,Resources -https://police.birminghamal.gov/command-staff/captain-raymond-hollis-crutchfield/,Poor Data Source -https://www.arlingtontx.gov/city_hall/departments/police/community/crime_prevention,Poor Data Source -http://www.longbeach.gov/police/press-releases/automotive-business-compliance-checks-conducted/,Media Bulletins -https://alpha.austin.gov/es/police-oversight/2020-09-17-7/,Poor Data Source -https://www.ci.san-bernardino.ca.us/city_hall/police_department/online_services,Resources -https://www.foxcrossingwi.gov/departments/police-department/history/30712442_10155740250625958_5846323570807930880_n/,Poor Data Source -https://www.mass.gov/doc/riva-albert-v-boston-police-department-related-superior-court-decision-21210/download,Court Cases -https://police.crystalmn.gov/our_city/boards_and_commissions/parks___recreation_commission,Not Criminal Justice Related -https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0871/,Poor Data Source -http://www.longbeach.gov/police/press-releases/robbery-suspect-arrested-and-charged-2-/,Media Bulletins -http://lafayettepolice.us/faq.aspx?qid=131,Not Criminal Justice Related -https://www.mass.gov/doc/berrios-crystal-v-boston-police-department-3316/download,Court Cases -https://www.stmatthewsky.gov/public-works/application-for-employment-current-copy/,Training & Hiring Info -https://www.austintexas.gov/page/commend-austin-police-officer,Contact Info & Agency Meta -http://www.longbeach.gov/police/press-releases/students-returning-to-school-motorists-urged-to-drive-carefully/,Media Bulletins -https://coloradosprings.gov/police-department/page/commander-howard,Poor Data Source -https://www.minneapolismn.gov/resident-services/public-safety/police-public-safety/police-reports-and-data-requests/sex-offender-community-notification/,Resources -https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0003/,Poor Data Source -http://www.longbeach.gov/police/press-releases/graduation-and-summer-break-safety-tips2/,Media Bulletins -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/arrests/060721arrests.pdf,Arrest Records -https://norfolkne.gov/assets/site/documentcentral/police/statistical-reports/2021-statistical/mayormonthly050121.pdf,Annual & Monthly Reports -https://delcopa.gov/planning/pdf/agendas/2021/agenda202107.pdf,Not Criminal Justice Related -https://www.lynchburgvapolice.gov/news-updates/update-suspect-sought-in-cornerstone-street-homicide/,Media Bulletins -https://www.coppelltx.gov/1045/connect-with-oncor,Not Criminal Justice Related -https://www.mass.gov/info-details/2022-audit-of-the-bridgewater-state-university-objectives-scope-and-methodology,Annual & Monthly Reports -https://police.birminghamal.gov/command-staff/captain-james-jackson/,Personnel Records -https://delcopa.gov/vote/military-overseas.html,Not Criminal Justice Related -https://spdblotter.seattle.gov/2014/12/30/police-arrest-christmas-day-bank-burglar/,Media Bulletins -https://alpha.austin.gov/es/police-oversight/2020-06-05-1/,Not Criminal Justice Related -https://delcopa.gov/courts/pdf/21noticetothebarpublic_boardofmanagers_juveniledetentioncenter.pdf,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/juvenile-held-in-connection-with-robbery-case/,Media Bulletins -http://www.longbeach.gov/police/press-releases/significant-crime-reduction-during-first-year-metro-blue-line-contract/,Media Bulletins -https://www.pleasantprairiewi.gov/departments/police/news/police_and_fire___rescue_news_archive/2017_news_releases/police_launch_community_camera_partnership_program,Media Bulletins -https://spdblotter.seattle.gov/2017/03/13/suspected-prowler-arrested-after-police-spot-him-peering-into-cars-at-downtown-garage/,Media Bulletins -http://www.norwoodma.gov/departments/police/report_a_tip.php,Resources -http://www.longbeach.gov/police/press-releases/murder-36-/,Media Bulletins -https://delcopa.gov/publicrelations/releases/2020/thankyoufirstresponders.html,Media Bulletins -https://delcopa.gov/courts/judges/kelly.html,Personnel Records -https://cityofsweetwater.fl.gov/event/sweetwater-police-pension-plan-board-of-trustees-meeting/,Policies & Contracts -https://coloradosprings.gov/police-department/article/news/update-homicide-investigation-3125-sinton,Media Bulletins -https://hilliardohio.gov/hpd-partners-with-neighboring-police-agencies-for-career-day/,Misc Police Activity -https://alpha.austin.gov/health-safety/accountability-and-transparency-in-policing/police-feedback-and-records/bwc-dmav-data-analysis-data-cleaning-operations/,Poor Data Source -https://ridgelandsc.gov/police-department/daily-crime-reports-march-2022,Crime Maps & Reports -http://www.longbeach.gov/police/press-releases/motorcycle-safety-operation-results/,Media Bulletins -https://spdblotter.seattle.gov/2022/06/30/police-arrest-woman-for-shooting-outside-capitol-hill-apartment/,Media Bulletins -https://www.mass.gov/info-details/audit-of-the-office-of-the-commissioner-of-probation-objectives-scope-and-methodology,Not Criminal Justice Related -https://www.mass.gov/doc/national-environmental-policy-act-review-scoping-summary-report-i-90-allston-multimodal-project/download,Not Criminal Justice Related -https://www.pleasantprairiewi.gov/departments/police/news/police_and_fire___rescue_news_archive/2020_news_releases/police_continue_manhunt,Media Bulletins -http://www.longbeach.gov/police/press-releases/felony-suspect-arrested/,Media Bulletins -https://southamptontownnypolice.gov/1543/policies-for-the-zba,Policies & Contracts -https://whitestown.in.gov/news/christmas-with-a-cop/,Media Bulletins -http://www.longbeach.gov/police/press-releases/identity-theft-suspect-charged-with-11-felony-counts/,Media Bulletins -https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0718/,Poor Data Source -http://www.longbeach.gov/police/press-releases/murder-13-/,Media Bulletins -https://delcopa.gov/heroin/tipsforprevention.html,Poor Data Source -https://www.roseville.ca.us/government/departments/police_department/crime_log/crime_log_feb_18_-_march_3__2019,Poor Data Source -https://www.lehi-ut.gov/departments/police/,Contact Info & Agency Meta -https://spdblotter.seattle.gov/2020/07/25/police-make-dozens-of-arrests-after-explosion-damages-east-precinct-and-march-turns-to-riot/,Media Bulletins -https://www.almaarkansas.gov/downloads/alma-police-car/,Poor Data Source -http://www.ryepolice.us/logs/police-logs-for-4-3-19-4-9-19,Daily Activity Logs -https://www.coppelltx.gov/555/nancy-monroe,Not Criminal Justice Related -http://www.ryepolice.us/wp-content/uploads/wallis-sands-half-marathon-route.jpg,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/murder-orange-and-washington/,Media Bulletins -https://www.arlingtontx.gov/news/my_arlington_t_x/news_archive/2014_archived_news/october_2014/uta_spotlight_arlington_police_students_celebrate,Media Bulletins -https://police.greenvillesc.gov/faq.aspx?qid=222,Complaints & Misconduct -https://beaumonttexas.gov/police-investigating-aggravated-assault-4600-block-detroit/,Poor Data Source -https://rexburg.us/police-identify-man-killed-in-motorcycle-crash-in-logan-canyon/,Poor Data Source -https://champaignil.gov/tag/copper-road/,List of Data Sources -https://www.police.wallingfordct.gov/about-us/history/,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/traffic-fatality---willow-st.-and-golden-ave/,Media Bulletins -https://www.townofnewhartfordny.gov/police-commission-minutes,Poor Data Source -https://barnegatpolice.us/six-arrested-drug-charges/,Media Bulletins -https://chandlerazpd.gov/2014/09/chandler-police-looking-for-g-a-i-n-participants-4/,Media Bulletins -https://wrightstown.us/police-community-information/driving-in-school-zones/,Resources -https://delcopa.gov/planning/pubs/index.html,Poor Data Source -http://www.cityofpataskalaohio.gov/cop_folder/2015-legislation-under-public-notices/advertisement-of-legislation-passed-december-1-2014-2/,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/weapon-crusher/,Media Bulletins -https://alpha.austin.gov/en/police-oversight/policy-review-and-recommendations-8-cant-wait/,Poor Data Source -https://dps.iowa.gov/marshalltown-police-department-makes-arrest-part-death-investigation,Media Bulletins -https://www.mass.gov/news/reminders-being-issued-by-massdot-eopss-massachusetts-state-police-and-transportation-partners,Media Bulletins -https://southamptontownnypolice.gov/1034/2017-adopted-budget---capital,Annual & Monthly Reports -https://www.foxcrossingwi.gov/departments/police-department/history/,Misc Police Activity -https://rocklandmaine.gov/events/police-review-committee/,Poor Data Source -http://www.longbeach.gov/police/press-releases/murder-1300-block-11th/,Media Bulletins -https://coloradosprings.gov/police-department/page/metro-crime-lab,Misc Police Activity -http://www.longbeach.gov/police/press-releases/dui-saturation-patrols-planned-this-weekend/,Media Bulletins -https://delcopa.gov/publicrelations/releases/2020/covidtesting_lansdowneaug.html,Not Criminal Justice Related -https://balharbourfl.gov/departments/police/request-crash-report/,Accident Reports -https://spdblotter.seattle.gov/2015/04/30/barefoot-felon-ditches-stolen-car-gun-at-mcdonalds-leads-police-on-chase/,Media Bulletins -http://www.longbeach.gov/police/press-releases/dui-drivers-license-checkpoint-planned-this-weekend-2147438636/,Media Bulletins -http://www.longbeach.gov/police/press-releases/assault-investigation-leads-to-firearm-discharge/,Media Bulletins -https://alpha.austin.gov/police-oversight/2020-06-12-5/,Poor Data Source -https://www.memphistn.gov/news/wpfd_file/police-services-18/,Poor Data Source -http://www.longbeach.gov/police/press-releases/robbery-suspect-arrested-2-/,Media Bulletins -https://delcopa.gov/sustainability/pdf/raise/ihpinterprativesignageguidelinesvoliidesignhandbook_2013.pdf,Poor Data Source -https://directory.arkansas.gov/agency/secretary-of-state/state-capitol-police/employees/john-watt/,List of Data Sources -https://delcopa.gov/planning/pdf/programsandinitiatives/implementingenforcingfloodplainordinance.pdf,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/traffic-fatality4/,Media Bulletins -https://www.southamptontownnypolice.gov/agendacenter,Not Criminal Justice Related -http://police.portlandmaine.gov/499/cemeteries,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/dui-checkpoint-nets-three-arrests2/,Media Bulletins -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/summary/052721summary.pdf,Dispatch Logs -https://bolivar.mo.us/shop-with-a-copr/p1018068/,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/murder-investigation---atlantic-ave.-and-south-st/,Media Bulletins -https://www.antioch.il.gov/wpfb_file_category/commissions-police-pension-fund-agendas-2011-commissions-police-pension-fund-agendas-commissions-police-pension-fund-commissions-commissions-police-pension-fund/,List of Data Sources -https://delcopa.gov/planning/mapping/custommaprequests.html,Poor Data Source -http://www.longbeach.gov/police/press-releases/second-warrant-clearing-event/,Media Bulletins -https://delcopa.gov/publicrelations/releases/2020/earthday.html,Not Criminal Justice Related -https://www.antiochca.gov/police/oes/,Resources -https://www.naperville.il.us/services/naperville-police-department/programs-and-services/internship-program/,Training & Hiring Info -https://www.antioch.il.gov/wpfb-file/11-02-16-police-pension-agenda-pdf-3/,Poor Data Source -https://police.crystalmn.gov/how_do_i_/report_an_issue/street_light_outage,Not Criminal Justice Related -https://www.gurnee.il.us/government/departments/police-department/community-involvement/gurnee-citizen-police-academy/gurnee-citizen-police-academy/week-12,Training & Hiring Info -https://biloxi.ms.us/police-fire-showcase-is-saturday-at-point-cadet/,Not Criminal Justice Related -https://www.southamptontownnypolice.gov/faq.aspx?qid=413,Resources -http://www.longbeach.gov/police/press-releases/traffic-fatality-3-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/---located----critical-missing-person/,Media Bulletins -http://www.longbeach.gov/police/press-releases/fatality-1-/,Media Bulletins -https://www.mass.gov/event/police-standards-subcommittee-open-meeting-2022-07-12t090000-0400-2022-07-12t100000-0400,Media Bulletins -https://www.hayward-ca.gov/discover/news/jul22/police-blotter-july-10-16-2022,Media Bulletins -https://dps.iowa.gov/former-pleasantville-police-officer-charged-sexual-abuse-minor,Media Bulletins -http://www.longbeach.gov/police/press-releases/arrests-made-in-illegal-firework-investigation/,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality--cherry-ave---cherry-circle/,Media Bulletins -https://www.hayward-ca.gov/discover/news/jul21/police-blotter-june-27-july-3-2021,Media Bulletins -http://lafayettepolice.us/3404/census-2020,Not Criminal Justice Related -"https://norfolkne.gov/government/departments/police-division/press-releases/july-11,-2021-press-release.html",Media Bulletins -https://www.mass.gov/doc/draft-scope-of-work-2016-cd-debris-industry-study/download,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/shooting-200-block-of-artesia/,Media Bulletins -https://coloradosprings.gov/police-department/article/news/traffic-fatality-woodman-road-and-campus,Media Bulletins -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/summary/080321summary.pdf,Daily Activity Logs -http://www.longbeach.gov/police/press-releases/dui---driver-s-license-checkpoint-planned-this-weekend/,Media Bulletins -https://alpha.austin.gov/police-oversight/formal-complaint-responsibility-to-know-and-compl-2/,Poor Data Source -https://www.gurnee.il.us/government/departments/police-department/community-involvement/gurnee-citizen-police-academy/gurnee-citizen-police-academy/week-4,Media Bulletins -https://www.roundrocktexas.gov/wp-content/uploads/2019/12/coffee_cop.png,Poor Data Source -http://www.longbeach.gov/police/press-releases/robbery-suspect-arrested-and-charged-1-/,Media Bulletins -https://wyomingohio.gov/departments/police-department-2/commend-an-officer/,Poor Data Source -https://coloradosprings.gov/police-department/article/news/shooting-investigation-1800-block-monterey,Media Bulletins -https://police.birminghamal.gov/bureaus/support-operations/records/,Resources -https://norfolkne.gov/government/departments/police-division/press-releases/october-3rd-press-release-2022.html,Media Bulletins -https://alpha.austin.gov/es/police-oversight/formal-complaint-impartial-attitude-and-courtesy-53/,Poor Data Source -http://www.longbeach.gov/police/press-releases/dui-driver-s-license-checkpoint-planned-this-weekend-5-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/robberymurder-investigation---1900-block-of-pacific-ave/,Media Bulletins -https://delcopa.gov/courts/familycourtadvisory.html,Resources -https://delcopa.gov/publicrelations/releases/18pdfs/18efilingprogramoct11.pdf,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/traffic-fatality-7th-and-olive/,Media Bulletins -https://www.antioch.il.gov/wpfb-file/11-07-16-police-and-fire-agenda-pdf-5/,Poor Data Source -https://sanramon.ca.gov/policenews,List of Data Sources -https://spdblotter.seattle.gov/2015/06/19/police-sting-blackmailer-after-she-tries-to-extort-woman-over-lurid-cellphone-pics/,Media Bulletins -https://www.dps.arkansas.gov/law-enforcement/arkansas-state-police/divisions/highway-patrol/troop-j-commander/,Personnel Records -http://www.longbeach.gov/police/press-releases/click-it-or-ticket-campaign-starts-may-22/,Media Bulletins -http://lafayettepolice.us/735/youth-fire-setter-program,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/murder-and-weapons-charges-filed-in-january-homicide/,Media Bulletins -https://estespark.colorado.gov/departments/police/support-services/auxiliary-unit,Training & Hiring Info -http://www.longbeach.gov/police/press-releases/traffic-fatality--lb-blvd----market-street-/,Media Bulletins -http://www.paloshillspolice.us/wp-content/uploads/2017/02/bozen_17.jpg,Poor Data Source -http://www.longbeach.gov/police/press-releases/officerinvolvedshooting/,Media Bulletins -https://champaignil.gov/tag/champaign-police-department-releases-holiday-traffic-enforcement-numbers/,Media Bulletins -http://police.portlandmaine.gov/805/orders-as-passed-fiscal-year-2017-to-201,List of Data Sources -https://www.southamptontownnypolice.gov/faq.aspx?qid=452,Not Criminal Justice Related -https://www.milpitas.gov/milpitas/departments/police/investigations/,Poor Data Source -https://police.birminghamal.gov/aboutfuture/,Contact Info & Agency Meta -https://coloradosprings.gov/police-department/page/police-blotter,Media Bulletins -https://www.pinevillenc.gov/organizer/pineville-police-2/,Poor Data Source -http://www.longbeach.gov/police/press-releases/dui-driver-s-license-checkpoint-planned-this-weekend-7-/,Media Bulletins -http://police.byram-ms.us/bradford-place-auto-burglary/,Media Bulletins -https://delcopa.gov/publicrelations/releases/2022/pacareerlinkdelcohostsfreecareerworkshopthroughjune.html,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/reward-issued-in-2014-case/,Media Bulletins -https://www.hayward-ca.gov/discover/news/may21/police-blotter-may-2-8-2021,Media Bulletins -https://www.knoxvilletn.gov/government/city_departments_offices/police_department/investigations_bureau/special_crimes_unit/domestic_violence_help,Resources -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/042021blotter.pdf,Media Bulletins -https://www.pleasantprairiewi.gov/departments/police/news/police_and_fire___rescue_news_archive/2021_news_releases/police_announce_promotions,Media Bulletins -https://www.lynchburgvapolice.gov/wp-content/uploads/2021/06/lpd-seal-e1662580813573.png,Poor Data Source -https://www.knoxvilletn.gov/government/city_departments_offices/civil_service_department/how_to_apply_for_police,Training & Hiring Info -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/020921blotter.pdf,Media Bulletins -https://delcopa.gov/planning/developmentreview.html,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/murder-investigation---1400-blk-pacific-ave/,Media Bulletins -https://www.ashevillenc.gov/news/asheville-police-urge-motorcycle-caution-on-town-mountain-road/,Media Bulletins -https://delcopa.gov/controller/pdf/unclaimed/unclaimedfundslist.pdf,Resources -https://www.southamptontownnypolice.gov/faq.aspx?qid=288,Resources -http://www.longbeach.gov/police/press-releases/national-pharmaceutical-take-back-event/,Media Bulletins -http://www.longbeach.gov/police/press-releases/police-seek-public-s-help-with-july-2014-murder-case--sketches-of-persons-of-interest-released/,Media Bulletins -https://pittsburghpa.gov/police/police-contacts,Poor Data Source -http://www.longbeach.gov/police/about-the-lbpd/employment/join-lbpd/step-8/,Training & Hiring Info -http://www.longbeach.gov/police/press-releases/murder-1300-block-of-wesley-drive/,Media Bulletins -https://controller.phila.gov/office-of-the-city-controller-announces-community-council-members-to-support-review-of-the-philadelphia-police-department/,Media Bulletins -https://alpha.austin.gov/police-oversight/formal-complaint-arrest-requirement-for-assaultive-offenses-and-responsibility-to-know-and-comply/,Poor Data Source -http://www.longbeach.gov/police/press-releases/police-seek-additional-indecent-exposure-victims/,Media Bulletins -https://www.prospertx.gov/residents/police/police-department/about-the-department/,Poor Data Source -https://www.antioch.il.gov/wpfb-file/04-10-12-police-pension-agenda-pdf-5/,Poor Data Source -https://cheswold.delaware.gov/cheswold-police-department-yearly-traffic-statistics/march-2021-traffic-stop-report/,Annual & Monthly Reports -https://police.greenvillesc.gov/1719/internships,Resources -http://www.longbeach.gov/police/press-releases/murder-investigation4/,Media Bulletins -https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0714/,Poor Data Source -https://coloradosprings.gov/police-department/article/news/update-officer-involved-shooting-hwy-115,Officer Involved Shootings -http://www.longbeach.gov/police/press-releases/pedestrian-safety-operation-a-success/,Media Bulletins -http://www.longbeach.gov/police/press-releases/l.b.p.d.-promotes-assistant-chief/,Media Bulletins -https://delcopa.gov/departments/parks/pdf/dogparkapplication.pdf,Resources -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/010122blotter.pdf,Daily Activity Logs -http://www.ryepolice.us/pressrelease/press-release-burglary-suspect,Media Bulletins -https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/summary/092722summary.pdf,Poor Data Source -https://www.coppelltx.gov/644/pay-bills-fines,Resources -https://police.greenvillesc.gov/1865/credit-union,Not Criminal Justice Related -http://www.lafayettepolice.us/826/fire-blocking,Not Criminal Justice Related -https://dccouncil.gov/donation-disclosures/copy-of-april-2019-donation-disclosures-2/,Policies & Contracts -https://alpha.austin.gov/es/police-oversight/2020-06-4-15/,Poor Data Source -https://www.lynchburgvapolice.gov/wp-content/uploads/2022/01/veh-3.jpg,Poor Data Source -https://www.cityofladue-mo.gov/departments/police-department/community/maps-167,Not Criminal Justice Related -https://www.antioch.il.gov/wpfb-file/12-09-14-police-pension-agenda-pdf/,Poor Data Source -https://www.coppelltx.gov/592/hotel-occupancy-tax,Not Criminal Justice Related -https://www.montgomeryohio.gov/meet-steve-coppel-a-diversity-inclusion-committee-member/steve-coppel/,Not Criminal Justice Related -https://ci.guadalupe.ca.us/documents/police-officer/,Training & Hiring Info -http://www.longbeach.gov/police/press-releases/undetermined-death-investigation3/,Media Bulletins -https://barnegatpolice.us/download/field-check/,Field Contacts -https://www.cityofpinebluff-ar.gov/copycred,Not Criminal Justice Related -https://delcopa.gov/publicrelations/releases/2021/whatvoterscanexpect.html,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/five-cited-during-undercover-vice-operation/,Media Bulletins -https://www.foxcrossingwi.gov/departments/police-department/resources/83-07_use-of-force/,Poor Data Source -http://www.longbeach.gov/police/press-releases/two-arrested--drugs--cash-and-guns-seized-in-connection-with-drug-trafficking/,Media Bulletins -http://www.ryepolice.us/announcements/holiday-parade,Not Criminal Justice Related -https://www.coronadelmar.us/gambler-left-puppy-in-hot-car-with-mouth-taped-shut-at-vegas-casino-police-say/,Media Bulletins -https://delcopa.gov/vote/pdf/latecontributions_24hourreport.pdf,Not Criminal Justice Related -https://police.greenvillesc.gov/232/jury-duty,Not Criminal Justice Related -https://brookfieldil.gov/publication/fire-and-police-commission-special-meeting-december-17-2015/,Poor Data Source -https://www.mass.gov/doc/2016-deputy-police-chief-employmentexperience-form-for-attleboro-examination-0/download,Training & Hiring Info -https://www.warracres-ok.gov/police-department-history/warr-acres-old4/,Poor Data Source -https://www.sandiego.gov/police/recruiting/contact/dispatch,Training & Hiring Info -https://www.eutawal.gov/news/national-police-week-2022/,Poor Data Source -https://www.coppelltx.gov/929/earthfest,Not Criminal Justice Related -https://police.greenvillesc.gov/427/minoritywoman-owned-business-enterprise-,Not Criminal Justice Related -https://police.bixbyok.gov/256/find-laws-pertaining-to-the-city-of-bixb,Not Criminal Justice Related -https://coloradosprings.gov/police-department/webform/chiefs-youth-advisory-council-application,Resources -https://coloradosprings.gov/police-department/article/news/traffic-fatality-marksheffel-road-and-0,Media Bulletins -https://springfield-or.gov/event/springfield-police-advisory-committee-spac-13/,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/fumigation-burglaries/,Media Bulletins -https://delcopa.gov/planning/pubs/openspaceplanvoliii.html,Not Criminal Justice Related -http://www.longbeach.gov/press-releases/city-manager-announces-potential-recruitment-process-for-police-chief/,Media Bulletins -http://www.longbeach.gov/police/press-releases/warrant--expungement-servicing-event/,Media Bulletins -http://www.longbeach.gov/police/press-releases/police-seeking-the-public-s-help-with-identifying-armed-robbery-suspect-from-video/,Media Bulletins -http://www.longbeach.gov/police/press-releases/click-it-or-ticket-campaign-starts-may-21st/,Media Bulletins -http://www.longbeach.gov/police/press-releases/dui-checkpoint-proves-effective-2-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-200-block-of-liberty-court/,Media Bulletins -http://www.longbeach.gov/police/press-releases/super-bowl-driving-impaired-enforcement/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-14-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/duidrivers-license-checkpoint-planned-tomorrow/,Media Bulletins -http://www.longbeach.gov/police/press-releases/click-it-or-ticket-campaign-begins-may-18th/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder---3100-block-e-artesia-blvd/,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality--ocean-blvd----710-transition-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality---obispo-ave-and-broadway/,Media Bulletins -http://www.longbeach.gov/police/press-releases/duidrivers-license-checkpoint-planned-this-weekend7/,Media Bulletins -http://www.longbeach.gov/police/press-releases/dui-enforcement-operations-planned-this-weekend-6-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/checkpoint/,Media Bulletins -http://www.longbeach.gov/police/press-releases/dui-saturation-patrol-nets-four-arrests/,Media Bulletins -http://www.longbeach.gov/police/press-releases/dui-saturation-patrol-proves-effective-6-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality3/,Media Bulletins -http://www.longbeach.gov/police/press-releases/charges-filed-against-three-suspects-for-brutal-crime/,Media Bulletins -http://www.longbeach.gov/police/press-releases/distracting-driving-will-be-enforced/,Media Bulletins -http://www.longbeach.gov/police/press-releases/robbery-suspects-arrestd-and-charged/,Media Bulletins -http://www.longbeach.gov/police/press-releases/arrest-made-and-charges-filed-in-human-trafficking-of-a-minor-case/,Media Bulletins -http://www.longbeach.gov/police/press-releases/duidrivers-license-checkpoint-planned-this-weekend4/,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality-2-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality-marina-dr---studebaker/,Media Bulletins -http://www.longbeach.gov/police/press-releases/bird-theft-suspect-arrested--two-others-remain-outstanding/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-1100-block-locust/,Media Bulletins -http://www.longbeach.gov/police/press-releases/dui-saturation-patrol-nets-five-arrests/,Media Bulletins -http://www.longbeach.gov/police/press-releases/frequently-requested-lbpd-policies-available-on-website/,Media Bulletins -http://www.longbeach.gov/police/press-releases/graduation-and-summer-break-safety-tips-1-/,Media Bulletins -http://www.longbeach.gov/press-releases/long-beach-police-lieutenant-reunites-with-resident-he-helped/,Media Bulletins -http://www.longbeach.gov/police/press-releases/three-suspects-arrested-for-2013-murder/,Media Bulletins -https://www.coppelltx.gov/524/state-of-the-city,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/motorcycle-safety-operation/,Media Bulletins -https://southamptontownnypolice.gov/faq.aspx?qid=299,Contact Info & Agency Meta -https://coloradosprings.gov/police-department/article/news/suspect-multiple-armed-robberies-arrested,Media Bulletins -https://alpha.austin.gov/en/police-oversight/formal-complaints-opo-processed-on-june-5-purpose-and-scopecommunity-policing-and-other-policy-violations/,Poor Data Source -http://www.longbeach.gov/police/press-releases/murder-investigation---1200-block-of-chestnut/,Media Bulletins -https://www.desmoineswa.gov/departments/police/online_crime_reporting/spanish_online_police_reporting,Poor Data Source -https://www.trinidad.co.gov/police-department,Poor Data Source -https://www.newcarrolltonmd.gov/government/departments/police_department/ncpd_news,List of Data Sources -http://lafayettepolice.us/616/commercial-kitchen-operations,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/2014-robbery-victim-dies--reward-renewed/,Media Bulletins -http://www.longbeach.gov/police/press-releases/motorcycle-safety-is-aim-of-l-b-p-d--operation/,Media Bulletins -http://www.longbeach.gov/police/press-releases/human-sex-trafficking-task-force-operation/,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality-10-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/charges-filed-against-former-police-officer/,Media Bulletins -http://www.longbeach.gov/police/press-releases/critical-missing---beltran-carmelo/,Media Bulletins -http://www.longbeach.gov/police/press-releases/update--excavation-to-be-conducted-in-missing-person-cold-case-investigation/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-1900-block-chestnut-ave/,Media Bulletins -http://www.longbeach.gov/police/press-releases/tailgates-being-targeted--community-encouraged-to-take-precautions/,Media Bulletins -http://www.longbeach.gov/police/press-releases/dui-driver-s-license-checkpoint-planned-this-weekend-14-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/donut-boy-visits-l.b.p2.d/,Media Bulletins -http://www.longbeach.gov/police/press-releases/dui-saturation-patrol-proves-effective-10-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality---pacific-avenue-and-burnett-street/,Media Bulletins -http://www.longbeach.gov/police/press-releases/long-beach-police-dui-checkpoint-proves-effective-2-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/human-trafficking-suspect-arrested/,Media Bulletins -http://www.longbeach.gov/police/press-releases/halloween-safety-tips-2-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/police-seek-additional-indecent-exposure-victims-1-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/publics-help-needed-to-identify-hit-and-run-suspects/,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality-15-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/dui-checkpoint-nets-one-arrest2/,Media Bulletins -http://www.longbeach.gov/police/press-releases/arrest-made---charges-filed-in-2013-shooting-case/,Media Bulletins -http://www.longbeach.gov/police/press-releases/winter-break-safety-tips-for-youth/,Media Bulletins -http://www.longbeach.gov/police/press-releases/police---fire-memorial-ceremony/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-charges-filed/,Media Bulletins -http://www.longbeach.gov/police/press-releases/robbery-suspects-arrested-and-charged/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder2/,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality---cherry-and-carson/,Media Bulletins -http://www.longbeach.gov/police/press-releases/l-b-p-d--offers-holiday-safety-tips/,Media Bulletins -https://www.elburn.il.us/police-department/vacation-watch/,Poor Data Source -https://www.foxcrossingwi.gov/departments/police-department/resources/vine/,Poor Data Source -https://spdblotter.seattle.gov/2021/10/03/driver-of-stolen-vehicle-arrested-after-ramming-police-cars-gas-station/,Media Bulletins -https://spdblotter.seattle.gov/2011/06/14/anti-police-graffiti-incident/,Media Bulletins -http://www.longbeach.gov/police/press-releases/arrests-made-in-the-kidnapping-murder-of-3-week-old-eliza-delacruz/,Media Bulletins -http://www.longbeach.gov/police/press-releases/don-t-be-a-victim-of-fraud-this-holiday-season/,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality---pacific-avenue-and-burnett-street/,Media Bulletins -http://www.longbeach.gov/police/press-releases/students-return-to-school-motorists-urged-to-drive-carefully/,Media Bulletins -http://www.longbeach.gov/press-releases/city-of-long-beach-initiates-outside-review-of-police-department-direct-messaging-application/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-investigation/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-investigation---2300-block-of-elm-avenue/,Media Bulletins -http://www.longbeach.gov/police/press-releases/critical-missing-person/,Media Bulletins -http://www.longbeach.gov/police/press-releases/homicide-investigation/,Media Bulletins -http://www.longbeach.gov/police/press-releases/long-beach-police-investigate-attempt-murder-of-chp-officer-following-pursuit/,Media Bulletins -http://www.longbeach.gov/police/press-releases/annual-police-and-fire-memorial-ceremony-will-include-addition-of-officer-william-h--waggoner/,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality---lakewood-blvd-and-sb-405-fwy/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-600-block-burnett/,Media Bulletins -http://www.longbeach.gov/police/press-releases/l.b.p.d.-announces-appointment-of-new-commanders--changes-in-command-staff-assignments/,Media Bulletins -http://www.longbeach.gov/police/press-releases/five-cited-during-undercover-vice-operation/,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality---woodruff-avenue--conant-street/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-25-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/long-beach-police-announce-appointment-of-new-commander-and-assignment-of-next-west-division-commander/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-investigation----1000-block-of-east-11th-street/,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality---woodruff-avenue--conant-street/,Media Bulletins -http://www.longbeach.gov/press-releases/jason-campbell-appointed-police-administration-bureau-chief/,Media Bulletins -http://www.longbeach.gov/police/press-releases/officer-involved-shooting---2500-lb-blvd/,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality---willow-st.-and-golden-ave/,Media Bulletins -http://www.longbeach.gov/police/press-releases/critical-missing-person--douglas-grant/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-investigation-market-st--orange-ave/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-36-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/improving-motorcycle-safety-aim-of-l-b-p-d--operation/,Media Bulletins -http://www.longbeach.gov/police/press-releases/improving-motorcycle-safety-aim-of-operation/,Media Bulletins -http://www.longbeach.gov/police/press-releases/lbpd-academy-graduation-ceremony/,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality-1900-block-pch/,Media Bulletins -http://www.longbeach.gov/press-releases/long-beach-police-department-south-division-to-host-open-house/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-investigation2/,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality-artesia-and-myrtle/,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality---cherry-and-carson/,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality-8-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-44-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/charges-filed-in-murder-investigation/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-investigation---600-block-of-cedar-ave/,Media Bulletins -http://www.longbeach.gov/police/press-releases/parents-arrested-for-murder-in-2013-suspicious-death-of-1-month-old-infant/,Media Bulletins -http://www.longbeach.gov/police/press-releases/operation-results-in-multiple-arrests--confiscation-of-numerous-firearms/,Media Bulletins -http://www.longbeach.gov/police/press-releases/duidrivers-license-checkpoint-planned-this-weekend3/,Media Bulletins -http://www.longbeach.gov/police/press-releases/assault-investigation-leads-to-firearm-discharge/,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality-shoreline-dr-and-710-fwy/,Media Bulletins -http://www.longbeach.gov/police/press-releases/in-custody-death/,Media Bulletins -http://www.longbeach.gov/police/press-releases/publics-help-sought-in-indecent-exposure/,Media Bulletins -https://delcopa.gov/treasurer/pdf/2021reassessmentvalues/36.pdf,Not Criminal Justice Related -https://www.mass.gov/doc/2017-police-officer-and-state-trooper-exam-poster/download,Training & Hiring Info -https://coloradosprings.gov/mayors-office/article/news/mayor-and-police-statements-about-bailey-civil,Media Bulletins -http://www.lafayettepolice.us/493/sports-programs,Not Criminal Justice Related -https://www.newarknj.gov/resources/instructions-for-crane-or-helicopter-lift,Not Criminal Justice Related -https://www.sandiego.gov/police/news-center/cold-cases/maria-cortes,Crime Maps & Reports -https://delcopa.gov/publicrelations/releases/2018/18redribbonweek.html,Not Criminal Justice Related -https://www.coppelltx.gov/953/lifelong-learning,Not Criminal Justice Related -https://wildwoodpolice-fl.gov/wpd-history/,Poor Data Source -https://cityofsweetwater.fl.gov/event/sweetwater-police-pension-plan-board-of-trustees-meeting-3/,Not Criminal Justice Related -https://www.mass.gov/doc/cancer-cervical-chicopee/download,Not Criminal Justice Related -https://dccouncil.gov/donation-disclosures/copy-of-august-2018-donation-disclosures-5/,Not Criminal Justice Related -https://ose.louisiana.gov/event/police-lieutenant/,Poor Data Source -https://delcopa.gov/departments/pdfs/2020adoptedbudget.pdf,Annual & Monthly Reports -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/arrests/082321arrests.pdf,Arrest Records -https://www.mass.gov/letter-ruling/letter-ruling-81-13-printing-and-photocopying-equipment,Not Criminal Justice Related -https://www.mass.gov/doc/case-study-city-of-chicopee/download,Not Criminal Justice Related -http://www.longbeach.gov/police/press-releases/dui-checkpoint-nets-arrests/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-100-block-48th/,Media Bulletins -http://www.longbeach.gov/police/press-releases/undetermined-death-investigation-1-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality-clark-and-eagle/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-5400-block-atlantic/,Media Bulletins -http://www.longbeach.gov/police/press-releases/l.b.p.d.-announces-appointment-of-new-commanders--changes-in-command-staff-assignments/,Media Bulletins -http://www.longbeach.gov/police/press-releases/undetermined-deaths-do-not-appear-related/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-investigation---800-block-of-alamitos-avenue/,Media Bulletins -http://www.longbeach.gov/globalassets/police/media-library/images/press-releases/2016/thumb_halloween---kids-in-costume.png,Poor Data Source -http://www.longbeach.gov/police/press-releases/missing-person---kylexia-newman/,Media Bulletins -http://www.longbeach.gov/police/press-releases/dui-checkpoint-proves-effective-1-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality-22-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/felony-robbery-suspect-arrested/,Media Bulletins -http://www.longbeach.gov/police/press-releases/two-arrested---charged-in-two-shootings/,Media Bulletins -http://www.longbeach.gov/police/press-releases/---located---missing-3-week-old-infant-found-deceased-in-san-diego-county/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-1300-block-wesley-dr/,Media Bulletins -http://www.longbeach.gov/police/press-releases/fatality-7-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/publics-help-sought-in-locating-hit--run-suspect/,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality-spring-street-west-of-el-dorado-park/,Media Bulletins -http://www.longbeach.gov/police/press-releases/dui-saturation-patrol-proves-effective-1-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/robbery-suspects-arrested-1-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-1300-block-of-pine/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-28-/,Media Bulletins -http://www.longbeach.gov/attorney/press-releases/court-dismisses-lawsuits-by-two-long-beach-police-officers-against-the-city-of-long-beach/,Media Bulletins -http://www.longbeach.gov/police/press-releases/fatality-3-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/police-impersonator/,Media Bulletins -http://www.longbeach.gov/police/press-releases/publics-help-needed-to-identify-robbery-suspects/,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality---ocean-blvd-and-ca-47/,Media Bulletins -http://www.longbeach.gov/police/press-releases/arrest-made-in-sexual-assault-case-1-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/body-found-1000-block-of-w--carson-street/,Media Bulletins -http://www.longbeach.gov/police/press-releases/three-arrested-and-charged-with-murder/,Media Bulletins -http://www.longbeach.gov/police/press-releases/l.b.p.d-announces-appointment-of-new-commander/,Media Bulletins -http://www.longbeach.gov/police/press-releases/police-seek-public-s-help-to-identify-burglary-suspect/,Media Bulletins -http://www.longbeach.gov/police/press-releases/results-of-saturday-s-l-b-p-d--s-driving-under-the-influence-saturation-patrol/,Media Bulletins -http://www.longbeach.gov/attorney/press-releases/court-dismisses-lawsuits-by-two-long-beach-police-officers-against-the-city-of-long-beach/,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality-2200-block-of-golden-ave/,Media Bulletins -http://www.longbeach.gov/police/press-releases/found---critical-missing-person----1-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality--4th---obispo-/,Media Bulletins -http://www.longbeach.gov/press-releases/long-beach-police-department-awarded-blue-line-security-contract/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-22-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/store-clerk-struck-by-gunfire-during-robbery--public-s-help-sought-to-identify-suspect/,Media Bulletins -http://www.longbeach.gov/police/press-releases/officer-involved-shooting-4-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/dui-enforcement-operation-planned-this-weekend/,Media Bulletins -http://www.longbeach.gov/police/press-releases/dui-checkpoint-planned-this-weekend-1-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/duidrivers-license-checkpoint-planned-this-weekend6/,Media Bulletins -http://www.longbeach.gov/police/press-releases/dui-enforcement-operation-planned-for-long-beach-pride/,Media Bulletins -http://www.longbeach.gov/police/press-releases/dui-checkpoint-2-/,Media Bulletins -http://www.longbeach.gov/press-releases/outside-review-of-police-department-direct-messaging-application-complete/,Media Bulletins -http://www.longbeach.gov/police/press-releases/two-suspects-arrested-for-string-of-commercial-burglaries/,Media Bulletins -http://www.longbeach.gov/press-releases/long-beach-police-lieutenant-reunites-with-resident-he-helped/,Media Bulletins -http://www.longbeach.gov/police/press-releases/search-warrant-operation/,Media Bulletins -http://www.longbeach.gov/press-releases/long-beach-city-council-restores-paramedic-rescue-12--reinstates-police-academy-operations-with-measure-a-funding/,Media Bulletins -http://www.longbeach.gov/police/press-releases/st-patricks-day-saturation-patrol/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-1300-block-11th/,Media Bulletins -https://www.southamptontownnypolice.gov/1767/liberty-gardens,List of Data Sources -http://www.longbeach.gov/police/press-releases/academy-graduation---class-90/,Media Bulletins -http://www.longbeach.gov/police/press-releases/operation-results-in-multiple-arrests--confiscation-of-numerous-firearms/,Media Bulletins -http://www.longbeach.gov/press-releases/richard-rocchi-appointed-deputy-police-chief/,Media Bulletins -http://www.longbeach.gov/police/press-releases/fatality-2-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/lbpd-promotes-new-leaders/,Media Bulletins -http://www.longbeach.gov/police/press-releases/publics-help-sought-in-locating-hit--run-suspect/,Media Bulletins -http://www.longbeach.gov/police/press-releases/police-seek-public-s-help-to-identify-vehicle-theft-suspects/,Media Bulletins -http://www.longbeach.gov/police/press-releases/felony-suspects-arrested-and-charged/,Media Bulletins -http://www.longbeach.gov/police/press-releases/police-seek-help/,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality-6-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/arrest-made-in-sexual-assault-case/,Media Bulletins -http://www.longbeach.gov/police/press-releases/suspect-arrested-and-charged-for-1996-murder/,Media Bulletins -http://www.longbeach.gov/police/press-releases/traffic-fatality---harvy-way-and-bellflower-blvd/,Media Bulletins -http://www.longbeach.gov/police/press-releases/duidrivers-license-checkpoint-planned-this-weekend7/,Media Bulletins -http://www.longbeach.gov/police/press-releases/arrest-made-and-charges-filed-in-july-4th-murder/,Media Bulletins -http://www.longbeach.gov/police/press-releases/dui-saturation-patrol-nets-five-arrests/,Media Bulletins -http://www.longbeach.gov/police/press-releases/officer-involved-shooting--no-injuries-sustained/,Media Bulletins -http://www.longbeach.gov/police/press-releases/long-beach-police-inspect-37-businesses-for-alcohol-sales-compliance/,Media Bulletins -https://coloradosprings.gov/police-department/page/report-traffic-complaint,Calls for Service -http://www.longbeach.gov/press-releases/robert-g-luna-to-be-sworn-in-as-chief-of-police-for-city-of-long-beach-on-saturday-november-22/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder---6300-block-of-knight-avenue/,Media Bulletins -http://www.longbeach.gov/police/press-releases/dui-saturation-patrol-results/,Media Bulletins -http://www.longbeach.gov/police/press-releases/the-north-patrol-division-directed-enforcement-team-cracks-down-on-criminal-street-gang/,Media Bulletins -http://www.longbeach.gov/police/press-releases/police-asking-for-public-s-help-in-identifying-person-of-interest-in-sexual-battery/,Media Bulletins -http://www.longbeach.gov/police/press-releases/students-return-to-school--motorists-urged-to-drive-carefully/,Media Bulletins -http://www.longbeach.gov/police/press-releases/drug-lab-discovered-at-residence--two-suspects-in-custody/,Media Bulletins -http://www.longbeach.gov/police/press-releases/officer-involved-shooting-1700-block-of-marine-avenu-wilmington/,Media Bulletins -http://www.longbeach.gov/police/press-releases/murder-investigation---4th-street-and-pacific-avenue/,Media Bulletins -http://www.longbeach.gov/police/press-releases/trafficfatality-2-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/dui-driver-s-license-checkpoint-planned-this-weekend-7-/,Media Bulletins -http://www.longbeach.gov/police/press-releases/search-and-rescue-orientation-meeting/,Media Bulletins -http://www.longbeach.gov/police/press-releases/l-b-p-d--saturation-patrol-proves-effective/,Media Bulletins -http://www.longbeach.gov/police/press-releases/dui-drivers-license-checkpoint-planned-this-weekend/,Media Bulletins -http://www.longbeach.gov/police/press-releases/robbery-suspects-arrested/,Media Bulletins -https://www.arlingtontx.gov/news/my_arlington_t_x/news_archive/2017_archived_news/september_2017/national_night_out_arlington_police_on_oct_3_2017,Media Bulletins -https://www.columbus.in.gov/event/columbus-police-review-board/,Poor Data Source -https://spdblotter.seattle.gov/2012/02/06/the-seattle-police-foundation-thanks-the-seattle-hotel-association-for-hosting-the-evening-of-hope-gala/,Media Bulletins -https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/arrests/081622arrests.pdf,Poor Data Source -https://alpha.austin.gov/en/police-oversight/oral-reprimand-of-officer-ivan-figueroa/,Poor Data Source -https://www.orovalleyaz.gov/government/news/oro-valley-town-council-to-vote-on-police-chief-appointment-february-5,Media Bulletins -https://www.richmondindiana.gov/docs/current-city-police-districts-map,Geographic -https://delcopa.gov/publicrelations/releases/2022/delcopollingplacesfinalizedformay17primary.html,Not Criminal Justice Related -https://brookfieldil.gov/publication/42413-april-24-2013-police-pension-board/,Poor Data Source -https://ci.san-bernardino.ca.us/city_hall/police_department/crime_statistics/about_ucr_statistics/arson_statistics/arson_statistics-2018,Crime Statistics -https://www.roseville.ca.us/news/archive_news/2017_archive_news/police_digest__december_15__2017,Poor Data Source -http://www.greenvillenc.gov/government/police/community-services-and-crime-prevention/cops-and-barbers,Contact Info & Agency Meta -https://delcopa.gov/publicrelations/releases/2020/courtsgovcenter.html,Not Criminal Justice Related -https://coloradosprings.gov/police-department/article/news/homicide-investigation-6600-block-bugle-dr,Media Bulletins -https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0725/,Poor Data Source -https://alpha.austin.gov/police-oversight/formal-complaint-de-escalation-of-potential-force-6/,Poor Data Source -https://delcopa.gov/ems/pdfdocs/licensureprogramco/alsambulanceinspchklst.xls,Not Criminal Justice Related -https://www.woodvillageor.gov/departments/public-safety/police-law-enforcement/,Poor Data Source -https://www.madera.gov/home/departments/police/,Annual & Monthly Reports -https://brookfieldil.gov/publication/11613-november-6-2013-fire-and-police-commission/,Poor Data Source -https://beaverpa.us/a-message-from-the-police-department-2/,Poor Data Source -https://delcopa.gov/ojs/ojsforms/15noticeofproposedrelocation.pdf,Not Criminal Justice Related -http://lafayettepolice.us/2359/brown-street,Not Criminal Justice Related -https://www.bedminster.us/police_fire_rescue/pottersville_volunteer_fire_co_,Not Criminal Justice Related -https://brookfieldil.gov/publication/043009-april-30-2009-police-pension-board/,Poor Data Source -https://www.goldenbeach.us/police-department/k-9-unit/,Contact Info & Agency Meta -https://www.wakeforestnc.gov/communications/town-news/police-news,Media Bulletins -https://southbethany.delaware.gov/police-department/instruction-page-for-ticket-or-summons/,Poor Data Source -https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/summary/102521summary1.pdf,Crime Statistics -https://www.roundrocktexas.gov/city-departments/police/divisions/,Contact Info & Agency Meta -https://delcopa.gov/planning/pdf/agendas/2022/agenda202201.pdf,Not Criminal Justice Related -https://www.ci.northville.mi.us/services/police_department/police_news/joashua_clines_joins_police_dept_,Media Bulletins -https://southamptontownnypolice.gov/faq.aspx?qid=102,Not Criminal Justice Related -https://www.ci.auburn.in.us/wp-content/uploads/2017/11/auburnpolicecar-1000x650.jpg,Poor Data Source -https://delcopa.gov/controller/pdf/retirement/2021/210310minutes.pdf,Not Criminal Justice Related -https://www.hayward-ca.gov/discover/news/jun22/police-blotter-may-22-28-2022,Crime Statistics -https://www.mass.gov/doc/camacho-michael-v-mass-environmental-police-1815/download,Court Cases -https://camptonhills.illinois.gov/police-pension-fund-board/,Contact Info & Agency Meta -https://beaumonttexas.gov/beaumont-police-arrest-a-man-and-woman-after-committing-an-aggravated-robbery-at-6155-eastex/,Poor Data Source -https://ci.san-bernardino.ca.us/city_hall/police_department/sb_978/new_patrol_rifle_powerpoint_complete,Policies & Contracts -https://alpha.austin.gov/en/police-oversight/formal-complaint-impartial-attitude-and-courtesy-47/,Poor Data Source -https://coloradosprings.gov/police-department/page/professional-standards-division,Poor Data Source -https://delcopa.gov/courts/admininstration/lap.html,Contact Info & Agency Meta -https://www.foxcrossingwi.gov/event/police-fire-commission/,Poor Data Source -https://southamptontownnypolice.gov/1387/final-supplemental-geis,Not Criminal Justice Related -http://www.lafayettepolice.us/438/online-crime-reporting,Contact Info & Agency Meta -https://delcopa.gov/publicrelations/releases/2019/newvotingsystem.html,Not Criminal Justice Related -https://delcopa.gov/purchasing/bidsprops/cadserver_e-102121.pdf,Not Criminal Justice Related -https://scrantonpa.gov/wpdm-package/police-union-collective-bargaining-agreement-exp-2021/,Poor Data Source -http://www.longbeach.gov/police/press-releases/shooting-200-block-of-artesia/,Media Bulletins -https://www.danversma.gov/documents/records-and-billings-clerk-police-department/,Poor Data Source -https://beaumonttexas.gov/beaumont-police-detectives-charge-2-in-august-25-2021-homicide-aggravated-robbery/,Poor Data Source -https://health.wyo.gov/publichealth/immunization/influenza-flu/stethoscope-3/,Not Criminal Justice Related -https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0348/,Poor Data Source -http://lafayettepolice.us/1086/i-want-to,Not Criminal Justice Related -https://police.bixbyok.gov/224/submit-a-tip,Contact Info & Agency Meta -https://www.deerpark-oh.gov/departments/police-department/police-department-contacts/,Contact Info & Agency Meta -https://delcopa.gov/planning/pdf/mapping/eddystone.pdf,Poor Data Source -https://www.coppelltx.gov/1054/special-interest-funding,Poor Data Source -https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/summary/043022summary.pdf,Poor Data Source -https://delcopa.gov/council/2018minutes/080818minutes.pdf,Not Criminal Justice Related -https://delcopa.gov/planning/pdf/agendas/2019/agenda201910.pdf,Poor Data Source -https://delcopa.gov/courts/index.html,Resources -https://www.mass.gov/doc/2022-police-sergeant-3yp-442-exam-poster/download,Training & Hiring Info -https://www.southamptontownnypolice.gov/faq.aspx?qid=126,Not Criminal Justice Related -https://delcopa.gov/publicrelations/releases/2018/18spottedlanternfly.pdf,Not Criminal Justice Related diff --git a/hugging_face/requirements.txt b/hugging_face/requirements.txt deleted file mode 100644 index d467a675..00000000 --- a/hugging_face/requirements.txt +++ /dev/null @@ -1,9 +0,0 @@ -# hugging_face only -torch>=2.2.0 -evaluate>=0.4.1 -transformers>=4.38.0 -datasets>=3.2.0 -accelerate>=0.27.2 -numpy>=1.26.4 -multimodal-transformers>=0.3.1 -scikit-learn~=1.5.2 \ No newline at end of file diff --git a/hugging_face/testing/data/coarse_labels.txt b/hugging_face/testing/data/coarse_labels.txt deleted file mode 100644 index 19d55cee..00000000 --- a/hugging_face/testing/data/coarse_labels.txt +++ /dev/null @@ -1,8 +0,0 @@ -Police & Public Interactions -Info About Officers -Info About Agencies -Agency-Published Resources -Jails & Courts Specific -Other -Poor Data Source -Not Criminal Justice Related diff --git a/hugging_face/testing/data/labeled-source-text.csv b/hugging_face/testing/data/labeled-source-text.csv deleted file mode 100644 index 28076788..00000000 --- a/hugging_face/testing/data/labeled-source-text.csv +++ /dev/null @@ -1,6307 +0,0 @@ -id,url,label,coarse_label,html_title,meta_description,http_response,root_page_title,h1,h2,h3,h4,h5,h6,div_text -1,https://delcopa.gov/council/2016minutes/101216minutes.pdf,Policies & Contracts,Info About Agencies,"","",200,"","","","","","","","" -2,https://www.mass.gov/doc/coping-with-overdose-fatalities/download,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,Mass.gov,[],[],[],[],[],[],"" -3,http://www.longbeach.gov/police/press-releases/murder-7-/,Media Bulletins,Agency-Published Resources,MURDER(7),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 7/29/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: MURDER Contact: Media Relations Detail (562) 570-5273 VICTIM'S AGE WAS CORRECTED TO 25-YEARS-OLD On Friday, July 25, 2014, at approximately 11:00 p.m., Long Beach Police responded to a shooting in the 3200 block of Baltic Avenue, which ultimately led to the death of a male adult. Officers arrived and located a male adult who had been struck in the torso by gunfire. He was transported to a local hospital and listed in critical condition. Their preliminary investigation indicated that the victim and some friends were sitting in front of a residence when a vehicle drove by, and an occupant of the vehicle fired multiple rounds at the group, striking the victim. The vehicle then fled northbound on Baltic Avenue. Last night, July 28, 2014, Long Beach Police were notified that the victim, identified as 25-year-old Olatag Filemoni of Long Beach, had succumbed to his injuries. It doesn't appear the victim was affiliated with any gangs and a motive for the shooting is unknown and under investigation. No suspect information is available at this time. Anyone who may have information regarding this incident is urged to contact Long Beach Police Homicide Detectives Mark McGuire and Greg Krabbe at (562) 570-7244. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting www.lacrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -4,https://www.lynchburgvapolice.gov/wp-content/uploads/2021/05/img_1545.jpg,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -5,http://police.portlandmaine.gov/526/permit-license-fees,Resources,Agency-Published Resources,"Permit & License Fees | Portland, ME - Official Website",See a list of permit and license fees.,200,"Portland, ME - Official Website | Official Website","[""Permit & License Fees""]",[],[],[],[],[],Skip to Main Content Pay & Apply Your Government Services Business Community Home Your Government Departments Public Works Street Openings Permit & License Fees Permit & License Fees Permit & License Fees Permit Types Traffic Control Plan Government Websites by CivicPlus® Pay & Apply Your Government Services Business Community Home Your Government Departments Public Works Street Openings Permit & License Fees Permit & License Fees Permit & License Fees Permit Types Traffic Control Plan Government Websites by CivicPlus® Pay & Apply Your Government Services Business Community Home Your Government Departments Public Works Street Openings Permit & License Fees Permit & License Fees Permit & License Fees Permit Types Traffic Control Plan Government Websites by CivicPlus® Pay & Apply Your Government Services Business Community Home Your Government Departments Public Works Street Openings Permit & License Fees Permit & License Fees Permit & License Fees Permit Types Traffic Control Plan Government Websites by CivicPlus® Pay & Apply Your Government Services Business Community Home Your Government Departments Public Works Street Openings Permit & License Fees Permit & License Fees Permit & License Fees Permit Types Traffic Control Plan Home Your Government Departments Public Works Street Openings Permit & License Fees Permit & License Fees Permit & License Fees Permit Types Traffic Control Plan Home Your Government Departments Public Works Street Openings Permit & License Fees Permit & License Fees Permit & License Fees Permit Types Traffic Control Plan Home Your Government Departments Public Works Street Openings Permit & License Fees Permit & License Fees Home Your Government Departments Public Works Street Openings Permit & License Fees Permit & License Fees Home Your Government Departments Public Works Street Openings Permit & License Fees Permit & License Fees Permit & License Fees Permit & License Fees Permit Types Traffic Control Plan Permit & License Fees Permit Types Traffic Control Plan Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® -6,https://www.arlingtontx.gov/news/my_arlington_t_x/news_archive/2012_and_prior_archived_news/police_graduate_18_recruits,Personnel Records,Info About Officers,Police Graduate 18 Recruits - City of Arlington,"",200,Just a moment...,"[""YOUR COMMUNITY NEWS AND EVENTS"", ""City of Arlington""]","[""Police Graduate 18 Recruits""]",[],[],[],[],Skip to Content Skip to Content -7,https://police.greenvillesc.gov/1996/getting-here-parking,Contact Info & Agency Meta,Info About Agencies,"Getting Here & Parking | Greenville, SC - Official Website","Find location information, directions and parking for Unity Park.",200,"Police Department | Greenville, SC - Official Website","[""Getting Here & Parking""]","[""WEEKEND TROLLEY""]","[""GETTING HERE"", ""Parking"", ""click map for downloadable pdf"", ""Loading""]","[""Parking Garages"", ""Swamp Rabbit Trail""]",[],[],"Skip to Main Content Visit Rentals & Reservations About the Park Donate Contact Search Home Departments Parks, Recreation & Tourism Unity Park Visit Getting Here & Parking Getting Here & Parking GETTING HERE 320 S. Hudson Street Greenville, SC 29601 WEEKEND TROLLEY The Route 903 trolley serves Unity Park on Fridays, Saturdays and Sundays. To board the trolley, passengers must stand near one of the trolley stop signs. Service will be be approximately every 30 minutes. This route operates seasonally from April to September. Friday from 4 p.m. - 11 p.m. Saturday from 10 a.m. - 11 p.m. Sunday from 10 a.m. to 8 p.m. West End Route Map (PDF) Parking Complimentary public parking is available. Please park in designated parking spots only. Parking Garages Unity Park can be accessed via the Swamp Rabbit Trail from any of downtown Greenville’s parking garages. Current Map of Parking Garage Locations Swamp Rabbit Trail Unity Park can be accessed via the Swamp Rabbit Trail System . click map for downloadable pdf Destinations Playgrounds & Splash Pad Prisma Health Welcome Center Trails & Bridges Art in the Park The Holloway Trail The Reedy River Wetlands Honor Tower Nearby Vendors Legacy College Basketball Courts Greenspaces Hours & Park Guidelines Getting Here & Parking FAQs Field Trips Unity Park Map Tour Unity Park Downtown Special Events Parking unity park falls park Bus & Trolley AFFORDABLE HOUSING Agendas & Minutes Home Contact Us Accessibility /QuickLinks.aspx 206 S Main Street, Greenville, SC 29601 Police Non-Emergency: 864-271-5333 Greenville Cares Information Center 864-232-2273 Back to Top Enable Google Translate " -8,http://lafayettepolice.us/3386/donate,Resources,Agency-Published Resources,"","",404,"","","","","","","","" -9,http://www.lafayettepolice.us/2111/youth-classes-and-weekend-workshops,Misc Police Activity,Police & Public Interactions,"Youth Classes and Weekend Workshops | Lafayette, IN - Official Website","",200,"Police Department | Lafayette, IN - Official Website","[""Youth Classes and Weekend Workshops""]",[],"[""Select a Program:"", ""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Plan Your Visit About the Zoo Get Involved Education Programs Special Events I Want To... Home Government Departments H - W Parks & Recreation Facilities Columbian Park Zoo Education Programs Family & Youth Programs Youth Classes and Weekend Workshops Youth Classes and Weekend Workshops Learning comes to life with these fun and exciting classes and weekend workshops. Select a Program: AGES: 5-7 YEARS AGES: 8-11 YEARS Critter Classes Wildlife Workshops Aquatics McAllister Center Rentals Zoo Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Plan Your Visit About the Zoo Get Involved Education Programs Special Events I Want To... Home Government Departments H - W Parks & Recreation Facilities Columbian Park Zoo Education Programs Family & Youth Programs Youth Classes and Weekend Workshops Youth Classes and Weekend Workshops Learning comes to life with these fun and exciting classes and weekend workshops. Select a Program: AGES: 5-7 YEARS AGES: 8-11 YEARS Critter Classes Wildlife Workshops Aquatics McAllister Center Rentals Zoo Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In " -10,https://norfolkne.gov/assets/site/documentcentral/police/archived-arrests/2020-arrests/may-arrests.pdf,Arrest Records,Police & Public Interactions,"","",404,"","","","","","","","" -11,http://www.longbeach.gov/police/press-releases/murder-18-/,Media Bulletins,Agency-Published Resources,MURDER(18),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 1/17/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: MURDER Contact: Media Relations (562) 570-5273 On Tuesday, January 13, 2015, at approximately 9:00 p.m., Long Beach Police responded to the 2300 block of east 10th street regarding shots fired. When officers arrived, they learned that a suspect walked up to a group of individuals who were gathered in a yard of a residence and opened fire, striking a male adult in the upper body. Long Beach Fire Department paramedics responded and transported the victim to a local hospital where he remained in critical condition. Due to the seriousness of the victim’s injuries, homicide detectives responded to the scene to investigate. Last night, January 16, 2015, the victim succumbed to his injuries and was pronounced deceased. The victim has been identified as 22-year-old Jose De Jesus Cabral Orozco of Long Beach. The motive for this shooting is still unclear and no suspect is in custody at this time. The investigation remains ongoing. Anyone with information regarding this incident is urged to contact Long Beach Police Homicide Detectives Hugo Cortes and Oscar Valenzuela at (562) 570-7244. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting www.lacrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -12,https://www.edmondswa.gov/government/departments/police_department/anonymous_tip,Contact Info & Agency Meta,Info About Agencies,"Anonymous Tip - City of Edmonds, WA","",200,Just a moment...,"[""City of Edmonds - Washington""]","[""Anonymous Tip""]","[""Edmonds Police Department"", ""Recruitment and Hiring""]",[],[],[],Skip to Content -13,https://www.southamptontownnypolice.gov/1698/calissa-restaurant,Not Criminal Justice Related,Not Criminal Justice Related,"Calissa Restaurant | Southampton, NY - Official Website","",200,"Police | Southampton, NY - Official Website","[""Calissa Restaurant""]",[],"[""Site Tools"", ""Contact Us"", ""Site Links"", ""Loading""]","[""Summary Sheet"", ""WQIPP - Fund Application""]",[],[],"Skip to Main Content EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Government Town Services Community Info How Do I Translate Page Site Tools Home My Account Printer Friendly Email Page Contact Us RSS Site Map Translate Page Notifications Documents Search Home Government Departments Community Preservation Fund (CPF) WQIPP - Plan/Checklist/App 2022 WQIP - Applications & Proposal Summaries Calissa Restaurant Calissa Restaurant Summary Sheet Calissa Restaurant Septic Improvement Project-Sheet-2022 WQIPP - Fund Application Calissa Restaurant - Application Submitted Calissa Restaurant - Documents Submitted Old Town Pond Watershed Bioswales (SH Village) Phillips Pond Watershed Bioswales (SH Village) Wickapogue Pond Watershed Bioswales (SH Village) Lake Agawam Stormwater - Trustees Armin and Judy Calissa Restaurant Peconic Land Trust Bridge Gardens Quogue Wildlife Refuge Constructed Wetland Riverside Sewer System Sag Harbor - Sewer Expansion (Sewersheds K & L) Harbour House (Library Avenue Owners Corp.) Lake Agawam Algae Harvesting Phase - (SH Village) Mecox Bay Inlet - Trustees Old Town Pond Dredging (SH Village) Sagaponack Pond Aquatic Habitat Restoration - Trustees Emma Elliston Park - Rain Gardens (SH Town) Lake Agawam- Injection Well PRB (SH Village) Poxabogue Pond-Groundwater Seepage and Nutrient Input West Main Street Bioswale (SH Village) Town Clerk Meetings, Agendas & Minutes Pay Your Taxes Online Services Applications, Forms & Fees Notify Me® FOIL Requests Contact Us Town of Southampton 116 Hampton Road Southampton, NY 11968 Phone: 631-283-6000 Banner photo credit: robertseifertphotography.com Site Links Contact Us Site Map Accessibility Copyright Notices Intranet Job Opportunities Title VI Non-discrimination Policy /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate " -14,https://ose.louisiana.gov/event/police-communications-officer-i-5/,Poor Data Source,Poor Data Source,Police Communications Officer I | Louisiana Office of State Examiner,"",200,403 Forbidden,"["""", ""Police Communications Officer I""]",[],"[""Competitive Level""]",[],[],"[""Recent Posts"", ""Archives"", ""Categories"", ""Meta""]","Search Search Search Search Personnel Action Form About Testing & Employment Eligibility Lists Jurisdictions Resources Contact ADA Testing Accommodations Statewide Testing This event has passed. Police Communications Officer I Competitive Level Posting Period 01/15/2021 - 02/01/21 Application Deadline 02/01/21 Jurisdiction Shreveport Application Search Recent Posts Holiday Closures Archives June 2023 Categories Uncategorized Meta Log in Entries feed Comments feed WordPress.org Sign Up for Updates Δ 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Privacy Policy Facebook Copyright © 2024 Office of State Examiner Site by Gatorworks. Search Personnel Action Form About Testing & Employment Eligibility Lists Jurisdictions Resources Contact ADA Testing Accommodations Statewide Testing Search Personnel Action Form Search Search Search Personnel Action Form This event has passed. Police Communications Officer I Competitive Level Posting Period 01/15/2021 - 02/01/21 Application Deadline 02/01/21 Jurisdiction Shreveport Application Search Recent Posts Holiday Closures Archives June 2023 Categories Uncategorized Meta Log in Entries feed Comments feed WordPress.org This event has passed. Police Communications Officer I Competitive Level Posting Period 01/15/2021 - 02/01/21 Application Deadline 02/01/21 Jurisdiction Shreveport Application Search Recent Posts Holiday Closures Archives June 2023 Categories Uncategorized Meta Log in Entries feed Comments feed WordPress.org This event has passed. Police Communications Officer I Competitive Level Posting Period 01/15/2021 - 02/01/21 Application Deadline 02/01/21 Jurisdiction Shreveport Application This event has passed. Police Communications Officer I Competitive Level Posting Period 01/15/2021 - 02/01/21 Application Deadline 02/01/21 Jurisdiction Shreveport Application This event has passed. Police Communications Officer I Competitive Level Posting Period 01/15/2021 - 02/01/21 Application Deadline 02/01/21 Jurisdiction Shreveport Application This event has passed. Police Communications Officer I Competitive Level Competitive Level Competitive Level Posting Period 01/15/2021 - 02/01/21 Application Deadline 02/01/21 Jurisdiction Shreveport Posting Period 01/15/2021 - 02/01/21 Application Deadline 02/01/21 Jurisdiction Shreveport Posting Period 01/15/2021 - 02/01/21 Application Deadline 02/01/21 Jurisdiction Shreveport Posting Period 01/15/2021 - 02/01/21 Posting Period Application Deadline 02/01/21 Application Deadline Jurisdiction Shreveport Jurisdiction Application Search Search Sign Up for Updates Δ Sign Up for Updates Δ Sign Up for Updates 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Privacy Policy Facebook 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Privacy Policy 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Phone: (225) 925-4400 Privacy Policy Facebook Facebook Facebook Copyright © 2024 Office of State Examiner Site by Gatorworks. Copyright © 2024 Office of State Examiner Site by Gatorworks. " -15,https://www.mass.gov/doc/essential-functions-for-municipal-police-officers/download,Policies & Contracts,Info About Agencies,"","",200,"","","","","","","","" -16,https://www.jacksonms.gov/documents/mayoral-executive-order-amending-the-city-of-jackson-police-departments-use-of-force-policy/,Media Bulletins,Agency-Published Resources,"MAYORAL EXECUTIVE ORDER AMENDING THE CITY OF JACKSON POLICE DEPARTMENT'S USE OF FORCE POLICY - Jackson, MS","",200,"City of Jackson - Jackson, MS","[""MAYORAL EXECUTIVE ORDER AMENDING THE CITY OF JACKSON POLICE DEPARTMENT’S USE OF FORCE POLICY""]","[""Primary menu links"", ""Action toolbar"", ""Documents and forms"", ""Contact"", ""Subscribe"", ""Connect""]",[],[],"[""""]",[],"Jackson, MS Primary menu links Residents Businesses Visitors Government News Contact Action toolbar Answers Payments Report Issue Search Primary menu links Residents Businesses Visitors Government News Contact Action toolbar Answers Payments Report Issue Search Jackson, MS Jackson, MS Jackson, MS Proclamation of Local Emergency ___________________________________________________________________________________________________________________________________ The City of Jackson’s Water and Sewer Business Administration is now JXN Water. Click here . _____________________________________________________________________________________________________________________________________ PEG Network Off-Air Announcement: PEG Network is currently off the air as we undergo a relocation. We appreciate your patience during this transition. In the meantime, you can stay connected with PEG Network here or visit our YouTube channel at www.youtube.com/@JacksonPEGNetwork Documents and forms MAYORAL EXECUTIVE ORDER AMENDING THE CITY OF JACKSON POLICE DEPARTMENT’S USE OF FORCE POLICY June 26, 2020 PDF 116 KB Download Documents and forms MAYORAL EXECUTIVE ORDER AMENDING THE CITY OF JACKSON POLICE DEPARTMENT’S USE OF FORCE POLICY June 26, 2020 PDF 116 KB Download Documents and forms June 26, 2020 PDF 116 KB Download June 26, 2020 PDF 116 KB Download June 26, 2020 Helpful Share Facebook Twitter Email Size + Reset a − Translate Translate language select Select language Afrikaans Albanian Amharic Arabic Armenian Azerbaijani Basque Belarusian Bengali Bosnian Bulgarian Catalan Cebuano Chichewa Chinese (Simplified) Chinese (Traditional) Corsican Croatian Czech Danish Dutch English Esperanto Estonian Filipino Finnish French Frisian Galician Georgian German Greek Gujarati Haitian Creole Hausa Hawaiian Hebrew Hindi Hmong Hungarian Icelandic Igbo Indonesian Irish Italian Japanese Javanese Kannada Kazakh Khmer Korean Kurdish (Kurmanji) Kyrgyz Lao Latin Latvian Lithuanian Luxembourgish Macedonian Malagasy Malay Malayalam Maltese Maori Marathi Mongolian Myanmar (Burmese) Nepali Norwegian Pashto Persian Polish Portuguese Punjabi Romanian Russian Samoan Scottish Gaelic Serbian Sesotho Shona Sindhi Sinhala Slovak Slovenian Somali Spanish Sundanese Swahili Swedish Tajik Tamil Telugu Thai Turkish Ukrainian Urdu Uzbek Vietnamese Welsh Xhosa Yiddish Yoruba Zulu Select language Afrikaans Albanian Amharic Arabic Armenian Azerbaijani Basque Belarusian Bengali Bosnian Bulgarian Catalan Cebuano Chichewa Chinese (Simplified) Chinese (Traditional) Corsican Croatian Czech Danish Dutch English Esperanto Estonian Filipino Finnish French Frisian Galician Georgian German Greek Gujarati Haitian Creole Hausa Hawaiian Hebrew Hindi Hmong Hungarian Icelandic Igbo Indonesian Irish Italian Japanese Javanese Kannada Kazakh Khmer Korean Kurdish (Kurmanji) Kyrgyz Lao Latin Latvian Lithuanian Luxembourgish Macedonian Malagasy Malay Malayalam Maltese Maori Marathi Mongolian Myanmar (Burmese) Nepali Norwegian Pashto Persian Polish Portuguese Punjabi Romanian Russian Samoan Scottish Gaelic Serbian Sesotho Shona Sindhi Sinhala Slovak Slovenian Somali Spanish Sundanese Swahili Swedish Tajik Tamil Telugu Thai Turkish Ukrainian Urdu Uzbek Vietnamese Welsh Xhosa Yiddish Yoruba Zulu Contact Jackson City Hall 219 S. President St. Jackson, MS 39201 Employee Login Employee Handbook Contact Links Directory Feedback Access Links Accessibility Sitemap Subscribe Enter email Comments This field is for validation purposes and should be left unchanged. Connect Facebook Instagram Twitter Youtube Contact Jackson City Hall 219 S. President St. Jackson, MS 39201 Employee Login Employee Handbook Contact Links Directory Feedback Access Links Accessibility Sitemap Subscribe Enter email Comments This field is for validation purposes and should be left unchanged. Connect Facebook Instagram Twitter Youtube " -17,http://www.longbeach.gov/police/press-releases/murder-600-block-of-e-9th-street/,Media Bulletins,Agency-Published Resources,MURDER 600 block of E 9th Street,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 11/1/2016 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: MURDER 600 BLOCK OF EAST 9TH STREET Contact: Media Relation Detail (562) 570-5273 UPDATE (11/15/2016): On November 11, 2016, police arrested 36-year-old Jorge Omar Chavez of Long Beach in connection with this investigation. Related news release Original News Release (11/1/2016): On November 1, 2016, at approximately 02:10 a.m., officers were dispatched to the 600 block of 9th Street regarding a possible victim of a shooting. Upon arrival officers found a male adult suffering from a gunshot wound to his upper torso. Long Beach Fire Department personnel responded and determined the subject was deceased. The Homicide detail responded and is handling the investigation. The victim has been identified as 18 year-old Long Beach resident Manuel Arechiga. It is unknown at this time if the incident is gang related. Anyone with information is urged to call Homicide Detectives Scott Lasch, Michael Hubbard or Teryl Hubert at (562) 570-7244. Anonymous tips may be submitted through ""LA Crime Stoppers"" by calling 1-800-222-TIPS (8477), downloading the ""P3 Tips"" app to your smart phone (available at the Apple App store and Google Play), or visiting http://www.lacrimestoppers.org/ This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -18,https://www.dps.arkansas.gov/law-enforcement/arkansas-state-police/divisions/highway-patrol/troop-c-commander/,Personnel Records,Info About Officers,Troop C Commander - Arkansas Department of Public Safety,"",200,Home - Arkansas Department of Public Safety,"[""Flag Status""]","[""Troop C Commander"", ""Contact ASP"", ""Helpful ASP links"", ""Connect with ASP"", ""Respect. Integrity. CUSTOMER SERVICE. TEAMWORK. SERVANT LEADERSHIP. CONTINUOUS IMPROVEMENT"", """", ""© 2024 All rights Reserved. Arkansas.gov""]","[""Captain John Carter""]",[],"[""About DPS"", ""DPS Links"", ""DPS Address"", ""Your Arkansas.gov"", ""Top Online Services"", ""Helpful Information""]",[],"" -19,https://www.roseville.ca.us/government/departments/police_department/community_services/my_neighborhood_officer/neighborhood_officer_program_information,Misc Police Activity,Police & Public Interactions,Neighborhood Officer Program Information - City of Roseville,Reasons for Neighborhood Officer program and scheduling information,200,Just a moment...,"[""City of Roseville""]","[""Neighborhood Officer Program Information""]","[""Roseville Police Department""]",[],[],[],"" -20,https://www.pleasantprairiewi.gov/departments/police/news/police_and_fire___rescue_news_archive/2021_news_releases/arrest_leads_to_officer_injury,Media Bulletins,Agency-Published Resources,Arrest Leads to Officer Injury - Village of Pleasant Prairie,"",200,Just a moment...,[],"[""Arrest Leads to Officer Injury""]","[""Follow Us on Social Media""]",[],[],[],"" -21,https://cityofmebanenc.gov/documents/police-officer-2/police-officer-updated-2-21-2022/,Resources,Agency-Published Resources,"Police Officer (Updated 2-21-2022) - Mebane, NC","",200,"Welcome - Mebane, NC","[""Police Officer (Updated 2-21-2022)""]","[""Primary menu links"", ""Action toolbar"", ""Recent news"", ""Welcome"", ""Engage"", ""Help""]","[""Request for Qualifications – City of Mebane Asset Inventory and Assessment Sewer Collections System"", ""Request for Bids: Lake Michael Dam Spillway Replacement"", ""Request for Proposals – Comprehensive Land Development Plan Update"", ""Request for Bids: N. Second Street Sidewalk Improvements"", ""Request for Bids: Elevated Water Storage Tank""]",[],[],[],"Mebane, NC Primary menu links Residents Businesses Visitors Events Government Departments Contact Action toolbar Answers Payments Report Issue Search Primary menu links Residents Businesses Visitors Events Government Departments Contact Action toolbar Answers Payments Report Issue Search Mebane, NC Mebane, NC Mebane, NC Police Officer (Updated 2-21-2022) Posted on February 21, 2022 Police Officer (Updated 2-21-2022) Recent news Request for Qualifications – City of Mebane Asset Inventory and Assessment Sewer Collections System Posted on March 18, 2024 Request for Bids: Lake Michael Dam Spillway Replacement Posted on March 4, 2024 Request for Proposals – Comprehensive Land Development Plan Update Posted on March 1, 2024 Request for Bids: N. Second Street Sidewalk Improvements Posted on January 29, 2024 Request for Bids: Elevated Water Storage Tank Posted on August 4, 2023 All news » Police Officer (Updated 2-21-2022) Posted on February 21, 2022 Police Officer (Updated 2-21-2022) Recent news Request for Qualifications – City of Mebane Asset Inventory and Assessment Sewer Collections System Posted on March 18, 2024 Request for Bids: Lake Michael Dam Spillway Replacement Posted on March 4, 2024 Request for Proposals – Comprehensive Land Development Plan Update Posted on March 1, 2024 Request for Bids: N. Second Street Sidewalk Improvements Posted on January 29, 2024 Request for Bids: Elevated Water Storage Tank Posted on August 4, 2023 All news » Police Officer (Updated 2-21-2022) Recent news Request for Qualifications – City of Mebane Asset Inventory and Assessment Sewer Collections System Posted on March 18, 2024 Request for Bids: Lake Michael Dam Spillway Replacement Posted on March 4, 2024 Request for Proposals – Comprehensive Land Development Plan Update Posted on March 1, 2024 Request for Bids: N. Second Street Sidewalk Improvements Posted on January 29, 2024 Request for Bids: Elevated Water Storage Tank Posted on August 4, 2023 All news » Police Officer (Updated 2-21-2022) Recent news Request for Qualifications – City of Mebane Asset Inventory and Assessment Sewer Collections System Posted on March 18, 2024 Request for Bids: Lake Michael Dam Spillway Replacement Posted on March 4, 2024 Request for Proposals – Comprehensive Land Development Plan Update Posted on March 1, 2024 Request for Bids: N. Second Street Sidewalk Improvements Posted on January 29, 2024 Request for Bids: Elevated Water Storage Tank Posted on August 4, 2023 All news » " -22,https://www.eutawal.gov/policeman/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -23,http://www.longbeach.gov/police/press-releases/murder-investigation4/,Media Bulletins,Agency-Published Resources,MURDER INVESTIGATION,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 6/29/2018 FOR IMMEDIATE RELEASE Press Release # Subject: MURDER INVESTIGATION Contact: Media Relations (562) 570-5273 On June 28, 2018, at approximately 9:50 p.m., officers were dispatched to the 1900 block of Martin Luther King Avenue regarding a shooting, which resulted in the death of a male adult. Officers arrived and located a male adult victim with a gunshot wound to his upper torso. Long Beach Fire Department responded and determined the victim deceased at the scene. The victim has been identified as 42-year-old Ellis Spillman of Long Beach. The victim was inside a residence when a single male suspect confronted him with gunfire. The incident appears to be gang-related. A motive for the shooting is unknown and the investigation remains ongoing. Anyone with information is asked to contact the LBPD Homicide Detectives Mark Mattia and Don Collier at (562) 570-7244. Anonymous tips may be submitted through “LA Crime Stoppers” by calling 1-800-222-TIPS (8477), downloading the “P3 Tips” app to your smart phone (available at the Apple App store and Google Play), or visiting www.lacrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -24,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/090921blotter.pdf,Dispatch Logs,Police & Public Interactions,"","",404,"","","","","","","","" -25,https://delcopa.gov/planning/programsandinitiatives/heritagecommission/historyofhcpreservationawards.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -26,https://www.antioch.il.gov/wpfb-file/12-13-11-police-pension-fund-agenda-pdf/,Poor Data Source,Poor Data Source,"12-13-11 Police Pension Fund Agenda - Antioch, IL",8426 12 13 11 police pension fund agenda pdf commissions agendas 2011 1323382236 7fbda0786265e371ec5e6ffad4bd173e 217x300 _ppssu55rtwkq thumb jpg 08 17 10 36 0 pdf application page_text num_pages pdf_pages pdf_2text timings,200,"Home - Antioch, IL","[""12-13-11 Police Pension Fund Agenda""]",[],[],[],[],[],Open toolbar Accessibility Tools Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset -27,https://www.bedminster.us/government/police/history,Contact Info & Agency Meta,Info About Agencies,History - Township of Bedminster,"",200,Just a moment...,"[""Bedminster Township""]","[""History""]","[""Bedminster Township""]",[],[],[],"" -28,https://www.ci.neenah.wi.us/departments/police/neighborhood-policing/,Policies & Contracts,Info About Agencies,Neighborhood Policing – City of Neenah,"",200,403 Forbidden,"[""Neighborhood Policing""]","[""In This Department""]","[""Neighborhood Policing: Partnerships that Work""]",[],[],[],"" -29,http://www.lafayettepolice.us/1635/learning-adventures-camps-ages-5-7,Not Criminal Justice Related,Not Criminal Justice Related,"Learning Adventures Camps (ages 5-7) | Lafayette, IN - Official Website","",200,"Police Department | Lafayette, IN - Official Website","[""Learning Adventures Camps (ages 5-7)""]","[""About Learning Adventures Camps"", ""Registration for 2024 Zoo Camps opens February 1, 2024!"", ""2024 Learning Adventures (ages 5-7) Camp Schedule: *Please note, while we try to keep this schedule and open/closed status as current as possible, there may be delays in website updates."", ""Learning Adventures (ages 5-7) Camp Fees:"", ""Questions? Please call the Education Department at (765) 807-1540 or email zooeducation@lafayette.in.gov.""]","[""If your desired session is full, you can join the wait list on our registration portal."", ""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]","[""Please review before registering:"", ""Already registered? Download your required camp forms here.""]",[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Plan Your Visit About the Zoo Get Involved Education Programs Special Events I Want To... Home Government Departments H - W Parks & Recreation Facilities Columbian Park Zoo Education Programs Family & Youth Programs Zoo Camps Summer Camps Learning Adventures Camps (ages 5-7) Learning Adventures Camps (ages 5-7) About Learning Adventures Camps Because learning never takes a vacation! These day camps each highlight a different nature-based topic and provide hands-on, brains-on explorations into the wild world of animals! Each session is designed to meet the developmental and social needs of its participants. Games, crafts, and STEM (Science, Technology, Engineering, and Math) activities make for a fun-filled week of learning adventure. All sessions include several encounters with live animals! Supervised excursions to zoo exhibits and behind-the-scenes areas which complement the lesson, may be included. Registration for 2024 Zoo Camps opens February 1, 2024! 2024 Learning Adventures (ages 5-7) Camp Schedule: *Please note, while we try to keep this schedule and open/closed status as current as possible, there may be delays in website updates. Camp Title Dates Times Status What's For Dinner? June 3-7 9:00am-12:00pm FULL/Wait List Available Zoo Clues June 10-14 9:00am-12:00pm FULL/Wait List Available Pika-ZOO Trainer June 17-June 21 9:00am-12:00pm FULL/Wait List Available Animals Red, White, and Blue *modified fee - see registration portal for details July 1-3 (3-days only) 9:00am-12:00pm OPEN Dinosaur Roar July 8-12 9:00am-12:00pm FULL/Wait List Available Animal Transformers July 15-19 9:00am-12:00pm FULL/Wait List Available Medieval Myths July 22-26 9:00am-12:00pm FULL/Wait List Available Zoo Olympics July 29-Aug 2 9:00am-12:00pm FULL/Wait List Available Dr. Zoolittle Aug 5-9 9:00am-12:00pm OPEN If your desired session is full, you can join the wait list on our registration portal. Learning Adventures (ages 5-7) Camp Fees: $125 Non-Members (Members save 15%) Extended care is available for an additional $15 per child per week and runs 7:30am-9:00am only for morning camp sessions *NOTE: some camp sessions may have modified fees and/or not include extended care - see registration portal for details Please review before registering: Zoo Education Programs Participation Agreement Hold Harmless and Cancellation Policy Already registered? Download your required camp forms here. Zoo Emergency Contact and Pick Up Permissions Form Zoo Health Advisory and Accommodation Form Interested in becoming a member? Click here for more info or to join today! Questions? Please call the Education Department at (765) 807-1540 or email zooeducation@lafayette.in.gov. Learning Adventures Camps (ages 5-7) Learning Adventures Camps (ages 8-11) Learning Adventures Camps (ages 12-14) Aquatics McAllister Center Rentals Zoo Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate " -30,https://www.sheridanwy.gov/faq_s/police_department,Contact Info & Agency Meta,Info About Agencies,"Police Department FAQ - City of Sheridan, WY","",200,Just a moment...,"[""City of Sheridan""]","[""Police Department FAQ"", """"]",[],[],[],[],Skip to Content -31,https://www.sandyspringsgapolice.gov/category/uncategorized/,Poor Data Source,Poor Data Source,Uncategorized – Sandy Springs Police Department,"",200,Sandy Springs Police Department,"[""Nothing Found""]",[],[],[],[],[],Emergency: Dial 911 | Non-Emergency: Phone Directory | Police Reports | Events Emergency: Dial 911 | Non-Emergency: Phone Directory | Police Reports | Events Menu Menu About SSPD Police Chief Command Staff Districts Careers with SSPD Contact Us Visit Police HQ Higher Learning Statement on Use of Force & Community Engagement SSPD Most Wanted In Memoriam Sandy Springs Police Benevolent Fund SSPD’s Social Media Policy Divisions and Units Patrol Division Special Operations Division Criminal Investigation Division Administration Division Intelligence and Technology Division Internal Affairs Training and Background Unit Property & Evidence Unit Specialized Units North Metro S.W.A.T. Quick Response Force Street Crimes Unit K-9 Unit Traffic Traffic Response Vehicle Bicycle Patrol CSI Unit Crisis Negotiation Team River Patrol Unit Honor Guard Drone Program Community Part Time / Reserve Officers Task Forces Organizational Chart Citizen Services Alarm Information Alcohol Pouring Permits Apartment Safety Checker ChatComm911 Criminal History Reports and Record Restrictions Event Map ⤤ Domestic Violence Resources Home and Business Checks Mental Health & Substance Abuse Municipal Court Off-Duty Officer Requests Open Records Requests Police Reports Report a Crime & Crime Tips Sex Offender Registry Vehicle Release VIN Verification Weapons Carry License Crime Prevention Crime Statistics Neighborhood Watch Home and Business Security Citizen Participation SSPD Events Citizens Police Academy (CPA) Women’s Self Defense Classes Handgun Safety Class Volunteer Programs Citizens On Patrol (COPS) Law Enforcement Explorers Youth Program Internship Program VIPS (Volunteers in Police Service) Chaplains Program Camera Registry Program Menu About SSPD Police Chief Command Staff Districts Careers with SSPD Contact Us Visit Police HQ Higher Learning Statement on Use of Force & Community Engagement SSPD Most Wanted In Memoriam Sandy Springs Police Benevolent Fund SSPD’s Social Media Policy Divisions and Units Patrol Division Special Operations Division Criminal Investigation Division Administration Division Intelligence and Technology Division Internal Affairs Training and Background Unit Property & Evidence Unit Specialized Units North Metro S.W.A.T. Quick Response Force Street Crimes Unit K-9 Unit Traffic Traffic Response Vehicle Bicycle Patrol CSI Unit Crisis Negotiation Team River Patrol Unit Honor Guard Drone Program Community Part Time / Reserve Officers Task Forces Organizational Chart Citizen Services Alarm Information Alcohol Pouring Permits Apartment Safety Checker ChatComm911 Criminal History Reports and Record Restrictions Event Map ⤤ Domestic Violence Resources Home and Business Checks Mental Health & Substance Abuse Municipal Court Off-Duty Officer Requests Open Records Requests Police Reports Report a Crime & Crime Tips Sex Offender Registry Vehicle Release VIN Verification Weapons Carry License Crime Prevention Crime Statistics Neighborhood Watch Home and Business Security Citizen Participation SSPD Events Citizens Police Academy (CPA) Women’s Self Defense Classes Handgun Safety Class Volunteer Programs Citizens On Patrol (COPS) Law Enforcement Explorers Youth Program Internship Program VIPS (Volunteers in Police Service) Chaplains Program Camera Registry Program -32,https://mukilteowa.gov/news/mukilteo-seeks-new-police-chief/,Personnel Records,Info About Officers,"City of Mukilteo - | Mukilteo Seeks New Police Chief - City of Mukilteo","",200,403 Forbidden,"[""Mukilteo Seeks New Police Chief""]","[""Sign up for notifications""]",[],[],[],[],COVID-19 Alert - City of Mukilteo Response COVID-19 Alert - City of Mukilteo Response -33,https://www.foxcrossingwi.gov/departments/police-department/community-policing/tricom/,Poor Data Source,Poor Data Source,tricom - Fox Crossing Fox Crossing,"",200,Fox Crossing - Bridging the Fox Cities Fox Crossing,[],"[""Community Policing » tricom""]",[],[],[],[],"Home Government Board of Review Bond Schedule Commissions & Boards Application for Appointment Village Board Elections and Voting Incorporation Information Fee Schedule Licenses & Permit Applications Minutes and Agendas Municipal Code Departments Administration Assessor Clerk Community Development Finance/Treasurer Fire Municipal Court Parks and Recreation Police Street Utilities Calendar Resources Elderly Transportation Program Employment Garbage & Recycling Individual & Business of Year Information for Vendors Local Links Pet Licensing Permits Building Permits Planning Permits Street Permits Population History Public Records Real Estate Inquiry Maps/GIS Property Information Tax & Parcel Information Tax Rate Information (TID IN) The Bridge Calendar Valley Transit Village History Weights & Measures Online Services Municipal Court Payments Parking Ticket Payments Rec Program Registration Utility Online Services Village General Payments Village Notifications Contact How Are We Doing Community Policing » tricom This entry was posted on Tuesday, March 20th, 2012 at 9:49 am and is filed under . - You can follow any responses to this entry through the RSS 2.0 feed. - - Responses are currently closed, but you can trackback from your own site. Comments are closed. Copyright © 2010 - 2024 Fox Crossing, All Rights Reserved. Professional Web Site Design by Sandstone Digital. Disclaimer Home Government Board of Review Bond Schedule Commissions & Boards Application for Appointment Village Board Elections and Voting Incorporation Information Fee Schedule Licenses & Permit Applications Minutes and Agendas Municipal Code Departments Administration Assessor Clerk Community Development Finance/Treasurer Fire Municipal Court Parks and Recreation Police Street Utilities Calendar Resources Elderly Transportation Program Employment Garbage & Recycling Individual & Business of Year Information for Vendors Local Links Pet Licensing Permits Building Permits Planning Permits Street Permits Population History Public Records Real Estate Inquiry Maps/GIS Property Information Tax & Parcel Information Tax Rate Information (TID IN) The Bridge Calendar Valley Transit Village History Weights & Measures Online Services Municipal Court Payments Parking Ticket Payments Rec Program Registration Utility Online Services Village General Payments Village Notifications Contact How Are We Doing Community Policing » tricom This entry was posted on Tuesday, March 20th, 2012 at 9:49 am and is filed under . - You can follow any responses to this entry through the RSS 2.0 feed. - - Responses are currently closed, but you can trackback from your own site. Comments are closed. Copyright © 2010 - 2024 Fox Crossing, All Rights Reserved. Professional Web Site Design by Sandstone Digital. Disclaimer " -34,https://www.edmondswa.gov/government/departments/police_department/public_information/can_you_i_d_me_,Wanted Persons,Agency-Published Resources,Can You ID Me - Home,"",200,Just a moment...,"[""CAN YOU ID ME?"", ""504""]","[""Subjects Identified"", ""DO YOU KNOW THESE PEOPLE?""]","[""CanYouID.me is Washington State’s most comprehensive unknown subject identification site.""]",[],"[""DO YOU RECOGNIZE ANYONE IN THESE PHOTOGRAPHS?"", ""DO YOU RECOGNIZE ANYONE IN THESE PHOTOGRAPHS?""]",[],New Detectives Join Here Detective Login Follow Us New Detectives Join Here Detective Login Follow Us clear clear clear clear clear Home Participating Agencies Contact Detective Login External Links: Puget Sound Crime Stoppers Crime Stoppers of Washington State Washington’s Most Wanted Follow Us Home Participating Agencies Contact Detective Login External Links: Puget Sound Crime Stoppers Crime Stoppers of Washington State Washington’s Most Wanted Follow Us Home Participating Agencies Contact Detective Login External Links: Puget Sound Crime Stoppers Crime Stoppers of Washington State Washington’s Most Wanted Home Participating Agencies Contact Detective Login Home Participating Agencies Contact Detective Login External Links: Puget Sound Crime Stoppers Crime Stoppers of Washington State Washington’s Most Wanted External Links: Puget Sound Crime Stoppers Crime Stoppers of Washington State Washington’s Most Wanted CAN YOU ID ME? CanYouID.me is Washington State’s most comprehensive unknown subject identification site. Select a participating agency to view cases from their area. Select a participating agency to view cases from their area. Select a participating agency to view cases from their area. CanYouID.me was created as a location for all Washington State police investigators to post photographs of people captured on video that they could not identify. 504 Subjects Identified CanYouID.me was created as a location for all Washington State police investigators to post photographs of people captured on video that they could not identify. 504 Subjects Identified CanYouID.me was created as a location for all Washington State police investigators to post photographs of people captured on video that they could not identify. 504 Subjects Identified CanYouID.me was created as a location for all Washington State police investigators to post photographs of people captured on video that they could not identify. CanYouID.me was created as a location for all Washington State police investigators to post photographs of people captured on video that they could not identify. 504 Subjects Identified 504 Subjects Identified -35,https://www.lynchburgvapolice.gov/traffic-safety-information/,List of Data Sources,Info About Agencies,Traffic Safety Information - Lynchburg Police Department,"",200,403 Forbidden,"[""Traffic Safety Information""]","[""Traffic Safety Links""]",[],"[""Contact Us"", ""Site Links"", ""Site Links""]",[],"[""LPD Traffic Data"", ""Virginia State Police H.E.A.T. Program (Help Eliminate Auto Theft)"", ""Virginia Drive Smart"", ""Smart, Safe, and Sober"", ""Virginia Department of Motor Vehicles – Highway Safety"", ""Virginia’s Child Safety Belt Laws"", ""Child Safety Seat Guidelines"", ""Teen Driving"", ""Virginia DMV Practice Driver’s License Tests"", ""Virginia DMV Motorcycle Safety"", ""Work Zone Safety Info""]","" -36,http://chico.ca.us/post/police-community-advisory-board-pcab,Media Bulletins,Agency-Published Resources,City of Chico - Site Search,"",200,City of Chico - Home,"[""City of Chico"", ""City of Chico""]","[""Site Search""]","[""Contact Us"", ""Quicklinks"", ""City Resources"", ""Stay Connected"", ""Contact Us"", ""Quicklinks"", ""Follow\n \n City of Chico""]",[],[],[],skip to main content -37,http://www.lafayettepolice.us/488/swimming-lessons,Not Criminal Justice Related,Not Criminal Justice Related,"Swimming Lessons | Lafayette, IN - Official Website",Sign up for swimming lessons at the Castaway Bay Aquatic Center in Lafayette.,200,"Police Department | Lafayette, IN - Official Website","[""Swimming Lessons""]","[""Youth Swimming Lessons"", ""Fees"", ""Register"", ""Adult Swimming Lessons"", ""Jim Sharp""]","[""Schedule"", ""Class Times"", """", ""Contact Us"", ""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Plan Your Visit About Us Special Events Programs I Want To... Home Government Departments H - W Parks & Recreation Facilities Aquatics Programs Swimming Lessons Swimming Lessons Youth Swimming Lessons Youth swimming lessons will once again take place at Castaway Bay in Armstrong Park in 2023. Lessons are offered through Swim America . Schedule June 19-30 July 10-21 Class Times TBD ONLY MORNING SESSIONS WILL BE OFFERED THIS SUMMER - Sessions will meet on Monday - Thursday of each week. Fridays mornings will be used for weather-related make-up sessions. There will be a maximum of 30 students per class period. Fees Number of Children Price 1st Child $60 2nd Child $55 3rd Child $50 4th Child Free Register Visit the Lafayette Swim America parent portal to register. Email info@lafayetteswimamerica.com with questions. Adult Swimming Lessons It's never too late to learn how to swim. Coach Jim Sharp and his staff are here to help you learn. ""Miracle Swimming"" adult swimming lessons will help you to be in control in the water and prevent panic. Sessions are available by request. Contact Us Jim Sharp Personal Email Work Email Phone: 765-427-8447 Birthday Parties Swimming Lessons Lifeguard Certification Course Workreation Aquatics McAllister Center Rentals Zoo Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate " -38,https://alpha.austin.gov/police-oversight/written-reprimand-of-officer-jason-goodman/,Complaints & Misconduct,Info About Officers,"","",200,"","","","","","","","" -39,https://www.arlingtontx.gov/news/my_arlington_t_x/news_archive/2013_archived_news/december_2013/arlington_police_remind_safe_holiday_season,Media Bulletins,Agency-Published Resources,Arlington Police Remind Motorists to Have Safe Holiday Season - City of Arlington,"",200,Just a moment...,"[""YOUR COMMUNITY NEWS AND EVENTS"", ""City of Arlington""]","[""Arlington Police Remind Motorists to Have Safe Holiday Season""]",[],[],[],[],Skip to Content Skip to Content -40,https://www.antioch.il.gov/police-department/,List of Data Sources,Info About Agencies,"Police Department - Antioch, IL","",200,"Home - Antioch, IL","[""Police Department""]",[],[],"[""Employment"", ""Press Releases"", ""Police Blotter"", ""Juvenile Law Enforcement Record Automatic Expungement"", ""Citizen Complaint"", ""9-1-1 Dispatch Center"", ""Antioch Police Drone Use Policy""]",[],[],Open toolbar Accessibility Tools Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset -41,https://decaturil.gov/decatur-police-department-to-host-coffee-with-a-cop-on-august-8-2018/,Misc Police Activity,Police & Public Interactions,"","",404,"","","","","","","","" -42,https://www.newcastlewa.gov/departments/police/solicitors,Not Criminal Justice Related,Not Criminal Justice Related,Solicitor Permits - City of Newcastle,"",200,Just a moment...,[],"[""City of Newcastle""]","[""2023 Active Solicitor Permits""]","[""City of Newcastle Washington""]",[],[],"" -43,https://www.hayward-ca.gov/discover/news/mar21/hayward-police-departments-community-academy-goes-virtual-april,Misc Police Activity,Police & Public Interactions,Hayward Police Department’s Community Academy goes virtual in April | City of Hayward - Official website,Community Academy.png The Hayward Police Department is offering special online sessions of its Community Academy program in English and Spanish over four weeks this April.The Hayward Police Department’s Community Academy is a certified educational program designed to give community members a working knowledge of how the Police Department is organized and operates in Hayward.,200,City of Hayward - Official website,"[""Hayward Police Department’s Community Academy goes virtual in April""]","[""Look Deeper"", ""Welcome home"", ""Where opportunity lives"", ""Find what you need. Fast."", ""Working for You"", ""Your Hayward Environment"", ""Community Academy.png"", ""You are here. So is everything else."", ""Search form"", ""Look Deeper"", ""Welcome home"", ""Where opportunity lives"", ""Find what you need. Fast."", ""Working for You"", ""Your Hayward Environment""]",[],"[""Do you need help paying energy bills? You may qualify for federal aid."", ""Hayward Receives Grant for Safe Routes to Schools Infrastructure and Bicycle Incentives"", ""Hayward Celebrates Earth Day at Weekes Park!"", ""Spring 2024 Compost Giveaway"", ""Sustainable Solutions for Celebrating Easter"", ""City Hall and Nonessential Services Closure: Monday, Apr. 01, 2024"", ""Presidential Primary Election: Tuesday, Mar. 5, 2024"", ""Library Closure: February 12 and February 19, 2024."", ""City Hall and Nonessential Services Closures: Monday, Feb. 19"", ""City Hall and Nonessential Services Closure: Monday, Jan. 15, 2024"", ""YOU ARE HERE. SO IS EVERYTHING ELSE."", ""Related News"", ""Alameda County Housing Authority will open waitlists soon for housing and housing vouchers"", ""Phase 2 of improvements to State Route 92-Clawiter Road interchange"", ""Application period open for Hayward Youth Commission"", ""Report Problems"", ""Ask Questions"", ""Make a Suggestion"", ""Translate"", ""Search""]",[],[],Skip to main content -44,https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/summary/031422summary.pdf,Daily Activity Logs,Info About Officers,"","",404,"","","","","","","","" -45,https://alpha.austin.gov/police-oversight/formal-complaint-impartial-attitude-and-courtesy-and-other-policy-violations-4/,Complaints & Misconduct,Info About Officers,"","",200,"","","","","","","","" -46,https://alpha.austin.gov/es/police-oversight/2020-06-30-7/,Complaints & Misconduct,Info About Officers,"","",200,"","","","","","","","" -47,https://spdblotter.seattle.gov/2013/05/02/man-leads-police-on-chase-in-stolen-patrol-car-after-attacking-bus-riders-officers/,Media Bulletins,Agency-Published Resources,"Man Leads Police On Chase In Stolen Patrol Car After Attacking Bus Rider, Officers (Updated) - SPD Blotter","",200,403 Forbidden,"[""Man Leads Police On Chase In Stolen Patrol Car After Attacking Bus Rider, Officers (Updated)""]","[""Find Posts By Topic"", ""You might also like..."", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],SPD Blotter Seattle Police Department (SPD) Home Topics SPD Blotter Seattle Police Department (SPD) Home Topics SPD Blotter Seattle Police Department (SPD) Home Topics Search Search Search Search Find Posts By Topic Police Precincts East Precinct North Precinct Southwest Precinct South Precinct West Precinct Data and Crime Trends Investigations 2018 Homicides 2019 Homicides 2020 Homicides Statements and News Releases Chief of Police News Releases Events Alerts Community Outreach Traffic and Collisions Significant Incident Reports Find Posts By Topic Police Precincts East Precinct North Precinct Southwest Precinct South Precinct West Precinct Data and Crime Trends Investigations 2018 Homicides 2019 Homicides 2020 Homicides Statements and News Releases Chief of Police News Releases Events Alerts Community Outreach Traffic and Collisions Significant Incident Reports Police Precincts East Precinct North Precinct Southwest Precinct South Precinct West Precinct Data and Crime Trends Investigations 2018 Homicides 2019 Homicides 2020 Homicides Statements and News Releases Chief of Police News Releases Events Alerts Community Outreach Traffic and Collisions Significant Incident Reports -48,http://www.ryepolice.us/announcements/dmv-phone-scam,Media Bulletins,Agency-Published Resources,Rye Police Department DMV Phone Scam - Rye Police Department,"",200,Rye Police Department Welcome to the Rye Police Department - Rye Police Department,"[""DMV Phone Scam""]","[""DMV Phone Scam""]","[""Navigation"", ""Follow Us"", ""Facebook"", ""Email Updates"", ""Storm Preparedness Guide""]",[],[],[]," Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Chief’s Message Crime Prevention Victim Services Domestic Violence Computer Crime Identity Theft Press Releases Police Logs Events Event Permits Beach Permits FAQ Contact Us Navigate... Chief’s Message Crime Prevention - Victim Services - Domestic Violence - Computer Crime - Identity Theft Press Releases Police Logs Events - Event Permits - Beach Permits FAQ Contact Us Search DMV Phone Scam Home Announcements DMV Phone Scam DMV Phone Scam September 13, 2017 In Announcements We have gotten word that a resident received a phone call from the ""DMV"" last night, September 12, stating that the resident's registration would be expiring at the end of September, and that they (DMV) would be willing to re-register the vehicle for the resident. They requested all of the necessary information for registering a car, to include personal information. This call was NOT from the DMV. DMV does not place calls to people. All correspondence will be within the postal service. Please remember to NEVER give out your personal information unless you are certain about who you are actually speaking with. Please share this with your friends and neighbors, so that no one becomes victim to this crime. Thank you! Navigation About Rye Animal Control Announcements Beach Information Careers Chief’s Message Computer Crime Contact Us Coronavirus Crime Prevention Directions Domestic Violence FAQ Firearms Safety Fireworks Forms Identity Theft Mission Statement Parking Payments Personnel Police Logs Prescription Drug Disposal Press Releases Report Request Town Ordinances Victim Services West Nile / EEE Follow Us Facebook Email Updates Subscribe to our newsletter. We promise you won't get flooded with junk! Email * Storm Preparedness Guide Developed by ThemeMakers Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Chief’s Message Crime Prevention Victim Services Domestic Violence Computer Crime Identity Theft Press Releases Police Logs Events Event Permits Beach Permits FAQ Contact Us Navigate... Chief’s Message Crime Prevention - Victim Services - Domestic Violence - Computer Crime - Identity Theft Press Releases Police Logs Events - Event Permits - Beach Permits FAQ Contact Us Search Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Chief’s Message Crime Prevention Victim Services Domestic Violence Computer Crime Identity Theft Press Releases Police Logs Events Event Permits Beach Permits FAQ Contact Us Navigate... Chief’s Message Crime Prevention - Victim Services - Domestic Violence - Computer Crime - Identity Theft Press Releases Police Logs Events - Event Permits - Beach Permits FAQ Contact Us Search Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 " -49,https://www.mass.gov/doc/2021-foxborough-police-sergeant-sole-assessment-center-examination-in-title-employment-verification-form/download,Training & Hiring Info,Info About Officers,"","",200,"","","","","","","","" -50,https://www.pleasantprairiewi.gov/news/2017_news/1_20_2017___shop_with_a_cop,Media Bulletins,Agency-Published Resources,1/20/2017 | Shop With a Cop - Village of Pleasant Prairie,"",200,Just a moment...,[],"[""1/20/2017 | Shop With a Cop""]","[""Follow Us on Social Media""]",[],[],[],"" -51,https://www.bedminster.us/government/police/tips,Contact Info & Agency Meta,Info About Agencies,Tips - Township of Bedminster,"",200,Just a moment...,"[""Bedminster Township""]","[""Tips""]","[""Bedminster Township""]",[],[],[],"" -52,https://champaignil.gov/2019/02/20/champaign-police-investigating-tuesday-night-shooting/,Misc Police Activity,Police & Public Interactions,Champaign Police Investigating Tuesday Night Shooting - City of Champaign,"On Tuesday, Feb. 19, 2019, at approximately 9:32 p.m., a Champaign Police Officer responded to the 1200 block of W Beardsley Avenue after hearing apparent gun shots while on patrol, which was followed by a citizen report of shots heard in the same area.",200,403 Forbidden,"[""Champaign Police Investigating Tuesday Night Shooting""]","[""News Releases"", ""Department News""]",[],[],[],[],"skip to content City of Champaign Main Menu Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs Champaign Police Investigating Tuesday Night Shooting Search Posted on February 20, 2019 On Tuesday, Feb. 19, 2019, at approximately 9:32 p.m., a Champaign Police Officer responded to the 1200 block of W Beardsley Avenue after hearing apparent gun shots while on patrol, which was followed by a citizen report of shots heard in the same area. Upon arrival, officers located evidence of a shooting. Soon thereafter, Champaign Police learned an 18-year-old male victim arrived at a local hospital suffering from multiple non-life-threatening gunshot wounds. Champaign Police are processing evidence and actively working to identify the circumstances leading up to the incident. While the investigation remains in its early stages, this is not believed to be a random act of violence. If any resident in the 1200 block area of W Beardsley Avenue has exterior home surveillance camera systems, please contact the police department. It is believed video footage from Tuesday evening may be of investigative assistance. Future updates may be provided as they become available. Police ask anyone who may have information or who was in the area at the time of the shooting to contact police at 217-351-4545. Arrangements can be made for information to be shared privately with police. Anyone wishing to remain anonymous may also submit tips to Crime Stoppers by phone at: 217-373-8477 (TIPS); online at 373tips.com; or the “P3 Tips” mobile app. Champaign Police reminds citizens that information submitted to Crime Stoppers is completely anonymous. Calls are routed to a third-party national call center that receives your information, completes a tips information form, and then passes the information to the appropriate law enforcement agency. Caller ID tracking is not utilized by Crime Stoppers and conversations are not recorded. Crime Stoppers will pay a reward of $1,000 for information leading to the arrest of the person(s) responsible for this crime. Categories: Police Department Press Releases Tags: Beardsley Avenue , Champaign Police Investigating Tuesday Night Shooting , shots heard Subscribe to City News Read All City News News Releases General Construction Fire Department Police Department Department News City Council City Manager’s Office Equity and Engagement Department Finance Department Fire Department Human Resources Department Information Technologies Department Legal Department Library METCAD 9-1-1 Neighborhood Services Department Planning and Development Department Police Department Public Works Department The Champaign Insider City Newsletter City of Champaign City of Champaign 102 N. Neil St. Champaign, IL 61820 217-403-8700 Site Disclaimer I Privacy Policy Powered by Translate " -53,https://champaignil.gov/2012/04/05/champaign-police-officers-cook-with-%e2%80%9ckids-in-the-kitchen%e2%80%9d/,Media Bulletins,Agency-Published Resources,Champaign Police Officers Cook with “Kids in the Kitchen” - City of Champaign,"",200,403 Forbidden,"[""Champaign Police Officers Cook with “Kids in the Kitchen”""]","[""News Releases"", ""Department News""]",[],[],[],[],"skip to content City of Champaign Main Menu Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs Champaign Police Officers Cook with “Kids in the Kitchen” Search Posted on April 5, 2012 Police Officers spent the day participating in the “Kids in the Kitchen” event; a program aimed at educating young children about physical activity and nutrition. The theme for the event was “Everyday Heroes” which provided youth an opportunity to learn about how being physically fit helps police officers do their jobs well. The event was held at the Wesley Foundation on March 29, 2012. Categories: General Press Releases , Police Department News Subscribe to City News Read All City News News Releases General Construction Fire Department Police Department Department News City Council City Manager’s Office Equity and Engagement Department Finance Department Fire Department Human Resources Department Information Technologies Department Legal Department Library METCAD 9-1-1 Neighborhood Services Department Planning and Development Department Police Department Public Works Department The Champaign Insider City Newsletter City of Champaign City of Champaign 102 N. Neil St. Champaign, IL 61820 217-403-8700 Site Disclaimer I Privacy Policy City of Champaign Main Menu Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs City of Champaign Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works " -54,https://www.gurnee.il.us/government/departments/police-department/community-involvement/parking,Policies & Contracts,Info About Agencies,Parking,"",200," - Village of Gurnee -","[""Police Department""]","[""Parking on Village Streets""]","[""Village Hall""]",[],[],[],search edit file-word file-empty angle-left angle-right angle-up angle-down dollar calendar-check-o printer search2 briefcase circle-up circle-right circle-down circle-left share2 mail4 facebook twitter youtube file-pdf search edit file-word file-empty angle-left angle-right angle-up angle-down dollar calendar-check-o printer search2 briefcase circle-up circle-right circle-down circle-left share2 mail4 facebook twitter youtube file-pdf -55,https://www.ci.auburn.in.us/wp-content/uploads/2019/08/police-rad-class-2.jpg,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -56,https://delcopa.gov/treasurer/pdf/2021reassessmentvalues/25.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"404 - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert " -57,https://delcopa.gov/departments/liveworkplay.html,Not Criminal Justice Related,Not Criminal Justice Related,"Live, Work & Play - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Live, Work and Play in Delco, PA""]","[""Delco is a great place to live, work and play!""]","[""Live"", ""Work"", ""Play"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Live, Work and Play in Delco, PA Home / Live, Work and Play Delco is a great place to live, work and play! Live Diverse Population Population Demographics - County and by township Great K-12 Schools Access to world class Colleges and Universities Public Transportation Excellent Healthcare Work Doing Business in Delaware County Central Location Productive Workforce Business and Real Estate Incentives Access to Transportation Play Hiking and Biking Trails World Class Dining Historical Sites 6 County Parks and a Ridley Creek State Park Arts in Delco Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Live, Work and Play in Delco, PA Home / Live, Work and Play Live, Work and Play in Delco, PA Home / Live, Work and Play Live, Work and Play in Delco, PA Home / Live, Work and Play Delco is a great place to live, work and play! Live Diverse Population Population Demographics - County and by township Great K-12 Schools Access to world class Colleges and Universities Public Transportation Excellent Healthcare Work Doing Business in Delaware County Central Location Productive Workforce Business and Real Estate Incentives Access to Transportation Play Hiking and Biking Trails World Class Dining Historical Sites 6 County Parks and a Ridley Creek State Park Arts in Delco Delco is a great place to live, work and play! Live Diverse Population Population Demographics - County and by township Great K-12 Schools Access to world class Colleges and Universities Public Transportation Excellent Healthcare Work Doing Business in Delaware County Central Location Productive Workforce Business and Real Estate Incentives Access to Transportation Play Hiking and Biking Trails World Class Dining Historical Sites 6 County Parks and a Ridley Creek State Park Arts in Delco " -58,https://www.stcharlesil.gov/events/public-meetings/police-pension-board/10889,Policies & Contracts,Info About Agencies,"Police Pension Board 12/6/2017 | Events | City of St Charles, IL",Police Pension Board on 12/6/2017,200,"City of St. Charles, Illinois","[""City of St. Charles, Illinois"", ""Police Pension Board""]","[""You are here"", ""Committee/Commission"", ""View more events"", ""Documents on this site"", ""Accessibility"", ""Key Resources"", ""Connect With Us""]",[],[],[],[],"" -59,https://coloradosprings.gov/police-department/article/news/man-posing-realtor-arrested,Media Bulletins,Agency-Published Resources,Man Posing as Realtor Arrested | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""Man Posing as Realtor Arrested""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[],"" -60,https://police.greenvillesc.gov/160/services,Resources,Agency-Published Resources,"Services | Greenville, SC - Official Website",Explore the services that the Police Department provides to the City of Greenville.,200,"Police Department | Greenville, SC - Official Website","[""Services""]",[],"[""Loading""]","[""Animal Control"", ""FAQs"", ""GRAVITY"", ""Neighborhoods"", ""Heroes Softball Game"", ""Crime Prevention Services"", ""Hire an Officer"", ""Victim Services"", ""Community Care Program"", ""Citizens Academy"", ""Resources"", ""Pedestrian and Bicycle Safety"", ""Traffic Safety""]",[],[],"Skip to Main Content Careers About Us Divisions News Services I Want To... Search Home Departments Police Department Services Services 9 1 1 2 Animal Control Learn about animal and wildlife law within the city. FAQs Police Department frequently asked questions GRAVITY The GRAVITY program is designed to offer programs and support to at-risk youth of all ages. Neighborhoods Learn about GPD's community policing strategy. Heroes Softball Game Come to Fluor Field to cheer on your favorite heroes from the Greenville City Fire Department and Greenville Police Department, and support Shriners Children's Greenville by donating in their honor. Crime Prevention Services The Crime Prevention Unit promotes the prevention and deterrence of crime by providing information and preventative materials and works to enhance community involvement in the identification and resolution of criminal activity by the development, implementation and maintenance of community-oriented programs. Hire an Officer The city of Greenville hosts almost 200 event days a year, and all gatherings such as concerts, parades, races and festivals that take place on public property must be permitted through the City’s Public Information and Events Department. Victim Services Information for victims of violence, from the state of South Carolina Community Care Program The ElderCare program is a free service offered to those persons who need periodic contact to ensure their safety and security. Citizens Academy Learn about a free 12-week program designed to help citizens learn more about the Greenville Police Department. Resources Learn about the different services offered by the Police Department. Pedestrian and Bicycle Safety To ensure the safety of Greenville's pedestrians and cyclists, the Greenville Police Department strictly enforces all traffic laws. Traffic Safety Information on traffic safety. Animal Control Wildlife & Rabies Control FAQs GRAVITY Annual Officer Allen Jacobs Summer Camp Project Safe Neighborhoods Neighborhoods Heroes Softball Game Crime Prevention Services Auto Theft & Break-Ins SafeWatch Cameras Protecting Your Home Fraud and Identity Theft Resources Bicycle Registration Program Hire an Officer Victim Services Community Care Program Citizens Academy Citizens Police Academy Alumni Association Resources Domestic Violence Emergency Notifications Location Caution Request How To Get Involved Pedestrian and Bicycle Safety Traffic Safety my Neighborhood Become a Police Officer alarm registration compliments & complaints crime stoppers Emergency Notifications Contact Us | Accessibility | Web Policy and Copyright | Website by CivicPlus® City of Greenville, SC, Police Department | 4 McGee St., Greenville, SC 29601 | Police Non-Emergency: 864-271-5333 Back to Top Enable Google Translate " -61,https://cheswold.delaware.gov/cheswold-police-department-policy-and-procedure-manual/snow-energency-plan/,Policies & Contracts,Info About Agencies,Snow Energency Plan - Town of Cheswold,"",200,"Home - Town of Cheswold - Kent County, Delaware","[""Cheswold""]","[""Delaware"", ""Snow Energency Plan""]","[""Menu""]","[""Address:"", ""Call Us:"", ""Reach Out:""]",[],[],"Skip to Content Skip to Footer Toggle navigation Menu Government Mayor Town Council Boards & Commissions Departments Elections Meetings & Events Public Notices Past Minutes & Agendas Info Public Hearings Comprehensive Plan Ordinances Taxes & Fees Delinquent Tax List Forms Town Charter Flag Status Past Minutes & Agendas Resolutions Community About Our Town Cheswold Welcome Packet Cheswold’s Airport Cheswold Newsletter Churches & Houses of Worship Colleges & Universities Libraries Local Developments Public Schools News Police About the Cheswold Police Department Police Reports Chief’s Page Cheswold Police Officers Cheswold Police Department Policy Manual Civilian Complaint Packet Crime Statistics Cheswold Police Department – Yearly Traffic Statistics Informational Pamphlets and Forms Law Enforcement Links Most Wanted Police Contact Form Police Employment Police News Ride-A-Long Program Sex Offender List Vacation Check Requests Photo Galleries Contact Contact Us FOIA Form Skip to Content Skip to Footer Toggle navigation Menu Government Mayor Town Council Boards & Commissions Departments Elections Meetings & Events Public Notices Past Minutes & Agendas Info Public Hearings Comprehensive Plan Ordinances Taxes & Fees Delinquent Tax List Forms Town Charter Flag Status Past Minutes & Agendas Resolutions Community About Our Town Cheswold Welcome Packet Cheswold’s Airport Cheswold Newsletter Churches & Houses of Worship Colleges & Universities Libraries Local Developments Public Schools News Police About the Cheswold Police Department Police Reports Chief’s Page Cheswold Police Officers Cheswold Police Department Policy Manual Civilian Complaint Packet Crime Statistics Cheswold Police Department – Yearly Traffic Statistics Informational Pamphlets and Forms Law Enforcement Links Most Wanted Police Contact Form Police Employment Police News Ride-A-Long Program Sex Offender List Vacation Check Requests Photo Galleries Contact Contact Us FOIA Form Skip to Content Skip to Footer Toggle navigation Menu Government Mayor Town Council Boards & Commissions Departments Elections Meetings & Events Public Notices Past Minutes & Agendas Info Public Hearings Comprehensive Plan Ordinances Taxes & Fees Delinquent Tax List Forms Town Charter Flag Status Past Minutes & Agendas Resolutions Community About Our Town Cheswold Welcome Packet Cheswold’s Airport Cheswold Newsletter Churches & Houses of Worship Colleges & Universities Libraries Local Developments Public Schools News Police About the Cheswold Police Department Police Reports Chief’s Page Cheswold Police Officers Cheswold Police Department Policy Manual Civilian Complaint Packet Crime Statistics Cheswold Police Department – Yearly Traffic Statistics Informational Pamphlets and Forms Law Enforcement Links Most Wanted Police Contact Form Police Employment Police News Ride-A-Long Program Sex Offender List Vacation Check Requests Photo Galleries Contact Contact Us FOIA Form Cheswold Delaware Listen Snow Energency Plan Snow Energency Plan Cheswold Delaware Listen Snow Energency Plan Snow Energency Plan Listen Snow Energency Plan Snow Energency Plan Listen Snow Energency Plan Snow Energency Plan Listen Snow Energency Plan Snow Energency Plan Listen Address: 691 Main Street Cheswold, DE 19936 Call Us: (302) 734-6991 Reach Out: Contact Form FOIA Form Address: 691 Main Street Cheswold, DE 19936 Call Us: (302) 734-6991 Reach Out: Contact Form FOIA Form Address: 691 Main Street Cheswold, DE 19936 Call Us: (302) 734-6991 Reach Out: Contact Form FOIA Form " -62,http://boro.dormont.pa.us/labor-agreements/police_union_contract_-_extended/,Policies & Contracts,Info About Agencies,Police_Union_Contract_-_Extended | Borough of Dormont,"",200,Borough of Dormont | Home,"[""Police_Union_Contract_-_Extended""]",[],[],"[""Popular Resources"", ""Departments"", ""Resources""]",[],[],"1444 Hillsdale Avenue Pittsburgh, PA 15216 412-561-8900 Facebook X RSS Contact MENU MENU Home About Dormont History of Dormont Dormont Demographics Voter Information Bids & Proposals Geographical Information System (GIS) Job Postings Report an Issue – Access Dormont FAQs Public Transportation Directory Administration Meet the Mayor Borough Council Council Attendance/Voting Records Committees of Council Tax Collector Community Contact Listings Board & Commissions Human Relations Commission Safe Mobility Commission Animal Control Building & Zoning Department Code Enforcement Public Safety Police Helpful Links The D.A.R.E. Program Fees & Services Fire Department Medical Rescue Team South Area - MRTSA Access Dormont & Code Red – Emergency Notification System Public Safety/Public Service Announcements Government Meeting Agendas, Packets, Minutes, and Videos Agendas, Minutes, and Videos - Pre-September 2022 Dormont Borough Code Planning 2021-2026 Strategic Plan Safe Mobility Plan 2013 Strategic Plan Comprehensive Plan Finance Annual Financial Audits Budget Documents Fee Resolutions LGA Study Pension Plan Information Long-Range Financial Planning Warrant Lists Labor Agreements Stormwater Information Environmental Information Redevelopment Street Sweeping Garbage & Recycling 2024-2028 Garbage and Recycling Parks & Recreation Dormont Pool Doggie Dip Lifeguards Dormont Pool Season Passes Dormont Pool Party Rentals About Dormont Pool Dormont Street & Music Festival DSMF Entertainment and Performance Application Entertainment Vendors Dormont Summer Camp Summer Camp Staff Parks Recreation Rental Information Shared Streets Summer Block Party Information News & Information Breaking News Calendar of Events Community Links Newsletters Online Documents Select Page Police_Union_Contract_-_Extended Police_Union_Contract_-_Extended Popular Resources Calendar of Events 2024-2028 Garbage and Recycling Budget Documents Pay Parking Tickets Online Newsletters FAQs Access Dormont & Code Red – Emergency Notification System Online Documents Departments Administration Police Dept. Volunteer Fire Dept. Code Enforcement Building & Zoning Resources Breaking News Community Events Calendar of Events Community Links Online Documents Tweets by DormontBoro Facebook X RSS ©2018 Borough of Dormont | Web Design by GovUnity Websites 1444 Hillsdale Avenue Pittsburgh, PA 15216 412-561-8900 Facebook X RSS Contact 1444 Hillsdale Avenue Pittsburgh, PA 15216 412-561-8900 Facebook X RSS Contact 1444 Hillsdale Avenue Pittsburgh, PA 15216 412-561-8900 Facebook X RSS Contact " -63,https://coloradosprings.gov/police-department/article/news/motorcyclist-identified-austin-bluffs,Media Bulletins,Agency-Published Resources,Motorcyclist identified from Austin Bluffs Fatal Crash | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""Motorcyclist identified from Austin Bluffs Fatal Crash""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[],"" -64,https://www.osc.state.ny.us/state-agencies/payroll-bulletins/state-agencies/1923-police-benevolent-association-new-york-state-inc-pbanys-dues-increase,Misc Police Activity,Police & Public Interactions,State Agencies Bulletin No. 1923 | Office of the New York State Comptroller,State Agencies Bulletin No. 1923,200,Office of the New York State Comptroller | Thomas P. DiNapoli,"[""State Agencies Bulletin No. 1923"", """"]","[""Main navigation""]","[""How would you rate our website?""]","[""Disclaimer"", ""Purpose"", ""Affected Employees"", ""Effective Dates"", ""OSC Actions"", ""Agency Actions"", ""Questions"", ""Newsletter Sign-Up Confirmation"", ""Thank you for subscribing to the Comptroller's Weekly Newsletter!""]",[],[],"" -65,https://www.arlingtontx.gov/city_hall/departments/police/recruiting/internships,Resources,Agency-Published Resources,"","",404,"","","","","","","","" -66,https://www.coppelltx.gov/faq.aspx?qid=351,Not Criminal Justice Related,Not Criminal Justice Related,FAQs • Will the rate structure change result in additional r,"",200,"Coppell, TX | Official Website",[],"[""▼ Utility Billing - Rates & Increasing Block Rate Structure"", ""Contact a Plumber & Obtain a Permit""]","[""Categories"", ""Example: Customer A"", ""Example: Customer B"", ""Example: Customer C"", ""Live Edit"", ""Loading""]",[],[],[],Skip to Main Content -67,https://cityofpowell.us/police-agency/traffic-surveys/traffic-survey-report-1-3-18/,Misc Police Activity,Police & Public Interactions,"City of Powell, Ohio | Traffic Survey Report 1-3-18","",200,"City of Powell, Ohio","[""Traffic Survey Report 1-3-18""]","[""CONTACT INFO"", ""HELPFUL LINKS"", ""LET'S CONNECT""]","[""you're at home in Powell""]","[""614.885.5380"", ""47 Hall Street, Powell, OH 43065"", ""Signup for our newsletter""]",[],[],"Discover Annual Reports Community Maps Demographics DORA Historic Powell Library Public Parking Schools Visit Government Agendas & Minutes Boards & Commissions City Code City Council City Manager’s Office Departments Building Business & Economic Development City Clerk Communications Development Engineering Finance Parks & Recreation Public Service Police Legislation Monthly Reports Public Records Parks & Recreation Powell Parks Bike Paths Community Garden Online Class Registration Facility Rental Request Class Cancellations, Wait Lists & Inclement Weather Residents A to Z Guide Address Check Tool Driver’s License & Titles Homeowners’ Associations Services Christmas Tree Disposal Leaf Removal Snow and Ice Removal Street Trees Trash, Recycling, and Yard Waste Taxes Utilities Vacation House Watch Businesses Building Department Development Department Development Toolkit Greater Powell Chamber of Commerce Zoning Map Events Powell Festival Special Event Permit Designated Outdoor Refreshment Area (DORA) Safety Police Canine Unit Citizens Police Academy Community Oriented Policing Crash Reports Employment Resources Public Records Requests Services Traffic Surveys Fire Delco Alerts Vacation House Watch Discover Annual Reports Community Maps Demographics DORA Historic Powell Library Public Parking Schools Visit Government Agendas & Minutes Boards & Commissions City Code City Council City Manager’s Office Departments Building Business & Economic Development City Clerk Communications Development Engineering Finance Parks & Recreation Public Service Police Legislation Monthly Reports Public Records Parks & Recreation Powell Parks Bike Paths Community Garden Online Class Registration Facility Rental Request Class Cancellations, Wait Lists & Inclement Weather Residents A to Z Guide Address Check Tool Driver’s License & Titles Homeowners’ Associations Services Christmas Tree Disposal Leaf Removal Snow and Ice Removal Street Trees Trash, Recycling, and Yard Waste Taxes Utilities Vacation House Watch Businesses Building Department Development Department Development Toolkit Greater Powell Chamber of Commerce Zoning Map Events Powell Festival Special Event Permit Designated Outdoor Refreshment Area (DORA) Safety Police Canine Unit Citizens Police Academy Community Oriented Policing Crash Reports Employment Resources Public Records Requests Services Traffic Surveys Fire Delco Alerts Vacation House Watch Discover Annual Reports Community Maps Demographics DORA Historic Powell Library Public Parking Schools Visit Government Agendas & Minutes Boards & Commissions City Code City Council City Manager’s Office Departments Building Business & Economic Development City Clerk Communications Development Engineering Finance Parks & Recreation Public Service Police Legislation Monthly Reports Public Records Parks & Recreation Powell Parks Bike Paths Community Garden Online Class Registration Facility Rental Request Class Cancellations, Wait Lists & Inclement Weather Residents A to Z Guide Address Check Tool Driver’s License & Titles Homeowners’ Associations Services Christmas Tree Disposal Leaf Removal Snow and Ice Removal Street Trees Trash, Recycling, and Yard Waste Taxes Utilities Vacation House Watch Businesses Building Department Development Department Development Toolkit Greater Powell Chamber of Commerce Zoning Map Events Powell Festival Special Event Permit Designated Outdoor Refreshment Area (DORA) Safety Police Canine Unit Citizens Police Academy Community Oriented Policing Crash Reports Employment Resources Public Records Requests Services Traffic Surveys Fire Delco Alerts Vacation House Watch News Calendar Powell Festival Economic Development Careers Contact Translate Facebook Twitter LinkedIn Instagram Pinterest Vimeo " -68,https://www.bristolri.gov/departments/police/public-safety-services/police-detail-request/,Resources,Agency-Published Resources,"","",404,"","","","","","","","" -69,https://takomaparkmd.gov/government/police/crime-prevention/burglary-prevention/,Media Bulletins,Agency-Published Resources,Burglary Prevention | City of Takoma Park,"",200,City of Takoma Park | The City of Takoma Park,"[""Burglary Prevention""]","[""Crime Prevention & Safety Tips Sections""]",[],"[""Library Renovations: Updated: March 14, 2024 - Construction Moves to the Front of Community Center - Pedestrian Bridge Impacts"", ""Still looking? Try searching for what you need."", ""Still looking? Try searching for what you need."", ""Still looking? Try searching for what you need."", ""Still looking? Try searching for what you need."", ""Still looking? Try searching for what you need."", ""Still looking? Try searching for what you need.""]",[],"[""Government"", ""Services"", ""Initiatives"", ""News"", ""About Takoma Park"", ""Events & Meetings""]","Library Renovations: Updated: March 14, 2024 - Construction Moves to the Front of Community Center - Pedestrian Bridge Impacts The scheduling of demolition and construction timelines are pending weather. More Information Active Alerts Library Renovations: Updated: March 14, 2024 - Construction Moves to the Front of Community Center - Pedestrian Bridge Impacts The scheduling of demolition and construction timelines are pending weather. More Information Library Renovations: Updated: March 14, 2024 - Construction Moves to the Front of Community Center - Pedestrian Bridge Impacts The scheduling of demolition and construction timelines are pending weather. More Information Library Renovations: Updated: March 14, 2024 - Construction Moves to the Front of Community Center - Pedestrian Bridge Impacts The scheduling of demolition and construction timelines are pending weather. More Information Library Renovations: Updated: March 14, 2024 - Construction Moves to the Front of Community Center - Pedestrian Bridge Impacts The scheduling of demolition and construction timelines are pending weather. More Information Active Alerts " -70,https://fenwickisland.delaware.gov/comprehensive-plan/town-of-fenwick-island-fi-comp-plan_cleancopy_version6/,Not Criminal Justice Related,Not Criminal Justice Related,town-of-fenwick-island-fi-comp-plan_cleancopy_version6 - Fenwick Island,"",200,"Home - Fenwick Island - Sussex County, Delaware",[],"[""town-of-fenwick-island-fi-comp-plan_cleancopy_version6""]","[""Menu""]",[],[],[],Skip to Content Skip to Footer Toggle navigation Menu Government Town Council Town Code & Charter Board of Adjustment Planning Commission Overview Committees Meeting Minutes Taxes Elections FOIA Requests Career Opportunities Departments/Contact Administrative Staff Building Official (Code Enforcement and Building Permits) Finance Public Works Police Police Department Mission Statement FIPD Staff Community Programs Real Time Public Safety Notifications (CodeRED) Parking Permits Career Opportunities & Training Beach Patrol Community Visitors Residents Utilities Waste Collection Services Bonfires Special Events Resiliency & Flood Information Contact Us Skip to Content Skip to Footer Toggle navigation Menu Government Town Council Town Code & Charter Board of Adjustment Planning Commission Overview Committees Meeting Minutes Taxes Elections FOIA Requests Career Opportunities Departments/Contact Administrative Staff Building Official (Code Enforcement and Building Permits) Finance Public Works Police Police Department Mission Statement FIPD Staff Community Programs Real Time Public Safety Notifications (CodeRED) Parking Permits Career Opportunities & Training Beach Patrol Community Visitors Residents Utilities Waste Collection Services Bonfires Special Events Resiliency & Flood Information Contact Us Skip to Content Skip to Footer Toggle navigation Menu Government Town Council Town Code & Charter Board of Adjustment Planning Commission Overview Committees Meeting Minutes Taxes Elections FOIA Requests Career Opportunities Departments/Contact Administrative Staff Building Official (Code Enforcement and Building Permits) Finance Public Works Police Police Department Mission Statement FIPD Staff Community Programs Real Time Public Safety Notifications (CodeRED) Parking Permits Career Opportunities & Training Beach Patrol Community Visitors Residents Utilities Waste Collection Services Bonfires Special Events Resiliency & Flood Information Contact Us Listen town-of-fenwick-island-fi-comp-plan_cleancopy_version6 town-of-fenwick-island-fi-comp-plan_cleancopy_version6 << Mar 2024 >> S M T W T F S 25 26 27 28 29 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 2 3 4 5 6 Like Us on Facebook! Follow Us on Instagram! Newsletter Listen town-of-fenwick-island-fi-comp-plan_cleancopy_version6 town-of-fenwick-island-fi-comp-plan_cleancopy_version6 << Mar 2024 >> S M T W T F S 25 26 27 28 29 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 2 3 4 5 6 Like Us on Facebook! Follow Us on Instagram! Newsletter Listen town-of-fenwick-island-fi-comp-plan_cleancopy_version6 town-of-fenwick-island-fi-comp-plan_cleancopy_version6 << Mar 2024 >> S M T W T F S 25 26 27 28 29 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 2 3 4 5 6 Like Us on Facebook! Follow Us on Instagram! Newsletter -71,https://delcopa.gov/employment/jobpostings/deputydirector_workforcedevelopment.html,Not Criminal Justice Related,Not Criminal Justice Related,"Deputy Director Workforce Development - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Deputy Director Workforce Development""]",[],"[""Duties of Position"", ""QUALIFICATIONS / REQUIREMENTS"", ""Delco Jobs Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]","[""StrategicPlanning:"", ""Labor Market Data:"", ""Workforce System Oversight:"", ""Supervisory Responsibilities:"", ""Leadership"", ""Administrative:"", ""Contact""]",[],[],"" -72,https://alpha.austin.gov/en/police-oversight/formal-complaint-purpose-and-scope-24/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -73,https://coloradosprings.gov/police-department/article/news/cspd-asks-communitys-help-fatal-crash,Media Bulletins,Agency-Published Resources,CSPD Asks for the Community’s Help in Fatal Crash | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""CSPD Asks for the Community’s Help in Fatal Crash""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[],"" -74,http://www.longbeach.gov/police/press-releases/traffic-fatality-22-/,Media Bulletins,Agency-Published Resources,TRAFFIC FATALITY(22),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 6/21/2016 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: TRAFFIC FATALITY Contact: Media Relations Detail (562) 570-5273 On Monday, June 20, 2016, at approx. 9:55 p.m., officers were dispatched to 7th Street and Newport Avenue regarding an injury traffic collision between a motorcycle and a pick-up truck. When officers arrived, they discovered the motorcyclist lying unconscious in the roadway in front of the pick-up truck. Officers began performing lifesaving medical aid on the motorcyclist, however, he was determined deceased at the scene by Long Beach Fire Department paramedics. The preliminary investigation revealed that a 2000 Toyota Tacoma, being driven by a 70-year-old male resident of Long Beach, was travelling west on 7th Street and attempted to turn left on Newport Avenue, and collided with a 2008 Harley Davidson Sportster motorcycle. The motorcycle was travelling east and being driven by a 33-year-old male resident of Commerce. The motorcyclist’s identification is being withheld pending notification of next of kin. Anyone who may have information regarding this incident is asked to call Long Beach Police Department Collision Investigation Detail Detective Steve Fox at (562) 570-7355. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -75,https://delcopa.gov/publicrelations/releases/2021/covidtesting_darbyfeb3.html,Not Criminal Justice Related,Not Criminal Justice Related,"Delaware County Conducting Drive-Thru COVID-19 Testing in Darby during the Week of February 15 - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Delaware County Conducting Drive-Thru COVID-19 Testing in Darby during the Week of February 15""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Delaware County Conducting Drive-Thru COVID-19 Testing in Darby during the Week of February 15 Home / Departments / Public Relations Releases / Delaware County Conducting Drive-Thru COVID-19 Testing in Darby during the Week of February 15 Released: February 12, 2021 Delaware County will conduct public drive-thru COVID-19 testing at Mercy Fitzgerald Hospital in Darby from Monday, February 15 through Friday, February 19. Testing will be available for insured and uninsured individuals 12 years of age or older who live or work in Delaware County and have COVID-19 symptoms, were exposed to COVID-19, or are considered critical/essential workers. Individuals must pre-register at www.delcopa.gov/testing to receive a test. If you have health insurance, please bring your insurance card to the test site. However, there are no out-of-pocket costs or co-pays for COVID-19 testing. Masks or face coverings must be worn. COVID-19 test results typically take between 4-7 days. Additional testing information, including details regarding how to obtain faster results and the locations of additional public and private COVID-19 test sites, can be found on the link listed above. Please note: If you have a positive test result, you may be called by the Chester County Health Department Disease Investigation team to complete an investigation. Location: Mercy Fitzgerald Hospital 1500 Lansdowne Avenue Darby, PA 19023 Monday, Feb 15: 3 p.m. – 6 p.m. Tuesday, Feb 16: 1 p.m. – 6 p.m. Wednesday, Feb 17: 1 p.m. – 6 p.m. Thursday, Feb 18: 1 p.m. – 6 p.m. Friday, Feb 19: 3 p.m. – 6 p.m. Please note that testing will not be conducted at the US Army Reserve in Upland during this week. Residents can call Delaware County’s Department of Intercommunity Health at (610) 891-6129 with any questions regarding COVID-19 testing. For the latest vaccine information, visit delcopa.gov/covid . Public Relations Navigation Press Releases County Newsletter Use of County Facility Form Questions about COVID-19 vaccines? Please call the COVID-19 Call Center: 484-276-2100. Adrienne Marofsky, Director Government Center, 226A 201 W. Front St. Media, PA 19063 Phone: 610-891-4943 delcopr@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu " -76,https://raleighnc.gov/safety/police-administrative-services-division,Resources,Agency-Published Resources,Police Administrative Services Division | Raleighnc.gov,"",200,RaleighNC.gov | Raleighnc.gov,"[""Police Administrative Services Division""]","[""Main navigation"", ""Secondary"", ""Main navigation"", ""Share"", ""Contact"", ""Subscribe"", ""City of Raleigh/s social media accounts"", ""Select Language""]",[],[],[],[],"" -77,https://coloradosprings.gov/police-department/article/news/cspd-conduct-abandoned-or-out-compliance,Media Bulletins,Agency-Published Resources,CSPD to conduct Abandoned or Out of Compliance Vehicle Deployment | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""CSPD to conduct Abandoned or Out of Compliance Vehicle Deployment""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[],"" -78,https://es.carpinteriaca.gov/wp-content/uploads/2022/11/palms-copy-scaled.jpg,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -79,https://coloradosprings.gov/police-department/article/news/i-25-traffic-safety-deployment-after-stop,Media Bulletins,Agency-Published Resources,I-25 Traffic Safety Deployment- After the Stop | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""I-25 Traffic Safety Deployment- After the Stop""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[],"" -80,https://dccouncil.gov/judiciary-public-safety/copy-of-ag0-fy-2019-proposed-schedule-a-two-position-changes-1/,Annual & Monthly Reports,Info About Agencies,Copy of AG0 FY 2019 Proposed Schedule A (Two Position Changes)-1 • Council of the District of Columbia,"",200,Home • Council of the District of Columbia,"[""Copy of AG0 FY 2019 Proposed Schedule A (Two Position Changes)-1""]",[],[],[],[],[],"Federal Tax Counter: $1,297,934,697 What is this? Get Updates RSS Press Center facebook twitter youtube Council of the District of Columbia Hearings Calendar Legislation & Laws The Council Federal Tax Counter: $1,297,934,697 What is this? Get Updates RSS Press Center facebook twitter youtube Federal Tax Counter: $1,297,934,697 What is this? Get Updates RSS Press Center facebook twitter youtube Council of the District of Columbia Hearings Calendar Legislation & Laws The Council Council of the District of Columbia Copy of AG0 FY 2019 Proposed Schedule A (Two Position Changes)-1 October 10, 2018 Loading... Copy of AG0 FY 2019 Proposed Schedule A (Two Position Changes)-1 October 10, 2018 Loading... Loading... Loading... DC Council seal About the Council Open Government Register to Vote Council Updates Jobs Council Directory Privacy Policy Commemorative D.C. Flag Program Ethics Visit the Wilson Building facebook twitter youtube Council of the District of Columbia 1350 Pennsylvania Avenue, NW, Washington, D.C. 20004 © Copyright 2016, The Council of the District of Columbia. All rights reserved Council of the District of Columbia 1350 Pennsylvania Avenue, NW, Washington, D.C. 20004 © Copyright 2016, The Council of the District of Columbia. All rights reserved Search facebook twitter youtube Original text Rate this translation Your feedback will be used to help improve Google Translate Original text Rate this translation Your feedback will be used to help improve Google Translate Original text Original text Rate this translation Your feedback will be used to help improve Google Translate Rate this translation Your feedback will be used to help improve Google Translate Rate this translation Your feedback will be used to help improve Google Translate " -81,https://barnegatpolice.us/warrant-arrest-2/,Arrest Records,Police & Public Interactions,Warrant Arrest - Barnegat Township Police Department,"",200,Barnegat Township Police Department - Barnegat Township Police Department,"[""Warrant Arrest""]","[""Warrant Arrest""]","[""About the Author: BTPD"", ""Related Posts""]","[""Share This Story, Choose Your Platform!"", ""Robbery Arrest"", ""DWI Arrest"", ""DWI Arrest"", ""Robbery Investigation Leads to Multiple Arrests, Recovery of Handgun"", ""DWI Arrests"", ""Resources"", ""Directions"", ""Quick Links""]",[],[],"609-698-5000 Facebook Twitter Search for: Home FAQ About Us Accreditation Department Divisions Department History Mission and Values Professional Standards Recruiting Current News Neighborhood Policing Resources Contact Us Crime Reporting Contact Firearms Unit Contact Records Contact Traffic Safety Tip Line Go to... Home FAQ About Us Accreditation Department Divisions Department History Mission and Values Professional Standards Recruiting Current News Neighborhood Policing Resources Contact Us Crime Reporting Contact Firearms Unit Contact Records Contact Traffic Safety Tip Line Warrant Arrest Home / Current News / Warrant Arrest Previous Next Warrant Arrest On September 29th at 11:15am, Patrolman Nicholas Venuto arrested Brian Jerden, 38, of Hampton, PA on a $5,541 child support warrant issued by the Ocean County Sheriffs Department. Ptl. Venuto located Jerden on Anchor Rd after the department received an anonymous tip that Jerden was in that area. Jerden was lodged in the Ocean County Jail in default of bail. By BTPD | 2013-10-02T20:01:56+00:00 October 2nd, 2013 | Current News | 0 Comments Share This Story, Choose Your Platform! Facebook Twitter Reddit LinkedIn Tumblr Pinterest Vk Email About the Author: BTPD Related Posts Robbery Arrest Robbery Arrest DWI Arrest DWI Arrest DWI Arrest DWI Arrest Robbery Investigation Leads to Multiple Arrests, Recovery of Handgun Robbery Investigation Leads to Multiple Arrests, Recovery of Handgun DWI Arrests DWI Arrests Resources Barnegat Township Police Department 900 West Bay Avenue Barnegat, NJ 08005 609-698-5000 Directions Quick Links About Us Crime Reporting Resources Contact Us Tip Line Copyright 2018 Content, Barnegat Township Police Department | All Rights Reserved Copyright 2018 Website Design | Web Alliance International Agency, LLC. | All Rights Reserved Facebook Twitter " -82,https://www.mass.gov/doc/606-cmr-1500-clean-copy/download,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,Mass.gov,[],[],[],[],[],[],"" -83,https://training.detroitmi.gov/bn/departments/paulaisa-baibhaaga/detroit-police-department-shield-program/paraogaraama-ebam-saebaa,Poor Data Source,Poor Data Source,প্রোগ্রাম এবং সেবা | City of Detroit,"DPD SHIELD প্রোগ্রামটি বিভিন্ন শ্রোতাদের আলিঙ্গন করার জন্য ডিজাইন করা হয়েছে যেমন নিরাপত্তা পরিচালক, নিরাপত্তা ব্যবস্থাপক, সম্প্রদায়ের নেতা, ব্যবসায়িক নির্বাহী, ব্যবসার মালিক, শিক্ষাবিদ, বিশ্বাস-ভিত্তিক সম্প্রদায় এবং অন্যান্য যাদের নিজ নিজ কর্মীদের নিরাপত্তা নিশ্চিত করার দায়িত্ব রয়েছে। ব্যবসা বা প্রতিষ্ঠান। একটি সফল প্রোগ্রামের চাবিকাঠি এবং সেইসাথে আমাদের সম্প্রদায়গুলিকে সুরক্ষিত করা হল তথ্যের পারস্পরিক প্রবাহকে উত্সাহিত করা। DPD SHIELD প্রোগ্রাম তার অংশীদারদের অবগত এবং স্থিতিস্থাপক রাখতে গুরুত্বপূর্ণ সংস্থান এবং প্রশিক্ষণ প্রদান করে।",200,City of Detroit | Opportunity Rising,"[""প্রোগ্রাম এবং সেবা""]","[""Top Links"", ""Site Menu"", ""ডেট্রয়েট পুলিশ শিল্ড FAQs""]",[],"[""পরিচিতি"", ""ডিপার্টমেন্ট মেনু""]",[],[],"এটি প্রশিক্ষণের ওয়েবসাইট। বর্তমান তথ্যের জন্য অনুগ্রহ করে detroitmi.gov দেখুন Top Links Buses চাকরি পানি পে বিভাগ সরকার English Español Bengali العربية More অনুসন্ধান Site Menu MENU অনুসন্ধান বিভাগ BACK বিমানবন্দর, কোলম্যান এ। ইয়ং ইন্টারন্যাশনাল বিল্ডিং, সুরক্ষা প্রকৌশল ও পরিবেশ বিভাগ নাগরিক অধিকার, অন্তর্ভুক্তি ও সুযোগ বিভাগ গণপূর্ত বিভাগ আপিল ও শুনানি বিভাগ উদ্ভাবন ও প্রযুক্তি বিভাগ প্রতিবেশী বিভাগ ডেট্রয়েট বিল্ডিং অথরিটি আইন বিভাগ আবাসন ও পুনরুজ্জীবন বিভাগ চিফ ফিনান্সিয়াল অফিসারের অফিস ডেট্রয়েট পরিবহন বিভাগ ডেট্রয়েট ফায়ার ডিপার্টমেন্ট ডেট্রয়েট স্বাস্থ্য বিভাগ নির্বাচন পরিকল্পনা ও উন্নয়ন বিভাগ পানি ও নর্দমা ব্যবস্থা বিভাগ পার্ক এবং বিনোদন পুলিশ বিভাগ পেনশন বিভাগ পৌর পার্কিং বিভাগ মানব সম্পদ বিভাগ মিডিয়া সার্ভিস বিভাগ যুব সেবা সাধারণ পরিষেবা বিভাগ হোমল্যান্ড সিকিউরিটি অ্যান্ড ইমারজেন্সি ম্যানেজমেন্ট, ডেট্রয়েট সরকার BACK অডিটর জেনারেল অফিস কমিশন নগর পরিষদ ন্যায়পাল বোর্ড মহাপরিদর্শক অফিস মেয়রের কার্যালয় সিটি ক্লার্ক আদমশুমারি BACK আদমশুমারি কি? কেন আদমশুমারির বিষয়টি গুরুত্বপূর্ণ তুমি কিভাবে সাহায্য করতে পার আদমশুমারি সম্পদ আমি কিভাবে করবো BACK অনুদানের তথ্য পান অনুরোধ নথি আবেদন কিছু সন্ধান করুন ক্রয় চাকরীর জন্য সন্ধান করুন বা আবেদন করুন জরিমানা, বিল বা কর প্রদান করুন তথ্য অনুসন্ধান কর নিবন্ধন নিবন্ধন করুন পরিষেবা বা সহায়তার জন্য অনুরোধ করুন পারমিট বা শংসাপত্রের জন্য বা পুনর্নবীকরণের জন্য আবেদন করুন যুব প্রোগ্রামগুলি সন্ধান করুন লাইসেন্সের জন্য আবেদন করুন বা নবায়ন করুন শহরের সাথে ব্যবসা করুন সমস্যা রিপোর্ট করুন স্বেচ্ছাসেবক বাস চাকরি পে পানি ঘটনাবলী খবর নির্দেশিকা কাগজপত্র ফরম নীড়পাতা পুলিশ বিভাগ Detroit Police Department Shield Program প্রোগ্রাম এবং সেবা DPD SHIELD প্রোগ্রামটি বিভিন্ন শ্রোতাদের আলিঙ্গন করার জন্য ডিজাইন করা হয়েছে যেমন নিরাপত্তা পরিচালক, নিরাপত্তা ব্যবস্থাপক, সম্প্রদায়ের নেতা, ব্যবসায়িক নির্বাহী, ব্যবসার মালিক, শিক্ষাবিদ, বিশ্বাস-ভিত্তিক সম্প্রদায় এবং অন্যান্য যাদের নিজ নিজ কর্মীদের নিরাপত্তা নিশ্চিত করার দায়িত্ব রয়েছে। ব্যবসা বা প্রতিষ্ঠান। একটি সফল প্রোগ্রামের চাবিকাঠি এবং সেইসাথে আমাদের সম্প্রদায়গুলিকে সুরক্ষিত করা হল তথ্যের পারস্পরিক প্রবাহকে উত্সাহিত করা। DPD SHIELD প্রোগ্রাম তার অংশীদারদের অবগত এবং স্থিতিস্থাপক রাখতে গুরুত্বপূর্ণ সংস্থান এবং প্রশিক্ষণ প্রদান করে। ব্যক্তিগত অংশীদার সম্পদ ব্যক্তিগত অংশীদারদের জন্য সম্পদ পি বিশ্বাস-ভিত্তিক অংশীদার সম্পদ বিশ্বাস-ভিত্তিক অংশীদারদের জন্য সম্পদ সম্প্রদায় অংশীদার সম্পদ সম্প্রদায় অংশীদারদের জন্য সম্পদ CRASE প্রশিক্ষণের জন্য নিবন্ধন করুন CRASE প্রশিক্ষণের জন্য নিবন্ধন করুন সন্দেহজনক কার্যকলাপ রিপোর্ট সন্দেহজনক কার্যকলাপ রিপোর্ট পরিচিতি Detroit Shield Program (313) 596-2250 Detroit Public Safety Headquarters - 1301 3rd Street Detroit, MI 48226 Detroit Police Shield Detroit Police Shield Detroit Police Shield ডিপার্টমেন্ট মেনু ভিডিও কাগজপত্র ফরম প্রায়শই জিজ্ঞাসিত প্রশ্নাবলী DPD Shield CRASE PLAYING https://www.youtube.com/watch?v=OMAZQKFR4CQ DPD Shield CRASE PLAYING https://www.youtube.com/watch?v=4NJ4N6JXRMQ DHS 8 Signs PLAYING https://www.youtube.com/watch?v=j0It68YxLQQ&t=56s Alert ডেট্রয়েট পুলিশ শিল্ড FAQs নিউজলেটার সদস্যতা কপিরাইট 2001 - 2022 সিটি অফ ডেট্রয়েট দ্বারা সিটি অফ ডেট্রয়েটের ওয়েব সাইট সম্পর্কে তথ্যের জন্য, ওয়েব সম্পাদককে ইমেল করুন। সমস্ত উপাদান ডেট্রয়েট শহরের সম্পত্তি এবং শুধুমাত্র অনুমতির সাথে ব্যবহার করা যেতে পারে। গোপনীয়তা নীতি / দাবিত্যাগ আমাদের অনুসরণ করো টুইটার ফেসবুক ইউটিউব লিঙ্কডইন-ইন ইনস্টাগ্রাম ডেটা ডেট্রয়েট ডেট্রয়েটের ওপেন ডেটা পোর্টাল এটি প্রশিক্ষণের ওয়েবসাইট। বর্তমান তথ্যের জন্য অনুগ্রহ করে detroitmi.gov দেখুন এটি প্রশিক্ষণের ওয়েবসাইট। বর্তমান তথ্যের জন্য অনুগ্রহ করে detroitmi.gov দেখুন এটি প্রশিক্ষণের ওয়েবসাইট। বর্তমান তথ্যের জন্য অনুগ্রহ করে detroitmi.gov দেখুন এটি প্রশিক্ষণের ওয়েবসাইট। বর্তমান তথ্যের জন্য অনুগ্রহ করে detroitmi.gov দেখুন এটি প্রশিক্ষণের ওয়েবসাইট। " -84,https://www.mass.gov/info-details/audit-of-the-massachusetts-commission-on-the-status-of-women-objectives-scope-and-methodology,Not Criminal Justice Related,Not Criminal Justice Related,"Audit of the Massachusetts Commission on the Status of Women Objectives, Scope, and Methodology | Mass.gov",An overview of the purpose and process of auditing the Massachusetts Commission on the Status of Women.,200,Mass.gov,"[""Audit of the Massachusetts Commission on the Status of Women Objectives, Scope, and Methodology""]","[""Table of Contents for the audit, Audit of the Massachusetts Commission on the Status of Women (MCSW)"", ""Table of Contents"", ""Overview"", ""Commissioner Appointments"", ""Open Meeting Law Compliance"", ""Certification of Online Training Program Completion"", ""MCSW Regional Commission Bylaws"", ""Data Reliability"", ""Help Us Improve Mass.gov with your feedback""]",[],[],[],[],"" -85,http://www.longbeach.gov/police/press-releases/pursuit-with-traffic-fatality---3rd-street-and-temple-avenue/,Media Bulletins,Agency-Published Resources,PURSUIT WITH TRAFFIC FATALITY - 3RD STREET AND TEMPLE AVENUE,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -86,http://www.ryepolice.us/logs/police-logs-for-6-3-20-6-9-20,Daily Activity Logs,Info About Officers,Rye Police Department Police Logs for 6/3/20-6/9/20 - Rye Police Department,"",200,Rye Police Department Welcome to the Rye Police Department - Rye Police Department,"[""Police Logs for 6/3/20-6/9/20""]","[""Police Logs for 6/3/20-6/9/20""]","[""Navigation"", ""Follow Us"", ""Facebook"", ""Email Updates"", ""Storm Preparedness Guide""]",[],[],[], -87,http://www.ryepolice.us/logs/police-logs-for-11216-11816,Daily Activity Logs,Info About Officers,Rye Police Department Police Logs for 11/2/16-11/8/16 - Rye Police Department,"",200,Rye Police Department Welcome to the Rye Police Department - Rye Police Department,"[""Police Logs for 11/2/16-11/8/16""]","[""Police Logs for 11/2/16-11/8/16""]","[""Navigation"", ""Follow Us"", ""Facebook"", ""Email Updates"", ""Storm Preparedness Guide""]",[],[],[], -88,https://delcopa.gov/sheriff/pdf/atf_letter.pdf,Media Bulletins,Agency-Published Resources,"","",200,"","","","","","","","" -89,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/arrests/010322arrests.pdf,Arrest Records,Police & Public Interactions,"","",404,"","","","","","","","" -90,https://www.sandiego.gov/department-document/police-investigate-homicide-lincoln-park-0,Media Bulletins,Agency-Published Resources,Police Investigate Homicide In Lincoln Park | City of San Diego Official Website,"",200,City of San Diego Official Website,"[""City of San Diego Official Website""]","[""Main navigation"", ""Leisure"", ""Resident Resources"", ""Doing Business"", ""Library"", ""Public Safety"", ""City Hall"", ""Police Investigate Homicide In Lincoln Park"", ""Footer"", ""Accessibility Tools""]",[],"[""Parks"", ""Outdoors"", ""Neighborhoods"", ""Recreational Activities"", ""Street Maintenance"", ""Plan"", ""Fix"", ""Build"", ""Programs & Events"", ""Services"", ""Kids & Teens"", ""eCollection"", ""Police"", ""Fire-Rescue"", ""Lifeguards"", ""City Officials"", ""City Government""]",[],[],"" -91,https://alpha.austin.gov/es/police-oversight/2020-08-26-2/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -92,https://wyoming.delaware.gov/police-department/irma/,Poor Data Source,Poor Data Source,Irma - Town of Wyoming,"",200,Home - Town of Wyoming - Kent County Delaware,"[""Wyoming""]","[""Delaware"", ""Irma""]","[""Menu"", ""Contact Us""]",[],[],[],"Skip to Content Skip to Footer Toggle navigation Menu Government Town Council Town Staff Budgets Ordinances Charter Meetings & Events Past Minutes & Agendas Committees Planning & Zoning Water & Sewer Board of Adjustments Peach Festival Info Emergency Services Police Department Fire Department Building Inspection License Applications & Permits Forms Public Notice Street Sweeping Schedule Trash and Recycling Schedule Important Links Community Town Life History Park Reservations Wyoming Park Local Organizations Photo Gallery Newsletter News Meetings & Events Contact Us Contact Information Contact Form FOIA Form Skip to Content Skip to Footer Toggle navigation Menu Government Town Council Town Staff Budgets Ordinances Charter Meetings & Events Past Minutes & Agendas Committees Planning & Zoning Water & Sewer Board of Adjustments Peach Festival Info Emergency Services Police Department Fire Department Building Inspection License Applications & Permits Forms Public Notice Street Sweeping Schedule Trash and Recycling Schedule Important Links Community Town Life History Park Reservations Wyoming Park Local Organizations Photo Gallery Newsletter News Meetings & Events Contact Us Contact Information Contact Form FOIA Form Skip to Content Skip to Footer Toggle navigation Menu Government Town Council Town Staff Budgets Ordinances Charter Meetings & Events Past Minutes & Agendas Committees Planning & Zoning Water & Sewer Board of Adjustments Peach Festival Info Emergency Services Police Department Fire Department Building Inspection License Applications & Permits Forms Public Notice Street Sweeping Schedule Trash and Recycling Schedule Important Links Community Town Life History Park Reservations Wyoming Park Local Organizations Photo Gallery Newsletter News Meetings & Events Contact Us Contact Information Contact Form FOIA Form Town Hall will be closed Friday March 29, 2024 in observance of Good Friday. Office will reopen on Monday April 1st. More Info Wyoming Delaware Listen Irma Wyoming Delaware Listen Irma Listen Irma Listen Irma Listen Irma Listen Contact Us Phone Icon for Town Hall Phone Number (302) 697-2966 Map Marker Icon for Town Hall Directions 120 W. Camden Wyoming Ave. Wyoming, DE 19934 Envelope Icon for Contacting Town Hall Contact Form FOIA Form Facebook Icon Like Us Original design and concept by the Delaware GIC Copyright © 2024 Government Information Center Contact Us Phone Icon for Town Hall Phone Number (302) 697-2966 Map Marker Icon for Town Hall Directions 120 W. Camden Wyoming Ave. Wyoming, DE 19934 Envelope Icon for Contacting Town Hall Contact Form FOIA Form Facebook Icon Like Us Original design and concept by the Delaware GIC Copyright © 2024 Government Information Center Phone Icon for Town Hall Phone Number (302) 697-2966 Map Marker Icon for Town Hall Directions 120 W. Camden Wyoming Ave. Wyoming, DE 19934 Envelope Icon for Contacting Town Hall Contact Form FOIA Form Facebook Icon Like Us Original design and concept by the Delaware GIC Copyright © 2024 Government Information Center Phone Icon for Town Hall Phone Number (302) 697-2966 Map Marker Icon for Town Hall Directions 120 W. Camden Wyoming Ave. Wyoming, DE 19934 Envelope Icon for Contacting Town Hall Contact Form FOIA Form Facebook Icon Like Us " -93,http://www.princetoniowa.us/chapter-30---police-department.html,Resources,Agency-Published Resources,CHAPTER 30 - Police Department,"",200,Home,[],"[""Return to Table of Contents""]",[],[],[],[],WELCOME TO PRINCETON ON THE MISSISSIPPI Home City Services and Government Agendas and Minutes Community Resources Employment Opportunities Online Payments Calendar History Contact Us Aging and Senior Care Resources Return to Table of Contents Proudly powered by Weebly Home City Services and Government Agendas and Minutes Community Resources Employment Opportunities Online Payments Calendar History Contact Us Aging and Senior Care Resources Back City Services and Government City Staff Mayor and Council Boards and Committees Committee Meeting Times Board of Adjustments Annual City Budget Proposals Summer Fest City Code Zoning City Forms and Permits City Hall Police Department Fire Department Princeton Community Visioning Project Back Agendas and Minutes City Council Minutes Council Meeting Agendas Back Community Resources Community Center Library Parks Churches Businesses Schools WELCOME TO PRINCETON ON THE MISSISSIPPI WELCOME TO PRINCETON ON THE MISSISSIPPI Home City Services and Government Agendas and Minutes Community Resources Employment Opportunities Online Payments Calendar History Contact Us Aging and Senior Care Resources Return to Table of Contents Proudly powered by Weebly Home City Services and Government Agendas and Minutes Community Resources Employment Opportunities Online Payments Calendar History Contact Us Aging and Senior Care Resources Return to Table of Contents Home City Services and Government Agendas and Minutes Community Resources Employment Opportunities Online Payments Calendar History Contact Us Aging and Senior Care Resources Return to Table of Contents Return to Table of Contents Return to Table of Contents Return to Table of Contents Return to Table of Contents Return to Table of Contents Return to Table of Contents Proudly powered by Weebly Proudly powered by Weebly Proudly powered by Weebly Proudly powered by Weebly Home City Services and Government Agendas and Minutes Community Resources Employment Opportunities Online Payments Calendar History Contact Us Aging and Senior Care Resources Back City Services and Government City Staff Mayor and Council Boards and Committees Committee Meeting Times Board of Adjustments Annual City Budget Proposals Summer Fest City Code Zoning City Forms and Permits City Hall Police Department Fire Department Princeton Community Visioning Project Back Agendas and Minutes City Council Minutes Council Meeting Agendas Back Community Resources Community Center Library Parks Churches Businesses Schools Home City Services and Government Agendas and Minutes Community Resources Employment Opportunities Online Payments Calendar History Contact Us Aging and Senior Care Resources Back City Services and Government City Staff Mayor and Council Boards and Committees Committee Meeting Times Board of Adjustments Annual City Budget Proposals Summer Fest City Code Zoning City Forms and Permits City Hall Police Department Fire Department Princeton Community Visioning Project Back Agendas and Minutes City Council Minutes Council Meeting Agendas Back Community Resources Community Center Library Parks Churches Businesses Schools -94,https://rexburg.us/police-identify-man-who-died-in-shooting-at-taylorsville-apartment-complex/,Poor Data Source,Poor Data Source,"","",522,"","","","","","","","" -95,https://bouldercolorado.gov/news/boulder-police-searching-additional-victims-witnesses-investigation,Media Bulletins,Agency-Published Resources,"Boulder Police Searching for Additional Victims, Witnesses in Investigation | City of Boulder","",200,Home | City of Boulder,"[""Boulder Police Searching for Additional Victims, Witnesses in Investigation""]","[""Breadcrumb"", ""Details"", ""Keep Reading""]","[""Body of Unidentified White Male Found in Boulder Creek, No Indications of Foul Play"", ""Boulder Police Department Seeks New Volunteers to Become Victim Advocates"", ""Boulder Police Investigating Fatal Traffic Crash"", ""Boulder Police Release More Information About Dog Attack""]",[],[],[],"Calendar Jobs Contact Us Search English 繁體中文 Français Deutsch 한국어 Русский Español नेपाली en Locations Services Projects Government News Toggle Menu City of Boulder Locations Services Projects Government News Calendar Jobs Contact Us Search Breadcrumb Home News Boulder Police Searching for Additional Victims, Witnesses in Investigation Image Details Dionne Waugh, Media Relations, 303-518-1894 waughd@bouldercolorado.gov Published Date Sep 29, 2022 Boulder Police Searching for Additional Victims, Witnesses in Investigation BOULDER, Colo. – The Boulder Police Department is seeking more information from the community regarding an ongoing investigation. Boulder Police detectives are looking for more information, including possible witnesses and victims, who may have had interactions with Ilir ""Jack"" Sokolaj. Sokolaj has worked at Brooklyn Pizza, located at 1647 Arapahoe Road, on and off since 2018. During that time, he had numerous contacts with students from Boulder High School. During the summer of 2019, Sokolaj, then 19 years old, engaged in sexual acts with girls who were 14 years old. He was arrested in May 2022 on one count of Sexual Assault on a Child, one count of Internet Exploitation of a Child, and one count of Unlawful Sexual Contact stemming from this investigation and is currently awaiting trial. Anyone who has any information related to this investigation or other possible incidents is asked to call Detective Flynn at 303-441-1850 reference case 21-08531. As in every criminal case, these charges are an accusation, and the defendant is presumed innocent unless or until proven guilty. . Keep Reading Body of Unidentified White Male Found in Boulder Creek, No Indications of Foul Play March 22, 2024 Boulder Police Department Seeks New Volunteers to Become Victim Advocates March 5, 2024 Boulder Police Investigating Fatal Traffic Crash February 7, 2024 Boulder Police Release More Information About Dog Attack January 29, 2024 Calendar Locations Services News Government Accessibility 1777 Broadway Boulder , CO 80302 Contact Us YouTube Twitter Facebook Instagram LinkedIn Nextdoor © 2024 City of Boulder. All Rights Reserved. Privacy Policy " -96,https://www.villageofallouezwi.gov/depts/police/prescription-drug-collections/,Resources,Agency-Published Resources,Prescription Drug Collection - Allouez WI,See a list of ongoing collection sites. Proper disposal of prescription drug collections is necessary to insure the drugs are completely destroyed.,200,403 Forbidden,"[""Prescription Drug Collections""]","[""Preparing Items for Drop Off"", ""Alternative Medication Drop Off Sites"", ""Public Safety Forms""]",[],"[""Allouez Village Hall"", ""How to Package Items for Drop Off"", ""Collected"", ""Not Collected"", ""PUBLIC SAFETY PAGES"", ""POLICE DEPARTMENT"", ""FIRE DEPARTMENT"", ""House Check Request""]","[""Subscribe to Village Updates""]",[],"" -97,https://www.southamptontownnypolice.gov/439/southampton-shinnecock-hills-tuckahoe-ca,Resources,Agency-Published Resources,"Southampton / Shinnecock Hills / Tuckahoe CAC | Southampton, NY - Official Website",Find out more about the Southampton / Shinnecock Hills / Tuckahoe Citizen Advisory Committee.,200,"Police | Southampton, NY - Official Website","[""Southampton / Shinnecock Hills / Tuckahoe CAC""]","[""Meetings"", ""Members""]","[""Site Tools"", ""Quick Links"", ""Contact Us"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Government Town Services Community Info How Do I Translate Page Site Tools Home My Account Printer Friendly Email Page Contact Us RSS Site Map Translate Page Notifications Documents Search Home Government Boards & Committees Advisory Boards & Committees Citizen Advisory Committees Southampton / Shinnecock Hills / Tuckahoe CAC Southampton / Shinnecock Hills / Tuckahoe CAC Meetings 6:30 p.m. First Tuesday of each month Cooper Hall at Roger’s Memorial Library 91 Coopers Farm Rd, Southampton, NY Members Elaine Bodtmann - Co-Chair Peter Callos John Cerrato - Co-Chair Christopher Deveau Lorraine Duryea - Co-Chair Janice Eaton Debbie Harrington Susan Manley Renee Morrison Theresa Romano Each member serves a one-year term. Quick Links Hamlets Master Plans News & Events Town Code Town Studies & Reports View All /QuickLinks.aspx CAC Minutes Town Clerk Meetings, Agendas & Minutes Pay Your Taxes Online Services Applications, Forms & Fees Notify Me® FOIL Requests Contact Us Town of Southampton 116 Hampton Road Southampton, NY 11968 Phone: 631-283-6000 Banner photo credit: robertseifertphotography.com Site Links Contact Us Site Map Accessibility Copyright Notices Intranet Job Opportunities Title VI Non-discrimination Policy /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Government Town Services Community Info How Do I Translate Page Site Tools Home My Account Printer Friendly Email Page Contact Us RSS Site Map Translate Page Notifications Documents Search Home Government Boards & Committees Advisory Boards & Committees Citizen Advisory Committees Southampton / Shinnecock Hills / Tuckahoe CAC Southampton / Shinnecock Hills / Tuckahoe CAC Meetings 6:30 p.m. First Tuesday of each month Cooper Hall at Roger’s Memorial Library 91 Coopers Farm Rd, Southampton, NY Members Elaine Bodtmann - Co-Chair Peter Callos John Cerrato - Co-Chair Christopher Deveau Lorraine Duryea - Co-Chair Janice Eaton Debbie Harrington Susan Manley Renee Morrison Theresa Romano Each member serves a one-year term. Quick Links Hamlets Master Plans News & Events Town Code Town Studies & Reports View All /QuickLinks.aspx CAC Minutes Town Clerk Meetings, Agendas & Minutes Pay Your Taxes Online Services Applications, Forms & Fees Notify Me® FOIL Requests Contact Us Town of Southampton 116 Hampton Road Southampton, NY 11968 Phone: 631-283-6000 Banner photo credit: robertseifertphotography.com Site Links Contact Us Site Map Accessibility Copyright Notices Intranet Job Opportunities Title VI Non-discrimination Policy /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... " -98,https://cityofpowell.us/powell-police-officer-audrey-wilt-named-2022-cit-officer-of-the-year-by-delaware-morrow-mental-health-recovery-services-board/hrytzikwilt22citofficeroftheyear/,Poor Data Source,Poor Data Source,"City of Powell, Ohio | HrytzikWilt22CITOfficeroftheYear","",200,"City of Powell, Ohio","[""HrytzikWilt22CITOfficeroftheYear""]","[""CONTACT INFO"", ""HELPFUL LINKS"", ""LET'S CONNECT""]","[""you're at home in Powell""]","[""614.885.5380"", ""47 Hall Street, Powell, OH 43065"", ""Signup for our newsletter""]",[],[],"Discover Annual Reports Community Maps Demographics DORA Historic Powell Library Public Parking Schools Visit Government Agendas & Minutes Boards & Commissions City Code City Council City Manager’s Office Departments Building Business & Economic Development City Clerk Communications Development Engineering Finance Parks & Recreation Public Service Police Legislation Monthly Reports Public Records Parks & Recreation Powell Parks Bike Paths Community Garden Online Class Registration Facility Rental Request Class Cancellations, Wait Lists & Inclement Weather Residents A to Z Guide Address Check Tool Driver’s License & Titles Homeowners’ Associations Services Christmas Tree Disposal Leaf Removal Snow and Ice Removal Street Trees Trash, Recycling, and Yard Waste Taxes Utilities Vacation House Watch Businesses Building Department Development Department Development Toolkit Greater Powell Chamber of Commerce Zoning Map Events Powell Festival Special Event Permit Designated Outdoor Refreshment Area (DORA) Safety Police Canine Unit Citizens Police Academy Community Oriented Policing Crash Reports Employment Resources Public Records Requests Services Traffic Surveys Fire Delco Alerts Vacation House Watch Discover Annual Reports Community Maps Demographics DORA Historic Powell Library Public Parking Schools Visit Government Agendas & Minutes Boards & Commissions City Code City Council City Manager’s Office Departments Building Business & Economic Development City Clerk Communications Development Engineering Finance Parks & Recreation Public Service Police Legislation Monthly Reports Public Records Parks & Recreation Powell Parks Bike Paths Community Garden Online Class Registration Facility Rental Request Class Cancellations, Wait Lists & Inclement Weather Residents A to Z Guide Address Check Tool Driver’s License & Titles Homeowners’ Associations Services Christmas Tree Disposal Leaf Removal Snow and Ice Removal Street Trees Trash, Recycling, and Yard Waste Taxes Utilities Vacation House Watch Businesses Building Department Development Department Development Toolkit Greater Powell Chamber of Commerce Zoning Map Events Powell Festival Special Event Permit Designated Outdoor Refreshment Area (DORA) Safety Police Canine Unit Citizens Police Academy Community Oriented Policing Crash Reports Employment Resources Public Records Requests Services Traffic Surveys Fire Delco Alerts Vacation House Watch Discover Annual Reports Community Maps Demographics DORA Historic Powell Library Public Parking Schools Visit Government Agendas & Minutes Boards & Commissions City Code City Council City Manager’s Office Departments Building Business & Economic Development City Clerk Communications Development Engineering Finance Parks & Recreation Public Service Police Legislation Monthly Reports Public Records Parks & Recreation Powell Parks Bike Paths Community Garden Online Class Registration Facility Rental Request Class Cancellations, Wait Lists & Inclement Weather Residents A to Z Guide Address Check Tool Driver’s License & Titles Homeowners’ Associations Services Christmas Tree Disposal Leaf Removal Snow and Ice Removal Street Trees Trash, Recycling, and Yard Waste Taxes Utilities Vacation House Watch Businesses Building Department Development Department Development Toolkit Greater Powell Chamber of Commerce Zoning Map Events Powell Festival Special Event Permit Designated Outdoor Refreshment Area (DORA) Safety Police Canine Unit Citizens Police Academy Community Oriented Policing Crash Reports Employment Resources Public Records Requests Services Traffic Surveys Fire Delco Alerts Vacation House Watch News Calendar Powell Festival Economic Development Careers Contact Translate Facebook Twitter LinkedIn Instagram Pinterest Vimeo " -99,https://southamptontownnypolice.gov/1702/lake-agawam--injection-well-prb-sh-villa,Not Criminal Justice Related,Not Criminal Justice Related,"Lake Agawam- Injection Well PRB (SH Village) | Southampton, NY - Official Website","",200,"Police | Southampton, NY - Official Website","[""Lake Agawam- Injection Well PRB (SH Village)""]",[],"[""Site Tools"", ""Contact Us"", ""Site Links"", ""Loading""]","[""Summary Sheet"", ""WQIPP - Fund Application""]",[],[],"Skip to Main Content EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Government Town Services Community Info How Do I Translate Page Site Tools Home My Account Printer Friendly Email Page Contact Us RSS Site Map Translate Page Notifications Documents Search Home Government Departments Community Preservation Fund (CPF) WQIPP - Plan/Checklist/App 2022 WQIP - Applications & Proposal Summaries Lake Agawam- Injection Well PRB (SH Village) Lake Agawam- Injection Well PRB (SH Village) Summary Sheet Lake Agawam Injection Well-Sheet-2022 WQIPP - Fund Application Lake Agawam- Injection Well PRB (SH Village) - Application Submitted Lake Agawam- Injection Well PRB (SH Village) - Site Plans Submitted Old Town Pond Watershed Bioswales (SH Village) Phillips Pond Watershed Bioswales (SH Village) Wickapogue Pond Watershed Bioswales (SH Village) Lake Agawam Stormwater - Trustees Armin and Judy Calissa Restaurant Peconic Land Trust Bridge Gardens Quogue Wildlife Refuge Constructed Wetland Riverside Sewer System Sag Harbor - Sewer Expansion (Sewersheds K & L) Harbour House (Library Avenue Owners Corp.) Lake Agawam Algae Harvesting Phase - (SH Village) Mecox Bay Inlet - Trustees Old Town Pond Dredging (SH Village) Sagaponack Pond Aquatic Habitat Restoration - Trustees Emma Elliston Park - Rain Gardens (SH Town) Lake Agawam- Injection Well PRB (SH Village) Poxabogue Pond-Groundwater Seepage and Nutrient Input West Main Street Bioswale (SH Village) Town Clerk Meetings, Agendas & Minutes Pay Your Taxes Online Services Applications, Forms & Fees Notify Me® FOIL Requests Contact Us Town of Southampton 116 Hampton Road Southampton, NY 11968 Phone: 631-283-6000 Banner photo credit: robertseifertphotography.com Site Links Contact Us Site Map Accessibility Copyright Notices Intranet Job Opportunities Title VI Non-discrimination Policy /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate " -100,https://www.mass.gov/event/jlmc-17-6105-watertown-police-association-3a-hearing-open-meeting-notice-05-09-2018-2018-05-09t100000-0400-2018-05-09t170000-0400,Misc Police Activity,Police & Public Interactions,JLMC-17-6105 Watertown Police Association 3(A) Hearing Open Meeting Notice 05-09-2018 | Mass.gov,JLMC-17-6105 Watertown Police Association 3(A) Hearing Open Meeting Notice 05-09-2018,200,Mass.gov,"[""JLMC-17-6105 Watertown Police Association 3(A) Hearing Open Meeting Notice 05-09-2018""]","[""Address"", ""Overview of JLMC-17-6105 Watertown Police Association 3(A) Hearing Open Meeting Notice 05-09-2018"", ""Additional Resources for JLMC-17-6105 Watertown Police Association 3(A) Hearing Open Meeting Notice 05-09-2018"", ""Help Us Improve Mass.gov with your feedback""]",[],[],[],[],"" -101,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/090721blotter.pdf,Calls for Service,Police & Public Interactions,"","",404,"","","","","","","","" -102,https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/blotter/012222blotter.pdf,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -103,https://www.coppelltx.gov/939/events-activities,Not Criminal Justice Related,Not Criminal Justice Related,"Events & Activities | Coppell, TX","",200,"Coppell, TX | Official Website","[""Events & Activities""]","[""Register for Classes!"", ""ADA Notice""]","[""How to Register for Classes"", ""Loading""]",[],[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search About Us Parks & Trails Facilities Rentals Activities Home Government City Departments Community Experiences Facilities Senior & Community Center at Grapevine Springs Events & Activities Events & Activities Register for Classes! Stay active with C oppell Community Experiences classes and other programs! From sports and fitness, to environmental education and creative arts, we offer fun for all ages and interests. Take a look at our Winter/Spring 2024 Activity Guide , which features classes for all ages (including seniors!) in one guide, and register for a class. ( Click to view the accessible catalog ) How to Register for Classes Go to coppellactivities.com If you don't have one, create a new account! Find your activity and Add to Cart . Proceed to Checkout to complete your transaction. A receipt will be emailed to you. ADA Notice The City of Coppell acknowledges its responsibility to comply with the Americans with Disabilities Act of 1990. Thus, in order to assist individuals with disabilities who require special services (i.e. sign interpretative services, alternative audio/visual devices, and amanuenses) for participation in or access to the City of Coppell sponsored public programs, services, and/or meetings, the City requests that individuals makes requests for these services seventy-two (72) hours – three (3) business days ahead of the scheduled program, service, and/or meeting. To make arrangements, contact Kori Allen, ADA Coordinator, or other designated official at 972-462-0022, or (TDD 1-800-RELAY, TX 1-800-735-2989). Rentals Events & Activities Agendas & Minutes Alert Sign-Up Citizen Report E-News Pay Water Bill Permits 255 E. Parkway Blvd., P.O. Box 9478, Coppell, TX 75019 Phone: 972-462-0022 | Email us Site Map Contact Us Accessibility Copyright Notices Privacy Policy Employee Login /QuickLinks.aspx Government Websites by CivicPlus® " -104,https://alpha.austin.gov/es/police-oversight/temporary-suspension-of-officer-william-norrell/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -105,https://alpha.austin.gov/police-oversight/2020-08-17-9/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -106,https://bouldercolorado.gov/news/police-chief-maris-herold-op-ed-police-reform,Media Bulletins,Agency-Published Resources,Police Chief Maris Herold Op-Ed on Police Reform | City of Boulder,"",200,Home | City of Boulder,"[""Police Chief Maris Herold Op-Ed on Police Reform""]","[""Breadcrumb"", ""Details"", ""Holistic governance is key to police reform"", ""Keep Reading""]","[""Body of Unidentified White Male Found in Boulder Creek, No Indications of Foul Play"", ""Boulder Police Department Seeks New Volunteers to Become Victim Advocates"", ""Boulder Police Investigating Fatal Traffic Crash"", ""Boulder Police Release More Information About Dog Attack""]",[],[],[],"" -107,https://ose.louisiana.gov/event/police-communications-officer-20/,Poor Data Source,Poor Data Source,Police Communications Officer | Louisiana Office of State Examiner,"",200,403 Forbidden,"["""", ""Police Communications Officer""]",[],"[""Competitive Level""]",[],[],"[""Recent Posts"", ""Archives"", ""Categories"", ""Meta""]","Search Search Search Search Personnel Action Form About Testing & Employment Eligibility Lists Jurisdictions Resources Contact ADA Testing Accommodations Statewide Testing This event has passed. Police Communications Officer Competitive Level Posting Period 07/23/2020 - 08/23/20 Application Deadline 08/23/20 Jurisdiction Baton Rouge Application Search Recent Posts Holiday Closures Archives June 2023 Categories Uncategorized Meta Log in Entries feed Comments feed WordPress.org Sign Up for Updates Δ 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Privacy Policy Facebook Copyright © 2024 Office of State Examiner Site by Gatorworks. Search Personnel Action Form About Testing & Employment Eligibility Lists Jurisdictions Resources Contact ADA Testing Accommodations Statewide Testing Search Personnel Action Form Search Search Search Personnel Action Form This event has passed. Police Communications Officer Competitive Level Posting Period 07/23/2020 - 08/23/20 Application Deadline 08/23/20 Jurisdiction Baton Rouge Application Search Recent Posts Holiday Closures Archives June 2023 Categories Uncategorized Meta Log in Entries feed Comments feed WordPress.org This event has passed. Police Communications Officer Competitive Level Posting Period 07/23/2020 - 08/23/20 Application Deadline 08/23/20 Jurisdiction Baton Rouge Application Search Recent Posts Holiday Closures Archives June 2023 Categories Uncategorized Meta Log in Entries feed Comments feed WordPress.org This event has passed. Police Communications Officer Competitive Level Posting Period 07/23/2020 - 08/23/20 Application Deadline 08/23/20 Jurisdiction Baton Rouge Application This event has passed. Police Communications Officer Competitive Level Posting Period 07/23/2020 - 08/23/20 Application Deadline 08/23/20 Jurisdiction Baton Rouge Application This event has passed. Police Communications Officer Competitive Level Posting Period 07/23/2020 - 08/23/20 Application Deadline 08/23/20 Jurisdiction Baton Rouge Application This event has passed. Police Communications Officer Competitive Level Competitive Level Competitive Level Posting Period 07/23/2020 - 08/23/20 Application Deadline 08/23/20 Jurisdiction Baton Rouge Posting Period 07/23/2020 - 08/23/20 Application Deadline 08/23/20 Jurisdiction Baton Rouge Posting Period 07/23/2020 - 08/23/20 Application Deadline 08/23/20 Jurisdiction Baton Rouge Posting Period 07/23/2020 - 08/23/20 Posting Period Application Deadline 08/23/20 Application Deadline Jurisdiction Baton Rouge Jurisdiction Application Search Search Sign Up for Updates Δ Sign Up for Updates Δ Sign Up for Updates 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Privacy Policy Facebook 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Privacy Policy 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Phone: (225) 925-4400 Privacy Policy Facebook Facebook Facebook Copyright © 2024 Office of State Examiner Site by Gatorworks. Copyright © 2024 Office of State Examiner Site by Gatorworks. " -108,https://www.stpaul.gov/departments/police/administration-office-chief/community-engagement-division/community-partnerships,Contact Info & Agency Meta,Info About Agencies,Community Partnerships Unit | Saint Paul Minnesota,Overview The City Wide Services Unit is part of the Operations Division of the Saint Paul Police Department and consists of the following seven (7) functio,200,Home | Saint Paul Minnesota,"[""Community Partnerships Unit""]","[""Main Navigation"", ""Popular Topics"", ""Breadcrumb"", ""In This Section"", ""Overview"", ""A Community Outreach Program (A.C.O.P.)"", ""Contact Us"", ""Footer""]","[""You are using an unsupported browser. Please use Microsoft Edge."", ""Contact The City"", ""Email Us"", ""Call 651-266-8989""]","[""Business Spotlight"", ""Featured"", ""Business Spotlight"", ""Featured""]",[],[],"" -109,https://www.woburnma.gov/government/recreation/spring-summer-brochure-2018-final-copy/,Not Criminal Justice Related,Not Criminal Justice Related,Spring & Summer Brochure 2018 - City of Woburn,"",200,"City of Woburn, Massachusetts","[""Spring & Summer Brochure 2018""]",[],"[""Get Text & Email Updates!""]","[""Post Details""]",[],[],"Economic Development View our latest info here Pay Where Do I Go For Economic Development View our latest info here Pay Where Do I Go For Economic Development View our latest info here Pay Where Do I Go For Economic Development View our latest info here Pay Where Do I Go For MENU MENU Residents Moving to Woburn Resources Click here to view helpful resources for new or current Woburn residents. News Library Public Schools Recreation Report a Concern Woburn Senior Center Traffic & Parking Veterans Voting & Elections Woburn Public Media Center Trash & Recycling Businesses Economic Development Click here to view our latest info. Apply for Business Certificate Licenses & Permits Food Service Retail Food Mobile Food Municipal Lien Certificates Swimming Pool & Spa Tanning Establishment Temporary Food Service Government Departments & Boards Search through all Departments, Boards and Commissions A-Z. Mayor’s Office City Council Departments & Boards A-Z Employment Opportunities About Woburn History Minutes & Agendas Archive Upcoming Public Meetings Ordinances / Code Bid Postings Public Schools Services Pay a Bill Click here to pay your bill quickly and efficiently. Assessors Database Change Your Mailing Address Forms Open Checkbook Subscribe Pay A Bill Register a Vehicle Register to Vote Report a Concern Events Quick Actions MENU MENU Residents Moving to Woburn Resources Click here to view helpful resources for new or current Woburn residents. News Library Public Schools Recreation Report a Concern Woburn Senior Center Traffic & Parking Veterans Voting & Elections Woburn Public Media Center Trash & Recycling Businesses Economic Development Click here to view our latest info. Apply for Business Certificate Licenses & Permits Food Service Retail Food Mobile Food Municipal Lien Certificates Swimming Pool & Spa Tanning Establishment Temporary Food Service Government Departments & Boards Search through all Departments, Boards and Commissions A-Z. Mayor’s Office City Council Departments & Boards A-Z Employment Opportunities About Woburn History Minutes & Agendas Archive Upcoming Public Meetings Ordinances / Code Bid Postings Public Schools Services Pay a Bill Click here to pay your bill quickly and efficiently. Assessors Database Change Your Mailing Address Forms Open Checkbook Subscribe Pay A Bill Register a Vehicle Register to Vote Report a Concern Events Quick Actions " -110,https://southamptontownnypolice.gov/faq.aspx?qid=270,Contact Info & Agency Meta,Info About Agencies,FAQs • Do I have to renew operating permits every year?,"",200,"Police | Southampton, NY - Official Website",[],"[""▼ Public Safety - Fire Prevention""]","[""Site Tools"", ""Categories"", ""Live Edit"", ""Contact Us"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -111,https://brooklynwi.gov/open-house-brooklyn-police-dane-county-sheriffs-office-april-8-at-6pm-or-april-9-at-6pm-at-community-bldg/,Poor Data Source,Poor Data Source,Open House – Brooklyn Police – Dane County Sheriff’s Office – April 8 at 6pm or April 9 at 6pm at Community Bldg - Village of Brooklyn,"",200,Home - Village of Brooklyn,[],"[""Open House – Brooklyn Police – Dane County Sheriff’s Office – April 8 at 6pm or April 9 at 6pm at Community Bldg"", ""Post navigation""]","[""Contact Us"", ""Office Hours"", ""Department Contacts""]",[],[],[],Today Week Detailed 55°F Today 55°F Tue 52°F Wed 43°F Thu 48°F Fri 55°F Sat 57°F Sun 50°F Today Week Detailed 55°F Today 55°F Tue 52°F Wed 43°F Thu 48°F Fri 55°F Sat 57°F Sun 50°F Today Week Detailed 55°F Today 55°F Tue 52°F Wed 43°F Thu 48°F Fri 55°F Sat 57°F Sun 50°F Today Week Detailed 55°F Today 55°F Tue 52°F Wed 43°F Thu 48°F Fri 55°F Sat 57°F Sun 50°F Today Week Detailed 55°F Today 55°F Tue 52°F Wed 43°F Thu 48°F Fri 55°F Sat 57°F Sun 50°F Today Week Detailed 55°F Today 55°F Tue 52°F Wed 43°F Thu 48°F Fri 55°F Sat 57°F Sun 50°F Today Week Detailed 55°F Today 55°F Tue 52°F Wed 43°F Thu 48°F Fri 55°F Sat 57°F Sun 50°F Today Week Detailed 55°F Today 55°F Tue 52°F Wed 43°F Thu 48°F Fri 55°F Sat 57°F Sun 50°F Today Week Detailed 55°F Today 55°F Tue 52°F Wed 43°F Thu 48°F Fri 55°F Sat 57°F Sun 50°F 55°F Today 55°F Tue 52°F Wed 43°F Thu 48°F Fri 55°F Sat 57°F Sun 50°F 55°F Today 55°F Tue 52°F Wed 43°F Thu 48°F Fri 55°F Sat 57°F Sun 50°F Home Government Agendas & Minutes Calendar of Events Budget Elections Committee Descriptions Economic Develop Committee Community Profile Brooklyn Business Cmpx Ordinances Village Board Members Departments Clerk’s Office Agendas & Minutes Calendar Forms & Permits News & Notices Emergency Management Emergency Management Department Emergency Weather Radios Nixle Emergency Alerts Tornado Safety Police Department Police Department Law of the Month Police Activity Reports Public Works Public Works Helpful Links Latest News Water/Sewer Information Water Hardness Information Brooklyn Fire/EMS District Brooklyn Recreation Community Cemetery Info Community Resources Employment Frequently Asked Questions New Resident Forms & Permits Links Newsletters Parks/Community Building Recycling Urban Forest Site History Brooklyn Garden Club About our Name Brooklyns Beginnings Capital Chair Edmund Andrew House Elderly Gents John Bell Labor Day Celebrations The Chair Factory Old Village Hall Site of Former Feed Mill Subscribe to Updates Contact Us Home Government Agendas & Minutes Calendar of Events Budget Elections Committee Descriptions Economic Develop Committee Community Profile Brooklyn Business Cmpx Ordinances Village Board Members Departments Clerk’s Office Agendas & Minutes Calendar Forms & Permits News & Notices Emergency Management Emergency Management Department Emergency Weather Radios Nixle Emergency Alerts Tornado Safety Police Department Police Department Law of the Month Police Activity Reports Public Works Public Works Helpful Links Latest News Water/Sewer Information Water Hardness Information Brooklyn Fire/EMS District Brooklyn Recreation Community Cemetery Info Community Resources Employment Frequently Asked Questions New Resident Forms & Permits Links Newsletters Parks/Community Building Recycling Urban Forest Site History Brooklyn Garden Club About our Name Brooklyns Beginnings Capital Chair Edmund Andrew House Elderly Gents John Bell Labor Day Celebrations The Chair Factory Old Village Hall Site of Former Feed Mill Subscribe to Updates Contact Us -112,https://alpha.austin.gov/en/police-oversight/documents-regarding-the-use-of-racial-profiling-in-policin/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -113,https://ridgelandsc.gov/police-department/daily-arrest-reports-may,Arrest Records,Police & Public Interactions,Town of Ridgeland,Town of Ridgeland,200,Town of Ridgeland,"[""Police Department""]","[""Daily Arrest Reports - May""]",[],[],[],[],"HOME GOVERNMENT Government Mayor Town Council Boards & Commissions Board, Commission, & Committee Vacancies Town Council Meeting Agendas Town Council Videos Resources Bid Opportunities Public Meeting Agendas Financial Documents DEPARTMENTS Executive Finance, HR and Risk Management Municipal Court Planning and Community Development Police Department Fire Department Water & Sewer BUSINESS Bid Opportunities Building Permits & Forms Business License Information Economic Development Opening a Business Public Meeting Agendas Resources Zoning Maps COMMUNITY About Ridgeland Battle of Honey Hill Community Events Job Opportunities Maps Gallery News & Information Ordinances Parks & Trails Public Safety/Utilities Schools Services Town of Ridgeland Farmers Market I WANT TO... Contact a Staff Member File a FOIA Request Find Out About Trash Collection Service Find the Police Department Find the Fire Department Find Town Hall Find Zoning Maps Learn About Services Pay a Traffic Fine Pay My Water Bill I Want Water/Sewer Service Rent Lakeside at Blue Heron HOME GOVERNMENT Government Mayor Town Council Boards & Commissions Board, Commission, & Committee Vacancies Town Council Meeting Agendas Town Council Videos Resources Bid Opportunities Public Meeting Agendas Financial Documents DEPARTMENTS Executive Finance, HR and Risk Management Municipal Court Planning and Community Development Police Department Fire Department Water & Sewer BUSINESS Bid Opportunities Building Permits & Forms Business License Information Economic Development Opening a Business Public Meeting Agendas Resources Zoning Maps COMMUNITY About Ridgeland Battle of Honey Hill Community Events Job Opportunities Maps Gallery News & Information Ordinances Parks & Trails Public Safety/Utilities Schools Services Town of Ridgeland Farmers Market I WANT TO... Contact a Staff Member File a FOIA Request Find Out About Trash Collection Service Find the Police Department Find the Fire Department Find Town Hall Find Zoning Maps Learn About Services Pay a Traffic Fine Pay My Water Bill I Want Water/Sewer Service Rent Lakeside at Blue Heron HOME GOVERNMENT Government Mayor Town Council Boards & Commissions Board, Commission, & Committee Vacancies Town Council Meeting Agendas Town Council Videos Resources Bid Opportunities Public Meeting Agendas Financial Documents DEPARTMENTS Executive Finance, HR and Risk Management Municipal Court Planning and Community Development Police Department Fire Department Water & Sewer BUSINESS Bid Opportunities Building Permits & Forms Business License Information Economic Development Opening a Business Public Meeting Agendas Resources Zoning Maps COMMUNITY About Ridgeland Battle of Honey Hill Community Events Job Opportunities Maps Gallery News & Information Ordinances Parks & Trails Public Safety/Utilities Schools Services Town of Ridgeland Farmers Market I WANT TO... Contact a Staff Member File a FOIA Request Find Out About Trash Collection Service Find the Police Department Find the Fire Department Find Town Hall Find Zoning Maps Learn About Services Pay a Traffic Fine Pay My Water Bill I Want Water/Sewer Service Rent Lakeside at Blue Heron " -114,https://www.mass.gov/doc/maldenpolicesergeant3554rtf/download,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -115,https://spdblotter.seattle.gov/2018/05/21/detective-cookies-urban-youth-chess-club-announces-kids-vs-cops-chess-rumble-tournament/,Misc Police Activity,Police & Public Interactions,Detective Cookie's Urban Youth Chess Club Announces “Kids Vs. Cops” Chess Rumble Tournament - SPD Blotter,"",200,403 Forbidden,"[""Detective Cookie’s Urban Youth Chess Club Announces “Kids Vs. Cops” Chess Rumble Tournament""]","[""Find Posts By Topic"", ""Featured Posts"", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],"Seattle.gov Choose a language: English English Google Translate may not accurately translate all content. Read disclaimer . For general City questions, please call 206-684-2489 . Tell us your requested language in English, and we can connect you with an interpreter. Continue Cancel Español Es posible que Google Translate no traduzca con precisión todo el contenido. Lea el descargo de responsabilidad . Si necesita ayuda en otro idioma, díganos en inglés nombre del idioma que necesita y lo conectaremos con un intérprete: 206-684-2489 Seguir Cancelar 中國語文 Google翻譯可能無法準確翻譯所有內容。 閱讀免責聲明 。 如果您需要翻譯,請用英語説出您所需要的語言,我們將爲你連接口譯員: 206-684-2489 繼續 取消 简体中文 Google翻译可能无法准确翻译所有内容。 阅读免责声明 。 如果您需要翻译,请用英语说出您所需要的语言,我们将为你连接口译员: 206-684-2489 继续 取消 Tiếng Việt Google Dịch có thể không dịch chính xác tất cả nội dung. Đọc tuyên bố từ chối trách nhiệm . Nếu quý vị cần hỗ trợ về ngôn ngữ, xin vui lòng cho chúng tôi biết ngôn ngữ quý vị cần hỗ trợ bằng tiếng Anh (ví dụ “Vietnamese”), chúng tôi sẽ kết nối quý vị với một thông dịch viên: 206-684-2489 Tiếp tục Huỷ bỏ русский язык Google Translate не может точно перевести весь контент. Прочтите отказ от ответственности . Если вам нужна языковая помощь, сообщите нам на английском, какой язык вам нужен, и мы свяжем вас с переводчиком: 206-684-2489 Продолжать Отмена Af-Soomaali Google Translate ayaan si sax ah u turjumi karin dhammaan waxyaabaha ku jira. Akhri afeef . Haddii aad u baahan tahay caawimaad luqadeed, fadlan noogu sheeg Ingiriisiga luqadda aad u baahan tahay, ka dib waxaan kugu xiri doonnaa turjubaan: 206-684-2489 Sii wad Jooji አማርኛ የጉግል ትርጉም ሁሉንም ይዘቶች በትክክል መተርጎም ላይችል ይችላል። ማስተባበያ አንብብ ፡፡ ኣስተርጓሚ ካስፈለግዎ የሚፈልጉትን ቋንቋ በእንግልዝኛ ይንገሩን፣ ከኣስተርጓሚ እናገናኝዎታለን። 206-684-2489 ቀጥል ሰርዝ 한국어 구글은 정확하게 모든 내용을 번역하지 않을 수 있습니다 번역. 읽기 면책 조항 . 언어지원이 필요한 경우, 필요한 언어를 영어로 말씀해 주시면 통역사와 연결해 드리겠습니다: 206-684-2489 계속하다 취소 Tagalog Maaaring hindi tumpak na isalin ng Google Translate ang lahat ng nilalaman. Basahin ang disclaimer . Para sa mga pangkalahatang katanungan sa Lungsod, mangyaring tawagan ang 206-684-2489 . Sabihin sa amin ang hiniling mong wika sa Ingles, at maikokonekta ka namin sa isang interpreter. Magpatuloy Kanselahin ภาษาไทย Google Translate อาจแปลเนื้อหาทั้งหมดไม่ถูกต้อง อ่านข้อจำกัดความรับผิดชอบ สำหรับคำถามทั่วไปเกี่ยวกับเมืองโปรดโทร 206-684-2489 บอกภาษาที่คุณต้องการเป็นภาษาอังกฤษและเราสามารถติดต่อคุณกับล่ามได้ ดำเนินการต่อ ยกเลิก 日本語 Google翻訳は、すべてのコンテンツを正確に翻訳するとは限りません. 免責事項をお読みください 。 市の一般的な質問については 206-684-2489 に電話してください。ご希望の言語を英語で教えていただければ、通訳をご案内いたします。 継続する キャンセル ភាសាខ្មែរ កម្មវិធីបកប្រែហ្គូហ្គោលមិនអាចបកប្រែមាតិកាទាំងអស់បានត្រឹមត្រូវទេ។ អានការបដិសេធ។ សម្រាប់សំណួរទូទៅរបស់ទីក្រុងសូមទូរស័ព្ទមក 206-684-2489 ។ ប្រាប់យើងពីភាសាដែលអ្នកស្នើសុំជាភាសាអង់គ្លេសហើយយើងអាចភ្ជាប់អ្នកជាមួយអ្នកបកប្រែភាសា។ បន្ត បោះបង់ ພາສາລາວ Google Translate ອາດຈະບໍ່ແປເນື້ອຫາທັງ ໝົດ ຢ່າງຖືກຕ້ອງ. ອ່ານປະຕິເສດ . ສຳ ລັບ ຄຳ ຖາມທົ່ວໄປຂອງເມືອງ, ກະລຸນາໂທຫາ 206-684-2489 . ບອກພວກເຮົາເປັນພາສາອັງກິດທີ່ທ່ານຮ້ອງຂໍ, ແລະພວກເຮົາສາມາດເຊື່ອມຕໍ່ທ່ານກັບນາຍແປພາສາ. ສືບຕໍ່ ຍົກເລີກ Українська Перекладач Google може не точно перекласти весь вміст. Прочитайте застереження . За загальними запитаннями про місто, будь ласка, телефонуйте 206-684-2489 . Розкажіть нам про вашу мову англійською мовою, і ми можемо зв’язати вас із перекладачем. Продовжуйте Скасувати Français Google Traduction peut ne pas traduire correctement tout le contenu. Lisez la clause de non-responsabilité . Pour des questions générales sur la ville, veuillez appeler le 206-684-2489 . Dites-nous votre langue souhaitée en anglais, et nous pourrons vous mettre en contact avec un interprète. Continuer Annuler " -116,https://alpha.austin.gov/en/police-oversight/notice-of-complaint-related-to-2022-0439/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -117,https://delcopa.gov/planning/programsandinitiatives/commissionsandtaskforces.html,Contact Info & Agency Meta,Info About Agencies,Commissions and Task Forces,"",200,"Delaware County, Pennsylvania","[""Commissions and Task Forces""]",[],"[""Planning Department Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Commissions and Task Forces Home / Departments / Planning Department / Municipal Programs & Initiatives / Commissions and Task Forces Multi-institutional efforts supported by the staff of the Delaware County Planning Department. Delaware County initiatives often evolve into broader efforts that are collaborative in nature. Stakeholders frequently include the State of Pennsylvania, municipalities, non-profits and citizens. The Planning Department currently supports the following Commissions and Task Forces. Coastal Zone Task Force Heritage Commission Delaware County Planning Commission Questions about Commissions and Task Forces? Contact the Planning Department at 610-891-5200 or Planning_Department@co.delaware.pa.us . Planning Department Navigation Access the Data and Mapping Innovation Hub About Planning Calendar Current Projects Delaware County 2035 Demographic Data Development Review Forms Funding Green Space and Trails Project Mapping Municipal Programs & Initiatives Planning Education Publications Gina Burritt, Director Planning Department 2 W. Baltimore Avenue Suite 202 Media, PA 19063 Phone: 610-891-5200 Fax: 610-891-5203 Email: Planning_Department@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2023 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Commissions and Task Forces Home / Departments / Planning Department / Municipal Programs & Initiatives / Commissions and Task Forces Commissions and Task Forces Home / Departments / Planning Department / Municipal Programs & Initiatives / Commissions and Task Forces Commissions and Task Forces Home / Departments / Planning Department / Municipal Programs & Initiatives / Commissions and Task Forces " -118,https://coloradosprings.gov/police-department/page/cases-interest-randy-bishop,Officer Involved Shootings,Police & Public Interactions,Cases of Interest: Randy Bishop | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""Cases of Interest: Randy Bishop""]","[""Search"", ""CSPD Case of Interest: Randy Bishop Officer Involved Shooting"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],"[""Memorial Hospital Redacted Arrest Warrant for Randy Bishop"", ""Officer Becker Body Worn Camera: 01/11/2020, 11:57 PM"", """", """", ""Officer Becker Body Worn Camera: 01/12/2020, 12:02 AM"", """", """", """", ""Officer Mattox Body Worn Camera: 01/11/2020, 11:59 PM"", """", """", """", ""Officer Involved Shooting Redacted Arrest Warrant"", ""Officer Colliver, Murphy, Weems, and Owen's Body Worn Camera: 01/26/2020, 12:07 PM"", ""Redacted POWPO Arrest Warrant."", ""Court Conclusion""]","[""REPORT ONLINE""]",[],"" -119,https://www.wakeforestnc.gov/news/police-department-turkey-drive-continues-through-november-20,Media Bulletins,Agency-Published Resources,"Police Department Turkey Drive continues through November 20 | Town of Wake Forest, NC","The Wake Forest Police Department (WFPD) is accepting monetary donations through Saturday, Nov. 20, as part of its 15th Annual Turkey Drive. Area residents can support this worthy cause by submitting online donations via PayPal at http://bit.ly/WFPDTurkeyDrive.Cash and checks written to the Wake Forest Police Department are also accepted. Anyone wishing to contribute cash or",200,"Town of Wake Forest, NC","[""Police Department Turkey Drive continues through November 20""]","[""fnow_jun09-45.jpg"", ""Town Hall Closed Friday, March 29"", ""Search form"", ""You are here""]",[],[],[],[],Skip to main content -120,https://delcopa.gov/row/pdf/2020/informationforcouplesgettingmarriedform.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -121,https://coloradosprings.gov/police-department/article/news/traffic-fatality-3500-block-austin-bluffs,Media Bulletins,Agency-Published Resources,Traffic Fatality 3500 Block of Austin Bluffs Parkway | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""Traffic Fatality 3500 Block of Austin Bluffs Parkway""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[],"" -122,https://delcopa.gov/courts/pdf/mdjlistmuni01jan2018.pdf,Contact Info & Agency Meta,Info About Agencies,"","",200,"","","","","","","","" -123,https://www.mooresville.in.gov/event/police-commission-3/,Poor Data Source,Poor Data Source,Police Commission - Town of Mooresville,"",200,403 Forbidden,"[""Police Commission""]","[""November 18, 2022 @ 5:00 pm - 6:00 pm"", ""Details"", ""Venue""]",[],[],[],[],"Town Calendar Indiana Gateway Employee Portal About Mooresville About Mooresville Town History Visiting Mooresville Community Community Links Community News Online Services Online Documents Center Ordinances and Resolutions Minutes Town Meeting Recordings Sewer Bill Payment Code of Ordinances Departments Parks and Rec Fire Department Police Department Public Works Building Department Clerk/Treasurer Departments – Other I want to… Report a Pothole or Streets Problem Find Zoning Info Pay or View Sewer Bill View all FAQs Apply For… Building Permit Sewer Permit Solicitor’s Permit Street Cut Permit Elected Officials Main in Motion Select Page About Mooresville About Mooresville Town History Visiting Mooresville Community Community Links Community News Online Services Online Documents Center Ordinances and Resolutions Minutes Town Meeting Recordings Sewer Bill Payment Code of Ordinances Departments Parks and Rec Fire Department Police Department Public Works Building Department Clerk/Treasurer Departments – Other I want to… Report a Pothole or Streets Problem Find Zoning Info Pay or View Sewer Bill View all FAQs Apply For… Building Permit Sewer Permit Solicitor’s Permit Street Cut Permit Elected Officials Main in Motion Town Calendar Indiana Gateway Employee Portal « All Events This event has passed. Police Commission November 18, 2022 @ 5:00 pm - 6:00 pm « Police Commission Executive Meeting Thanksgiving – Government Center Closed » Add to calendar Google Calendar iCalendar Outlook 365 Outlook Live Details Date: November 18, 2022 Time: 5:00 pm - 6:00 pm Venue Police Station « Police Commission Executive Meeting Thanksgiving – Government Center Closed » Facebook X RSS Designed and Managed by C2IT Consulting, Inc. Town Calendar Indiana Gateway Employee Portal Town Calendar Indiana Gateway Employee Portal Town Calendar Indiana Gateway Employee Portal About Mooresville About Mooresville Town History Visiting Mooresville Community Community Links Community News Online Services Online Documents Center Ordinances and Resolutions Minutes Town Meeting Recordings Sewer Bill Payment Code of Ordinances Departments Parks and Rec Fire Department Police Department Public Works Building Department Clerk/Treasurer Departments – Other I want to… Report a Pothole or Streets Problem Find Zoning Info Pay or View Sewer Bill View all FAQs Apply For… Building Permit Sewer Permit Solicitor’s Permit Street Cut Permit Elected Officials Main in Motion Select Page About Mooresville About Mooresville Town History Visiting Mooresville Community Community Links Community News Online Services Online Documents Center Ordinances and Resolutions Minutes Town Meeting Recordings Sewer Bill Payment Code of Ordinances Departments Parks and Rec Fire Department Police Department Public Works Building Department Clerk/Treasurer Departments – Other I want to… Report a Pothole or Streets Problem Find Zoning Info Pay or View Sewer Bill View all FAQs Apply For… Building Permit Sewer Permit Solicitor’s Permit Street Cut Permit Elected Officials Main in Motion Town Calendar Indiana Gateway Employee Portal " -124,https://delcopa.gov/planning/pdf/demodata/minoritypopulation2020map.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -125,http://lafayettepolice.us/208/police-officer-lateral-entry-program,Training & Hiring Info,Info About Officers,"Police Officer Lateral Entry Program | Lafayette, IN - Official Website",The Lafayette Police Department has long recognized the value of those applicants who have law enforcement experience and provides starting salary/pay incentives commensurate with an applicant's experience.,200,"Police Department | Lafayette, IN - Official Website","[""Police Officer Lateral Entry Program""]","[""We Are Actively Looking For Lateral Police Officers To Join Us."", ""Transferring Officers""]","[""Requirements"", ""About the Program"", ""Salary"", ""Paid Time Off"", ""Contact Us"", ""Lieutenant Randy Sherer"", ""Administrative Services Division"", """", """", ""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Your LPD Career Opportunities Community Outreach Training Center How Do I… Police Officer Lateral Entry Program We Are Actively Looking For Lateral Police Officers To Join Us. Qualified Lateral Applicants Will Enjoy the Following Benefits: Accelerate FTO Program Skip the Basic Law Enforcement Academy Excellent Salary and Benefits Career Advancement Opportunities Retirement Benefits Medical, Dental and Vision Plans Franciscan HEALTHeACCESS Company Clinic Off-Duty Employment Opportunities Tuition Reimbursement Program Years of Service from Previous Agency is Counted Towards Vacation and Wages Transferring Officers The Lafayette Police Department recognizes the value of applicants with previous law enforcement experience. To benefit transferring officers, LPD provides incentives to the starting salary and paid time off. Requirements To be considered for employment with the department, applicants must meet all the established pre-employment minimum requirements, as well as successfully complete all testing, screening, and background screening components. To be eligible or qualify for consideration in the ""Lateral Entry Program"", the applicant must possess an Indiana Law Enforcement Academy Certification or be a successful applicant to the I.L.E.A. Waiver Requirement process. Lateral entry officers cannot apply for the waiver until employed by the department. The effective pay rate will commence upon the completion of the Field Training Program. Certified law enforcement experience is defined as: employment with a local, county, state or federal agency that has primary responsibility for law enforcement and arrest powers. For purposes of the Lateral Entry Program, military experience does not qualify. About the Program The Lateral Entry Program will provide accelerated salary/pay and Paid Time Off (PTO) incentives for qualified candidates. Calculation for years of service will not include partial/seasonal years of service, or non-certified law enforcement. The Lateral Entry Program does not recognize rank or seniority ""rights"" from the officer's prior employment. Salary All approved laterals will jump to first class pay upon the completion of FTO. Paid Time Off Qualified candidates shall be annually granted PTO based upon their total years of certified law enforcement employment. Contact Us Lieutenant Randy Sherer Email Administrative Services Division 601 Columbia St. Lafayette, IN 47901 Phone: 765-807-1222 Fax: 765-807-1201 Emergency: 911 Police App LPD Combine Day Salary & Benefits Moral Character Issues Police Officer Lateral Entry Program College Internship Program Career Opportunities Report a Crime Thank an Officer Stay Connected Alarm Reduction Contact Us 601 Columbia Street Lafayette, IN 47901 Phone: 765-807-1200 FAQs What is the number to the jail? Can you tell me if someone is wanted on warrant? How do I obtain a handgun permit? How can I request a street closure for a special event? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate " -126,https://www.pleasantprairiewi.gov/news/2016_news/shop_with_a_cop__firefighter,Misc Police Activity,Police & Public Interactions,Shop with a Cop/Firefighter - Village of Pleasant Prairie,"",200,Just a moment...,[],"[""Shop with a Cop/Firefighter""]","[""Follow Us on Social Media""]",[],[],[],"" -127,https://delcopa.gov/health/news/dchdtorelocatecovid19vaccinationclinics.html,Not Criminal Justice Related,Not Criminal Justice Related,"Environmental Health - Health Department - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Division of Environmental Health""]",[],"["""", ""Health Department Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Division of Environmental Health Home / Departments / Health Department / Environmental Health Released: May 3, 2022 The Delaware County Health Department will relocate its free COVID-19 vaccine clinics from the Watkins Avenue Senior Center in Upper Darby, and the Keystone First Wellness and Opportunity Center in Chester to the Department’s new clinic locations: the Delaware County Wellness Center in Yeadon, PA., and the DCHD- Chester Clinic in Chester, PA. In partnership with Delaware County Council and the COVID-19 Task Force, the Keystone First Wellness and Opportunity Center in Chester began offering COVID-19 vaccinations on February 25, 2021. Since its opening, more than 14,000 vaccinations and boosters have been administrated at the Keystone First Wellness Center. The Watkins Avenue Senior Center in Upper Darby began offering COVID-19 vaccinations on February 15, 2021, and has provided more than 300 vaccinations and boosters to residents. “We are incredibly grateful to the community members and our partners at the Watkins Avenue Senior Center and Keystone First,” said Delaware County Health Department Deputy Director Lora Werner. “We are thankful to them for making these clinics a success and for contributing to the health and safety of our communities!” Beginning on Thursday, May 5residents can receive a COVID-19 vaccination or booster at the newly renovated Delaware County Wellness Center located at125 Chester Avenue, Yeadon PA.,19050. Vaccinations will be available every other Thursday at the Wellness Center. Beginning on Monday, May 9 residents can visit DCHD-Chester at 151 W. 5th Street, Chester PA., 19013 to receive a COVID- 19 vaccination or booster. Vaccinations and boosters will be available at DCHD-Chester every other Monday. Walk-ins are welcome at each location and appointments can be scheduled via: WEB: www.delcopa.gov/vax PHONE: (484) 276-2100 EMAIL: DelcoWellness@co.delaware.pa.us Residents are encouraged to learn more about the Delaware County Health Department by visiting: www.DelcoPa.gov/health For more information and assistance, the Delaware County Health Department Wellness Line is available 24 hours a day, 7 days a week. In addition to responding to phone calls, the Wellness Line also responds to email inquiries. Phone: (484) 276-2100 (Available 24/7) Email: DelcoWellness@co.delaware.pa.us Health Department Navigation Home About/Locations A to Z Board of Health COVID News Wellness Clinics Rules and Regulations Environmental Health Division 1510 Chester Pike Suite 700 Eddystone PA 19022 Phone: 484-276-2100 Email: DelcoWellness@co.delaware.pa.us Hours: 8:30 AM to 4:30 PM Monday to Friday Except County Holidays Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll " -128,https://spdblotter.seattle.gov/2018/06/01/seattle-police-officer-charged-with-assault/,Poor Data Source,Poor Data Source,UPDATED: Seattle Police Officer Charged With Assault - SPD Blotter,"",200,403 Forbidden,"[""UPDATED: Seattle Police Officer Charged With Assault""]","[""Find Posts By Topic"", ""Featured Posts"", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],"Seattle.gov Choose a language: English English Google Translate may not accurately translate all content. Read disclaimer . For general City questions, please call 206-684-2489 . Tell us your requested language in English, and we can connect you with an interpreter. Continue Cancel Español Es posible que Google Translate no traduzca con precisión todo el contenido. Lea el descargo de responsabilidad . Si necesita ayuda en otro idioma, díganos en inglés nombre del idioma que necesita y lo conectaremos con un intérprete: 206-684-2489 Seguir Cancelar 中國語文 Google翻譯可能無法準確翻譯所有內容。 閱讀免責聲明 。 如果您需要翻譯,請用英語説出您所需要的語言,我們將爲你連接口譯員: 206-684-2489 繼續 取消 简体中文 Google翻译可能无法准确翻译所有内容。 阅读免责声明 。 如果您需要翻译,请用英语说出您所需要的语言,我们将为你连接口译员: 206-684-2489 继续 取消 Tiếng Việt Google Dịch có thể không dịch chính xác tất cả nội dung. Đọc tuyên bố từ chối trách nhiệm . Nếu quý vị cần hỗ trợ về ngôn ngữ, xin vui lòng cho chúng tôi biết ngôn ngữ quý vị cần hỗ trợ bằng tiếng Anh (ví dụ “Vietnamese”), chúng tôi sẽ kết nối quý vị với một thông dịch viên: 206-684-2489 Tiếp tục Huỷ bỏ русский язык Google Translate не может точно перевести весь контент. Прочтите отказ от ответственности . Если вам нужна языковая помощь, сообщите нам на английском, какой язык вам нужен, и мы свяжем вас с переводчиком: 206-684-2489 Продолжать Отмена Af-Soomaali Google Translate ayaan si sax ah u turjumi karin dhammaan waxyaabaha ku jira. Akhri afeef . Haddii aad u baahan tahay caawimaad luqadeed, fadlan noogu sheeg Ingiriisiga luqadda aad u baahan tahay, ka dib waxaan kugu xiri doonnaa turjubaan: 206-684-2489 Sii wad Jooji አማርኛ የጉግል ትርጉም ሁሉንም ይዘቶች በትክክል መተርጎም ላይችል ይችላል። ማስተባበያ አንብብ ፡፡ ኣስተርጓሚ ካስፈለግዎ የሚፈልጉትን ቋንቋ በእንግልዝኛ ይንገሩን፣ ከኣስተርጓሚ እናገናኝዎታለን። 206-684-2489 ቀጥል ሰርዝ 한국어 구글은 정확하게 모든 내용을 번역하지 않을 수 있습니다 번역. 읽기 면책 조항 . 언어지원이 필요한 경우, 필요한 언어를 영어로 말씀해 주시면 통역사와 연결해 드리겠습니다: 206-684-2489 계속하다 취소 Tagalog Maaaring hindi tumpak na isalin ng Google Translate ang lahat ng nilalaman. Basahin ang disclaimer . Para sa mga pangkalahatang katanungan sa Lungsod, mangyaring tawagan ang 206-684-2489 . Sabihin sa amin ang hiniling mong wika sa Ingles, at maikokonekta ka namin sa isang interpreter. Magpatuloy Kanselahin ภาษาไทย Google Translate อาจแปลเนื้อหาทั้งหมดไม่ถูกต้อง อ่านข้อจำกัดความรับผิดชอบ สำหรับคำถามทั่วไปเกี่ยวกับเมืองโปรดโทร 206-684-2489 บอกภาษาที่คุณต้องการเป็นภาษาอังกฤษและเราสามารถติดต่อคุณกับล่ามได้ ดำเนินการต่อ ยกเลิก 日本語 Google翻訳は、すべてのコンテンツを正確に翻訳するとは限りません. 免責事項をお読みください 。 市の一般的な質問については 206-684-2489 に電話してください。ご希望の言語を英語で教えていただければ、通訳をご案内いたします。 継続する キャンセル ភាសាខ្មែរ កម្មវិធីបកប្រែហ្គូហ្គោលមិនអាចបកប្រែមាតិកាទាំងអស់បានត្រឹមត្រូវទេ។ អានការបដិសេធ។ សម្រាប់សំណួរទូទៅរបស់ទីក្រុងសូមទូរស័ព្ទមក 206-684-2489 ។ ប្រាប់យើងពីភាសាដែលអ្នកស្នើសុំជាភាសាអង់គ្លេសហើយយើងអាចភ្ជាប់អ្នកជាមួយអ្នកបកប្រែភាសា។ បន្ត បោះបង់ ພາສາລາວ Google Translate ອາດຈະບໍ່ແປເນື້ອຫາທັງ ໝົດ ຢ່າງຖືກຕ້ອງ. ອ່ານປະຕິເສດ . ສຳ ລັບ ຄຳ ຖາມທົ່ວໄປຂອງເມືອງ, ກະລຸນາໂທຫາ 206-684-2489 . ບອກພວກເຮົາເປັນພາສາອັງກິດທີ່ທ່ານຮ້ອງຂໍ, ແລະພວກເຮົາສາມາດເຊື່ອມຕໍ່ທ່ານກັບນາຍແປພາສາ. ສືບຕໍ່ ຍົກເລີກ Українська Перекладач Google може не точно перекласти весь вміст. Прочитайте застереження . За загальними запитаннями про місто, будь ласка, телефонуйте 206-684-2489 . Розкажіть нам про вашу мову англійською мовою, і ми можемо зв’язати вас із перекладачем. Продовжуйте Скасувати Français Google Traduction peut ne pas traduire correctement tout le contenu. Lisez la clause de non-responsabilité . Pour des questions générales sur la ville, veuillez appeler le 206-684-2489 . Dites-nous votre langue souhaitée en anglais, et nous pourrons vous mettre en contact avec un interprète. Continuer Annuler " -129,https://delcopa.gov/meo/careers/forensicinvestigator.html,Not Criminal Justice Related,Not Criminal Justice Related,"Forensic Investigator - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Forensic Investigator""]",[],"[""Qualifications"", ""Preferred Qualifications"", ""Responsibilities include but are not limited to"", ""Certifications"", ""Medical Examiner Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"" -130,http://www.longbeach.gov/police/press-releases/motorcycle-safety-operation-proves-effective/,Media Bulletins,Agency-Published Resources,MOTORCYCLE SAFETY OPERATION PROVES EFFECTIVE,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 8/18/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: MOTORCYCLE SAFETY OPERATION PROVES EFFECTIVE Contact: Media Relations Detail (562) 570-5273 On Saturday, August 16, and Sunday, August 17, 2014, the Long Beach Police Department’s Traffic Section conducted a Motorcycle Safety Operation. During the five-hour operation each day, motor officers patrolled throughout the city looking for unsafe driving by motorcyclists as well as drivers who were operating vehicles unsafely around motorcycle riders. Officers took the following enforcement actions: Cited thirty-four (34) motorcyclists for unsafe driving Cited fourteen (14) drivers for unsafe driving Cited fifteen (15) motorcyclists for non-DOT approved motorcycle helmets Cited four (4) motorcyclists for not having a motorcycle endorsement on their license Cited six (6) motorcyclists for suspended licenses Cited three (3) drivers for not having a driver’s license Motorcycle fatalities in California saw a phenomenal drop of 37% from 2008 to 2010, but then rose 23% by 2012. Operations like this are aimed at curbing rises in motorcycle deaths and sending the numbers back downward. In Long Beach, there were 295 motorcyclists injured and 19 motorcycle fatalities during a three-year period from January 2011 to December 2013. California collision data reveals that primary causes of motorcycle-involved crashes include speeding, unsafe turning, and impairment due to alcohol and other drugs. The Long Beach Police Department reminds all motorists to always be alert and watch for motorcycles, especially when turning and changing lanes. Drivers should be aware that motorcycle lane splitting is not illegal if done in a safe and prudent manner. Motorcycle riders should consult the Lane Splitting General Guidelines to learn more – www.ots.ca.gov/lanesplittinggeneralguidelines.pdf . Riders may seek training through the California Motorcyclist Safety Program. Information and training locations are available online or 1-877 RIDE 411 or 1-877-743-3411. Funding for this program is provided by a grant from the California Office of Traffic Safety through the National Highway Traffic Safety Administration. The message to all drivers and motorcyclists is: share in the responsibility and do your part by safely “sharing the road.” This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -131,https://council.seattle.gov/2011/12/16/justice-department-findings-on-seattle-police/,Poor Data Source,Poor Data Source,Justice Department Findings on Seattle Police - Seattle City Council Blog,"",200,403 Forbidden,"[""Justice Department Findings on Seattle Police""]",[],"[""HELPFUL LINKS"", ""Make your voice heard"", ""Councilmembers""]",[],[],[],"" -132,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/summary/110221summary.pdf,Dispatch Logs,Police & Public Interactions,"","",404,"","","","","","","","" -133,https://www.mass.gov/doc/jlm-17-5884-city-of-quincy-and-quincy-police-patrol-officers-association-february-8-2019/download,Policies & Contracts,Info About Agencies,"","",200,"","","","","","","","" -134,https://www.mass.gov/doc/2022-tewksbury-police-lieutenant-sole-assessment-employment-verification-form/download,Training & Hiring Info,Info About Officers,"","",200,"","","","","","","","" -135,https://www.newcastlewa.gov/departments/police/safe_place_program,Resources,Agency-Published Resources,Safe Place Program - City of Newcastle,"",200,Just a moment...,[],"[""City of Newcastle""]",[],"[""City of Newcastle Washington""]",[],[],"" -136,https://www.roseville.ca.us/government/departments/police_department/crime_log/crime_log_feb_15_-_feb_28__2020,Crime Maps & Reports,Agency-Published Resources,"","",404,"","","","","","","","" -137,https://springfield-or.gov/event/springfield-police-advisory-committee-spac-19/,Poor Data Source,Poor Data Source,Springfield Police Advisory Committee (SPAC) – City of Springfield Oregon,"",200,City of Springfield Oregon,[],"[""Springfield Police Advisory Committee (SPAC)""]","[""December 1, 2022 @ 6:00 pm - 7:30 pm"", ""Event Navigation""]","[""Share This Story, Choose Your Platform!"", ""Details"", ""Venue"", ""Organizer""]",[],[],"" -138,https://delcopa.gov/departments/history.html,Not Criminal Justice Related,Not Criminal Justice Related,"History - At a Glance - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Your County at a Glance: History""]",[],"[""The History of Delaware County"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"" -139,https://www.stcharlesil.gov/events/public-meetings/2018-01-08-230000/regular-meeting-board-fire-and-police-commissioners,Poor Data Source,Poor Data Source,"Regular Meeting of the Board of Fire and Police Commissioners 1/8/2018 | Events | City of St Charles, IL",Regular Meeting of the Board of Fire and Police Commissioners on 1/8/2018,200,"City of St. Charles, Illinois","[""City of St. Charles, Illinois"", ""Regular Meeting of the Board of Fire and Police Commissioners""]","[""You are here"", ""2nd Floor Fire Department Training Conference Room"", ""Committee/Commission"", ""View more events"", ""Documents on this site"", ""Accessibility"", ""Key Resources"", ""Connect With Us""]",[],[],[],[],"" -140,https://www.mass.gov/doc/christine-kennedy-v-city-of-chicopee-school-dept/download,Court Cases,Jails & Courts Specific,"","",200,"","","","","","","","" -141,https://delcopa.gov/publicrelations/releases/2019/passportmonth.html,Not Criminal Justice Related,Not Criminal Justice Related,"September is National Passport Month - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""September is National Passport Month""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play September is National Passport Month Home / Departments / Public Relations Releases / September is National Passport Month Delco’s Passport Office extends its hours on Sept. 21 September is National Passport Month, created by the State Department to educate and inform travelers. Residents planning to travel in 2020 are urged to learn more about the passport process in order to save time and money and avoid unnecessary stress. In recognition of Passport Month, many Passport Offices which are not normally open on Saturdays will open on Sept. 21 to make the process of applying for a passport easier and more convenient. Delaware County’s Passport Division, which has normal Saturday hours from 9:00 a.m. to noon will have extended hours of 9:00 a.m. to 2:00 p.m. on Sept. 21. The extended hours on Sept. 21 offer some residents a more convenient time to apply for a passport. It also allows parents to more easily bring their school-age children since both parents must be present when applying for a passport for a child. National Passport Month is also a reminder for residents to not wait until the last minute to apply for a passport. Some people wait until the last minute to apply, which can cause stress and unnecessary fees to expedite the paperwork. Additionally, many countries require your passport to be valid for at least six months before a trip. Information including applying for a passport, fees and office hours can be found here: www.delcopa.gov/ojs/passports.html Delaware County’s Passport Division is located in the Office of Judicial Support, Room 126 of the Government Center, 201 West Front Street, Media, PA 19063. Normal hours are Monday through Friday from 8:30 a.m. to 4:00 p.m. and Saturdays from 9:00 a.m. to noon with the exceptions of holiday weekends. Appointments are not needed. Public Relations Navigation Press Releases County Newsletter Use of County Facility Form Questions about COVID-19 vaccines? Please call the COVID-19 Call Center: 484-276-2100. Adrienne Marofsky, Director Government Center, 226A 201 W. Front St. Media, PA 19063 Phone: 610-891-4943 delcopr@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu " -142,https://detroitmi.gov/departments/police-department/detroit-police-department-office-civil-rights/definitions-consent-decree,Policies & Contracts,Info About Agencies,Definitions of Consent Decree | City of Detroit,"On July 18, 2003 the Detroit Police Department, the City of Detroit and the United States Department of Justice entered into two consent decrees. The first consent decree deals with the Use of Force, Arrest and Witness Detention. The second decree concerns the Conditions of Confinement in our holding facilities. 1. As used in this Agreement: a. The term “actively resisting” means the subject is making physically evasive movements to defeat an officer's attempt at control, including bracing, tensing, pulling away, or pushing. b. The term “arrest” means a seizure of greater scope or duration than an investigatory or Terry stop. An arrest is lawful when supported by probable cause. c. The term “auditable form” or “auditable log” means a discrete record of the relevant information maintained separate and independent of blotters and other forms maintained by the DPD. d. The term “canine apprehension” means any time a canine is deployed and plays a clear and well-documented role in the capture of a person. The mere presence of a canine at the scene of an arrest shall not be counted as an apprehension. e. The term “canine bite ratio” means the number of apprehensions accomplished by means of a dog bite divided by the total number of apprehensions (both with and without a bite). f. The term “canine deployment” means any situation, except in cases involving an on-leash article search only, in which a canine is brought to the scene and either: i) the canine is released from the police car in furtherance of the police action; or ii) the suspect gives up immediately after an announcement is made that if he/she does not surrender the canine will be released. g. The term “City” means the City of Detroit, including its agents, officers and employees. h. The term “Collective Bargaining Agreements” means the labor agreements by and between the City and the Detroit Police Officers Association, the Detroit Police Lieutenants and Sergeants Association, the Detroit Police Command Officers Association, the Police Officer Labor Council, and Local 2394 of the American Federation of State, County, and Municipal Employees in effect on the effective date of this Agreement. i. The term “command investigation” means an investigation conducted by a DPD officer’s or employee’s supervisor. j. The term “complaint” means an allegation from any source of any misconduct by DPD personnel. k. The term “conveyance” means any instance when the DPD transports a non-DPD employee for any purpose. l. The term “critical firearm discharge” means each discharge of a firearm by a DPD officer with the exception of range and training discharges and discharges at animals. m. The term “DOJ” means the United States Department of Justice and its agents and employees. n. The term “DPD” means the Detroit Police Department, its agents and its employees (both sworn and unsworn). o. The term “DPD unit” means any officially designated organization of officers within the DPD, including precincts and specialized units. p. The term “discipline” means a written reprimand, suspension, demotion or dismissal. q. The term “effective date” means the day this Agreement is entered by the Court. r. The term “escorting” means the use of light physical pressure to guide a person, or keep a person in place. s. The term “FTO” means a field training officer. t. The term “force” means the following actions by an officer: any physical strike or instrumental contact with a person; any intentional attempted physical strike or instrumental contact that does not take effect; or any significant physical contact that restricts the movement of a person. The term includes the discharge of firearms; the use of chemical spray, choke holds or hard hands; the taking of a subject to the ground; or the deployment of a canine. The term does not include escorting or handcuffing a person, with no or minimal resistance. Use of force is lawful if it is objectively reasonable under the circumstances and the minimum amount of force necessary to effect an arrest or protect the officer or other person. u. The term “hard hands” means using physical pressure to force a person against an object or the ground, or the use of physical strength or skill that causes pain or leaves a mark. v. The term “hold” means any outstanding charge(s) or warrant(s) other than those which serve as the predicate for the current arrest. w. The term “IAD” means the section of the DPD that investigates serious uses of force and allegations of criminal misconduct by DPD employees. x. The term “including” means “including, but not limited to.” y. The term “injury” means any impairment of physical condition or pain. z. The term “investigatory stop,” or “Terry stop,” means a limited seizure. An investigatory stop is lawful when supported by reasonable suspicion and narrowly tailored in scope and duration to the reasons supporting the seizure. aa. The term “material witness” means a witness subpoenaed to testify in a criminal case. bb. The term “misconduct” means any conduct by a DPD employee that violates DPD policy or the law. cc. The term “non-disciplinary corrective action” means counseling, training or other action apart from discipline taken by a DPD supervisor to enable or encourage an officer to modify or improve his or her performance. dd. The term “OCI” means the Office of the Chief Investigator, which has responsibility for investigating external complaints. ee. The term “parties” means the DOJ, the City and the DPD. ff. The term “police officer” or “officer” means any law enforcement officer employed by the DPD, including supervisors. gg. The term “prisoner injury” means an injury, or complaint of injury, that occurs in the course of taking or after an individual was taken into DPD custody that is not attributed to a use of force by a DPD employee. hh. The term “probable cause” means a reasonable belief that an individual has committed, is committing, or is about to commit an offense. ii. The term “prompt judicial review” means the presentment of an arrestee before a court of appropriate jurisdiction for a probable cause determination as soon after an arrest as is reasonably feasible. A reasonably feasible time period is the period of time necessary to schedule the arraignment and complete the administrative processing of the arrestee and shall not exceed 48 hours of the arrest, absent extraordinary circumstances. jj. The term “proper use of force decision making” means the use of reasonable force, including proper tactics, and de-escalation techniques. kk. The term “reasonable suspicion” means the specific facts and reasonable inferences drawn from those facts to convince an ordinarily prudent person that criminality is at hand. ll. The term “seizure,” or “detention,” means any restriction on the liberty interest of an individual. A seizure occurs when an officer's words or actions convey to a reasonable person that he or she is not free to leave. mm. The term “serious bodily injury” means an injury that involves a loss of consciousness, extreme physical pain, protracted and obvious disfigurement, protracted loss or impairment of the function of a body part or organ, or a substantial risk of death. nn. The term “serious use of force” means any action by a DPD officer that involves: i) the use of deadly force, including all critical firearms discharges; ii) a use of force in which the person suffers serious bodily injury or requires hospital admission; iii) a canine bite; and iv) the use of chemical spray against a restrained person. oo. The term “shall” means that the provision imposes a mandatory duty. pp. The term “supervisor” means a sworn DPD employee at the rank of sergeant or above and non-sworn employees with oversight responsibility for DPD employees.",200,City of Detroit | Opportunity Rising,"[""Definitions of Consent Decree""]","[""Top Links"", ""Site Menu""]","[""""]",[],[],[],"" -143,https://delcopa.gov/publicrelations/releases/2020/delcoraterminated2.html,Not Criminal Justice Related,Not Criminal Justice Related,"Delaware County Council Terminates DELCORA - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Delaware County Council Terminates DELCORA""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]","[""In a 4-0 vote, County Council terminated DELCORA and returned control to County taxpayers""]",[],[],"" -144,https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0376-3/,Complaints & Misconduct,Info About Officers,"","",200,"","","","","","","","" -145,http://www.lafayettepolice.us/152/animal-control,Contact Info & Agency Meta,Info About Agencies,"Animal Control | Lafayette, IN - Official Website","",200,"Police Department | Lafayette, IN - Official Website","[""Animal Control""]","[""Officer Hours"", ""Reporting Issues & Concerns""]","[""Contact Us"", ""Animal Control Office"", ""Hours"", ""Quick Links"", ""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -146,http://www.longbeach.gov/police/press-releases/murder-2300-blk-spaulding/,Poor Data Source,Poor Data Source,MURDER 2300 BLK SPAULDING,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 11/6/2016 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: MURDER 2300 BLK OF SPAULDING Contact: Media Relations Detail (562) 570-5273 UPDATE (11/15/2016): On November 11, 2016, police arrested 36-year-old Jorge Omar Chavez of Long Beach in connection with this investigation. Related news release Original News Release (11/6/2016): On 11/05/16 at approximately 9:55 p.m., officers were dispatched to the 2300 block of Spaulding regarding a hit shooting victim. Upon arrival officers found a male adult suffering from a gunshot wound to the upper torso. Victim was transported to a local hospital by LB Fire where he was pronounced deceased. Homicide detectives responded to handle the investigation. Incident is being investigated as possibly gang related Anyone with information is urged to contact Homicide Detectives Mark Mattia and Shea Robertson at (562) 570-7244. Anonymous tips may be submitted through ""LA Crime Stoppers"" by calling 1-800-222-TIPS (8477), downloading the ""P3 Tips"" app to your smart phone (available at the Apple App store and Google Play), or visiting http://www.lacrimestoppers.org/ This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -147,https://police.greenvillesc.gov/faq.aspx?qid=443,Not Criminal Justice Related,Not Criminal Justice Related,FAQs • One of the “nodes” is close to where I live. How soon,"",200,"Police Department | Greenville, SC - Official Website",[],"[""▼ GVL2040 Comprehensive Plan - Report to the Community FAQs""]","[""Categories"", ""Live Edit"", ""Loading""]",[],[],[],Skip to Main Content -148,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/112821blotter.pdf,Dispatch Logs,Police & Public Interactions,"","",404,"","","","","","","","" -149,http://www.lafayettepolice.us/2338/housing,Not Criminal Justice Related,Not Criminal Justice Related,"Housing | Lafayette, IN - Official Website","",200,"Police Department | Lafayette, IN - Official Website","[""Housing""]","[""Realtor John Townsend - Trueblood Real Estate"", ""FirstOption Mortgage"", ""Bradford Place Apartments"", ""James Management Group""]","[""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Government Services Our Community Business & Development How Do I... Transparency CustomLinks_14 Housing Housing Realtor John Townsend - Trueblood Real Estate Details 1.5% off your home listing EXCLUSIVE access to John's Air BnB's (2 homes) @ 30% off PLUS no cleaning fees FREE Comparative Market Analysis of your home. Scheduled quarterly real estate Q&A sessions (mortgages, buying, selling, etc.) Phone: (765) 250-0050 Email: j.townsend@truebloodre.com Website: https://www.truebloodre.com/john-townsend FirstOption Mortgage Details Free home appraisals for Military, Police, Fire, Health Care, and Teachers Flier: Homes for Heroes Contact: Steve Stemick Phone: 765-637-9771 Email: sstemick@myfirstoption.com Bradford Place Apartments Details Contact to learn about current discounts Phone: 844-848-1366 Website: https://www.bradfordplace-apts.com/ James Management Group Details Contact to learn about current discounts Properties: Georgetown South, Shoshone Apartments, Vantage Pointe Phone: 765-337-5246 Website: https://www.jamesmgt.com/ City Perks! Amusement Parks Automotive / Car Rental Banking Batteries Cellular Phone and TV Service Clothing/Shoe Stores Computers Confections Entertainment Events Fitness Florist Grocery Stores Hair Salon/Spa Services Health & Wellness Heating & Cooling Services Home Services, Parts & Paints Housing Pet Services/Supplies Restaurants Sports Travel TicketsatWork Other Employment Utilities Payment Submit a Request Permits & Licensing Agendas & Minutes Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate " -150,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/051521blotter.pdf,Dispatch Logs,Police & Public Interactions,"","",404,"","","","","","","","" -151,https://www.mass.gov/doc/jlm-13-2733-city-of-beverly-and-beverly-police-superiors-association-july-29-2015/download,Policies & Contracts,Info About Agencies,"","",200,"","","","","","","","" -152,https://townofnederland.colorado.gov/police,Contact Info & Agency Meta,Info About Agencies,Law Enforcement | Town of Nederland,"",200,Home | Town of Nederland,"[""Law Enforcement""]","[""Police Services""]","[""Pay a Fine or Ticket"", ""Police Records Request"", ""Kudos and Concerns"", ""Colorado Sex Offender Registry"", ""Notice: Fingerprinting Services Discontinued""]",[],[],"[""Contact Info"", ""Want to leave some feedback for an officer? Fill out the form below with as much information as you would like, and we will send it to the Boulder County Sheriff Office for review. You can leave contact information, or leave it black if you wish to remain anonymous.""]","" -153,http://www.lafayettepolice.us/296/compliments-concerns,Poor Data Source,Poor Data Source,"Compliments & Concerns | Lafayette, IN - Official Website",We encourage citizens to send in their commendations and complaints so that we can continue growing with our community.,200,"Police Department | Lafayette, IN - Official Website","[""Compliments & Concerns""]","[""Commendations""]","[""Ways to Send a Compliment"", ""Reasons For Commendation"", ""Received Commendations"", ""Contact Us"", ""Captain Brian Gossard"", """", ""Police Department"", """", ""FAQs"", ""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Your LPD Career Opportunities Community Outreach Training Center How Do I… Compliments & Concerns Commendations Everyone enjoys receiving recognition for their efforts and there is no question that most of the 140 employees of the Lafayette Police Department are doing an outstanding job in our fast growing city. We realize that many of our residents would like to know how to compliment our employees for a job well done. Ways to Send a Compliment Compliments and Commendations, either verbal or written, are 1 of the best ways to let our employees know that you appreciate their good work and extraordinary customer service. A commendation for an employee of the Lafayette Police Department is most often sent to the Chief of Police. You may also advise the employee's supervisor or Commanding Officer. Your compliments may be made: By email By phone Fax In person Informal note Letter Reasons For Commendation A compliment or commendation may address any event that you feel demonstrates any effort on the part of the employee that deserves special recognition. This may include such acts as: Significant life saving measures Unusual courtesy or compassion Other extraordinary acts Received Commendations All compliments and commendations are formally documented and the effected employees and their supervisors will be notified. Contact Us Captain Brian Gossard Email Police Department 601 Columbia Street Lafayette, IN 47901 Phone: 765-807-1200 Fax: 765-807-1281 Emergency: 911 FAQs What is a complaint? Who can make a complaint? How can a complaint be made? View All FAQs /FAQ.aspx Stay Connected LPD Podcast Citizens Police Academy D.A.R.E. Program Crime Prevention Camera Registration Crime Prevention Bulletin Online Crime Reporting Alarm Reduction Links Civil Service Commission Forms & Applications Graffiti Eradication Ride-Along Compliments & Concerns FAQs Public Safety Center and Parking Garage Public Safety Center and Parking Garage FAQ LPD Newsletter Sign-Up Career Opportunities Report a Crime Thank an Officer Stay Connected Alarm Reduction Contact Us 601 Columbia Street Lafayette, IN 47901 Phone: 765-807-1200 FAQs What is the number to the jail? Can you tell me if someone is wanted on warrant? How do I obtain a handgun permit? How can I request a street closure for a special event? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate " -154,http://www.longbeach.gov/police/press-releases/dui-saturation-patrol-results-1-/,Media Bulletins,Agency-Published Resources,DUI SATURATION PATROL RESULTS(1),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 12/5/2016 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: DUI SATURATION PATROL NETS TWO ARRESTS Contact: Media Relations Detail (562) 570-5273 The Long Beach Police Department Traffic Unit conducted a DUI Saturation Patrol on Saturday, December 3, 2016, between the hours of 6:00 p.m. and 2:00 a.m. High visibility enforcement efforts like this have a deterrent effect, lowering the incidents of impaired driving. The operation resulted in: 32 vehicle enforcement stops 2 DUI-alcohol suspects arrested 1 driver cited/arrested for operating a vehicle unlicensed or while suspended/revoked 22 citations issued for unsafe driving Studies of California drivers have shown that 30 percent of drivers in fatal crashes had one or more drugs in their systems. A study of active drivers showed more tested positive for drugs that may impair driving (14 percent) than did for alcohol (7.3 percent). Of the drugs, marijuana was most prevalent, at 7.4 percent, slightly more than alcohol. Drivers caught driving impaired can expect the impact of a DUI arrest to include jail time, fines, fees, DUI classes, license suspension and other expenses that can exceed $10,000, not to mention the embarrassment when friends and family find out. Drivers are encouraged to download the Designated Driver VIP, or “DDVIP,” free mobile app for Android or iPhone. The DDVIP app helps find nearby bars and restaurants that feature free incentives for the designated sober driver, from free non-alcoholic drinks to free appetizers and more. The feature-packed app even has social media tie-ins and even a tab for the non-DD to call Uber, Lyft or Curb. Long Beach Police Department will conduct a DUI/Drivers License Checkpoint on Friday, December 16, 2016, as part of our ongoing commitment to lowering deaths and injuries upon our streets and highways. The DUI Saturation Patrol was funded by a grant from the California Office of Traffic Safety, through the National Highway Traffic Safety Administration, reminding everyone to ‘Report Drunk Drivers: Call 9-1-1.’ This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -155,https://chandlerazpd.gov/police-facilities/desert-breeze-substation/,Contact Info & Agency Meta,Info About Agencies,Desert Breeze Substation – Chandler Police Department,"",200,Chandler Police Department,"[""Desert Breeze Substation""]",[],"[""Precinct Leadership"", ""Precinct Headquarters"", ""Quick Links"", ""Police Facilities"", """", """", """", """"]","[""Zac Cummard - Commander"", ""Contact"", ""About the Department"", ""Latest News"", ""Courage, Pride, Dedication © 2024 Chandler Police Department""]",[],[],"The Chandler Police Department main lobby will be closed for renovations. Please see below for further. The Chandler Police Department main lobby will be closed for renovations. Please see below for further. Toggle navigation City of Chandler Mayor’s Office City Council Fire Department Residents Business Employee Info Toggle navigation City of Chandler Mayor’s Office City Council Fire Department Residents Business Employee Info Toggle navigation Menu Chandler Police About the Department Careers Community Contact Data News Toggle navigation Menu Chandler Police About the Department Careers Community Contact Data News Home Police Facilities Desert Breeze Substation Home Police Facilities Desert Breeze Substation Search for: Desert Breeze Substation The Desert Breeze substation serves west Chandler. The precinct includes police beats 1-6. Precinct Leadership Zac Cummard - Commander 480.782.4153 Precinct Headquarters 251 N Desert Breeze Blvd W Chandler, Arizona 85226 Google Maps (480) 782-4800 Public Hours M-Th 8am to 5pm. Closed Holidays. The Chandler Police Department’s Desert Breeze Precinct is supervised by Commander Zac Cummard . The precinct is organized into two districts: District One and District Two. District One is composed of beats one through three and District Two is composed of beats four through six. The Desert Breeze station houses all of the patrol officers, and their supervisors, who work in Districts One and Two. These officers are responsible for an area that is approximately 21 square miles with a population of 87,000 residents. The Department’s Traffic Unit also works out of this facility, along with the Impound Hearing Office . In addition, one Crime Prevention Officer is assigned to the precinct. This Precinct is a mix of master-planned residential communities, multi-housing complexes, retail centers, and business establishments. Notable retail centers include the Chandler Pavilions, Chandler Gateway, Chandler Fashion Center, and Chandler Festival. Large multi-national corporations such as: Intel’s main campus, Freescale Semiconductor, Paypal, Iridium, and Americredit conduct their business in this area of Chandler with a number of small to mid-size companies. Chandler Regional Medical Center is also located in this Precinct along with Valley Christian and Seton High Schools, and the Arizona College Preparatory Academy’s Erie Campus. Search for: Quick Links About the Department Office of the Chief Interim Chief Of Police Melissa Deanda Assistant Chief Of Police Dave Ramer Department Events My Precinct Fingerprinting Services Request a Police Report Bicycle Registration General Orders/Accreditation Alarm Information Registered Sex Offenders Citizen Observer (Ride-Along) Vehicle Impounds Barking Dog Police Open Data Public Demonstration Guidelines Police Facilities Chandler Heights Substation Property and Evidence Desert Breeze Substation Downtown Station " -156,https://www.pleasantprairiewi.gov/departments/police/news/police_and_fire___rescue_news_archive/2019_news_releases/police_arrest_three_zion_men_in_kidnapping_event,Media Bulletins,Agency-Published Resources,Police Arrest Three Zion Men in Kidnapping Event - Village of Pleasant Prairie,"",200,Just a moment...,[],"[""Police Arrest Three Zion Men in Kidnapping Event""]","[""Follow Us on Social Media""]",[],[],[],"" -157,http://www.longbeach.gov/police/press-releases/murder---6400-block-of-coronado-avenue/,Media Bulletins,Agency-Published Resources,MURDER - 6400 block of Coronado Avenue,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 6/9/2016 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: MURDER - 6400 BLOCK OF CORONADO AVENUE Contact: Media Relations Detail (562) 570-5273 On June 9, 2016, at approximately 04:00 a.m., Officers responded to a shots call in the 6400 block of Coronado Avenue. Upon their arrival they found two adult male victims suffering from gunshot wounds to the upper torso. One victim was transported to a local hospital and is in stable condition with a non-life threatening injury. The other victim was determined deceased at the scene by Long Beach Fire. The deceased victim has been identified as Wylee Pritchett a 20 year-old resident of Lakewood. The motive of the shooting is still under investigation, and is not believed to be gang related. Anyone with information regarding the incident is urged to call Homicide Detectives at (562) 570-7244. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit http://www.lacrimestoppers.org/ This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -158,https://www.townofhamburgny.gov/citizens-police-academy/,Training & Hiring Info,Info About Officers,"","",404,"","","","","","","","" -159,https://delcopa.gov/vote/pdf/2022/p2022-write-in-cumulation-request.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -160,https://www.roseville.ca.us/government/departments/police_department/crime_log/crime_log_oct_03_-_oct_16__2020,Crime Maps & Reports,Agency-Published Resources,"","",404,"","","","","","","","" -161,https://www.clarkstown.gov/police/child-safety-seats/,Media Bulletins,Agency-Published Resources,Child Safety Seats – Town of Clarkstown,"",200," - Town of Clarkstown – New City, NY ","[""Child Safety Seats""]","[""Town of Clarkstown"", ""Town of Clarkstown"", ""Child Safety Seats"", ""Schedule A Car Seat Appointment"", ""NYS Child Restaint Law FAQ"", ""Thanks for signing up!"", ""Clarkstown eNews"", ""Government"", ""How Do I?"", ""Quick Links""]","[""Town of Clarkstown"", ""Town of Clarkstown"", ""Town of Clarkstown"", ""Sign up for our Newsletter"", ""© 2021 Town of Clarkstown""]",[],"[""The next child seat event will be on Sunday February 19th from 9am till 12pm at the Bardonia Fire House.""]","[""Departments"", ""Sign Up"", ""Find"", ""Apply"", ""Report"", ""Pay For""]","+1 (845) 639-2000 10 Maple Ave., New City, NY Search Search Close this search box. Search Search Close this search box. Town of Clarkstown Town Hall Town Supervisor Town Leadership & Administration Town Council Meeting & Council Member Information Town Clerk Public Inquires & Compliance Highway Department Road Maintenance, Yard Waste & Leaf Pickup Town Calendar What’s Happening in Clarkstown Agenda & Minutes Town Board Agenda & Minutes Boards & Commissions Boards & Commissions Members, Agendas, Minutes News Recent Press Releases & Town News Archive Town Code Local Laws, Ordinances & Resolutions Town History Read About The Town’s History Departments Assessor Attorney Building Engineering and Facilities Management Justice Court Mini Trans Personnel Planning Police Purchasing Parks & Recreation How Do I? Sign Up Community Pass eAlerts Ready Clarkstown Find Agenda & Minutes Official Town Map Permits, Applications, Flyers Town Code Town History Town Zoning Map Apply Building Permits Certificates of Occupancy Conservation License Disabled Parking Permits Employment Foil Request Dog License Fire Permits Marriage License Nanuet Train Station Tax Exemption Report Crime Code Violation Flooding Garbage & Recycling Street Lights & Potholes Pay For View or Pay Taxes Recreation Programs Pay For Tickets Residents 311 Request Report, Submit, Track & View Service Requests Building Permits Electrical, Plumbing & Structural Permits Parks & Recreation Recreation Programs, Parks, Centers, Pools & More Animal Care & Control Domestic Animals & Wildlife Compliance Senior Citizens Senior Programs, Clubs & Calendar Town Code Local Laws, Ordinances & Resolutions Recycling Recycling Guidelines & Tips Town of Clarkstown 10 Maple Avenue New City, NY 10956 (845) 639-2000 Business Building Permits Electrical, Plumbing, or Structural Permits Tourism Map Clarkstown Tourism Map Town Code Local Laws, Ordinances & Resolutions Boards & Commissions Boards & Commissions Members, Agendas, Minutes Planning Board Projects Current Planning Board Projects Under Review New City Chamber of Commerce Nanuet Chamber of Commerce Town of Clarkstown 10 Maple Avenue New City, NY 10956 (845) 639-2000 Community Libraries Clarkstown Local Free Libraries Schools Clarkstown Local School Districts Utilities Water & Electric Local Support Organizations Experiencing Hardship or Need Help? Senior Citizens Senior Programs, Clubs & Calendar Volunteer Fire & Ambulance Local Volunteer First Responders Town of Clarkstown 10 Maple Avenue New City, NY 10956 (845) 639-2000 Grievance Day, May 24, 2022, For Procedures Click Here " -162,https://detroitmi.gov/departments/police-department/abandoned-vehicle,Policies & Contracts,Info About Agencies,Abandoned Vehicle | City of Detroit,"Abandoned vehicles create community problems. Street cleaning and snow removal become difficult tasks with abandoned vehicles in the way. Abandoned vehicles in yards are possible fire hazards. Abandoned vehicles project a negative image of our city. Together, we can give Detroit the necessary makeover to produce clean streets. If the vehicle is your own: move it, have it towed, or donate it. If the vehicle is not yours; REPORT it to your local police precinct. City Ord. - Sec. 55-6-85. When are vehicles deemed abandoned. The following conditions are required before any vehicle shall be deemed to be an abandoned vehicle: (1) The vehicle shall be abandoned when it has remained on a public street, highway, alley or public place for a period of forty-eight (48) continuous hours or more and from its condition and the surrounding circumstances, shall reasonably appear to be unclaimed, discarded, deserted or abandoned. (2) A vehicle is deemed abandoned on private property when it has remained on the private property for a period of forty-eight (48) continuous hours or more without the consent of the owner or lessee of the property, or for a period of forty-eight (48) continuous hours or more after the consent of the owner has been revoked. (Code 1964, § 38-15-2)",200,City of Detroit | Opportunity Rising,"[""Abandoned Vehicle""]","[""Top Links"", ""Site Menu"", ""News & Events"", ""Contacts""]",[],[],[],[],"" -163,http://www.lafayettepolice.us/1879/water-tips,Not Criminal Justice Related,Not Criminal Justice Related,"Water Tips | Lafayette, IN - Official Website",Tips on water consumption and water equipment.,200,"Police Department | Lafayette, IN - Official Website","[""Water Tips""]",[],"[""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Government Services Our Community Business & Development How Do I... Transparency Home Government Departments H - W Water Works Water Tips Water Tips Keep meter pits uncovered from grass, dirt, or any kind of debris in case we need to get in the pit. Know where your inside shut off valve is located and exercise it occasionally. If you notice discolored water, attempt to flush by running the cold water in the bathtub for up to 20 minutes before calling. This will generally clear up any issue you may have. If you have a leak or broken pipe in your house turn off your inside shut off valve first to see if this stops the flow of water. If this does not stop the flow call 765-807-1100 to request a Customer Service Tech be sent to shut off water in the meter pit. Lafayette Water Works is responsible for the service lines that run from the water main to the meter. The service lines from the meter to the house are the customer's responsibility. If you notice a foul smell coming from your hot water, but not from the cold, it is most likely a problem with your water heater. If you just moved into your residence make sure your inside shut off valve is on before calling to set up service. Reports Meter Change-out Staff Upgrades Water's Path to You Water Tips Wellhead Protection Program Wellhead Protection Program Brochures Water Works Waivers Employment Utilities Payment Submit a Request Permits & Licensing Agendas & Minutes Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate " -164,https://springfield-or.gov/copy-of-springfield-police-seeking-community-input-via-online-survey/,Poor Data Source,Poor Data Source,Springfield Police Seeking Community Input Via Online Survey – City of Springfield Oregon,"",200,City of Springfield Oregon,"[""Springfield Police Seeking Community Input Via Online Survey""]",[],[],[],[],[],"" -165,https://hollister.ca.gov/government/city-departments/police/social-networking/,Contact Info & Agency Meta,Info About Agencies,"Social Networking – City of Hollister, California","",200,"City of Hollister, California",[],[],"[""Follow Us on..."", ""Follow HPD…."", ""Hollister Police Social Media Guide"", ""We are Hiring"", ""Follow Us on....""]",[],[],[],"" -166,https://www.antioch.il.gov/wpfb-file/03-10-17-police-and-fire-agenda-pdf-3/,Poor Data Source,Poor Data Source,"03-10-17 Police And Fire Agenda - Antioch, IL",9106 03 10 17 police and fire agenda pdf commissions commission agendas 2017 1489012459 ab4ffd3c187e6425c1be0346d2cb25ab 219x300 _3ldvcho1f1gc thumb jpg 08 34 19 0 pdf application trustees mary c dominiak ed macek jerry t johnson scott a pierce jay jozwiak ted p poulos lawrence m hanson mayor lori k romine village clerk notice of public meeting,200,"Home - Antioch, IL","[""03-10-17 Police And Fire Agenda""]",[],[],[],[],[],Open toolbar Accessibility Tools Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset -167,https://www.mass.gov/doc/anderson-deborah-v-boston-police-department-71510/download,Court Cases,Jails & Courts Specific,"","",200,"","","","","","","","" -168,https://spdblotter.seattle.gov/2012/08/28/two-arrested-for-trying-to-pimp-undercover-cops-at-westlake/,Media Bulletins,Agency-Published Resources,Two Arrested For Trying to Pimp Undercover Cops At Westlake - SPD Blotter,"",200,403 Forbidden,"[""Two Arrested For Trying to Pimp Undercover Cops At Westlake""]","[""Find Posts By Topic"", ""Featured Posts"", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],"Seattle.gov Choose a language: English English Google Translate may not accurately translate all content. Read disclaimer . For general City questions, please call 206-684-2489 . Tell us your requested language in English, and we can connect you with an interpreter. Continue Cancel Español Es posible que Google Translate no traduzca con precisión todo el contenido. Lea el descargo de responsabilidad . Si necesita ayuda en otro idioma, díganos en inglés nombre del idioma que necesita y lo conectaremos con un intérprete: 206-684-2489 Seguir Cancelar 中國語文 Google翻譯可能無法準確翻譯所有內容。 閱讀免責聲明 。 如果您需要翻譯,請用英語説出您所需要的語言,我們將爲你連接口譯員: 206-684-2489 繼續 取消 简体中文 Google翻译可能无法准确翻译所有内容。 阅读免责声明 。 如果您需要翻译,请用英语说出您所需要的语言,我们将为你连接口译员: 206-684-2489 继续 取消 Tiếng Việt Google Dịch có thể không dịch chính xác tất cả nội dung. Đọc tuyên bố từ chối trách nhiệm . Nếu quý vị cần hỗ trợ về ngôn ngữ, xin vui lòng cho chúng tôi biết ngôn ngữ quý vị cần hỗ trợ bằng tiếng Anh (ví dụ “Vietnamese”), chúng tôi sẽ kết nối quý vị với một thông dịch viên: 206-684-2489 Tiếp tục Huỷ bỏ русский язык Google Translate не может точно перевести весь контент. Прочтите отказ от ответственности . Если вам нужна языковая помощь, сообщите нам на английском, какой язык вам нужен, и мы свяжем вас с переводчиком: 206-684-2489 Продолжать Отмена Af-Soomaali Google Translate ayaan si sax ah u turjumi karin dhammaan waxyaabaha ku jira. Akhri afeef . Haddii aad u baahan tahay caawimaad luqadeed, fadlan noogu sheeg Ingiriisiga luqadda aad u baahan tahay, ka dib waxaan kugu xiri doonnaa turjubaan: 206-684-2489 Sii wad Jooji አማርኛ የጉግል ትርጉም ሁሉንም ይዘቶች በትክክል መተርጎም ላይችል ይችላል። ማስተባበያ አንብብ ፡፡ ኣስተርጓሚ ካስፈለግዎ የሚፈልጉትን ቋንቋ በእንግልዝኛ ይንገሩን፣ ከኣስተርጓሚ እናገናኝዎታለን። 206-684-2489 ቀጥል ሰርዝ 한국어 구글은 정확하게 모든 내용을 번역하지 않을 수 있습니다 번역. 읽기 면책 조항 . 언어지원이 필요한 경우, 필요한 언어를 영어로 말씀해 주시면 통역사와 연결해 드리겠습니다: 206-684-2489 계속하다 취소 Tagalog Maaaring hindi tumpak na isalin ng Google Translate ang lahat ng nilalaman. Basahin ang disclaimer . Para sa mga pangkalahatang katanungan sa Lungsod, mangyaring tawagan ang 206-684-2489 . Sabihin sa amin ang hiniling mong wika sa Ingles, at maikokonekta ka namin sa isang interpreter. Magpatuloy Kanselahin ภาษาไทย Google Translate อาจแปลเนื้อหาทั้งหมดไม่ถูกต้อง อ่านข้อจำกัดความรับผิดชอบ สำหรับคำถามทั่วไปเกี่ยวกับเมืองโปรดโทร 206-684-2489 บอกภาษาที่คุณต้องการเป็นภาษาอังกฤษและเราสามารถติดต่อคุณกับล่ามได้ ดำเนินการต่อ ยกเลิก 日本語 Google翻訳は、すべてのコンテンツを正確に翻訳するとは限りません. 免責事項をお読みください 。 市の一般的な質問については 206-684-2489 に電話してください。ご希望の言語を英語で教えていただければ、通訳をご案内いたします。 継続する キャンセル ភាសាខ្មែរ កម្មវិធីបកប្រែហ្គូហ្គោលមិនអាចបកប្រែមាតិកាទាំងអស់បានត្រឹមត្រូវទេ។ អានការបដិសេធ។ សម្រាប់សំណួរទូទៅរបស់ទីក្រុងសូមទូរស័ព្ទមក 206-684-2489 ។ ប្រាប់យើងពីភាសាដែលអ្នកស្នើសុំជាភាសាអង់គ្លេសហើយយើងអាចភ្ជាប់អ្នកជាមួយអ្នកបកប្រែភាសា។ បន្ត បោះបង់ ພາສາລາວ Google Translate ອາດຈະບໍ່ແປເນື້ອຫາທັງ ໝົດ ຢ່າງຖືກຕ້ອງ. ອ່ານປະຕິເສດ . ສຳ ລັບ ຄຳ ຖາມທົ່ວໄປຂອງເມືອງ, ກະລຸນາໂທຫາ 206-684-2489 . ບອກພວກເຮົາເປັນພາສາອັງກິດທີ່ທ່ານຮ້ອງຂໍ, ແລະພວກເຮົາສາມາດເຊື່ອມຕໍ່ທ່ານກັບນາຍແປພາສາ. ສືບຕໍ່ ຍົກເລີກ Українська Перекладач Google може не точно перекласти весь вміст. Прочитайте застереження . За загальними запитаннями про місто, будь ласка, телефонуйте 206-684-2489 . Розкажіть нам про вашу мову англійською мовою, і ми можемо зв’язати вас із перекладачем. Продовжуйте Скасувати Français Google Traduction peut ne pas traduire correctement tout le contenu. Lisez la clause de non-responsabilité . Pour des questions générales sur la ville, veuillez appeler le 206-684-2489 . Dites-nous votre langue souhaitée en anglais, et nous pourrons vous mettre en contact avec un interprète. Continuer Annuler " -169,http://www.tampa.gov/police/recruit-scholarship-program,Resources,Agency-Published Resources,Police Recruit Scholarship Program | City of Tampa,"The Tampa Police Department seeks the best possible candidates to become police officers with our agency. The department seeks those who have an interest in law enforcement and have no prior law enforcement certification. In order to attract the best-qualified candidates, the department developed the Police Recruit Scholarship Program. Those selected for this program are enrolled in the local Police Academy.",200,City of Tampa,"[""Police Recruit Scholarship Program""]","[""Police Department"", ""Key Services"", ""Report A Problem"", ""Contact"", ""Connect With Us""]",[],[],[],[],"" -170,http://lafayettepolice.us/340/guard-rail-repair-replacement,Not Criminal Justice Related,Not Criminal Justice Related,"Guard Rail Repair & Replacement | Lafayette, IN - Official Website",The Lafayette Street Department maintains and repairs publicly owned guard rails within the City. ,200,"Police Department | Lafayette, IN - Official Website","[""Guard Rail Repair & Replacement""]",[],"[""Contact Us"", """", ""Dan Crowell"", ""Street Department"", ""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Government Services Our Community Business & Development How Do I... Transparency Home Government Departments H - W Street Department Report Problems Guard Rail Repair & Replacement Guard Rail Repair & Replacement The Lafayette Street Department maintains and repairs publicly owned guard rails within the City. Contact Us “Keeping roadways in tip-top shape, sprucing up right-of-way areas, removing snow and picking up leaves—it’s all in a day’s work for your city Street Department.” - Dan Crowell, Street Commissioner Dan Crowell Street Commissioner Email Street Department 260 S 3rd Street Lafayette, IN 47901 Phone: 765-807-1410 Asphalt & Concrete Repair Graffiti Removal Guard Rail Repair & Replacement Right of Way Mowing Snow Removal Street Light Outages Submit a Request Employment Utilities Payment Submit a Request Permits & Licensing Agendas & Minutes Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Government Services Our Community Business & Development How Do I... Transparency Home Government Departments H - W Street Department Report Problems Guard Rail Repair & Replacement Guard Rail Repair & Replacement The Lafayette Street Department maintains and repairs publicly owned guard rails within the City. Contact Us “Keeping roadways in tip-top shape, sprucing up right-of-way areas, removing snow and picking up leaves—it’s all in a day’s work for your city Street Department.” - Dan Crowell, Street Commissioner Dan Crowell Street Commissioner Email Street Department 260 S 3rd Street Lafayette, IN 47901 Phone: 765-807-1410 Asphalt & Concrete Repair Graffiti Removal Guard Rail Repair & Replacement Right of Way Mowing Snow Removal Street Light Outages Submit a Request Employment Utilities Payment Submit a Request Permits & Licensing Agendas & Minutes Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In " -171,https://www.montgomeryohio.gov/topics/police-safety-programs/,Poor Data Source,Poor Data Source,"Police Safety Programs Toggle Archives - Montgomery, Ohio","",200,"Welcome - Montgomery, Ohio","[""FAQ Topic: Police Safety Programs Toggle""]","[""Primary menu links"", ""Action toolbar"", ""Speaker Requests"", ""Safety Village"", ""Safe Zone for Online Purchases"", ""Neighborhood Watch"", ""HomeSafe Checks"", ""Fingerprinting"", ""Community Emergency Response Team (CERT)1"", ""Background Record Check"", ""Welcome"", ""Engage"", ""Help"", ""Mental Health Resource""]",[],[],[],[],"Montgomery, Ohio Primary menu links Services Community Government Events News Contact Action toolbar Answers Report Issue Translate Translate language select Select language Afrikaans Albanian Amharic Arabic Armenian Azerbaijani Basque Belarusian Bengali Bosnian Bulgarian Catalan Cebuano Chichewa Chinese (Simplified) Chinese (Traditional) Corsican Croatian Czech Danish Dutch English Esperanto Estonian Filipino Finnish French Frisian Galician Georgian German Greek Gujarati Haitian Creole Hausa Hawaiian Hebrew Hindi Hmong Hungarian Icelandic Igbo Indonesian Irish Italian Japanese Javanese Kannada Kazakh Khmer Korean Kurdish (Kurmanji) Kyrgyz Lao Latin Latvian Lithuanian Luxembourgish Macedonian Malagasy Malay Malayalam Maltese Maori Marathi Mongolian Myanmar (Burmese) Nepali Norwegian Pashto Persian Polish Portuguese Punjabi Romanian Russian Samoan Scottish Gaelic Serbian Sesotho Shona Sindhi Sinhala Slovak Slovenian Somali Spanish Sundanese Swahili Swedish Tajik Tamil Telugu Thai Turkish Ukrainian Urdu Uzbek Vietnamese Welsh Xhosa Yiddish Yoruba Zulu Search Primary menu links Services Community Government Events News Contact Action toolbar Answers Report Issue Translate Translate language select Select language Afrikaans Albanian Amharic Arabic Armenian Azerbaijani Basque Belarusian Bengali Bosnian Bulgarian Catalan Cebuano Chichewa Chinese (Simplified) Chinese (Traditional) Corsican Croatian Czech Danish Dutch English Esperanto Estonian Filipino Finnish French Frisian Galician Georgian German Greek Gujarati Haitian Creole Hausa Hawaiian Hebrew Hindi Hmong Hungarian Icelandic Igbo Indonesian Irish Italian Japanese Javanese Kannada Kazakh Khmer Korean Kurdish (Kurmanji) Kyrgyz Lao Latin Latvian Lithuanian Luxembourgish Macedonian Malagasy Malay Malayalam Maltese Maori Marathi Mongolian Myanmar (Burmese) Nepali Norwegian Pashto Persian Polish Portuguese Punjabi Romanian Russian Samoan Scottish Gaelic Serbian Sesotho Shona Sindhi Sinhala Slovak Slovenian Somali Spanish Sundanese Swahili Swedish Tajik Tamil Telugu Thai Turkish Ukrainian Urdu Uzbek Vietnamese Welsh Xhosa Yiddish Yoruba Zulu Search Select language Afrikaans Albanian Amharic Arabic Armenian Azerbaijani Basque Belarusian Bengali Bosnian Bulgarian Catalan Cebuano Chichewa Chinese (Simplified) Chinese (Traditional) Corsican Croatian Czech Danish Dutch English Esperanto Estonian Filipino Finnish French Frisian Galician Georgian German Greek Gujarati Haitian Creole Hausa Hawaiian Hebrew Hindi Hmong Hungarian Icelandic Igbo Indonesian Irish Italian Japanese Javanese Kannada Kazakh Khmer Korean Kurdish (Kurmanji) Kyrgyz Lao Latin Latvian Lithuanian Luxembourgish Macedonian Malagasy Malay Malayalam Maltese Maori Marathi Mongolian Myanmar (Burmese) Nepali Norwegian Pashto Persian Polish Portuguese Punjabi Romanian Russian Samoan Scottish Gaelic Serbian Sesotho Shona Sindhi Sinhala Slovak Slovenian Somali Spanish Sundanese Swahili Swedish Tajik Tamil Telugu Thai Turkish Ukrainian Urdu Uzbek Vietnamese Welsh Xhosa Yiddish Yoruba Zulu Montgomery, Ohio Montgomery, Ohio Montgomery, Ohio " -172,https://chandlerazpd.gov/2013/07/prescription-medication-drop-boxes-now-accessible-in-all-chandler-police-stations/,Media Bulletins,Agency-Published Resources,Prescription Medication Drop-Boxes Now Accessible In All Chandler Police Stations – Chandler Police Department,"",200,Chandler Police Department,"[""Prescription Medication Drop-Boxes Now Accessible In All Chandler Police Stations""]",[],"[""Quick Links"", ""News Archives"", """", """", """", """"]","[""July 26, 2013"", ""Contact"", ""About the Department"", ""Latest News"", ""Courage, Pride, Dedication © 2024 Chandler Police Department""]",[],[],"The Chandler Police Department main lobby will be closed for renovations. Please see below for further. The Chandler Police Department main lobby will be closed for renovations. Please see below for further. Toggle navigation City of Chandler Mayor’s Office City Council Fire Department Residents Business Employee Info Toggle navigation City of Chandler Mayor’s Office City Council Fire Department Residents Business Employee Info Toggle navigation Menu Chandler Police About the Department Careers Community Contact Data News Toggle navigation Menu Chandler Police About the Department Careers Community Contact Data News Home Highlight Prescription Medication Drop-Boxes Now Accessible In All Chandler Police Stations Home Highlight Prescription Medication Drop-Boxes Now Accessible In All Chandler Police Stations Search for: Prescription Medication Drop-Boxes Now Accessible In All Chandler Police Stations July 26, 2013 By Sergeant J. Favazzo The Chandler Police Department has installed new MedReturn drop-boxes in the lobby of each station. These boxes offer a way for residents to anonymously dispose of unwanted or expired prescription drugs. The items that will be accepted for safe disposal include prescriptions, prescription patches, prescription medications, prescription ointments, over-the-counter medications, vitamins, medication samples and medications for pets. Items that cannot be accepted include sharp needles, thermometers, hydrogen peroxide, inhalers, aerosol cans, medication from businesses or clinics, and ointments, lotions or liquids. The MedReturn drop-boxes are located in the lobby area at each of the following Chandler Police Department buildings: Main Station 250 E. Chicago St. Open 24/7 Desert Breeze Substation 251 North Desert Breeze Blvd. Open Monday-Friday, 8:00 a.m. to 5:00 p.m. only Chandler Heights Substation 4040 E. Chandler Heights Rd. Open Monday-Friday, 8:00 a.m. to 5:00 p.m. only The purpose of the collection program is to provide a consistent system to remove unneeded medications from homes and to help curb the habit of disposing these products by flushing them into the City sewer system. For more information, please contact Sergeant Greg Howarth in the Police Crime Prevention Unit at 480-782-4928. Search for: Quick Links About the Department Office of the Chief Interim Chief Of Police Melissa Deanda Assistant Chief Of Police Dave Ramer Department Events My Precinct Fingerprinting Services Request a Police Report Bicycle Registration General Orders/Accreditation Alarm Information Registered Sex Offenders Citizen Observer (Ride-Along) Vehicle Impounds Barking Dog Police Open Data Public Demonstration Guidelines News Archives August 2022 September 2021 July 2021 September 2020 August 2020 June 2020 May 2020 April 2020 March 2020 February 2020 January 2020 December 2019 " -173,https://www.mass.gov/doc/2022-dalton-police-sergeant-sole-assessment-center-examination-employment-verification-form/download,Training & Hiring Info,Info About Officers,"","",200,"","","","","","","","" -174,https://southamptontownnypolice.gov/775/county-road-39-corridor,Not Criminal Justice Related,Not Criminal Justice Related,"County Road 39 Corridor Land Use Plan | Southampton, NY - Official Website","",200,"Police | Southampton, NY - Official Website","[""County Road 39 Corridor Land Use Plan""]",[],"[""Site Tools"", ""Contact Us"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Government Town Services Community Info How Do I Translate Page Site Tools Home My Account Printer Friendly Email Page Contact Us RSS Site Map Translate Page Notifications Documents Search Home Government Master Plans - Town Wide (Adopted) County Road 39 Corridor County Road 39 Corridor Land Use Plan County Road 39 - Design Guidelines (PDF) County Road 39 Corridor - Plan (PDF) County Road 39 Corridor Quadrant Map (PDF) County Road 39 Recommendations Maps (PDF) County Road 39 Zoning Maps (PDF) 1970 Master Plan 1999 Comprehensive Plan Climate Action Plan Coastal Res. & Water Prot. Plan Comprehensive Plan Transportation County Road 39 Corridor Master Plans By Hamlets (Adopted) Sustainability Plan Wireless Communications Plan Town Clerk Meetings, Agendas & Minutes Pay Your Taxes Online Services Applications, Forms & Fees Notify Me® FOIL Requests Contact Us Town of Southampton 116 Hampton Road Southampton, NY 11968 Phone: 631-283-6000 Banner photo credit: robertseifertphotography.com Site Links Contact Us Site Map Accessibility Copyright Notices Intranet Job Opportunities Title VI Non-discrimination Policy /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Government Town Services Community Info How Do I Translate Page Site Tools Home My Account Printer Friendly Email Page Contact Us RSS Site Map Translate Page Notifications Documents Search Home Government Master Plans - Town Wide (Adopted) County Road 39 Corridor County Road 39 Corridor Land Use Plan County Road 39 - Design Guidelines (PDF) County Road 39 Corridor - Plan (PDF) County Road 39 Corridor Quadrant Map (PDF) County Road 39 Recommendations Maps (PDF) County Road 39 Zoning Maps (PDF) 1970 Master Plan 1999 Comprehensive Plan Climate Action Plan Coastal Res. & Water Prot. Plan Comprehensive Plan Transportation County Road 39 Corridor Master Plans By Hamlets (Adopted) Sustainability Plan Wireless Communications Plan Town Clerk Meetings, Agendas & Minutes Pay Your Taxes Online Services Applications, Forms & Fees Notify Me® FOIL Requests Contact Us Town of Southampton 116 Hampton Road Southampton, NY 11968 Phone: 631-283-6000 Banner photo credit: robertseifertphotography.com Site Links Contact Us Site Map Accessibility Copyright Notices Intranet Job Opportunities Title VI Non-discrimination Policy /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In " -175,https://www.stcharlesil.gov/news/2018/07/25/police-bike-patrol-unit-patrols-where-cars-can%e2%80%99t,Poor Data Source,Poor Data Source,"Police Bike Patrol Unit Patrols Where Cars Can’t | News | City of St Charles, IL",City news: Police Bike Patrol Unit Patrols Where Cars Can’t,200,"City of St. Charles, Illinois","[""City of St. Charles, Illinois"", ""Police Bike Patrol Unit Patrols Where Cars Can’t""]","[""You are here"", ""Key Resources"", ""Connect With Us""]",[],[],[],[],"" -176,https://www.mass.gov/doc/appendix-x-family-assistance-copayments-and-deductibles-0/download,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -177,https://www.elburn.il.us/event/board-of-police-commissioners-2022-09-22/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -178,https://www.coppelltx.gov/faq.aspx?qid=142,Not Criminal Justice Related,Not Criminal Justice Related,FAQs • Can I have a birthday party at Life Safety Park?,"",200,"Coppell, TX | Official Website",[],"[""▼ Life Safety Park"", ""About the Park"", ""Teachers"", ""Parents/Caregivers"", ""Helpful Resources"", ""Teachers"", ""Parents/Caregivers""]","[""Categories"", ""Live Edit"", ""Loading""]",[],[],[],Skip to Main Content -179,https://www.montebelloca.gov/departments/police/divisions/patrol/district_policing,Contact Info & Agency Meta,Info About Agencies,"","",200,"","","","","","","","" -180,https://www.mass.gov/doc/randolph-covered-police-firefighterpdf/download,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -181,https://brookfieldil.gov/village-manager-selects-new-police-chief/petrak-press-release/,Media Bulletins,Agency-Published Resources,"","",404,"","","","","","","","" -182,https://delcopa.gov/courts/judges/pileggi.html,Poor Data Source,Poor Data Source,Judge Dominic F. Pileggi - Delaware County Court of Common Pleas,"",200,"Delaware County, Pennsylvania","[""Judge Dominic F. Pileggi""]",[],"[""Contact Us"", ""Courts Quick Links"", ""Government Center Quick Links"", ""About Delaware County""]",[],[],[],"Menu A to Z Court Departments Local Rules FAQ Government Center Judge Dominic F. Pileggi Home / Court Departments / Board of Judges / Judge Dominic F. Pileggi Judge Dominic F. Pileggi was elected in November 2015 and sworn in January 4, 2016 to a ten-year term on the Delaware County Court of Common Pleas. Judge Pileggi previously served in the Family Law Section and is currently assigned to the Criminal Law Section. Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 delcocourts@co.delaware.pa.us Courts Quick Links Juror eResponse PA Law Help Self Help - Custody Self Help - Divorce Juror Handbook Language Access Family Court Self Represented Litigant Guide Government Center Quick Links Marriage Licenses Crisis Connection Certified Recovery Specialist Public Access Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu A to Z Court Departments Local Rules FAQ Government Center Menu A to Z Court Departments Local Rules FAQ Government Center Menu A to Z Court Departments Local Rules FAQ Government Center Menu A to Z Court Departments Local Rules FAQ Government Center Menu A to Z Court Departments Local Rules FAQ Government Center Judge Dominic F. Pileggi Home / Court Departments / Board of Judges / Judge Dominic F. Pileggi Judge Dominic F. Pileggi Home / Court Departments / Board of Judges / Judge Dominic F. Pileggi Judge Dominic F. Pileggi Home / Court Departments / Board of Judges / Judge Dominic F. Pileggi Judge Dominic F. Pileggi was elected in November 2015 and sworn in January 4, 2016 to a ten-year term on the Delaware County Court of Common Pleas. Judge Pileggi previously served in the Family Law Section and is currently assigned to the Criminal Law Section. Judge Dominic F. Pileggi was elected in November 2015 and sworn in January 4, 2016 to a ten-year term on the Delaware County Court of Common Pleas. Judge Pileggi previously served in the Family Law Section and is currently assigned to the Criminal Law Section. Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 delcocourts@co.delaware.pa.us Courts Quick Links Juror eResponse PA Law Help Self Help - Custody Self Help - Divorce Juror Handbook Language Access Family Court Self Represented Litigant Guide Government Center Quick Links Marriage Licenses Crisis Connection Certified Recovery Specialist Public Access Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more " -183,https://pittsburghpa.gov/files/police/orders/ch4/43-10.01-juvenile-policy-legal-mandates-regarding-child-abuse.pdf,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -184,https://www.providenceri.gov/hr/wellness/cop-manage-anxiety-9-11/,Poor Data Source,Poor Data Source,City of Providence CoP Manage Anxiety 9.11 - City of Providence,"",200,Sucuri WebSite Firewall - Access Denied,"[""CoP Manage Anxiety 9.11""]","[""Share this story"", ""Providence City Hall"", ""Follow Us on Social Media:""]","[""City Of Providence"", ""Mayor Brett Smiley"", ""SIGN UP FOR OUR WEEKLY E-NEWS | Haga clic aquí para español"", ""Lists *""]",[],[],[],"Skip To Menu Skip To Content Skip To Accessibility Options Language Language Arabic Chinese (Traditional) English Khemer Portuguese Spanish City Of Providence Mayor Brett Smiley Search Accessibility City Of Providence Mayor Brett Smiley Search Accessibility City Of Providence Mayor Brett Smiley City Of Providence Mayor Brett Smiley Search Accessibility CITY HALL I Want to… Mayor’s Office Departments City Council Code of Ordinances More Job Opportunities DOING BUSINESS Construction Ethics Purchasing – Open RFPs Running a Business Starting a Business EVENTS NEWS PVD 311 EXPLORE Explore Providence Providence Parks Providence Recreation CITY HALL I Want to… Mayor’s Office Departments City Council Code of Ordinances More Job Opportunities DOING BUSINESS Construction Ethics Purchasing – Open RFPs Running a Business Starting a Business EVENTS NEWS PVD 311 EXPLORE Explore Providence Providence Parks Providence Recreation PVD 311 CITY HALL I Want to … MAYOR BRETT P. SMILEY Departments City Council Find a Meeting Agenda Code of Ordinances More Job Opportunities DOING BUSINESS Construction Ethics Running a Business Starting a Business Purchasing EVENTS NEWS EXPLORE Explore Providence Parks Recreation ACCESSIBILITY CoP Manage Anxiety 9.11 CoP Manage Anxiety 9.11 Share this story email icon. Click to share on email twitter icon. Click to share on twitter facebook icon. Click to share on facebook linkedIn Icon. Click to share on LinkedIn CoP Manage Anxiety 9.11 CoP Manage Anxiety 9.11 Share this story email icon. Click to share on email twitter icon. Click to share on twitter facebook icon. Click to share on facebook linkedIn Icon. Click to share on LinkedIn CoP Manage Anxiety 9.11 Share this story email icon. Click to share on email twitter icon. Click to share on twitter facebook icon. Click to share on facebook linkedIn Icon. Click to share on LinkedIn Share this story email icon. Click to share on email twitter icon. Click to share on twitter facebook icon. Click to share on facebook linkedIn Icon. Click to share on LinkedIn SIGN UP FOR OUR WEEKLY E-NEWS | Haga clic aquí para español Email * Lists * City News Zip * Providence City Hall 401-680-5000 25 Dorrance Street Providence, Rhode Island 02903 Get Directions For press inquires, click here. Follow Us on Social Media: Facebook Icon Twitter Icon Instagram Icon SIGN UP FOR OUR WEEKLY E-NEWS | Haga clic aquí para español Email * Lists * City News Zip * Providence City Hall 401-680-5000 25 Dorrance Street Providence, Rhode Island 02903 Get Directions For press inquires, click here. Follow Us on Social Media: Facebook Icon Twitter Icon Instagram Icon SIGN UP FOR OUR WEEKLY E-NEWS | Haga clic aquí para español Email * Lists * City News Zip * Providence City Hall 401-680-5000 25 Dorrance Street Providence, Rhode Island 02903 Get Directions For press inquires, click here. Follow Us on Social Media: Facebook Icon Twitter Icon Instagram Icon SIGN UP FOR OUR WEEKLY E-NEWS | Haga clic aquí para español Email * Lists * City News Zip * " -185,https://spdblotter.seattle.gov/2017/01/07/police-respond-to-three-fatal-heroin-overdoses-remind-public-of-good-samaritan-law/,Media Bulletins,Agency-Published Resources,"Police Respond to Three Fatal Heroin Overdoses, Remind Public of ""Good Samaritan"" Law - SPD Blotter","",200,403 Forbidden,"[""Police Respond to Three Fatal Heroin Overdoses, Remind Public of “Good Samaritan” Law""]","[""Find Posts By Topic"", ""Featured Posts"", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],"Seattle.gov Choose a language: English English Google Translate may not accurately translate all content. Read disclaimer . For general City questions, please call 206-684-2489 . Tell us your requested language in English, and we can connect you with an interpreter. Continue Cancel Español Es posible que Google Translate no traduzca con precisión todo el contenido. Lea el descargo de responsabilidad . Si necesita ayuda en otro idioma, díganos en inglés nombre del idioma que necesita y lo conectaremos con un intérprete: 206-684-2489 Seguir Cancelar 中國語文 Google翻譯可能無法準確翻譯所有內容。 閱讀免責聲明 。 如果您需要翻譯,請用英語説出您所需要的語言,我們將爲你連接口譯員: 206-684-2489 繼續 取消 简体中文 Google翻译可能无法准确翻译所有内容。 阅读免责声明 。 如果您需要翻译,请用英语说出您所需要的语言,我们将为你连接口译员: 206-684-2489 继续 取消 Tiếng Việt Google Dịch có thể không dịch chính xác tất cả nội dung. Đọc tuyên bố từ chối trách nhiệm . Nếu quý vị cần hỗ trợ về ngôn ngữ, xin vui lòng cho chúng tôi biết ngôn ngữ quý vị cần hỗ trợ bằng tiếng Anh (ví dụ “Vietnamese”), chúng tôi sẽ kết nối quý vị với một thông dịch viên: 206-684-2489 Tiếp tục Huỷ bỏ русский язык Google Translate не может точно перевести весь контент. Прочтите отказ от ответственности . Если вам нужна языковая помощь, сообщите нам на английском, какой язык вам нужен, и мы свяжем вас с переводчиком: 206-684-2489 Продолжать Отмена Af-Soomaali Google Translate ayaan si sax ah u turjumi karin dhammaan waxyaabaha ku jira. Akhri afeef . Haddii aad u baahan tahay caawimaad luqadeed, fadlan noogu sheeg Ingiriisiga luqadda aad u baahan tahay, ka dib waxaan kugu xiri doonnaa turjubaan: 206-684-2489 Sii wad Jooji አማርኛ የጉግል ትርጉም ሁሉንም ይዘቶች በትክክል መተርጎም ላይችል ይችላል። ማስተባበያ አንብብ ፡፡ ኣስተርጓሚ ካስፈለግዎ የሚፈልጉትን ቋንቋ በእንግልዝኛ ይንገሩን፣ ከኣስተርጓሚ እናገናኝዎታለን። 206-684-2489 ቀጥል ሰርዝ 한국어 구글은 정확하게 모든 내용을 번역하지 않을 수 있습니다 번역. 읽기 면책 조항 . 언어지원이 필요한 경우, 필요한 언어를 영어로 말씀해 주시면 통역사와 연결해 드리겠습니다: 206-684-2489 계속하다 취소 Tagalog Maaaring hindi tumpak na isalin ng Google Translate ang lahat ng nilalaman. Basahin ang disclaimer . Para sa mga pangkalahatang katanungan sa Lungsod, mangyaring tawagan ang 206-684-2489 . Sabihin sa amin ang hiniling mong wika sa Ingles, at maikokonekta ka namin sa isang interpreter. Magpatuloy Kanselahin ภาษาไทย Google Translate อาจแปลเนื้อหาทั้งหมดไม่ถูกต้อง อ่านข้อจำกัดความรับผิดชอบ สำหรับคำถามทั่วไปเกี่ยวกับเมืองโปรดโทร 206-684-2489 บอกภาษาที่คุณต้องการเป็นภาษาอังกฤษและเราสามารถติดต่อคุณกับล่ามได้ ดำเนินการต่อ ยกเลิก 日本語 Google翻訳は、すべてのコンテンツを正確に翻訳するとは限りません. 免責事項をお読みください 。 市の一般的な質問については 206-684-2489 に電話してください。ご希望の言語を英語で教えていただければ、通訳をご案内いたします。 継続する キャンセル ភាសាខ្មែរ កម្មវិធីបកប្រែហ្គូហ្គោលមិនអាចបកប្រែមាតិកាទាំងអស់បានត្រឹមត្រូវទេ។ អានការបដិសេធ។ សម្រាប់សំណួរទូទៅរបស់ទីក្រុងសូមទូរស័ព្ទមក 206-684-2489 ។ ប្រាប់យើងពីភាសាដែលអ្នកស្នើសុំជាភាសាអង់គ្លេសហើយយើងអាចភ្ជាប់អ្នកជាមួយអ្នកបកប្រែភាសា។ បន្ត បោះបង់ ພາສາລາວ Google Translate ອາດຈະບໍ່ແປເນື້ອຫາທັງ ໝົດ ຢ່າງຖືກຕ້ອງ. ອ່ານປະຕິເສດ . ສຳ ລັບ ຄຳ ຖາມທົ່ວໄປຂອງເມືອງ, ກະລຸນາໂທຫາ 206-684-2489 . ບອກພວກເຮົາເປັນພາສາອັງກິດທີ່ທ່ານຮ້ອງຂໍ, ແລະພວກເຮົາສາມາດເຊື່ອມຕໍ່ທ່ານກັບນາຍແປພາສາ. ສືບຕໍ່ ຍົກເລີກ Українська Перекладач Google може не точно перекласти весь вміст. Прочитайте застереження . За загальними запитаннями про місто, будь ласка, телефонуйте 206-684-2489 . Розкажіть нам про вашу мову англійською мовою, і ми можемо зв’язати вас із перекладачем. Продовжуйте Скасувати Français Google Traduction peut ne pas traduire correctement tout le contenu. Lisez la clause de non-responsabilité . Pour des questions générales sur la ville, veuillez appeler le 206-684-2489 . Dites-nous votre langue souhaitée en anglais, et nous pourrons vous mettre en contact avec un interprète. Continuer Annuler " -186,https://champaignil.gov/2012/05/14/police-respond-to-weapon-call-central-high-school-610-w-university-ave/,Media Bulletins,Agency-Published Resources,"Police Respond to Weapon Call (Central High School, 610 W. University Ave.) - City of Champaign","",200,403 Forbidden,"[""Police Respond to Weapon Call (Central High School, 610 W. University Ave.)""]","[""News Releases"", ""Department News""]",[],[],[],[],"skip to content City of Champaign Main Menu Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs Police Respond to Weapon Call (Central High School, 610 W. University Ave.) Search Posted on May 14, 2012 At approximately 12:51 p.m. Friday, officers responded to Central High School for a report of a weapon after a student reported seeing a possible handgun in a student’s possession. A student at Central High School reported to school staff that a gun had been spotted in another student’s backpack. The staff located the student, but not the backpack. He was questioned by police and subsequently released. During the investigation, it was reported to police that another student, a 16 year-old male, had taken the backpack away from the original student and left the area with it. He was also questioned by police and released. After conducting a thorough search of the school, an Airsoft gun was found in a second floor classroom. Additional information led police to Westside Park, where the pellets for the Airsoft gun were located in the park’s Gazebo. “The students’ willingness to provide information to police and the school district’s timely response to this incident resulted in recovery of the Airsoft gun. The staff at Central took appropriate action and kept the students safe during the incident. Thankfully, no students were harmed,” says Deputy Chief Gallo. Categories: Police Department Press Releases Subscribe to City News Read All City News News Releases General Construction Fire Department Police Department Department News City Council City Manager’s Office Equity and Engagement Department Finance Department Fire Department Human Resources Department Information Technologies Department Legal Department Library METCAD 9-1-1 Neighborhood Services Department Planning and Development Department Police Department Public Works Department The Champaign Insider City Newsletter City of Champaign City of Champaign 102 N. Neil St. Champaign, IL 61820 217-403-8700 Site Disclaimer I Privacy Policy City of Champaign Main Menu Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs City of Champaign Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs " -187,https://www.ci.plymouth.mi.us/services/police,Poor Data Source,Poor Data Source,"Police - City of Plymouth, MI","",200,Just a moment...,"[""Police""]",[],[],[],[],[],"" -188,https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0202/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -189,https://www.rentonwa.gov/city_hall/police/police_services/special_operations,Contact Info & Agency Meta,Info About Agencies,Special Operations - City of Renton,"",200,Just a moment...,"[""CITY OF RENTON WASHINGTON""]","[""Special Operations""]",[],"[""SWAT"", ""Directed Enforcement Team (DET)"", ""Special Enforcement Team (SET)"", ""Drug Activity and Reporting""]",[],[],Skip navigation -190,https://alpha.austin.gov/es/police-oversight/2020-06-05-13/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -191,https://dagsboro.delaware.gov/ngg_tag/new-police-cars/,Poor Data Source,Poor Data Source,New Police Cars Archives - Town of Dagsboro,"",200,Home - Town of Dagsboro - Sussex County Delaware,[],"[""Images tagged \""new-police-cars\""""]","[""Menu"", ""Online Payments"", ""Agendas & Minutes"", ""Contact Us"", ""Connect With Us!""]",[],[],[],"Skip to Content Skip to Footer Toggle navigation Menu Home Departments Town Hall Police Department Water Department Government Town Council Town Council Members Planning Commission Town Zoning Map Town Code Board of Adjustment Members Budgets Town Elections Community General Town Information History Fire Department Taxes & Utilities Prince George’s Chapel Prince George’s Chapel Cemetery Comprehensive Land Use Plan Houses of Worship Cable Services Hurricane Preparedness Flood Zone Information Christmas Events Forms Contact Us Skip to Content Skip to Footer Toggle navigation Menu Home Departments Town Hall Police Department Water Department Government Town Council Town Council Members Planning Commission Town Zoning Map Town Code Board of Adjustment Members Budgets Town Elections Community General Town Information History Fire Department Taxes & Utilities Prince George’s Chapel Prince George’s Chapel Cemetery Comprehensive Land Use Plan Houses of Worship Cable Services Hurricane Preparedness Flood Zone Information Christmas Events Forms Contact Us Skip to Content Skip to Footer Toggle navigation Menu Home Departments Town Hall Police Department Water Department Government Town Council Town Council Members Planning Commission Town Zoning Map Town Code Board of Adjustment Members Budgets Town Elections Community General Town Information History Fire Department Taxes & Utilities Prince George’s Chapel Prince George’s Chapel Cemetery Comprehensive Land Use Plan Houses of Worship Cable Services Hurricane Preparedness Flood Zone Information Christmas Events Forms Contact Us Listen Images tagged ""new-police-cars"" << Mar 2024 >> S M T W T F S 25 26 27 28 29 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 2 3 4 5 6 Online Payments Agendas & Minutes Contact Us Connect With Us! Listen Images tagged ""new-police-cars"" << Mar 2024 >> S M T W T F S 25 26 27 28 29 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 2 3 4 5 6 Online Payments Agendas & Minutes Contact Us Connect With Us! Listen Images tagged ""new-police-cars"" << Mar 2024 >> S M T W T F S 25 26 27 28 29 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 2 3 4 5 6 Online Payments Agendas & Minutes Contact Us Connect With Us! Listen Images tagged ""new-police-cars"" << Mar 2024 >> S M T W T F S 25 26 27 28 29 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 2 3 4 5 6 Online Payments Agendas & Minutes Contact Us Connect With Us! " -192,https://norfolkne.gov/government/departments/police-division/press-releases/may-13th-press-release.html,Media Bulletins,Agency-Published Resources,"May 13th Press Release - City of Norfolk, NE","",200,"Welcome to Norfolk, NE - City of Norfolk, NE","[""City of Norfolk, NE"", ""Police Division"", ""May 13th Press Release"", ""City of Norfolk, NE""]",[],[],[],"[""Still looking for something?""]","[""Contact Us"", ""Pay or Apply..."", ""Government..."", ""Services..."", ""Business..."", ""Amenities...""]","" -193,https://www.coppelltx.gov/faq.aspx?qid=106,Not Criminal Justice Related,Not Criminal Justice Related,FAQs • Is it legal to burn trash in Coppell?,"",200,"Coppell, TX | Official Website",[],"[""▼ Fire Department - Services & Education"", ""Helpful Resources"", ""Helpful Resources"", ""Helpful Resources"", ""Helpful Resources"", ""Emergency Medical Services ( EMS ) Patient Medical Records and/or Medical Billing Records""]","[""Categories"", ""Live Edit"", ""Loading""]",[],[],[],Skip to Main Content -194,https://police.bixbyok.gov/faq.aspx?qid=83,Resources,Agency-Published Resources,FAQs • How do I change my password?,"",200,"Bixby Police Department, OK | Official Website",[],"[""▼ Nixle Alert System""]","[""Categories"", ""Live Edit"", ""Helpful Links"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -195,https://beaumonttexas.gov/beaumont-police-arrest-3-for-aggravated-sexual-assault-aggravated-robbery-and-aggravated-kidnapping-1155-ih-10-n/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -196,https://police.crystalmn.gov/police/services/request_a_report,Records Request Info,Agency-Published Resources,Request a Report - City of Crystal-Police,"",200,Just a moment...,"[""Request a Report""]",[],"[""Sign up for a city newsletter or notification."", ""Police Department"", ""Lobby Hours:""]","[""Report requests will be processed within 10 business days."", ""Monday - Friday""]",[],[],"" -197,https://www.southamptontownnypolice.gov/608/animal-control,Not Criminal Justice Related,Not Criminal Justice Related,"Animal Control | Southampton, NY - Official Website","",200,"Police | Southampton, NY - Official Website","[""Animal Control""]","[""Cruelty & Neglect Complaints"", ""Resources"", ""SPCAs, Humane Societies & Shelters"", ""Government Agencies"", ""Law Enforcement Sites"", ""Animal Control Agencies"", ""Miscellaneous Local Links"", ""Dog Licenses""]","[""Site Tools"", ""Contact Us"", ""Animal Control Office"", ""Ryan Murphy"", """", ""Hours:"", ""FAQs"", ""Contact Us"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Government Town Services Community Info How Do I Translate Page Site Tools Home My Account Printer Friendly Email Page Contact Us RSS Site Map Translate Page Notifications Documents Search Home Government Departments Public Safety Animal Control Animal Control Cruelty & Neglect Complaints Southampton residents, please contact the Suffolk County SPCA for cruelty and neglect complaints Resources United State Department of Agriculture Animal Welfare Act SPCAs, Humane Societies & Shelters American Humane Association American Society for the Prevention of Cruelty to Animals Animal Rescue Fund of the Hamptons Bide-A-Wee Home Association Suffolk County, New York SPCA The Humane Society of the United States Southampton Animal Shelter Foundation Government Agencies New York State Assembly Bills - Get the latest updates on pending legislation New York State Department of Agriculture and Markets Suffolk County Government - Lists Suffolk government agencies online U.S. Department of Agriculture U.S.D.A. Animal and Plant Health Inspection Service U.S. Fish and Wildlife Service Home Page New York State Department of Environmental Conservation Law Enforcement Sites Southampton Town, New York Police Department East Hampton Town, New York Police Department Southampton Village, New York Police Department Suffolk County, New York Police Home Page Suffolk County Sheriff's Department, New York Home Page New York City Police New York State Police U.S. Department Of Justice U.S. Drug Enforcement Agency Animal Control Agencies Babylon, New York Animal Control Brookhaven, New York Animal Control National Animal Control Association New York City Animal Care and Control Center Riverhead, New York Animal Control Smithtown, New York Animal Control Miscellaneous Local Links Hamptons Online East Hampton Star Newspaper Dan's Papers Southampton Press Newspaper Wildlife Rescue Center of the Hamptons The Wildlife Rescue Center of the Hamptons, Inc is a not-for-profit corporation dedicated to the rehabilitation of wild animals accidentally impacted Riverhead Foundation Rescue Center - Long Island Aquarium Contact Us Animal Control Office Ryan Murphy Public Safety Emergency Management Administrator 27 Ponquogue Ave Hampton Bays, NY 11946 Ph: 631-702-2915 Fx: 631-283-2694 Hours: Monday-Friday 8:30 am – 4:00 pm Dog Licenses Dog License Information (PDF) Dog License Application (PDF) Dog License Status Change Online Form FAQs How do I contact Animal Control and where are you located? What do I do if I have an animal emergency when Animal Control is closed? View All /FAQ.aspx Southampton Animal Shelter Foundation Town Clerk Meetings, Agendas & Minutes Pay Your Taxes Online Services Applications, Forms & Fees Notify Me® FOIL Requests Contact Us Town of Southampton 116 Hampton Road Southampton, NY 11968 Phone: 631-283-6000 Banner photo credit: robertseifertphotography.com Site Links Contact Us Site Map Accessibility Copyright Notices Intranet Job Opportunities Title VI Non-discrimination Policy /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate " -198,https://www.lomalinda-ca.gov/services/police_department/tips,Resources,Agency-Published Resources,Tips - City of Loma Linda,"",200,Just a moment...,"[""Tips""]",[],[],"[""City Hall Hours:"", ""Building & Safety Hours:"", ""Quick Links:""]",[],[],"" -199,https://www.mass.gov/doc/sco-pace-disenrol-scopdf/download,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -200,https://www.mass.gov/doc/unit-5-cops-salary-chart-effective-742021/download,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -201,https://www.fortworthtexas.gov/departments/police/events/police-chief-finalist,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -202,https://www.antioch.il.gov/wpfb-file/police-blotter-02-01-21-to-02-07-21-pdf/,Arrest Records,Police & Public Interactions,"Police Blotter 02-01-21 To 02-07-21 - Antioch, IL",17529 police blotter 02 01 21 to 07 pdf police_department police_blotters 2021 1625764667 887817471521d7d07cbd900fcd6c9e7e c0831aa0de873faa40423ef928807e829deda5db0008083727a1946e5c9c09fc 300x160 _crkpbiaiahbd thumb jpg 03 16 08 52 34 0 207 46 13 189 23 pdf application num_pages pagefailed_1 pagefailed_2 pagefailed_3 pagefailed_4 pagefailed_5 pagefailed_6 pagefailed_7 pagefailed_8 pagefailed_9 pagefailed_10 pagefailed_11 pagefailed_12 pagefailed_13 pagefailed_14 pagefailed_15 pagefailed_16 pagefailed_17 pagefailed_18 pagefailed_19 pagefailed_20 pagefailed_21 pagefailed_22,200,"Home - Antioch, IL","[""Police Blotter 02-01-21 To 02-07-21""]",[],[],[],[],[],Open toolbar Accessibility Tools Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset -203,http://www.cityofpataskalaohio.gov/cop_people/tom-lee/,Not Criminal Justice Related,Not Criminal Justice Related,Tom Lee - City Of Pataskala,Official Website,200,Home - City Of Pataskala,"[""City Of Pataskala"", ""Tom Lee""]","[""Official Website""]",[],"[""Tom Lee Council Member Ward 1""]",[],[],Document Library Calendar Public Services Pay Court Ticket Online City Of Pataskala Official Website Blog Community Police Obtain Fingerprints Solicitor’s Permit Citizens Police Academy Important Links/Resources Prescription Drug Drop Off Police Officer Job Application History of the Pataskala Police Department Curfew Vacation House Check Form Fire School Districts Residents Taxes in Pataskala RITA Tax Local Animal Shelter/Lost Pets Dog License BMV Info Licking County Health Department Register to Vote Report a Gas Emergency New to Pataskala? Good Neighbor Guidelines Outdoor Activities Attractions City Departments Mayor Administration Garage Sale Permit Adopt-A-Street Program Rent a Park Shelter Current Bids and RFQ’s Outdoor Activity/Event Permit Parade-Assembly Form Parks and Recreation Economic Development Human Resources Utilities Utility Rates Water and Sewer Billing/ E-Billing Interesting Facts and Information Storm Water Management Program Report a Water Leak Finance Pataskala’s Income Tax Budget Financial Reports Popular Annual Financial Report (PAFR) Annual Comprehensive Financial Reports Financial Condition Reports 2023 Financial Condition Reports 2022 Financial Condition Reports 2021 Financial Condition Reports 2020 Financial Condition Reports 2019 Financial Condition Reports 2018 Financial Condition Reports 2017 Financial Condition Reports 2016 Financial Condition Reports 2015 Financial Condition Reports 2014 Financial Condition Reports 2013 Financial Condition Reports 2012 Financial Condition Reports Audited Financial Reports Pataskala Open Checkbook Mayor’s Court Important Traffic Violation Info Pay Fines or Search Case Files How to Pay Fines Traffic and General Offense Codes Plea Descriptions Court Appearance Times Your Rights in the Pataskala’s Mayor’s Court Downloadable Forms Sealing a Record Informational Court Links Mayor’s Court Prosecutor Pataskala’s Mayors Court Magistrate Mayor’s Court Rules Criminal/Traffic Diversion Bond Schedule Fine Schedule Legal Public Service/Streets Pothole Repair Report a Pothole Right of Way Snow Removal Traffic Signals & Street Lights Drainage/Ditches Issues Planning & Zoning Permit Questions Planning & Zoning Fee Schedule Discharge Map Zoning Maps Permits Comprehensive Plan Properties With Posted Code Violations Government City Council Ward Map Tom H. Lee – Ward 1 Mary Hite – Ward 2 Deborah Kohman – Ward 3 Brandon Galik – Ward 4 Dustin Epperson – At-Large Jude Hampshire – At-Large Andy Walther – At Large Clerk of Council Council Packet Public Notices Agendas Meeting Minutes Audio/Video Recordings Legislation Approved Ordinances & Resolutions 2024 Resolutions 2024 Ordinances 2023 Resolutions 2023 Ordinances 2022 Resolutions 2022 Ordinances 2021 Resolutions 2021 Ordinances 2020 Resolutions 2020 Ordinances 2019 Resolutions 2019 Ordinances 2018 Resolutions 2018 Ordinances 2017 Resolutions 2017 Ordinances 2016 Resolutions 2016 Ordinances 2015 Resolutions 2015 Ordinances Codified Ordinances Charter Public Records Request Information Boards and Commissions Personnel Board of Review Planning and Zoning Commission Board of Zoning Appeals Parks and Recreation Advisory Board Planning & Zoning Commission Board of Zoning Appeals Document Library Calendar Public Services Pay Court Ticket Online -204,https://hutchinsonmn.gov/document_category/police/,Poor Data Source,Poor Data Source,Police Archives - City of Hutchinson,"",200,403 Forbidden,"[""Police""]","[""Footer""]",[],[],[],[],"" -205,https://www.mass.gov/doc/gardnerpolicesergeant2119rtf/download,Training & Hiring Info,Info About Officers,"","",200,"","","","","","","","" -206,https://www.ci.oakley.ca.us/police-accident-reports/,Accident Reports,Police & Public Interactions,Police Accident Reports - City of Oakley,"",200,City of Oakley - City of Oakley,"[""Police Accident Reports""]",[],[],[],[],[],"Skip to content Community Animal Services ARPA Updates Civic Center and Laurel Road Message Board Emergency Services Evacuation Information Hospitals/ Clinics Housing Job Openings Library Oakley Election 2022 Schools Seniors Transportation Utilities Veterans How Do I? Departments Building City Attorney City Clerk City Council City Manager’s Office Code Enforcement Economic Development Finance Human Resources Planning & Zoning Police Public Works and Engineering Recreation About Oakley Contact Us News and Announcements Municipal Code Oakley’s Vision Moving to Oakley Recreation Online Registration Community Resources Events & Classes Halloween Decorating Contest Junior Recreation Leader Program Recreation Guide Summer Camps Taste of Oakley Volunteer Opportunities More City Meetings City Council Agenda and Videos Planning Commission Agenda and Videos City Council Meeting Schedule Planning Commission Meeting Schedule Strategic Plan Public Comment Form for Meetings Business Open Bids Request for Proposals/Qualifications Search Home Police Accident Reports Police Accident Reports Municipal Code Events News Job Openings Contact Us Classes / Programs FAQ Make a Complaint Building Permits Departments City Code of Ethics Starting a Business City Hall Hours 8:00 - 12:00 pm Monday - Thursday City Hall is open by appointment after 12:00 PM M-TH and by appointment on Fridays City Offices are closed on the 1st and 3rd Friday of each month The Oakley Police Department is open from 8:30 AM to 5:00 PM Monday through Friday 3231 Main Street, Oakley, CA 94561 (925) 625-7000 info@ci.oakley.ca.us Copyright © 2015 by City of Oakley. All rights reserved. Designed and developed by Digital Gear Community Animal Services ARPA Updates Civic Center and Laurel Road Message Board Emergency Services Evacuation Information Hospitals/ Clinics Housing Job Openings Library Oakley Election 2022 Schools Seniors Transportation Utilities Veterans How Do I? Departments Building City Attorney City Clerk City Council City Manager’s Office Code Enforcement Economic Development Finance Human Resources Planning & Zoning Police Public Works and Engineering Recreation About Oakley Contact Us News and Announcements Municipal Code Oakley’s Vision Moving to Oakley Recreation Online Registration Community Resources Events & Classes Halloween Decorating Contest Junior Recreation Leader Program Recreation Guide Summer Camps Taste of Oakley Volunteer Opportunities More City Meetings City Council Agenda and Videos Planning Commission Agenda and Videos City Council Meeting Schedule Planning Commission Meeting Schedule Strategic Plan Public Comment Form for Meetings Business Open Bids Request for Proposals/Qualifications Search " -207,https://delcopa.gov/jdboard/index.html,Contact Info & Agency Meta,Info About Agencies,"Board of Managers of Juvenile Detention - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Board of Managers of Juvenile Detention""]",[],"[""Mission"", ""Board Members"", ""MEETING SCHEDULE"", ""BYLAWS"", ""ORDINANCE"", ""HELPFUL RESOURCES"", ""NEWS RELEASES"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]","[""2024""]",[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Board of Managers of Juvenile Detention Home / Board of Managers of Juvenile Detention Email the Board of Managers of Juvenile Detention: JDBOM@co.delaware.pa.us . Mission Delaware County is dedicated to ensuring that all citizens live in safety, which is a commitment consistent with the County's Juvenile Detention Board of Managers mission that juvenile offenders are held accountable for their offenses while promoting a positive social change for their rehabilitation. Board Members Three Delaware County Council Members: Kevin Madden - Chair Elaine Schaefer Dr. Monica Taylor Delaware County Controller: Joanne Phillips Appointments by Delaware County Chair: Chris Eiserman Chekemma J. Fulmore Townsend Marie N. Williams - Vice Chai r Appointments by County President Judge: Candice L. Linehan James E. Turner Nathaniel C. Nichols MEETING SCHEDULE Members of the public have the option of attending the meeting in person or watching it live here on the Board’s web page. Public meetings are held the third Tuesday of each month from 5:30 – 7:00 P.M. in the County Council Meeting Room (located on the first floor of the Government Center Building - please use the entrance at Orange and Second Street, as the building's main entrance closes at 4:30pm ) on the following dates: 2024 Date Agenda Minutes Video Other January 16 Agenda Minutes Video February 20 Agenda Minutes Video March 19 Agenda Video April 16 Video May 21 Video June 17* Video July 16 Video August 20 Video September 17 Video October 15 Video November 19 Video December 17 Video *change of day due to a holiday meeting shift this week Meetings Archive BYLAWS Bylaws (approved July 20, 2021) ORDINANCE See Ordinance No. 2021-4 that provides for the creation of a Board of Managers for the Juvenile Detention. HELPFUL RESOURCES In June 2021, the Pennsylvania Juvenile Justice Task Force issued a 64-page report outlining its recommendations. The report can be viewed at: https://www.pacourts.us/Storage/media/pdfs/20210622/152647-pajuvenilejusticetaskforcereportandrecommendations_final.pdf NEWS RELEASES Department of Juvenile Detention and Rehabilitation Hold Community Collaboration Meetings - 2/7/2023 Juvenile Detention Board of Managers Holds First Meeting July 20 - 7/15/2021 Delaware County Council Appoints New Board of Managers forJuvenile Detention - June 3, 2021 Delaware County Announces Creation of New Board of Managers for Juvenile Detention - May 5, 2021 Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play " -208,https://barnegatpolice.us/wpdmpro-sitemap.xml,Poor Data Source,Poor Data Source,XML Sitemap,"",200,Barnegat Township Police Department - Barnegat Township Police Department,"[""XML Sitemap""]",[],[],[],[],[],"XML Sitemap Generated by Yoast SEO , this is an XML Sitemap, meant for consumption by search engines. You can find more information about XML sitemaps on sitemaps.org . This XML Sitemap contains 6 URLs. URL Images Last Mod. https://barnegatpolice.us/download/burke-dre/ 0 2024-03-25 06:34 +00:00 https://barnegatpolice.us/download/burke-hgn/ 0 2024-03-25 06:35 +00:00 https://barnegatpolice.us/download/burke-alcotest/ 0 2024-03-25 06:36 +00:00 https://barnegatpolice.us/download/calicchio-alcotest/ 0 2024-03-25 06:36 +00:00 https://barnegatpolice.us/download/roman-hgn/ 0 2024-03-25 06:55 +00:00 https://barnegatpolice.us/download/calicchio-hgn/ 0 2024-03-25 07:03 +00:00 " -209,https://www.ci.san-bernardino.ca.us/city_hall/police_department/over_100_years_of_service/historical_photos,Not Criminal Justice Related,Not Criminal Justice Related,Historical Photos - City of San Bernardino,"",200,Just a moment...,"[""City of San Bernardino California""]","[""Historical Photos""]",[],[],[],[],Skip to Content -210,https://delcopa.gov/council/2018minutes/103118minutes.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -211,http://www.longbeach.gov/police/press-releases/civilian-employee-arrested/,Media Bulletins,Agency-Published Resources,CIVILIAN POLICE DEPARTMENT ARRESTED,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 7/5/2018 FOR IMMEDIATE RELEASE Press Release # 2018 Subject: CIVILIAN POLICE DEPARTMENT EMPLOYEE ARRESTED Contact: Media Relations Detail (562) 570-5273 On Friday, June 29, 2018, an employee of the Long Beach Police Department observed suspicious activity in the men’s restroom on the 2nd floor of the Public Safety Building, located at 400 W. Broadway. The employee reported the information to his supervisor and the department immediately initiated an investigation. Within hours of the initial report, detectives discovered that a civilian Police Department employee had been photographing and videotaping other employees in the same restroom. The employee was arrested and booked for recording people in a restroom without their knowledge, at the Signal Hill Police Department, to avoid a conflict of interest with his work site. The employee has been identified as Clerk Typist Sergio Nieto, a 28-year-old resident of Downey. His court date has been set for Wednesday, July 25, 2018, in Long Beach Superior Court. He has also been placed on summary suspension pending the results of the criminal and administrative investigations. Detectives are actively investigating this case to determine the scope of the illegal activity. All Police Department employees have been notified of the arrest and the ongoing investigation. Any employee who believes they may have been a victim, or who may have observed suspicious activity related to this investigation have been asked to contact Detective Rodney Brown in the Sex Crimes Detail at (562) 570-7368. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -212,https://hollister.ca.gov/government/city-departments/police/incident-reports/,Resources,Agency-Published Resources,"Incident Reports – City of Hollister, California","",200,"City of Hollister, California",[],[],"[""Follow Us on..."", ""Hollister Police Incident Report"", ""Incident Reporting"", ""We are Hiring"", ""Follow Us on....""]",[],[],[],"" -213,"https://norfolkne.gov/government/departments/police-division/press-releases/february-14,-2022-press-release.html",Media Bulletins,Agency-Published Resources,"February 14, 2022 Press Release - City of Norfolk, NE","",200,"Welcome to Norfolk, NE - City of Norfolk, NE","[""City of Norfolk, NE"", ""Police Division"", ""February 14, 2022 Press Release"", ""City of Norfolk, NE""]",[],[],[],"[""Still looking for something?""]","[""Contact Us"", ""Pay or Apply..."", ""Government..."", ""Services..."", ""Business..."", ""Amenities...""]","" -214,https://www.southamptontownnypolice.gov/faq.aspx?qid=138,Training & Hiring Info,Info About Officers,FAQs • How can I find out about any job opportunities?,"",200,"Police | Southampton, NY - Official Website",[],"[""▼ Human Resources""]","[""Site Tools"", ""Categories"", ""Live Edit"", ""Contact Us"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -215,http://www.lafayettepolice.us/714/city-website-policy,Not Criminal Justice Related,Not Criminal Justice Related,"City Website Policy | Lafayette, IN - Official Website","The City of Lafayette, IN local government agency is committed to protecting the rights of all our website visitors. We recognize our obligation to keep sensitive information secure and have created this privacy statement to share our information gathering and dissemination practices for this website. ",200,"Police Department | Lafayette, IN - Official Website","[""City Website Policy""]",[],"[""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -216,https://www.bedminster.us/government/police/vision__mission___core_values/body_camera,Poor Data Source,Poor Data Source,Body Camera - Township of Bedminster,"",200,Just a moment...,"[""Bedminster Township""]","[""Body Camera""]","[""Bedminster Township""]",[],[],[],"" -217,https://www.mass.gov/doc/tavares-bruce-v-fall-river-police-department-51707/download,Court Cases,Jails & Courts Specific,"","",200,"","","","","","","","" -218,https://delcopa.gov/vote/pdf/2021/delco-boe-meeting-notice_certification-municipal-primary-results_6-7-2021.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -219,https://delcopa.gov/sheriff/pdf/list1.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -220,http://www.lafayettepolice.us/3469/gis-zoning-maps,Resources,Agency-Published Resources,"GIS & Zoning Maps | Lafayette, IN - Official Website","Check whether you are in city limits, what your zoning is and property owner information.",200,"Police Department | Lafayette, IN - Official Website","[""GIS & Zoning Maps""]",[],"[""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Government Services Our Community Business & Development How Do I... Transparency Home Government Departments A - F Engineering & Public Works Permits & Licensing GIS & Zoning Maps GIS & Zoning Maps County GIS & Zoning Maps - Check your zoning. City Limits Map - Check whether your property is in city limits. Beacon - Check property owner information. Applications Building Permits Commercial Projects Residential Projects Online Services Construction Guidelines and Standards Electrical Licenses GIS & Zoning Maps License, Bonding & Insurance Information Permit Fees Permit Report - Monthly Permit Report - Weekly Policy and Guidance Regulations and Codes Search Permit Records Online Employment Utilities Payment Submit a Request Permits & Licensing Agendas & Minutes Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Government Services Our Community Business & Development How Do I... Transparency Home Government Departments A - F Engineering & Public Works Permits & Licensing GIS & Zoning Maps GIS & Zoning Maps County GIS & Zoning Maps - Check your zoning. City Limits Map - Check whether your property is in city limits. Beacon - Check property owner information. Applications Building Permits Commercial Projects Residential Projects Online Services Construction Guidelines and Standards Electrical Licenses GIS & Zoning Maps License, Bonding & Insurance Information Permit Fees Permit Report - Monthly Permit Report - Weekly Policy and Guidance Regulations and Codes Search Permit Records Online Employment Utilities Payment Submit a Request Permits & Licensing Agendas & Minutes Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In " -221,https://www.east-windsor.nj.us/police-athletic-league,Misc Police Activity,Police & Public Interactions,"Official Website of East Windsor Township, New Jersey - Police Athletic League","",200,"Official Website of East Windsor Township, New Jersey - Home",[],"[""Police Athletic League""]",[],[],[],[],Township of EAST WINDSOR TOWNSHIP Navigation Menu Departments Clerk Council Meetings Construction Court Economic Development Finance Tax Assessor Tax Collector Health Department Health Services Retail Food Licensing Vital Statistics Registrar Mayor Planning Department Planning Board Zoning Board Police Department Police Department Structure Personnel Directory I Want To Police Reports Medicine Drop Box Firearms/Fingerprinting Animal Control Towing & Storage of Vehicles Bicycle Safety Domestic Violence Victim Response Team Police Employment Recruitment Plan Police Information/Links Internal Affairs Public Works Garbage Collection Curbside Collection Bulk Goods Curbside Pick-Up Recycling Curbside Recycling Electronics Recycling White Goods Recycling Cellular Phone Recycling Other Recycling Services Recycling Events Organic Waste Chipping and Brush Grass Disposal Leaf Collection Street Index Snow Removal Services Parks Parks - List of Parks and Pathways Picnic Area and Field Reservations Submit a Request or Complaint Recreation Pay Recreation Fees Online Current Programs and Activities East Windsor Township Summer Camps Community Event Sponsorship Event Photos and Videos Township Parks Youth Activity Directory Senior Services Senior Service Directory Senior Center Newsletters Community Bus Information Senior Center Community Bus Schedule Senior Center Exercise Schedule Mercer County Trade Transportation Tax Assessor Tax Collector Township Manager Welfare EWMUA Staff Directory Government Mayor Elected Officials Boards & Commissions Council Meetings Planning Department Township Ordinances - Introduced Township Ordinances - Adopted Municipal Code Book Financial Statements Municipal Budget Sustainable Policies Notice to Bidders Fair & Open Notices Bid Requests Employment Opportunities E-News Township Newsletters Spotlight East Windsor Press Releases Community Area Information Township History Community Events Recreation Pay Recreation Fees Online After School Programs East Windsor Township Summer Camps Parks Youth Activity Directory Senior Services Senior Service Directory Senior Center Newsletters Senior Nutrition Calendar Senior Center Calendar Senior Center Community Bus Schedules Community Bus Information Senior Center Classes Mercer County Trade Transportation East Windsor Municipal Alliance for the Prevention of Substance Abuse (EWMAPSA) Medicine Drop Box Fire Companies Rescue Squads Local Libraries Affordable Housing Transportation Township Map Press Releases State and Federal Contacts Community Links Township Map Business Doing Business in East Windsor Why Choose East Windsor One Stop Permit Processing Events for Business Business Assistance Directory Township Code Planning Studies Major Area Employers Transportation Business News Business Awards Business Videos Township Map I Want To Submit a Request Township of EAST WINDSOR TOWNSHIP Township of EAST WINDSOR TOWNSHIP Township of EAST WINDSOR TOWNSHIP -222,http://www.longbeach.gov/police/press-releases/murder2/,Media Bulletins,Agency-Published Resources,MURDER (HARBOR AVE & 15TH ST.),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 12/5/2019 FOR IMMEDIATE RELEASE Press Release # 2018 Subject: *UPDATE* MURDER SUSPECTS ARRESTED Contact: Media Relations Detail (562) 570-5273 LBPDMediaRelations@longbeach.gov Update 12/5/2019: On Tuesday, December 3, 2019, deputies from the U.S. Marshals Service assisted the Long Beach Police Department by locating and arresting two murder suspects in Placerville, CA. Daniel Castro Fernandez, 22-years-old, and Jason Hernan Cortes, 20-years-old, both residents of Corning, CA, were taken into custody and transported to the Long Beach City jail where they were each booked on one count of murder and held on $2,000,000 bond. Homicide detectives believe the suspects planned to rob the victim and the robbery quickly escalated to murder. The victim and suspect Cortes were relatives and known to each other. Detectives delivered their case today to the Los Angeles County District Attorney’s office for filing consideration. Original Release 7/7/2018: On July 6, 2018, at approx. 7:10 p.m., officers were dispatched to the area of Harbor Avenue & 15th Street in regards to an unknown trouble call, which resulted in officers locating the body of a deceased male adult. When officers arrived, they located the man inside a motorhome, who had sustained stab wounds to the upper torso. The victim had been found by family members who called police Long Beach Fire Department paramedics responded and determined the victim, identified as 41-year-old Hernan Cortez of Long Beach, deceased at the scene. Victim Cortez had been living in his motorhome in that area. During their investigation, Homicide detectives learned that someone in the area reported seeing the victim on the morning of 7/6/18 at approx. 5:30-6:00 a.m. Therefore, they believe the stabbing occurred sometime between then and when the victim was discovered by family. A motive for the stabbing is unknown and the investigation remains ongoing. Anyone with any information regarding the incident is urged to contact LBPD Homicide Detectives Malcolm Evans and Robert Gonzalez at (562) 570-7244 . Anonymous tips may be submitted through ""LA Crime Stoppers"" by calling 800-222-TIPS (8477), downloading the ""P3 Tips"" app to your smart phone (available at the Apple app store or Google Play), or by visiting www.crimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -223,https://www.tukwilawa.gov/departments/police/annual-reports/pd-2004report/,Poor Data Source,Poor Data Source,PD-2004report - City of Tukwila,"",200,Home - City of Tukwila,"[""City of Tukwila News""]","[""PD-2004report""]",[],"[""City of Tukwila""]","[""I am a..."", ""Online Services"", ""Most Requested Forms""]",[],"" -224,https://springfield-or.gov/city/police-department/patrol/k9-team/,Contact Info & Agency Meta,Info About Agencies,K-9 Program – City of Springfield Oregon,"",200,City of Springfield Oregon,"[""Springfield Police K-9 Program""]",[],[],"[""Police""]",[],[],"" -225,https://www.stpaul.gov/departments/police/administration-office-chief/community-engagement-division/special-events-application-sppd,Not Criminal Justice Related,Not Criminal Justice Related,Special Events Application (SPPD) | Saint Paul Minnesota,"Please read and follow all directions to ensure processing and permit submissions are complete. Incomplete applications will not be processed. Click on each link below in sequential order:Per City Ordinance, all recurring events are required to submit their application ninety (90) days in advance of the event. NEW events must submit no less than sixty (60) days prior. If your event is happening within that 60 day window, please call first to determine whether the application can be processed.",200,Home | Saint Paul Minnesota,"[""Special Events Application (SPPD)""]","[""Main Navigation"", ""Popular Topics"", ""Breadcrumb"", ""Footer""]","[""You are using an unsupported browser. Please use Microsoft Edge."", ""Please read and follow all directions to ensure processing and permit submissions are complete. Incomplete applications will not be processed. Click on each link below in sequential order:"", ""2024 Event Applications:"", ""Contact The City"", ""Email Us"", ""Call 651-266-8989""]","[""Business Spotlight"", ""Featured"", ""Business Spotlight"", ""Featured""]",[],[],"" -226,https://www.lynchburgvapolice.gov/wp-content/uploads/2021/06/lpd-seal-e1662580813573.png,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -227,https://alpha.austin.gov/en/health-safety/accountability-and-transparency-in-policing/police-feedback-and-records/citations-for-summary-of-policy-language-recommendations/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -228,https://detroitmi.gov/departments/police-department/detroit-police-department-shield-program/detroit-police-shield-partners,Contact Info & Agency Meta,Info About Agencies,Detroit Police Shield Partners | City of Detroit,"",200,City of Detroit | Opportunity Rising,"[""Detroit Police Shield Partners""]","[""Top Links"", ""Site Menu""]",[],"[""CONTACTS""]",[],[],"Top Links Buses Departments Government Jobs Pay Water English Español Bengali العربية More Site Menu MENU search Departments BACK Airport, Coleman A. Young International Buildings, Safety Engineering and Environmental Department Civil Rights, Inclusion & Opportunity Department Department of Public Works Department of Appeals and Hearings Department of Innovation and Technology Department of Neighborhoods Detroit Building Authority Detroit Department of Transportation Detroit Fire Department Detroit Health Department Elections General Services Department Homeland Security & Emergency Management, Detroit Housing and Revitalization Department Human Resources Department Law Department Media Services Department Municipal Parking Department Office of the Chief Financial Officer Parks & Recreation Pension Department Planning and Development Department Police Department Water and Sewerage Department Youth Services Government BACK Boards City Clerk City Council Commissions Mayor's Office Office of Inspector General Office of the Auditor General Ombudsman Census BACK What is the Census Why the Census Matters How You Can Help Census Resources How Do I BACK Appeal Apply for or renew license Apply for or renew permit or certification Do Business with the City Find Youth Programs Find information Find or apply for employment Locate something Obtain Grant Information Pay fine, bill or tax Purchase Register Report problem Request document Request service or assistance Sign up Volunteer Buses Jobs Pay Water Events News Directory Documents Forms Home Police Department Detroit Police Department Shield Program Detroit Police Shield Partners CONTACTS Detroit Shield Program (313) 596-2250 Detroit Public Safety Headquarters - 1301 3rd Street Detroit, MI 48226 Detroit Police Shield Detroit Police Shield Detroit Police Shield Anne Arundel County,MD Antwerp Belgium Baltimore County, MD Boston Boston BRIC City of Baltimore, MD Global Shield Network Hanover County Hennepin County Intelligence Bureau NY NYPD Shield,NY Oakland County, MI Seattle, WA Stafford County York County, VA Subscribe to Newsletters Copyright 2001-2024 by City of Detroit For information about the City of Detroit's Web site, email the Web Editor . All material is the property of the City of Detroit and may only be used with permission. Privacy Policy / Disclaimer Follow Us twitter facebook youtube linkedin-in instagram DATA DETROIT Detroit's Open Data Portal " -229,https://www.mass.gov/info-details/audit-of-the-office-for-refugees-and-immigrants-objectives-scope-and-methodology,Not Criminal Justice Related,Not Criminal Justice Related,"Audit of the Office for Refugees and Immigrants Objectives, Scope, and Methodology | Mass.gov",An overview of the purpose and process of auditing the Office for Refugees and Immigrants.,200,Mass.gov,"[""Audit of the Office for Refugees and Immigrants Objectives, Scope, and Methodology""]","[""Table of Contents for the audit, Audit of the Office for Refugees and Immigrants"", ""Appendix"", ""Table of Contents"", ""Overview"", ""Data Reliability"", ""Help Us Improve Mass.gov with your feedback""]",[],[],[],[],"" -230,https://delcopa.gov/dropbox/,Not Criminal Justice Related,Not Criminal Justice Related,Untitled Document,"",200,"Delaware County, Pennsylvania",[],[],[],[],[],[],"" -231,https://delcopa.gov/sustainability/presentations/22/06ruthabbe.pptx,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -232,http://www.longbeach.gov/police/press-releases/public-s-help-needed-in-hit-and-run-investigation/,Media Bulletins,Agency-Published Resources,Public's Help Needed in Hit and Run Investigation,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 9/13/2016 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: PUBLIC'S HELP NEEDED IN HIT AND RUN INVESTIGATION Contact: Media Relations Detail (562)570-5273 UPDATE (9/18/16): On September 17,2016, Maria Mendoza passed away at a local hospital from injuries sustained in the hit and run collision. UPDATE (9/15/16): On September 15, 1016, at approximately 11:00 a.m., Long Beach Police Collision Investigations Detectives made an arrest in the hit and run collision that left Maria Mendoza in critical condition. Detectives arrested 83-year-old Edward Peterson of Long Beach, at his residence. He was booked into the Long Beach Jail for felony hit and run with bail set at $50,000.00. The involved vehicle, registered to Peterson, was located at his residence and impounded as evidence. Detectives were able to locate Peterson after receiving a tip from the public. The Long Beach Police Department would like to thank the media for sharing this information with the public. The investigation remains ongoing. Victim Maria Mendoza Actual Suspect Vehicle Link To Video of Suspect Vehicle: https://www.youtube.com/watch?v=lqkTJX1BCvI On Saturday, September 10, 2016 at approximately 1814 hours, officers were dispatched to Willow Street and Long Beach Boulevard regarding an injury hit and run traffic collision between a vehicle and a pedestrian, which resulted in the critical injury of the pedestrian. When Officers arrived on scene, they discovered the pedestrian lying unconscious on Willow Street being treated by Good Samaritans already on scene. The pedestrian was transported by Long Beach Fire Department Paramedics to a local hospital where she is listed in ""Very Critical Condition"". The preliminary investigation revealed that a champagne or beige colored smaller SUV struck the pedestrian in the crosswalk. After viewing video from surveillance cameras in the area it was determined that vehicle, was possibly a Toyota Rav-4, with no cover on spare tire. It also appears that the vehicle failed to stop for the red light while traveling west on Willow Street at Long Beach Boulevard and eventually striking the pedestrian while she crossed southbound Long Beach Bl. west of Willow Street. Witnesses on scene described the driver of the vehicle to be an elderly male white with gray hair. The pedestrian has been identified as Maria Mendoza a 59-year-old female resident of Compton. She remains in very critical condition at a local hospital. Anyone who may have information regarding this incident is asked to call Long Beach Police Department Collision Investigation Detail Detective Steve Fox at (562) 570-7355. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -233,https://takomaparkmd.gov/government/police/covid-19-info-resources/,Not Criminal Justice Related,Not Criminal Justice Related,"","",404,"","","","","","","","" -234,https://www.southamptontownnypolice.gov/faq.aspx?qid=259,Not Criminal Justice Related,Not Criminal Justice Related,FAQs • Does the shelter have a veterinary clinic?,"",200,"Police | Southampton, NY - Official Website",[],"[""▼ Public Safety - Animal Shelter""]","[""Site Tools"", ""Categories"", ""Live Edit"", ""Contact Us"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -235,https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/arrests/092322arrests.pdf,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -236,http://www.lafayettepolice.us/456/special-events,Not Criminal Justice Related,Not Criminal Justice Related,"Facilities | Lafayette, IN - Official Website",View the 3 different aquatic facilities that open to the public.,200,"Police Department | Lafayette, IN - Official Website",[],[],"[""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]","[""Castaway Bay"", ""Tropicanoe Cove""]",[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Plan Your Visit About Us Special Events Programs I Want To... Home Government Departments H - W Parks & Recreation Facilities Aquatics Special Events 9 2 1 2 Castaway Bay Explore the amenities and fees for the Castaway Bay Aquatic Center. Pooch Plunge Tropicanoe Cove Get ready to explore all the great amenities of Tropicanoe Cove. Event Days Castaway Bay Pooch Plunge Tropicanoe Cove Event Days Aquatics McAllister Center Rentals Zoo Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Plan Your Visit About Us Special Events Programs I Want To... Home Government Departments H - W Parks & Recreation Facilities Aquatics Special Events 9 2 1 2 Castaway Bay Explore the amenities and fees for the Castaway Bay Aquatic Center. Pooch Plunge Tropicanoe Cove Get ready to explore all the great amenities of Tropicanoe Cove. Event Days Castaway Bay Pooch Plunge Tropicanoe Cove Event Days Aquatics McAllister Center Rentals Zoo Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Plan Your Visit About Us Special Events Programs I Want To... Home Government Departments H - W Parks & Recreation Facilities Aquatics Special Events 9 2 1 2 Castaway Bay Explore the amenities and fees for the Castaway Bay Aquatic Center. Pooch Plunge Tropicanoe Cove Get ready to explore all the great amenities of Tropicanoe Cove. Event Days Castaway Bay Pooch Plunge Tropicanoe Cove Event Days Aquatics McAllister Center Rentals Zoo Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate " -237,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/summary/082621summary.pdf,Daily Activity Logs,Info About Officers,"","",404,"","","","","","","","" -238,https://www.mass.gov/doc/handout-for-the-may-24-2018-design-public-hearing-in-chicopee/download,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -239,https://oceancitymd.gov/oc/ocean-city-police-sergeant-retires-after-27-years-of-service/,Media Bulletins,Agency-Published Resources,"Ocean City Police Sergeant Retires After 27+ Years of Service – Town of Ocean City, Maryland","",200,"Town of Ocean City, Maryland – A Vibrant Coastal Resort Community","[""Ocean City Police Sergeant Retires After 27+ Years of Service""]","[""Post navigation""]","[""Related posts""]",[],[],[],"" -240,https://delcopa.gov/sustainability/commission/meetingminutes/sustainabilitycommissionkick-offmeetingminutesoct2020.pdf,Poor Data Source,Poor Data Source,"404 - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert " -241,https://delcopa.gov/publicrelations/publicrelations/releases/2020/herobowlboard.html,Poor Data Source,Poor Data Source,"404 - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert " -242,https://www.mass.gov/doc/minutes-of-april-2019-chicopee/download,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -243,https://www.roseville.ca.us/government/departments/police_department/divisions/police_explorers,Resources,Agency-Published Resources,Police Explorers - City of Roseville,"",200,Just a moment...,"[""City of Roseville""]","[""Police Explorers""]","[""Roseville Police Department""]",[],[],[],"" -244,https://www.osc.state.ny.us/state-agencies/payroll-bulletins/state-police/sp-130-2010-state-police-expertise-pay,Media Bulletins,Agency-Published Resources,State Police Bulletin No. SP-130 | Office of the New York State Comptroller,To notify the Division of State Police of the new Additional Pay code and procedures for processing Expertise Pay,200,Office of the New York State Comptroller | Thomas P. DiNapoli,"[""State Police Bulletin No. SP-130"", """"]","[""Main navigation""]","[""How would you rate our website?""]","[""Disclaimer"", ""Purpose"", ""Affected Employees"", ""Background"", ""Effective Date(s)"", ""Payment Information and Eligibility Criteria"", ""OSC Actions"", ""Control-D Report"", ""Questions"", ""Newsletter Sign-Up Confirmation"", ""Thank you for subscribing to the Comptroller's Weekly Newsletter!""]","[""NPAY770 One Time Payment Report""]",[],"" -245,https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/summary/080822summary.pdf,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -246,https://www.antioch.il.gov/wpfb-file/10-22-13-police-and-fire-agenda-pdf-3/,Poor Data Source,Poor Data Source,"10-22-13 Police And Fire Agenda - Antioch, IL",9062 10 22 13 police and fire agenda pdf commissions commission agendas 2013 1381956042 206c0dca275a24506b8ab566c4ad85f9 213x300 _kkntdsgansvd thumb jpg 16 15 40 42 0 pdf application trustees dennis b crosby scott a pierce mary c dominiak ted p poulos jerry t johnson george sakas lawrence m hanson mayor lori k folbrick village clerk notice of,200,"Home - Antioch, IL","[""10-22-13 Police And Fire Agenda""]",[],[],[],[],[],Open toolbar Accessibility Tools Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset -247,https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/blotter/053022blotter.pdf,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -248,https://www.lynchburgvapolice.gov/news-updates/homicide-1100-blk-of-15th-street/,Media Bulletins,Agency-Published Resources,HOMICIDE 1100-BLK OF 15TH STREET - Lynchburg Police Department,"",200,403 Forbidden,"[""HOMICIDE 1100-BLK OF 15TH STREET""]",[],[],"[""Contact Us"", ""Site Links"", ""Site Links""]",[],[],"" -249,https://www.antioch.il.gov/wpfb-file/04-19-16-police-pension-agenda-pdf/,Media Bulletins,Agency-Published Resources,"04-19-16 Police Pension Agenda - Antioch, IL",8427 04 19 16 police pension agenda pdf commissions fund agendas 2016 1460742126 02c861b2676b01cc56cb3a86703c52d6 213x300 _extdmrzqpxvu thumb jpg 15 12 42 06 0 pdf application trustees mary c dominiak ed macek jerry t johnson scott a pierce jay jozwiak ted p poulos lawrence m hanson mayor lori k folbrick village clerk agenda of antioch lake,200,"Home - Antioch, IL","[""04-19-16 Police Pension Agenda""]",[],[],[],[],[],Open toolbar Accessibility Tools Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset -250,https://delcopa.gov/publicrelations/releases/2020/pdf/citizencorpsorienationfeb21.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -251,https://piedmont.ca.gov/services___departments/police/transparency_portal/training_materials,Policies & Contracts,Info About Agencies,Training Materials - City of Piedmont,"",200,Just a moment...,"[""City of Piedmont""]",[],[],[],[],[],"Skip navigation City of Piedmont How Do I? {1} ##LOC[OK]## Services Building Inspections Building Permits Business Licenses Facility Rentals Garbage, Recycling, and Organic Waste Parks and Fields Permits & Licenses Preschool Recreation Programs Schoolmates Street Sweeping Departments Careers & Human Resources City Administrator City Clerk Finance Fire Planning & Building Police Public Works Recreation Government Americans with Disabilities Act Charter & City Code City Council Commissions & Committees Elections Forms & Applications Meeting Videos Bid and Proposal Opportunities City Projects News & Events News Events Stay Informed KCOM-TV About Piedmont Federal, State, & County Representatives Community Resources Schools Houses of Worship Public Transit Utilities Directions to City Hall Services Building Inspections Building Permits Business Licenses Facility Rentals Garbage, Recycling, and Organic Waste Parks and Fields Permits & Licenses Preschool Recreation Programs Schoolmates Street Sweeping Departments Careers & Human Resources City Administrator City Clerk Finance Fire Planning & Building Police Public Works Recreation Government Americans with Disabilities Act Charter & City Code City Council Commissions & Committees Elections Forms & Applications Meeting Videos Bid and Proposal Opportunities City Projects News & Events News Events Stay Informed KCOM-TV About Piedmont Federal, State, & County Representatives Community Resources Schools Houses of Worship Public Transit Utilities Directions to City Hall /UserFiles/Servers/Server_13659739/Image/Banner%20image%20-%20alternative.jpg Skip Sidebar Navigation Training Materials Transparency Portal Training Materials Use of Force Policy Last item for navigation City of Piedmont » Departments » Police » Transparency Portal » Training Materials Share This Print Page A+ Increase Font A- decrease font Piedmont Police Department training materials are made available to the public in compliance with Senate Bill 978. Police Officer Field Training Manual Communications Training Manual Investigations Training Manual Defensive Tactics Training Firearms Training City of Piedmont 120 Vista Avenue Piedmont, CA 94611 (510) 420-3040 Home Services & Departments Government Community & Events About Piedmont Calendar Stay Connected Youtube Facebook Page Twitter Page Instagram Page Linkedin Page City of Piedmont | All Rights Reserved | Powered by CivicLive | © 2024 Civiclive. Skip navigation City of Piedmont How Do I? City of Piedmont How Do I? City of Piedmont How Do I? City of Piedmont How Do I? " -252,https://police.birminghamal.gov/command-staff/lieutenant-richard-haluska/,Contact Info & Agency Meta,Info About Agencies,Lieutenant Richard Haluska | Birmingham Police Department,"",200,"Home | Police Department - Birmingham, AL","[""Birmingham Police Department Commitment | Excellence | Integrity""]","[""Putting People First"", ""Lieutenant Richard Haluska""]",[],"[""Hours & Info"", ""Upcoming Events"", ""CRIMESTOPPERS"", ""Police Information"", ""Quick Links"", ""I Need...""]",[],[],Birmingham Police Department Commitment | Excellence | Integrity Putting People First Birmingham Police Department Commitment | Excellence | Integrity Putting People First Birmingham Police Department Commitment | Excellence | Integrity Putting People First Home About Command Staff Bureaus Press Releases Join the Team Crime Stats CALEA IAD Stats Inmate Search Contacts Search Home About Command Staff Bureaus Press Releases Join the Team Crime Stats CALEA IAD Stats Inmate Search Contacts Search Search -253,https://cityofgulfbreeze.us/staff/police-general/,Contact Info & Agency Meta,Info About Agencies,Police General - City of Gulf Breeze,"",200,Home - City of Gulf Breeze,"[""Police General""]","[""What can we help you find?"", ""Mobile Menu"", ""Before Header"", ""Header Right"", ""Police General"", ""Primary Sidebar"", ""Footer""]","[""Colleagues"", ""Police Redlight"", ""Police Permits"", ""No Active Advisories"", ""City Projects"", ""Get Text Updates"", ""City of Gulf Breeze"", ""Most Requested"", ""County Agencies"", ""State Sites""]","[""South Santa Rosa Beneficial Reclaim Strategic Plan (BSRP) – Phase III"", ""Highpoint Water Main Replacement"", ""Eufaula Outfall Treatment Unit – RESTORE"", ""City Hall""]",[],[],"(850) 934-5100 Pay Online Find Agendas, packets, & minutes Digital Online Forms Apply For City Jobs Permits or Application Contact Mayor & City Council City Staff Report An Issue or Emergency Residential Traffic Issue Wildlife Scams Request Request a Public Record Garbage Collection Utility Bills via E-Mail Sign Up For Updates Watch Videos (850) 934-5100 Pay Online Find Agendas, packets, & minutes Digital Online Forms Apply For City Jobs Permits or Application Contact Mayor & City Council City Staff Report An Issue or Emergency Residential Traffic Issue Wildlife Scams Request Request a Public Record Garbage Collection Utility Bills via E-Mail Sign Up For Updates Watch Videos (850) 934-5100 Pay Online Find Agendas, packets, & minutes Digital Online Forms Apply For City Jobs Permits or Application Contact Mayor & City Council City Staff Report An Issue or Emergency Residential Traffic Issue Wildlife Scams Request Request a Public Record Garbage Collection Utility Bills via E-Mail Sign Up For Updates Watch Videos (850) 934-5100 Pay Online Find Agendas, packets, & minutes Digital Online Forms Apply For City Jobs Permits or Application Contact Mayor & City Council City Staff Report An Issue or Emergency Residential Traffic Issue Wildlife Scams Request Request a Public Record Garbage Collection Utility Bills via E-Mail Sign Up For Updates Watch Videos (850) 934-5100 Pay Online Find Agendas, packets, & minutes Digital Online Forms Apply For City Jobs Permits or Application Contact Mayor & City Council City Staff Report An Issue or Emergency Residential Traffic Issue Wildlife Scams Request Request a Public Record Garbage Collection Utility Bills via E-Mail Sign Up For Updates Watch Videos (850) 934-5100 Pay Online Find Agendas, packets, & minutes Digital Online Forms Apply For City Jobs Permits or Application Contact Mayor & City Council City Staff Report An Issue or Emergency Residential Traffic Issue Wildlife Scams Request Request a Public Record Garbage Collection Utility Bills via E-Mail Sign Up For Updates Watch Videos (850) 934-5100 Pay Online Find Agendas, packets, & minutes Digital Online Forms Apply For City Jobs Permits or Application Contact Mayor & City Council City Staff Report An Issue or Emergency Residential Traffic Issue Wildlife Scams Request Request a Public Record Garbage Collection Utility Bills via E-Mail Sign Up For Updates Watch Videos (850) 934-5100 Pay Online Find Agendas, packets, & minutes Digital Online Forms Apply For City Jobs Permits or Application Contact Mayor & City Council City Staff Report An Issue or Emergency Residential Traffic Issue Wildlife Scams Request Request a Public Record Garbage Collection Utility Bills via E-Mail Sign Up For Updates Watch Videos (850) 934-5100 Pay Online Find Agendas, packets, & minutes Digital Online Forms Apply For City Jobs Permits or Application Contact Mayor & City Council City Staff Report An Issue or Emergency Residential Traffic Issue Wildlife Scams Request Request a Public Record Garbage Collection Utility Bills via E-Mail Sign Up For Updates Watch Videos " -254,https://southamptontownnypolice.gov/1151/sustainability---transportation,Not Criminal Justice Related,Not Criminal Justice Related,"","",404,"","","","","","","","" -255,https://spdblotter.seattle.gov/2014/07/02/ive-got-a-pistol-too-man-tells-police-before-officer-involved-shooting/,Media Bulletins,Agency-Published Resources,"""I've Got a Pistol, Too"" Man Tells Police Before Officer-Involved Shooting - SPD Blotter","",200,403 Forbidden,"[""“I’ve Got a Pistol, Too” Man Tells Police Before Officer-Involved Shooting""]","[""Find Posts By Topic"", ""Featured Posts"", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],"Seattle.gov Choose a language: English English Google Translate may not accurately translate all content. Read disclaimer . For general City questions, please call 206-684-2489 . Tell us your requested language in English, and we can connect you with an interpreter. Continue Cancel Español Es posible que Google Translate no traduzca con precisión todo el contenido. Lea el descargo de responsabilidad . Si necesita ayuda en otro idioma, díganos en inglés nombre del idioma que necesita y lo conectaremos con un intérprete: 206-684-2489 Seguir Cancelar 中國語文 Google翻譯可能無法準確翻譯所有內容。 閱讀免責聲明 。 如果您需要翻譯,請用英語説出您所需要的語言,我們將爲你連接口譯員: 206-684-2489 繼續 取消 简体中文 Google翻译可能无法准确翻译所有内容。 阅读免责声明 。 如果您需要翻译,请用英语说出您所需要的语言,我们将为你连接口译员: 206-684-2489 继续 取消 Tiếng Việt Google Dịch có thể không dịch chính xác tất cả nội dung. Đọc tuyên bố từ chối trách nhiệm . Nếu quý vị cần hỗ trợ về ngôn ngữ, xin vui lòng cho chúng tôi biết ngôn ngữ quý vị cần hỗ trợ bằng tiếng Anh (ví dụ “Vietnamese”), chúng tôi sẽ kết nối quý vị với một thông dịch viên: 206-684-2489 Tiếp tục Huỷ bỏ русский язык Google Translate не может точно перевести весь контент. Прочтите отказ от ответственности . Если вам нужна языковая помощь, сообщите нам на английском, какой язык вам нужен, и мы свяжем вас с переводчиком: 206-684-2489 Продолжать Отмена Af-Soomaali Google Translate ayaan si sax ah u turjumi karin dhammaan waxyaabaha ku jira. Akhri afeef . Haddii aad u baahan tahay caawimaad luqadeed, fadlan noogu sheeg Ingiriisiga luqadda aad u baahan tahay, ka dib waxaan kugu xiri doonnaa turjubaan: 206-684-2489 Sii wad Jooji አማርኛ የጉግል ትርጉም ሁሉንም ይዘቶች በትክክል መተርጎም ላይችል ይችላል። ማስተባበያ አንብብ ፡፡ ኣስተርጓሚ ካስፈለግዎ የሚፈልጉትን ቋንቋ በእንግልዝኛ ይንገሩን፣ ከኣስተርጓሚ እናገናኝዎታለን። 206-684-2489 ቀጥል ሰርዝ 한국어 구글은 정확하게 모든 내용을 번역하지 않을 수 있습니다 번역. 읽기 면책 조항 . 언어지원이 필요한 경우, 필요한 언어를 영어로 말씀해 주시면 통역사와 연결해 드리겠습니다: 206-684-2489 계속하다 취소 Tagalog Maaaring hindi tumpak na isalin ng Google Translate ang lahat ng nilalaman. Basahin ang disclaimer . Para sa mga pangkalahatang katanungan sa Lungsod, mangyaring tawagan ang 206-684-2489 . Sabihin sa amin ang hiniling mong wika sa Ingles, at maikokonekta ka namin sa isang interpreter. Magpatuloy Kanselahin ภาษาไทย Google Translate อาจแปลเนื้อหาทั้งหมดไม่ถูกต้อง อ่านข้อจำกัดความรับผิดชอบ สำหรับคำถามทั่วไปเกี่ยวกับเมืองโปรดโทร 206-684-2489 บอกภาษาที่คุณต้องการเป็นภาษาอังกฤษและเราสามารถติดต่อคุณกับล่ามได้ ดำเนินการต่อ ยกเลิก 日本語 Google翻訳は、すべてのコンテンツを正確に翻訳するとは限りません. 免責事項をお読みください 。 市の一般的な質問については 206-684-2489 に電話してください。ご希望の言語を英語で教えていただければ、通訳をご案内いたします。 継続する キャンセル ភាសាខ្មែរ កម្មវិធីបកប្រែហ្គូហ្គោលមិនអាចបកប្រែមាតិកាទាំងអស់បានត្រឹមត្រូវទេ។ អានការបដិសេធ។ សម្រាប់សំណួរទូទៅរបស់ទីក្រុងសូមទូរស័ព្ទមក 206-684-2489 ។ ប្រាប់យើងពីភាសាដែលអ្នកស្នើសុំជាភាសាអង់គ្លេសហើយយើងអាចភ្ជាប់អ្នកជាមួយអ្នកបកប្រែភាសា។ បន្ត បោះបង់ ພາສາລາວ Google Translate ອາດຈະບໍ່ແປເນື້ອຫາທັງ ໝົດ ຢ່າງຖືກຕ້ອງ. ອ່ານປະຕິເສດ . ສຳ ລັບ ຄຳ ຖາມທົ່ວໄປຂອງເມືອງ, ກະລຸນາໂທຫາ 206-684-2489 . ບອກພວກເຮົາເປັນພາສາອັງກິດທີ່ທ່ານຮ້ອງຂໍ, ແລະພວກເຮົາສາມາດເຊື່ອມຕໍ່ທ່ານກັບນາຍແປພາສາ. ສືບຕໍ່ ຍົກເລີກ Українська Перекладач Google може не точно перекласти весь вміст. Прочитайте застереження . За загальними запитаннями про місто, будь ласка, телефонуйте 206-684-2489 . Розкажіть нам про вашу мову англійською мовою, і ми можемо зв’язати вас із перекладачем. Продовжуйте Скасувати Français Google Traduction peut ne pas traduire correctement tout le contenu. Lisez la clause de non-responsabilité . Pour des questions générales sur la ville, veuillez appeler le 206-684-2489 . Dites-nous votre langue souhaitée en anglais, et nous pourrons vous mettre en contact avec un interprète. Continuer Annuler " -256,https://www.southamptontownnypolice.gov/137/town-council-office,Not Criminal Justice Related,Not Criminal Justice Related,"Town Council Office | Southampton, NY - Official Website",Meet the town's council members.,200,"Police | Southampton, NY - Official Website","[""Town Council Office""]","[""Members"", ""About the Council""]","[""Site Tools"", ""Legal Authority"", ""Contact Us"", ""Paula Godfrey"", """", ""Tajea Anderson"", ""Hours:"", ""Contact Us"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Government Town Services Community Info How Do I Translate Page Site Tools Home My Account Printer Friendly Email Page Contact Us RSS Site Map Translate Page Notifications Documents Search Home Government Town Council Office Town Council Office Members The supervisor delegates legislative and special committee assignments among the four councilpersons, and each councilperson is responsible for overseeing the legislative, community outreach, and constituent services and departmental coordination that is associated with each assignment. Constituents regularly seek the assistance of the Town Council office to act as advocates and to help resolve problems. Michael A. Iasilli Cyndi McNamara William Pell IV Tommy John Schiavoni About the Council The Town Council establishes policy and determines appropriate actions in response to the needs of the Town of Southampton and its residents. These decisions are put into effect by resolution and cover the following: citizen advocacy work, legislation, general town affairs, public buildings and property, health and sanitation, business and building restrictions, protection of persons and property, traffic and highways, and numerous other duties / issues. Legal Authority Pursuant to Town Law §60, the four elected Town Council members, together with the Town Supervisor, constitute the Town Board. The Town Board, pursuant to Town Law §64, among other things, exercises general management and control of Town finances, authorizes the acquisition and conveyance of any Town-owned property, manages Town property, fills vacancies in Town offices and awards Town contracts. Contact Us Paula Godfrey Legislative Aide Email Paula Godfrey Tajea Anderson Legislative Aide Email Tajea Anderson Ph: 631-287-5745 Hours: Monday-Friday 8:30 am – 4:00 pm Staff Directory Michael A. Iasilli, Councilperson William Pell IV, Councilperson Cyndi McNamara, Councilperson Tommy John Schiavoni, Councilperson Town Clerk Meetings, Agendas & Minutes Pay Your Taxes Online Services Applications, Forms & Fees Notify Me® FOIL Requests Contact Us Town of Southampton 116 Hampton Road Southampton, NY 11968 Phone: 631-283-6000 Banner photo credit: robertseifertphotography.com Site Links Contact Us Site Map Accessibility Copyright Notices Intranet Job Opportunities Title VI Non-discrimination Policy /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate " -257,https://spdblotter.seattle.gov/2008/10/02/seattle-police-investigate-possible-attempt-abduction/,Media Bulletins,Agency-Published Resources,Seattle Police Investigate Possible Attempt Abduction - SPD Blotter,"",200,403 Forbidden,"[""Seattle Police Investigate Possible Attempt Abduction""]","[""Find Posts By Topic"", ""Featured Posts"", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],"Seattle.gov Choose a language: English English Google Translate may not accurately translate all content. Read disclaimer . For general City questions, please call 206-684-2489 . Tell us your requested language in English, and we can connect you with an interpreter. Continue Cancel Español Es posible que Google Translate no traduzca con precisión todo el contenido. Lea el descargo de responsabilidad . Si necesita ayuda en otro idioma, díganos en inglés nombre del idioma que necesita y lo conectaremos con un intérprete: 206-684-2489 Seguir Cancelar 中國語文 Google翻譯可能無法準確翻譯所有內容。 閱讀免責聲明 。 如果您需要翻譯,請用英語説出您所需要的語言,我們將爲你連接口譯員: 206-684-2489 繼續 取消 简体中文 Google翻译可能无法准确翻译所有内容。 阅读免责声明 。 如果您需要翻译,请用英语说出您所需要的语言,我们将为你连接口译员: 206-684-2489 继续 取消 Tiếng Việt Google Dịch có thể không dịch chính xác tất cả nội dung. Đọc tuyên bố từ chối trách nhiệm . Nếu quý vị cần hỗ trợ về ngôn ngữ, xin vui lòng cho chúng tôi biết ngôn ngữ quý vị cần hỗ trợ bằng tiếng Anh (ví dụ “Vietnamese”), chúng tôi sẽ kết nối quý vị với một thông dịch viên: 206-684-2489 Tiếp tục Huỷ bỏ русский язык Google Translate не может точно перевести весь контент. Прочтите отказ от ответственности . Если вам нужна языковая помощь, сообщите нам на английском, какой язык вам нужен, и мы свяжем вас с переводчиком: 206-684-2489 Продолжать Отмена Af-Soomaali Google Translate ayaan si sax ah u turjumi karin dhammaan waxyaabaha ku jira. Akhri afeef . Haddii aad u baahan tahay caawimaad luqadeed, fadlan noogu sheeg Ingiriisiga luqadda aad u baahan tahay, ka dib waxaan kugu xiri doonnaa turjubaan: 206-684-2489 Sii wad Jooji አማርኛ የጉግል ትርጉም ሁሉንም ይዘቶች በትክክል መተርጎም ላይችል ይችላል። ማስተባበያ አንብብ ፡፡ ኣስተርጓሚ ካስፈለግዎ የሚፈልጉትን ቋንቋ በእንግልዝኛ ይንገሩን፣ ከኣስተርጓሚ እናገናኝዎታለን። 206-684-2489 ቀጥል ሰርዝ 한국어 구글은 정확하게 모든 내용을 번역하지 않을 수 있습니다 번역. 읽기 면책 조항 . 언어지원이 필요한 경우, 필요한 언어를 영어로 말씀해 주시면 통역사와 연결해 드리겠습니다: 206-684-2489 계속하다 취소 Tagalog Maaaring hindi tumpak na isalin ng Google Translate ang lahat ng nilalaman. Basahin ang disclaimer . Para sa mga pangkalahatang katanungan sa Lungsod, mangyaring tawagan ang 206-684-2489 . Sabihin sa amin ang hiniling mong wika sa Ingles, at maikokonekta ka namin sa isang interpreter. Magpatuloy Kanselahin ภาษาไทย Google Translate อาจแปลเนื้อหาทั้งหมดไม่ถูกต้อง อ่านข้อจำกัดความรับผิดชอบ สำหรับคำถามทั่วไปเกี่ยวกับเมืองโปรดโทร 206-684-2489 บอกภาษาที่คุณต้องการเป็นภาษาอังกฤษและเราสามารถติดต่อคุณกับล่ามได้ ดำเนินการต่อ ยกเลิก 日本語 Google翻訳は、すべてのコンテンツを正確に翻訳するとは限りません. 免責事項をお読みください 。 市の一般的な質問については 206-684-2489 に電話してください。ご希望の言語を英語で教えていただければ、通訳をご案内いたします。 継続する キャンセル ភាសាខ្មែរ កម្មវិធីបកប្រែហ្គូហ្គោលមិនអាចបកប្រែមាតិកាទាំងអស់បានត្រឹមត្រូវទេ។ អានការបដិសេធ។ សម្រាប់សំណួរទូទៅរបស់ទីក្រុងសូមទូរស័ព្ទមក 206-684-2489 ។ ប្រាប់យើងពីភាសាដែលអ្នកស្នើសុំជាភាសាអង់គ្លេសហើយយើងអាចភ្ជាប់អ្នកជាមួយអ្នកបកប្រែភាសា។ បន្ត បោះបង់ ພາສາລາວ Google Translate ອາດຈະບໍ່ແປເນື້ອຫາທັງ ໝົດ ຢ່າງຖືກຕ້ອງ. ອ່ານປະຕິເສດ . ສຳ ລັບ ຄຳ ຖາມທົ່ວໄປຂອງເມືອງ, ກະລຸນາໂທຫາ 206-684-2489 . ບອກພວກເຮົາເປັນພາສາອັງກິດທີ່ທ່ານຮ້ອງຂໍ, ແລະພວກເຮົາສາມາດເຊື່ອມຕໍ່ທ່ານກັບນາຍແປພາສາ. ສືບຕໍ່ ຍົກເລີກ Українська Перекладач Google може не точно перекласти весь вміст. Прочитайте застереження . За загальними запитаннями про місто, будь ласка, телефонуйте 206-684-2489 . Розкажіть нам про вашу мову англійською мовою, і ми можемо зв’язати вас із перекладачем. Продовжуйте Скасувати Français Google Traduction peut ne pas traduire correctement tout le contenu. Lisez la clause de non-responsabilité . Pour des questions générales sur la ville, veuillez appeler le 206-684-2489 . Dites-nous votre langue souhaitée en anglais, et nous pourrons vous mettre en contact avec un interprète. Continuer Annuler " -258,https://sanfordfl.gov/wp-content/uploads/2020/07/police_employment.jpg,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -259,https://harrington.delaware.gov/links-forms/citizens-police-academy-flyer/,Poor Data Source,Poor Data Source,Citizen’s Police Academy Flyer - City of Harrington,"",200,Home - City of Harrington - Kent County Delaware,"[""HARRINGTON""]","[""Citizen’s Police Academy Flyer""]","[""Menu""]","["""", ""Quick Links"", ""To view City of Harrington Meeting Agendas, click on the Civic Web Logo above""]",[],[],Skip to Content Skip to Footer Toggle navigation Menu Home Government Mayor’s Corner City Council Meeting Minutes Past City Council Meeting Minutes Committees & Boards City Code Ordinances & Resolutions Departments City Hall Parks & Recreation Price Center Rentals Harrington Public Library Planning & Inspections Public Works Waste Water Info History Water Report Events Comprehensive Land Use Plan Maps Employment Opportunites News Trash & Recycling Important Links Business Listings Utilities & Tax Info Forms Vacant Commercial Lots Schools Churches & Religious Centers Community Cats Program Harrington Happenings Newsletter Harrington Historical Society Downtown District Map & Property Information Incentives Resources District Plan Presentations Police Mission & Goals Harrington Police Department Police Administrative Staff Chief’s Corner History of Police Chiefs Police Units Officer of the Year Sex Offender Registry Links & Forms Contact FOIA Request Contact Us Skip to Content Skip to Footer Toggle navigation Menu Home Government Mayor’s Corner City Council Meeting Minutes Past City Council Meeting Minutes Committees & Boards City Code Ordinances & Resolutions Departments City Hall Parks & Recreation Price Center Rentals Harrington Public Library Planning & Inspections Public Works Waste Water Info History Water Report Events Comprehensive Land Use Plan Maps Employment Opportunites News Trash & Recycling Important Links Business Listings Utilities & Tax Info Forms Vacant Commercial Lots Schools Churches & Religious Centers Community Cats Program Harrington Happenings Newsletter Harrington Historical Society Downtown District Map & Property Information Incentives Resources District Plan Presentations Police Mission & Goals Harrington Police Department Police Administrative Staff Chief’s Corner History of Police Chiefs Police Units Officer of the Year Sex Offender Registry Links & Forms Contact FOIA Request Contact Us Skip to Content Skip to Footer Toggle navigation Menu Home Government Mayor’s Corner City Council Meeting Minutes Past City Council Meeting Minutes Committees & Boards City Code Ordinances & Resolutions Departments City Hall Parks & Recreation Price Center Rentals Harrington Public Library Planning & Inspections Public Works Waste Water Info History Water Report Events Comprehensive Land Use Plan Maps Employment Opportunites News Trash & Recycling Important Links Business Listings Utilities & Tax Info Forms Vacant Commercial Lots Schools Churches & Religious Centers Community Cats Program Harrington Happenings Newsletter Harrington Historical Society Downtown District Map & Property Information Incentives Resources District Plan Presentations Police Mission & Goals Harrington Police Department Police Administrative Staff Chief’s Corner History of Police Chiefs Police Units Officer of the Year Sex Offender Registry Links & Forms Contact FOIA Request Contact Us CITY OF HARRINGTON DELAWARE CITY OF HARRINGTON DELAWARE CITY OF HARRINGTON DELAWARE CITY OF HARRINGTON DELAWARE -260,https://spdblotter.seattle.gov/2013/07/23/police-investigating-gunfire-in-rainier-beach/,Media Bulletins,Agency-Published Resources,Police Investigating Gunfire In Rainier Beach - SPD Blotter,"",200,403 Forbidden,"[""Police Investigating Gunfire In Rainier Beach""]","[""Find Posts By Topic"", ""Featured Posts"", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],"Seattle.gov Choose a language: English English Google Translate may not accurately translate all content. Read disclaimer . For general City questions, please call 206-684-2489 . Tell us your requested language in English, and we can connect you with an interpreter. Continue Cancel Español Es posible que Google Translate no traduzca con precisión todo el contenido. Lea el descargo de responsabilidad . Si necesita ayuda en otro idioma, díganos en inglés nombre del idioma que necesita y lo conectaremos con un intérprete: 206-684-2489 Seguir Cancelar 中國語文 Google翻譯可能無法準確翻譯所有內容。 閱讀免責聲明 。 如果您需要翻譯,請用英語説出您所需要的語言,我們將爲你連接口譯員: 206-684-2489 繼續 取消 简体中文 Google翻译可能无法准确翻译所有内容。 阅读免责声明 。 如果您需要翻译,请用英语说出您所需要的语言,我们将为你连接口译员: 206-684-2489 继续 取消 Tiếng Việt Google Dịch có thể không dịch chính xác tất cả nội dung. Đọc tuyên bố từ chối trách nhiệm . Nếu quý vị cần hỗ trợ về ngôn ngữ, xin vui lòng cho chúng tôi biết ngôn ngữ quý vị cần hỗ trợ bằng tiếng Anh (ví dụ “Vietnamese”), chúng tôi sẽ kết nối quý vị với một thông dịch viên: 206-684-2489 Tiếp tục Huỷ bỏ русский язык Google Translate не может точно перевести весь контент. Прочтите отказ от ответственности . Если вам нужна языковая помощь, сообщите нам на английском, какой язык вам нужен, и мы свяжем вас с переводчиком: 206-684-2489 Продолжать Отмена Af-Soomaali Google Translate ayaan si sax ah u turjumi karin dhammaan waxyaabaha ku jira. Akhri afeef . Haddii aad u baahan tahay caawimaad luqadeed, fadlan noogu sheeg Ingiriisiga luqadda aad u baahan tahay, ka dib waxaan kugu xiri doonnaa turjubaan: 206-684-2489 Sii wad Jooji አማርኛ የጉግል ትርጉም ሁሉንም ይዘቶች በትክክል መተርጎም ላይችል ይችላል። ማስተባበያ አንብብ ፡፡ ኣስተርጓሚ ካስፈለግዎ የሚፈልጉትን ቋንቋ በእንግልዝኛ ይንገሩን፣ ከኣስተርጓሚ እናገናኝዎታለን። 206-684-2489 ቀጥል ሰርዝ 한국어 구글은 정확하게 모든 내용을 번역하지 않을 수 있습니다 번역. 읽기 면책 조항 . 언어지원이 필요한 경우, 필요한 언어를 영어로 말씀해 주시면 통역사와 연결해 드리겠습니다: 206-684-2489 계속하다 취소 Tagalog Maaaring hindi tumpak na isalin ng Google Translate ang lahat ng nilalaman. Basahin ang disclaimer . Para sa mga pangkalahatang katanungan sa Lungsod, mangyaring tawagan ang 206-684-2489 . Sabihin sa amin ang hiniling mong wika sa Ingles, at maikokonekta ka namin sa isang interpreter. Magpatuloy Kanselahin ภาษาไทย Google Translate อาจแปลเนื้อหาทั้งหมดไม่ถูกต้อง อ่านข้อจำกัดความรับผิดชอบ สำหรับคำถามทั่วไปเกี่ยวกับเมืองโปรดโทร 206-684-2489 บอกภาษาที่คุณต้องการเป็นภาษาอังกฤษและเราสามารถติดต่อคุณกับล่ามได้ ดำเนินการต่อ ยกเลิก 日本語 Google翻訳は、すべてのコンテンツを正確に翻訳するとは限りません. 免責事項をお読みください 。 市の一般的な質問については 206-684-2489 に電話してください。ご希望の言語を英語で教えていただければ、通訳をご案内いたします。 継続する キャンセル ភាសាខ្មែរ កម្មវិធីបកប្រែហ្គូហ្គោលមិនអាចបកប្រែមាតិកាទាំងអស់បានត្រឹមត្រូវទេ។ អានការបដិសេធ។ សម្រាប់សំណួរទូទៅរបស់ទីក្រុងសូមទូរស័ព្ទមក 206-684-2489 ។ ប្រាប់យើងពីភាសាដែលអ្នកស្នើសុំជាភាសាអង់គ្លេសហើយយើងអាចភ្ជាប់អ្នកជាមួយអ្នកបកប្រែភាសា។ បន្ត បោះបង់ ພາສາລາວ Google Translate ອາດຈະບໍ່ແປເນື້ອຫາທັງ ໝົດ ຢ່າງຖືກຕ້ອງ. ອ່ານປະຕິເສດ . ສຳ ລັບ ຄຳ ຖາມທົ່ວໄປຂອງເມືອງ, ກະລຸນາໂທຫາ 206-684-2489 . ບອກພວກເຮົາເປັນພາສາອັງກິດທີ່ທ່ານຮ້ອງຂໍ, ແລະພວກເຮົາສາມາດເຊື່ອມຕໍ່ທ່ານກັບນາຍແປພາສາ. ສືບຕໍ່ ຍົກເລີກ Українська Перекладач Google може не точно перекласти весь вміст. Прочитайте застереження . За загальними запитаннями про місто, будь ласка, телефонуйте 206-684-2489 . Розкажіть нам про вашу мову англійською мовою, і ми можемо зв’язати вас із перекладачем. Продовжуйте Скасувати Français Google Traduction peut ne pas traduire correctement tout le contenu. Lisez la clause de non-responsabilité . Pour des questions générales sur la ville, veuillez appeler le 206-684-2489 . Dites-nous votre langue souhaitée en anglais, et nous pourrons vous mettre en contact avec un interprète. Continuer Annuler " -261,https://chandlerazpd.gov/2013/01/chandler-police-explorers-host-competition-2/,Media Bulletins,Agency-Published Resources,Chandler Police Explorers Host Competition – Chandler Police Department,"",200,Chandler Police Department,"[""Chandler Police Explorers Host Competition""]",[],"[""Quick Links"", ""News Archives"", """", """", """", """"]","[""January 17, 2013"", ""Contact"", ""About the Department"", ""Latest News"", ""Courage, Pride, Dedication © 2024 Chandler Police Department""]",[],[],"The Chandler Police Department main lobby will be closed for renovations. Please see below for further. The Chandler Police Department main lobby will be closed for renovations. Please see below for further. Toggle navigation City of Chandler Mayor’s Office City Council Fire Department Residents Business Employee Info Toggle navigation City of Chandler Mayor’s Office City Council Fire Department Residents Business Employee Info Toggle navigation Menu Chandler Police About the Department Careers Community Contact Data News Toggle navigation Menu Chandler Police About the Department Careers Community Contact Data News Home News Chandler Police Explorers Host Competition Home News Chandler Police Explorers Host Competition Search for: Chandler Police Explorers Host Competition January 17, 2013 By Sergeant J. Favazzo The Chandler Police Explorers Post will be hosting their annual Law Enforcement Explorer Tactical Competition throughout the City on Saturday, January 19, 2013, from 8:00 AM to 10:00 PM and on Sunday January 20, 2013, from 8:00 AM to 3:00 PM. The Command Center for the event will be at the Chandler Fire Academy, located at 3550 S. Dobson Road. Information about various competitions and maps to the venues will be made available at the command center. The Chandler Police Explorers annual competition began in 1999 and has experienced continued and growing success each year. Explorer Posts from around the state of Arizona and throughout the United States will be competing in this year’s events. The competitions include police tactics such as hostage negotiations, building searches, pistol shooting, and other team and individual events. Explorers will be able to use new firearms training technology, new to law enforcement and will debut at this year’s event. The law enforcement explorer programs are sponsored through their affiliated agencies as well as through Learning for Life, a subsidiary of the Boy Scouts of America. The explorer program is for youth ages 14 to 20 interested in pursuing a career in law enforcement. Search for: Quick Links About the Department Office of the Chief Interim Chief Of Police Melissa Deanda Assistant Chief Of Police Dave Ramer Department Events My Precinct Fingerprinting Services Request a Police Report Bicycle Registration General Orders/Accreditation Alarm Information Registered Sex Offenders Citizen Observer (Ride-Along) Vehicle Impounds Barking Dog Police Open Data Public Demonstration Guidelines News Archives August 2022 September 2021 July 2021 September 2020 August 2020 June 2020 May 2020 April 2020 March 2020 February 2020 January 2020 December 2019 " -262,https://dps.georgia.gov/job-vacancy-announcement-georgia-capitol-police-officer-four-positions-0,Media Bulletins,Agency-Published Resources,Job Vacancy Announcement-Georgia Capitol Police Officer (Four Positions) | Georgia Department of Public Safety,Job Vacancy Announcement: Georgia Capitol Police Officer (Four Positions)Location: Capitol Police Division- Capitol Hill- Atlanta (Fulton County),200,Georgia Department of Public Safety,"[""Job Vacancy Announcement-Georgia Capitol Police Officer (Four Positions)""]","[""Main navigation"", ""Search this site"", ""Breadcrumb"", ""How can we help?"", ""About Us"", ""Get in Touch""]","[""Popular searches"", ""Call Us"", ""Visit"", ""Mail"", ""Hours""]",[],[],[],"" -263,http://www.longbeach.gov/police/press-releases/murder-investigation6/,Media Bulletins,Agency-Published Resources,MURDER INVESTIGATION (500 BLOCK OF RHEA STREET),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 9/8/2018 FOR IMMEDIATE RELEASE Press Release # 2018 Subject: MURDER INVESTIGATION (500 BLOCK OF RHEA STREET) Contact: Media Relations Detail (562) 570-7244 On Saturday, September 8, 2018, at approx. 2:00 a.m., officers were dispatched to the 500 block of Rhea Street to assist the Long Beach Fire Department with a person down call, which resulted in the death of male adult. When officers arrived, they located the victim on the sidewalk in front a residence, who had been struck in the upper torso by gunfire. The victim was determined deceased at the scene by Long Beach Fire. The Los Angeles County Coroner’s Office will determine the identity of the victim, and make notification to next of kin. There is no suspect information available. A motive or whether the shooting is gang-related is unknown and remains under investigation. Anyone with information regarding the incident is urged to call Long Beach Police Homicide Detectives Malcolm Evans and Robert Gonzales at (562) 570-7244. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting www.lacrimestoppers.org. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -264,https://police.greenvillesc.gov/faq.aspx?qid=317,Resources,Agency-Published Resources,FAQs • Where are you located?,"",200,"Police Department | Greenville, SC - Official Website",[],"[""▼ Municipal Court - General""]","[""Categories"", ""Live Edit"", ""Loading""]",[],[],[],Skip to Main Content -265,https://southamptontownnypolice.gov/722/great-east-end-cleanup---2022,Poor Data Source,Poor Data Source,"Great East End Cleanup - 2024 | Southampton, NY - Official Website",Discover how to help clear up debris caused by illegal dumping.,200,"Police | Southampton, NY - Official Website","[""Great East End Cleanup - 2024"", ""Join Councilwoman Cyndi McNamara, for the 2024 Great East End Clean-Up, taking place on Saturday, April 27th and Sunday, April 28th"", ""Click Here to Register Registration Begins, March 1st""]",[],"[""Site Tools"", ""Download Instructions and Flyer"", ""Contact Us"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Government Town Services Community Info How Do I Translate Page Site Tools Home My Account Printer Friendly Email Page Contact Us RSS Site Map Translate Page Notifications Documents Search Home Government Departments Municipal Works - Waste Management Services & Programs Great East End Cleanup - 2024 Great East End Cleanup - 2024 Join Councilwoman Cyndi McNamara, for the 2024 Great East End Clean-Up, taking place on Saturday, April 27th and Sunday, April 28th Click Here to Register Registration Begins, March 1st Individuals and community groups are welcome to participate. Southampton Town will provide the garbage bags and a free pass to the Town recycling centers to dispose of the refuse. If you would like to participate − and we hope you do − all you need to do is select an area of public property such as a park, beach, trail, or roadside that is in need of cleaning. Then, complete the registration form online, by Wednesday, April 24. I emphasize that the site you select must be publicly maintained. The Town provides garbage bags and disposal passes for the Town recycling centers. Registrants may get these materials on: Monday, April 1st-Friday, April 26th between 8:30 am - 3:30 pm Southampton Town Hall, Citizens' Response Center - 116 Hampton Road, Southampton Public Safety & Emergency Management office - 27 Ponquogue Ave, Hampton Bays Download Instructions and Flyer 2024 Great East End Clean Up Poster 2024 Volunteer Instructions Guest Speaker STOP Program (Hazardous Waste) Public Education & Outreach Tours Town Clerk Meetings, Agendas & Minutes Pay Your Taxes Online Services Applications, Forms & Fees Notify Me® FOIL Requests Contact Us Town of Southampton 116 Hampton Road Southampton, NY 11968 Phone: 631-283-6000 Banner photo credit: robertseifertphotography.com Site Links Contact Us Site Map Accessibility Copyright Notices Intranet Job Opportunities Title VI Non-discrimination Policy /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate " -266,http://www.ryepolice.us/parking/attachment/parkingappeal-2,Resources,Agency-Published Resources,Rye Police Department Parking Appeal Form - Rye Police Department,"",200,Rye Police Department Welcome to the Rye Police Department - Rye Police Department,"[""Parking Appeal Form""]","[""Parking Appeal Form""]","[""Navigation"", ""Follow Us"", ""Facebook"", ""Email Updates"", ""Storm Preparedness Guide""]",[],[],[],"Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Chief’s Message Crime Prevention Victim Services Domestic Violence Computer Crime Identity Theft Press Releases Police Logs Events Event Permits Beach Permits FAQ Contact Us Search Parking Appeal Form Home Parking Appeal Form Parking Appeal Form May 14, 2014 Parking Appeal Form Navigation About Rye Animal Control Announcements Beach Information Careers Chief’s Message Computer Crime Contact Us Coronavirus Crime Prevention Directions Domestic Violence FAQ Firearms Safety Fireworks Forms Identity Theft Mission Statement Parking Payments Personnel Police Logs Prescription Drug Disposal Press Releases Report Request Town Ordinances Victim Services West Nile / EEE Follow Us Facebook Facebook Email Updates Subscribe to our newsletter. We promise you won't get flooded with junk! Email * Storm Preparedness Guide Developed by ThemeMakers Posting.... Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Chief’s Message Crime Prevention Victim Services Domestic Violence Computer Crime Identity Theft Press Releases Police Logs Events Event Permits Beach Permits FAQ Contact Us Search Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Chief’s Message Crime Prevention Victim Services Domestic Violence Computer Crime Identity Theft Press Releases Police Logs Events Event Permits Beach Permits FAQ Contact Us Search Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Chief’s Message Crime Prevention Victim Services Domestic Violence Computer Crime Identity Theft Press Releases Police Logs Events Event Permits Beach Permits FAQ Contact Us Search Chief’s Message Crime Prevention Victim Services Domestic Violence Computer Crime Identity Theft Press Releases Police Logs Events Event Permits Beach Permits FAQ Contact Us Search Chief’s Message Crime Prevention Victim Services Domestic Violence Computer Crime Identity Theft Press Releases Police Logs Events Event Permits Beach Permits FAQ Contact Us Search Parking Appeal Form Home Parking Appeal Form Parking Appeal Form May 14, 2014 Parking Appeal Form Navigation About Rye Animal Control Announcements Beach Information Careers Chief’s Message Computer Crime Contact Us Coronavirus Crime Prevention Directions Domestic Violence FAQ Firearms Safety Fireworks Forms Identity Theft Mission Statement Parking Payments Personnel Police Logs Prescription Drug Disposal Press Releases Report Request Town Ordinances Victim Services West Nile / EEE Follow Us Facebook Facebook Email Updates Subscribe to our newsletter. We promise you won't get flooded with junk! Email * Storm Preparedness Guide Developed by ThemeMakers Parking Appeal Form Home Parking Appeal Form Home Parking Appeal Form Parking Appeal Form May 14, 2014 Parking Appeal Form Navigation About Rye Animal Control Announcements Beach Information Careers Chief’s Message Computer Crime Contact Us Coronavirus Crime Prevention Directions Domestic Violence FAQ Firearms Safety Fireworks Forms Identity Theft Mission Statement Parking Payments Personnel Police Logs Prescription Drug Disposal Press Releases Report Request Town Ordinances Victim Services West Nile / EEE Follow Us " -267,https://www.roseville.ca.us/government/departments/electric_utility/about_us/building_and_renovation_copy/request_for_proposal_archived,Poor Data Source,Poor Data Source,Bids & RFP's - City of Roseville,"",200,Just a moment...,"[""City of Roseville""]","[""Bids & RFP's""]","[""City of Roseville""]",[],[],[],"" -268,https://www.knoxvilletn.gov/archived_news_stories/2009/knoxville_police_prepared_for_holiday_traffic,Media Bulletins,Agency-Published Resources,Knoxville Police Prepared For Holiday Traffic - City of Knoxville,communications*,200,Just a moment...,"[""Knoxville Police Prepared For Holiday Traffic"", ""Communications Director"", ""Knoxville Police Prepared For Holiday Traffic""]",[],[],[],[],[],Skip navigation {1} ##LOC[OK]## {1} ##LOC[OK]## {1} ##LOC[OK]## {1} ##LOC[OK]## -269,https://coloradosprings.gov/police-department/article/news/colorado-springs-police-departments-k9-zev,Media Bulletins,Agency-Published Resources,Colorado Springs Police Department’s K9 Zev to get donation of body armor | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""Colorado Springs Police Department’s K9 Zev to get donation of body armor""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[],"" -270,https://rexburg.us/police-identify-woman-killed-in-9-vehicle-crash-in-sandy/,Poor Data Source,Poor Data Source,"","",522,"","","","","","","","" -271,https://beaumonttexas.gov/beaumont-police-investigating-homicide-4300-woodlawn/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -272,https://delcopa.gov/sustainability/pdf/raise/trailplanappendixe.pdf,Poor Data Source,Poor Data Source,"404 - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert " -273,https://www.mass.gov/doc/chaves-david-v-boston-police-department-related-superior-court-order-42711/download,Court Cases,Jails & Courts Specific,"","",200,"","","","","","","","" -274,https://www.ci.vallejo.ca.us/our_city/departments_divisions/police_department,Contact Info & Agency Meta,Info About Agencies,Home - City of Vallejo Police Department,"",200,Just a moment...,"[""Our mission""]",[],"[""Vallejo Police Department""]",[],[],[],"" -275,https://www.mass.gov/doc/shackford-michael-v-boston-police-department-72414/download,Court Cases,Jails & Courts Specific,"","",200,"","","","","","","","" -276,https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/blotter/041422blotter.pdf,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -277,https://www.ci.san-bernardino.ca.us/city_hall/police_department/emergency_management/cert/cert_basic_training,Not Criminal Justice Related,Not Criminal Justice Related,CERT Basic Training - City of San Bernardino,"",200,Just a moment...,"[""City of San Bernardino California""]","[""CERT Basic Training""]",[],[],[],[],Skip to Content -278,https://beaumonttexas.gov/beaumont-police-investigating-aggravated-robbery-2568-college/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -279,https://police.crystalmn.gov/police/community_outreach/run_for_leo,Misc Police Activity,Police & Public Interactions,"","",404,"","","","","","","","" -280,https://wyoming.delaware.gov/wp-content/uploads/sites/33/nggallery/3rd-annual-wyoming-police-department-fishing-derby/p1010878.jpg,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -281,http://www.longbeach.gov/police/press-releases/robbery-suspects-arrestd-and-charged/,Media Bulletins,Agency-Published Resources,ROBBERY SUSPECTS ARRESTD and CHARGED,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 11/30/2017 FOR IMMEDIATE RELEASE Press Release # Subject: ROBBERY SUSPECTS ARRESTED and CHARGED Contact: Media Relations Detail (562) 570-5273 On November 30, 2017, felony charges were filed against a 23-year-old male and a 26-year-old male for their involvement in a robbery to a female motorist. On October 1, 2017, at approximately 10:00 PM, officers were dispatched to the 5200 block of East 2 nd Street regarding a female screaming. The preliminary investigation found that a suspect, armed with a handgun, approached the victim, and demanded her property. The suspect grabbed the victim’s purse and fled to an awaiting vehicle. Fortunately, the victim was not injured during the robbery. Through their investigation, detectives learned that some of the loss was used at a convenience store in the City of Los Angeles. After reviewing the video footage, detectives were able to identify the suspects . On November 28, 2017, detectives arrested 23-year-old Servando Hernandez in the 10000 block of San Anselmo in the city of South Gate. Detectives also executed a search warrant at the suspect’s residence and recovered evidence, including a loaded handgun. On November 29, 2017, detectives arrested 26-year-old Wuilver Yovani Flores in 7900 block of Morton Avenue in the city of Los Angeles. Detectives executed a search warrant at the suspect’s residence, recovering evidence related to the robbery. Today, the case was presented to the Los Angeles County District Attorney’s Office, which filed one count of robbery against Servando Hernandez and one count of robbery against Wuilver Yovani Flores. Both suspects are being held at the Long Beach city jail. Hernandez’s bail is $50,000 and Flores’s bail is $85,000. Flores also had $35,000.00 in outstanding arrest warrants for charges related to narcotics and traffic violations. Anyone with information regarding this investigation is encouraged to call Robbery Detective JJ Johnson at (562) 570-5731. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -282,https://www.huntsvilleal.gov/huntsville-police-launch-summer-slowdown-campaign/,Media Bulletins,Agency-Published Resources,Huntsville Police Launch Summer Slowdown Campaign - City of Huntsville,"",200,403 Forbidden,"[""Huntsville Police Launch Summer Slowdown Campaign""]","[""Top Requests"", ""HSV TV"", ""City News"", ""Contact Us""]",[],"[""WATCH Summer Slowdown: Construction Zones"", ""Summer Slowdown: Daily Commute"", ""Summer Slowdown: Neighborhoods"", """"]","[""Browse By Month"", ""Browse By Category"", ""Share & Print""]",[],Main Menu Main Menu Residents Back Residents Animal Services Neighborhoods Public Safety Volunteer Cemeteries Pay a Ticket Streets & Transportation Water & Sewer Garbage & Recycling Parks & Recreation Resident Toolkit Business Back Business About Huntsville Big Picture GIS Maps & Data Employment Bid A Project Codes & Ordinances Economic Development File A Claim E-Bids Pay Taxes Licensing & Permits Development Back Development Bid A Project Economic Development MPO Streets & Roadwork Building & Construction GIS Maps Planning Water & Sewer Big Picture Master Plan Historic Preservation ePlans Submittal Environment Back Environment Air Quality Garbage & Recycling Noise Sustainability Find A Park Nature Preserves Recreation Water Trails & Greenways Pets Lost & Found Green Team Government Back Government Boards & Commissions City Council Finances & Budget Media Center City Calendar Departments Mayor's Office Municipal Court Vote Find A Job Codes & Ordinances Services Original text Rate this translation Your feedback will be used to help improve Google Translate Original text Rate this translation Your feedback will be used to help improve Google Translate Original text Original text Rate this translation Your feedback will be used to help improve Google Translate Rate this translation Your feedback will be used to help improve Google Translate Rate this translation Your feedback will be used to help improve Google Translate -283,https://ose.louisiana.gov/event/supervisor-of-police-records/,Poor Data Source,Poor Data Source,Supervisor of Police Records | Louisiana Office of State Examiner,"",200,403 Forbidden,"["""", ""Supervisor of Police Records""]",[],"[""Promotional Level""]",[],[],"[""Recent Posts"", ""Archives"", ""Categories"", ""Meta""]","Search Search Search Search Personnel Action Form About Testing & Employment Eligibility Lists Jurisdictions Resources Contact ADA Testing Accommodations Statewide Testing This event has passed. Supervisor of Police Records Promotional Level Posting Period 02/18/2022 - 03/07/22 Application Deadline 03/07/22 Jurisdiction Monroe Application Search Recent Posts Holiday Closures Archives June 2023 Categories Uncategorized Meta Log in Entries feed Comments feed WordPress.org Sign Up for Updates Δ 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Privacy Policy Facebook Copyright © 2024 Office of State Examiner Site by Gatorworks. Search Personnel Action Form About Testing & Employment Eligibility Lists Jurisdictions Resources Contact ADA Testing Accommodations Statewide Testing Search Personnel Action Form Search Search Search Personnel Action Form This event has passed. Supervisor of Police Records Promotional Level Posting Period 02/18/2022 - 03/07/22 Application Deadline 03/07/22 Jurisdiction Monroe Application Search Recent Posts Holiday Closures Archives June 2023 Categories Uncategorized Meta Log in Entries feed Comments feed WordPress.org This event has passed. Supervisor of Police Records Promotional Level Posting Period 02/18/2022 - 03/07/22 Application Deadline 03/07/22 Jurisdiction Monroe Application Search Recent Posts Holiday Closures Archives June 2023 Categories Uncategorized Meta Log in Entries feed Comments feed WordPress.org This event has passed. Supervisor of Police Records Promotional Level Posting Period 02/18/2022 - 03/07/22 Application Deadline 03/07/22 Jurisdiction Monroe Application This event has passed. Supervisor of Police Records Promotional Level Posting Period 02/18/2022 - 03/07/22 Application Deadline 03/07/22 Jurisdiction Monroe Application This event has passed. Supervisor of Police Records Promotional Level Posting Period 02/18/2022 - 03/07/22 Application Deadline 03/07/22 Jurisdiction Monroe Application This event has passed. Supervisor of Police Records Promotional Level Promotional Level Promotional Level Posting Period 02/18/2022 - 03/07/22 Application Deadline 03/07/22 Jurisdiction Monroe Posting Period 02/18/2022 - 03/07/22 Application Deadline 03/07/22 Jurisdiction Monroe Posting Period 02/18/2022 - 03/07/22 Application Deadline 03/07/22 Jurisdiction Monroe Posting Period 02/18/2022 - 03/07/22 Posting Period Application Deadline 03/07/22 Application Deadline Jurisdiction Monroe Jurisdiction Application Search Search Sign Up for Updates Δ Sign Up for Updates Δ Sign Up for Updates 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Privacy Policy Facebook 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Privacy Policy 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Phone: (225) 925-4400 Privacy Policy Facebook Facebook Facebook Copyright © 2024 Office of State Examiner Site by Gatorworks. Copyright © 2024 Office of State Examiner Site by Gatorworks. " -284,https://alpha.austin.gov/es/police-oversight/2021-03-05-7/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -285,https://alpha.austin.gov/police-oversight/formal-complaint-follow-up-investigations/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -286,http://www.ryepolice.us/logs/police-logs-for-4-8-20-4-15-20,Daily Activity Logs,Info About Officers,Rye Police Department Police Logs for 4/8/20-4/15/20 - Rye Police Department,"",200,Rye Police Department Welcome to the Rye Police Department - Rye Police Department,"[""Police Logs for 4/8/20-4/15/20""]","[""Police Logs for 4/8/20-4/15/20""]","[""Navigation"", ""Follow Us"", ""Facebook"", ""Email Updates"", ""Storm Preparedness Guide""]",[],[],[],"" -287,http://www.longbeach.gov/police/press-releases/robbery-suspect-arrested-and-charges-filed/,Media Bulletins,Agency-Published Resources,ROBBERY SUSPECT ARRESTED AND CHARGES FILED,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 7/9/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: ROBBERY SUSPECT ARRESTED; CHARGES FILED Contact: Media Relations Detail (562) 570-5273 On July 7, 2015, felony charges were filed against a 20-year-old Long Beach man in connection with a residential robbery and burglary. On June 17, 2015, around 10:00 a.m., Long Beach Police were dispatched to a burglary in the 6600 block of Indiana Avenue. Their preliminary investigation revealed that the victim had come home and was startled with the presence of a suspect. The suspect immediately pointed a handgun at the victim. Believing he was going to be shot, the victim fled. The suspect exited the residence. Fortunately, the victim was not injured. During the investigation, Robbery detectives learned that the same suspect also committed a burglary in the 6600 block of Indiana Avenue earlier in the day. While investigating the matter, detectives were able to identify 20-year-old Tajiye Muhommad. On Friday, July 3, 2015, detectives received an anonymous tip that the suspect frequents the area of Locust Avenue and 21 Street and subsequently arrested Tajiye Muhommad without incident. As detectives continued investigating the matter, they learned that a residence in the 11000 block of Centralia Road in Hawaiian Gardens had evidence related to the robbery. On July 7, 2015, SWAT officers executed a search warrant in the City of Hawaiian Gardens and located three firearms. The case was presented to the Los Angeles County District Attorney’s Office for review and on July 7, 2015, Muhommad was charged with one count of residential robbery, one count of residential burglary, and one count of possession of a firearm by a felon. Tajiye Muhommad remains in the Los Angeles County Jail without bail. Anyone with information regarding this investigation is encouraged to call the Long Beach Police Department Robbery Detail at (562) 570-7464. Anyone wishing to remain anonymous may call 1-800-22-TIPS (8477),or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -288,https://delcopa.gov/ich/resources/healthclinics.html,Not Criminal Justice Related,Not Criminal Justice Related,"404 - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert " -289,https://www.mass.gov/doc/revocation-establishment-and-merging-of-police-promotional-eligible-lists-4/download,Policies & Contracts,Info About Agencies,"","",200,"","","","","","","","" -290,https://champaignil.gov/tag/coffee-with-a-cop/,Misc Police Activity,Police & Public Interactions,Coffee with a Cop Archives - City of Champaign,"",200,403 Forbidden,"[""Items tagged: Coffee with a Cop""]","[""Champaign Police Join Community for Coffee with a Cop"", ""Champaign Police Pull Up a Chair for Coffee with a Cop"", ""Champaign Police Announces Return of “Coffee with a Cop”"", ""Champaign Police Invite Community Members for Coffee and Conversation"", ""Champaign Police Invite Community Members for Coffee and Conversation"", ""News Releases"", ""Department News""]",[],[],[],[],"" -291,https://coloradosprings.gov/police-department/article/news/update-attempted-homicide-4300-block,Media Bulletins,Agency-Published Resources,Update: Attempted Homicide 4300 block of Airport Road | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""Update: Attempted Homicide 4300 block of Airport Road""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[],"" -292,https://www.sanramon.ca.gov/our_city/departments_and_divisions/police/srpd_calendar,Poor Data Source,Poor Data Source,SRPD Calendar - City of San Ramon,"",200,Just a moment...,"[""SRPD Calendar""]","[""Contact Us"", ""Useful Links""]",[],[],[],[],"" -293,https://alpha.austin.gov/es/police-oversight/formal-complaint-family-violence-involving-mental-illness-and-other-policy-violations/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -294,https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0765/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -295,https://delcopa.gov/publicrelations/releases/2021/covid_vaccinebooster.html,Media Bulletins,Agency-Published Resources,"Delaware County COVID-19 Task Force Offering COVID-19 Vaccine Booster Beginning Sept. 28 - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Delaware County COVID-19 Task Force Offering COVID-19 Vaccine Booster Beginning Sept. 28""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"" -296,https://ridgelandsc.gov/police-department/daily-crime-reports-may,Crime Maps & Reports,Agency-Published Resources,Town of Ridgeland,Town of Ridgeland,200,Town of Ridgeland,"[""Police Department""]","[""Daily Crime Reports - May""]",[],[],[],[],"HOME GOVERNMENT Government Mayor Town Council Boards & Commissions Board, Commission, & Committee Vacancies Town Council Meeting Agendas Town Council Videos Resources Bid Opportunities Public Meeting Agendas Financial Documents DEPARTMENTS Executive Finance, HR and Risk Management Municipal Court Planning and Community Development Police Department Fire Department Water & Sewer BUSINESS Bid Opportunities Building Permits & Forms Business License Information Economic Development Opening a Business Public Meeting Agendas Resources Zoning Maps COMMUNITY About Ridgeland Battle of Honey Hill Community Events Job Opportunities Maps Gallery News & Information Ordinances Parks & Trails Public Safety/Utilities Schools Services Town of Ridgeland Farmers Market I WANT TO... Contact a Staff Member File a FOIA Request Find Out About Trash Collection Service Find the Police Department Find the Fire Department Find Town Hall Find Zoning Maps Learn About Services Pay a Traffic Fine Pay My Water Bill I Want Water/Sewer Service Rent Lakeside at Blue Heron HOME GOVERNMENT Government Mayor Town Council Boards & Commissions Board, Commission, & Committee Vacancies Town Council Meeting Agendas Town Council Videos Resources Bid Opportunities Public Meeting Agendas Financial Documents DEPARTMENTS Executive Finance, HR and Risk Management Municipal Court Planning and Community Development Police Department Fire Department Water & Sewer BUSINESS Bid Opportunities Building Permits & Forms Business License Information Economic Development Opening a Business Public Meeting Agendas Resources Zoning Maps COMMUNITY About Ridgeland Battle of Honey Hill Community Events Job Opportunities Maps Gallery News & Information Ordinances Parks & Trails Public Safety/Utilities Schools Services Town of Ridgeland Farmers Market I WANT TO... Contact a Staff Member File a FOIA Request Find Out About Trash Collection Service Find the Police Department Find the Fire Department Find Town Hall Find Zoning Maps Learn About Services Pay a Traffic Fine Pay My Water Bill I Want Water/Sewer Service Rent Lakeside at Blue Heron HOME GOVERNMENT Government Mayor Town Council Boards & Commissions Board, Commission, & Committee Vacancies Town Council Meeting Agendas Town Council Videos Resources Bid Opportunities Public Meeting Agendas Financial Documents DEPARTMENTS Executive Finance, HR and Risk Management Municipal Court Planning and Community Development Police Department Fire Department Water & Sewer BUSINESS Bid Opportunities Building Permits & Forms Business License Information Economic Development Opening a Business Public Meeting Agendas Resources Zoning Maps COMMUNITY About Ridgeland Battle of Honey Hill Community Events Job Opportunities Maps Gallery News & Information Ordinances Parks & Trails Public Safety/Utilities Schools Services Town of Ridgeland Farmers Market I WANT TO... Contact a Staff Member File a FOIA Request Find Out About Trash Collection Service Find the Police Department Find the Fire Department Find Town Hall Find Zoning Maps Learn About Services Pay a Traffic Fine Pay My Water Bill I Want Water/Sewer Service Rent Lakeside at Blue Heron " -297,https://alpha.austin.gov/police-oversight/formal-complaints-de-escalation-of-potential/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -298,https://delcopa.gov/courts/pdf/emergencyjudicialorders/fourthorderextendingstayofresidentialpropertyejectment.pdf,Court Cases,Jails & Courts Specific,"","",200,"","","","","","","","" -299,https://delcopa.gov/publicrelations/releases/2020/councilreforms.html,Not Criminal Justice Related,Not Criminal Justice Related,"During Their First Public Meeting Delaware County Council Announces Reforms to Make Government More Open and Accessible to Residents and Workers - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""County Council Announces Reforms""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],"["""", ""New Majority Announces Public Process to Develop and \n\t\t Implement Broad Ethics and Government""]",[],"" -300,http://www.longbeach.gov/police/press-releases/robbery-suspect-arrested---charges-filed/,Media Bulletins,Agency-Published Resources,ROBBERY SUSPECT ARRESTED & CHARGES FILED,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 10/31/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: ROBBERY SUSPECT ARRESTED & CHARGES FILED Contact: Media Relations Detail (562) 570-5273 On October 30, 2014, multiple felony charges were filed against 36-year-old Long Beach resident Kendrick Chester for his involvement in an armed street robbery and criminal threats. On October 21, 2014, Chester entered a business in the area of Pine Avenue and Pacific Coast Highway and threatened to harm the business owner. While threatening the business owner, the suspect simulated he had a firearm. The suspect later fled the business. On October 24, 2014, while armed with a handgun, Chester approached a victim in the 2100 block of Pine Avenue and demanded property from the victim. In fear of his life, the victim gave the suspect his property. While fleeing the scene, West Division Patrol Officers located the suspect and arrested him. The victim’s loss and a loaded firearm were recovered. While Robbery Detective Collier was assigned to investigate the robbery arrest, the suspect bailed out of jail. On October 28, 2014, Patrol Officers were dispatched to a “shots call” in the 200 block of East Burnett. While investigating the call, officers located Chester and when they attempted to speak to him, he ran. Patrol Officers subsequently located and arrested Chester. During the course of their investigation, officers located a loaded firearm near the suspect. The investigation remains ongoing. On October 30, 2014, Robbery Detectives presented the case to the Los Angeles County District Attorney’s Office, which charged one count of armed robbery and criminal threats against Chester. Kendrick D. Chester is currently being held in Los Angeles County Jail on $250,000 bail. Anyone who may have been the victim of a robbery, or have information regarding these crimes is asked to contact Long Beach Robbery Detective Don Collier at (562) 570-5537. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -301,https://champaignil.gov/tag/champaign-police-officers/,Poor Data Source,Poor Data Source,Champaign Police Officers Archives - City of Champaign,"",200,403 Forbidden,"[""Items tagged: Champaign Police Officers""]","[""Champaign Police Respond to Call for Service; Two Officers Shot, Suspect Deceased"", ""News Releases"", ""Department News""]",[],[],[],[],"skip to content City of Champaign Main Menu Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs Items tagged: Champaign Police Officers Search Champaign Police Respond to Call for Service; Two Officers Shot, Suspect Deceased Posted: May 19, 2021 On May 19, 2021, at approximately 3:24 a.m., Champaign Police responded to the 2400 block of North Neil Street for a domestic disturbance. Upon arrival, two Champaign Police Officers exited their vehicles, and the preliminary investigation indicates they encountered an armed individual and gunfire was exchanged. The suspect was fatally wounded and pronounced deceased on […] Categories: Police Department Press Releases | Tags: Champaign County Sheriff’s Office. , Champaign Police Officers , Illinois State Police , Officers sustained gunshot wounds , University of Illinois Police Department , Urbana Police Department Subscribe to City News Read All City News News Releases General Construction Fire Department Police Department Department News City Council City Manager’s Office Equity and Engagement Department Finance Department Fire Department Human Resources Department Information Technologies Department Legal Department Library METCAD 9-1-1 Neighborhood Services Department Planning and Development Department Police Department Public Works Department The Champaign Insider City Newsletter City of Champaign City of Champaign 102 N. Neil St. Champaign, IL 61820 217-403-8700 Site Disclaimer I Privacy Policy City of Champaign Main Menu Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs City of Champaign Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works " -302,https://www.osc.state.ny.us/state-agencies/payroll-bulletins/state-police/sp-25-fitness-payment,Media Bulletins,Agency-Published Resources,State Police Bulletin No. SP-25 | Office of the New York State Comptroller,Investigators and Senior Investigators in bargaining unit 62 are entitled to their final fitness payment,200,Office of the New York State Comptroller | Thomas P. DiNapoli,"[""State Police Bulletin No. SP-25"", """"]","[""Main navigation""]","[""How would you rate our website?""]","[""Disclaimer"", ""Employees Affected"", ""Payroll Register/Check Stub"", ""Questions"", ""Newsletter Sign-Up Confirmation"", ""Thank you for subscribing to the Comptroller's Weekly Newsletter!""]",[],[],"" -303,https://delcopa.gov/planning/pdf/applicationforact247review.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -304,http://www.police.wallingfordct.gov/divisions/,Contact Info & Agency Meta,Info About Agencies,"Divisions | Wallingford, CT Police Department","The Wallingford Police Department consists of six divisions as well as several units, each with their own area of responsibility in keeping our town safe.",200,"Wallingford, CT Police Department","[""Divisions""]",[],[],[],[],[],"‹ Close Menu About Us Our Team Who We Serve Our History Police Station Project Divisions Records Division Traffic Division Investigative Services Division Professional Standards & Training Division Patrol Division Community Impact Unit Public Safety Communications Center Emergency Response Team Field Training & Evaluation Program How Do I? Pistol Permits Fingerprinting Accident Reports Case Reports Traffic Violations Pay a Parking Ticket Hire a Cop Alarm Registration Careers Current Employment Opportunities Forms & Resources Bingo, Bazaar & Raffle Documents Precious Metal Application Secondhand Application Pawnbroker Application Vending Application News & Events Road Closures & Detours Agency Events & Programs Press Releases Photo Gallery Video Gallery Wallingford PBA Contact Divisions Divisions The Wallingford Police Department consists of the following divisions: Records Division Traffic Division Investigative Services Division Professional Standards & Training Division Patrol Division Community Impact Unit Public Safety Communications Center (Dispatch) Emergency Response Team Field Training & Evaluation Program The Wallingford Police Department consists of the following divisions: Records Division Traffic Division Investigative Services Division Professional Standards & Training Division Patrol Division Community Impact Unit Public Safety Communications Center (Dispatch) Emergency Response Team Field Training & Evaluation Program Location: 135 North Main Street Wallingford, CT 06492 Tel: (203) 294-2800 Fax: (203) 294-2882 Administrative Office: Monday through Friday 8 am – 4 pm Site Map Privacy Policy Accessibility Statement Anonymous Tip Form Town of Wallingford Location: 135 North Main Street Wallingford, CT 06492 Tel: (203) 294-2800 Fax: (203) 294-2882 Administrative Office: Monday through Friday 8 am – 4 pm Site Map Privacy Policy Accessibility Statement Anonymous Tip Form Town of Wallingford Web Solutions © 2022 – 2024 Wallingford Police Department. All rights reserved. Web Solutions © 2022 – 2024 Wallingford Police Department. All rights reserved. " -305,http://lafayettepolice.us/3391/census-2020,Not Criminal Justice Related,Not Criminal Justice Related,"Census 2020 | Lafayette, IN - Official Website",Complete Count Committee resources,200,"Police Department | Lafayette, IN - Official Website","[""Census 2020"", ""The Census: Your Response Matters!"", ""CENSUS IS HIRING IN GREATER LAFAYETTE!""]","[""Health clinics. Fire departments. Schools. Even roads and highways. The census can shape many different aspects of your community."", ""Learn more about the Census and why it’s so important""]","[""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Government Services Our Community Business & Development How Do I... Transparency Home Our Community Census 2020 Census 2020 The Census: Your Response Matters! Health clinics. Fire departments. Schools. Even roads and highways. The census can shape many different aspects of your community. Check back for a link to complete your form online! CENSUS IS HIRING IN GREATER LAFAYETTE! The U.S. Census Bureau is actively recruiting people for a variety of temporary jobs in Tippecanoe County, including census takers, recruiting assistants, and more. Candidates must complete an online job application. The application includes assessment questions about your education, work, and other experience. Qualified candidates must be at least 18 years of age and pass a background check. For more information, please visit: 2020 Census Jobs or call 1-855-JOB-2020. Learn more about the Census and why it’s so important Video: What is the 2020 Census? Video: How Will 2020 Census Data Be Used? Video: How Does the 2020 Census Affect Representation? Video: How Do I Take the 2020 Census? Video: Is My 2020 Census Data Safe? Factsheet: Census Safety and Security Factsheet: Census Confidentiality ACCESS LOCAL DATA Learn about our community, county, state and the U.S. Aquatics Greater Lafayette Climate Action Plan Columbian Park Zoo Community Events Community Information Area Neighborhoods Arts & Entertainment Awards Garage Sale Permit Lafayette Schools & High Schools Parking & Traffic Services Special Event Permit Application & Rules Snow Removal Visit Lafayette / West Lafayette Community Voice Contractors & Designers Digital Media Center Demolition Ordinance Fire Safety Practices Historic Home Repairs Homeless & Community Outreach Housing & Urban Development Lafayette Downtown Lafayette in Bloom Large Items: Trash Pickup Information Leaf Collection Neighborhood Services Open Burn Policy Parks & Facilities Rain Barrels Rain Gardens Recycling Report a Concern Water Wisdom Did You Know Combined Sewer Overflow (CSO) Right of Way Mowing Road Updates SIA Playground Smoke Alarms & Detectors Snow Removal Surfing the Internet Safely Trash Collection Schedule Unique Trash Items: Disposal & Recycling Water & Sewer Rates Weight & Fitness Pass Fees Wild Tykes Play Zone Amusement Area Employment Utilities Payment Submit a Request Permits & Licensing Agendas & Minutes Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate " -306,https://mattoon.illinois.gov/government/police-department/police-officer-hiring/,Training & Hiring Info,Info About Officers,"Police Officer Hiring Information - City of Mattoon, Illinois","Becoming a Police Officer Candidates are hired from a list maintained by the Police & Fire Board, created from a pool of applicants who participate in a series of tests. Applications to participate in a test are accepted for a period of time prior to each test. Look for open application periods on the",200,"Official Website - City of Mattoon, Illinois","[""Becoming a Police Officer""]",[],"[""Mattoon Police Department Contact Information"", ""Police Department Links"", ""City Departments""]","[""Popular Links"", ""Business"", ""City Employees"", ""Residents"", ""Mattoon City Info""]",[],[],"Official Government Website for the City of Mattoon, Illinois Official Government Website for the City of Mattoon, Illinois Jump to... Home Government Residents Visitors Business Bids/RFPs About Utilities Make a Payment Public Notices Info Contact Police Officer Hiring Information Municipal Staff 2021-08-21T18:41:36-05:00 Home Government Police Department Police Officer Hiring Information Becoming a Police Officer Candidates are hired from a list maintained by the Police & Fire Board, created from a pool of applicants who participate in a series of tests. Applications to participate in a test are accepted for a period of time prior to each test. Look for open application periods on the City’s Employment Opportunities page . The application process is managed by IOS Solutions . The Mattoon Police Department has an application period open as of December 11, 2021. Learn more on the Police Officer Employment Opportunity page , or download the 2021 Application Process Details (PDF) . Search for: Mattoon Police Department Contact Information Chief of Police: Sam Gaines Deputy Chief: Ryan Hurst Emergency – Dial 911 Non-Emergency Phone: 217-235-5451 Administration: 217-258-7901 1710 Wabash Avenue Mattoon, Illinois 61938 Find the Mattoon Police Department on Facebook Police Department Links Burglary Prevention Tips Coles County Crimestoppers Fraudulent Checks Halloween Safety Tips Identity Theft Tips Illinois State Police Sex Offender Registry School Campus Safety Guide City Departments City Administrator City Attorney City Clerk City Council Code Enforcement Dodge Grove Cemetery Finance Department Finance Director Fire Department Mattoon Public Library Mayor Parks & Recreation Police Department Public Works Department Tourism Department Mattoon City Hall 208 North 19th Street Mattoon, Illinois 61938 Phone: 217-235-5654 Open Monday – Friday 8:00 a.m. – 4:30 p.m. Popular Links Pay My Bill Lakes Government Information & Documents Residents Police Department City Council Meetings Visitors Code of Ordinances Home Business Bids/RFPs TIF Info & Business Maps Chamber of Commerce TIF and BDD Programs City Employees City E-mail Human Resources Files Employment Residents Contact Pay Your Water Bill Activate Water Service Disconnect Water Service Recycling Program Suspended Parks & Recreation Report a Problem Ask a Question Mattoon City Info News Map of the City FOIA Requests Mattoon Arts Council Churches Clubs & Organizations Utilities © 2019- City of Mattoon, Illinois. All rights reserved. Website designed & hosted by Blue Heron Website Design . Sitemap | Privacy Policy " -307,https://www.elburn.il.us/village-staff-directory/name/police-and-fire-emergencies/,Poor Data Source,Poor Data Source,"Police and Fire Emergencies | Village Staff Directory | Village of Elburn, Illinois","",200,"Home | Village of Elburn, Illinois","[""Police and Fire Emergencies | Village Staff Directory""]","[""Police and Fire Emergencies""]",[],[],"[""Links"", ""Main Contact Info"", ""Follow Us""]",[],"Village of Elburn | (630) 365-5060 | M-F 7:00AM - 3:30PM View/Pay Water Bill Report A Problem Contact Us MENU MENU Home Government Administration Village Administrator Village Code Finance & Human Resources Clerk & Treasurer Police Department Auto Stickers & Parking Permits Child Safety Seat Crime Prevention Forms and Documents Laws/Ordinances Links of Interest Metra Information Metra FAQ Online Reporting Registered Sex Offenders Police Department FAQ Building & Zoning Homeowner Improvement Codes & Ordinances Commercial Permits Construction Benchmarks Digging? Call Julie Public Works Direct Debit Enrollment Water Bill Payment Water Reports Water Restrictions Water & Sewer Rates NPDES Phase II Economic Development Comprehensive Plan Demographics Escrow Policies Consultants Boards & Commissions Agendas & Minutes Village Board Planning/Zoning Board Tree Board Parks Commission Police Commission Police Pension Board Transparency Annual Meeting Calendar Agendas & Minutes Administrator Contact Info Village Board Contact Info FOIA Requests Budgets & Financial Audits Salary & Benefits Info Treasure's Reports Employer Cost & Participation Info Bills Lists Elburn Property Taxes Sales & Other Taxes Document Library Business & Development Available Space Available Commercial Space Available Industrial Space Business Resources Downtown Facade Program Elburn Chamber of Commerce Places for Eating Tax Illinois Gaming Tax Sales Tax Rates in Elburn For Residents Services Child Safety Seat Certified Installation CodeRED Community Notifications Town & Country Public Library Utility Contacts Utility Tax Rebate for Seniors Vacation Watch Waste & Recycling Property Taxes Homeowner and Senior Citizen Exemptions Property Tax Extension Limitation Law Sample Tax Bill Special Service Areas Real Estate Transfer Taxes Enjoy Elburn Festivals, Parades & More History of Elburn Recreation & Leisure How Do I Apply For Bike Rack Installation Block Party/Special Event Permit Building Permits Employment FOIA Request Recommending Commission or Board Residential Parking Permit Find Agendas & Minutes Bids & Projects Child Safety Seat Certified Installation Codes & Ordinances Document Library Meetings & Events Metra FAQ Police Dept. FAQ Water Bill Online Contact Report an ADA Grievance Report A Problem Police for Non-Emergencies Utility Contacts Village Department Directory Pay Ordinance or Parking Citation Taxes Water Bill Police and Fire Emergencies | Village Staff Directory Home Police and Fire Emergencies | Village Staff... Go back to directory. Add to Address Book. Police and Fire Emergencies Work ELBURN IL 60119 work Work Phone : 9-1-1 work No Image Available We are and shall be an innovative community that maintains small town values while working to: Enhance the quality of life of our residents; Promote and Support our businesses; and Welcome new opportunities which enable the Village of Elburn to be the ideal place to live, work, worship, and play. Links Agendas & Meeting Minutes Bids & Projects Building & Zoning Codes & Ordinances Employment Events & Meetings FOIA Latest News View/Pay Water Bill Main Contact Info Hours: Mon-Fri: 7:00am - 3:30pm Phone: (630) 365-5060 Fax: 630-365-5063 301 E. North St., Elburn, IL 60119 Follow Us Village of Elburn © 2024 All Rights Reserved. All images are Copyrighted. Images cannot be printed, used, downloaded, or screenshot. " -308,http://lafayettepolice.us/3469/gis-zoning-maps,Not Criminal Justice Related,Not Criminal Justice Related,"GIS & Zoning Maps | Lafayette, IN - Official Website","Check whether you are in city limits, what your zoning is and property owner information.",200,"Police Department | Lafayette, IN - Official Website","[""GIS & Zoning Maps""]",[],"[""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Government Services Our Community Business & Development How Do I... Transparency Home Government Departments A - F Engineering & Public Works Permits & Licensing GIS & Zoning Maps GIS & Zoning Maps County GIS & Zoning Maps - Check your zoning. City Limits Map - Check whether your property is in city limits. Beacon - Check property owner information. Applications Building Permits Commercial Projects Residential Projects Online Services Construction Guidelines and Standards Electrical Licenses GIS & Zoning Maps License, Bonding & Insurance Information Permit Fees Permit Report - Monthly Permit Report - Weekly Policy and Guidance Regulations and Codes Search Permit Records Online Employment Utilities Payment Submit a Request Permits & Licensing Agendas & Minutes Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Government Services Our Community Business & Development How Do I... Transparency Home Government Departments A - F Engineering & Public Works Permits & Licensing GIS & Zoning Maps GIS & Zoning Maps County GIS & Zoning Maps - Check your zoning. City Limits Map - Check whether your property is in city limits. Beacon - Check property owner information. Applications Building Permits Commercial Projects Residential Projects Online Services Construction Guidelines and Standards Electrical Licenses GIS & Zoning Maps License, Bonding & Insurance Information Permit Fees Permit Report - Monthly Permit Report - Weekly Policy and Guidance Regulations and Codes Search Permit Records Online Employment Utilities Payment Submit a Request Permits & Licensing Agendas & Minutes Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In " -309,https://www.antioch.il.gov/event/police-and-fire-commission/,Poor Data Source,Poor Data Source,"Police and Fire Commission - Antioch, IL","",200,"Home - Antioch, IL","[""Police and Fire Commission""]",[],[],[],[],[],Open toolbar Accessibility Tools Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset -310,http://www.rocklin.ca.us/news/rocklin-appoints-police-chief-chad-butler-interim-city-manager,Media Bulletins,Agency-Published Resources,Rocklin Appoints Police Chief Chad Butler as Interim City Manager - City of Rocklin,"",200,City of Rocklin - The Official Site of the City of Rocklin,"[""City of Rocklin"", ""Rocklin Appoints Police Chief Chad Butler as Interim City Manager""]","[""Facebook"", ""Twitter"", ""Instagram"", ""Contact Us"", ""Agendas & Minutes"", ""Calendar"", ""Departments"", ""Municipal Code"", ""Public Hearing Notices"", ""Transparency"", ""Website Feedback"", ""Share this page"", ""This item appears in"", ""Locations"", ""City Hall"", ""Corp Yard"", ""Historical Sites"", ""Fire Administration"", ""Parks"", ""Police Station"", ""Quarry Park"", ""Resources"", ""Accessibility / ADA Information"", ""Employment"", ""Bids and RFPs"", ""Sitemap"", ""Volunteer"", ""Web Policies"", ""Connect"", ""Contact Us"", ""City Newsroom"", ""City Phone Numbers"", ""eNewsletter Signup"", ""Social Media"", ""Get Started"", ""City Council Agendas"", ""Agendas & Public Notices"", ""Quarry Park"", ""Job Openings"", ""Rent a Venue"", ""Report a Community Issue"", ""View Traffic Alerts"", ""Police Department"", ""Proud Partners"", ""Quarry Park"", ""Astound Broadband"", ""Rocklin, California"", ""Commands"", ""Log in""]",[],[],[],[],Skip to main content Skip to site navigation -311,https://www.rentonwa.gov/city_hall/police/administrative_services/community_programs/renton_police_safe_place,Resources,Agency-Published Resources,Renton Police Safe Place - City of Renton,"",200,Just a moment...,"[""CITY OF RENTON WASHINGTON""]","[""Renton Police Safe Place""]",[],"[""How It Works"", ""The Importance of Reporting Hate Crimes"", ""Ways to Report Hate Crimes"", ""Information for Participating Businesses and Organizations"", ""How can my business or organization participate?"", ""What are my responsibilities?"", ""Our Partners""]","[""Renton PD Safe Place Program Liaison""]","[""Ofcr. Roseanne Hynes""]",Skip navigation -312,https://police.greenvillesc.gov/1757/reserve-a-conference-room,Not Criminal Justice Related,Not Criminal Justice Related,"My Account • Greenville, SC • CivicEngage","Engage your community – connect to news, events and information you care about.",200,"Police Department | Greenville, SC - Official Website","[""Website Sign In""]","[""Sign In""]","[""Loading""]",[],[],[],"Skip to Main Content Government Departments Business Visitors Residents Search Home My Account Website Sign In For a more interactive experience please sign in. Sign In When using an existing account, you will be redirected to the CivicPlus sign in page. Existing Account Create An Account Sign In with SSO Facebook Downtown Special Events Parking unity park falls park Bus & Trolley AFFORDABLE HOUSING Agendas & Minutes Home Contact Us Accessibility Site Map Web Policy and Copyright Webmail /QuickLinks.aspx 206 S Main Street, Greenville, SC 29601 Police Non-Emergency: 864-271-5333 Greenville Cares Information Center 864-232-2273 Back to Top Enable Google Translate Government Departments Business Visitors Residents Search Home My Account Website Sign In For a more interactive experience please sign in. Sign In When using an existing account, you will be redirected to the CivicPlus sign in page. Existing Account Create An Account Sign In with SSO Facebook Downtown Special Events Parking unity park falls park Bus & Trolley AFFORDABLE HOUSING Agendas & Minutes Home Contact Us Accessibility Site Map Web Policy and Copyright Webmail /QuickLinks.aspx 206 S Main Street, Greenville, SC 29601 Police Non-Emergency: 864-271-5333 Greenville Cares Information Center 864-232-2273 Back to Top Enable Google Translate Government Departments Business Visitors Residents Search Home My Account Website Sign In For a more interactive experience please sign in. Sign In When using an existing account, you will be redirected to the CivicPlus sign in page. Existing Account Create An Account Sign In with SSO Facebook Downtown Special Events Parking unity park falls park Bus & Trolley AFFORDABLE HOUSING Agendas & Minutes Home Contact Us Accessibility Site Map Web Policy and Copyright Webmail /QuickLinks.aspx 206 S Main Street, Greenville, SC 29601 Police Non-Emergency: 864-271-5333 Greenville Cares Information Center 864-232-2273 Back to Top Enable Google Translate Government Departments Business Visitors Residents Search Home My Account Website Sign In For a more interactive experience please sign in. Sign In When using an existing account, you will be redirected to the CivicPlus sign in page. Existing Account Create An Account Sign In with SSO Facebook Downtown Special Events Parking unity park falls park Bus & Trolley AFFORDABLE HOUSING Agendas & Minutes Home Contact Us Accessibility Site Map Web Policy and Copyright Webmail /QuickLinks.aspx 206 S Main Street, Greenville, SC 29601 Police Non-Emergency: 864-271-5333 Greenville Cares Information Center 864-232-2273 Back to Top Enable Google Translate Government Departments Business Visitors Residents Search Government Departments Business Visitors Residents Search Government Departments Business Visitors Residents Search Search Search Search Search Search Search Search Search Home My Account Website Sign In For a more interactive experience please sign in. Sign In When using an existing account, you will be redirected to the CivicPlus sign in page. Existing Account Create An Account Sign In with SSO Facebook Home My Account Website Sign In For a more interactive experience please sign in. Sign In When using an existing account, you will be redirected to the CivicPlus sign in page. Existing Account Create An Account Sign In with SSO Facebook " -313,https://cheswold.delaware.gov/cheswold-police-department-crime-statistics/march-16-activity-report/,Incident Reports,Police & Public Interactions,March 16 Activity Report - Town of Cheswold,"",200,"Home - Town of Cheswold - Kent County, Delaware","[""Cheswold""]","[""Delaware"", ""March 16 Activity Report""]","[""Menu""]","[""Address:"", ""Call Us:"", ""Reach Out:""]",[],[],"Skip to Content Skip to Footer Toggle navigation Menu Government Mayor Town Council Boards & Commissions Departments Elections Meetings & Events Public Notices Past Minutes & Agendas Info Public Hearings Comprehensive Plan Ordinances Taxes & Fees Delinquent Tax List Forms Town Charter Flag Status Past Minutes & Agendas Resolutions Community About Our Town Cheswold Welcome Packet Cheswold’s Airport Cheswold Newsletter Churches & Houses of Worship Colleges & Universities Libraries Local Developments Public Schools News Police About the Cheswold Police Department Police Reports Chief’s Page Cheswold Police Officers Cheswold Police Department Policy Manual Civilian Complaint Packet Crime Statistics Cheswold Police Department – Yearly Traffic Statistics Informational Pamphlets and Forms Law Enforcement Links Most Wanted Police Contact Form Police Employment Police News Ride-A-Long Program Sex Offender List Vacation Check Requests Photo Galleries Contact Contact Us FOIA Form Skip to Content Skip to Footer Toggle navigation Menu Government Mayor Town Council Boards & Commissions Departments Elections Meetings & Events Public Notices Past Minutes & Agendas Info Public Hearings Comprehensive Plan Ordinances Taxes & Fees Delinquent Tax List Forms Town Charter Flag Status Past Minutes & Agendas Resolutions Community About Our Town Cheswold Welcome Packet Cheswold’s Airport Cheswold Newsletter Churches & Houses of Worship Colleges & Universities Libraries Local Developments Public Schools News Police About the Cheswold Police Department Police Reports Chief’s Page Cheswold Police Officers Cheswold Police Department Policy Manual Civilian Complaint Packet Crime Statistics Cheswold Police Department – Yearly Traffic Statistics Informational Pamphlets and Forms Law Enforcement Links Most Wanted Police Contact Form Police Employment Police News Ride-A-Long Program Sex Offender List Vacation Check Requests Photo Galleries Contact Contact Us FOIA Form Skip to Content Skip to Footer Toggle navigation Menu Government Mayor Town Council Boards & Commissions Departments Elections Meetings & Events Public Notices Past Minutes & Agendas Info Public Hearings Comprehensive Plan Ordinances Taxes & Fees Delinquent Tax List Forms Town Charter Flag Status Past Minutes & Agendas Resolutions Community About Our Town Cheswold Welcome Packet Cheswold’s Airport Cheswold Newsletter Churches & Houses of Worship Colleges & Universities Libraries Local Developments Public Schools News Police About the Cheswold Police Department Police Reports Chief’s Page Cheswold Police Officers Cheswold Police Department Policy Manual Civilian Complaint Packet Crime Statistics Cheswold Police Department – Yearly Traffic Statistics Informational Pamphlets and Forms Law Enforcement Links Most Wanted Police Contact Form Police Employment Police News Ride-A-Long Program Sex Offender List Vacation Check Requests Photo Galleries Contact Contact Us FOIA Form Cheswold Delaware Listen March 16 Activity Report March 16 Activity Report Cheswold Delaware Listen March 16 Activity Report March 16 Activity Report Listen March 16 Activity Report March 16 Activity Report Listen March 16 Activity Report March 16 Activity Report Listen March 16 Activity Report March 16 Activity Report Listen Address: 691 Main Street Cheswold, DE 19936 Call Us: (302) 734-6991 Reach Out: Contact Form FOIA Form Address: 691 Main Street Cheswold, DE 19936 Call Us: (302) 734-6991 Reach Out: Contact Form FOIA Form " -314,https://alpha.austin.gov/police-oversight/formal-complaint-acts-bringing-discredit-4/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -315,https://coloradosprings.gov/police-department/page/colorado-springs-police-cadet-program-0,Resources,Agency-Published Resources,Colorado Springs Police Cadet Program | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""Colorado Springs Police Cadet Program""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],"["""", """", ""Colorado Springs Police Cadet Program"", ""Program Requirements"", ""Activities"", ""Training"", ""Application""]","[""REPORT ONLINE""]",[],"" -316,https://delcopa.gov/employment/jobpostings/dba.html,Not Criminal Justice Related,Not Criminal Justice Related,"Database Administrator - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Database Administrator""]",[],"[""Delco Jobs Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]","[""Summary"", ""Essential Duties"", ""Qualifications"", ""Contact""]",[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Database Administrator Home / Departments / Delco Jobs / Database Administrator Job Opening: Database Administrator Department: Information Technology Posting Date: August 3, 2022 Salary: $93,000 annual Summary The Database Administrator will utilize their experience in database administration, database performing tuning, and SQL high availability features to manage databases withing our current environment. The Database Administrator will provide recommendations for architecture changes, standard maintenance routines, and provide details for creating redundancy in the SQL environment. The Database Administrator will also be responsible for day-to-day support, troubleshooting, performing required updates to SQL, and participation on project teams. This position will be performed via a combination of on-site and remote work. Experience with Access and Oracle databases. Managing and migrating databases to cloud a big plus (Azure or AWS). Essential Duties Provides hands-on operational support to databases Configures and maintains database servers and processes, including monitoring of system health and performance Deploy SQL High Availability features to ensure database redundancy for production applications Identifies performance issues and carries out Performance Tuning Experience with managing or migrating database environments to the cloud. Deploy new databases\database servers as needed Refines and automates regular processes, tracks issues, and documents changes Shares technical expertise, providing technical mentorship and cross-training to other peers and team members Document all routine procedures Other duties as assigned Qualifications At least 5 years of experience as a SQL DBA Experience with High Availability features in SQL Proficient with Windows servers and Active Directory Ability to deploy and troubleshoot SQL servers in a virtual environment Proficient with Stored Procedures, creating and altering tables Experience with backups and restores Excellent written and verbal communication Knowledge of backup solutions Residence Requirement: The County of Delaware has a residency requirement for employees. Anyone applying for this job must reside in Delaware County or be willing to move to the County within three months of starting employment. Contact To apply, please fill out our online application form . Delco Jobs Navigation By Title By Location How to Submit an Application Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu " -317,https://champaignil.gov/2020/08/18/chief-of-police-anthony-cobb-issues-statement-regarding-vandalism-of-champaign-police-department/,Media Bulletins,Agency-Published Resources,Chief of Police Anthony Cobb Issues Statement Regarding Vandalism of Champaign Police Department - City of Champaign,"",200,403 Forbidden,"[""Chief of Police Anthony Cobb Issues Statement Regarding Vandalism of Champaign Police Department""]","[""News Releases"", ""Department News""]",[],[],[],[],"" -318,https://champaignil.gov/police/news-data/police-body-cameras/,Media Bulletins,Agency-Published Resources,Police Body Cameras - City of Champaign,"",200,403 Forbidden,"[""Police Body Cameras"", ""Frequently Asked Questions"", ""Policy and Reports""]","[""Police Department"", ""Quick Links"", ""Police Department News"", ""Contact Us""]",[],"[""Q: Do all CPD Officers wear body cameras?"", ""Q: Where are body cameras placed on the officer’s uniform?"", ""Q: Does the officer need to ask my consent to record?"", ""Q: What if I don’t want to be recorded?"", ""Q: Are police body cameras on at all times?"", ""Q: When is an officer able to turn his or her body camera off?"", ""Q: Will the Department now have a full account of what takes place during an incident?"", ""Q: How will the video recordings be stored and how long do you keep them?"", ""Q: Will the Department continue its use of in-car cameras?"", ""Q: Who do I contact if I have a question or complaint about an officer’s decision to activate or deactivate his or her body camera?""]",[],[],"" -319,https://biloxi.ms.us/podcast/meet-biloxi-police-fire-at-a-fun-event/,Poor Data Source,Poor Data Source,City of Biloxi | The Official Website of the City of Biloxi,"",200,City of Biloxi | The Official Website of the City of Biloxi,[],[],"[""News from the City of Biloxi""]",[],[],[],"Original text Rate this translation Your feedback will be used to help improve Google Translate Original text Rate this translation Your feedback will be used to help improve Google Translate Original text Original text Rate this translation Your feedback will be used to help improve Google Translate Rate this translation Your feedback will be used to help improve Google Translate Rate this translation Your feedback will be used to help improve Google Translate 71°F overcast clouds Skip to content Home E-Services Calendar Visitor Info City Maps COVID Photos/Videos Traffic Contact Us Residents City Council Agenda Forms / Permits Hospitals Keesler Air Force Base Libraries Major Projects Parks & Recreation Planning / Zoning Public Education Public Housing Public Meetings Transportation Utilities Voter Information Water Quality Visitors Airport Attractions Beaches Bicycle Rental Casinos Fishing History Lodging Main Street Museums Tours Visitors Center More Info? × search News from the City of Biloxi • Biloxi A to Z: Sports, Ward 7, and St. Patrick's parade 3/15/2024 • Crews preparing Savarro, Migues parks for youth leagues 3/13/2024 • Biloxi A to Z: State of the City, Hibernia Marching Society, and more 3/08/2024 • Biloxi A to Z: March BNews, State of the City, and more 3/01/2024 • Shoemaker sweeps Ward 7 seat 2/27/2024 • Biloxi Sports Hall of Fame requesting nominees 2/26/2024 • Biloxi A to Z: Road openings, closings; absentee voting; and more 2/23/2024 • Biloxi A to Z: Birthday cake, Mardi Gras cleanup crewe, and more 2/16/2024 • Biloxi celebrates 325th birthday on Mardi Gras 2/12/2024 • Neptune, Gulf Coast Carnival parade reminders 2/08/2024 • Biloxi A to Z: February BNews, Shuckers, Pafford 2/02/2024 • Biloxi A to Z: Pafford, Ward 7 election, and more 1/26/2024 • Special election set for Feb. 27 to fill Ward 7 seat 1/25/2024 • Biloxi A to Z: Winter fire safety, weekend events, and more 1/19/2024 • Biloxi A to Z: Mardi Gras, MLK, and more 1/12/2024 • Sign up now for Children's Mardi Gras Walking Parade 1/09/2024 • MLK events set in Biloxi 1/08/2024 See more news stories viagra bayan azdırıcı damla geciktirici Departments Mayor City Council CAO Accounting Community Development Engineering Fire Harbors/Marinas/Piers Human Resources Legal Municipal Clerk Municipal Court Parks & Recreation Police Public Affairs Public Works Resources BNews Monthly Cemetery Census Data Code of Ordinances Federal Programs Financial Report Forms / Permits Gaming Revenues GIS Mapping Int. Building Code Main Street Major Projects Market Analysis Publications Regional Planning Rental Facilities Restore Biloxi Weekly Reports City of Biloxi Privacy Policy · Trademark Policy 71°F overcast clouds Skip to content Home E-Services Calendar Visitor Info City Maps COVID Photos/Videos Traffic Contact Us 71°F overcast clouds 71°F overcast clouds 71°F overcast clouds 71°F overcast clouds 71°F overcast clouds Skip to content Home E-Services Calendar Visitor Info City Maps COVID Photos/Videos Traffic Contact Us Skip to content Home E-Services Calendar Visitor Info City Maps COVID Photos/Videos Traffic Contact Us " -320,https://delcopa.gov/planning/planningeducation.html,Not Criminal Justice Related,Not Criminal Justice Related,Planning Education,"",200,"Delaware County, Pennsylvania","[""Planning Education""]",[],"[""I’m interested in…"", ""Planning Department Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Planning Education Home / Departments / Planning Department / Planning Education The Delaware County Planning Department offers educational resources to assist in problem-solving and traversing complex planning topics. The Department provides educational information to municipalities and local residents throughout the year to help introduce new planning techniques, explain complex concepts, and spread the word about the planning discipline. These pages offer more information on planning related topics, educational workshops, and other guides and models to help build a more engaged and informed community. I’m interested in… Learning about planning-related topics through a Planner's Portfolio Enrolling in a Pennsylvania Municipal Planning Education Institute course Looking at Model Ordinance Guides Exploring other Regional Partners Finding Planning Publications Examining Demographic Data Questions about Planning Education? Contact the Planning Department at 610-891-5200 or Planning_Department@co.delaware.pa.us . Planning Department Navigation Access the Data and Mapping Innovation Hub About Planning Calendar Current Projects Delaware County 2035 Demographic Data Development Review Forms Funding Green Space and Trails Project Mapping Municipal Programs & Initiatives Planning Education Publications Gina Burritt, Director Planning Department 2 W. Baltimore Avenue Suite 202 Media, PA 19063 Phone: 610-891-5200 Fax: 610-891-5203 Email: Planning_Department@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2023 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Planning Education Home / Departments / Planning Department / Planning Education Planning Education Home / Departments / Planning Department / Planning Education Planning Education Home / Departments / Planning Department / Planning Education " -321,https://claytonca.gov/police/community-youth-outreach/smart911/,Media Bulletins,Agency-Published Resources,Smart911 – City of Clayton,"",200,City of Clayton,"[""Smart911""]",[],"[""Apply for"", ""View"", ""Rent/Reserve"", ""Report"", ""Learn About"", ""Request"", ""Register"", ""Press Release"", ""How Does Smart911 Help?"", ""Fact Sheet"", ""Frequently Asked Questions"", ""City Offices are located at:"", ""Clayton City Hall 6000 Heritage Trail, Clayton, CA 94517"", """", ""Staff is available during our office hours:"", ""Monday to Thursday 9:00 a.m. to 5:00 p.m."", """", ""Telephone: (925) 673-7300"", ""Fax: (925) 672-4917"", ""Online: City Hall Form"", """", ""More Contact Information""]",[],[],[],"OUR CITY History of Clayton Meet Joel Clayton Twinning City Annual Events Community Calendar Community News Organizations Vacancies and Volunteering Opportunities SERVICES Business Services Home Business Licenses City Administration City Clerk Community Development City Engineering Finance Human Resources Library Maintenance Parks and Recreation Police Department Solid Waste GOVERNMENT Boards and Commissions City Council Geological Hazard Abatement Planning Commission Successor Agency Trails & Landscape Committee Vacancies and Volunteer Opportunities HOW DO I Apply for Building Permit Business License Construction Activity Permit Encroachment Permit Employment Home Occupation Permit Noise Permit RV Parking Permit Transportation Permit Tree Removal Permit Solicitors Permit Construction & Demolition Permit View ClearGov Checkbook Instructions Enterprise Systems Catalog Meetings & Agendas Municipal Code Current Planning Projects Street Sweeping Schedule Garbage Service Calendar Job Descriptions, Salaries Financial Documents Rent/Reserve Ball Fields at Community Park Picnic Areas at Community Park City Hall Conference Room Hoyer Hall (Library Meeting Room) Endeavor Hall Clayton Community Gym The Grove Park City Hall Courtyard Report Code Enforcement Problem Abandoned Shopping Carts Animal Problems File a Claim Graffiti Sewer Issues Street Problem Street Signs/Markings Street Light Issue Traffic Signal Issue Irrigation Leak Overgrown Vegetation Learn About Clayton’s History Crime Prevention Volunteer Opportunities Schools Organizations Hazardous Waste Disposal Stormwater Medical Facilities Recreational Opportunities Request Copy of a Police Report Building Inspection RV Parking Permit E-Notifications Register Security Alarm Vacation House Watch RESIDENTS Community Calendar News and Alerts Organizations Building Permits Code Enforcement E-Notifications New Residents Parks and Recreation SEARCH OUR CITY History of Clayton Meet Joel Clayton Twinning City Annual Events Community Calendar Community News Organizations Vacancies and Volunteering Opportunities SERVICES Business Services Home Business Licenses City Administration City Clerk Community Development City Engineering Finance Human Resources Library Maintenance Parks and Recreation Police Department Solid Waste GOVERNMENT Boards and Commissions City Council Geological Hazard Abatement Planning Commission Successor Agency Trails & Landscape Committee Vacancies and Volunteer Opportunities HOW DO I RESIDENTS Community Calendar News and Alerts Organizations Building Permits Code Enforcement E-Notifications New Residents Parks and Recreation SEARCH Clayton Police Department Community & Youth Outreach Smart911 Contact Us Forms & Permits Vacation House Watch Police / Community & Youth Outreach / Smart911 / Smart911 Smart911 is now available to all residents and travelers of Clayton. Smart911 is a free service that allows individuals and families to sign up online to provide key information to 9-1-1 call takers during an emergency. The Smart911 platform provides valuable new tools and the information listed in Safety Profiles enables a faster more informed response. Press Release How Does Smart911 Help? Fact Sheet Frequently Asked Questions City Offices are located at: Clayton City Hall 6000 Heritage Trail, Clayton, CA 94517 Staff is available during our office hours: Monday to Thursday 9:00 a.m. to 5:00 p.m. Telephone: (925) 673-7300 Fax: (925) 672-4917 Online: City Hall Form More Contact Information OUR CITY SERVICES GOVERNMENT HOW DO I RESIDENTS SITE MAP All content © 1964-2024 City of Clayton, California and its representatives. All rights reserved. Site design © 1997-2024 DIGITAL services. All rights reserved. " -322,https://www.arlingtonva.us/government/programs/housing/housing-arlington-latest-news/county-board-reviews-scope-and-charge-for-missing-middle-housing-study,Not Criminal Justice Related,Not Criminal Justice Related,County Board Reviews Scope and Charge for Missing Middle Housing Study – Official Website of Arlington County Virginia Government,"September 23, 2020 | Updated: October 2, 2020 PROGRAM NEWS:Study Kick Off Scheduled for Oct. 28 at 7 p.m.At a work session on Sept. 22, the County Board reviewed and discussed a revised Missing Middle Housing Study Scope and Charge, which was shaped by community feedback and...",200,Home – Official Website of Arlington County Virginia Government,"[""County Board Reviews Scope and Charge for Missing Middle Housing Study""]",[],"[""CONTACT US"", ""QUICK LINKS"", ""CONNECT"", ""STAY INFORMED""]",[],[],[],opens in new tab or window -323,http://lafayettepolice.us/1693/fountain-plaza-and-sculptures,Not Criminal Justice Related,Not Criminal Justice Related,"Fountain Plaza and Sculptures | Lafayette, IN - Official Website","",200,"Police Department | Lafayette, IN - Official Website","[""Fountain Plaza and Sculptures""]",[],"[""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Plan Your Visit About the Zoo Get Involved Education Programs Special Events I Want To... Home Government Departments H - W Parks & Recreation Facilities Columbian Park Zoo About the Zoo Exhibits and Animals Fountain Plaza and Sculptures Fountain Plaza and Sculptures Interactive Fountain and Entry Plaza A forty-two inch solid granite sphere emblazoned with a map of the world and supported by a water base greets visitors to the Zoo. It rotates on the same axis as our planet, and the lightest touch will send it spinning in another direction. Next you will see a meandering river, populated by beautiful bronze sculptures. The seven sculptures feature one representative from each of the seven continents: a bear cub, platypus, orangutan, penguin, caiman, gecko, and baby elephants. The sphere fountain is a product of Kusser Fountain Works in Germany. The bronze animal sculptures were created by Texas artist Darrell Davis, whose work can also be seen at Lincoln Park Zoo in Chicago. The entryway, interactive fountain, and animal sculptures have been generously funded by a gift from The McAllister Foundation. Sculptures Other sculptures around the zoo include: Galapagos Tortoise Sculpture River Otter Sculpture Butterfly Sculpture Garden Totem Pole Sculpture Penguin Sculptures Americas Barn Owl Turkey Vulture Black-tailed Praire Dogs North American Porcupine North American River Otter Galapagos Tortoise Bald Eagle Australia New Guinea Singing Dog Bennett's Wallaby Emu Laughing Kookaburra Butterfly Garden Family Farm American Miniature Horse Llama Nigerian Dwarf Goat Pot-Bellied Pig Fountain Plaza and Sculptures Historic Animal House White-Handed Gibbon Black-Handed Spider Monkey Penguin Cove Aquatics McAllister Center Rentals Zoo Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate " -324,https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0716/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -325,https://sanramon.ca.gov/our_city/departments_and_divisions/police/community_programs/youth_services/police_explorers,Misc Police Activity,Police & Public Interactions,Police Explorers - City of San Ramon,"",200,Just a moment...,"[""Police Explorers""]","[""Contact Us"", ""Police Explorers"", ""Contact Us"", ""Useful Links""]",[],[],[],[],"" -326,http://lafayettepolice.us/455/aquatics,Not Criminal Justice Related,Not Criminal Justice Related,"Aquatics | Lafayette, IN - Official Website","Take a look at the 3 different aquatic centers open to the public and find out how to book a private party, sign up for programs and more.",200,"Police Department | Lafayette, IN - Official Website","[""Aquatics""]",[],"[""News Flash"", ""March 2024"", ""Alerts"", ""FAQs"", ""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]","[""Parks Department is Hiring Seasonal Positions!"", ""2024 Lifeguard Certification Course Registration Open Now!""]",[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Plan Your Visit About Us Special Events Programs I Want To... Home Government Departments H - W Parks & Recreation Facilities Aquatics Aquatics Tropicanoe Cove Castaway Bay Rentals Vinton Pool News Calendar Alerts News News Flash Parks Department is Hiring Seasonal Positions! Read on... 2024 Lifeguard Certification Course Registration Open Now! Read on... View All News /CivicAlerts.aspx Calendar March 2024 Sun Mon Tue Wed Thu Fri Sat 25 26 27 28 29 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 2 3 4 5 6 There are no published events in current month. View All Events /Calendar.aspx Alerts Alerts There are no alerts at this time. FAQs What is your severe weather policy? Does Tropicanoe Cove take debit or credit card? Can I take a cooler in to Tropicanoe Cove? Can we leave the pool and return later in the day? What age children need to be accompanied by an adult at Lafayette Parks aquatic facilities? Do you have lifeguards monitoring the slides? Are “floaties” or flotation devices allowed? Are lifejackets provided? Does my infant have to wear swim pants? Is swimwear required? View All FAQs /FAQ.aspx Aquatics McAllister Center Rentals Zoo Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate " -327,http://police.portlandmaine.gov/396/tickets,Contact Info & Agency Meta,Info About Agencies,"Tickets | Portland, ME - Official Website","Welcome to the beautiful historic City of Portland. We hope you enjoy your visit. We encourage you to make use of our many conveniently located parking garages and lots. For your convenience, we’ve included a link to view the downtown Portland.",200,"Portland, ME - Official Website | Official Website","[""Tickets""]",[],[],[],[],[],Skip to Main Content Pay & Apply Your Government Services Business Community Home Your Government Departments Parking Tickets Tickets Booting / Immobilization Contesting a Parking Ticket Payments Ticket Fees & Violations Towing Unpaid Tickets Government Websites by CivicPlus® Pay & Apply Your Government Services Business Community Home Your Government Departments Parking Tickets Tickets Booting / Immobilization Contesting a Parking Ticket Payments Ticket Fees & Violations Towing Unpaid Tickets Government Websites by CivicPlus® Pay & Apply Your Government Services Business Community Home Your Government Departments Parking Tickets Tickets Booting / Immobilization Contesting a Parking Ticket Payments Ticket Fees & Violations Towing Unpaid Tickets Government Websites by CivicPlus® Pay & Apply Your Government Services Business Community Home Your Government Departments Parking Tickets Tickets Booting / Immobilization Contesting a Parking Ticket Payments Ticket Fees & Violations Towing Unpaid Tickets Government Websites by CivicPlus® Pay & Apply Your Government Services Business Community Home Your Government Departments Parking Tickets Tickets Booting / Immobilization Contesting a Parking Ticket Payments Ticket Fees & Violations Towing Unpaid Tickets Home Your Government Departments Parking Tickets Tickets Booting / Immobilization Contesting a Parking Ticket Payments Ticket Fees & Violations Towing Unpaid Tickets Home Your Government Departments Parking Tickets Tickets Booting / Immobilization Contesting a Parking Ticket Payments Ticket Fees & Violations Towing Unpaid Tickets Home Your Government Departments Parking Tickets Tickets Home Your Government Departments Parking Tickets Tickets Home Your Government Departments Parking Tickets Tickets Tickets Booting / Immobilization Contesting a Parking Ticket Payments Ticket Fees & Violations Towing Unpaid Tickets Booting / Immobilization Contesting a Parking Ticket Payments Ticket Fees & Violations Towing Unpaid Tickets Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® -328,https://www.normanok.gov/public-safety/police-department/divisions/investigations/registered-offenders,Resources,Agency-Published Resources,We've got some trouble | 404 - Resource not found,"",200,"Welcome to the City of Norman, OK | City of Norman, OK","[""Resource not found Error 404""]",[],[],[],[],[],Resource not found Error 404 The requested resource could not be found. -329,https://delcopa.gov/vote/pdf/2021/delcoboardelections_meeting_legalnotice_0407-2021.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -330,https://www.mooresville.in.gov/event/mpd-police-commission-meeting-3/,Poor Data Source,Poor Data Source,MPD Police Commission Meeting – Cancelled - Town of Mooresville,"",200,403 Forbidden,"[""MPD Police Commission Meeting – Cancelled""]","[""May 21, 2020 @ 6:00 pm - 7:00 pm"", ""Details"", ""Organizer"", ""Venue""]",[],[],[],[],"Town Calendar Indiana Gateway Employee Portal About Mooresville About Mooresville Town History Visiting Mooresville Community Community Links Community News Online Services Online Documents Center Ordinances and Resolutions Minutes Town Meeting Recordings Sewer Bill Payment Code of Ordinances Departments Parks and Rec Fire Department Police Department Public Works Building Department Clerk/Treasurer Departments – Other I want to… Report a Pothole or Streets Problem Find Zoning Info Pay or View Sewer Bill View all FAQs Apply For… Building Permit Sewer Permit Solicitor’s Permit Street Cut Permit Elected Officials Main in Motion Select Page About Mooresville About Mooresville Town History Visiting Mooresville Community Community Links Community News Online Services Online Documents Center Ordinances and Resolutions Minutes Town Meeting Recordings Sewer Bill Payment Code of Ordinances Departments Parks and Rec Fire Department Police Department Public Works Building Department Clerk/Treasurer Departments – Other I want to… Report a Pothole or Streets Problem Find Zoning Info Pay or View Sewer Bill View all FAQs Apply For… Building Permit Sewer Permit Solicitor’s Permit Street Cut Permit Elected Officials Main in Motion Town Calendar Indiana Gateway Employee Portal « All Events This event has passed. MPD Police Commission Meeting – Cancelled May 21, 2020 @ 6:00 pm - 7:00 pm « Town Council Meeting Memorial Day – Government Center Closed » Add to calendar Google Calendar iCalendar Outlook 365 Outlook Live Details Date: May 21, 2020 Time: 6:00 pm - 7:00 pm Organizer Police Commission Venue Police Station « Town Council Meeting Memorial Day – Government Center Closed » Facebook X RSS Designed and Managed by C2IT Consulting, Inc. Town Calendar Indiana Gateway Employee Portal Town Calendar Indiana Gateway Employee Portal Town Calendar Indiana Gateway Employee Portal About Mooresville About Mooresville Town History Visiting Mooresville Community Community Links Community News Online Services Online Documents Center Ordinances and Resolutions Minutes Town Meeting Recordings Sewer Bill Payment Code of Ordinances Departments Parks and Rec Fire Department Police Department Public Works Building Department Clerk/Treasurer Departments – Other I want to… Report a Pothole or Streets Problem Find Zoning Info Pay or View Sewer Bill View all FAQs Apply For… Building Permit Sewer Permit Solicitor’s Permit Street Cut Permit Elected Officials Main in Motion Select Page About Mooresville About Mooresville Town History Visiting Mooresville Community Community Links Community News Online Services Online Documents Center Ordinances and Resolutions Minutes Town Meeting Recordings Sewer Bill Payment Code of Ordinances Departments Parks and Rec Fire Department Police Department Public Works Building Department Clerk/Treasurer Departments – Other I want to… Report a Pothole or Streets Problem Find Zoning Info Pay or View Sewer Bill View all FAQs Apply For… Building Permit Sewer Permit Solicitor’s Permit Street Cut Permit Elected Officials Main in Motion Town Calendar Indiana Gateway Employee Portal " -331,https://coloradosprings.gov/city-council/article/public-notice/police-cso-graduation,Media Bulletins,Agency-Published Resources,Police CSO Graduation | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""Police CSO Graduation""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[],"" -332,https://www.coppelltx.gov/340/get-involved,Resources,Agency-Published Resources,"Get Involved | Coppell, TX",There are a variety of ways that you can volunteer with the Cozby Library and Community Commons or other community organizations.,200,"Coppell, TX | Official Website","[""Get Involved""]","[""Library Volunteers""]","[""Adult Volunteers"", ""Friends of the Cozby Library & Community Commons"", ""Teen Volunteers"", ""Volunteer Opportunities in DFW"", ""Loading""]",[],[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search About Us Children Services Teen Services Adult Services How Do I Home Government City Departments Cozby Library & Community Commons About Us Get Involved Get Involved Library Volunteers Adult Volunteers Volunteer opportunities for adults at the Cozby Library are extremely limited in available positions and tasks. Training may be required for certain tasks. There are many volunteer opportunities available through other City of Coppell facilities. Volunteers must be age 18 and over and pass a background check. A signed waiver is also required. The online volunteer application along with a list of volunteer opportunities available city-wide can be found on the Coppell Volunteers page. Friends of the Cozby Library & Community Commons The Friends of the Coppell Public Library actively promote library programs and increase library resources through a variety of activities. Friends also volunteer to help out at local community events and library programs. The Friends have a vision to build a community of library advocates in order to enhance the Cozby Library experience. It is their mission to enhance the library experience by creating public awareness, fostering community spirit, and bringing new programs to the library. Want to join the Friends? Visit the Coppell Friends website to learn more and to join the Friends of the Coppell Public Library! Teen Volunteers Volunteer opportunities for teens at the Cozby Library are offered through the Teen Volunteers in Coppell program. Teen Volunteers in Coppell allows eligible teens to complete a single application and approval process to be accepted to volunteer at multiple city facilities. Eligibility requirements: Age 13-17 Must be a Coppell resident or CISD student Requirements: Complete online application Submit parental consent waiver Complete Customer Service Training (available online, required annually) Questions about Teen Volunteers in Coppell should be emailed to teenvolunteers@coppelltx.gov . Volunteer Opportunities in DFW Looking for more volunteer opportunities? We have collected the contact information from various volunteer organizations in DFW. Pick up a copy at the front desk or view volunteer opportunities here. This list is updated once a year after our Volunteer Fair. Hours and Location 50th Anniversary History of the Library Mission Americans with Disabilities Act (ADA) Diversity Statement Library Facility Guidelines Get Involved Community Builders Donations Local Author Collection Art Exhibit Video Tutorials Agendas & Minutes Alert Sign-Up Citizen Report E-News Pay Water Bill Permits 255 E. Parkway Blvd., P.O. Box 9478, Coppell, TX 75019 Phone: 972-462-0022 | Email us Site Map Contact Us Accessibility Copyright Notices Privacy Policy Employee Login /QuickLinks.aspx Government Websites by CivicPlus® " -333,https://alpha.austin.gov/es/police-oversight/2020-08-14-3/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -334,https://www.knoxvilletn.gov/archived_news_stories/2010/knoxville_police_prepared_for_increase_of_holiday_,Media Bulletins,Agency-Published Resources,Knoxville Police Prepared for Increase of Holiday Traffic - City of Knoxville,communications*,200,Just a moment...,"[""Knoxville Police Prepared for Increase of Holiday Traffic"", ""Communications Director"", ""Knoxville Police Prepared for Increase of Holiday Traffic""]",[],[],[],[],[],Skip navigation {1} ##LOC[OK]## {1} ##LOC[OK]## {1} ##LOC[OK]## {1} ##LOC[OK]## -335,http://www.lafayettepolice.us/faq.aspx?qid=142,Not Criminal Justice Related,Not Criminal Justice Related,FAQs • What are the benefits of designating my property as p,"",200,"Police Department | Lafayette, IN - Official Website",[],"[""▼ Historic Preservation Commission""]","[""Categories"", ""Live Edit"", ""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -336,https://police.kingstontn.gov/events/categories/,Poor Data Source,Poor Data Source,Categories – Kingston Police Department,"",200,Sucuri WebSite Firewall - Access Denied,"[""Categories""]",[],[],[],[],[],"> Watch Live > Online Payments > Sign up for Alerts > Report a Concern 865.376.6584 Menu Government Mayor & City Council City Manager Close Departments Finance Dept. Pay a Bill Licenses & Permits Taxes Bids Audit Report Staff & Contacts Fire Dept Services Burn Permits Become a Volunteer Smoke Detector Program Public Works Dept Work Orders/Service Requests Street Maintenance Snow Removal Brush Removal Other Services Police Dept Pay a Citation Crime Tips Watch Programs Records Request Resources Park & Greenway Map Reserve Officer Program/Police Explorers City Court Animal Control Press Releases Traffic School Parks & Recreation Dept Community Pool Registration > Facilities > Sports Calendar Sponsors Programs Special Events Park Rules & Safety Staff Press Releases Water Dept FAQS I Want To: Pay a Bill > View Water & Sewer Ordinances > Check Water Rates > Report a Break Distribution & Collection Wastewater Treatment Plant Water Treatment Plant Water Service Application Close Live History of Kingston Schools Citizen Resources Real Estate Information Close Work Resources Employment Close Play Attractions Events Public Library Project Bids Photo Gallery Close How Do I? Frequently Asked Questions Online Payments Report a Concern Sign up for Alerts Close Menu Government Mayor & City Council City Manager Close Departments Finance Dept. Pay a Bill Licenses & Permits Taxes Bids Audit Report Staff & Contacts Fire Dept Services Burn Permits Become a Volunteer Smoke Detector Program Public Works Dept Work Orders/Service Requests Street Maintenance Snow Removal Brush Removal Other Services Police Dept Pay a Citation Crime Tips Watch Programs Records Request Resources Park & Greenway Map Reserve Officer Program/Police Explorers City Court Animal Control Press Releases Traffic School Parks & Recreation Dept Community Pool Registration > Facilities > Sports Calendar Sponsors Programs Special Events Park Rules & Safety Staff Press Releases Water Dept FAQS I Want To: Pay a Bill > View Water & Sewer Ordinances > Check Water Rates > Report a Break Distribution & Collection Wastewater Treatment Plant Water Treatment Plant Water Service Application Close Live History of Kingston Schools Citizen Resources Real Estate Information Close Work Resources Employment Close Play Attractions Events Public Library Project Bids Photo Gallery Close How Do I? Frequently Asked Questions Online Payments Report a Concern Sign up for Alerts Close Categories Home / Events / Categories CONTENTS Kingston, TN Location © 2017. City of Kingston. All Rights Reserved. | Powered by Konki Digital Watch Live Pay a Bill Contact Us " -337,https://www.plymouthmi.gov/government/departments/police/preliminary_breath_tests,Contact Info & Agency Meta,Info About Agencies,"Preliminary Breath Tests - City of Plymouth, MI","",200,Just a moment...,"[""Preliminary Breath Tests""]",[],[],[],[],[],"" -338,https://www.minneapolismn.gov/government/departments/police/professional-standards/discipline-matrix/,Policies & Contracts,Info About Agencies,Discipline Matrix and Narrative - City of Minneapolis,You can read how the Minneapolis Police Department (MPD) imposes employee discipline. ,200,City of Minneapolis,"[""Discipline matrix and narrative"", ""Need help? We're here for you.""]","[""A snow emergency is not currently in effect. Normal parking rules apply."", ""What to know"", ""Documents"", ""Contact us""]","[""Discipline matrix and narrative"", ""Minneapolis Police Department"", ""Connect with the Minneapolis Police Department""]","[""Request accessible format""]",[],[],"" -339,https://cityofpowell.us/powell-police-searching-for-suspect-after-attempted-home-robbery/41-3/,Poor Data Source,Poor Data Source,"City of Powell, Ohio | 41.3","",200,"City of Powell, Ohio","[""41.3""]","[""CONTACT INFO"", ""HELPFUL LINKS"", ""LET'S CONNECT""]","[""you're at home in Powell""]","[""614.885.5380"", ""47 Hall Street, Powell, OH 43065"", ""Signup for our newsletter""]",[],[],"Discover Annual Reports Community Maps Demographics DORA Historic Powell Library Public Parking Schools Visit Government Agendas & Minutes Boards & Commissions City Code City Council City Manager’s Office Departments Building Business & Economic Development City Clerk Communications Development Engineering Finance Parks & Recreation Public Service Police Legislation Monthly Reports Public Records Parks & Recreation Powell Parks Bike Paths Community Garden Online Class Registration Facility Rental Request Class Cancellations, Wait Lists & Inclement Weather Residents A to Z Guide Address Check Tool Driver’s License & Titles Homeowners’ Associations Services Christmas Tree Disposal Leaf Removal Snow and Ice Removal Street Trees Trash, Recycling, and Yard Waste Taxes Utilities Vacation House Watch Businesses Building Department Development Department Development Toolkit Greater Powell Chamber of Commerce Zoning Map Events Powell Festival Special Event Permit Designated Outdoor Refreshment Area (DORA) Safety Police Canine Unit Citizens Police Academy Community Oriented Policing Crash Reports Employment Resources Public Records Requests Services Traffic Surveys Fire Delco Alerts Vacation House Watch Discover Annual Reports Community Maps Demographics DORA Historic Powell Library Public Parking Schools Visit Government Agendas & Minutes Boards & Commissions City Code City Council City Manager’s Office Departments Building Business & Economic Development City Clerk Communications Development Engineering Finance Parks & Recreation Public Service Police Legislation Monthly Reports Public Records Parks & Recreation Powell Parks Bike Paths Community Garden Online Class Registration Facility Rental Request Class Cancellations, Wait Lists & Inclement Weather Residents A to Z Guide Address Check Tool Driver’s License & Titles Homeowners’ Associations Services Christmas Tree Disposal Leaf Removal Snow and Ice Removal Street Trees Trash, Recycling, and Yard Waste Taxes Utilities Vacation House Watch Businesses Building Department Development Department Development Toolkit Greater Powell Chamber of Commerce Zoning Map Events Powell Festival Special Event Permit Designated Outdoor Refreshment Area (DORA) Safety Police Canine Unit Citizens Police Academy Community Oriented Policing Crash Reports Employment Resources Public Records Requests Services Traffic Surveys Fire Delco Alerts Vacation House Watch Discover Annual Reports Community Maps Demographics DORA Historic Powell Library Public Parking Schools Visit Government Agendas & Minutes Boards & Commissions City Code City Council City Manager’s Office Departments Building Business & Economic Development City Clerk Communications Development Engineering Finance Parks & Recreation Public Service Police Legislation Monthly Reports Public Records Parks & Recreation Powell Parks Bike Paths Community Garden Online Class Registration Facility Rental Request Class Cancellations, Wait Lists & Inclement Weather Residents A to Z Guide Address Check Tool Driver’s License & Titles Homeowners’ Associations Services Christmas Tree Disposal Leaf Removal Snow and Ice Removal Street Trees Trash, Recycling, and Yard Waste Taxes Utilities Vacation House Watch Businesses Building Department Development Department Development Toolkit Greater Powell Chamber of Commerce Zoning Map Events Powell Festival Special Event Permit Designated Outdoor Refreshment Area (DORA) Safety Police Canine Unit Citizens Police Academy Community Oriented Policing Crash Reports Employment Resources Public Records Requests Services Traffic Surveys Fire Delco Alerts Vacation House Watch News Calendar Powell Festival Economic Development Careers Contact Translate Facebook Twitter LinkedIn Instagram Pinterest Vimeo " -340,https://ci.san-bernardino.ca.us/city_hall/police_department/online_reports,Poor Data Source,Poor Data Source,Online Reports - City of San Bernardino,"",200,Just a moment...,"[""City of San Bernardino California""]","[""Online Reports""]",[],[],[],[],Skip to Content -341,https://delcopa.gov/treasurer/pdf/2021reassessmentvalues/03.pdf,Poor Data Source,Poor Data Source,"404 - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert " -342,https://delcopa.gov/publicrelations/releases/2019/domesticviolenceawareness.html,Media Bulletins,Agency-Published Resources,"Recognizing October as Domestic Violence Awareness Month - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Recognizing October as Domestic Violence Awareness Month""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"" -343,https://virginiabeach.gov/whats-up/whats-new/commonwealth-v-nathaniel-lee-campbell-maximum-sentence-of-10-years-for-man-who-killed-military-police-officer-in-crash,Media Bulletins,Agency-Published Resources,"","",404,"","","","","","","","" -344,http://www.lafayettepolice.us/759/burn-leaves-on-a-city-street,Media Bulletins,Agency-Published Resources,"Burn Leaves on a City Street | Lafayette, IN - Official Website",Can I burn leaves on a City street?,200,"Police Department | Lafayette, IN - Official Website","[""Burn Leaves on a City Street""]",[],"[""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search About Us Operations Prevention Recruitment How Do I... Home Government Departments A - F Fire Department Prevention Fire Safety Practices Open Burn Policy Burn Leaves on a City Street Burn Leaves on a City Street It is unlawful to kindle or maintain any bonfire or rubbish fire or authorize any such fire to be kindled or maintained on or in any public street, alley, or other public ground within the city without consent from the Fire Department. Lafayette City Municipal Code 3.05 - Burning of leaves prohibited - No person shall burn leaves, refuse or any other similar substance except by the express written approval of the Lafayette Fire Department. You can also see: Article 4. Burning Regulations Rule 1. Open Burning 326 IAC 4-1-0.5 Definitions Authority: IC 13-15-2-1; IC 13-17-3-4 Affected: IC 13-12; IC 13-17-9; IC 36-9-27-2 Burn Leaves on a City Street Community Outreach Fire Stations Submit a Request History Photo Gallery Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search About Us Operations Prevention Recruitment How Do I... Home Government Departments A - F Fire Department Prevention Fire Safety Practices Open Burn Policy Burn Leaves on a City Street Burn Leaves on a City Street It is unlawful to kindle or maintain any bonfire or rubbish fire or authorize any such fire to be kindled or maintained on or in any public street, alley, or other public ground within the city without consent from the Fire Department. Lafayette City Municipal Code 3.05 - Burning of leaves prohibited - No person shall burn leaves, refuse or any other similar substance except by the express written approval of the Lafayette Fire Department. You can also see: Article 4. Burning Regulations Rule 1. Open Burning 326 IAC 4-1-0.5 Definitions Authority: IC 13-15-2-1; IC 13-17-3-4 Affected: IC 13-12; IC 13-17-9; IC 36-9-27-2 Burn Leaves on a City Street Community Outreach Fire Stations Submit a Request History Photo Gallery Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In " -345,https://cityofpowell.us/government/employment-opportunities/police-officer-selection-process/,Training & Hiring Info,Info About Officers,"City of Powell, Ohio | Police Officer Selection Process","",200,"City of Powell, Ohio","[""Police Officer Selection Process""]","[""CONTACT INFO"", ""HELPFUL LINKS"", ""LET'S CONNECT""]","[""you're at home in Powell""]","[""614.885.5380"", ""47 Hall Street, Powell, OH 43065"", ""Signup for our newsletter""]",[],[],"Discover Annual Reports Community Maps Demographics DORA Historic Powell Library Public Parking Schools Visit Government Agendas & Minutes Boards & Commissions City Code City Council City Manager’s Office Departments Building Business & Economic Development City Clerk Communications Development Engineering Finance Parks & Recreation Public Service Police Legislation Monthly Reports Public Records Parks & Recreation Powell Parks Bike Paths Community Garden Online Class Registration Facility Rental Request Class Cancellations, Wait Lists & Inclement Weather Residents A to Z Guide Address Check Tool Driver’s License & Titles Homeowners’ Associations Services Christmas Tree Disposal Leaf Removal Snow and Ice Removal Street Trees Trash, Recycling, and Yard Waste Taxes Utilities Vacation House Watch Businesses Building Department Development Department Development Toolkit Greater Powell Chamber of Commerce Zoning Map Events Powell Festival Special Event Permit Designated Outdoor Refreshment Area (DORA) Safety Police Canine Unit Citizens Police Academy Community Oriented Policing Crash Reports Employment Resources Public Records Requests Services Traffic Surveys Fire Delco Alerts Vacation House Watch Discover Annual Reports Community Maps Demographics DORA Historic Powell Library Public Parking Schools Visit Government Agendas & Minutes Boards & Commissions City Code City Council City Manager’s Office Departments Building Business & Economic Development City Clerk Communications Development Engineering Finance Parks & Recreation Public Service Police Legislation Monthly Reports Public Records Parks & Recreation Powell Parks Bike Paths Community Garden Online Class Registration Facility Rental Request Class Cancellations, Wait Lists & Inclement Weather Residents A to Z Guide Address Check Tool Driver’s License & Titles Homeowners’ Associations Services Christmas Tree Disposal Leaf Removal Snow and Ice Removal Street Trees Trash, Recycling, and Yard Waste Taxes Utilities Vacation House Watch Businesses Building Department Development Department Development Toolkit Greater Powell Chamber of Commerce Zoning Map Events Powell Festival Special Event Permit Designated Outdoor Refreshment Area (DORA) Safety Police Canine Unit Citizens Police Academy Community Oriented Policing Crash Reports Employment Resources Public Records Requests Services Traffic Surveys Fire Delco Alerts Vacation House Watch Discover Annual Reports Community Maps Demographics DORA Historic Powell Library Public Parking Schools Visit Government Agendas & Minutes Boards & Commissions City Code City Council City Manager’s Office Departments Building Business & Economic Development City Clerk Communications Development Engineering Finance Parks & Recreation Public Service Police Legislation Monthly Reports Public Records Parks & Recreation Powell Parks Bike Paths Community Garden Online Class Registration Facility Rental Request Class Cancellations, Wait Lists & Inclement Weather Residents A to Z Guide Address Check Tool Driver’s License & Titles Homeowners’ Associations Services Christmas Tree Disposal Leaf Removal Snow and Ice Removal Street Trees Trash, Recycling, and Yard Waste Taxes Utilities Vacation House Watch Businesses Building Department Development Department Development Toolkit Greater Powell Chamber of Commerce Zoning Map Events Powell Festival Special Event Permit Designated Outdoor Refreshment Area (DORA) Safety Police Canine Unit Citizens Police Academy Community Oriented Policing Crash Reports Employment Resources Public Records Requests Services Traffic Surveys Fire Delco Alerts Vacation House Watch News Calendar Powell Festival Economic Development Careers Contact Translate Facebook Twitter LinkedIn Instagram Pinterest Vimeo " -346,https://www.normanok.gov/public-safety/police-department/community-outreach/citizens-police-academy,Poor Data Source,Poor Data Source,We've got some trouble | 404 - Resource not found,"",200,"Welcome to the City of Norman, OK | City of Norman, OK","[""Resource not found Error 404""]",[],[],[],[],[],Resource not found Error 404 The requested resource could not be found. -347,https://www.dps.arkansas.gov/law-enforcement/arkansas-state-police/divisions/crimes-against-children/,Contact Info & Agency Meta,Info About Agencies,Crimes Against Children - Arkansas Department of Public Safety,"",200,Home - Arkansas Department of Public Safety,"[""Flag Status""]","[""Crimes Against Children"", ""Reports of Child Maltreatment"", ""Crimes Against Children Division Commander & Staff"", ""Crimes Against Children Division Administrators"", ""Crimes Against Children Area Administrators"", ""Contact ASP"", ""Helpful ASP links"", ""Connect with ASP"", ""Respect. Integrity. CUSTOMER SERVICE. TEAMWORK. SERVANT LEADERSHIP. CONTINUOUS IMPROVEMENT"", """", ""© 2024 All rights Reserved. Arkansas.gov""]","[""Major Jeffrey Drew"", ""Dan Mack"", ""Kalika Rogers"", ""Tonya Tackett"", ""Sara King"", ""Jamey Nesbitt"", ""Lee Ann Stidham"", ""Tara Flute"", ""Michelle Gatlin"", ""Lorra Wicker"", ""Andrea Carter"", ""Laurie Stephens"", ""Pamela Meeks""]",[],"[""About DPS"", ""DPS Links"", ""DPS Address"", ""Your Arkansas.gov"", ""Top Online Services"", ""Helpful Information""]",[],"" -348,http://lafayettepolice.us/3532/schools-out-day-camps,Media Bulletins,Agency-Published Resources,"School's Out Day Camps | Lafayette, IN - Official Website","",200,"Police Department | Lafayette, IN - Official Website","[""School's Out Day Camps""]","[""2024 School's Out Day Camp Dates"", ""Questions? Please contact the Education Department at zooeducation@lafayette.in.gov or (765) 807-1540.""]","[""LOOKING FOR SPRING BREAK INFO? Click here for our Spring Break Safari Camp page."", ""Online Registration Portal"", ""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]","[""Please review before registering:""]",[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Plan Your Visit About the Zoo Get Involved Education Programs Special Events I Want To... Home Government Departments H - W Parks & Recreation Facilities Columbian Park Zoo Education Programs Family & Youth Programs Zoo Camps School's Out Day Camps School's Out Day Camps School's out, so come hang out at the Zoo! During select planned days off for Lafayette, Tippecanoe, and/or West Lafayette Community Schools, the Zoo will hold a one day camp session. Kids can spend the day exploring the wild world of animals through games, crafts, STEM (Science, Technology, Engineering, and Math) activities and close-up encounters with live Animal Ambassadors! These sessions are full day, drop-off camp sessions from 9:00am-4:00pm with an optional Extended Care service available at an additional charge. Please note that some dates may be adjacent to one another, but each day requires individual registration to allow you flexibility in scheduling around your family's needs, and to insulate against snow make-up day impacts. Our normal Cancellation Policy applies to School's Out Day Camps, with the additional consideration that if your school district determines that a snow make-up day will occur on the date of the program we will refund you in full for your registration fee. 2024 School's Out Day Camp Dates Date Ages Times Fee (per child) Status Monday, April 8, 2024 (Total Eclipse Day) - FREE EXTENDED CARE 5-11 9:00am-4:00pm $50 OPEN TBD TBD TBD Please check your school's calendar before registering as each district's days off vary. Additional dates may be added as needed and availability allows. If your preferred session is full, please contact us at zooeducation@lafayette.in.gov to be added to a wait list. LOOKING FOR SPRING BREAK INFO? Click here for our Spring Break Safari Camp page. Please review before registering: Zoo Education Programs Participation Agreement Hold Harmless and Cancellation Policy Online Registration Portal Interested in becoming a member? Click here for more info or to join today! Questions? Please contact the Education Department at zooeducation@lafayette.in.gov or (765) 807-1540. Spring Break Camp Summer Camps Learning Adventures Camps (ages 5-7) Learning Adventures Camps (ages 8-11) Learning Adventures Camps (ages 12-14) School's Out Day Camps Aquatics McAllister Center Rentals Zoo Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate " -349,https://www.lasalle-il.gov/shared-police-services-committee-4,Poor Data Source,Poor Data Source,Shared Police Services Committee | City of La Salle,"",200,"Error retrieving title: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))","[""Shared Police Services Committee""]","[""Main navigation"", ""Main Menu"", ""Important Info""]",[],[],[],[],"Search Phone: 815-223-3755 Fax: 815-223-9508 Contact Us Main navigation MENU About La Salle Our Mission Event Calendar Historical Tour City Profile » Tourism Ward Map Canal Corridor Association City Services Municipal Information Directory City Government City Mayor City Clerk/Deputy Clerk City Officials City Committees La Salle Promotional & Advisory Committee (LPAC) Ordinances & Codes Departments Building Department Frequently Asked Questions Engineering Frequently Asked Questions Finance/Utility Billing Annual Audits Budget/Appropriations Labor Contracts What We Do Utility Billing Water & Sewer Rates Fire Department Department Overview Department History ISO Rating Apparatus Showcase Public Education Disaster Preparedness Storm Ready Community Fire Department Links Knox Box System Parks & Recreation Interactive Park Map La Salle Parks Information Pollinator Park Police Department Patrol Division Detective Division Communications Division School Resource Officer Program Community Programs TRI-DENT Crime Free Housing Registered Sex Offenders Moving to Town Safety Tips Important Phone Numbers Public Works Frequently Asked Questions What We Do Development Properties Available Properties Business Development Economic Development Development Incentives » TIF Districts Enterprise Zone Redevelopment Incentive Program Hotels & Short Term Rentals Community COVID-19 Info Businesses Dining Health Care Senior Services Worship Education Farmer's Market Public Library Illinois Valley YMCA NewsTribune La Salle Business Association (LBA) Job Market Information Online Services Shared Police Services Committee Where: Peru Municipal Building When Tuesday, November 27, 2018 Agenda November 27, 2018 Agenda City Offices: 745 Second Street La Salle, Illinois 61301 Phone: 815-223-3755 Fax: 815-223-9508 Email the City Office City Office Hours: Monday - Friday: 7:30 a.m. - 4:00 p.m. Main Menu Home About La Salle Departments Development Community Contact Us Sitemap Important Info Privacy Policy External Site Policy FOIA Information USA.gov HHS.gov Accessibility Plugins Find Us On Facebook Copyright © 2017-2018 City of LaSalle. All Rights Reserved. La Salle Web Design by Anttix, Inc. " -350,https://www.minneapolismn.gov/government/programs-initiatives/community-safety/focus-areas/alternatives-police-response/new-pilot-response/,Policies & Contracts,Info About Agencies,Community Safety Work - City of Minneapolis,We're focusing on three key areas to improve community safety in our city.,200,City of Minneapolis,"[""Community safety work"", ""Need help? We're here for you.""]","[""A snow emergency is not currently in effect. Normal parking rules apply."", ""Overview"", ""Key areas"", ""Related links"", ""Community safety in different languages from 2021"", ""Contact us""]","[""Alternatives to police response"", ""Violence prevention"", ""Police policy reform"", ""Unarmed public safety responses"", ""Public health approach to violence"", ""Behavioral crisis response"", ""See language translation pages"", ""Alternatives to police response"", ""Police policy reform"", ""Community Safety Office""]","[""Learn more"", ""Learn more"", ""Learn more""]",[],[],"" -351,https://delcopa.gov/purchasing/bidsprops/cp081921_addendum4.pdf,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -352,https://www.mass.gov/doc/summary-results-of-recent-lead-and-copper-drinking-water-testing-at-massachusetts-schools/download,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -353,http://www.cityofpataskalaohio.gov/city-of-pataskala-careers/ordinance-2021-4399-exhibit-a-full-time-police-clerk-2/,Poor Data Source,Poor Data Source,Ordinance-2021-4399-Exhibit-A-Full-Time-Police-Clerk - City Of Pataskala,Official Website,200,Home - City Of Pataskala,"[""City Of Pataskala""]","[""Official Website""]",[],[],[],[],Document Library Calendar Public Services Pay Court Ticket Online City Of Pataskala Official Website Blog Community Police Obtain Fingerprints Solicitor’s Permit Citizens Police Academy Important Links/Resources Prescription Drug Drop Off Police Officer Job Application History of the Pataskala Police Department Curfew Vacation House Check Form Fire School Districts Residents Taxes in Pataskala RITA Tax Local Animal Shelter/Lost Pets Dog License BMV Info Licking County Health Department Register to Vote Report a Gas Emergency New to Pataskala? Good Neighbor Guidelines Outdoor Activities Attractions City Departments Mayor Administration Garage Sale Permit Adopt-A-Street Program Rent a Park Shelter Current Bids and RFQ’s Outdoor Activity/Event Permit Parade-Assembly Form Parks and Recreation Economic Development Human Resources Utilities Utility Rates Water and Sewer Billing/ E-Billing Interesting Facts and Information Storm Water Management Program Report a Water Leak Finance Pataskala’s Income Tax Budget Financial Reports Popular Annual Financial Report (PAFR) Annual Comprehensive Financial Reports Financial Condition Reports 2023 Financial Condition Reports 2022 Financial Condition Reports 2021 Financial Condition Reports 2020 Financial Condition Reports 2019 Financial Condition Reports 2018 Financial Condition Reports 2017 Financial Condition Reports 2016 Financial Condition Reports 2015 Financial Condition Reports 2014 Financial Condition Reports 2013 Financial Condition Reports 2012 Financial Condition Reports Audited Financial Reports Pataskala Open Checkbook Mayor’s Court Important Traffic Violation Info Pay Fines or Search Case Files How to Pay Fines Traffic and General Offense Codes Plea Descriptions Court Appearance Times Your Rights in the Pataskala’s Mayor’s Court Downloadable Forms Sealing a Record Informational Court Links Mayor’s Court Prosecutor Pataskala’s Mayors Court Magistrate Mayor’s Court Rules Criminal/Traffic Diversion Bond Schedule Fine Schedule Legal Public Service/Streets Pothole Repair Report a Pothole Right of Way Snow Removal Traffic Signals & Street Lights Drainage/Ditches Issues Planning & Zoning Permit Questions Planning & Zoning Fee Schedule Discharge Map Zoning Maps Permits Comprehensive Plan Properties With Posted Code Violations Government City Council Ward Map Tom H. Lee – Ward 1 Mary Hite – Ward 2 Deborah Kohman – Ward 3 Brandon Galik – Ward 4 Dustin Epperson – At-Large Jude Hampshire – At-Large Andy Walther – At Large Clerk of Council Council Packet Public Notices Agendas Meeting Minutes Audio/Video Recordings Legislation Approved Ordinances & Resolutions 2024 Resolutions 2024 Ordinances 2023 Resolutions 2023 Ordinances 2022 Resolutions 2022 Ordinances 2021 Resolutions 2021 Ordinances 2020 Resolutions 2020 Ordinances 2019 Resolutions 2019 Ordinances 2018 Resolutions 2018 Ordinances 2017 Resolutions 2017 Ordinances 2016 Resolutions 2016 Ordinances 2015 Resolutions 2015 Ordinances Codified Ordinances Charter Public Records Request Information Boards and Commissions Personnel Board of Review Planning and Zoning Commission Board of Zoning Appeals Parks and Recreation Advisory Board Planning & Zoning Commission Board of Zoning Appeals Document Library Calendar Public Services Pay Court Ticket Online -354,https://cheswold.delaware.gov/cheswold-police-department-crime-statistics/july-2021-activity-report/,Crime Maps & Reports,Agency-Published Resources,July 2021 - Activity Report - Town of Cheswold,"",200,"Home - Town of Cheswold - Kent County, Delaware","[""Cheswold""]","[""Delaware"", ""July 2021 – Activity Report""]","[""Menu""]","[""Address:"", ""Call Us:"", ""Reach Out:""]",[],[],"Skip to Content Skip to Footer Toggle navigation Menu Government Mayor Town Council Boards & Commissions Departments Elections Meetings & Events Public Notices Past Minutes & Agendas Info Public Hearings Comprehensive Plan Ordinances Taxes & Fees Delinquent Tax List Forms Town Charter Flag Status Past Minutes & Agendas Resolutions Community About Our Town Cheswold Welcome Packet Cheswold’s Airport Cheswold Newsletter Churches & Houses of Worship Colleges & Universities Libraries Local Developments Public Schools News Police About the Cheswold Police Department Police Reports Chief’s Page Cheswold Police Officers Cheswold Police Department Policy Manual Civilian Complaint Packet Crime Statistics Cheswold Police Department – Yearly Traffic Statistics Informational Pamphlets and Forms Law Enforcement Links Most Wanted Police Contact Form Police Employment Police News Ride-A-Long Program Sex Offender List Vacation Check Requests Photo Galleries Contact Contact Us FOIA Form Skip to Content Skip to Footer Toggle navigation Menu Government Mayor Town Council Boards & Commissions Departments Elections Meetings & Events Public Notices Past Minutes & Agendas Info Public Hearings Comprehensive Plan Ordinances Taxes & Fees Delinquent Tax List Forms Town Charter Flag Status Past Minutes & Agendas Resolutions Community About Our Town Cheswold Welcome Packet Cheswold’s Airport Cheswold Newsletter Churches & Houses of Worship Colleges & Universities Libraries Local Developments Public Schools News Police About the Cheswold Police Department Police Reports Chief’s Page Cheswold Police Officers Cheswold Police Department Policy Manual Civilian Complaint Packet Crime Statistics Cheswold Police Department – Yearly Traffic Statistics Informational Pamphlets and Forms Law Enforcement Links Most Wanted Police Contact Form Police Employment Police News Ride-A-Long Program Sex Offender List Vacation Check Requests Photo Galleries Contact Contact Us FOIA Form Skip to Content Skip to Footer Toggle navigation Menu Government Mayor Town Council Boards & Commissions Departments Elections Meetings & Events Public Notices Past Minutes & Agendas Info Public Hearings Comprehensive Plan Ordinances Taxes & Fees Delinquent Tax List Forms Town Charter Flag Status Past Minutes & Agendas Resolutions Community About Our Town Cheswold Welcome Packet Cheswold’s Airport Cheswold Newsletter Churches & Houses of Worship Colleges & Universities Libraries Local Developments Public Schools News Police About the Cheswold Police Department Police Reports Chief’s Page Cheswold Police Officers Cheswold Police Department Policy Manual Civilian Complaint Packet Crime Statistics Cheswold Police Department – Yearly Traffic Statistics Informational Pamphlets and Forms Law Enforcement Links Most Wanted Police Contact Form Police Employment Police News Ride-A-Long Program Sex Offender List Vacation Check Requests Photo Galleries Contact Contact Us FOIA Form Cheswold Delaware Listen July 2021 – Activity Report July 2021 - Activity Report Cheswold Delaware Listen July 2021 – Activity Report July 2021 - Activity Report Listen July 2021 – Activity Report July 2021 - Activity Report Listen July 2021 – Activity Report July 2021 - Activity Report Listen July 2021 – Activity Report July 2021 - Activity Report Listen Address: 691 Main Street Cheswold, DE 19936 Call Us: (302) 734-6991 Reach Out: Contact Form FOIA Form Address: 691 Main Street Cheswold, DE 19936 Call Us: (302) 734-6991 Reach Out: Contact Form FOIA Form " -355,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/072521blotter.pdf,Dispatch Logs,Police & Public Interactions,"","",404,"","","","","","","","" -356,https://delcopa.gov/publicrelations/releases/2021/deppublichearing_0922.html,Not Criminal Justice Related,Not Criminal Justice Related,"DEP Holds Public Hearing Regarding Covanta on Sept. 22 - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""DEP Holds Public Hearing Regarding Covanta on Sept. 22""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play DEP Holds Public Hearing Regarding Covanta on Sept. 22 Home / Departments / Public Relations Releases / DEP Holds Public Hearing Regarding Covanta on Sept. 22 Released: September 8, 2021 On September 3, the Department of Environmental Protection announced it will receive public comments and host a virtual public hearing regarding a Title V/State Operating Permit renewal request for Covanta Delaware Valley, LP, a waste to energy facility in the City of Chester, Delaware County. The public is invited to participate in this process through a public comment period and a virtual public hearing. The virtual public hearing will be held on Wednesday, September 22 beginning at 6:30 p.m. Individuals wishing to provide testimony must contact DEP Community Relations Coordinator John Repetz at jrepetz@pa.gov or 717-705-4904 to register at least 24 hours prior to the hearing. Additional information will be provided to testifiers upon registration. The hearing will be accessible by both Internet and phone to ensure all stakeholders have access. The WebEx information for the virtual public hearing is available on DEP’s Virtual Public Hearings page. DEP is also accepting written public comments on these amendments, which may be submitted to RA-EPSEROAQpubcom@pa.gov or mailed to the Southeast Regional Office, Air Quality Program, 2 E. Main St. Norristown, PA 19401 until close of business on Monday, October 4, 2021. To assist with mail routing, it is requested that mailed comments contain the following on the envelope: “Comments on Covanta Del Val.” All comments, whether received in writing or spoken at the hearing, carry equal weight and consideration before DEP. Covanta Delaware Valley, LP is a permitted waste-to-energy facility currently seeking renewal of its five-year Title V/State Operating Permit. These permits are required under the federal Clean Air Act for any large or major source of air pollution. Covanta submitted its renewal application in December 2020; DEP deemed the application administratively complete in February 2021 and commenced a technical review. The proposed Title V Operating Permit Renewal contains all applicable requirements including monitoring, recordkeeping, reporting, and work practices. It does not authorize any increase in air emissions of regulated pollutants above the previously approved levels. Public Relations Navigation Press Releases County Newsletter Use of County Facility Form Questions about COVID-19 vaccines? Please call the COVID-19 Call Center: 484-276-2100. Adrienne Marofsky, Director Government Center, 226A 201 W. Front St. Media, PA 19063 Phone: 610-891-4943 delcopr@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll " -357,http://www.lafayettepolice.us/1716/emu,Not Criminal Justice Related,Not Criminal Justice Related,"Emu | Lafayette, IN - Official Website","",200,"Police Department | Lafayette, IN - Official Website","[""Emu""]",[],"[""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Plan Your Visit About the Zoo Get Involved Education Programs Special Events I Want To... Home Government Departments H - W Parks & Recreation Facilities Columbian Park Zoo About the Zoo Exhibits and Animals Australia Emu Emu Emu Dromaius novaehollandiae Conservation Status: Least Concern Range: Widespread across Australia Habitat: Grasslands, open forests, farmlands Size: 5-6 feet tall; ~100 pounds Diet in the Wild: Seeds, flowers, grass shoots, fruit, insects Diet in the Zoo: Formulated grain, hay, lettuce Lifespan: 10-20 years in the wild; 35+ years in captivity The emu is the second largest bird in the world (the ostrich is the largest). Too heavy to fly, the emu's feathers are adapted for warmth, giving them a fluffy appearance. Emu tail feathers are stiff and can be rattled together to scare off potential predators such as dingoes and wild dogs. Fun Facts! Emu have a pouch in their throat the can be used to make a deep drumming sound to communicate with other emu! Emu can run up to 30 mph with an almost 9 foot stride! Emu are the only birds that have calf muscles! New Guinea Singing Dog Bennett's Wallaby Emu Laughing Kookaburra Aquatics McAllister Center Rentals Zoo Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate " -358,https://www.coppelltx.gov/530/virtual-recreation,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -359,https://coloradosprings.gov/police-department/article/news/shooting-investigation-1800-block-monterey,Media Bulletins,Agency-Published Resources,Shooting Investigation 1800 Block Monterey Road | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""Shooting Investigation 1800 Block Monterey Road""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[],"" -360,https://www.antioch.il.gov/wpfb-file/01-14-14-police-and-fire-agenda-pdf-2/,Poor Data Source,Poor Data Source,"01-14-14 Police And Fire Agenda - Antioch, IL",01 14 police and fire agenda pdf commissions commission agendas 2014 08 17 51 0000,200,"Home - Antioch, IL","[""01-14-14 Police And Fire Agenda""]",[],[],[],[],[],Open toolbar Accessibility Tools Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset -361,https://www.gov.ca.gov/2022/02/27/governor-newsom-statement-on-death-of-salinas-police-officer-2-27-22/,Media Bulletins,Agency-Published Resources,Governor Newsom Statement on Death of Salinas Police Officer 2.27.22 | California Governor,SACRAMENTO – Governor Gavin Newsom today issued the following statement regarding the death of Salinas Police Department Officer Jorge David Alvarado: “Our…,200,403 Forbidden,"[""Governor Newsom Statement on Death of Salinas Police Officer 2.27.22""]",[],[],"[""Recent News"", ""Archives"", ""Categories""]",[],[],Skip to Main Content CA.gov Home Share via Facebook Share via Instagram TikTok Share via Twitter Share via YouTube Settings CA.gov Home Share via Facebook Share via Instagram TikTok Share via Twitter Share via YouTube Settings CA.gov Home Share via Facebook Share via Instagram TikTok Share via Twitter Share via YouTube Settings CA.gov Home Share via Facebook Share via Instagram TikTok Share via Twitter Share via YouTube CA.gov Settings Default High Contrast Reset Increase Font Size Font Increase Decrease Font Size Font Decrease Dyslexic font × Default High Contrast Reset Increase Font Size Font Increase Decrease Font Size Font Decrease Dyslexic font × Default High Contrast Default High Contrast Reset Increase Font Size Font Increase Decrease Font Size Font Decrease Reset Increase Font Size Font Increase Decrease Font Size Font Decrease Dyslexic font Search Menu Search Menu Home About Governor Newsom First Partner Newsroom Appointments Appointments Judicial First Partner First Partner Jennifer Siebel Newsom California For All Women California For All Kids #MetoWe Contact Contact Scheduling Request Custom Google Search Submit Close Search About Governor Newsom First Partner Governor Newsom First Partner Appointments Appointments Judicial Appointments Judicial First Partner First Partner Jennifer Siebel Newsom California For All Women California For All Kids #MetoWe First Partner Jennifer Siebel Newsom California For All Women California For All Kids #MetoWe Contact Contact Scheduling Request Contact Scheduling Request Custom Google Search Submit Close Search Custom Google Search Submit Close Search Close Search -362,https://www.southamptontownnypolice.gov/1446/hampton-resorts-atlantic-hotel-ia-system,Not Criminal Justice Related,Not Criminal Justice Related,"Hampton Resorts (Atlantic Hotel) IA System | Southampton, NY - Official Website","",200,"Police | Southampton, NY - Official Website","[""Hampton Resorts (Atlantic Hotel) IA System""]",[],"[""Site Tools"", ""Contact Us"", ""Site Links"", ""Loading""]","[""WQIP - Fund Application"", ""Summary Sheet""]",[],[],"Skip to Main Content EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Government Town Services Community Info How Do I Translate Page Site Tools Home My Account Printer Friendly Email Page Contact Us RSS Site Map Translate Page Notifications Documents Search Home Government Departments Community Preservation Fund (CPF) WQIPP - Plan/Checklist/App 2020 WQIP - Applications & Proposal Summaries Hampton Resorts (Atlantic Hotel) IA System Hampton Resorts (Atlantic Hotel) IA System WQIP - Fund Application Hampton Resorts, LLC-aka Atlantic Hotel - WQI Application Summary Sheet Hampton Resorts Atlantic Hotel IA System Cornell Cooperative Extension-Shellfish & Habitat Flying Point Comfort Station Hampton Resorts (Atlantic Hotel) IA System Mashashimuett Park NRB for Residences Pump Out Program-Waste Water Treatment- Trustees Sag Harbor Village- Sewer Master Plan Southampton Village - Agawam Pond-Phase II Southampton Village - WQIP Southampton Village-Old Town Pond Westhampton Beach Sewer Treatment Project Woodhull Fish Passage Town Clerk Meetings, Agendas & Minutes Pay Your Taxes Online Services Applications, Forms & Fees Notify Me® FOIL Requests Contact Us Town of Southampton 116 Hampton Road Southampton, NY 11968 Phone: 631-283-6000 Banner photo credit: robertseifertphotography.com Site Links Contact Us Site Map Accessibility Copyright Notices Intranet Job Opportunities Title VI Non-discrimination Policy /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Government Town Services Community Info How Do I Translate Page Site Tools Home My Account Printer Friendly Email Page Contact Us RSS Site Map Translate Page Notifications Documents Search Home Government Departments Community Preservation Fund (CPF) WQIPP - Plan/Checklist/App 2020 WQIP - Applications & Proposal Summaries Hampton Resorts (Atlantic Hotel) IA System Hampton Resorts (Atlantic Hotel) IA System WQIP - Fund Application Hampton Resorts, LLC-aka Atlantic Hotel - WQI Application Summary Sheet Hampton Resorts Atlantic Hotel IA System Cornell Cooperative Extension-Shellfish & Habitat Flying Point Comfort Station Hampton Resorts (Atlantic Hotel) IA System Mashashimuett Park NRB for Residences Pump Out Program-Waste Water Treatment- Trustees Sag Harbor Village- Sewer Master Plan Southampton Village - Agawam Pond-Phase II Southampton Village - WQIP Southampton Village-Old Town Pond Westhampton Beach Sewer Treatment Project Woodhull Fish Passage Town Clerk Meetings, Agendas & Minutes Pay Your Taxes Online Services Applications, Forms & Fees Notify Me® FOIL Requests Contact Us Town of Southampton 116 Hampton Road Southampton, NY 11968 Phone: 631-283-6000 Banner photo credit: robertseifertphotography.com Site Links Contact Us Site Map Accessibility Copyright Notices Intranet Job Opportunities Title VI Non-discrimination Policy /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... " -363,https://delcopa.gov/departments/emergencyservices.html,Not Criminal Justice Related,Not Criminal Justice Related,"Emergency Services - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Emergency Services""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"" -364,https://www.roundrocktexas.gov/news/police-arrest-two-suspects-series-vehicle-burglaries/,Media Bulletins,Agency-Published Resources,Police arrest two suspects for series of vehicle burglaries - City of Round Rock,"",200,403 Forbidden,[],[],"[""Police arrest two suspects for series of vehicle burglaries""]","[""Site Search"", ""Follow Us""]",[],[],"" -365,https://www.coronadelmar.us/residents-show-support-for-the-newport-beach-police-department-media-4/,Poor Data Source,Poor Data Source,Residents Show Support for the Newport Beach Police Department-media-4 | Corona del Mar California,"",200,Corona del Mar California,"[""Residents Show Support for the Newport Beach Police Department-media-4""]","[""Menu"", ""Be First to Comment"", ""Subscribe"", """", """"]","[""Leave a Reply Cancel reply"", """"]",[],[],[],"Search Search Corona del Mar California Corona del Mar California March 25, 2024 The Quintessential California Beach Town open menu Back Corona del Mar open menu Privacy Policy United States Post Office News Local Jobs Our Beaches open menu Big Corona Little Corona Restaurants open menu Gallo’s Italian Deli Nagisa Sushi Restaurant Gina’s Pizza Pirozzi Corona del Mar Zinc Cafe Market Bandara Rose Bakery Cafe The Quiet Woman Starbucks Coast Highway Menu Corona del Mar Privacy Policy United States Post Office News Nagisa Sushi Restaurant Restaurants The Quiet Woman Rose Bakery Cafe Zinc Cafe Market Pirozzi Corona del Mar Gina’s Pizza Starbucks Coast Highway Bandara Gallo’s Italian Deli Our Beaches Little Corona Big Corona Local Jobs Baseball Game Preview: Corona del Mar Sea Kings vs. Valley View Eagles – MaxPreps.com By The Citizen Both teams have allowed few runs on average, (Corona del Mar: 3.6, Valley View: 4) so any runs scored will be well earned. Last Thursday,... Leave a Comment Baseball Game Preview: Valley View Eagles vs. Corona del Mar Sea Kings – MaxPreps.com By The Citizen Meanwhile, Corona del Mar sure made it a nail-biter, but they managed to escape with a 2-1 victory over San Clemente on Thursday. Valley View's... Leave a Comment University boys tennis takes second at All-American team tournament – Orange County Register By The Citizen University opened its week Wednesday by defeating previously undefeated Corona del Mar ... The Trojans defeated Corona del Mar in the regional final ... Source: Google Leave a Comment Orangewood Academy's loss ends five-game winning streak at home – MaxPreps.com By The Citizen They'll take on Corona del Mar at 4:00 p.m. on April 4th. As for Western Christian, they will head out on the road to square... Leave a Comment Savanna multi-sport coach and co-athletic director Alex Ramirez receives layoff notice from district By The Citizen High School Sports | · Fryer: Corona del Mar's Ava Simos sticks to all-events approach as long as she can · High School Sports |... Leave a Comment Residents Show Support for the Newport Beach Police Department-media-4 Previous Image Next Image Be First to Comment Leave a Reply Cancel reply Your email address will not be published. Required fields are marked * Comment Name* Email* Website Δ Subscribe Email Address Subscribe Join 1 other subscriber Corona del Mar California The Quintessential California Beach Town © www.coronadelmar.us 2024 " -366,https://santabarbaraca.gov/government/departments/police-department/funciones-miscelaneos,Misc Police Activity,Police & Public Interactions,Funciones Misceláneos | City of Santa Barbara,• Permisos de alarma El Departamento de Policía de Santa Barbara responde anualmente a miles de llamadas de alarmas falsas. Estas respuestas innecesarias resultan en una enorme carga de mano de obra y gastos; lo que a su vez reduce el tiempo disponible para responder a emergencias urgentes.,200,City of Santa Barbara,"[""Funciones Misceláneos""]","[""Learn about Cookies"", ""[#IABV2_TITLE#]"", ""Breadcrumb"", ""This is the prefooter section"", ""Main Footer"", ""City Hall"", ""Mailing Address"", ""Newsletters""]",[],[],[],[],"" -367,https://www.antioch.il.gov/wpfb-file/04-08-14-police-pension-agenda-pdf-3/,Poor Data Source,Poor Data Source,"04-08-14 Police Pension Agenda - Antioch, IL",10574 04 08 14 police pension agenda pdf commissions fund agendas 2014 1396623746 2c4916e7dd6a45db57ba715eb2e88686 213x300 _npkxhbratshx thumb jpg 10 02 26 0 pdf application trustees dennis b crosby jay jozwiak mary c dominiak scott a pierce jerry t johnson ted p poulos lawrence m hanson mayor lori k folbrick village clerk agenda of antioch lake,200,"Home - Antioch, IL","[""04-08-14 Police Pension Agenda""]",[],[],[],[],[],Open toolbar Accessibility Tools Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset -368,http://www.ryepolice.us/event/makn-llc-dba-mission-portsmouth,Not Criminal Justice Related,Not Criminal Justice Related,"Rye Police Department MAKN, LLC dba Mission Portsmouth - Rye Police Department","",200,Rye Police Department Welcome to the Rye Police Department - Rye Police Department,"["""", ""MAKN, LLC dba Mission Portsmouth""]","[""June 15, 2017 @ 5:00 am - October 15, 2017 @ 7:00 am"", ""Details"", ""Organizer"", ""Venue""]","[""Navigation"", ""Follow Us"", ""Facebook"", ""Email Updates"", ""Storm Preparedness Guide""]",[],[],[]," Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Chief’s Message Crime Prevention Victim Services Domestic Violence Computer Crime Identity Theft Press Releases Police Logs Events Event Permits Beach Permits FAQ Contact Us Navigate... Chief’s Message Crime Prevention - Victim Services - Domestic Violence - Computer Crime - Identity Theft Press Releases Police Logs Events - Event Permits - Beach Permits FAQ Contact Us Search Home « All Events This event has passed. MAKN, LLC dba Mission Portsmouth June 15, 2017 @ 5:00 am - October 15, 2017 @ 7:00 am « GYROKINESIS ® Lessons Namaste NH Beach Yoga » Fitness Classes/Yoga on the beach - Mindy Anderson LOCATION: Foss Beach or Wallis Rd Ext @ High Tide Monday-Friday 5:00AM-7:00AM + Google Calendar + iCal Export Details Start: June 15, 2017 @ 5:00 am End: October 15, 2017 @ 7:00 am Event Category: Beach Permits Website: http://www.missionportsmouth.com/ Organizer Mindy Anderson Venue Foss Beach « GYROKINESIS ® Lessons Namaste NH Beach Yoga » Navigation About Rye Animal Control Announcements Beach Information Careers Chief’s Message Computer Crime Contact Us Coronavirus Crime Prevention Directions Domestic Violence FAQ Firearms Safety Fireworks Forms Identity Theft Mission Statement Parking Payments Personnel Police Logs Prescription Drug Disposal Press Releases Report Request Town Ordinances Victim Services West Nile / EEE Follow Us Facebook Email Updates Subscribe to our newsletter. We promise you won't get flooded with junk! Email * Storm Preparedness Guide Developed by ThemeMakers Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Chief’s Message Crime Prevention Victim Services Domestic Violence Computer Crime Identity Theft Press Releases Police Logs Events Event Permits Beach Permits FAQ Contact Us Navigate... Chief’s Message Crime Prevention - Victim Services - Domestic Violence - Computer Crime - Identity Theft Press Releases Police Logs Events - Event Permits - Beach Permits FAQ Contact Us Search Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Chief’s Message Crime Prevention Victim Services Domestic Violence Computer Crime Identity Theft Press Releases Police Logs Events Event Permits Beach Permits FAQ Contact Us Navigate... Chief’s Message Crime Prevention - Victim Services - Domestic Violence - Computer Crime - Identity Theft Press Releases Police Logs Events - Event Permits - Beach Permits FAQ Contact Us Search Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Chief’s Message Crime Prevention Victim Services Domestic Violence Computer Crime Identity Theft Press Releases Police Logs Events Event Permits Beach Permits FAQ Contact Us Navigate... Chief’s Message Crime Prevention - Victim Services - Domestic Violence - Computer Crime - Identity Theft Press Releases Police Logs Events - Event Permits - Beach Permits FAQ Contact Us Search " -369,https://www.kenedytx.gov/2022/04/18/kenedy-police-departments-k9-robbie-to-get-donation-of-body-armor/,Media Bulletins,Agency-Published Resources,Kenedy Police Department’s K9 Robbie to get donation of body armor,"Kenedy Police Department’s K9 Robbie to get donation of body armor . Kenedy is a small town with big opportunities, located in the heart of the South Texas.",200,"City of Kenedy, Texas - Official Website","[""Kenedy Police Department’s K9 Robbie to get donation of body armor""]",[],"[""Resources & Links"", ""Recent City News"", ""City News Archives"", ""Recent Meeting Agendas"", ""Kenedy Weather"", ""Featured News"", ""Transparency & Documents"", ""Recent Documents"", ""About Kenedy"", ""Recent City News"", ""Recent Documents"", ""Contact Us""]","[""March 25, 2024 Kenedy 4B EDC Regular Meeting"", ""March 26, 2024 Public Hearing regarding the Texas Community Development Block Grant Program (TxCDBG)"", ""March 19, 2024 Parks & Recreation Meeting Agenda"", ""Local Time"", ""Today"", ""Saturday"", ""Sunday"", ""Monday"", ""Kenedy Economic Development Corporation (4B) Website Launches"", ""March 26, 2024 Special Kenedy City Council Meeting"", ""March 25, 2024 Kenedy 4B EDC Regular Meeting"", ""March 26, 2024 Public Hearing regarding the Texas Community Development Block Grant Program (TxCDBG)"", ""March 19, 2024 Parks & Recreation Meeting Agenda"", ""Water Plant Operator"", ""March 12, 2024 Kenedy Regional Airport Board Regular Meeting Agenda"", ""March 12, 2024 Kenedy City Council Regular Meeting Agenda"", ""March 26, 2024 Special Kenedy City Council Meeting"", ""March 25, 2024 Kenedy 4B EDC Regular Meeting"", ""March 26, 2024 Public Hearing regarding the Texas Community Development Block Grant Program (TxCDBG)"", ""March 19, 2024 Parks & Recreation Meeting Agenda"", ""Water Plant Operator""]","[""March 22, 2024"", ""March 23, 2024"", ""March 24, 2024"", ""March 25, 2024""]","[""Previous"", ""Next""]","" -370,http://www.lafayettepolice.us/873/fire-stopping,Not Criminal Justice Related,Not Criminal Justice Related,"Fire Stopping | Lafayette, IN - Official Website",Find out more about fire-stopping materials and practices.,200,"Police Department | Lafayette, IN - Official Website","[""Fire Stopping""]",[],"[""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search About Us Operations Prevention Recruitment How Do I... Home Government Departments A - F Fire Department Prevention Contractors & Designers Resources & Inspections Fire Stopping Fire Stopping Fire stopping is the containment of fire or smoke through rated assemblies by the application of tested fire rated assemblies. There are 4 primary types of openings or joints associated with fire and smoke resistive rated assemblies, to which tested fire-stopping systems may be applied to prevent the spread of fire, smoke or gases: Joints - Joints between fire-rated construction components (e.g. wall to wall, wall to floor, wall to ceiling) Floor Perimeters - Slab edge / exterior wall cavity (curtain wall) Penetrations - Openings containing mechanical, electrical, structural, security, communication, piping or wiring Electrical boxes whose combined openings exceed 100 square inches in 100 square feet of wall Fire-Stopping a Penetration There are 5 important things to consider when deciding how to fire-stop a penetration. What is the assembly you are penetrating made of (gypsum, wood, concrete)? What is the item that is penetrating it (PVC, iron pipe, EMT, wiring)? What is the annular space (minimum and maximum)? What is the size of the opening? What is the hourly rating of the assembly? Fires topping is not synonymous with fire blocking . Fire-Stopping Materials ""Intumescent"" means that the material expands when exposed to fire or heat to fill a void in the penetration caused by the deformation or combustion of the penetration item. ""Elastomeric"" products are flexible and prevent passage of heat and gases while permitting movement of the assembly. There are several fire-stopping material manufacturers. Each manufacturer has their material tested and listed for specific applications. Not all materials are interchangeable with other ""brands"" or systems. Some examples of materials or ""components"" found in tested and listed systems: ""Muffins"" Caulk Flexible wraps Mineral or Stone Wool Putty Spray Glossary Tested & Listed Fire Stop Systems Community Outreach Fire Stations Submit a Request History Photo Gallery Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate " -371,https://www.antioch.il.gov/wpfb-file/04-10-18-police-and-fire-agenda-pdf/,Poor Data Source,Poor Data Source,"04-10-18 Police And Fire Agenda - Antioch, IL",15646 04 10 18 police and fire agenda pdf commissions commission agendas 2018 1625758283 fe2413af4681e60c033482af6dde0466 7a26e41a326bbad9ee17487303d2ac31b426c4983a4edb45e9909830d1136370 219x300 _zug308fuvbmx thumb jpg 06 15 13 49 0 66 249 64 133 2021 07 02 24 28 pdf application num_pages pagefailed_1 pagefailed_2 pagefailed_3 pagefailed_4 pagefailed_5 pagefailed_6 pagefailed_7 pagefailed_8 pagefailed_9 pagefailed_10 pagefailed_11 pagefailed_12 pagefailed_13 pagefailed_14 pagefailed_15 pagefailed_16 pagefailed_17 pagefailed_18,200,"Home - Antioch, IL","[""04-10-18 Police And Fire Agenda""]",[],[],[],[],[],Open toolbar Accessibility Tools Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset -372,http://lafayettepolice.us/2144/events,Not Criminal Justice Related,Not Criminal Justice Related,"Events | Lafayette, IN - Official Website","",200,"Police Department | Lafayette, IN - Official Website","[""Events""]",[],"[""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]","[""Boo at the Zoo"", ""Reindeer Rendezvous""]",[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Plan Your Visit About the Zoo Get Involved Education Programs Special Events I Want To... Home Government Departments H - W Parks & Recreation Facilities Columbian Park Zoo Special Events Events Events 9 1 1 1 Boo at the Zoo This ""hauntingly-friendly"" event is perfect for your pre-school and elementary school-aged children! Link to page Reindeer Rendezvous The Columbian Park Zoo has announced a brand-new holiday event coming this season! Link to page Boo at the Zoo Reindeer Rendezvous Aquatics McAllister Center Rentals Zoo Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Plan Your Visit About the Zoo Get Involved Education Programs Special Events I Want To... Home Government Departments H - W Parks & Recreation Facilities Columbian Park Zoo Special Events Events Events 9 1 1 1 Boo at the Zoo This ""hauntingly-friendly"" event is perfect for your pre-school and elementary school-aged children! Link to page Reindeer Rendezvous The Columbian Park Zoo has announced a brand-new holiday event coming this season! Link to page Boo at the Zoo Reindeer Rendezvous Aquatics McAllister Center Rentals Zoo Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In " -373,https://delcopa.gov/vote/pdf/2021/minutes01_15_2021.pdf,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -374,https://delcopa.gov/planning/pubs/osrgp/vol-iii_chapter7uplandcountypark.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -375,https://cityofyuma.colorado.gov/departments/emergency-services/police-department/police-department-staff,Personnel Records,Info About Officers,Police Department Staff | City of Yuma, ,200,Home | City of Yuma,"[""Police Department Staff""]","[""Police Department Staff""]","[""Police Chief Jerry Thompson"", ""Sergeant James Thomson"", ""Sergeant Curtis Witte"", ""Patrol Officer Cameron Josh"", ""Patrol Officer Patrick Laybourn""]",[],[],[],"Skip to main content Visit ""Where can I get vaccinated"" or call 1-877-COVAXCO (1-877-268-2926) for vaccine information. Site Search Search Main Navigation - Top Bar Menu Home City Information » Vision and Mission City Holidays Permits and Information City of Yuma Municipal Codes Comprehensive Plan Historic Preservation Committee Economic Development Job Opportunities Local Event Information Marijuana Products Manufacturing Facility License Information Yuma Junction Departments » Animal Control » Animal Shelter Trap Neuter Return (TNR) Program Building Inspection City Clerk and Treasurer » Financial Information Vital Records City Manager Code Enforcement Emergency Services » Ambulance Fire Department Police Department » Crime Prevention Ordinances and Permits Police Department Fees Police Department Staff Municipal Court Parks & Recreation » Parks » Our Parks Recreation » Emergency Information Swimming Pool Recycling Sanitation Streets » Certification Of Streets Snow Removal Routes Street Sweeping Schedule Utility Services » Electric » Electric Meters Energy Consumption Calculator History of City of Yuma Electrical System What is an Electric Power Pole? Wastewater Water » Consumer Confidence Reports Customer Service - Water Division Source Water Protection Plan Water Conservation Water Distribution Water Production Yuma's Water History Yuma Community and Enrichment Center Yuma Public Library City Council » Agendas Minutes Agenda Item Comment Form Annual Budgets City Annual Audits City of Yuma Org/Pay Chart Online Payments COVID-19 Contact Us Home City Information » Vision and Mission City Holidays Permits and Information City of Yuma Municipal Codes Comprehensive Plan Historic Preservation Committee Economic Development Job Opportunities Local Event Information Marijuana Products Manufacturing Facility License Information Yuma Junction Departments » Animal Control » Animal Shelter Trap Neuter Return (TNR) Program Building Inspection City Clerk and Treasurer » Financial Information Vital Records City Manager Code Enforcement Emergency Services » Ambulance Fire Department Police Department » Crime Prevention Ordinances and Permits Police Department Fees Police Department Staff Municipal Court Parks & Recreation » Parks » Our Parks Recreation » Emergency Information Swimming Pool Recycling Sanitation Streets » Certification Of Streets Snow Removal Routes Street Sweeping Schedule Utility Services » Electric » Electric Meters Energy Consumption Calculator History of City of Yuma Electrical System What is an Electric Power Pole? Wastewater Water » Consumer Confidence Reports Customer Service - Water Division Source Water Protection Plan Water Conservation Water Distribution Water Production Yuma's Water History Yuma Community and Enrichment Center Yuma Public Library City Council » Agendas Minutes Agenda Item Comment Form Annual Budgets City Annual Audits City of Yuma Org/Pay Chart Online Payments COVID-19 Contact Us 0 Home Departments Emergency Services Police Department Police Department Staff Police Department Staff #FFFFFF Police Department Staff #FFFFFF Police Chief Jerry Thompson Sergeant James Thomson Sergeant Curtis Witte Patrol Officer Cameron Josh Patrol Officer Patrick Laybourn placeholder © 2024 State of Colorado Transparency Online Support Colorado Official State Web Portal " -376,https://www.mass.gov/doc/mptc-police-standards-subcommittee-open-meeting-notice-060821/download,Policies & Contracts,Info About Agencies,"","",200,"","","","","","","","" -377,https://delcopa.gov/vote/candidatelist.html,Not Criminal Justice Related,Not Criminal Justice Related,Election Ballot Offices,"",200,"Delaware County, Pennsylvania",[],[],[],[],[],[],"" -378,https://delcopa.gov/purchasing/bidsprops/delcomicrowavekmz.zip,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -379,https://www.mass.gov/doc/woburnpolicelieutenant5802rtf/download,Training & Hiring Info,Info About Officers,"","",200,"","","","","","","","" -380,https://delcopa.gov/employment/jobpostings/communityengagementspecialist.html,Training & Hiring Info,Info About Officers,"Community Engagement Specialist - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Community Engagement Specialist""]",[],"[""Delco Jobs Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]","[""Position Description"", ""Essential Duties"", ""Skills"", ""Qualifications"", ""Contact""]",[],[],"" -381,https://police.crystalmn.gov/g_o_v_e_r_n_m_e_n_t/departments_a-_z/administration,Contact Info & Agency Meta,Info About Agencies,Administration - City of Crystal,Links and information about the City of Crystal Administration Department.,200,Just a moment...,"[""Administration""]","[""City Hall""]","[""Sign up for a city newsletter or notification."", ""City Hall"", ""Regular Hours:""]","[""Monday - Friday""]",[],[],"" -382,https://coloradosprings.gov/police-department/article/news/public-assistance-needed-identify-sexual,Media Bulletins,Agency-Published Resources,Public Assistance Needed to Identify Sexual Assault Suspect | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""Public Assistance Needed to Identify Sexual Assault Suspect""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[],"" -383,https://delcopa.gov/publicrelations/releases/2019/girlsspark.html,Not Criminal Justice Related,Not Criminal Justice Related,"County Council Recognizing the Girls Spark Conference - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""County Council Recognizing the Girls Spark Conference""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play County Council Recognizing the Girls Spark Conference Home / Departments / Public Relations Releases / County Council Recognizing the Girls Spark Conference Delaware County Council recognized Julia Kasper, founder of the Girls Spark Conference during the public council meeting held at the Thornbury Township Building on May 29. At just 16 years old, Julia Kasper created Girls Spark, a one-day empowering conference for high school girls to learn about, collaborate on, take action, and feel safe talking about the unique set of social, physical and emotional challenges they face during their teenage years and brainstorm ways to combat those challenges. The conference was held on April 6 at Delaware County Community College and was attended by over 150 young women. Delaware County Council Vice Chair Colleen Morrone had the privilege of attending and speaking to the bright and energized young women. “It was truly an empowering day for the young women who attended and a place where they could safely share the challenges and adversity they face and support one another,” said Morrone. “I was inspired by their honesty and their support and compassion for one another.” The event was organized by a core leadership group of area high school girls and an adult steering committee of women mentors. The Friends of the Delaware County Women’s Commission and other local groups served as sponsors and featured speakers. Topics included mental health, sexuality, body image, self-confidence, self-defense, sexual harassment and the transition to college or a career after high school. Council commended Julia Kasper and the entire Girls Spark team for hosting the event for young women in the county and presented them with a resolution commending their efforts. Public Relations Navigation Press Releases County Newsletter Use of County Facility Form Questions about COVID-19 vaccines? Please call the COVID-19 Call Center: 484-276-2100. Adrienne Marofsky, Director Government Center, 226A 201 W. Front St. Media, PA 19063 Phone: 610-891-4943 delcopr@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play " -384,https://www.providenceri.gov/providence-police-department-deploy-axon-2-body-worn-cameras/police-body-camera/,Poor Data Source,Poor Data Source,City of Providence Providence Police Body Camera - City of Providence,"",200,Sucuri WebSite Firewall - Access Denied,"[""Providence Police Body Camera""]","[""Share this story"", ""Providence City Hall"", ""Follow Us on Social Media:""]","[""City Of Providence"", ""Mayor Brett Smiley"", ""SIGN UP FOR OUR WEEKLY E-NEWS | Haga clic aquí para español"", ""Lists *""]",[],[],[],"Skip To Menu Skip To Content Skip To Accessibility Options Language Language Arabic Chinese (Traditional) English Khemer Portuguese Spanish City Of Providence Mayor Brett Smiley Search Accessibility City Of Providence Mayor Brett Smiley Search Accessibility City Of Providence Mayor Brett Smiley City Of Providence Mayor Brett Smiley Search Accessibility CITY HALL I Want to… Mayor’s Office Departments City Council Code of Ordinances More Job Opportunities DOING BUSINESS Construction Ethics Purchasing – Open RFPs Running a Business Starting a Business EVENTS NEWS PVD 311 EXPLORE Explore Providence Providence Parks Providence Recreation CITY HALL I Want to… Mayor’s Office Departments City Council Code of Ordinances More Job Opportunities DOING BUSINESS Construction Ethics Purchasing – Open RFPs Running a Business Starting a Business EVENTS NEWS PVD 311 EXPLORE Explore Providence Providence Parks Providence Recreation PVD 311 CITY HALL I Want to … MAYOR BRETT P. SMILEY Departments City Council Find a Meeting Agenda Code of Ordinances More Job Opportunities DOING BUSINESS Construction Ethics Running a Business Starting a Business Purchasing EVENTS NEWS EXPLORE Explore Providence Parks Recreation ACCESSIBILITY Providence Police Body Camera Share this story email icon. Click to share on email twitter icon. Click to share on twitter facebook icon. Click to share on facebook linkedIn Icon. Click to share on LinkedIn Providence Police Body Camera Share this story email icon. Click to share on email twitter icon. Click to share on twitter facebook icon. Click to share on facebook linkedIn Icon. Click to share on LinkedIn Share this story email icon. Click to share on email twitter icon. Click to share on twitter facebook icon. Click to share on facebook linkedIn Icon. Click to share on LinkedIn Share this story email icon. Click to share on email twitter icon. Click to share on twitter facebook icon. Click to share on facebook linkedIn Icon. Click to share on LinkedIn SIGN UP FOR OUR WEEKLY E-NEWS | Haga clic aquí para español Email * Lists * City News Zip * Providence City Hall 401-680-5000 25 Dorrance Street Providence, Rhode Island 02903 Get Directions For press inquires, click here. Follow Us on Social Media: Facebook Icon Twitter Icon Instagram Icon SIGN UP FOR OUR WEEKLY E-NEWS | Haga clic aquí para español Email * Lists * City News Zip * Providence City Hall 401-680-5000 25 Dorrance Street Providence, Rhode Island 02903 Get Directions For press inquires, click here. Follow Us on Social Media: Facebook Icon Twitter Icon Instagram Icon SIGN UP FOR OUR WEEKLY E-NEWS | Haga clic aquí para español Email * Lists * City News Zip * Providence City Hall 401-680-5000 25 Dorrance Street Providence, Rhode Island 02903 Get Directions For press inquires, click here. Follow Us on Social Media: Facebook Icon Twitter Icon Instagram Icon SIGN UP FOR OUR WEEKLY E-NEWS | Haga clic aquí para español Email * Lists * City News Zip * SIGN UP FOR OUR WEEKLY E-NEWS | Haga clic aquí para español Email * Lists * City News Zip * " -385,https://southamptontownnypolice.gov/1/home,Not Criminal Justice Related,Not Criminal Justice Related,"Southampton, NY - Official Website | Official Website","",200,"Police | Southampton, NY - Official Website","[""Latest News"", ""Special Announcements"", ""Popular Links"", ""Upcoming Events""]",[],"[""Site Tools"", ""News Flash"", ""Calendar"", ""March 2024"", ""Calendar"", ""March 2024"", ""Contact Us"", ""Site Links"", ""Loading""]","[""Community Information Sessions - US Army Corps of Engineers"", ""Just Transition Southampton: Survey and Community Meeting #1"", ""Habitat for Humanity to Collect Reusable Household Items: North Sea & Hampton Bays Transfer Stations"", ""Town Conducts Brand Integrity Training with UL Solutions"", ""Town Launches Canoe Place Traffic Reduction Program"", ""Got Drugs? Operation Medicine Cabinet 4-27-2024"", ""April 15 Deadline to Order Banners for the 2024 Hometown Hero Program"", ""Join Councilwoman McNamara for the Great East End Clean-Up, April 27 and April 28"", ""Southampton Town Police Department's Annual Awards & Recognition Ceremony"", ""Councilmember Iasilli Sponsors Legislation to Designate Adopt a Pet Day in the Town of Southampton"", ""2024 Landmarks Maintenance Program Announced"", ""Councilmember Iasilli Establishes Traffic Mitigation and Safety Task Force"", ""Edith Windsor Heart Program"", ""280 David Whites - Special Announcement"", ""Hometown Hero Banner Program"", ""2024 Leaf Cleanup"", ""2024 Great East End Clean-Up"", ""March 26"", ""March 27"", ""March 28"", ""March 29"", ""March 25"", ""March 26"", ""March 28"", ""March 29""]",[],[],Skip to Main Content -386,http://police.portlandmaine.gov/638/nathan-clifford-re-use-advisory-task-for,Media Bulletins,Agency-Published Resources,"Nathan Clifford Re-Use Advisory Task Force | Portland, ME - Official Website","On December 17, 2012, the Portland City Council voted to approve the recommendations of the Nathan Clifford Re-Use Advisory Task Force.",200,"Portland, ME - Official Website | Official Website","[""Nathan Clifford Re-Use Advisory Task Force""]",[],[],[],[],[],"Skip to Main Content Pay & Apply Your Government Services Business Community Home Your Government Boards & Committees Completed Task Forces Nathan Clifford Re-Use Advisory Task Force Nathan Clifford Re-Use Advisory Task Force 2020 Charter Commission Ad Hoc Committee Ad Hoc ReCode Committee Broadband Planning Committee Congress Square Redesign Study Group Continuum of Care Council Appointee Subcommittee Fire / Code Inspections Task Force Franklin Street Committee Phase 2 Committee Members, City Staff & Consultants Vision Statement Green Building Incentive Task Force Green Packaging Working Group Hall School Building Committee Healthy Sustainable Food Systems Initiative Homelessness Prevention Task Force Libbytown Traffic Circulation & Streetscape Study Project Understanding Martin Luther King Recognition Task Force MLK Memorial Selection Committee Nathan Clifford Re-Use Advisory Task Force Past Housing Committee Pesticide & Fertilizer Task Force Portland Charter Commission Background Materials Portland Disability Advisory Committee Celebrating 30 Years of the ADA Get to know the PDAC Members Portland Open Space Vision & Implementation Plan Portland Youth Council Racial Equity Steering Committee School Facilities Ad Hoc Committee Solid Waste Task Force Spring Street - Free Street Area Streetscape Plan Members, City Staff & Consultants State & High Street Study Sustainable Storm Water Funding Task Force Task Forces CDBG Priority Task Force CDBG Working Group Waterfront Working Group Transforming Forest Avenue Government Websites by CivicPlus® Pay & Apply Your Government Services Business Community Home Your Government Boards & Committees Completed Task Forces Nathan Clifford Re-Use Advisory Task Force Nathan Clifford Re-Use Advisory Task Force 2020 Charter Commission Ad Hoc Committee Ad Hoc ReCode Committee Broadband Planning Committee Congress Square Redesign Study Group Continuum of Care Council Appointee Subcommittee Fire / Code Inspections Task Force Franklin Street Committee Phase 2 Committee Members, City Staff & Consultants Vision Statement Green Building Incentive Task Force Green Packaging Working Group Hall School Building Committee Healthy Sustainable Food Systems Initiative Homelessness Prevention Task Force Libbytown Traffic Circulation & Streetscape Study Project Understanding Martin Luther King Recognition Task Force MLK Memorial Selection Committee Nathan Clifford Re-Use Advisory Task Force Past Housing Committee Pesticide & Fertilizer Task Force Portland Charter Commission Background Materials Portland Disability Advisory Committee Celebrating 30 Years of the ADA Get to know the PDAC Members Portland Open Space Vision & Implementation Plan Portland Youth Council Racial Equity Steering Committee School Facilities Ad Hoc Committee Solid Waste Task Force Spring Street - Free Street Area Streetscape Plan Members, City Staff & Consultants State & High Street Study Sustainable Storm Water Funding Task Force Task Forces CDBG Priority Task Force CDBG Working Group Waterfront Working Group Transforming Forest Avenue Government Websites by CivicPlus® " -387,http://www.longbeach.gov/police/press-releases/traffic-fatality---palo-verde-ave-and-los-coyotes-diagonal/,Media Bulletins,Agency-Published Resources,TRAFFIC FATALITY - PALO VERDE AVE AND LOS COYOTES DIAGONAL,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 1/30/2019 FOR IMMEDIATE RELEASE Press Release # Subject: TRAFFIC FATALITY - PALO VERDE AVE AND LOS COYOTES DIAGONAL Contact: Media Relations Detail (562) 570-5273 lbpdmediarelations@longbeach.gov On Wednesday, January 30, 2019, at approximately 11:00 a.m., officers responded to the area of Palo Verde Avenue and Los Coyotes Diagonal regarding a traffic collision involving a motor vehicle and a bicyclist, which resulted in the death of the bicyclist. Upon arrival, officers located the collision in the southbound lanes of Los Coyotes Diagonal south of Palo Verde Avenue, and the bicyclist, a 62-year-old male resident of Long Beach, laying in the roadway. The Long Beach Fire Department transported the bicyclist to a local hospital with life threatening injuries, where he was pronounced deceased. The preliminary investigation revealed the bicyclist was traveling in the northbound bike lane of Los Coyotes Diagonal approaching Palo Verde Avenue on a green light, when just before entering the intersection and south of the crosswalk, the bicyclist made an unsafe lane change across all lanes of traffic in a northwesterly direction and collided with a 2015 Toyota Corolla that was travelling southbound on Los Coyotes Diagonal in the #2 lane. The driver of the Toyota Corolla, a 88-year-old male resident of Long Beach, remained at the scene and cooperated with the investigation. At this time no criminal charges are pending. The identity of the bicyclist is being withheld pending notification of next of kin. Anyone who may have witnessed this incident is asked call Detective David Lauro of the Long Beach Police Department’s Collision Investigation Detail at 562-570-7355. Anonymous tips may be submitted through “LA Crime Stoppers” by calling 1-800-222-TIPS (8477), downloading the “P3 Tips” app to your smart phone (available at the Apple App store and Google Play), or visiting www.lacrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -388,https://www.southamptontownnypolice.gov/442/community-preservation-advisory-board,Media Bulletins,Agency-Published Resources,"Community Preservation Advisory Board | Southampton, NY - Official Website",View the members of the Community Preservation Advisory Board.,200,"Police | Southampton, NY - Official Website","[""Community Preservation Advisory Board""]","[""Meetings"", ""Members""]","[""Site Tools"", ""Contact Us"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Government Town Services Community Info How Do I Translate Page Site Tools Home My Account Printer Friendly Email Page Contact Us RSS Site Map Translate Page Notifications Documents Search Home Government Boards & Committees Advisory Boards & Committees Community Preservation Advisory Board Community Preservation Advisory Board Meetings 8:00 a.m. Third Wednesday of each month Hampton Bays Senior Center 25 Ponqougue Ave, Hampton Bays, NY Members Robert Anrig Bruce Doscher Adam Halsey William Sickles Elena Williams Scott Wilson John v.H. Halsey, Peconic Land Trust, or designee - ex officio Kevin McDonald, The Nature Conservancy, or designee - ex officio Hank Kraszewski, or designee - ex-officio William B. White, or designee - ex-officio Each member serves a one-year term. Addiction and Recovery/Behavioral Health Committee Affirmative Action Task Force Airport Noise Advisory Committee Anti-Bias Task Force Agricultural Advisory Committee Audit Advisory Committee Budget & Finance Advisory Committee Citizen Advisory Committees East Quogue CAC Agendas & Minutes Hampton Bays CAC Agendas & Minutes North Sea CAC Agendas & Minutes Noyac CAC Agendas & Minutes Southampton / Shinnecock Hills / Tuckahoe CAC CAC Minutes Water Mill CAC Agendas & Minutes Westhampton, Speonk-Remsenburg, Eastport, Quiogue Agendas & Minutes Community Housing Fund Advisory Board Community Preservation Advisory Board Dark Skies Committee Deer Protection and Management Advisory Committee Disability Advisory Committee Emergency Medical Services Advisory Committee Facilities / Infrastructure Committee Fire Advisory Committee Historic Burying Ground Committee Labor-Management Committee Planning Policy Advisory Committee Police Department/Labor Relations Advisory Road Review Committee Safety & Risk Management Committee SEA-TV Channel Committee Solid Waste Advisory Committee Southampton Arts and Culture Committee (SHACC) Sustainable Southampton Green Advisory Committee Trades Advisory Committee Traffic Mitigation and Safety Task Force Trails Advisory Board Veterans Affairs Water Mill Park District Budget Steering Advisory Wind Energy Conversion Systems Advisory Committee Water Quality Advisory Committee Workplace Violence Prevention Committee Town Clerk Meetings, Agendas & Minutes Pay Your Taxes Online Services Applications, Forms & Fees Notify Me® FOIL Requests Contact Us Town of Southampton 116 Hampton Road Southampton, NY 11968 Phone: 631-283-6000 Banner photo credit: robertseifertphotography.com Site Links Contact Us Site Map Accessibility Copyright Notices Intranet Job Opportunities Title VI Non-discrimination Policy /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate " -389,https://spdblotter.seattle.gov/2015/03/24/police-arrest-suspect-in-violent-robbery-at-rainier-beach-doughnut-shop/,Media Bulletins,Agency-Published Resources,Police Arrest Suspect In Violent Robbery At Rainier Beach Doughnut Shop - SPD Blotter,"",200,403 Forbidden,"[""Police Arrest Suspect In Violent Robbery At Rainier Beach Doughnut Shop""]","[""Find Posts By Topic"", ""Featured Posts"", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],"Seattle.gov Choose a language: English English Google Translate may not accurately translate all content. Read disclaimer . For general City questions, please call 206-684-2489 . Tell us your requested language in English, and we can connect you with an interpreter. Continue Cancel Español Es posible que Google Translate no traduzca con precisión todo el contenido. Lea el descargo de responsabilidad . Si necesita ayuda en otro idioma, díganos en inglés nombre del idioma que necesita y lo conectaremos con un intérprete: 206-684-2489 Seguir Cancelar 中國語文 Google翻譯可能無法準確翻譯所有內容。 閱讀免責聲明 。 如果您需要翻譯,請用英語説出您所需要的語言,我們將爲你連接口譯員: 206-684-2489 繼續 取消 简体中文 Google翻译可能无法准确翻译所有内容。 阅读免责声明 。 如果您需要翻译,请用英语说出您所需要的语言,我们将为你连接口译员: 206-684-2489 继续 取消 Tiếng Việt Google Dịch có thể không dịch chính xác tất cả nội dung. Đọc tuyên bố từ chối trách nhiệm . Nếu quý vị cần hỗ trợ về ngôn ngữ, xin vui lòng cho chúng tôi biết ngôn ngữ quý vị cần hỗ trợ bằng tiếng Anh (ví dụ “Vietnamese”), chúng tôi sẽ kết nối quý vị với một thông dịch viên: 206-684-2489 Tiếp tục Huỷ bỏ русский язык Google Translate не может точно перевести весь контент. Прочтите отказ от ответственности . Если вам нужна языковая помощь, сообщите нам на английском, какой язык вам нужен, и мы свяжем вас с переводчиком: 206-684-2489 Продолжать Отмена Af-Soomaali Google Translate ayaan si sax ah u turjumi karin dhammaan waxyaabaha ku jira. Akhri afeef . Haddii aad u baahan tahay caawimaad luqadeed, fadlan noogu sheeg Ingiriisiga luqadda aad u baahan tahay, ka dib waxaan kugu xiri doonnaa turjubaan: 206-684-2489 Sii wad Jooji አማርኛ የጉግል ትርጉም ሁሉንም ይዘቶች በትክክል መተርጎም ላይችል ይችላል። ማስተባበያ አንብብ ፡፡ ኣስተርጓሚ ካስፈለግዎ የሚፈልጉትን ቋንቋ በእንግልዝኛ ይንገሩን፣ ከኣስተርጓሚ እናገናኝዎታለን። 206-684-2489 ቀጥል ሰርዝ 한국어 구글은 정확하게 모든 내용을 번역하지 않을 수 있습니다 번역. 읽기 면책 조항 . 언어지원이 필요한 경우, 필요한 언어를 영어로 말씀해 주시면 통역사와 연결해 드리겠습니다: 206-684-2489 계속하다 취소 Tagalog Maaaring hindi tumpak na isalin ng Google Translate ang lahat ng nilalaman. Basahin ang disclaimer . Para sa mga pangkalahatang katanungan sa Lungsod, mangyaring tawagan ang 206-684-2489 . Sabihin sa amin ang hiniling mong wika sa Ingles, at maikokonekta ka namin sa isang interpreter. Magpatuloy Kanselahin ภาษาไทย Google Translate อาจแปลเนื้อหาทั้งหมดไม่ถูกต้อง อ่านข้อจำกัดความรับผิดชอบ สำหรับคำถามทั่วไปเกี่ยวกับเมืองโปรดโทร 206-684-2489 บอกภาษาที่คุณต้องการเป็นภาษาอังกฤษและเราสามารถติดต่อคุณกับล่ามได้ ดำเนินการต่อ ยกเลิก 日本語 Google翻訳は、すべてのコンテンツを正確に翻訳するとは限りません. 免責事項をお読みください 。 市の一般的な質問については 206-684-2489 に電話してください。ご希望の言語を英語で教えていただければ、通訳をご案内いたします。 継続する キャンセル ភាសាខ្មែរ កម្មវិធីបកប្រែហ្គូហ្គោលមិនអាចបកប្រែមាតិកាទាំងអស់បានត្រឹមត្រូវទេ។ អានការបដិសេធ។ សម្រាប់សំណួរទូទៅរបស់ទីក្រុងសូមទូរស័ព្ទមក 206-684-2489 ។ ប្រាប់យើងពីភាសាដែលអ្នកស្នើសុំជាភាសាអង់គ្លេសហើយយើងអាចភ្ជាប់អ្នកជាមួយអ្នកបកប្រែភាសា។ បន្ត បោះបង់ ພາສາລາວ Google Translate ອາດຈະບໍ່ແປເນື້ອຫາທັງ ໝົດ ຢ່າງຖືກຕ້ອງ. ອ່ານປະຕິເສດ . ສຳ ລັບ ຄຳ ຖາມທົ່ວໄປຂອງເມືອງ, ກະລຸນາໂທຫາ 206-684-2489 . ບອກພວກເຮົາເປັນພາສາອັງກິດທີ່ທ່ານຮ້ອງຂໍ, ແລະພວກເຮົາສາມາດເຊື່ອມຕໍ່ທ່ານກັບນາຍແປພາສາ. ສືບຕໍ່ ຍົກເລີກ Українська Перекладач Google може не точно перекласти весь вміст. Прочитайте застереження . За загальними запитаннями про місто, будь ласка, телефонуйте 206-684-2489 . Розкажіть нам про вашу мову англійською мовою, і ми можемо зв’язати вас із перекладачем. Продовжуйте Скасувати Français Google Traduction peut ne pas traduire correctement tout le contenu. Lisez la clause de non-responsabilité . Pour des questions générales sur la ville, veuillez appeler le 206-684-2489 . Dites-nous votre langue souhaitée en anglais, et nous pourrons vous mettre en contact avec un interprète. Continuer Annuler " -390,https://delcopa.gov/treasurer/forms/2023appealformscommercial.pdf,Poor Data Source,Poor Data Source,"404 - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert " -391,https://www.lynchburgvapolice.gov/wp-content/uploads/2021/03/dsc0161-scaled.jpg,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -392,http://www.longbeach.gov/police/press-releases/traffic-fatality-pacific-coast-highway-and-lime-avenue/,Media Bulletins,Agency-Published Resources,Traffic Fatality: Pacific Coast Highway and Lime Avenue,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 11/3/2017 FOR IMMEDIATE RELEASE Press Release # Subject: TRAFFIC FATALITY - PACIFIC COAST HIGHWAY & LIME AVENUE Contact: Media Relations Detail (562) 570-5273 On Thursday, November 2, 2017, at approx. 6:40 p.m., officers were dispatched to the intersection of Pacific Coast Highway and Lime Avenue regarding a vehicle versus pedestrian injury traffic collision. Upon arrival officers determined that two vehicles had collided with a female pedestrian who had sustained major body trauma. Long Beach Fire Deparment responded and transported the victim to a local area hospital where she was later pronounced deceased. The preliminary investigation revealed that the unidentified female pedestrian, approx. 40-50 years old, was traveling on a skateboard southbound across Pacific Coast Highway (P.C.H.) at Lime Avenue. The pedestrian was outside of the unmarked crosswalk when a 1991 Nissan Pathfinder, driven by a 55-year-old male resident of Long Beach, collided with the pedestrian in the #2 eastbound lane of P.C.H., east of Lime Avenue. The force of the impact caused the pedestrian to land in the #1 eastbound lane of P.C.H. where she was run over by a 2005 Toyota Sienna, driven by a 62-year-old female resident of Long Beach. Both vehicles remained at the scene and the drivers cooperated in the investigation. They were later released from the scene, pending further investigation. Anyone who may have witnessed this incident is asked to call Detective Sirilo Garcia of the Long Beach Police Department's Collision Investigation Detail at (562) 570-7355. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -393,https://alpha.austin.gov/police-oversight/2020-11-12/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -394,http://www.longbeach.gov/police/press-releases/arrests-made-in-two-robberies--charges-filed/,Media Bulletins,Agency-Published Resources,ARRESTS MADE IN TWO ROBBERIES; CHARGES FILED,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -395,http://www.lafayettepolice.us/list.aspx,Resources,Agency-Published Resources,"Notify Me • Lafayette, IN • CivicEngage","",200,"Police Department | Lafayette, IN - Official Website","[""Notify Me®""]","[""Please sign in to subscribe, unsubscribe, or manage your subscriptions"", ""Your Profile Information"", ""▼ Notify Me"", ""▼ Agenda Center"", ""▼ Alert Center"", ""▼ Bid Postings"", ""▼ Calendar"", ""▼ Government Jobs"", ""▼ News Flash""]","[""Live Edit"", ""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -396,https://www.coppelltx.gov/faq.aspx?qid=432,Resources,Agency-Published Resources,"","",404,"","","","","","","","" -397,https://www.hayward-ca.gov/discover/news/may21/hayward-police-department-maintains-national-law-enforcement-accreditation-calea,Media Bulletins,Agency-Published Resources,Hayward Police Department Maintains National Law Enforcement Accreditation by CALEA | City of Hayward - Official website,"Hayward Police Department Maintains National Law Enforcement Accreditation by CALEAÒGainesville, VA – The Hayward Police Department was awarded national accreditation on March 27, 2021 by the Commission on Accreditation for Law Enforcement Agencies, Inc. (CALEAÒ) in the Advanced Law Enforcement Accredtation program.",200,City of Hayward - Official website,"[""Hayward Police Department Maintains National Law Enforcement Accreditation by CALEA""]","[""Look Deeper"", ""Welcome home"", ""Where opportunity lives"", ""Find what you need. Fast."", ""Working for You"", ""Your Hayward Environment"", ""You are here. So is everything else."", ""Search form"", ""Look Deeper"", ""Welcome home"", ""Where opportunity lives"", ""Find what you need. Fast."", ""Working for You"", ""Your Hayward Environment""]",[],"[""Do you need help paying energy bills? You may qualify for federal aid."", ""Hayward Receives Grant for Safe Routes to Schools Infrastructure and Bicycle Incentives"", ""Hayward Celebrates Earth Day at Weekes Park!"", ""Spring 2024 Compost Giveaway"", ""Sustainable Solutions for Celebrating Easter"", ""City Hall and Nonessential Services Closure: Monday, Apr. 01, 2024"", ""Presidential Primary Election: Tuesday, Mar. 5, 2024"", ""Library Closure: February 12 and February 19, 2024."", ""City Hall and Nonessential Services Closures: Monday, Feb. 19"", ""City Hall and Nonessential Services Closure: Monday, Jan. 15, 2024"", ""YOU ARE HERE. SO IS EVERYTHING ELSE."", ""Related News"", ""Press Release - Homicide Investigation"", ""Celebrate this St. Patrick’s Day Responsibly: Designate a Sober Driver, Your Lucky Charm"", ""Hayward Police Department Holding DUI Checkpoint March 28, 2024"", ""Report Problems"", ""Ask Questions"", ""Make a Suggestion"", ""Translate"", ""Search""]",[],[],Skip to main content -398,https://delcopa.gov/council/2019minutes/111319minutes.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -399,https://www.lynchburgvapolice.gov/wp-content/uploads/2022/02/cotw-1-e1644350006495.jpg,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -400,https://www.stcharlesil.gov/news/2021/04/01/welcome-new-police-officers,Media Bulletins,Agency-Published Resources,City News and Events | City of St. Charles IL,"Overview of the latest news and events for the City of St. Charles, IL",200,"City of St. Charles, Illinois","[""City of St. Charles, Illinois"", ""News & Events""]","[""You are here"", ""News Menu ☰"", ""First Fox River Dam Joint Task Force Meeting Announced"", ""Spring Hydrant Flushing Begins April 1"", ""City of St. Charles Offers Free Yard Waste Pick Up"", ""St. Charles Visitors Cultural Commission Soliciting Requests for Funding"", ""The March City News is Out!"", ""St. Charles Police Offer Free Narcan and Sharps Collection"", ""New Utility Billing System Launched"", ""S. Riverside Ave. Lane Closure"", ""2023 City Highlights"", ""St. Charles Police Announce New C.A.R.E.S. Program for Residents at Risk"", ""Coming up"", ""Equity & Inclusion Commission Meeting"", ""Fox River Dam Joint Task Force"", ""Zoning Board of Appeals"", ""Youth Commission Meeting"", ""City Council Meeting"", ""Government Operations Committee Meeting"", ""Government Services Committee Meeting"", ""Plan Commission Meeting"", ""Historic Preservation Commission Meeting"", ""Foreign FIre Insurance Tax Board Regular Meeting"", ""View more events"", ""Key Resources"", ""Connect With Us""]",[],[],[],[],"" -401,https://alpha.austin.gov/en/police-oversight/written-reprimand-of-officer-david-lara/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -402,http://www.longbeach.gov/police/press-releases/suspect-arrested-for-murder-of-high-school-student/,Media Bulletins,Agency-Published Resources,SUSPECT ARRESTED FOR MURDER OF HIGH SCHOOL STUDENT,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 3/12/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: SUSPECT ARRESTED FOR MURDER OF HIGH SCHOOL STUDENT Contact: Media Relations Detail (562) 570-7244 VICTIM KESHAWN BROOKS On Thursday, March 12, 2015, at approximately 3:25 p.m., Long Beach Police received a 9-1-1 call from a community member regarding an assault with a deadly weapon call in the 2800 block of Santa Fe Avenue, which resulted in the death of a 15-year-old young man. The victim, identified as 15-year-old Keyshawn Brooks of Long Beach, was walking home from Cabrillo High School when he was confronted by a male suspect who attempted to grab his backpack. During the confrontation, the suspect stabbed Keyshawn and ran from the location. Officers arrived on scene within two minutes of being dispatched and located Keyshawn who had sustained serious injuries. Community members had begun administering first aid to Keyshawn until medical assistance arrived. He was transported to a local hospital by Long Beach Fire Department paramedics, and pronounced deceased shortly thereafter. Officers at the scene quickly developed leads on the suspect's whereabouts, which led them to a residence in the 1700 block of W. Columbia Avenue, where he was apprehended. The suspect has been identified as 18-year-old Giovanny Montelongo of Long Beach. He is currently being interviewed by detectives and will be booked at the conclusion. A motive for this incident is unknown and still under investigation. This incident occurred across the street from Stephens Middle School at the time school was letting out and numerous parents were in the area picking-up their kids. Therefore, detectives believe many parents witnessed some or all of the incident, and would like them to come forward. Although this incident did not occur on a school campus, the Police Department is working closely with the Long Beach Unified School District. The district will be providing grief counseling support to any students in need. Anyone with information should contact Long Beach Police Homicide Detectives Malcolm Evans and Mark Bigel Guarino at (562) 570-7244. Anonymous tips may be submitted by calling 1-800-222-tips (8477), texting TIPLA plus your tip to crimes or (274637), or by visiting www.lacrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -403,https://alpha.austin.gov/es/police-oversight/formal-complaint-purpose-and-scope-and-other-policy-violations-9/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -404,https://www.hermonmaine.gov/departments/police-department/gallery/,Poor Data Source,Poor Data Source,Gallery | Hermon, Prescription Drug Take Back Hermon Harvest & Homecoming. Prescription Drug Take Back at the Hermon Harvest & Homecoming. Marijuana Plant Seiz ...,200,Welcome to Hermon! | Hermon,"[""Gallery""]","[""Penobscot County Sheriff's Department""]",[],[],[],[],"The Town Office will be CLOSED on Wednesday, March 27, 2024 from 11:15 to 1:45 Business Calendar FAQS Online Services RFP’S & Forms Job Openings I want to … Register my Vehicle Register My Dog Register My Boat Find Out About My Curbside Pickup and Waste Disposal Get a Burn Permit Bid on Hermon Projects CodeRED Community Notification Enrollment Page Purchase Veteran’s Memorial Brick Track Committee Search for: Office : 207-848-1010 Fax : 207-848-3316 Hours : Monday–Friday, 8am–4pm 333 Billings Road, Hermon, ME 04401 Menu Town Council & Commitees Planning Board Staff Directory Town Committees Town Council Meetings Departments Assessing Code Enforcement Economic & Community Development Finance Office Fire Department Parks & Recreation Department Penobscot County Sheriff’s Department Public Works Taxes & Tax Collector Town Clerk Government Annual Town Audits Annual Town Reports Bids & Proposals Budget Information Charter, Code of Ordinances, Comp Plan & Bylaws Election & Town Meeting Town Manager Life Calendar Hermon Street Map Resources Schools The Hermon Connection Visiting Upcoming Events & News Public Notice Contact Us Hermon’s Legislature Contacts Map & Directions Staff Directory Gallery Prescription Drug Take Back Hermon Harvest & Homecoming. Prescription Drug Take Back at the Hermon Harvest & Homecoming. Marijuana Plant Seizure Hermon Town Council proclaimed September 11, 2016 in honor of Law Enforcement, Fire Fighters and Emergency Medical Personnel. Blue Iris Scan of children at the Kid’s Carnival. PCSO Honor Guard Women’s Self Defense Class Hermon Hawks “Kickoff With A Cop” Sheriff Troy Morton and Deputies are all organized with former NFL star Mike Devito of the Kansas City Chiefs for Kickoff with a Cop. Mike Devito autographing a football for an up and coming Hermon Hawk. PCSO saluting the American Flag during the National Anthem. Penobscot County Sheriff's Department About Us Animal Control Contact Us Deputies Frauds and Scams Gallery Police Alert Roadway Parking Send An Anonymous Tip to the Hermon PD © 2024 Hermon | Privacy Policy | Designed by Sutherland • Weston The Town Office will be CLOSED on Wednesday, March 27, 2024 from 11:15 to 1:45 The Town Office will be CLOSED on Wednesday, March 27, 2024 from 11:15 to 1:45 Business Calendar FAQS Online Services RFP’S & Forms Job Openings I want to … Register my Vehicle Register My Dog Register My Boat Find Out About My Curbside Pickup and Waste Disposal Get a Burn Permit Bid on Hermon Projects CodeRED Community Notification Enrollment Page Purchase Veteran’s Memorial Brick Track Committee Search for: Business Calendar FAQS Online Services RFP’S & Forms Job Openings I want to … Register my Vehicle Register My Dog Register My Boat Find Out About My Curbside Pickup and Waste Disposal Get a Burn Permit Bid on Hermon Projects CodeRED Community Notification Enrollment Page Purchase Veteran’s Memorial Brick Track Committee Search for: " -405,https://delcopa.gov/departments/recorderofdeeds.html,Contact Info & Agency Meta,Info About Agencies,"Recorder of Deeds - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Recorder of Deeds""]",[],"[""DOCUMENT TYPES"", ""Forms"", ""Frequently Asked Questions"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]","[""ATTENTION: CLOUD SEARCH is now live."", ""Update as of January 2024."", ""E-RECORDING IN DELAWARE COUNTY :""]",[],[],"" -406,https://alpha.austin.gov/es/police-oversight/formal-complaint-impartial-attitude-and-courtesy-and-other-policy-violations-8/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -407,https://www.tukwilawa.gov/event/virtual-town-hall-with-chief-of-police/,Poor Data Source,Poor Data Source,Virtual Town Hall with Chief of Police - City of Tukwila,"",200,Home - City of Tukwila,"[""Virtual Town Hall with Chief of Police""]","[""June 15, 2021 @ 6:00 pm - 8:00 pm"", ""Details"", ""Related Events""]","[""Finance & Governance Committee"", ""Transportation & Infrastructure Services Committee"", ""City Council Committee of the Whole Meeting""]","[""City of Tukwila""]","[""I am a..."", ""Online Services"", ""Most Requested Forms""]",[],"" -408,https://www.coppelltx.gov/faq.aspx?qid=119,Resources,Agency-Published Resources,FAQs • Where can I find maps?,"",200,"Coppell, TX | Official Website",[],"[""▼ Planning""]","[""Categories"", ""Live Edit"", ""Loading""]",[],[],[],Skip to Main Content -409,http://www.longbeach.gov/police/,Contact Info & Agency Meta,Info About Agencies,Police,Long Beach Police Department,200,City of Long Beach,"[""Police Department""]",[],"[""Mayor"", ""City Council"", ""Rex Richardson"", ""Mary Zendejas"", ""Cindy Allen"", ""Kristina Duggan"", ""Daryl Supernaw"", ""Megan Kerr"", ""Suely Saro"", ""Roberto Uranga"", ""Al Austin"", ""Dr. Joni Ricks-Oddie"", ""Dawn McIntosh"", ""Laura L. Doud"", ""Doug Haubert"", ""Tom Modica"", ""Monique DeLaGarza"", ""City-Wide Elected Officials"", ""Appointed Officials"", ""Online Payments"", ""Online Services"", ""In-Person Services"", ""Opening a Business"", ""Doing Business With The City"", ""Resources"", ""Most Popular"", ""Online Resources"", ""Attractions"", ""Business Associations"", ""Travel Resources"", ""Departments"", ""Job Opportunities"", ""Information"", ""LBPD"", ""Employment"", ""Bureaus"", ""News & Events"", ""Crime Info"", ""How Do I"", ""How Do I"", ""Contact Us"", ""Police Department"", ""We're Hiring! Join LBPD Today!"", ""Latest News"", ""Phone Numbers"", ""Do."", ""Discover."", ""Connect."", ""Ask.""]","["""", ""1st District"", ""2nd District"", ""3rd District"", ""4th District"", ""5th District"", ""6th District"", ""7th District"", ""8th District"", ""9th District"", ""City Attorney"", ""City Auditor"", ""City Prosecutor"", ""City Manager"", ""City Clerk""]","[""File a Report Online"", ""Submit a Tip"", ""Submit a Commendation"", ""File a Complaint"", ""Ride Along Program"", """", """", """", """", ""Crime Lab Survey"", """"]",[],"" -410,https://www.warracres-ok.gov/police-department-history/warr-acres-pd-first-patch/,Poor Data Source,Poor Data Source,Warr Acres PD First Patch - City of Warr Acres,"",200,Home - City of Warr Acres,"[""Warr Acres PD First Patch""]","[""Primary menu links"", ""Action toolbar"", ""Contact""]",[],[],"[""Can I park a motor home or trailer in the grass?""]",[],"City of Warr Acres Primary menu links Home Businesses Commercial Property Available Economic Development Residents Helpful Numbers Online Forms News City Newsletter City Maps City Parks Contact your city History of Warr Acres Recycling Report an Issue Sanitation & Sewer Newsletter Contact Employees Employee Email Job Listings Staff Only AFLAC BlueCross BlueShield Deferred Comp Action toolbar Answers Payments Report Issue Search Primary menu links Home Businesses Commercial Property Available Economic Development Residents Helpful Numbers Online Forms News City Newsletter City Maps City Parks Contact your city History of Warr Acres Recycling Report an Issue Sanitation & Sewer Newsletter Contact Employees Employee Email Job Listings Staff Only AFLAC BlueCross BlueShield Deferred Comp Action toolbar Answers Payments Report Issue Search City of Warr Acres City of Warr Acres City of Warr Acres Warr Acres PD First Patch Warr Acres PD First Patch Warr Acres PD First Patch Share Facebook Twitter Email Size + Reset a − Translate Translate language select Select language Afrikaans Albanian Amharic Arabic Armenian Azerbaijani Basque Belarusian Bengali Bosnian Bulgarian Catalan Cebuano Chichewa Chinese (Simplified) Chinese (Traditional) Corsican Croatian Czech Danish Dutch English Esperanto Estonian Filipino Finnish French Frisian Galician Georgian German Greek Gujarati Haitian Creole Hausa Hawaiian Hebrew Hindi Hmong Hungarian Icelandic Igbo Indonesian Irish Italian Japanese Javanese Kannada Kazakh Khmer Korean Kurdish (Kurmanji) Kyrgyz Lao Latin Latvian Lithuanian Luxembourgish Macedonian Malagasy Malay Malayalam Maltese Maori Marathi Mongolian Myanmar (Burmese) Nepali Norwegian Pashto Persian Polish Portuguese Punjabi Romanian Russian Samoan Scottish Gaelic Serbian Sesotho Shona Sindhi Sinhala Slovak Slovenian Somali Spanish Sundanese Swahili Swedish Tajik Tamil Telugu Thai Turkish Ukrainian Urdu Uzbek Vietnamese Welsh Xhosa Yiddish Yoruba Zulu Select language Afrikaans Albanian Amharic Arabic Armenian Azerbaijani Basque Belarusian Bengali Bosnian Bulgarian Catalan Cebuano Chichewa Chinese (Simplified) Chinese (Traditional) Corsican Croatian Czech Danish Dutch English Esperanto Estonian Filipino Finnish French Frisian Galician Georgian German Greek Gujarati Haitian Creole Hausa Hawaiian Hebrew Hindi Hmong Hungarian Icelandic Igbo Indonesian Irish Italian Japanese Javanese Kannada Kazakh Khmer Korean Kurdish (Kurmanji) Kyrgyz Lao Latin Latvian Lithuanian Luxembourgish Macedonian Malagasy Malay Malayalam Maltese Maori Marathi Mongolian Myanmar (Burmese) Nepali Norwegian Pashto Persian Polish Portuguese Punjabi Romanian Russian Samoan Scottish Gaelic Serbian Sesotho Shona Sindhi Sinhala Slovak Slovenian Somali Spanish Sundanese Swahili Swedish Tajik Tamil Telugu Thai Turkish Ukrainian Urdu Uzbek Vietnamese Welsh Xhosa Yiddish Yoruba Zulu City of Warr Acres Contact City of Warr Acres Phone: 405-789-2892 4301 N Ann Arbor Ave. Warr Acres, Oklahoma 73122 Contact Links Directory Feedback Access Links Accessibility Sitemap Can I park a motor home or trailer in the grass? Parking on the grass is prohibited in Warr Acres. In addition municipal ordinance limits what types of vehicles can be parked in the residential areas. Vehicles with three or more axles and commercial vehicles are prohibited in residential areas. For detailed ordinance visit the municipal code . See the entire answer " -411,https://police.greenvillesc.gov/faq.aspx?qid=382,Not Criminal Justice Related,Not Criminal Justice Related,FAQs • Are figure skates available?,"",200,"Police Department | Greenville, SC - Official Website",[],"[""▼ Ice on Main""]","[""Categories"", ""Live Edit"", ""Loading""]",[],[],[],Skip to Main Content -412,https://www.southamptontownnypolice.gov/faq.aspx?qid=421,Not Criminal Justice Related,Not Criminal Justice Related,FAQs • What happens if there is bad weather?,"",200,"Police | Southampton, NY - Official Website",[],"[""▼ SFCC - South Fork Commuter Connection""]","[""Site Tools"", ""Categories"", ""Live Edit"", ""Contact Us"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -413,https://ose.louisiana.gov/event/police-sergeant-18/,Poor Data Source,Poor Data Source,Police Sergeant | Louisiana Office of State Examiner,"",200,403 Forbidden,"["""", ""Police Sergeant""]",[],"[""Promotional Level""]",[],[],"[""Recent Posts"", ""Archives"", ""Categories"", ""Meta""]","Search Search Search Search Personnel Action Form About Testing & Employment Eligibility Lists Jurisdictions Resources Contact ADA Testing Accommodations Statewide Testing This event has passed. Police Sergeant Promotional Level Application Deadline TBD Jurisdiction Baker Application Search Recent Posts Holiday Closures Archives June 2023 Categories Uncategorized Meta Log in Entries feed Comments feed WordPress.org Sign Up for Updates Δ 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Privacy Policy Facebook Copyright © 2024 Office of State Examiner Site by Gatorworks. Search Personnel Action Form About Testing & Employment Eligibility Lists Jurisdictions Resources Contact ADA Testing Accommodations Statewide Testing Search Personnel Action Form Search Search Search Personnel Action Form This event has passed. Police Sergeant Promotional Level Application Deadline TBD Jurisdiction Baker Application Search Recent Posts Holiday Closures Archives June 2023 Categories Uncategorized Meta Log in Entries feed Comments feed WordPress.org This event has passed. Police Sergeant Promotional Level Application Deadline TBD Jurisdiction Baker Application Search Recent Posts Holiday Closures Archives June 2023 Categories Uncategorized Meta Log in Entries feed Comments feed WordPress.org This event has passed. Police Sergeant Promotional Level Application Deadline TBD Jurisdiction Baker Application This event has passed. Police Sergeant Promotional Level Application Deadline TBD Jurisdiction Baker Application This event has passed. Police Sergeant Promotional Level Application Deadline TBD Jurisdiction Baker Application This event has passed. Police Sergeant Promotional Level Promotional Level Promotional Level Application Deadline TBD Jurisdiction Baker Application Deadline TBD Jurisdiction Baker Application Deadline TBD Jurisdiction Baker Application Deadline TBD Application Deadline Jurisdiction Baker Jurisdiction Application Search Search Sign Up for Updates Δ Sign Up for Updates Δ Sign Up for Updates 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Privacy Policy Facebook 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Privacy Policy 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Phone: (225) 925-4400 Privacy Policy Facebook Facebook Facebook Copyright © 2024 Office of State Examiner Site by Gatorworks. Copyright © 2024 Office of State Examiner Site by Gatorworks. " -414,https://www.providenceri.gov/officer-louis-salinaro-k-9-gero-locate-apprehend-subject-wanted-police-hiding-basement/press-release-k9/,Poor Data Source,Poor Data Source,City of Providence K9-Gero - City of Providence,"",200,Sucuri WebSite Firewall - Access Denied,"[""K9-Gero""]","[""Share this story"", ""Providence City Hall"", ""Follow Us on Social Media:""]","[""City Of Providence"", ""Mayor Brett Smiley"", ""SIGN UP FOR OUR WEEKLY E-NEWS | Haga clic aquí para español"", ""Lists *""]",[],[],[],"Skip To Menu Skip To Content Skip To Accessibility Options Language Language Arabic Chinese (Traditional) English Khemer Portuguese Spanish City Of Providence Mayor Brett Smiley Search Accessibility City Of Providence Mayor Brett Smiley Search Accessibility City Of Providence Mayor Brett Smiley City Of Providence Mayor Brett Smiley Search Accessibility CITY HALL I Want to… Mayor’s Office Departments City Council Code of Ordinances More Job Opportunities DOING BUSINESS Construction Ethics Purchasing – Open RFPs Running a Business Starting a Business EVENTS NEWS PVD 311 EXPLORE Explore Providence Providence Parks Providence Recreation CITY HALL I Want to… Mayor’s Office Departments City Council Code of Ordinances More Job Opportunities DOING BUSINESS Construction Ethics Purchasing – Open RFPs Running a Business Starting a Business EVENTS NEWS PVD 311 EXPLORE Explore Providence Providence Parks Providence Recreation PVD 311 CITY HALL I Want to … MAYOR BRETT P. SMILEY Departments City Council Find a Meeting Agenda Code of Ordinances More Job Opportunities DOING BUSINESS Construction Ethics Running a Business Starting a Business Purchasing EVENTS NEWS EXPLORE Explore Providence Parks Recreation ACCESSIBILITY K9-Gero Share this story email icon. Click to share on email twitter icon. Click to share on twitter facebook icon. Click to share on facebook linkedIn Icon. Click to share on LinkedIn K9-Gero Share this story email icon. Click to share on email twitter icon. Click to share on twitter facebook icon. Click to share on facebook linkedIn Icon. Click to share on LinkedIn Share this story email icon. Click to share on email twitter icon. Click to share on twitter facebook icon. Click to share on facebook linkedIn Icon. Click to share on LinkedIn Share this story email icon. Click to share on email twitter icon. Click to share on twitter facebook icon. Click to share on facebook linkedIn Icon. Click to share on LinkedIn SIGN UP FOR OUR WEEKLY E-NEWS | Haga clic aquí para español Email * Lists * City News Zip * Providence City Hall 401-680-5000 25 Dorrance Street Providence, Rhode Island 02903 Get Directions For press inquires, click here. Follow Us on Social Media: Facebook Icon Twitter Icon Instagram Icon SIGN UP FOR OUR WEEKLY E-NEWS | Haga clic aquí para español Email * Lists * City News Zip * Providence City Hall 401-680-5000 25 Dorrance Street Providence, Rhode Island 02903 Get Directions For press inquires, click here. Follow Us on Social Media: Facebook Icon Twitter Icon Instagram Icon SIGN UP FOR OUR WEEKLY E-NEWS | Haga clic aquí para español Email * Lists * City News Zip * Providence City Hall 401-680-5000 25 Dorrance Street Providence, Rhode Island 02903 Get Directions For press inquires, click here. Follow Us on Social Media: Facebook Icon Twitter Icon Instagram Icon SIGN UP FOR OUR WEEKLY E-NEWS | Haga clic aquí para español Email * Lists * City News Zip * SIGN UP FOR OUR WEEKLY E-NEWS | Haga clic aquí para español Email * Lists * City News Zip * " -415,http://www.ryepolice.us/logs/police-logs-11-09-22-11-15-22,Daily Activity Logs,Info About Officers,Rye Police Department Police Logs 11/09/22-11/15/22 - Rye Police Department,"",200,Rye Police Department Welcome to the Rye Police Department - Rye Police Department,"[""Police Logs 11/09/22-11/15/22""]","[""Police Logs 11/09/22-11/15/22""]","[""Navigation"", ""Follow Us"", ""Facebook"", ""Email Updates"", ""Storm Preparedness Guide""]",[],[],[], -416,https://delcopa.gov/planning/pubs/connectivityranking.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -417,https://www.sandiego.gov/department-document/commission-police-practices-members-psln-committee-re-list-recommendations,Resources,Agency-Published Resources,Commission on Police Practices to Members of the PS&LN Committee Re: List of Recommendations for Implementation Ordinance | City of San Diego Official Website,Memo 12/1/21 Commission Timeline,200,City of San Diego Official Website,"[""City of San Diego Official Website""]","[""Main navigation"", ""Leisure"", ""Resident Resources"", ""Doing Business"", ""Library"", ""Public Safety"", ""City Hall"", ""Commission on Police Practices to Members of the PS&LN Committee Re: List of Recommendations for Implementation Ordinance"", ""Footer"", ""Accessibility Tools""]",[],"[""Parks"", ""Outdoors"", ""Neighborhoods"", ""Recreational Activities"", ""Street Maintenance"", ""Plan"", ""Fix"", ""Build"", ""Programs & Events"", ""Services"", ""Kids & Teens"", ""eCollection"", ""Police"", ""Fire-Rescue"", ""Lifeguards"", ""City Officials"", ""City Government""]",[],[],"" -418,https://www.stpaul.gov/departments/police/21st-century-policing-report/pillar-1-trust-and-legitimacy/report-7,Media Bulletins,Agency-Published Resources,Report Recommendation 1.9 | Saint Paul Minnesota,Law enforcement agencies should build relationships based on trust with immigrant communities.,200,Home | Saint Paul Minnesota,"[""Report Recommendation 1.9""]","[""Main Navigation"", ""Popular Topics"", ""Breadcrumb"", ""Footer""]","[""You are using an unsupported browser. Please use Microsoft Edge."", ""SPPD is committed to community"", ""SPPD is committed to racial equity"", ""SPPD supports our immigrant communities"", ""SPPD serves and protects all of our communities regardless of immigration status"", ""SPPD serves all victims"", ""SPPD employs officers fluent in community languages"", ""SPPD is committed to equal access"", ""SPPD publishes in five languages and is committed to more"", ""SPPD partners with diverse community services"", ""SPPD Response"", ""Contact The City"", ""Email Us"", ""Call 651-266-8989""]","[""Business Spotlight"", ""Featured"", ""Business Spotlight"", ""Featured"", ""Reference Data"", ""Reference Data"", ""Reference Data"", ""Reference Data"", ""Reference Data""]",[],[],"" -419,https://www.grovecityohio.gov/division-of-police/coin-survey/,Not Criminal Justice Related,Not Criminal Justice Related,"","",404,"","","","","","","","" -420,https://www.antioch.il.gov/wpfb-file/11-16-10-police-pension-fund-agenda-pdf-4/,Poor Data Source,Poor Data Source,"11-16-10 Police Pension Fund Agenda - Antioch, IL",13482 11 16 10 police pension fund agenda pdf commissions agendas 2010 1625758337 5ae0d0488d071428938164121e27df1d 2ef1356bfc60a11d27041adfb24a51b133cf753a2322a8741f57a4d30267ac55 224x300 _wrnjqxl1aexj thumb jpg 2017 05 17 08 41 32 0 40 77 167 25 2021 06 38 pdf application num_pages pagefailed_1 pagefailed_2 pagefailed_3 pagefailed_4 pagefailed_5 pagefailed_6 pagefailed_7 pagefailed_8 pagefailed_9 pagefailed_10 pagefailed_11 pagefailed_12 pagefailed_13 pagefailed_14 pagefailed_15 pagefailed_16 pagefailed_17 pagefailed_18 pagefailed_19,200,"Home - Antioch, IL","[""11-16-10 Police Pension Fund Agenda""]",[],[],[],[],[],Open toolbar Accessibility Tools Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset -421,http://www.longbeach.gov/globalassets/police/media-library/images/press-releases/2015/thumb_bobbysketch-.jpg,Poor Data Source,Poor Data Source,City of Long Beach,"",200,City of Long Beach,[],"[""Page Not Found""]","[""Mayor"", ""City Council"", ""Rex Richardson"", ""Mary Zendejas"", ""Cindy Allen"", ""Kristina Duggan"", ""Daryl Supernaw"", ""Megan Kerr"", ""Suely Saro"", ""Roberto Uranga"", ""Al Austin"", ""Dr. Joni Ricks-Oddie"", ""Dawn McIntosh"", ""Laura L. Doud"", ""Doug Haubert"", ""Tom Modica"", ""Monique DeLaGarza"", ""City-Wide Elected Officials"", ""Appointed Officials"", ""Online Payments"", ""Online Services"", ""In-Person Services"", ""Opening a Business"", ""Doing Business With The City"", ""Resources"", ""Most Popular"", ""Online Resources"", ""Attractions"", ""Business Associations"", ""Travel Resources"", ""Departments"", ""Job Opportunities"", ""Information"", ""Do."", ""Discover."", ""Connect."", ""Ask.""]","["""", ""1st District"", ""2nd District"", ""3rd District"", ""4th District"", ""5th District"", ""6th District"", ""7th District"", ""8th District"", ""9th District"", ""City Attorney"", ""City Auditor"", ""City Prosecutor"", ""City Manager"", ""City Clerk""]",[],[],"" -422,http://www.longbeach.gov/police/press-releases/robbery-suspects-arrested--charged/,Media Bulletins,Agency-Published Resources,ROBBERY SUSPECTS ARRESTED & CHARGED,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 12/12/2017 FOR IMMEDIATE RELEASE Press Release # Subject: ROBBERY SUSPECTS ARRESTED & CHARGED Contact: Media Relations (562) 570-5273 On December 11, 2017, felony charges were filed against a 35-year-old female and a 48-year-old male for their involvement in multiple robberies in Long Beach. On December 7, 2017, detectives arrested 35-year-old Meleny Ann Rivera and 48-year-old Anthony Montez in the 300 block of West Sepulveda, in the City of San Pedro. Detectives executed a search warrant at the suspects’ residence recovering a pellet gun, a knife and more than 800 articles of clothing. Between July 27, 2017 through November 20, 2017, an armed robbery took place in the 2000 block of Pacific Avenue, and another robbery in the 900 block of Long Beach Blvd. The preliminary investigation indicated that the suspects, armed with a handgun or a knife, would enter the stores and remove several articles of clothing. As the employees approached the suspects, the suspects pointed a handgun or knife at the clerks, fleeing the locations with the clothing. No employees were injured during the robberies. Through their investigation, detectives were able to view video footage of the robberies and identified the suspects. Yesterday, the case was presented to the Los Angeles County District Attorney’s Office, which filed three counts of robbery against Meleny Ann Rivera and five counts of robbery against Anthony Montez. Rivera is being held at the Long Beach City Jail, on $150,000 bail. Montez is currently being held at the Los Angeles County Jail, on $310,000 bail. Montez also had $30,000 in outstanding warrants for theft related charges. Both suspects are believed to have committed similar robberies in Los Angeles and Orange Counties. Anyone with information regarding this investigation is encouraged to call Robbery Detective Parkhill at (562) 570-5535. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -423,https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0372/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -424,https://champaignil.gov/tag/police-continue-to-seek-suspect-in-september-12-bank-robbery-regions-bank/,Media Bulletins,Agency-Published Resources,Police Continue to Seek Suspect in September 12 Bank Robbery – Regions Bank Archives - City of Champaign,"",200,403 Forbidden,"[""Items tagged: Police Continue to Seek Suspect in September 12 Bank Robbery – Regions Bank""]","[""Police Continue to Seek Suspect in September 12 Bank Robbery – Regions Bank"", ""News Releases"", ""Department News""]",[],[],[],[],"skip to content City of Champaign Main Menu Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs Items tagged: Police Continue to Seek Suspect in September 12 Bank Robbery – Regions Bank Search Police Continue to Seek Suspect in September 12 Bank Robbery – Regions Bank Posted: September 25, 2017 Champaign Police have received a number of tips associated with the September 12 bank robbery of Regions Bank (111 S. State St.) and request additional support to locate the suspect, 38-year-old Derek L. Watson of Champaign. A more recent photo of Watson is being provided to aid in citizen identification. According to reports, Watson entered […] Categories: General Press Releases , Police Department Press Releases | Tags: Champaign County Crime Stoppers , Police Continue to Seek Suspect in September 12 Bank Robbery – Regions Bank Subscribe to City News Read All City News News Releases General Construction Fire Department Police Department Department News City Council City Manager’s Office Equity and Engagement Department Finance Department Fire Department Human Resources Department Information Technologies Department Legal Department Library METCAD 9-1-1 Neighborhood Services Department Planning and Development Department Police Department Public Works Department The Champaign Insider City Newsletter City of Champaign City of Champaign 102 N. Neil St. Champaign, IL 61820 217-403-8700 Site Disclaimer I Privacy Policy City of Champaign Main Menu Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs City of Champaign Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works " -425,https://www.dps.arkansas.gov/law-enforcement/arkansas-state-police/directors-office/asp-commission/,Contact Info & Agency Meta,Info About Agencies,ASP Commission - Arkansas Department of Public Safety,"",200,Home - Arkansas Department of Public Safety,"[""Flag Status""]","[""ASP Commission"", ""Meeting Minutes"", ""Commission Rules"", ""Contact ASP"", ""Helpful ASP links"", ""Connect with ASP"", ""Respect. Integrity. CUSTOMER SERVICE. TEAMWORK. SERVANT LEADERSHIP. CONTINUOUS IMPROVEMENT"", """", ""© 2024 All rights Reserved. Arkansas.gov""]","[""Jeffery Teague"", ""John Allison"", ""Jim Hinkle"", ""Ken Reeves"", ""Neff Basore"", ""Mike Akin"", ""Stephen Edwards""]",[],"[""About DPS"", ""DPS Links"", ""DPS Address"", ""Your Arkansas.gov"", ""Top Online Services"", ""Helpful Information""]",[],"" -426,https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0455/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -427,https://coloradosprings.gov/police-department/page/investigations-division,Poor Data Source,Poor Data Source,"","",403,"","","","","","","","" -428,https://www.rentonwa.gov/city_hall/police/investigations/domestic_violence/cycle_of_violence,Media Bulletins,Agency-Published Resources,Cycle of Violence - City of Renton,"",200,Just a moment...,"[""CITY OF RENTON WASHINGTON""]","[""Cycle of Violence""]",[],"[""Phase 1: Tension Building Phase"", ""Batterer may:"", ""Partner may:"", ""Phase 2: Crisis Phase"", ""Batterer may:"", ""Partner may:"", ""Phase 3: Calmer Phase"", ""Batterer may:"", ""Partner may:""]","[""""]","[""Domestic Violence Victim Advocate""]",Skip navigation -429,https://www.pleasantprairiewi.gov/departments/police/news/police_and_fire___rescue_news_archive/2019_news_releases/release_of_sex_offender_into_community_-_navarro,Media Bulletins,Agency-Published Resources,Release of Sex Offender into Community - Navarro - Village of Pleasant Prairie,"",200,Just a moment...,[],"[""Release of Sex Offender into Community - Navarro""]","[""Follow Us on Social Media""]",[],[],[],"" -430,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/arrests/091421arrests.pdf,Arrest Records,Police & Public Interactions,"","",404,"","","","","","","","" -431,https://data.charlottenc.gov/datasets/cmpd-police-wrecker-zones,Poor Data Source,Poor Data Source,City of Charlotte Open Data Portal,"Charlotte's Open Data Portal, The City of Charlotte's Open Data Portal allows users to search, explore and discover relevant datasets that are served out by the City of Charlotte, NC.",200,City of Charlotte Open Data Portal,[],[],[],[],[],[],"" -432,http://www.lafayettepolice.us/614/find,Resources,Agency-Published Resources,"Find | Lafayette, IN - Official Website","Find links to BuyCrash.com, forms and applications, fugitive search, the police memorial wall, and the honor guard.",200,"Police Department | Lafayette, IN - Official Website","[""Find""]",[],"[""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]","[""Forms & Applications"", ""BuyCrash.com""]",[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Your LPD Career Opportunities Community Outreach Training Center How Do I… Find 9 1 1 2 Forms & Applications Browse through a list of Police Department forms and applications. BuyCrash.com Visit the BuyCrash.com website to search for and purchase a police crash report. Forms & Applications BuyCrash.com Career Opportunities Report a Crime Thank an Officer Stay Connected Alarm Reduction Contact Us 601 Columbia Street Lafayette, IN 47901 Phone: 765-807-1200 FAQs What is the number to the jail? Can you tell me if someone is wanted on warrant? How do I obtain a handgun permit? How can I request a street closure for a special event? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Your LPD Career Opportunities Community Outreach Training Center How Do I… Find 9 1 1 2 Forms & Applications Browse through a list of Police Department forms and applications. BuyCrash.com Visit the BuyCrash.com website to search for and purchase a police crash report. Forms & Applications BuyCrash.com Career Opportunities Report a Crime Thank an Officer Stay Connected Alarm Reduction Contact Us 601 Columbia Street Lafayette, IN 47901 Phone: 765-807-1200 FAQs What is the number to the jail? Can you tell me if someone is wanted on warrant? How do I obtain a handgun permit? How can I request a street closure for a special event? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Your LPD Career Opportunities Community Outreach Training Center How Do I… Find 9 1 1 2 Forms & Applications Browse through a list of Police Department forms and applications. BuyCrash.com Visit the BuyCrash.com website to search for and purchase a police crash report. Forms & Applications BuyCrash.com Career Opportunities Report a Crime Thank an Officer Stay Connected Alarm Reduction Contact Us 601 Columbia Street Lafayette, IN 47901 Phone: 765-807-1200 FAQs What is the number to the jail? Can you tell me if someone is wanted on warrant? How do I obtain a handgun permit? How can I request a street closure for a special event? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate " -433,http://www.longbeach.gov/police/press-releases/lbpd-joins-crackdown-on-texting---hand-held-cell-use-behind-the-wheel/,Media Bulletins,Agency-Published Resources,LBPD JOINS CRACKDOWN ON TEXTING & HAND-HELD CELL USE BEHIND THE WHEEL,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -434,https://www.ashevillenc.gov/wp-content/uploads/2019/03/crime-scene-investigation-police2.jpg,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -435,https://champaignil.gov/2019/09/29/champaign-police-investigating-shooting-2/,Media Bulletins,Agency-Published Resources,Champaign Police Investigating Shooting - City of Champaign,"",200,403 Forbidden,"[""Champaign Police Investigating Shooting""]","[""News Releases"", ""Department News""]",[],[],[],[],"skip to content City of Champaign Main Menu Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs Champaign Police Investigating Shooting Search Posted on September 29, 2019 On Sept. 29, 2019, at approximately 1:58 p.m., Champaign Police were called to the 1300 block of Summit Ridge Road for a report of a shooting. Upon arrival, police discovered a 23-year-old male victim suffering from a gunshot wound. The victim was transported to an area hospital for injuries not believed to be life-threatening at this time. The preliminary investigation suggests the victim was shot while walking alongside the road. There is information that a black vehicle may have been involved in the shooting. There is currently no available suspect information and no arrests have been made at this time. If any resident or business in the nearby area has exterior surveillance camera systems, please contact the police department. It is believed video footage may be of investigative assistance. The investigation continues and future updates may be provided as they become available. Anyone with information about this incident is asked to please to contact police at 217-351-4545. Arrangements may be made for information to be shared privately. If you wish to remain anonymous you may also submit tips to Crime Stoppers by phone at: 217-373-8477 (TIPS); online at 373tips.com; or the “P3 Tips” mobile app. Champaign Police reminds citizens that information submitted to Crime Stoppers is completely anonymous. Calls are routed to a third-party national call center that receives your information, completes a tips information form, and then passes the information to the appropriate law enforcement agency. Caller ID tracking is not utilized by Crime Stoppers and conversations are not recorded. Crime Stoppers will pay a reward up to $1,000 for information leading to the arrest of the person(s) responsible for this crime. Categories: Police Department Press Releases Tags: Champaign Police Investigating Shooting , Summit Ridge Road Subscribe to City News Read All City News News Releases General Construction Fire Department Police Department Department News City Council City Manager’s Office Equity and Engagement Department Finance Department Fire Department Human Resources Department Information Technologies Department Legal Department Library METCAD 9-1-1 Neighborhood Services Department Planning and Development Department Police Department Public Works Department The Champaign Insider City Newsletter City of Champaign City of Champaign 102 N. Neil St. Champaign, IL 61820 217-403-8700 Site Disclaimer I Privacy Policy City of Champaign Main Menu Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs City of Champaign " -436,https://alpha.austin.gov/en/police-oversight/community-police-review-commission-memo-2019-0267/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -437,https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-1022/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -438,https://spdblotter.seattle.gov/2012/08/03/seattle-neighborhood-group-and-seattle-police-department-team-up-to-tackle-graffiti-in-little-saigon/,Media Bulletins,Agency-Published Resources,Seattle Neighborhood Group and Seattle Police Department team up to tackle graffiti in Little Saigon - SPD Blotter,"",200,403 Forbidden,"[""Seattle Neighborhood Group and Seattle Police Department team up to tackle graffiti in Little Saigon""]","[""Find Posts By Topic"", ""Featured Posts"", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],"Seattle.gov Choose a language: English English Google Translate may not accurately translate all content. Read disclaimer . For general City questions, please call 206-684-2489 . Tell us your requested language in English, and we can connect you with an interpreter. Continue Cancel Español Es posible que Google Translate no traduzca con precisión todo el contenido. Lea el descargo de responsabilidad . Si necesita ayuda en otro idioma, díganos en inglés nombre del idioma que necesita y lo conectaremos con un intérprete: 206-684-2489 Seguir Cancelar 中國語文 Google翻譯可能無法準確翻譯所有內容。 閱讀免責聲明 。 如果您需要翻譯,請用英語説出您所需要的語言,我們將爲你連接口譯員: 206-684-2489 繼續 取消 简体中文 Google翻译可能无法准确翻译所有内容。 阅读免责声明 。 如果您需要翻译,请用英语说出您所需要的语言,我们将为你连接口译员: 206-684-2489 继续 取消 Tiếng Việt Google Dịch có thể không dịch chính xác tất cả nội dung. Đọc tuyên bố từ chối trách nhiệm . Nếu quý vị cần hỗ trợ về ngôn ngữ, xin vui lòng cho chúng tôi biết ngôn ngữ quý vị cần hỗ trợ bằng tiếng Anh (ví dụ “Vietnamese”), chúng tôi sẽ kết nối quý vị với một thông dịch viên: 206-684-2489 Tiếp tục Huỷ bỏ русский язык Google Translate не может точно перевести весь контент. Прочтите отказ от ответственности . Если вам нужна языковая помощь, сообщите нам на английском, какой язык вам нужен, и мы свяжем вас с переводчиком: 206-684-2489 Продолжать Отмена Af-Soomaali Google Translate ayaan si sax ah u turjumi karin dhammaan waxyaabaha ku jira. Akhri afeef . Haddii aad u baahan tahay caawimaad luqadeed, fadlan noogu sheeg Ingiriisiga luqadda aad u baahan tahay, ka dib waxaan kugu xiri doonnaa turjubaan: 206-684-2489 Sii wad Jooji አማርኛ የጉግል ትርጉም ሁሉንም ይዘቶች በትክክል መተርጎም ላይችል ይችላል። ማስተባበያ አንብብ ፡፡ ኣስተርጓሚ ካስፈለግዎ የሚፈልጉትን ቋንቋ በእንግልዝኛ ይንገሩን፣ ከኣስተርጓሚ እናገናኝዎታለን። 206-684-2489 ቀጥል ሰርዝ 한국어 구글은 정확하게 모든 내용을 번역하지 않을 수 있습니다 번역. 읽기 면책 조항 . 언어지원이 필요한 경우, 필요한 언어를 영어로 말씀해 주시면 통역사와 연결해 드리겠습니다: 206-684-2489 계속하다 취소 Tagalog Maaaring hindi tumpak na isalin ng Google Translate ang lahat ng nilalaman. Basahin ang disclaimer . Para sa mga pangkalahatang katanungan sa Lungsod, mangyaring tawagan ang 206-684-2489 . Sabihin sa amin ang hiniling mong wika sa Ingles, at maikokonekta ka namin sa isang interpreter. Magpatuloy Kanselahin ภาษาไทย Google Translate อาจแปลเนื้อหาทั้งหมดไม่ถูกต้อง อ่านข้อจำกัดความรับผิดชอบ สำหรับคำถามทั่วไปเกี่ยวกับเมืองโปรดโทร 206-684-2489 บอกภาษาที่คุณต้องการเป็นภาษาอังกฤษและเราสามารถติดต่อคุณกับล่ามได้ ดำเนินการต่อ ยกเลิก 日本語 Google翻訳は、すべてのコンテンツを正確に翻訳するとは限りません. 免責事項をお読みください 。 市の一般的な質問については 206-684-2489 に電話してください。ご希望の言語を英語で教えていただければ、通訳をご案内いたします。 継続する キャンセル ភាសាខ្មែរ កម្មវិធីបកប្រែហ្គូហ្គោលមិនអាចបកប្រែមាតិកាទាំងអស់បានត្រឹមត្រូវទេ។ អានការបដិសេធ។ សម្រាប់សំណួរទូទៅរបស់ទីក្រុងសូមទូរស័ព្ទមក 206-684-2489 ។ ប្រាប់យើងពីភាសាដែលអ្នកស្នើសុំជាភាសាអង់គ្លេសហើយយើងអាចភ្ជាប់អ្នកជាមួយអ្នកបកប្រែភាសា។ បន្ត បោះបង់ ພາສາລາວ Google Translate ອາດຈະບໍ່ແປເນື້ອຫາທັງ ໝົດ ຢ່າງຖືກຕ້ອງ. ອ່ານປະຕິເສດ . ສຳ ລັບ ຄຳ ຖາມທົ່ວໄປຂອງເມືອງ, ກະລຸນາໂທຫາ 206-684-2489 . ບອກພວກເຮົາເປັນພາສາອັງກິດທີ່ທ່ານຮ້ອງຂໍ, ແລະພວກເຮົາສາມາດເຊື່ອມຕໍ່ທ່ານກັບນາຍແປພາສາ. ສືບຕໍ່ ຍົກເລີກ Українська Перекладач Google може не точно перекласти весь вміст. Прочитайте застереження . За загальними запитаннями про місто, будь ласка, телефонуйте 206-684-2489 . Розкажіть нам про вашу мову англійською мовою, і ми можемо зв’язати вас із перекладачем. Продовжуйте Скасувати Français Google Traduction peut ne pas traduire correctement tout le contenu. Lisez la clause de non-responsabilité . Pour des questions générales sur la ville, veuillez appeler le 206-684-2489 . Dites-nous votre langue souhaitée en anglais, et nous pourrons vous mettre en contact avec un interprète. Continuer Annuler " -439,https://alpha.austin.gov/en/police-oversight/formal-complaint-purpose-and-scope-and-other-policy-violations-9/,Complaints & Misconduct,Info About Officers,"","",200,"","","","","","","","" -440,https://normandyparkwa.gov/city-news/police-department/happy-thanksgiving/,Not Criminal Justice Related,Not Criminal Justice Related,Happy Thanksgiving - City of Normandy Park,"Happy Thanksgiving! Speaking of thankful, if you really want the community to be thankful please donate your blood next week at Normandy Park...",200,City of Normandy Park,"[""Happy Thanksgiving""]","[""Save a life today!"", ""TOYS FOR TOTS"", ""Normandy Park February Blood Drive"", ""Normandy Park Paws on Patrol"", ""Receive news & updates"", ""Success!"", ""Subscribe To Our Newsletter"", ""You have Successfully Subscribed!""]",[],"[""Normandy Park City Hall"", ""City Hall Hours""]","[""Dan Yourkoski, Police Chief""]",[],"" -441,https://alpha.austin.gov/en/police-oversight/formal-complaint-impartial-attitude-and-courtesy-and-other-policy-violations-1/,Complaints & Misconduct,Info About Officers,"","",200,"","","","","","","","" -442,https://www.hendersonvillenc.gov/police-department/information-crime-safety-tips/winter-safety-tips,Poor Data Source,Poor Data Source,"Winter Safety Tips | City of Hendersonville, NC | Official Website","Winter Weather Terms WatchesWinter Storm Watch: Issued for the possibility of severe life-threatening winter weather conditions including: heavy snow, heavy ice and/or near blizzard conditions. Forecasters are typically 50 percent confident that severe winter weather will materialize when a watch is issued. Blizzard Watch: Issued for the possibility of blizzard conditions.",200,"City of Hendersonville, NC | Official Website","[""Winter Safety Tips""]","[""Search form"", ""You are here""]",[],"[""Winter Weather Terms"", ""Home Safety"", ""Neighbors Helping Neighbors""]",[],[],Skip to main content -443,https://www.mass.gov/doc/notification-of-copper-algaecide-application/download,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,Mass.gov,[],[],[],[],[],[],"" -444,https://champaignil.gov/2010/05/04/champaign-police-celebrates-olympic-champion/,Not Criminal Justice Related,Not Criminal Justice Related,Champaign Police Celebrates Olympic Champion - City of Champaign,"",200,403 Forbidden,"[""Champaign Police Celebrates Olympic Champion""]","[""News Releases"", ""Department News""]","[""The Police Benevolent & Protective Association Hosts a Meet and Greet for Olympic Champion Katherine Reutter""]",[],[],[],"skip to content City of Champaign Main Menu Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs Champaign Police Celebrates Olympic Champion Search Posted on May 4, 2010 The Police Benevolent & Protective Association Hosts a Meet and Greet for Olympic Champion Katherine Reutter WHO: Katherine Reutter, Olympic Speed Skater The Champaign Police Benevolent & Protective Association (PBPA) Champaign Police Department Employees WHAT: The Champaign Police Benevolent & Protective Association (PBPA) Unit #7 is hosting a meet and greet for Katherine Reuter at El Toro Bravo restaurant where she will display her Olympic and World Cup medals, sign autographs and share stories with employees of the Champaign Police Department. WHEN: Tuesday, May 4, 2010, 6:00 p.m. WHERE: El Toro Bravo, 2561 W. Springfield Avenue, Champaign Katherine will also sign autographs at Market Place Mall on Saturday, May 8, 2010, from 10 a.m. – 2 p.m. Photos will be sold for $5.00 as a fundraiser for the Champaign Cops for Kids. The PBPA was the first “official” sponsor to back Katherine as she trained for the Olympics and has supported her over the last four years with contributions totaling over $20,000. Categories: General Press Releases , Police Department Press Releases Subscribe to City News Read All City News News Releases General Construction Fire Department Police Department Department News City Council City Manager’s Office Equity and Engagement Department Finance Department Fire Department Human Resources Department Information Technologies Department Legal Department Library METCAD 9-1-1 Neighborhood Services Department Planning and Development Department Police Department Public Works Department The Champaign Insider City Newsletter City of Champaign City of Champaign 102 N. Neil St. Champaign, IL 61820 217-403-8700 Site Disclaimer I Privacy Policy City of Champaign Main Menu Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs City of Champaign Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions " -445,https://alpha.austin.gov/es/police-oversight/2020-08-10-3/,Complaints & Misconduct,Info About Officers,"","",200,"","","","","","","","" -446,http://lafayettepolice.us/765/request-a-report,Not Criminal Justice Related,Not Criminal Justice Related,"Request a Report | Lafayette, IN - Official Website","To request a fire report, please complete the report request form and email it or stop by our office.",200,"Police Department | Lafayette, IN - Official Website","[""Request a Report""]",[],"[""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search About Us Operations Prevention Recruitment How Do I... Home Government Departments A - F Fire Department Prevention Investigations Request a Report Request a Report Fire Report Request To request a fire report, please complete the report request form (PDF) and email it to our office. You can also obtain a fire report by coming to our office located at: 443 N 4th Street Lafayette, IN 47901 Note: Please bring the completed form (PDF) with you so that we can find the report in a timely manner. Request a Report Report Arson Community Outreach Fire Stations Submit a Request History Photo Gallery Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search About Us Operations Prevention Recruitment How Do I... Home Government Departments A - F Fire Department Prevention Investigations Request a Report Request a Report Fire Report Request To request a fire report, please complete the report request form (PDF) and email it to our office. You can also obtain a fire report by coming to our office located at: 443 N 4th Street Lafayette, IN 47901 Note: Please bring the completed form (PDF) with you so that we can find the report in a timely manner. Request a Report Report Arson Community Outreach Fire Stations Submit a Request History Photo Gallery Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In " -447,https://www.antioch.il.gov/event/police-fire-commission-cancelled/,Not Criminal Justice Related,Not Criminal Justice Related,"Police & Fire Commission – Cancelled - Antioch, IL","",200,"Home - Antioch, IL","[""Police & Fire Commission – Cancelled""]",[],[],[],[],[],Open toolbar Accessibility Tools Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset -449,https://osp.maryland.gov/2020/01/17/january-17-2020-greensboro-police-chief-pleads-guilty-to-misconduct-in-office/,Media Bulletins,Agency-Published Resources,"January 17, 2020: Greensboro Police Chief Pleads Guilty to Misconduct in Office","",200,Home,[],"[""Quick Links"", ""January 17, 2020: Greensboro Police Chief Pleads Guilty to Misconduct in Office"", ""Google Translate Disclaimer"", ""Exención de Responsabilidad del Traductor Google"", ""Google翻译免责声明"", ""Google翻譯免責聲明""]",[],[],[],[],"Skip to Main Content Menu Maryland.gov State Directory State Agencies Online Services Maryland.gov Home Search Facebook Twitter Instagram LinkedIn Home Leadership FILE A COMPLAINT Press Releases Social Media Careers Contact Us Notice: JavaScript is not available in your browser. Some enhanced features will not be available until JavaScript is enabled. Quick Links OSP Annual Reports Maryland Judiciary Case Search State Board of Elections State Ethics Commission Attorney Grievance Commission January 17, 2020: Greensboro Police Chief Pleads Guilty to Misconduct in Office January 17, 2020 GREENSBORO POLICE CHIEF PLEADS GUILTY TO MISCONDUCT IN OFFICE Maryland State Prosecutor Charlton Howard announced today that Michael Petyo, former Police Chief of the Greensboro Police Department in Caroline County, Maryland, pleaded guilty on January 17, 2020, to one count of misconduct in office for making factual misrepresentations in an Application for Certification, which he filed on behalf of one of his police officers. An Application for Certification is filed with the Maryland Police and Correctional Training Commission to certify police officers throughout the State of Maryland. Officers must be certified to be allowed to carry out their duties. According to the Statement of Facts read at the guilty plea, Petyo, while serving as Greensboro Police Chief, submitted an Application of Certification on behalf of Thomas Webster to the Commission for certification as a Greensboro police officer. In his submission, Petyo made several intentional misrepresentations and factual omissions to the Commission. Petyo was sentenced to a period of two years’ incarceration, all suspended, with three years’ supervised probation by The Honorable Paul M. Bowman. “Honest and thorough reporting to the Maryland Police and Correctional Training Commission is an essential responsibility of Police Chiefs throughout the State of Maryland to ensure that individuals who apply for certification, and are consequently employed as law enforcement officers, are properly screened and evaluated,” said Howard. “I commend the investigators and attorneys at the Office of the State Prosecutor for their outstanding work on this case.” The Office of State Prosecutor would like to thank the Maryland Police and Correctional Training Commission and the Delaware Department of Justice with their assistance in this investigation. Contact Us Report Fraud 300 East Joppa Road, Suite 410, Towson, MD 21286 (800) 695-4058 (toll free) | (410) 321-4067 | (410) 321-3851 (Fax) info.osp@maryland.gov Facebook Twitter Instagram LinkedIn doit-ewspw-W02 Skip to Main Content Menu Maryland.gov State Directory State Agencies Online Services Maryland.gov Home Search Facebook Twitter Instagram LinkedIn Home Leadership FILE A COMPLAINT Press Releases Social Media Careers Contact Us Menu Maryland.gov State Directory State Agencies Online Services Menu Maryland.gov State Directory State Agencies Online Services Menu Maryland.gov State Directory State Agencies Online Services Menu Menu Maryland.gov State Directory State Agencies Online Services Maryland.gov State Directory State Agencies Online Services Maryland.gov Home Search Facebook Twitter Instagram LinkedIn Maryland.gov Home Search Facebook Twitter Instagram LinkedIn Maryland.gov Home Search Facebook Twitter Instagram LinkedIn Maryland.gov Home Search Facebook Twitter Instagram LinkedIn Maryland.gov Home Search Facebook Twitter Instagram LinkedIn Maryland.gov Home Search Facebook Twitter Instagram LinkedIn Maryland.gov Home Maryland.gov Home " -450,https://ci.new-hope.mn.us/city_hall/police_department/records_division/temporary_permit_to_purchase_procedure,Poor Data Source,Poor Data Source,Temporary Permit to Purchase Procedure - City of New Hope,"",200,Just a moment...,"[""City of New Hope"", ""City of New Hope Minnesota""]","[""Temporary Permit to Purchase Procedure""]",[],[],[],[],"" -451,https://www.austintexas.gov/blog/good-police-work,Media Bulletins,Agency-Published Resources,Good Police Work | AustinTexas.gov,Gentleman: I know you both are quite busy managing and keeping our City safe.,200,Home | AustinTexas.gov,"[""Good Police Work""]","[""Action Navigation"", ""GTranslate"", ""Main menu"", ""Frequently Viewed Departments"", ""Make a Difference"", ""Share"", ""About this blog"", ""Archives"", ""Pagination"", ""Footer Menu"", ""Second Footer Menu""]","[""Resident"", ""Business"", ""Government"", ""Departments"", ""Connect"", ""Good Police Work"", ""2021 February"", ""2020 January"", ""2020 January"", ""2020 January"", ""2020 January"", ""2020 January"", ""2019 December"", ""2019 December"", ""2019 November"", ""2019 November""]",[],[],[],"austintexas.gov Action Navigation 3-1-1 GTranslate Translate English Arabic Bulgarian Chinese (Simplified) Chinese (Traditional) Croatian Czech Danish Dutch Finnish French German Greek Hindi Italian Japanese Korean Norwegian Polish Portuguese Romanian Russian Spanish Swedish Catalan Filipino Hebrew Indonesian Latvian Lithuanian Serbian Slovak Slovenian Ukrainian Vietnamese Albanian Estonian Galician Hungarian Maltese Thai Turkish Persian Afrikaans Malay Swahili Irish Welsh Belarusian Icelandic Macedonian Yiddish Armenian Azerbaijani Basque Georgian Haitian Creole Urdu Bengali Bosnian Cebuano Esperanto Gujarati Hausa Hmong Igbo Javanese Kannada Khmer Lao Latin Maori Marathi Mongolian Nepali Punjabi Somali Tamil Telugu Yoruba Zulu austintexas . gov Filter Toggle navigation Menu Close Search Main menu Home Resident Resident Open the Resident page Open the Resident page Household Getting a Home Utilities Trash and Recycling Gardening and Home Improvements Home Improvements Pets and Adoption Open the Household page Neighborhoods Education Libraries Families Neighborhood Issues Open the Neighborhoods page Health Animals Public Health Open the Health page Public Safety Crime Courts Fire Safety Emergency Preparedness Public Safety Employment Open the Public Safety page Arts and Leisure Arts, History and Culture Outdoor, Nature and Wildlife Events City Venues and Facilities Film and Music Open the Arts and Leisure page Environmental City Programs and Initiatives Conservation and Recycling Animals and Wildlife Parks Open the Environmental page Transportation Car/Bus Aviation Bicycle/Pedestrian Streets/Maps Open the Transportation page City of Austin About Austin Voting and Elections Get Involved City Jobs Records and Documents Open the City of Austin page Business Business Open the Business page Open the Business page Doing Business Utilities Doing Business with the City Taxes MBE/WBE Program City Code Food Establishments Permits Day Labor Records and Documents Open the Doing Business page Starting Out Starting a Business Relocating a Business Incentives and Grants Open the Starting Out page City Contracts Small Business Centers Small Business Development Incentives and Grants Open the Small Business Centers page Austin Center for Events Nonprofits Grants Open the Nonprofits page Green Resources Government Government Open the Government page Open the Government page City Council City Manager's Office Boards and Commissions City Council meeting information City Hall Jobs Public Records Departments Departments View full directory of departments Frequently Viewed Departments View full directory of departments Visit Airport Visitors Bureau Convention Center Utilities Austin Energy Austin Water Resource Recovery Education & Recreation Library Parks and Recreation Safety Police Other Animal Services Development Services Economic Development Connect Connect Open the Connect page Share ideas online about improving Austin Participate in the City Sign up for email updates City contact information " -452,http://sheriff.co.seneca.ny.us/the-department/copy-of-biography-the-chief-deputy-2/,Contact Info & Agency Meta,Info About Agencies,"Biography: The Chief Deputy – Seneca County Sheriff, New York","",200,"Seneca County Sheriff, New York – A New York State Sheriffs' Association Accredited Agency","[""Biography: The Chief Deputy""]",[],[],[],[],[],"Skip to content Seneca County Sheriff New York Menu Divisions expand child menu Road Patrol expand child menu K-9 Unit Underwater Search and Rescue Team Emergency Response Team Criminal Investigations Corrections expand child menu Visitation Commissary Bail & Fines Packages and Allowable Items Contraband Inmate Programs Centralized Arraignment Court Navigations Civil/Records expand child menu FAQ & More Fees Records expand child menu Pistol Permits FAQ – Pistol Permit Transactions Court Security Facilities expand child menu Solar Field Programs expand child menu NYS Sheriffs Camp Crime Victim Alerts Accreditation Citizens Academy F.A.I.R. D.A.R.E. McGruff Child Safety Seats Operation: Safe Child Boater Safety The Yellow Dot Sex Offender Registry Search/Alert Sign Up SAVIN-NY Project Lifesaver Hyper-Reach How Can We Help You? expand child menu Police Tip Form Property Check Form Citizens Comment Form Administration expand child menu Biography: The Sheriff Biography: The Undersheriff Biography: The Chief Deputy Mission Statements expand child menu Law Enforcement Division Corrections Division Civil Division History of the SCSO Accreditation Employment & Recruitment Annual Reports Community Policing Policy Page 6150 Route 96, Romulus, New York For Emergencies Dial 9-1-1 Biography: The Chief Deputy SCSO Chief Deputy - Kip Goodman Officer Goodman joined the Sheriff’s Office as a Uniform Deputy in 1992. In 1993 he was promoted to Investigator and was assigned to the Juvenile Division where he concentrated on crimes against children and youth programs. Goodman is a certified DARE Instructor, Hostage Negotiator, Crime Scene Specialist and Police Instructor. Throughout his tenure Goodman has received numerous awards for his work apprehending child predators. In 2013 he received Special Congressional Recognition in appreciation for his outstanding efforts on behalf of victims of crime. In Marck of 2016 Goodman was promoted to the rank of Chief Deputy. Copyright © 1999-2024 – Seneca County Sheriffs Office – All Rights Reserved Powered by FingerLakes1.com Website Development " -453,https://hollister.ca.gov/government/city-departments/police/,List of Data Sources,Info About Agencies,"Police – City of Hollister, California","",200,"City of Hollister, California","[""San Benito County Opioid Task Force""]",[],"[""Follow Us on..."", ""A Message from Chief Reynoso"", ""San Benito County Public Safety PSA"", ""HPD Values and Vision"", ""Follow Us on....""]",[],[],[],"" -454,https://delcopa.gov/courts/juvenilecourt/upperdarbyprobation.html,Contact Info & Agency Meta,Info About Agencies,Havertown (Upper Darby) Juvenile Probation Office - Delaware County Court of Common Pleas,"",200,"Delaware County, Pennsylvania","[""Havertown (Upper Darby) Juvenile Probation Office""]",[],"[""Juvenile Court & Probation Services Navigation"", ""Contact Us"", ""Courts Quick Links"", ""Government Center Quick Links"", ""About Delaware County""]",[],[],[],"Menu A to Z Court Departments Local Rules FAQ Government Center Havertown (Upper Darby) Juvenile Probation Office Home / Court Departments / Juvenile Court & Probation Services / Office Locations / Havertown (Upper Darby) Juvenile Probation Office 525 West Chester Pike Lower Level Havertown, PA 19083 Judith Cola, Office Coordinator Phone: 610-713-2550/2551/2546; Fax: 610-713-2552 Michelle Washington, Supervisor Office Phone: 610-713-2554 Danise Hightower Office Phone: 610-713-2550 Stacey Mills, Probation Officer Office Phone: 610-713-2560 Elizabeth Leventhal, Probation Officer Office Phone: 610-713-2206 Robin Monaghan, Probation Officer Office Phone: 610-713-2258 Andrew Rauenzahn, Probation Officer Office Phone: 610-713-2568 Courtney (Watson) Scalia Office Phone: 610-713-2563 Patricia White, Probation Officer Office Phone: 610-713-2079 Shannon Gallop, Regional Supervisor Office Phone: 610-713-2562 Mercedes Bedolla Ollvera Office Phone: 610-713-2550 Jennifer Swayngim, Probation Officer Office Phone: 610-713-2205 Lauren Matthias, Probation Officer Office Phone: 610-713-2598 Jennifer Hudrick, Probation Officer Office Phone: 610-713-2557 Edward Hally, Probation Officer Office Phone: 610-713-2556 Gina White, Probation Officer Alternative Location: Upper Darby High School Office Phone: 610-713-2559 Alternative Phone: 610-622-7000 X2403 Juvenile Court & Probation Services Navigation Office Locations Contact Staff Inquires Court Forms System Map Emergency Extension Orders Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 delcocourts@co.delaware.pa.us Courts Quick Links Juror eResponse PA Law Help Self Help - Custody Self Help - Divorce Juror Handbook Language Access Family Court Self Represented Litigant Guide Government Center Quick Links Marriage Licenses Crisis Connection Certified Recovery Specialist Public Access Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu A to Z Court Departments Local Rules FAQ Government Center Menu A to Z Court Departments Local Rules FAQ Government Center Menu A to Z Court Departments Local Rules FAQ Government Center Menu A to Z Court Departments Local Rules FAQ Government Center Menu A to Z Court Departments Local Rules FAQ Government Center Havertown (Upper Darby) Juvenile Probation Office Home / Court Departments / Juvenile Court & Probation Services / Office Locations / Havertown (Upper Darby) Juvenile Probation Office Havertown (Upper Darby) Juvenile Probation Office Home / Court Departments / Juvenile Court & Probation Services / Office Locations / Havertown (Upper Darby) Juvenile Probation Office Havertown (Upper Darby) Juvenile Probation Office Home / Court Departments / Juvenile Court & Probation Services / Office Locations / Havertown (Upper Darby) Juvenile Probation Office " -455,http://www.ryepolice.us/wp-content/uploads/lynch_dan.jpg,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -456,https://delcopa.gov/council/2017minutes/012517minutes.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -457,https://alpha.austin.gov/es/police-oversight/formal-complaint-impartial-attitude-and-courtesy-46/,Complaints & Misconduct,Info About Officers,"","",200,"","","","","","","","" -458,https://champaignil.gov/tag/police-request-community-assistance-in-fatal-shooting-investigation/,Media Bulletins,Agency-Published Resources,Police Request Community Assistance in Fatal Shooting Investigation Archives - City of Champaign,"",200,403 Forbidden,"[""Items tagged: Police Request Community Assistance in Fatal Shooting Investigation""]","[""UPDATE: Police Request Community Assistance in Fatal Shooting Investigation"", ""News Releases"", ""Department News""]",[],[],[],[],"skip to content City of Champaign Main Menu Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs Items tagged: Police Request Community Assistance in Fatal Shooting Investigation Search UPDATE: Police Request Community Assistance in Fatal Shooting Investigation Posted: October 14, 2018 The Champaign Police Department is asking for assistance from residents that live in the area between Kirby to Springfield Avenue, and between Duncan and Kenwood Road. If any resident has exterior home camera surveillance systems, please contact the police department. It is believed video footage between the hours of midnight-3 a.m. may be of investigative assistance. Police are especially interested in residents with home surveillance systems […] Categories: General Press Releases , Police Department Press Releases | Tags: Police Request Community Assistance in Fatal Shooting Investigation Subscribe to City News Read All City News News Releases General Construction Fire Department Police Department Department News City Council City Manager’s Office Equity and Engagement Department Finance Department Fire Department Human Resources Department Information Technologies Department Legal Department Library METCAD 9-1-1 Neighborhood Services Department Planning and Development Department Police Department Public Works Department The Champaign Insider City Newsletter City of Champaign City of Champaign 102 N. Neil St. Champaign, IL 61820 217-403-8700 Site Disclaimer I Privacy Policy City of Champaign Main Menu Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs City of Champaign Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works " -459,https://alpha.austin.gov/es/police-oversight/community-feedback-and-final-recommendations-ban-chokeholds-and-strangleholds/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -460,https://coloradosprings.gov/police-department/article/calendar-event/holiday-hill,Misc Police Activity,Police & Public Interactions,Holiday on the Hill | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""Holiday on the Hill""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[],"" -461,https://www.naperville.il.us/services/naperville-police-department/community-education-and-crime-prevention/paws-on-patrol/,Resources,Agency-Published Resources,Paws on Patrol | The City of Naperville,Paws on Patrol is a dog walker watch program that encourages residents to act as extra eyes and ears while out walking their dogs and report suspicious activity in their neighborhoods to police.,200,Home | The City of Naperville,"[""Paws on Patrol""]","[""Community Education and Crime Prevention"", ""Watch NCTV17 Coverage of Paws on Patrol"", ""Sniff out criminal activity while on your daily walks!"", ""Get involved!"", ""Naperville Police Department""]","[""Explore""]",[],"[""Helping Residents Build a Better Community"", ""Resources for Doing Business in Naperville""]",[],"Menu Search Menu Search Search Main Menu Navigation About Naperville + An Award-Winning Community Demographics and Key Facts Education Historic Preservation in Naperville Projects in Naperville Transportation and Parking Townships Government + Boards and Commissions City Leadership Team City Finances Annual Budget and Financial Reports Purchasing and Bids Taxes and Financial Forms Utility Services and Billing General Billing Water Street TIF District Coronavirus Resources Diversity, Equity and Inclusion A Community of Belonging DEI Defined DEI Timeline Youth Involvement Embracing Community Environmental Sustainability in Naperville Grants Meetings and Agendas Legislative Priorities Meeting Room Reservations Meet Your City Council Mayor Scott A. Wehrli Councilman Ian Holzhauer Councilman Patrick Kelly Councilman Paul Leong Councilwoman Allison Longenbaugh Councilman Josh McBroom Councilwoman Jennifer Bruzan Taylor Councilman Dr. Benjamin M. White Councilman Nate Wilson Municipal Center Municipal Code Open Data Proclamations Strategic Plan Task Forces Voting and Voter Registration Services + Brush, Leaf & Yard Waste Curbside Bulk Brush Collection Leaf Collection Yard Waste Collection Electric Utility Your Electric Service Electrical Safety Powering Our Community for the Future FOIA Request Garbage and Recycling Residential Garbage Collection Garbage Carts Curbside Recycling Program Recycling Carts Recycling Drop-Off Center Household Hazardous Waste Facility Electronics Recycling Holiday Lights Recycling Naperville Fire Department About the Fire Department Emergency Preparedness Inspections and Permits Programs and Services Safety and Public Education Naperville Police Department About the Police Department Programs and Services Community Education and Crime Prevention Office of the Chief of Police Investigations Division Patrol Division Join NPD Permits and Licenses Senior Services and Resources Services and Resources for People with Disabilities Snow and Ice Removal Snow Plowing and Salting Mailboxes and Parkway Sod Winter Updates Water/Wastewater Utility Your Water Service Maintaining Our System Common Water Issues Residents + Helping Residents Build a Better Community You can find a collection of city information relevant to everyone in Naperville, from new residents to long-time community members. Go to this section Businesses + Resources for Doing Business in Naperville Whether you're starting, running or visiting a Naperville business - find resources to help you. Go to this section Enjoy Naperville + Biking Maps, Guides and Plans Commander Dan Shanower September 11 Memorial Explore the Community Festivals and Parades Millennium Wall Naperville Community Concert Center Naperville Riverwalk Naper Settlement & Homestead Von Oven Scout Reservation Walks and Runs + + + + Helping Residents Build a Better Community You can find a collection of city information relevant to everyone in Naperville, from new residents to long-time community members. Go to this section + Resources for Doing Business in Naperville Whether you're starting, running or visiting a Naperville business - find resources to help you. Go to this section + " -462,https://www.police.wallingfordct.gov/careers/current-employment-opportunities/,Resources,Agency-Published Resources,Current Employment Opportunities | Wallingford Police Department,Current Employment Opportunities,200,"Wallingford, CT Police Department","[""Current Employment Opportunities""]",[],[],[],[],[],"‹ Close Menu About Us Our Team Who We Serve Our History Police Station Project Divisions Records Division Traffic Division Investigative Services Division Professional Standards & Training Division Patrol Division Community Impact Unit Public Safety Communications Center Emergency Response Team Field Training & Evaluation Program How Do I? Pistol Permits Fingerprinting Accident Reports Case Reports Traffic Violations Pay a Parking Ticket Hire a Cop Alarm Registration Careers Current Employment Opportunities Forms & Resources Bingo, Bazaar & Raffle Documents Precious Metal Application Secondhand Application Pawnbroker Application Vending Application News & Events Road Closures & Detours Agency Events & Programs Press Releases Photo Gallery Video Gallery Wallingford PBA Contact Current Employment Opportunities Current Employment Opportunities Current Employment Opportunities Application Form (Use for Civilian/Dispatcher Postions) Entry-Level Police Officer Posting Wallingford Police Department Dispatcher Opening Location: 135 North Main Street Wallingford, CT 06492 Tel: (203) 294-2800 Fax: (203) 294-2882 Administrative Office: Monday through Friday 8 am – 4 pm Site Map Privacy Policy Accessibility Statement Anonymous Tip Form Town of Wallingford Location: 135 North Main Street Wallingford, CT 06492 Tel: (203) 294-2800 Fax: (203) 294-2882 Administrative Office: Monday through Friday 8 am – 4 pm Site Map Privacy Policy Accessibility Statement Anonymous Tip Form Town of Wallingford Web Solutions © 2022 – 2024 Wallingford Police Department. All rights reserved. Web Solutions © 2022 – 2024 Wallingford Police Department. All rights reserved. " -463,https://www.coppelltx.gov/376/command-staff,Contact Info & Agency Meta,Info About Agencies,"Command Staff | Coppell, TX",Meet the Coppell Police Department Command Staff.,200,"Coppell, TX | Official Website","[""Command Staff""]",[],"[""Contact Us"", ""Loading""]","[""Police Department""]",[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search About Us Divisions Services & Programs Education How Do I City Home Home Government City Departments Police Department About Us Command Staff Command Staff Danny Barton, Chief of Police Sammy Lujan, Deputy Chief Captain John Rebman, Patrol Division Commander Captain Eric Louderback, Investigations Division Commander Contact Us Police Department Email the Police Department Physical Address View Map 130 Town Center Boulevard Coppell Justice Center Coppell , TX 75019 130 Town Center Boulevard Coppell Justice Center Coppell TX 75019 Directions Mailing Address P.O. Box 9478 Coppell , TX 75019 Phone: 469-289-3270 Fax: 972-304-3535 Emergency Phone: 911 Directory Command Staff File a Compliment or Complaint In Memoriam Police Recruiting Racial Profiling Policy Services & Programs Animal Services Submit A Tip Crime Statistics Join Us Compliment /Complaint For Non Emergencies: 469-289-3270 . You can also contact non-emergency dispatch by dialing *247 from your cellular phone. For Emergencies: 911 Coppell Justice Center 130 Town Center Boulevard / P.O. Box 9478 Coppell, TX 75019 Phone: 972-304-3620 (Records Department) Fax: 972-304-3535 Email Government Websites by CivicPlus® Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search About Us Divisions Services & Programs Education How Do I City Home Home Government City Departments Police Department About Us Command Staff Command Staff Danny Barton, Chief of Police Sammy Lujan, Deputy Chief Captain John Rebman, Patrol Division Commander Captain Eric Louderback, Investigations Division Commander Contact Us Police Department Email the Police Department Physical Address View Map 130 Town Center Boulevard Coppell Justice Center Coppell , TX 75019 130 Town Center Boulevard Coppell Justice Center Coppell TX 75019 Directions Mailing Address P.O. Box 9478 Coppell , TX 75019 Phone: 469-289-3270 Fax: 972-304-3535 Emergency Phone: 911 Directory Command Staff File a Compliment or Complaint In Memoriam Police Recruiting Racial Profiling Policy Services & Programs Animal Services Submit A Tip Crime Statistics Join Us Compliment /Complaint For Non Emergencies: 469-289-3270 . You can also contact non-emergency dispatch by dialing *247 from your cellular phone. For Emergencies: 911 Coppell Justice Center 130 Town Center Boulevard / P.O. Box 9478 Coppell, TX 75019 Phone: 972-304-3620 (Records Department) Fax: 972-304-3535 Email Government Websites by CivicPlus® Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In " -464,https://alpha.austin.gov/es/police-oversight/8-26-20-3/,Complaints & Misconduct,Info About Officers,"","",200,"","","","","","","","" -465,https://coloradosprings.gov/police-department/article/news/officer-involved-shooting-i25-and-north,Media Bulletins,Agency-Published Resources,Officer Involved Shooting I25 and North Academy Boulevard | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""Officer Involved Shooting I25 and North Academy Boulevard""]","[""Search"", ""Update:"", ""Original post:"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[],"" -466,https://www.arlingtontx.gov/news/my_arlington_t_x/news_stories/police_chief_al_jones,Media Bulletins,Agency-Published Resources,Al Jones Appointed as New Arlington Police Chief - City of Arlington,"",200,Just a moment...,"[""YOUR COMMUNITY NEWS AND EVENTS"", ""City of Arlington""]","[""Al Jones Appointed as New Arlington Police Chief""]",[],[],[],[],Skip to Content Skip to Content -467,https://www.sandiego.gov/risk-management/flexible-benefits/fbp-police-safety-members-fy2022,Policies & Contracts,Info About Agencies,Flexible Benefits Plan Options for Police Safety Members FY 2022 and Short Plan Year 2022 | City of San Diego Official Website,"",200,City of San Diego Official Website,"[""City of San Diego Official Website"", ""Flexible Benefits Plan Options for Police Safety Members FY 2022 and Short Plan Year 2022""]","[""Main navigation"", ""Leisure"", ""Resident Resources"", ""Doing Business"", ""Library"", ""Public Safety"", ""City Hall"", ""FBP Credits"", ""FBP Options"", ""Sharp Plan Additional Information"", ""Services"", ""Contact Info"", ""Orientation Materials"", ""Additional Resources"", ""Forms"", ""Footer"", ""Accessibility Tools""]","[""Medical Plans"", ""Kaiser Permanente Traditional (HMO) Information"", ""Kaiser Permanente Traditional (HMO) Premiums"", ""Kaiser Permanente Deductible (HMO) Information"", ""Kaiser Permanente Deductible (HMO) Premiums"", ""Kaiser Partner Site"", ""Kaiser Additional Information"", ""Cigna (HMO) Information"", ""Cigna (HMO) Premiums"", ""Cigna Scripps Select (HMO) Premiums"", ""Cigna Open Access Plan (OAP) PPO Information"", ""Cigna Open Access Plan (OAP) PPO Premiums"", ""Cigna Additional Information"", ""Cigna Partnersite"", ""SDPEBA/Sharp Classic (HMO) Information"", ""SDPEBA/Sharp Classic (HMO) Premiums"", ""SDPEBA/Sharp Select (HMO) Information"", ""SDPEBA/Sharp Select (HMO) Premiums"", ""SDPEBA/Sharp Saver Deductible (HMO) Information"", ""SDPEBA/Sharp Saver Deductible (HMO) Premiums"", ""POA ALADS California Care Basic (HMO - No Dental) Information"", ""POA ALADS California Care Basic (HMO - No Dental) Premiums"", ""POA ALADS California Care Premier (HMO - with Dental) Information"", ""POA ALADS California Care Premier (HMO - with Dental) Premiums"", ""Dental Plans (Optional)"", ""Delta Dental (DHMO) Information"", ""Delta Dental (DHMO) Premiums"", ""Delta Dental (DPO) Information"", ""Delta Dental (DPO) Premiums"", ""Delta Dental Additional Information"", ""Delta Dental Partner Site"", ""Vision Plans (Optional)"", ""City VSP Information"", ""City VSP Premiums"", ""City VSP Partnersites"", ""Life Insurance Plans""]","[""Parks"", ""Outdoors"", ""Neighborhoods"", ""Recreational Activities"", ""Street Maintenance"", ""Plan"", ""Fix"", ""Build"", ""Programs & Events"", ""Services"", ""Kids & Teens"", ""eCollection"", ""Police"", ""Fire-Rescue"", ""Lifeguards"", ""City Officials"", ""City Government""]",[],[],"" -468,https://hamiltonma.gov/events/event/police-training-gun-club-3/,Poor Data Source,Poor Data Source,"Police Training @ Gun Club - Town of Hamilton, MA","",200,"Town of Hamilton - Town of Hamilton, MA","[""Police Training @ Gun Club""]",[],"[""Stay Connected"", ""About Hamilton"", ""Contact"", ""Useful Links""]","[""Event Details"", ""Give Feedback""]","[""Where Do I Go For..."", ""Shop Local""]","[""Today: March 25, 2024"", ""Where Do I Go For... More""]","Main: 978-468-5570 DPW: 978-626-5227 Water: 978-626-5226 Email Translate A Decrease font size. A Reset font size. A Increase font size. Search Main: 978-468-5570 DPW: 978-626-5227 Water: 978-626-5226 Email Translate A Decrease font size. A Reset font size. A Increase font size. Search Main: 978-468-5570 DPW: 978-626-5227 Water: 978-626-5226 Email Translate A Decrease font size. A Reset font size. A Increase font size. Search Main: 978-468-5570 DPW: 978-626-5227 Water: 978-626-5226 Email Translate A Decrease font size. A Reset font size. A Increase font size. Search Translate A Decrease font size. A Reset font size. A Increase font size. Search Search MENU CLOSE History Government Your Government All Boards & Departments Meetings Minutes & Agendas Town Clerk Town Manager Town By-Laws Zoning By-Laws Voting and Elections Join A Committee/Board Where Do I Go For... Unsure of where to find the information you are looking for? Check our A-Z directory of all departments, applications and other general information. A-Z Directory Community Your Community Local Cable TV Cultural Council Hamilton Foundation Housing Authority School Directory Library Directory Latest News Shop Local For a small community, Hamilton offers an amazing amount of shops and businesses conveniently located just blocks from the commuter train line ready to serve you. Find a Local Business Events Quicklinks MENU CLOSE History Government Your Government All Boards & Departments Meetings Minutes & Agendas Town Clerk Town Manager Town By-Laws Zoning By-Laws Voting and Elections Join A Committee/Board Where Do I Go For... Unsure of where to find the information you are looking for? Check our A-Z directory of all departments, applications and other general information. A-Z Directory Community Your Community Local Cable TV Cultural Council Hamilton Foundation Housing Authority School Directory Library Directory Latest News Shop Local For a small community, Hamilton offers an amazing amount of shops and businesses conveniently located just blocks from the commuter train line ready to serve you. Find a Local Business Events Quicklinks MENU CLOSE History Government Your Government All Boards & Departments Meetings Minutes & Agendas Town Clerk Town Manager Town By-Laws Zoning By-Laws Voting and Elections Join A Committee/Board Where Do I Go For... Unsure of where to find the information you are looking for? Check our A-Z directory of all departments, applications and other general information. A-Z Directory Community Your Community Local Cable TV Cultural Council Hamilton Foundation Housing Authority School Directory Library Directory Latest News Shop Local For a small community, Hamilton offers an amazing amount of shops and businesses conveniently located just blocks from the commuter train line ready to serve you. Find a Local Business Events MENU CLOSE MENU CLOSE MENU CLOSE Your Government Where Do I Go For... Unsure of where to find the information you are looking for? Check our A-Z directory of all departments, applications and other general information. A-Z Directory Where Do I Go For... Unsure of where to find the information you are looking for? Check our A-Z directory of all departments, applications and other general information. A-Z Directory " -469,https://brookfieldil.gov/2021-04-28-regular-police-pension-board-meeting-agenda-for-posting/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -470,http://www.longbeach.gov/police/press-releases/charges-filed-on-carjacking-suspect--a-convicted-felon-on-post-release-community-supervision/,Media Bulletins,Agency-Published Resources,CHARGES FILED ON CARJACKING SUSPECT; A CONVICTED FELON ON POST RELEASE COMMUNITY SUPERVISION,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -471,http://www.longbeach.gov/police/press-releases/murder-1300-block-of-wesley-drive/,Media Bulletins,Agency-Published Resources,MURDER 1300 BLOCK OF WESLEY DRIVE,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -472,http://www.longbeach.gov/police/press-releases/this-labor-day-and-every-day-drive-sober-or-get-pulled-over/,Media Bulletins,Agency-Published Resources,"THIS LABOR DAY, AND EVERY DAY: DRIVE SOBER OR GET PULLED OVER","",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -473,https://coloradosprings.gov/police-department/article/news/fatal-crash-marksheffel-road-and-dublin-0,Media Bulletins,Agency-Published Resources,Fatal Crash Marksheffel Road and Dublin Boulevard | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""Fatal Crash Marksheffel Road and Dublin Boulevard""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[],"" -474,https://www.roundrocktexas.gov/city-departments/police/divisions/training-division/,Contact Info & Agency Meta,Info About Agencies,Training Division - City of Round Rock,"",200,403 Forbidden,"[""Training Division""]",[],"[""Training Division Contacts"", ""Round Rock Police Department""]","[""Lt. Woody Sitz"", ""Sgt. Aaron Mitchell"", ""Sgt. Jason Huf"", ""Site Search"", ""Follow Us""]",[],[],"Home News Jobs Calendar Menu Home News Jobs Calendar Police About 9-1-1 Divisions Community Affairs Community Events Community Services Open Carry Information Public Outreach Request Round Rock Operation Blue Santa Volunteer Information Criminal Investigations Division Office of the Chief Internal Affairs Reports and Accreditation Officer Oath of Office Patrol Division Special Operations Division Animal Control Graffiti Abatement Towing Information Traffic Victim Assistance Support Services Nuisance Alarm Unit Training Division Recruiting Officer Whites Memorial Contact RRPD Menu Police About 9-1-1 Divisions Community Affairs Community Events Community Services Open Carry Information Public Outreach Request Round Rock Operation Blue Santa Volunteer Information Criminal Investigations Division Office of the Chief Internal Affairs Reports and Accreditation Officer Oath of Office Patrol Division Special Operations Division Animal Control Graffiti Abatement Towing Information Traffic Victim Assistance Support Services Nuisance Alarm Unit Training Division Recruiting Officer Whites Memorial Contact RRPD Training Division Home » Departments » Police » Divisions » Training Division Facebook Instagram Phone-alt Comment-alt Exclamation Fingerprint For emergencies, call 911 Commander Melissa Grubbs Serving since 2003 mgrubbs@roundrocktexas.gov (512) 218-5586 The Training Division is responsible for developing and providing advanced continuing education to the Round Rock Police Department. It is our goal to provide the latest training in law enforcement knowledge and skills, enhance leadership abilities, and promote a solid ethical foundation to our workforce. We actively search for the most qualified police and civilian candidates to apply for our department. As a member you will work for one of the safest cities in America, and one of the most prestigious departments in the United States. You will have the opportunity to be highly trained, actively interact with citizens, and have a positive impact on a diverse community. View Training Calendar View Recruiting Site Training Division Contacts Lt. Woody Sitz Training Coordinator 512-218-5519 EMAIL Sgt. Aaron Mitchell Recruiting & Academy 512-341-3119 EMAIL Sgt. Jason Huf Facility, Range, and Continuing Education 512-671-2795 EMAIL Round Rock Police Department 2701 North Mays Street Round Rock, Texas 78665 Emergencies: 9-1-1 Non-emergency Line: 512-218-5500 File a Report: 512-218-5500 Victim Assistance: 512-341-3124 VIEW POLICE CONTACT INFO Home About Services Departments Businesses Menu Home About Services Departments Businesses Quick Links News Calendar Jobs City Council Sitemap Website Feedback Services Service Request Service Directory Payment Center Development/Permit Tracker Open Records Center Public Notices Stay Connected Staff Directory Mobile Apps Alerts Sign Up E-Subscribe City of Round Rock 221 East Main Street Round Rock, TX 78664 512-218-5400 Site Search Search Search Follow Us Facebook Home Youtube Instagram " -475,https://alpha.austin.gov/en/police-oversight/notice-of-complaint-related-to-2022-0486/,Complaints & Misconduct,Info About Officers,"","",200,"","","","","","","","" -476,https://alpha.austin.gov/government-business/connect-with-city/contribute-to-police-oversight/complaint-process/,Policies & Contracts,Info About Agencies,"","",200,"","","","","","","","" -477,https://delcopa.gov/sheriff/realestate.html,Not Criminal Justice Related,Not Criminal Justice Related,"Real Estate Department - Sheriff Sales - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Real Estate Department - Sheriff Sales""]","[""Fax the Warrant Division 610-891-5255""]","[""Frequently Asked Questions"", ""Sheriff's Office Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]","[""When do the Sheriff's Sales take place?"", ""Where are the Sheriff's Sales held?"", ""Can I obtain a list of the properties to be sold?"", ""If I see a property I want to buy, can I inspect it before the sale?"", ""How do I buy a property at Sheriff's Sale?"", ""What is hand money?"", ""When do I have to pay the rest of the money?"", ""Why does the Sheriff's Office highly recommend that you consult your own attorney for advice about how to purchase property at Sheriff's Sale?"", ""Do Sheriff's Sales differ from Tax Sales or Judicial Sales?""]",[],[],"" -478,https://delcopa.gov/publicrelations/releases/2021/pdf/phonescam.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -479,https://www.ci.rohnert-park.ca.us/city_hall/departments/development_services/copy_of_downtown/demo_downtown_news,Not Criminal Justice Related,Not Criminal Justice Related,Demo Downtown News - City of Rohnert Park,"",200,Just a moment...,"[""City of Rohnert Park""]","[""Rohnert Park""]","[""Demo Downtown News""]",[],[],[],"" -480,https://townofcampbellwi.gov/public-safety/police/contact-an-officer/,Contact Info & Agency Meta,Info About Agencies,Contact an Officer - Town of Campbell,"",200,"Town of Campbell - Welcome to the Town of Campbell, found on French Island between the Mississippi and Black Rivers, near La Crosse Wisconsin. Visitors will find a variety of things to do, including outdoor recreation, shopping, and restaurants.","[""Contact an Officer""]",[],"[""Quick Links"", ""About"", ""Government"", ""Services"", ""Public Safety""]",[],[],[],Town of Campbell: (608) 783-0050 Emergency Dial 911 Fire (608) 783-0561 Police: (608) 783-1050 Home About Calendar Businesses Employment Opportunities News Government Town Board Planning and Zoning Commission Board of Adjustment Street and Roads Committee Ordinances Taxes Zoning Elections and Voting Request for Proposals/Bids Services Recycling and Garbage Brush Chipping Library Maintenance Community Center Stormwater Management Recreational Landings Public Safety Fire Police Welcome Letter from Chief Stratman Contact an Officer Police Department Forms Register a Camera Transparency First Responders Permits & Forms Licenses Contact Contact an Officer The agency email is campbellpd@townofcampbellwi.gov Police Facebook Page – www.facebook.com/campbellpolice Chief Trisha Stratman – tstratman@townofcampbellwi.gov Officer Nathan Casper – ncasper@townofcampbellwi.gov Investigator Josh Czys – jczys@townofcampbellwi.gov Officer Shelby Palmer – spalmer@townofcampbellwi.gov Officer Robert Cale – rcale@townofcampbellwi.gov Karla Pleau (Admin) – kpleau@townofcampbellwi.gov Quick Links Calendar Recycling and Garbage Agendas and Minutes Report a Problem Zoning Ordinances Town of Campbell: (608) 783-0050 Emergency Dial 911 Fire (608) 783-0561 Police: (608) 783-1050 Home About Calendar Businesses Employment Opportunities News Government Town Board Planning and Zoning Commission Board of Adjustment Street and Roads Committee Ordinances Taxes Zoning Elections and Voting Request for Proposals/Bids Services Recycling and Garbage Brush Chipping Library Maintenance Community Center Stormwater Management Recreational Landings Public Safety Fire Police Welcome Letter from Chief Stratman Contact an Officer Police Department Forms Register a Camera Transparency First Responders Permits & Forms Licenses Contact Town of Campbell: (608) 783-0050 Emergency Dial 911 Fire (608) 783-0561 Police: (608) 783-1050 Home About Calendar Businesses Employment Opportunities News Government Town Board Planning and Zoning Commission Board of Adjustment Street and Roads Committee Ordinances Taxes Zoning Elections and Voting Request for Proposals/Bids Services Recycling and Garbage Brush Chipping Library Maintenance Community Center Stormwater Management Recreational Landings Public Safety Fire Police Welcome Letter from Chief Stratman Contact an Officer Police Department Forms Register a Camera Transparency First Responders Permits & Forms Licenses Contact Town of Campbell: (608) 783-0050 Emergency Dial 911 Fire (608) 783-0561 Police: (608) 783-1050 Town of Campbell: (608) 783-0050 Emergency Dial 911 Fire (608) 783-0561 Police: (608) 783-1050 Home About Calendar Businesses Employment Opportunities News Government Town Board Planning and Zoning Commission Board of Adjustment Street and Roads Committee Ordinances Taxes Zoning Elections and Voting Request for Proposals/Bids Services Recycling and Garbage Brush Chipping Library Maintenance Community Center Stormwater Management Recreational Landings Public Safety Fire Police Welcome Letter from Chief Stratman Contact an Officer Police Department Forms Register a Camera Transparency First Responders Permits & Forms Licenses Contact Contact an Officer The agency email is campbellpd@townofcampbellwi.gov Police Facebook Page – www.facebook.com/campbellpolice Chief Trisha Stratman – tstratman@townofcampbellwi.gov Officer Nathan Casper – ncasper@townofcampbellwi.gov Investigator Josh Czys – jczys@townofcampbellwi.gov Officer Shelby Palmer – spalmer@townofcampbellwi.gov Officer Robert Cale – rcale@townofcampbellwi.gov Karla Pleau (Admin) – kpleau@townofcampbellwi.gov Quick Links Calendar Recycling and Garbage Agendas and Minutes Report a Problem Zoning Ordinances -481,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/arrests/080421arrests.pdf,Arrest Records,Police & Public Interactions,"","",404,"","","","","","","","" -482,https://whitestown.in.gov/news/whitestown-police-detectives-arrest-local-man-on-child-molestation-charges/,Media Bulletins,Agency-Published Resources,Whitestown Police Detectives Arrest Local Man on Child Molestation Charges - Town of Whitestown,"",200,403 Forbidden,"[""Recent News"", ""Whitestown Police Detectives Arrest Local Man on Child Molestation Charges""]","[""Recent News Articles"", ""Whitestown Annual Easter Egg Hunt Returns"", ""Tips to Prepare for the Total Solar Eclipse in Whitestown"", ""Visit Us"", ""Contact Us"", ""Stay Connected"", ""How can we help?""]",[],[],[],[],"" -483,http://lafayettepolice.us/456/special-events,Not Criminal Justice Related,Not Criminal Justice Related,"Facilities | Lafayette, IN - Official Website",View the 3 different aquatic facilities that open to the public.,200,"Police Department | Lafayette, IN - Official Website",[],[],"[""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]","[""Castaway Bay"", ""Tropicanoe Cove""]",[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Plan Your Visit About Us Special Events Programs I Want To... Home Government Departments H - W Parks & Recreation Facilities Aquatics Special Events 9 2 1 2 Castaway Bay Explore the amenities and fees for the Castaway Bay Aquatic Center. Pooch Plunge Tropicanoe Cove Get ready to explore all the great amenities of Tropicanoe Cove. Event Days Castaway Bay Pooch Plunge Tropicanoe Cove Event Days Aquatics McAllister Center Rentals Zoo Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Plan Your Visit About Us Special Events Programs I Want To... Home Government Departments H - W Parks & Recreation Facilities Aquatics Special Events 9 2 1 2 Castaway Bay Explore the amenities and fees for the Castaway Bay Aquatic Center. Pooch Plunge Tropicanoe Cove Get ready to explore all the great amenities of Tropicanoe Cove. Event Days Castaway Bay Pooch Plunge Tropicanoe Cove Event Days Aquatics McAllister Center Rentals Zoo Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Plan Your Visit About Us Special Events Programs I Want To... Home Government Departments H - W Parks & Recreation Facilities Aquatics Special Events 9 2 1 2 Castaway Bay Explore the amenities and fees for the Castaway Bay Aquatic Center. Pooch Plunge Tropicanoe Cove Get ready to explore all the great amenities of Tropicanoe Cove. Event Days Castaway Bay Pooch Plunge Tropicanoe Cove Event Days Aquatics McAllister Center Rentals Zoo Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate " -484,https://www.clarkstown.gov/police/surveillance-camera-registration/,Resources,Agency-Published Resources,Surveillance Camera Registration – Town of Clarkstown,"",200," - Town of Clarkstown – New City, NY ","[""Surveillance Camera Registration""]","[""Town of Clarkstown"", ""Town of Clarkstown"", ""Thanks for signing up!"", ""Clarkstown eNews"", ""Government"", ""How Do I?"", ""Quick Links""]","[""Town of Clarkstown"", ""Town of Clarkstown"", ""Town of Clarkstown"", ""Sign up for our Newsletter"", ""© 2021 Town of Clarkstown""]",[],[],"[""Departments"", ""Sign Up"", ""Find"", ""Apply"", ""Report"", ""Pay For""]","+1 (845) 639-2000 10 Maple Ave., New City, NY Search Search Close this search box. Search Search Close this search box. Town of Clarkstown Town Hall Town Supervisor Town Leadership & Administration Town Council Meeting & Council Member Information Town Clerk Public Inquires & Compliance Highway Department Road Maintenance, Yard Waste & Leaf Pickup Town Calendar What’s Happening in Clarkstown Agenda & Minutes Town Board Agenda & Minutes Boards & Commissions Boards & Commissions Members, Agendas, Minutes News Recent Press Releases & Town News Archive Town Code Local Laws, Ordinances & Resolutions Town History Read About The Town’s History Departments Assessor Attorney Building Engineering and Facilities Management Justice Court Mini Trans Personnel Planning Police Purchasing Parks & Recreation How Do I? Sign Up Community Pass eAlerts Ready Clarkstown Find Agenda & Minutes Official Town Map Permits, Applications, Flyers Town Code Town History Town Zoning Map Apply Building Permits Certificates of Occupancy Conservation License Disabled Parking Permits Employment Foil Request Dog License Fire Permits Marriage License Nanuet Train Station Tax Exemption Report Crime Code Violation Flooding Garbage & Recycling Street Lights & Potholes Pay For View or Pay Taxes Recreation Programs Pay For Tickets Residents 311 Request Report, Submit, Track & View Service Requests Building Permits Electrical, Plumbing & Structural Permits Parks & Recreation Recreation Programs, Parks, Centers, Pools & More Animal Care & Control Domestic Animals & Wildlife Compliance Senior Citizens Senior Programs, Clubs & Calendar Town Code Local Laws, Ordinances & Resolutions Recycling Recycling Guidelines & Tips Town of Clarkstown 10 Maple Avenue New City, NY 10956 (845) 639-2000 Business Building Permits Electrical, Plumbing, or Structural Permits Tourism Map Clarkstown Tourism Map Town Code Local Laws, Ordinances & Resolutions Boards & Commissions Boards & Commissions Members, Agendas, Minutes Planning Board Projects Current Planning Board Projects Under Review New City Chamber of Commerce Nanuet Chamber of Commerce Town of Clarkstown 10 Maple Avenue New City, NY 10956 (845) 639-2000 Community Libraries Clarkstown Local Free Libraries Schools Clarkstown Local School Districts Utilities Water & Electric Local Support Organizations Experiencing Hardship or Need Help? Senior Citizens Senior Programs, Clubs & Calendar Volunteer Fire & Ambulance Local Volunteer First Responders Town of Clarkstown 10 Maple Avenue New City, NY 10956 (845) 639-2000 Grievance Day, May 24, 2022, For Procedures Click Here " -485,https://delcopa.gov/publicrelations/releases/2022/delcoartsweek.html,Not Criminal Justice Related,Not Criminal Justice Related,"The Arts Come Alive in Delco This Fall! - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""The Arts Come Alive in Delco This Fall!""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]","[""Delco Arts Week being held October 1 through October 9""]",[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play The Arts Come Alive in Delco This Fall! Home / Departments / Public Relations Releases / The Arts Come Alive in Delco This Fall! Released: September 29, 2022 Delco Arts Week being held October 1 through October 9 Delaware County Council Vice Chair Elaine Paul Schaefer joined members of the Delaware County Arts Consortium on State Street in Media on September 27 to present a resolution declaring October 1-9 to be the 4th annual Delco Arts Week. During this week, 65 different performances, exhibits, workshops, concerts, tours, and other events will be taking place at over 30 venues throughout Delaware County. “Delaware County is rich in culture, and we have many talented artists and performers who enhance the fabric of our community,” said Vice Chair Schaefer. “The arts are thriving in Delaware County, and Delco Arts Week brings an exciting assortment of art, music, theater, and dance, to our community.” Some of the events include productions at the Hedgerow Theater, Media Theatre, the Players Club of Swarthmore, and Villanova Theatre, performances by the Delaware County Symphony, cellist Jason Calloway, a Musical Instrument Petting Zoo along the Chester Waterfront, an Art Gallery at the Darlington Arts Center, free admission to the Brandywine River Museum of Art, an Arts on the Avenue Festival in Lansdowne, and more. A complete list of the events planned during Delco Arts Week can be found at http://delcoarts.org/ The Delaware County Arts Consortium, formed in 2009, has representatives from ten different Delaware County organizations and the Greater Philadelphia Cultural Alliance. They strive to advance the economic vitality of the nonprofit arts and culture community and promote the value of Delaware County’s cultural resources to the local community and beyond. The group has worked to create Delco Arts Week to showcase the arts in Delco and engage and introduce residents to the many unique artistic venues and experiences that Delaware County has to offer. Public Relations Navigation Press Releases County Newsletter Use of County Facility Form Questions about COVID-19 vaccines? Please call the Delaware County Health Department Wellness Line: 484-276-2100. Adrienne Marofsky, Director Government Center, 226A 201 W. Front St. Media, PA 19063 Phone: 610-891-4943 delcopr@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play " -486,https://spdblotter.seattle.gov/2013/05/02/mayor-council-signal-intent-to-site-and-build-new-police-station-for-north-precinct/,Media Bulletins,Agency-Published Resources,"Mayor, Council Signal Intent to Site and Build New Police Station for North Precinct - SPD Blotter","",200,403 Forbidden,"[""Mayor, Council Signal Intent to Site and Build New Police Station for North Precinct""]","[""Find Posts By Topic"", ""Featured Posts"", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],"Seattle.gov Choose a language: English English Google Translate may not accurately translate all content. Read disclaimer . For general City questions, please call 206-684-2489 . Tell us your requested language in English, and we can connect you with an interpreter. Continue Cancel Español Es posible que Google Translate no traduzca con precisión todo el contenido. Lea el descargo de responsabilidad . Si necesita ayuda en otro idioma, díganos en inglés nombre del idioma que necesita y lo conectaremos con un intérprete: 206-684-2489 Seguir Cancelar 中國語文 Google翻譯可能無法準確翻譯所有內容。 閱讀免責聲明 。 如果您需要翻譯,請用英語説出您所需要的語言,我們將爲你連接口譯員: 206-684-2489 繼續 取消 简体中文 Google翻译可能无法准确翻译所有内容。 阅读免责声明 。 如果您需要翻译,请用英语说出您所需要的语言,我们将为你连接口译员: 206-684-2489 继续 取消 Tiếng Việt Google Dịch có thể không dịch chính xác tất cả nội dung. Đọc tuyên bố từ chối trách nhiệm . Nếu quý vị cần hỗ trợ về ngôn ngữ, xin vui lòng cho chúng tôi biết ngôn ngữ quý vị cần hỗ trợ bằng tiếng Anh (ví dụ “Vietnamese”), chúng tôi sẽ kết nối quý vị với một thông dịch viên: 206-684-2489 Tiếp tục Huỷ bỏ русский язык Google Translate не может точно перевести весь контент. Прочтите отказ от ответственности . Если вам нужна языковая помощь, сообщите нам на английском, какой язык вам нужен, и мы свяжем вас с переводчиком: 206-684-2489 Продолжать Отмена Af-Soomaali Google Translate ayaan si sax ah u turjumi karin dhammaan waxyaabaha ku jira. Akhri afeef . Haddii aad u baahan tahay caawimaad luqadeed, fadlan noogu sheeg Ingiriisiga luqadda aad u baahan tahay, ka dib waxaan kugu xiri doonnaa turjubaan: 206-684-2489 Sii wad Jooji አማርኛ የጉግል ትርጉም ሁሉንም ይዘቶች በትክክል መተርጎም ላይችል ይችላል። ማስተባበያ አንብብ ፡፡ ኣስተርጓሚ ካስፈለግዎ የሚፈልጉትን ቋንቋ በእንግልዝኛ ይንገሩን፣ ከኣስተርጓሚ እናገናኝዎታለን። 206-684-2489 ቀጥል ሰርዝ 한국어 구글은 정확하게 모든 내용을 번역하지 않을 수 있습니다 번역. 읽기 면책 조항 . 언어지원이 필요한 경우, 필요한 언어를 영어로 말씀해 주시면 통역사와 연결해 드리겠습니다: 206-684-2489 계속하다 취소 Tagalog Maaaring hindi tumpak na isalin ng Google Translate ang lahat ng nilalaman. Basahin ang disclaimer . Para sa mga pangkalahatang katanungan sa Lungsod, mangyaring tawagan ang 206-684-2489 . Sabihin sa amin ang hiniling mong wika sa Ingles, at maikokonekta ka namin sa isang interpreter. Magpatuloy Kanselahin ภาษาไทย Google Translate อาจแปลเนื้อหาทั้งหมดไม่ถูกต้อง อ่านข้อจำกัดความรับผิดชอบ สำหรับคำถามทั่วไปเกี่ยวกับเมืองโปรดโทร 206-684-2489 บอกภาษาที่คุณต้องการเป็นภาษาอังกฤษและเราสามารถติดต่อคุณกับล่ามได้ ดำเนินการต่อ ยกเลิก 日本語 Google翻訳は、すべてのコンテンツを正確に翻訳するとは限りません. 免責事項をお読みください 。 市の一般的な質問については 206-684-2489 に電話してください。ご希望の言語を英語で教えていただければ、通訳をご案内いたします。 継続する キャンセル ភាសាខ្មែរ កម្មវិធីបកប្រែហ្គូហ្គោលមិនអាចបកប្រែមាតិកាទាំងអស់បានត្រឹមត្រូវទេ។ អានការបដិសេធ។ សម្រាប់សំណួរទូទៅរបស់ទីក្រុងសូមទូរស័ព្ទមក 206-684-2489 ។ ប្រាប់យើងពីភាសាដែលអ្នកស្នើសុំជាភាសាអង់គ្លេសហើយយើងអាចភ្ជាប់អ្នកជាមួយអ្នកបកប្រែភាសា។ បន្ត បោះបង់ ພາສາລາວ Google Translate ອາດຈະບໍ່ແປເນື້ອຫາທັງ ໝົດ ຢ່າງຖືກຕ້ອງ. ອ່ານປະຕິເສດ . ສຳ ລັບ ຄຳ ຖາມທົ່ວໄປຂອງເມືອງ, ກະລຸນາໂທຫາ 206-684-2489 . ບອກພວກເຮົາເປັນພາສາອັງກິດທີ່ທ່ານຮ້ອງຂໍ, ແລະພວກເຮົາສາມາດເຊື່ອມຕໍ່ທ່ານກັບນາຍແປພາສາ. ສືບຕໍ່ ຍົກເລີກ Українська Перекладач Google може не точно перекласти весь вміст. Прочитайте застереження . За загальними запитаннями про місто, будь ласка, телефонуйте 206-684-2489 . Розкажіть нам про вашу мову англійською мовою, і ми можемо зв’язати вас із перекладачем. Продовжуйте Скасувати Français Google Traduction peut ne pas traduire correctement tout le contenu. Lisez la clause de non-responsabilité . Pour des questions générales sur la ville, veuillez appeler le 206-684-2489 . Dites-nous votre langue souhaitée en anglais, et nous pourrons vous mettre en contact avec un interprète. Continuer Annuler " -487,https://www.coronadelmar.us/safes-cash-pricey-watches-and-jewelry-police-documents-reveal-items-stolen-in-rash-of/,Media Bulletins,Agency-Published Resources,"Safes, cash, pricey watches and jewelry — police documents reveal items stolen in rash of … | Corona del Mar California","",200,Corona del Mar California,"[""Safes, cash, pricey watches and jewelry — police documents reveal items stolen in rash of …""]","[""Menu"", ""Be First to Comment"", ""Subscribe"", """", """"]","[""Share this:"", ""Like this:"", ""Related"", ""Leave a Reply Cancel reply"", """"]",[],[],[],"" -488,https://www.knoxvilletn.gov/government/mayors_office/c_o_v_i_d-19___coronavirus_/stress_and_coping/knox_well/kid___parent_resources/general_adult_resources,Resources,Agency-Published Resources,General Adult Resources - City of Knoxville,covid19*,200,Just a moment...,"[""General Adult Resources"", """"]",[],[],[],[],[],Skip navigation {1} ##LOC[OK]## {1} ##LOC[OK]## {1} ##LOC[OK]## {1} ##LOC[OK]## -489,https://oceancitymd.gov/oc/ocean-city-police-captain-austin-retires-after-31-years-of-service/,Media Bulletins,Agency-Published Resources,"Ocean City Police Captain Austin Retires After 31 Years of Service – Town of Ocean City, Maryland","",200,"Town of Ocean City, Maryland – A Vibrant Coastal Resort Community",[],"[""Post navigation""]","[""Related posts""]",[],[],[],"" -490,https://www.rolesvillenc.gov/police,Contact Info & Agency Meta,Info About Agencies,"Police | Town of Rolesville, NC","",200,"Town of Rolesville, NC","[""Police""]","[""Support Menu"", ""Social Media"", ""Main navigation"", ""Social Media"", ""Footer""]",[],[],"[""Connect with us""]",[],"tab start Menu Departments Open submenu Your Government Open submenu Residents & Visitors Open submenu Business Open submenu Close submenu Departments Communications Economic Development Finance Open submenu Fire Human Resources Open submenu Parks & Recreation Open submenu Planning Open submenu Police Open submenu Public Works Open submenu Town Clerk Open submenu Town Management Close submenu Finance Bid Opportunities Doing Business with the Town Financial Documents Solid Waste Billing Close submenu Human Resources Benefits Employment Opportunities Frequently Asked Questions Close submenu Parks & Recreation Adopted Plans Athletics Open submenu Cultural Programs Open submenu Forms and Permits Open submenu Parks and Facilities Open submenu Program Scholarships Special Events Open submenu Sponsors Staff Directory Volunteers Wake County Senior Games Close submenu Athletics Adult Softball Equipment Swap Outdoor 3 on 3 Basketball Youth Baseball & Softball Youth Basketball Youth Flag Football Youth Soccer Close submenu Cultural Programs Visual Arts Performing Arts S.T.E.M./S.T.E.A.M. Fitness Senior Nature/Outdoors Day Camps Trips Family Activities Close submenu Forms and Permits Commercial Use Of Park Property Photography Permit Special Event Permits Close submenu Parks and Facilities Main Street Park Mill Bridge Nature Park Redford Place Park Community Center Greenways Future Facilities Town of Rolesville Park Rules Close submenu Special Events 4th of July Arbor Day Blood Drive Egg Rush Fall FunFest Holiday Tree Lighting Juneteenth Celebration Litter Sweep Memorial Day Movies at the Middle Music at Mill Bridge Shred Event Trail Art Veterans Day Community Outreach Close submenu Planning * Submittal Process * Frequently Asked Questions Helpful Links Land Development Ordinance Technical Review Commitee Forms and Applications Development Projects Land Use and Zoning What are ""Development Applications"" ? Adopted Policy Plans What's New? Plans in Progress Helpful Links Signs Permits Public Hearings Utility Permits Fees - Development Applications Traffic Impact Analysis Board of Adjustment Pre-Construction Meetings Planning Board Close submenu Police Community Outreach Community Resources House Check Requests Police Reports Recruitment Police Department Assessment Close submenu Public Works Solid Waste Open submenu Stormwater Open submenu Street Maintenance Close submenu Solid Waste Garbage and Recycling Loose Leaves Other Waste Yard Waste Close submenu Stormwater Stormwater Mapping Project Close submenu Town Clerk Public Records Request Public/Legislative Hearings Close submenu Your Government Agendas & Minutes Boards & Commissions Open submenu Capital Projects Open submenu Locations & Hours Meetings Broadcast Strategic Plan Code of Ordinances Close submenu Boards & Commissions Mayor's Message Board of Adjustment Parks & Recreation Advisory Board Planning Board Close submenu Capital Projects Town Campus Plans Close submenu Residents & Visitors Calendar Community Resources Open submenu New to Rolesville News Town Events Close submenu Community Resources Community Group Funding Food Security Public Transportation Things to Do Veterans Resources Open submenu Close submenu Veterans Resources Military Banners May 2023 Close submenu Business Economic Development Open submenu Development Services Main Street Vision Available Buildings & Sites Bid Opportunities Chamber of Commerce Close submenu Economic Development Small Business Resources Why Rolesville? tab end " -491,https://www.prescott-az.gov/services-safety/police/reporting/accident-reports-on-line/,Contact Info & Agency Meta,Info About Agencies,Prescott Police Department - City of Prescott AZ,"",200,Home - City of Prescott AZ,"[""Police""]","[""Prescott Police Department""]","[""Public Safety Services"", ""Contact Prescott Police""]","[""city of prescott"", ""Stay informed"", ""Quick Access"", ""citizen inquiry""]",[],[],Open toolbar Accessibility Accessibility Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset Sitemap Sitemap Accessibility Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset Sitemap Sitemap Pay Bill Employment City Code Residents Visitors Business Government Residents Visitors Business Government departments Search Search Pay Bill Employment City Code Residents Visitors Business Government Residents Visitors Business Government dept Search Search Search Search Close this search box. Search Search Departments Residents Visitors Business Government Residents Visitors Business Government Police Home Departments Prescott Police Department Prescott Police Department Pay Bill Employment City Code Residents Visitors Business Government Residents Visitors Business Government departments Search Search Pay Bill Employment City Code Residents Visitors Business Government Residents Visitors Business Government dept Search Search Search Search Close this search box. Search Search Departments Residents Visitors Business Government Residents Visitors Business Government Police Home Departments Prescott Police Department Prescott Police Department Pay Bill Employment City Code Residents Visitors Business Government Residents Visitors Business Government departments Search Search Pay Bill Employment City Code Residents Visitors Business Government Residents Visitors Business Government dept Search Search Search Search Close this search box. Search Search Departments Residents Visitors Business Government Residents Visitors Business Government Police Home Departments Prescott Police Department Prescott Police Department Pay Bill Employment City Code Residents Visitors Business Government Residents Visitors Business Government departments Search Search Pay Bill Employment City Code Residents Visitors Business Government Residents Visitors Business Government dept Search Search Search Search Close this search box. Search Search Departments Residents Visitors Business Government Residents Visitors Business Government Police Home Departments Prescott Police Department Prescott Police Department Pay Bill Employment City Code Residents Visitors Business Government Residents Visitors Business Government departments Search Search Pay Bill Employment City Code Residents Visitors Business Government Residents Visitors Business Government dept Search Search Search Search Close this search box. Search Search Departments Residents Visitors Business Government Residents Visitors Business Government Pay Bill Employment City Code Residents Visitors Business Government Residents Visitors Business Government departments Search Search Pay Bill Employment City Code Residents Visitors Business Government Residents Visitors Business Government dept Search Search Search Search Close this search box. Search Search Departments Residents Visitors Business Government Residents Visitors Business Government Pay Bill Employment City Code Residents Visitors Business Government Residents Visitors Business Government departments Search Search Pay Bill Employment City Code Residents Visitors Business Government Residents Visitors Business Government dept Search Search Search Search Close this search box. Search Search Departments Residents Visitors Business Government Residents Visitors Business Government Pay Bill Employment City Code Residents Visitors Business Government Residents Visitors Business Government departments Search Search Pay Bill Employment City Code Residents Visitors Business Government Residents Visitors Business Government dept Search Search Search Search Close this search box. Search Search Departments Residents Visitors Business Government Residents Visitors Business Government -492,https://alpha.austin.gov/es/police-oversight/formal-complaint-impartial-attitude-and-courtesy-40/,Complaints & Misconduct,Info About Officers,"","",200,"","","","","","","","" -493,https://delcopa.gov/controller/pdf/2020/dccwfinal-signed.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -494,https://www.antioch.il.gov/wpfb_file_category/commissions-police-and-fire-commission-agendas-2014-commissions-police-and-fire-commission-agendas-commissions-police-and-fire-commission-commissions/,Poor Data Source,Poor Data Source,"2014 - Antioch, IL","",200,"Home - Antioch, IL","[""Archives: 2014""]",[],"[""12-06-14 Police And Fire Agenda"", ""11-15-14 Police And Fire Agenda"", ""11-01-14 Police And Fire Agenda"", ""10-23-14 Police And Fire Agenda"", ""10-14-14 Police And Fire Agenda"", ""08-04-14 Police And Fire Agenda"", ""07-08-14 Police And Fire Agenda""]",[],[],[],Open toolbar Accessibility Tools Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset -495,https://alpha.austin.gov/es/police-oversight/2020-06-12-11/,Complaints & Misconduct,Info About Officers,"","",200,"","","","","","","","" -496,http://www.lafayettepolice.us/214/application-process,Policies & Contracts,Info About Agencies,"Application/Appointment Process | Lafayette, IN - Official Website",Learn about the application and appointment process for becoming a police officer in Lafayette.,200,"Police Department | Lafayette, IN - Official Website","[""Application/Appointment Process""]","[""The Lafayette Police Force is An Equal Opportunity Employer"", ""Application/Appointment Process""]","[""Appointment Steps"", ""Probationary Period"", ""Availability Constraints"", ""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Your LPD Career Opportunities Community Outreach Training Center How Do I… Application/Appointment Process The Lafayette Police Force is An Equal Opportunity Employer It is the policy of the City of Lafayette to provide equal opportunity to all employees and applicants without regard to race, sex, religion, national origin, age, sexual orientation, marital status, veteran status, or physical or mental disability. This same non-discriminatory consideration will guide all personnel actions including, but not limited to recruitment, hiring, training and promotion decisions in all job classifications. Furthermore, compensation, benefits, transfers, education or tuition assistance and social and recreational programs will be administered in a non-discriminatory fashion. Application/Appointment Process Applicants must submit a completed application via PoliceApp, along with all requested documentation to be considered eligible for the next written exam date. The test pool shall consist of those applicants taking the written aptitude test. Any applicant who fails to qualify at any phase of the application process may re-apply after sitting out one calendar year. Appointment Steps An applicant's appointment is conditional upon meeting the provisions for membership in the 1977 Police Pension and Disability Fund (PERF) under IC 36-8-8-1 et. seq. (IC 36-8-3-21) . After extending a conditional offer of employment to an applicant a physical examination and psychological evaluation will be completed (at no cost to the applicant) and results of those examinations will be presented 1st to the local Pension Board for their review and a brief interview with the applicant and finally to PERF for their approval. Approval from PERF can take up to 4 weeks. Probationary Period The employment of any applicant is considered probationary for a period of 1 year and that period may be extended for a period not to exceed 6 additional months, upon the recommendation of the Chief. Availability Constraints Prospective applicants should consider their availability to attend each step in the process prior to filing an application. Travel arrangements are the responsibility of the applicant. It is recommended that applicants complete military and educational obligations prior to applying to the department due to these constraints. Police App LPD Combine Day Salary & Benefits Moral Character Issues Police Officer Lateral Entry Program College Internship Program Career Opportunities Report a Crime Thank an Officer Stay Connected Alarm Reduction Contact Us 601 Columbia Street Lafayette, IN 47901 Phone: 765-807-1200 FAQs What is the number to the jail? Can you tell me if someone is wanted on warrant? How do I obtain a handgun permit? How can I request a street closure for a special event? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate " -497,https://www.knightdalenc.gov/departments/police/crime-prevention/crime-stoppers,Contact Info & Agency Meta,Info About Agencies,"Crime Stoppers | Town of Knightdale, NC","",200,"Town of Knightdale, NC","[""Crime Stoppers""]","[""Main navigation"", ""Social"", ""Footer Menu""]","[""Town of Knightdale, NC""]",[],[],[],"" -498,https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0255/,Complaints & Misconduct,Info About Officers,"","",200,"","","","","","","","" -499,https://www.sandiego.gov/department-document/commission-police-practices-makes-recommendations-san-diego-police-department%e2%80%99s,Policies & Contracts,Info About Agencies,"","",404,"","","","","","","","" -500,https://www.casperwy.gov/news/news/newsroom/casper_police_officer_involved_shooting,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -501,http://www.ryepolice.us/logs/police-logs-for-8-8-18-8-14-18,Dispatch Logs,Police & Public Interactions,Rye Police Department Police Logs for 8/8/18-8/14/18 - Rye Police Department,"",200,Rye Police Department Welcome to the Rye Police Department - Rye Police Department,"[""Police Logs for 8/8/18-8/14/18""]","[""Police Logs for 8/8/18-8/14/18""]","[""Navigation"", ""Follow Us"", ""Facebook"", ""Email Updates"", ""Storm Preparedness Guide""]",[],[],[], -502,https://delcopa.gov/planning/programsandinitiatives/heritagecommission/upcomingevents.html,Not Criminal Justice Related,Not Criminal Justice Related,Heritage Commission of Delaware County - Upcoming Events,"",200,"Delaware County, Pennsylvania","[""Heritage Commission of Delaware County - Upcoming Events""]","[""Upcoming Events""]","[""Planning Department Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Heritage Commission of Delaware County - Upcoming Events Home / Departments / Planning Department / Partners / Heritage Commission of Delaware County - Upcoming Events Upcoming Events All events and meetings are open to the public and are generally held on the first Tuesday of the month unless otherwise noted. April 2, 2024 Heritage Commission Meeting, 7 pm, Hybrid May 5, 2024 Heritage Commission Awards Ceremony- 1-3 pm, Redwood Community Center, Upland County Park June 2024 Visit to historic site, TBD No meetings July or August If you would like to attend via Zoom, please email cliffordk@co.delaware.pa.us. In person address: 2 W. Baltimore Avenue, Suite 202, Media, PA 19063 Planning Department Navigation Access the Data and Mapping Innovation Hub About Planning Calendar Current Projects Delaware County 2035 Demographic Data Development Review Forms Funding Green Space and Trails Project Mapping Municipal Programs & Initiatives Planning Education Publications Gina Burritt, Director Planning Department 2 W. Baltimore Avenue Suite 202 Media, PA 19063 Phone: 610-891-5200 Fax: 610-891-5203 Email: Planning_Department@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2023 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Heritage Commission of Delaware County - Upcoming Events Home / Departments / Planning Department / Partners / Heritage Commission of Delaware County - Upcoming Events Heritage Commission of Delaware County - Upcoming Events Home / Departments / Planning Department / Partners / Heritage Commission of Delaware County - Upcoming Events Heritage Commission of Delaware County - Upcoming Events Home / Departments / Planning Department / Partners / Heritage Commission of Delaware County - Upcoming Events " -503,https://www.mass.gov/doc/municipal-police-training-committee-mptc-open-meeting-notice-061522/download,Media Bulletins,Agency-Published Resources,"","",200,"","","","","","","","" -504,https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-1002/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -505,https://www.sandiego.gov/police/contact,Contact Info & Agency Meta,Info About Agencies,Contact | City of San Diego Official Website,"",200,City of San Diego Official Website,"[""City of San Diego Official Website"", ""Contact""]","[""Main navigation"", ""Leisure"", ""Resident Resources"", ""Doing Business"", ""Library"", ""Public Safety"", ""City Hall"", ""Liaisons"", ""Directory"", ""Footer"", ""Accessibility Tools""]",[],"[""Parks"", ""Outdoors"", ""Neighborhoods"", ""Recreational Activities"", ""Street Maintenance"", ""Plan"", ""Fix"", ""Build"", ""Programs & Events"", ""Services"", ""Kids & Teens"", ""eCollection"", ""Police"", ""Fire-Rescue"", ""Lifeguards"", ""City Officials"", ""City Government"", ""Pagination""]",[],[],"" -506,https://delcopa.gov/publicrelations/releases/2021/votebymail1018.html,Not Criminal Justice Related,Not Criminal Justice Related,"Municipal Election Vote-by-Mail Ballots Due to Arrive by Monday, October 18 - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Municipal Election Vote-by-Mail Ballots Due to Arrive by Monday, October 18""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]","[""Voters advised to disregard erroneous PA Department of State ballot mail dates""]",[],[],"" -507,https://dps.iowa.gov/dci-and-ames-police-department-investigate-suspicious-death,Media Bulletins,Agency-Published Resources,DCI and Ames Police Department Investigate Suspicious Death | Iowa Department of Public Safety,"February 21, 2021 AMES, Iowa - This is not a press release from the Iowa Department of Public Safety. It is being distributed on behalf of the Ames Police Department as a result of the Division of Criminal Investigation's assistance to local authorities in this case.",200,Iowa Department of Public Safety | Iowa Department of Public Safety,"[""Iowa Department of Public Safety"", ""DCI and Ames Police Department Investigate Suspicious Death""]",[],[],[],[],[],"Skip to main content Iowa Department of Public Safety DCI and Ames Police Department Investigate Suspicious Death Jason Tuttle Commander, Ames Police Department 515.239.5312 jason.tuttle@cityofames.org February 21, 2021 AMES, Iowa - This is not a press release from the Iowa Department of Public Safety. It is being distributed on behalf of the Ames Police Department as a result of the Division of Criminal Investigation's assistance to local authorities in this case. ABOUT THE IOWA DEPARTMENT OF PUBLIC SAFETY The Iowa Department of Public Safety (DPS) is the largest law enforcement agency in the state. It includes six divisions and several bureaus, all working together with local, state and federal government agencies and the private sector, to keep Iowa a safe place by following our core values: leadership, integrity, professionalism, courtesy, service and protection. Divisions within the Iowa DPS: Iowa Division of Criminal Investigation, Iowa Division of Narcotics Enforcement, Iowa State Patrol, Iowa State Fire Marshal Division, Iowa Division of Intelligence and Fusion Center, and Administrative Services Division. The Department of Public Safety is led by the Commissioner who is appointed by the Governor. Iowa Department of Public Safety 215 E 7th St Des Moines IA 50319 https://dps.iowa.gov Iowa Department of Public Safety DCI and Ames Police Department Investigate Suspicious Death Jason Tuttle Commander, Ames Police Department 515.239.5312 jason.tuttle@cityofames.org February 21, 2021 AMES, Iowa - This is not a press release from the Iowa Department of Public Safety. It is being distributed on behalf of the Ames Police Department as a result of the Division of Criminal Investigation's assistance to local authorities in this case. ABOUT THE IOWA DEPARTMENT OF PUBLIC SAFETY The Iowa Department of Public Safety (DPS) is the largest law enforcement agency in the state. It includes six divisions and several bureaus, all working together with local, state and federal government agencies and the private sector, to keep Iowa a safe place by following our core values: leadership, integrity, professionalism, courtesy, service and protection. Divisions within the Iowa DPS: Iowa Division of Criminal Investigation, Iowa Division of Narcotics Enforcement, Iowa State Patrol, Iowa State Fire Marshal Division, Iowa Division of Intelligence and Fusion Center, and Administrative Services Division. The Department of Public Safety is led by the Commissioner who is appointed by the Governor. Iowa Department of Public Safety 215 E 7th St Des Moines IA 50319 https://dps.iowa.gov " -508,http://www.longbeach.gov/police/press-releases/dui-checkpoint/,Media Bulletins,Agency-Published Resources,DUI Checkpoint,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 1/26/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: DUI CHECKPOINT NETS THREE ARRESTS Contact: Media Relations Detail (562) 570-5273 The Long Beach Police Department Traffic Section conducted a DUI/Driver’s License checkpoint on January 24, 2015, on northbound Cherry Avenue at 59th St., between the hours of 7:00 p.m. and 3:00 a.m. Checkpoints are placed in locations that have the greatest opportunity for achieving drunk and drugged driving deterrence and provide the greatest safety for officers and the public. DUI/Drivers License checkpoints have been shown to lower DUI deaths and injuries. A major component of these checkpoints are the deterrent effects it has on those who might drive drunk or drugged impaired, bringing about more awareness and encouraging everyone to use sober designated drivers. According to the National Highway Traffic Safety Administration (NHTSA), checkpoints have provided the most effective documented results of any of the DUI enforcement strategies, while also yielding considerable cost savings of $6 for every $1 spent. Ninety percent of California drivers approve of checkpoints. During the eight-hour operation, which was aided by Long Beach Police Explorers and Long Beach Search and Rescue, 1,219 vehicles passed through the checkpoint with 319 drivers being screened for driving under the influence and the following results: Three (3) Standardized Field Sobriety Tests conducted Three (3) drivers arrested for DUI Seven (7) drivers cited for unlicensed driving One (1) driver cited for suspended license Six (6) drivers cited for traffic violations One (1) vehicle stored The Long Beach Police Department will conduct a Driving Under the Influence (DUI) Saturation Patrol on January 30, 2015 in our ongoing commitment to lowering deaths and injuries upon our streets and highways. The checkpoint and saturation patrol are funded by a grant from the California Office of Traffic Safety, through the National Highway Traffic Safety Administration. Report Drunk Drivers – Call 9-1-1! This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -509,https://training.detroitmi.gov/departments/police-department/project-green-light-detroit/agreements,Media Bulletins,Agency-Published Resources,Agreements | City of Detroit,"Memorandum of Understanding Project Green Light Detroit Agreement This Memorandum of Understanding (“MOU”) is made and entered into as of [Date], by and among the City of Detroit Police Department (“DPD”), the City of Detroit acting by and through its Office of the Mayor (“City”), and [Company Name] (“Entity”). DPD, the City, and the Entity are individually referred to as a “Party” and jointly as “Parties.” RECITALS A. As historical data indicates, a sizable amount of criminal activity in Detroit takes place at businesses open late into the evening. In the first half of 2015, for instance, approximately 25% of violent crimes in Detroit reported between 10PM and 8AM took place within 500 feet of a gas station. In light of these and other statistics, on January 1, 2016, DPD and the City launched “Project Green Light Detroit,” a public-private-community effort centered on developing real-time surveillance connections between DPD and local businesses. B. “Project Green Light Detroit” launched with a pilot cohort of eight gasoline stations. As “Project Green Light Detroit Participants,” these eight stations all made firm commitments to provide for, install, and maintain high-quality cameras, robust lighting, and numerous pieces of “Project Green Light Detroit” signage, in addition to fulfilling other requirements in line with those set out in this MOU. In return, DPD monitors the stations’ cameras, allows the stations to leverage the “Project Green Light Detroit” brand, supports the stations through a city-wide media campaign, and organizes public safety meetings for the stations with community groups and DPD and City personnel. C. Looking forward, DPD and the City intend to increase the number of “Project Green Light Detroit Participants,” and to expand its scope to other entities, such as schools, retail, food service establishments, multi-family dwellings, and mixed-use developments. In so doing, DPD and the City aim to improve neighborhood safety, promote the revitalization and growth of local businesses, and strengthening DPD’s efforts to deter, identify, and solve crime. D. With the foregoing goals in mind, the Parties will enter into this MOU outlining the inclusion of the Entity as a “Project Green Light Detroit Participant.” ARTICLE I RESPONSIBILITIES OF THE ENTITY 1.1. Cameras. At the Entity’s sole cost and expense, the Entity will provide for, install, and maintain, with the aid of an installer approved by DPD and the City, a set of at least four (4) network-based (i.e., “IP”) surveillance cameras (“cameras”). Each camera will have an AXIS approved SD Card installed in the camera; the Entity will not remove, or cause to be removed, any such SD Card. All cameras will at all times meet the following minimum requirements and specifications; provided, however, that DPD and the City may at any time alter the minimum requirements and specifications related to the cameras, including, but not limited to, the exact number of cameras to be maintained: a) Coverage. All cameras will be positioned as determined by DPD and the City. Cameras positioned outdoors will cover all areas generally accessible by the public on and near the Entity’s property. Cameras positioned outdoors will also be positioned such that they will legibly capture the license plates of automobiles passing through the Entity’s property and such that the cameras are located away from obstructing light sources. Among the cameras positioned indoors, at least one (1) will directly face all regularly-used entrances of the Entity from the inside. b) Resolution. All cameras will produce a resolution of at least 1080p. c) Visibility. All cameras will produce clear videos with discernible images under all lighting conditions at all times of the day and night. All cameras will possess wide dynamic range capabilities and support both normal and low light environments. d) Durability. All cameras will be encompassed by IP66-rated encasing. e) Hardware. All cameras will feature RJ45 connectors, physical slots for SD/SHDC storage cards, and edge storage capabilities. All cameras will meet the specifications as determined by DPD. f) Brand and Model. All cameras will be manufactured by brands compatible with DPD’s surveillance software provider. All camera brands and models will be approved by DPD and the City. 1.2. Network. At the Entity’s sole cost and expense, the Entity will provide for a high-speed internet connection capable of consistently producing upload speeds at all times of at least ten (10) megabytes per second. At the Entity’s sole cost and expense, the Entity will also provide for a network switch that will be approved by DPD and the City. Additionally, the Entity will authorize its vendor to provide information and account review access to DPD should the Entity be in arrears to the vendor. 1.3. Storage. At the Entity’s sole cost and expense, the Entity will ensure that footage from all cameras is stored on an Axis approved SD/SDHC card, and for at least thirty (30) days via a network-attached storage device (“NAS”) or cloud-based storage that will be compatible with DPD’s surveillance software provider. 1.4. Cloud Subscription. At the Entity’s sole cost and expense, the Entity will continuously provide for any cloud-related subscription services required to connect the cameras to DPD’s surveillance software provider. Additionally, the Entity will authorize its vendor to provide information and account review access to DPD should the Entity be in arrears to the vendor. 1.5. Lighting. At the Entity’s sole cost and expense, the Entity will provide for, install, and maintain external lighting, with the aid of an installer approved by DPD and the City, that will at all times meet the following minimum requirements, standards, and specifications, unless otherwise agreed to by the Parties: a) Illumination Generally. The Entity’s external lighting willfully and continuously illuminate all property areas generally accessible by the public in accordance with the footcandle requirements set under subsection (b) below; provided, however, that the illumination requirements set under subsection (b) may, if a variance is requested and with the consent of all Parties, be modified by Appendix A to this MOU. The Entity’s external lighting will provide sufficient lighting so that all cameras produce clear videos with discernible images at all times of the day and night. b) Illumination Requirements. The Entity will be designated, in the sole discretion of DPD and the City, a “Gas Station”, a “Small Parking Lot Entity,” or a “Large Parking Lot Entity.” A “Small Parking Lot Entity” is an establishment that has an uncovered parking area of less than 20 parking spots. A “Large Parking Lot Entity” is an establishment that has an uncovered parking area of more than 20 parking spots. Depending on its designation, the Entity will ensure that, in all outdoor areas frequented by members of the general public, its external lighting averages a horizontal illuminance level, at grade, according to the following standards: For a “Gas Station,” at least twenty (20) footcandles in all outdoor areas; For a “Small Parking Lot Entity,” at least fifteen (15) footcandles. The 15 footcandle requirement is limited to the parking area; the entrance area must maintain a 20 footcandle footprint. For a “Large Parking Lot Entity,” at least ten (10) footcandles. The 10 footcandle requirement is limited to the parking area; the entrance area must maintain a 20 footcandle footprint. External lighting at all other property areas will average a horizontal illuminance, at grade, of at least five (5) footcandles, including at the Entity’s property line. If the Entity believes that its establishment maintains adequate lighting, but it does not meet the illumination requirements outlined in this subsection, it may request a variance from DPD. The decision whether to grant a variance will be made by DPD in its sole discretion. c) Other. The Entity’s external lighting will meet ASHRAE/IESNA 90.1 2013 standards. The Entity’s external lighting will be composed of components listed on the DesignLights Consortium Qualified Products List. The light uniformity ratio on the Entity’s property will be no greater than four-to-one (4:1). 1.6. Electrical. At the Entity’s sole cost and expense, the Entity will provide for a supply of electricity that will at all times ensure for the continuous operation of all the Entity’s cameras and external lighting. 1.7. Signs and Green Light. At the Entity’s sole cost and expense, the Entity will provide for, install, and maintain, with the aid of an installer approved by DPD and the City, the following external signs and fixtures: a) Green Light. The Entity will provide for, install, and maintain one (1) green light (flashing or steady glow), approved by DPD and the City, for external placement in a location visible from passerby vehicles 24 hours a day. 1) For multi-unit temporary or permanent residential facilities, a single flashing green light is allowed, multiple lights must be approved by DPD. 2) For locations determined to be a “corridor,” no green light will be installed. The alternate usage of the Illuminated Corridor Sign will be required, the number and placement of which will be determined by the City. b) Wall Sign. The Entity will provide for, install, and maintain one (1) aluminum sign affixed to the Entity’s exterior wall in a location prominently visible to the general public. The sign will measure 18” by 24” and feature the “Project Green Light Detroit” logo. 1) For locations determined to be a plaza, one (1) exterior wall sign will be required, unless additional wall signs are deemed necessary based on the plaza’s size. Generally, any plaza with more than four (4) store fronts will require one (1) wall sign at each end. 2) For corridors, Illuminated Corridor Signs will be utilized, not the aluminum exterior wall signs. The number and placement of which will be determined by the City. c) Flag Signs. The Entity will provide for, install, and maintain a set of aluminum two-sided flag signs. The need for, and exact number of signs needed, will be determined by DPD and the City, and will be affixed to the Entity’s exterior walls in locations prominently visible to the general public. The signs will measure 12” by 18” and feature the “Project Green Light Detroit” logo on both sides. d) Door Decals. The Entity will provide for, install, and maintain one (1) window decal affixed to each side of any door commonly utilized by the public or by residents of a facility or location. The decals will measure 5” by 5” or 7” by 22” and feature the “Project Green Light Detroit” logo. e) Generally. The specifications and installation locations of the green light and all other signs relating to the Entity’s participation including, but not limited to, all signs expressly discussed in this MOU and all other signs featuring the text “Project Green Light Detroit” or the “Project Green Light Detroit” logo and related trade dress, will be approved by DPD and the City. 1.8. Access. The Entity will allow DPD to remotely access live and recorded video footage from all cameras at all times. 1.9. Clear View. The Entity will ensure that its windows and doors are, at all times, not obstructed by objects, fixtures, or signs such that there will be a clear view into, and out from, the Entity, as determined by DPD and the City. The Entity will also ensure that there are no obstructing objects, fixtures, or signs limiting the views of any cameras, or the presentation of any signs, provided for under this MOU. 1.10. Partner is responsible for any and all expenses incurred due to program changes or equipment updates and for bringing the site into compliance. 1.11. At any time, DPD and/or the City may, in their sole discretion, determine that the technical specifications outlined in Article 1.1, 1.2, 1.3, 1.4, or 1.5 of this MOU warrant revision. If DPD and/or the City conclude that such technical specifications warrant revision, DPD shall provide the Entity with the revised specifications as determined by DPD and/or the City. The Entity will implement those revised specifications within thirty (30) days of DPD providing the revised specifications. 1.12. If the Entity fails to comply with any of the provisions of this Article, DPD and/or the City may, in their sole discretion, immediately terminate this MOU and the Entity’s participation in the Project Green Light program. ARTICLE II SURVEILLANCE, MEETINGS, AND PATROLS 2.1. Surveillance. At DPD’s discretion, it will monitor the Entity’s cameras, including, but not limited to, during emergencies and other exigent circumstances. In the event a 9-1-1 call is placed by the Entity to DPD, DPD will make its best effort to monitor the Entity’s cameras until DPD deems that the premises are secure. This MOU does not oblige DPD to monitor the Entity’s cameras at any time. 2.2. Meetings. At DPD’s discretion, the Entity, a designated DPD representative, City personnel, and community members may meet to discuss public safety issues concerning the Entity and its surrounding neighborhood. 2.3. Patrols. At DPD’s discretion based on the totality of circumstances, DPD may coordinate visits that may encompass, but are not limited to, the following: entering into the Entity, signing in at the Entity, patrolling parking lots and other parts of the Entity’s property, engaging loiterers, and working with Entity employees for the purpose of furthering law enforcement efforts. ARTICLE III TERM AND TERMINATION 3.1. On an annual basis, if there are changes to the MOU, DPD will provide notice to participants via email. At that time, participants will have the opportunity to accept or provide written objections to said changes. Failure to renew the MOU shall be grounds for termination of participation in the Project Green Light partnership. Notwithstanding the foregoing, however, this MOU will remain in existence, with respect to all Parties, until and unless it is superseded by a different agreement, subject to a change in local law, or terminated expressly by any Party. Any Party may terminate this MOU without cause with thirty (30) days’ written notice. DPD and the City may terminate this MOU with cause so long as reasonable notice is given, and may at any time terminate this MOU if DPD and/or the City believe, in their sole discretion, that the Entity is failing to abide by the terms of this MOU; is acting in bad faith; or is not in compliance with applicable laws, rules, or regulations. In the event this MOU is terminated, the Entity will immediately remove any and all sign or decals affiliated with “Project Green Light Detroit,” including the light(s) and sign(s) or decals as described under Article I of this MOU. No changes may be made to this MOU unless agreed to by all Parties. ARTICLE IV MISCELLANEOUS 4.1. Disclaimers. This MOU does not create a joint venture or legal partnership among the Parties. No Party has the authorization or right to bind any other Party to any obligation without such Party’s express written consent. This MOU does not make the Entity a state actor or a non-state actor acting under the color of law. The purpose of this MOU is to assist the Parties in coordinating their activities by providing a written memorandum of their intentions stated in good faith and with as much accuracy as possible. It is not the intent of the Parties that this document will constitute a contract or provide the basis for a legal claim by any Party. Any obligations under this MOU requiring approval by the City Council are contingent on the approval of the City Council. 4.2. Assignment and Subcontracts. No Party will have the right, power, or authority to assign this MOU, or any portion of this MOU, or to delegate or subcontract any of its duties or obligations arising hereunder, either voluntarily or involuntarily, or by operation of law, without the prior written approval of the other Parties. APPENDIX A TO MEMORANDUM OF UNDERSTANDING PROJECT GREEN LIGHT DETROIT AGREEMENT All Parties hereby agree that the Illumination Requirements provided for in subsection 1.5(b) of the Project Green Light MOU shall be modified to provide that Entity shall not be required to maintain the required horizontal illuminance level in the following areas of its property: 1. 2. 3. 4. 5.",200,City of Detroit | Opportunity Rising,"[""Agreements""]","[""Top Links"", ""Site Menu"", ""Memorandum of Understanding Project Green Light Detroit Agreement""]","[""Tier One Installer Agreement"", ""Corridor Agreement"", ""Tier Two Installer Agreement"", ""Partnership Agreement""]","[""CONTACTS"", ""Sections""]",[],[],"" -510,https://www.antioch.il.gov/wpfb-file/10-11-11-police-and-fire-agenda-pdf-5/,Poor Data Source,Poor Data Source,"10-11-11 Police And Fire Agenda - Antioch, IL",10 11 police and fire agenda pdf commissions commission agendas 2011 2017 05 17 08 41 32 0000,200,"Home - Antioch, IL","[""10-11-11 Police And Fire Agenda""]",[],[],[],[],[],Open toolbar Accessibility Tools Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset -511,http://cityofcanalfulton-oh.gov/police-department-hiring-entry-level-police-officer/,Training & Hiring Info,Info About Officers,"","",404,"","","","","","","","" -512,https://police.crystalmn.gov/r_e_s_i_d_e_n_t/public_works,Not Criminal Justice Related,Not Criminal Justice Related,Public Works - City of Crystal,Links and information related to the City of Crystal Public Works Department.,200,Just a moment...,"[""Public Works""]","[""Crystal Public Works""]","[""Sign up for a city newsletter or notification."", ""City Hall"", ""Regular Hours:""]","[""Monday - Friday""]",[],[],"" -513,https://www.ci.plymouth.mi.us/government/departments/police/history,Not Criminal Justice Related,Not Criminal Justice Related,"History - City of Plymouth, MI","",200,Just a moment...,"[""History""]",[],[],[],[],[],"" -514,https://rexburg.us/police-ask-for-help-finding-man-who-left-for-work-and-hasnt-been-seen-since/,Media Bulletins,Agency-Published Resources,"","",522,"","","","","","","","" -515,https://spdblotter.seattle.gov/2014/12/17/police-increasing-patrols-after-early-morning-gunfire-near-south-seattle-school/,Media Bulletins,Agency-Published Resources,Police Increasing Patrols After Early Morning Gunfire Near South Seattle School - SPD Blotter,"",200,403 Forbidden,"[""Police Increasing Patrols After Early Morning Gunfire Near South Seattle School""]","[""Find Posts By Topic"", ""Featured Posts"", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],"Seattle.gov Choose a language: English English Google Translate may not accurately translate all content. Read disclaimer . For general City questions, please call 206-684-2489 . Tell us your requested language in English, and we can connect you with an interpreter. Continue Cancel Español Es posible que Google Translate no traduzca con precisión todo el contenido. Lea el descargo de responsabilidad . Si necesita ayuda en otro idioma, díganos en inglés nombre del idioma que necesita y lo conectaremos con un intérprete: 206-684-2489 Seguir Cancelar 中國語文 Google翻譯可能無法準確翻譯所有內容。 閱讀免責聲明 。 如果您需要翻譯,請用英語説出您所需要的語言,我們將爲你連接口譯員: 206-684-2489 繼續 取消 简体中文 Google翻译可能无法准确翻译所有内容。 阅读免责声明 。 如果您需要翻译,请用英语说出您所需要的语言,我们将为你连接口译员: 206-684-2489 继续 取消 Tiếng Việt Google Dịch có thể không dịch chính xác tất cả nội dung. Đọc tuyên bố từ chối trách nhiệm . Nếu quý vị cần hỗ trợ về ngôn ngữ, xin vui lòng cho chúng tôi biết ngôn ngữ quý vị cần hỗ trợ bằng tiếng Anh (ví dụ “Vietnamese”), chúng tôi sẽ kết nối quý vị với một thông dịch viên: 206-684-2489 Tiếp tục Huỷ bỏ русский язык Google Translate не может точно перевести весь контент. Прочтите отказ от ответственности . Если вам нужна языковая помощь, сообщите нам на английском, какой язык вам нужен, и мы свяжем вас с переводчиком: 206-684-2489 Продолжать Отмена Af-Soomaali Google Translate ayaan si sax ah u turjumi karin dhammaan waxyaabaha ku jira. Akhri afeef . Haddii aad u baahan tahay caawimaad luqadeed, fadlan noogu sheeg Ingiriisiga luqadda aad u baahan tahay, ka dib waxaan kugu xiri doonnaa turjubaan: 206-684-2489 Sii wad Jooji አማርኛ የጉግል ትርጉም ሁሉንም ይዘቶች በትክክል መተርጎም ላይችል ይችላል። ማስተባበያ አንብብ ፡፡ ኣስተርጓሚ ካስፈለግዎ የሚፈልጉትን ቋንቋ በእንግልዝኛ ይንገሩን፣ ከኣስተርጓሚ እናገናኝዎታለን። 206-684-2489 ቀጥል ሰርዝ 한국어 구글은 정확하게 모든 내용을 번역하지 않을 수 있습니다 번역. 읽기 면책 조항 . 언어지원이 필요한 경우, 필요한 언어를 영어로 말씀해 주시면 통역사와 연결해 드리겠습니다: 206-684-2489 계속하다 취소 Tagalog Maaaring hindi tumpak na isalin ng Google Translate ang lahat ng nilalaman. Basahin ang disclaimer . Para sa mga pangkalahatang katanungan sa Lungsod, mangyaring tawagan ang 206-684-2489 . Sabihin sa amin ang hiniling mong wika sa Ingles, at maikokonekta ka namin sa isang interpreter. Magpatuloy Kanselahin ภาษาไทย Google Translate อาจแปลเนื้อหาทั้งหมดไม่ถูกต้อง อ่านข้อจำกัดความรับผิดชอบ สำหรับคำถามทั่วไปเกี่ยวกับเมืองโปรดโทร 206-684-2489 บอกภาษาที่คุณต้องการเป็นภาษาอังกฤษและเราสามารถติดต่อคุณกับล่ามได้ ดำเนินการต่อ ยกเลิก 日本語 Google翻訳は、すべてのコンテンツを正確に翻訳するとは限りません. 免責事項をお読みください 。 市の一般的な質問については 206-684-2489 に電話してください。ご希望の言語を英語で教えていただければ、通訳をご案内いたします。 継続する キャンセル ភាសាខ្មែរ កម្មវិធីបកប្រែហ្គូហ្គោលមិនអាចបកប្រែមាតិកាទាំងអស់បានត្រឹមត្រូវទេ។ អានការបដិសេធ។ សម្រាប់សំណួរទូទៅរបស់ទីក្រុងសូមទូរស័ព្ទមក 206-684-2489 ។ ប្រាប់យើងពីភាសាដែលអ្នកស្នើសុំជាភាសាអង់គ្លេសហើយយើងអាចភ្ជាប់អ្នកជាមួយអ្នកបកប្រែភាសា។ បន្ត បោះបង់ ພາສາລາວ Google Translate ອາດຈະບໍ່ແປເນື້ອຫາທັງ ໝົດ ຢ່າງຖືກຕ້ອງ. ອ່ານປະຕິເສດ . ສຳ ລັບ ຄຳ ຖາມທົ່ວໄປຂອງເມືອງ, ກະລຸນາໂທຫາ 206-684-2489 . ບອກພວກເຮົາເປັນພາສາອັງກິດທີ່ທ່ານຮ້ອງຂໍ, ແລະພວກເຮົາສາມາດເຊື່ອມຕໍ່ທ່ານກັບນາຍແປພາສາ. ສືບຕໍ່ ຍົກເລີກ Українська Перекладач Google може не точно перекласти весь вміст. Прочитайте застереження . За загальними запитаннями про місто, будь ласка, телефонуйте 206-684-2489 . Розкажіть нам про вашу мову англійською мовою, і ми можемо зв’язати вас із перекладачем. Продовжуйте Скасувати Français Google Traduction peut ne pas traduire correctement tout le contenu. Lisez la clause de non-responsabilité . Pour des questions générales sur la ville, veuillez appeler le 206-684-2489 . Dites-nous votre langue souhaitée en anglais, et nous pourrons vous mettre en contact avec un interprète. Continuer Annuler " -516,https://coloradosprings.gov/police-department/article/news/multiple-arrests-internet-crimes-against,Media Bulletins,Agency-Published Resources,Multiple Arrests by Internet Crimes Against Children Task Force | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""Multiple Arrests by Internet Crimes Against Children Task Force""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[],"" -517,https://www.lynchburgvapolice.gov/news-updates/2124/,Media Bulletins,Agency-Published Resources,"","",404,"","","","","","","","" -518,https://www.mass.gov/event/2022-pittsfield-police-department-open-house-5-pm-2022-01-11t170000-0500-2022-01-11t180000-0500,Resources,Agency-Published Resources,2022 Pittsfield Police Department Open House - 5 PM | Mass.gov,"",200,Mass.gov,"[""2022 Pittsfield Police Department Open House - 5 PM""]","[""Overview of 2022 Pittsfield Police Department Open House - 5 PM"", ""Additional Resources for 2022 Pittsfield Police Department Open House - 5 PM"", ""Participating Organizations"", ""Help Us Improve Mass.gov with your feedback""]",[],[],[],[],"" -519,https://brookfieldil.gov/publication/july-1-2020-board-of-fire-and-police-commissioners/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -520,https://delcopa.gov/sustainability/pdf/raise/potentialeconomicimptwaterfront.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"404 - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert " -521,https://www.providenceri.gov/police/explorers-program/attention/,Poor Data Source,Poor Data Source,City of Providence Attention - City of Providence,"",200,Sucuri WebSite Firewall - Access Denied,"[""Attention""]","[""Share this story"", ""Providence City Hall"", ""Follow Us on Social Media:""]","[""City Of Providence"", ""Mayor Brett Smiley"", ""SIGN UP FOR OUR WEEKLY E-NEWS | Haga clic aquí para español"", ""Lists *""]",[],[],[],"Skip To Menu Skip To Content Skip To Accessibility Options Language Language Arabic Chinese (Traditional) English Khemer Portuguese Spanish City Of Providence Mayor Brett Smiley Search Accessibility City Of Providence Mayor Brett Smiley Search Accessibility City Of Providence Mayor Brett Smiley City Of Providence Mayor Brett Smiley Search Accessibility CITY HALL I Want to… Mayor’s Office Departments City Council Code of Ordinances More Job Opportunities DOING BUSINESS Construction Ethics Purchasing – Open RFPs Running a Business Starting a Business EVENTS NEWS PVD 311 EXPLORE Explore Providence Providence Parks Providence Recreation CITY HALL I Want to… Mayor’s Office Departments City Council Code of Ordinances More Job Opportunities DOING BUSINESS Construction Ethics Purchasing – Open RFPs Running a Business Starting a Business EVENTS NEWS PVD 311 EXPLORE Explore Providence Providence Parks Providence Recreation PVD 311 CITY HALL I Want to … MAYOR BRETT P. SMILEY Departments City Council Find a Meeting Agenda Code of Ordinances More Job Opportunities DOING BUSINESS Construction Ethics Running a Business Starting a Business Purchasing EVENTS NEWS EXPLORE Explore Providence Parks Recreation ACCESSIBILITY Attention Attention Share this story email icon. Click to share on email twitter icon. Click to share on twitter facebook icon. Click to share on facebook linkedIn Icon. Click to share on LinkedIn Attention Attention Share this story email icon. Click to share on email twitter icon. Click to share on twitter facebook icon. Click to share on facebook linkedIn Icon. Click to share on LinkedIn Attention Share this story email icon. Click to share on email twitter icon. Click to share on twitter facebook icon. Click to share on facebook linkedIn Icon. Click to share on LinkedIn Share this story email icon. Click to share on email twitter icon. Click to share on twitter facebook icon. Click to share on facebook linkedIn Icon. Click to share on LinkedIn SIGN UP FOR OUR WEEKLY E-NEWS | Haga clic aquí para español Email * Lists * City News Zip * Providence City Hall 401-680-5000 25 Dorrance Street Providence, Rhode Island 02903 Get Directions For press inquires, click here. Follow Us on Social Media: Facebook Icon Twitter Icon Instagram Icon SIGN UP FOR OUR WEEKLY E-NEWS | Haga clic aquí para español Email * Lists * City News Zip * Providence City Hall 401-680-5000 25 Dorrance Street Providence, Rhode Island 02903 Get Directions For press inquires, click here. Follow Us on Social Media: Facebook Icon Twitter Icon Instagram Icon SIGN UP FOR OUR WEEKLY E-NEWS | Haga clic aquí para español Email * Lists * City News Zip * Providence City Hall 401-680-5000 25 Dorrance Street Providence, Rhode Island 02903 Get Directions For press inquires, click here. Follow Us on Social Media: Facebook Icon Twitter Icon Instagram Icon SIGN UP FOR OUR WEEKLY E-NEWS | Haga clic aquí para español Email * Lists * City News Zip * SIGN UP FOR OUR WEEKLY E-NEWS | Haga clic aquí para español Email * Lists * City News Zip * " -522,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/summary/021121summary.pdf,Dispatch Logs,Police & Public Interactions,"","",404,"","","","","","","","" -523,https://piedmont.ca.gov/services___departments/police/services/social_media,Contact Info & Agency Meta,Info About Agencies,Social Media - City of Piedmont,"",200,Just a moment...,"[""City of Piedmont""]",[],[],[],[],[],"Skip navigation City of Piedmont How Do I? {1} ##LOC[OK]## Services Building Inspections Building Permits Business Licenses Facility Rentals Garbage, Recycling, and Organic Waste Parks and Fields Permits & Licenses Preschool Recreation Programs Schoolmates Street Sweeping Departments Careers & Human Resources City Administrator City Clerk Finance Fire Planning & Building Police Public Works Recreation Government Americans with Disabilities Act Charter & City Code City Council Commissions & Committees Elections Forms & Applications Meeting Videos Bid and Proposal Opportunities City Projects News & Events News Events Stay Informed KCOM-TV About Piedmont Federal, State, & County Representatives Community Resources Schools Houses of Worship Public Transit Utilities Directions to City Hall Services Building Inspections Building Permits Business Licenses Facility Rentals Garbage, Recycling, and Organic Waste Parks and Fields Permits & Licenses Preschool Recreation Programs Schoolmates Street Sweeping Departments Careers & Human Resources City Administrator City Clerk Finance Fire Planning & Building Police Public Works Recreation Government Americans with Disabilities Act Charter & City Code City Council Commissions & Committees Elections Forms & Applications Meeting Videos Bid and Proposal Opportunities City Projects News & Events News Events Stay Informed KCOM-TV About Piedmont Federal, State, & County Representatives Community Resources Schools Houses of Worship Public Transit Utilities Directions to City Hall Skip Sidebar Navigation Last item for navigation City of Piedmont » Departments » Police » Services » Social Media Share This Print Page A+ Increase Font A- decrease font City of Piedmont 120 Vista Avenue Piedmont, CA 94611 (510) 420-3040 Home Services & Departments Government Community & Events About Piedmont Calendar Stay Connected Youtube Facebook Page Twitter Page Instagram Page Linkedin Page City of Piedmont | All Rights Reserved | Powered by CivicLive | © 2024 Civiclive. Skip navigation City of Piedmont How Do I? City of Piedmont How Do I? City of Piedmont How Do I? City of Piedmont How Do I? " -524,https://gonzalesca.gov/services/police/how-do-i/learn-what-crime-rate-gonzales,Resources,Agency-Published Resources,Learn what the crime rate is in Gonzales? | City of Gonzales,"Official City of Gonzales, CA website. Find the latest news, events, and information for residents and businesses....",200,City of Gonzales,"[""The City of Gonzales, California"", ""The City of Gonzales, California""]","[""Top menu"", ""Learn what the crime rate is in Gonzales?""]",[],"[""CITY OF GONZALES""]",[],[],"" -525,https://council.seattle.gov/2022/08/19/west-seattle-bridge-police-recruitment-and-incentives-bill-passes-abortion-access-bill-signing-metropolitan-parks-district-public-hearing-small-tenant-improvement-fund-seattle-restored-program/,Policies & Contracts,Info About Agencies,West Seattle Bridge; Police Recruitment and Incentives Bill Passes; Abortion Access Bill Signing; Metropolitan Parks District Public Hearing; Small Tenant Improvement Fund; Seattle Restored Program – Landlords and Artists/Entrepreneurs Can Apply; King County Assessor Valuations and Appeals; No Newsletter Next Two Weeks - Seattle City Council Blog,"",200,403 Forbidden,[],"[""West Seattle Bridge; Police Recruitment and Incentives Bill Passes; Abortion Access Bill Signing; Metropolitan Parks District Public Hearing; Small Tenant Improvement Fund; Seattle Restored Program – Landlords and Artists/Entrepreneurs Can Apply; King County Assessor Valuations and Appeals; No Newsletter Next Two Weeks"", ""More posts""]","[""West Seattle Bridge"", ""Police Recruitment and Incentives Bill Passes"", ""Abortion Access Bill Signing"", ""Metropolitan Parks District Public Hearing"", ""Small Tenant Improvement Fund"", ""Seattle Restored Program – Landlords and Artists/Entrepreneurs Can Apply"", ""King County Assessor Valuations and Appeals"", ""No Newsletter Next Two Weeks"", ""Seattle City Council statement on today’s Council meeting"", ""Seattle Councilmember Rob Saka joins SDOT to fill potholes"", ""Seattle City Council observes week of remembrance for Japanese American incarceration"", ""HELPFUL LINKS"", ""Make your voice heard"", ""Councilmembers""]",[],[],[],"" -526,https://estespark.colorado.gov/departments/police/operations/patrol/code-enforcement/report-a-potential-code-violation,Not Criminal Justice Related,Not Criminal Justice Related,Report a Potential Code Violation | Town of Estes Park,"",200,Home | Town of Estes Park,"[""Report a Potential Code Violation""]",[],"[""Language Translation""]",[],[],[],"" -527,https://oceancitymd.gov/oc/worcester-county-law-enforcement-agencies-to-co-host-citizens-police-academy/,Misc Police Activity,Police & Public Interactions,"Worcester County Law Enforcement Agencies to Co-Host Citizens Police Academy – Town of Ocean City, Maryland","",200,"Town of Ocean City, Maryland – A Vibrant Coastal Resort Community","[""Worcester County Law Enforcement Agencies to Co-Host Citizens Police Academy""]","[""Post navigation""]","[""Related posts""]",[],[],[],"" -528,https://delcopa.gov/ich/pdfs/covid_govwolf_march12.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"404 - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert " -529,http://www.longbeach.gov/police/news/south-division-forum/,Media Bulletins,Agency-Published Resources,South Division Forum,"Join South Patrol Division Commander Michael Lewis for the next Community Forum on Wednesday, June 21, 2017, 6:00 p.m., to 8:00 p.m.",200,City of Long Beach,"[""Police Department"", ""South Division Commander's Community Forum""]",[],"[""Mayor"", ""City Council"", ""Rex Richardson"", ""Mary Zendejas"", ""Cindy Allen"", ""Kristina Duggan"", ""Daryl Supernaw"", ""Megan Kerr"", ""Suely Saro"", ""Roberto Uranga"", ""Al Austin"", ""Dr. Joni Ricks-Oddie"", ""Dawn McIntosh"", ""Laura L. Doud"", ""Doug Haubert"", ""Tom Modica"", ""Monique DeLaGarza"", ""City-Wide Elected Officials"", ""Appointed Officials"", ""Online Payments"", ""Online Services"", ""In-Person Services"", ""Opening a Business"", ""Doing Business With The City"", ""Resources"", ""Most Popular"", ""Online Resources"", ""Attractions"", ""Business Associations"", ""Travel Resources"", ""Departments"", ""Job Opportunities"", ""Information"", ""LBPD"", ""Employment"", ""Bureaus"", ""News & Events"", ""Crime Info"", ""How Do I"", ""How Do I"", ""Contact Us"", ""Do."", ""Discover."", ""Connect."", ""Ask.""]","["""", ""1st District"", ""2nd District"", ""3rd District"", ""4th District"", ""5th District"", ""6th District"", ""7th District"", ""8th District"", ""9th District"", ""City Attorney"", ""City Auditor"", ""City Prosecutor"", ""City Manager"", ""City Clerk""]","[""File a Report Online"", ""Submit a Tip"", ""Submit a Commendation"", ""File a Complaint"", ""Ride Along Program"", """", """", """", """", ""Crime Lab Survey"", """"]",[],"" -530,https://delcopa.gov/departments/heatplan/heatsafetytips.pdf,Media Bulletins,Agency-Published Resources,"","",200,"","","","","","","","" -531,"https://norfolkne.gov/government/departments/police-division/press-releases/march-11,-2021-press-release.html",Media Bulletins,Agency-Published Resources,"March 11, 2021 Press Release - City of Norfolk, NE","",200,"Welcome to Norfolk, NE - City of Norfolk, NE","[""City of Norfolk, NE"", ""Police Division"", ""March 11, 2021 Press Release"", ""City of Norfolk, NE""]",[],[],[],"[""Still looking for something?""]","[""Contact Us"", ""Pay or Apply..."", ""Government..."", ""Services..."", ""Business..."", ""Amenities...""]","" -532,https://www.newhopemn.gov/news___features/now_recruiting_police_reserves,Training & Hiring Info,Info About Officers,"","",404,"","","","","","","","" -533,https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/arrests/083022arrests.pdf,Arrest Records,Police & Public Interactions,"","",404,"","","","","","","","" -534,https://rockfordil.gov/police-lgbtqia-liaison/,Contact Info & Agency Meta,Info About Agencies,"","",404,"","","","","","","","" -535,https://www.sandiego.gov/police/community,Resources,Agency-Published Resources,Community | City of San Diego Official Website,"",200,City of San Diego Official Website,"[""City of San Diego Official Website"", ""Community""]","[""Main navigation"", ""Leisure"", ""Resident Resources"", ""Doing Business"", ""Library"", ""Public Safety"", ""City Hall"", ""Community"", ""Footer"", ""Accessibility Tools""]",[],"[""Parks"", ""Outdoors"", ""Neighborhoods"", ""Recreational Activities"", ""Street Maintenance"", ""Plan"", ""Fix"", ""Build"", ""Programs & Events"", ""Services"", ""Kids & Teens"", ""eCollection"", ""Police"", ""Fire-Rescue"", ""Lifeguards"", ""City Officials"", ""City Government""]",[],[],"" -536,https://www.naperville.il.us/services/naperville-police-department/programs-and-services/fingerprinting/,Resources,Agency-Published Resources,Fingerprinting | The City of Naperville,The Naperville Police Department offers fingerprinting services to Naperville residents for a $10.00 fee.,200,Home | The City of Naperville,"[""Fingerprinting""]","[""Programs and Services"", ""Naperville Police Department""]","[""Explore""]",[],"[""Helping Residents Build a Better Community"", ""Resources for Doing Business in Naperville""]",[],"Menu Search Menu Search Search Main Menu Navigation About Naperville + An Award-Winning Community Demographics and Key Facts Education Historic Preservation in Naperville Projects in Naperville Transportation and Parking Townships Government + Boards and Commissions City Leadership Team City Finances Annual Budget and Financial Reports Purchasing and Bids Taxes and Financial Forms Utility Services and Billing General Billing Water Street TIF District Coronavirus Resources Diversity, Equity and Inclusion A Community of Belonging DEI Defined DEI Timeline Youth Involvement Embracing Community Environmental Sustainability in Naperville Grants Meetings and Agendas Legislative Priorities Meeting Room Reservations Meet Your City Council Mayor Scott A. Wehrli Councilman Ian Holzhauer Councilman Patrick Kelly Councilman Paul Leong Councilwoman Allison Longenbaugh Councilman Josh McBroom Councilwoman Jennifer Bruzan Taylor Councilman Dr. Benjamin M. White Councilman Nate Wilson Municipal Center Municipal Code Open Data Proclamations Strategic Plan Task Forces Voting and Voter Registration Services + Brush, Leaf & Yard Waste Curbside Bulk Brush Collection Leaf Collection Yard Waste Collection Electric Utility Your Electric Service Electrical Safety Powering Our Community for the Future FOIA Request Garbage and Recycling Residential Garbage Collection Garbage Carts Curbside Recycling Program Recycling Carts Recycling Drop-Off Center Household Hazardous Waste Facility Electronics Recycling Holiday Lights Recycling Naperville Fire Department About the Fire Department Emergency Preparedness Inspections and Permits Programs and Services Safety and Public Education Naperville Police Department About the Police Department Programs and Services Community Education and Crime Prevention Office of the Chief of Police Investigations Division Patrol Division Join NPD Permits and Licenses Senior Services and Resources Services and Resources for People with Disabilities Snow and Ice Removal Snow Plowing and Salting Mailboxes and Parkway Sod Winter Updates Water/Wastewater Utility Your Water Service Maintaining Our System Common Water Issues Residents + Helping Residents Build a Better Community You can find a collection of city information relevant to everyone in Naperville, from new residents to long-time community members. Go to this section Businesses + Resources for Doing Business in Naperville Whether you're starting, running or visiting a Naperville business - find resources to help you. Go to this section Enjoy Naperville + Biking Maps, Guides and Plans Commander Dan Shanower September 11 Memorial Explore the Community Festivals and Parades Millennium Wall Naperville Community Concert Center Naperville Riverwalk Naper Settlement & Homestead Von Oven Scout Reservation Walks and Runs + + + + Helping Residents Build a Better Community You can find a collection of city information relevant to everyone in Naperville, from new residents to long-time community members. Go to this section + Resources for Doing Business in Naperville Whether you're starting, running or visiting a Naperville business - find resources to help you. Go to this section + " -537,https://spdblotter.seattle.gov/2013/02/25/if-you-see-a-handcuffed-man-walking-around-near-harborview-give-police-a-call/,Media Bulletins,Agency-Published Resources,"If You See a Handcuffed Man Walking Around Near Harborview, Give Police a Call - SPD Blotter","",200,403 Forbidden,"[""If You See a Handcuffed Man Walking Around Near Harborview, Give Police a Call""]","[""Find Posts By Topic"", ""Featured Posts"", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],"Seattle.gov Choose a language: English English Google Translate may not accurately translate all content. Read disclaimer . For general City questions, please call 206-684-2489 . Tell us your requested language in English, and we can connect you with an interpreter. Continue Cancel Español Es posible que Google Translate no traduzca con precisión todo el contenido. Lea el descargo de responsabilidad . Si necesita ayuda en otro idioma, díganos en inglés nombre del idioma que necesita y lo conectaremos con un intérprete: 206-684-2489 Seguir Cancelar 中國語文 Google翻譯可能無法準確翻譯所有內容。 閱讀免責聲明 。 如果您需要翻譯,請用英語説出您所需要的語言,我們將爲你連接口譯員: 206-684-2489 繼續 取消 简体中文 Google翻译可能无法准确翻译所有内容。 阅读免责声明 。 如果您需要翻译,请用英语说出您所需要的语言,我们将为你连接口译员: 206-684-2489 继续 取消 Tiếng Việt Google Dịch có thể không dịch chính xác tất cả nội dung. Đọc tuyên bố từ chối trách nhiệm . Nếu quý vị cần hỗ trợ về ngôn ngữ, xin vui lòng cho chúng tôi biết ngôn ngữ quý vị cần hỗ trợ bằng tiếng Anh (ví dụ “Vietnamese”), chúng tôi sẽ kết nối quý vị với một thông dịch viên: 206-684-2489 Tiếp tục Huỷ bỏ русский язык Google Translate не может точно перевести весь контент. Прочтите отказ от ответственности . Если вам нужна языковая помощь, сообщите нам на английском, какой язык вам нужен, и мы свяжем вас с переводчиком: 206-684-2489 Продолжать Отмена Af-Soomaali Google Translate ayaan si sax ah u turjumi karin dhammaan waxyaabaha ku jira. Akhri afeef . Haddii aad u baahan tahay caawimaad luqadeed, fadlan noogu sheeg Ingiriisiga luqadda aad u baahan tahay, ka dib waxaan kugu xiri doonnaa turjubaan: 206-684-2489 Sii wad Jooji አማርኛ የጉግል ትርጉም ሁሉንም ይዘቶች በትክክል መተርጎም ላይችል ይችላል። ማስተባበያ አንብብ ፡፡ ኣስተርጓሚ ካስፈለግዎ የሚፈልጉትን ቋንቋ በእንግልዝኛ ይንገሩን፣ ከኣስተርጓሚ እናገናኝዎታለን። 206-684-2489 ቀጥል ሰርዝ 한국어 구글은 정확하게 모든 내용을 번역하지 않을 수 있습니다 번역. 읽기 면책 조항 . 언어지원이 필요한 경우, 필요한 언어를 영어로 말씀해 주시면 통역사와 연결해 드리겠습니다: 206-684-2489 계속하다 취소 Tagalog Maaaring hindi tumpak na isalin ng Google Translate ang lahat ng nilalaman. Basahin ang disclaimer . Para sa mga pangkalahatang katanungan sa Lungsod, mangyaring tawagan ang 206-684-2489 . Sabihin sa amin ang hiniling mong wika sa Ingles, at maikokonekta ka namin sa isang interpreter. Magpatuloy Kanselahin ภาษาไทย Google Translate อาจแปลเนื้อหาทั้งหมดไม่ถูกต้อง อ่านข้อจำกัดความรับผิดชอบ สำหรับคำถามทั่วไปเกี่ยวกับเมืองโปรดโทร 206-684-2489 บอกภาษาที่คุณต้องการเป็นภาษาอังกฤษและเราสามารถติดต่อคุณกับล่ามได้ ดำเนินการต่อ ยกเลิก 日本語 Google翻訳は、すべてのコンテンツを正確に翻訳するとは限りません. 免責事項をお読みください 。 市の一般的な質問については 206-684-2489 に電話してください。ご希望の言語を英語で教えていただければ、通訳をご案内いたします。 継続する キャンセル ភាសាខ្មែរ កម្មវិធីបកប្រែហ្គូហ្គោលមិនអាចបកប្រែមាតិកាទាំងអស់បានត្រឹមត្រូវទេ។ អានការបដិសេធ។ សម្រាប់សំណួរទូទៅរបស់ទីក្រុងសូមទូរស័ព្ទមក 206-684-2489 ។ ប្រាប់យើងពីភាសាដែលអ្នកស្នើសុំជាភាសាអង់គ្លេសហើយយើងអាចភ្ជាប់អ្នកជាមួយអ្នកបកប្រែភាសា។ បន្ត បោះបង់ ພາສາລາວ Google Translate ອາດຈະບໍ່ແປເນື້ອຫາທັງ ໝົດ ຢ່າງຖືກຕ້ອງ. ອ່ານປະຕິເສດ . ສຳ ລັບ ຄຳ ຖາມທົ່ວໄປຂອງເມືອງ, ກະລຸນາໂທຫາ 206-684-2489 . ບອກພວກເຮົາເປັນພາສາອັງກິດທີ່ທ່ານຮ້ອງຂໍ, ແລະພວກເຮົາສາມາດເຊື່ອມຕໍ່ທ່ານກັບນາຍແປພາສາ. ສືບຕໍ່ ຍົກເລີກ Українська Перекладач Google може не точно перекласти весь вміст. Прочитайте застереження . За загальними запитаннями про місто, будь ласка, телефонуйте 206-684-2489 . Розкажіть нам про вашу мову англійською мовою, і ми можемо зв’язати вас із перекладачем. Продовжуйте Скасувати Français Google Traduction peut ne pas traduire correctement tout le contenu. Lisez la clause de non-responsabilité . Pour des questions générales sur la ville, veuillez appeler le 206-684-2489 . Dites-nous votre langue souhaitée en anglais, et nous pourrons vous mettre en contact avec un interprète. Continuer Annuler " -538,https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0421/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -539,https://coloradosprings.gov/police-department/page/falcon-division,Contact Info & Agency Meta,Info About Agencies,Falcon Division | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""Falcon Division""]","[""Search"", ""Falcon Division (Northwest)"", ""About Falcon"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],"[""HOURS:""]","[""REPORT ONLINE""]",[],"" -540,https://wyoming.delaware.gov/police-department/policedepartmentapplication2017/,Training & Hiring Info,Info About Officers,PoliceDepartmentApplication - Town of Wyoming,"",200,Home - Town of Wyoming - Kent County Delaware,"[""Wyoming""]","[""Delaware"", ""PoliceDepartmentApplication""]","[""Menu"", ""Contact Us""]",[],[],[],"Skip to Content Skip to Footer Toggle navigation Menu Government Town Council Town Staff Budgets Ordinances Charter Meetings & Events Past Minutes & Agendas Committees Planning & Zoning Water & Sewer Board of Adjustments Peach Festival Info Emergency Services Police Department Fire Department Building Inspection License Applications & Permits Forms Public Notice Street Sweeping Schedule Trash and Recycling Schedule Important Links Community Town Life History Park Reservations Wyoming Park Local Organizations Photo Gallery Newsletter News Meetings & Events Contact Us Contact Information Contact Form FOIA Form Skip to Content Skip to Footer Toggle navigation Menu Government Town Council Town Staff Budgets Ordinances Charter Meetings & Events Past Minutes & Agendas Committees Planning & Zoning Water & Sewer Board of Adjustments Peach Festival Info Emergency Services Police Department Fire Department Building Inspection License Applications & Permits Forms Public Notice Street Sweeping Schedule Trash and Recycling Schedule Important Links Community Town Life History Park Reservations Wyoming Park Local Organizations Photo Gallery Newsletter News Meetings & Events Contact Us Contact Information Contact Form FOIA Form Skip to Content Skip to Footer Toggle navigation Menu Government Town Council Town Staff Budgets Ordinances Charter Meetings & Events Past Minutes & Agendas Committees Planning & Zoning Water & Sewer Board of Adjustments Peach Festival Info Emergency Services Police Department Fire Department Building Inspection License Applications & Permits Forms Public Notice Street Sweeping Schedule Trash and Recycling Schedule Important Links Community Town Life History Park Reservations Wyoming Park Local Organizations Photo Gallery Newsletter News Meetings & Events Contact Us Contact Information Contact Form FOIA Form Town Hall will be closed Friday March 29, 2024 in observance of Good Friday. Office will reopen on Monday April 1st. More Info Wyoming Delaware Listen PoliceDepartmentApplication PoliceDepartmentApplication Wyoming Delaware Listen PoliceDepartmentApplication PoliceDepartmentApplication Listen PoliceDepartmentApplication PoliceDepartmentApplication Listen PoliceDepartmentApplication PoliceDepartmentApplication Listen PoliceDepartmentApplication PoliceDepartmentApplication Listen Contact Us Phone Icon for Town Hall Phone Number (302) 697-2966 Map Marker Icon for Town Hall Directions 120 W. Camden Wyoming Ave. Wyoming, DE 19934 Envelope Icon for Contacting Town Hall Contact Form FOIA Form Facebook Icon Like Us Original design and concept by the Delaware GIC Copyright © 2024 Government Information Center Contact Us Phone Icon for Town Hall Phone Number (302) 697-2966 Map Marker Icon for Town Hall Directions 120 W. Camden Wyoming Ave. Wyoming, DE 19934 Envelope Icon for Contacting Town Hall Contact Form FOIA Form Facebook Icon Like Us Original design and concept by the Delaware GIC Copyright © 2024 Government Information Center Phone Icon for Town Hall Phone Number (302) 697-2966 Map Marker Icon for Town Hall Directions 120 W. Camden Wyoming Ave. Wyoming, DE 19934 Envelope Icon for Contacting Town Hall Contact Form FOIA Form Facebook Icon Like Us Original design and concept by the Delaware GIC Copyright © 2024 Government Information Center Phone Icon for Town Hall Phone Number (302) 697-2966 Map Marker Icon for Town Hall Directions 120 W. Camden Wyoming Ave. Wyoming, DE 19934 Envelope Icon for Contacting Town Hall Contact Form FOIA Form Facebook Icon Like Us " -541,http://lafayettepolice.us/149/departments-a---f,Contact Info & Agency Meta,Info About Agencies,"Departments A - F | Lafayette, IN - Official Website",Learn about the departments and divisions A - F that make up the city government. ,200,"Police Department | Lafayette, IN - Official Website","[""Departments A - F""]",[],"[""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]","[""Animal Control"", ""City Attorney"", ""City Clerk"", ""City Controller"", ""Communications and Marketing"", ""Economic Development"", ""Engineering & Public Works"", ""Facilities"", ""Fire Department"", ""Fleet Maintenance""]",[],[],Skip to Main Content -542,https://delcopa.gov/sustainability/sustainabilityplan.html,Not Criminal Justice Related,Not Criminal Justice Related,Sustain Delco: A Sustainability Plan for Delaware County,"",200,"Delaware County, Pennsylvania","[""Sustain Delco: A Sustainability Plan for Delaware County""]",[],"[""Office of Sustainability Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]","[""Sustain Delco: A Sustainability Plan for Delaware County, Pennsylvania""]",[],"[""What is a Sustainability and Climate Action Plan?"", ""Why is a Sustainability and Climate Action Plan Important for Delaware County?"", ""EXPLORE SUSTAIN DELCO: A SUSTAINABILITY PLAN FOR DELAWARE COUNTY""]","" -544,https://spdblotter.seattle.gov/2022/05/26/police-arrest-one-seize-gun-drugs-cash-downtown-thursday-evening/,Media Bulletins,Agency-Published Resources,"Police Arrest One, Seize Gun, Drugs, Cash Downtown Thursday Evening - SPD Blotter","",200,403 Forbidden,"[""Police Arrest One, Seize Gun, Drugs, Cash Downtown Thursday Evening""]","[""Find Posts By Topic"", ""Featured Posts"", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],"Seattle.gov Choose a language: English English Google Translate may not accurately translate all content. Read disclaimer . For general City questions, please call 206-684-2489 . Tell us your requested language in English, and we can connect you with an interpreter. Continue Cancel Español Es posible que Google Translate no traduzca con precisión todo el contenido. Lea el descargo de responsabilidad . Si necesita ayuda en otro idioma, díganos en inglés nombre del idioma que necesita y lo conectaremos con un intérprete: 206-684-2489 Seguir Cancelar 中國語文 Google翻譯可能無法準確翻譯所有內容。 閱讀免責聲明 。 如果您需要翻譯,請用英語説出您所需要的語言,我們將爲你連接口譯員: 206-684-2489 繼續 取消 简体中文 Google翻译可能无法准确翻译所有内容。 阅读免责声明 。 如果您需要翻译,请用英语说出您所需要的语言,我们将为你连接口译员: 206-684-2489 继续 取消 Tiếng Việt Google Dịch có thể không dịch chính xác tất cả nội dung. Đọc tuyên bố từ chối trách nhiệm . Nếu quý vị cần hỗ trợ về ngôn ngữ, xin vui lòng cho chúng tôi biết ngôn ngữ quý vị cần hỗ trợ bằng tiếng Anh (ví dụ “Vietnamese”), chúng tôi sẽ kết nối quý vị với một thông dịch viên: 206-684-2489 Tiếp tục Huỷ bỏ русский язык Google Translate не может точно перевести весь контент. Прочтите отказ от ответственности . Если вам нужна языковая помощь, сообщите нам на английском, какой язык вам нужен, и мы свяжем вас с переводчиком: 206-684-2489 Продолжать Отмена Af-Soomaali Google Translate ayaan si sax ah u turjumi karin dhammaan waxyaabaha ku jira. Akhri afeef . Haddii aad u baahan tahay caawimaad luqadeed, fadlan noogu sheeg Ingiriisiga luqadda aad u baahan tahay, ka dib waxaan kugu xiri doonnaa turjubaan: 206-684-2489 Sii wad Jooji አማርኛ የጉግል ትርጉም ሁሉንም ይዘቶች በትክክል መተርጎም ላይችል ይችላል። ማስተባበያ አንብብ ፡፡ ኣስተርጓሚ ካስፈለግዎ የሚፈልጉትን ቋንቋ በእንግልዝኛ ይንገሩን፣ ከኣስተርጓሚ እናገናኝዎታለን። 206-684-2489 ቀጥል ሰርዝ 한국어 구글은 정확하게 모든 내용을 번역하지 않을 수 있습니다 번역. 읽기 면책 조항 . 언어지원이 필요한 경우, 필요한 언어를 영어로 말씀해 주시면 통역사와 연결해 드리겠습니다: 206-684-2489 계속하다 취소 Tagalog Maaaring hindi tumpak na isalin ng Google Translate ang lahat ng nilalaman. Basahin ang disclaimer . Para sa mga pangkalahatang katanungan sa Lungsod, mangyaring tawagan ang 206-684-2489 . Sabihin sa amin ang hiniling mong wika sa Ingles, at maikokonekta ka namin sa isang interpreter. Magpatuloy Kanselahin ภาษาไทย Google Translate อาจแปลเนื้อหาทั้งหมดไม่ถูกต้อง อ่านข้อจำกัดความรับผิดชอบ สำหรับคำถามทั่วไปเกี่ยวกับเมืองโปรดโทร 206-684-2489 บอกภาษาที่คุณต้องการเป็นภาษาอังกฤษและเราสามารถติดต่อคุณกับล่ามได้ ดำเนินการต่อ ยกเลิก 日本語 Google翻訳は、すべてのコンテンツを正確に翻訳するとは限りません. 免責事項をお読みください 。 市の一般的な質問については 206-684-2489 に電話してください。ご希望の言語を英語で教えていただければ、通訳をご案内いたします。 継続する キャンセル ភាសាខ្មែរ កម្មវិធីបកប្រែហ្គូហ្គោលមិនអាចបកប្រែមាតិកាទាំងអស់បានត្រឹមត្រូវទេ។ អានការបដិសេធ។ សម្រាប់សំណួរទូទៅរបស់ទីក្រុងសូមទូរស័ព្ទមក 206-684-2489 ។ ប្រាប់យើងពីភាសាដែលអ្នកស្នើសុំជាភាសាអង់គ្លេសហើយយើងអាចភ្ជាប់អ្នកជាមួយអ្នកបកប្រែភាសា។ បន្ត បោះបង់ ພາສາລາວ Google Translate ອາດຈະບໍ່ແປເນື້ອຫາທັງ ໝົດ ຢ່າງຖືກຕ້ອງ. ອ່ານປະຕິເສດ . ສຳ ລັບ ຄຳ ຖາມທົ່ວໄປຂອງເມືອງ, ກະລຸນາໂທຫາ 206-684-2489 . ບອກພວກເຮົາເປັນພາສາອັງກິດທີ່ທ່ານຮ້ອງຂໍ, ແລະພວກເຮົາສາມາດເຊື່ອມຕໍ່ທ່ານກັບນາຍແປພາສາ. ສືບຕໍ່ ຍົກເລີກ Українська Перекладач Google може не точно перекласти весь вміст. Прочитайте застереження . За загальними запитаннями про місто, будь ласка, телефонуйте 206-684-2489 . Розкажіть нам про вашу мову англійською мовою, і ми можемо зв’язати вас із перекладачем. Продовжуйте Скасувати Français Google Traduction peut ne pas traduire correctement tout le contenu. Lisez la clause de non-responsabilité . Pour des questions générales sur la ville, veuillez appeler le 206-684-2489 . Dites-nous votre langue souhaitée en anglais, et nous pourrons vous mettre en contact avec un interprète. Continuer Annuler " -545,http://www.longbeach.gov/police/press-releases/l-b-p-d--receives-grant-for-special-traffic-enforce----crash-prevention/,Media Bulletins,Agency-Published Resources,L.B.P.D. Receives Grant for Special Traffic Enforce. & Crash Prevention,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 10/24/2016 FOR IMMEDIATE RELEASE Press Release # Subject: L.B.P.D. RECEIVES GRANT FOR SPECIAL TRAFFIC ENFORCEMENT & CRASH PREVENTION Contact: Media Relations Detail (562) 570-5273 The Long Beach Police Department has been awarded a $400,000 grant from the California Office of Traffic Safety (OTS) for a year-long program of special enforcements and public awareness efforts to prevent traffic related deaths and injuries. The Long Beach Police Department will use the funding as part of the city’s ongoing commitment to keep our roadways safe and improve the quality of life through both enforcement and education. “This funding, through our valuable partnership with OTS, will play a vital role in enhancing our efforts to increase the safety of our roads,” stated Long Beach Police Chief Robert Luna. “We will continue our mission to raise awareness of traffic related concerns, which cause collisions that are often preventable, through both educational and enforcement measures.” After falling to a ten year low in 2010, the number of persons killed has climbed nearly 17% across the state with 3,176 killed in 2015 according to the National Highway Traffic Safety Administration. Particularly alarming is the six year rise in pedestrian and bicycle fatalities, along with the growing dangers of distracting technologies, and the emergence of drug-impaired driving as a major problem. This grant funding will provide opportunities to combat these and other devastating problems such as drunk driving, speeding and crashes at intersections. “Years of research tell us that enforcement and education work best jointly to combat unsafe driving,” said OTS Director Rhonda Craft. “This grant brings both tactics together, with the Office of Traffic Safety and the Long Beach Police Department working in concert to help keep the streets and highways safe across Long Beach and the state.” Activities that the grant will fund include: • Educational presentations • DUI checkpoints • DUI saturation patrols • Bicycle and pedestrian safety enforcement • Motorcycle safety enforcement • Distracted driving enforcement • Seat belt and child safety seat enforcement • Speed, red light, and stop sign enforcement • Compilation of DUI “Hot Sheets,” identifying worst-of-the-worst DUI offenders • Specialized DUI and drugged driving training such as Standardized Field Sobriety Testing (SFST), Advanced Roadside Impaired Driving Enforcement (ARIDE), and Drug Recognition Evaluator (DRE) Funding for this program is from the California Office of Traffic Safety through the National Highway Traffic Safety Administration. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -546,https://ci.san-bernardino.ca.us/city_hall/police_department/public_safety/traffic_safety_programs/alpr_statistics,Poor Data Source,Poor Data Source,ALPR Statistics - City of San Bernardino,"",200,Just a moment...,"[""City of San Bernardino California""]","[""ALPR Statistics""]",[],[],[],[],Skip to Content -547,https://www.knoxvilletn.gov/government/city_departments_offices/police_department/field_operations_bureau/community_partnership_officers/c_p_t_e_d_security_surveys,Resources,Agency-Published Resources,CPTED Security Surveys - City of Knoxville,police*,200,Just a moment...,"[""CPTED Security Surveys"", ""Police Chief""]",[],[],[],[],[],Skip navigation {1} ##LOC[OK]## {1} ##LOC[OK]## {1} ##LOC[OK]## {1} ##LOC[OK]## -548,https://www.mass.gov/news/environmental-police-officer-ab-exam-update,Training & Hiring Info,Info About Officers,Environmental Police Officer A/B Exam Update | Mass.gov,"Eligible List Establishment Date: January 15, 2021",200,Mass.gov,"[""News Environmental Police Officer A/B Exam Update""]","[""Civil Service"", ""Related to Environmental Police Officer A/B Exam Update"", ""Help Us Improve Mass.gov with your feedback""]",[],"[""2020 Environmental Police Officer A/B Exam""]",[],[],"" -549,https://coloradosprings.gov/tag/police,Media Bulletins,Agency-Published Resources,"","",404,"","","","","","","","" -550,https://www.lasalle-il.gov/departments/police-department,Contact Info & Agency Meta,Info About Agencies,Police Department | City of La Salle,"The mission of the LaSalle Police Department, in cooperation with our community, is to protect life and property, and enhance the quality of life for all our citizens.",200,"Error retrieving title: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))","[""Police Department""]","[""Main navigation"", ""Breadcrumb"", ""Mission Statement"", ""The Illinois Valley's Finest"", ""Police Department Information"", ""Main Menu"", ""Important Info""]",[],[],[],[],"" -551,https://www.sandiego.gov/event/community-coffee-cop,Poor Data Source,Poor Data Source,"","",403,"","","","","","","","" -552,https://www.mass.gov/doc/police-standards-subcommittee-open-meeting-notice-agenda/download,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -553,https://www.dps.nm.gov/blog/2022/04/12/update-cancel-silver-alert-belen-nm-sally-krieger-has-been-located-and-is-safe-please-refer-all-inquiries-and-questions-to-belen-police-department-at-505-865-9130/,Media Bulletins,Agency-Published Resources,"UPDATE: CANCEL Silver Alert - Belen, NM - Sally Krieger has been located and is safe. Please refer all inquiries and questions to Belen Police Department at (505) 865-9130. - NM Department of Public Safety","",200,Home - NM Department of Public Safety,"[""UPDATE: CANCEL Silver Alert – Belen, NM – Sally Krieger has been located and is safe. Please refer all inquiries and questions to Belen Police Department at (505) 865-9130.""]",[],"[""Location"", ""Sitemap"", ""Quick Links"", ""Social Media Links""]",[],[],[],"Manage Cookie Consent We use cookies to optimize our website and our service. Functional Functional Always active The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network. Preferences Preferences The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user. Statistics Statistics The technical storage or access that is used exclusively for statistical purposes. The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you. Marketing Marketing The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes. Manage options Manage services Manage {vendor_count} vendors Read more about these purposes Accept Deny Preferences Save preferences Preferences Cookie Policy Privacy Statement {title} Manage Cookie Consent We use cookies to optimize our website and our service. Functional Functional Always active The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network. Preferences Preferences The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user. Statistics Statistics The technical storage or access that is used exclusively for statistical purposes. The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you. Marketing Marketing The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes. Manage options Manage services Manage {vendor_count} vendors Read more about these purposes Accept Deny Preferences Save preferences Preferences Cookie Policy Privacy Statement {title} Manage Cookie Consent Manage Cookie Consent " -554,http://www.longbeach.gov/press-releases/jason-campbell-appointed-police-administration-bureau-chief/,Media Bulletins,Agency-Published Resources,Jason Campbell Appointed Police Administration Bureau Chief,"",200,City of Long Beach,"[""PRESS RELEASE""]",[],[],[],[],[],"A- A A+ PRESS RELEASE City of Long Beach Public Information Office 411 W. Ocean Blvd, Long Beach, CA 90802 6/14/2016 FOR IMMEDIATE RELEASE Press Release # CM: 061416 Subject: Jason Campbell Appointed Police Administration Bureau Chief Contact: Robert Luna Chief of Police 562.570.7301 Robert.Luna@longbeach.gov Long Beach City Manager Patrick H. West and Police Chief Robert Luna today announced the appointment of Jason S. Campbell as Administration Bureau Chief of the Long Beach Police Department . He fills the vacancy created by the retirement of Braden Phillips. “I welcome Administration Bureau Chief Jason Campbell to the Police Department,” said Chief Robert Luna. “His extensive education, work history and legal background will be a great addition to the executive team.” Bureau Chief Campbell most recently served as Executive Officer of the California Board of Podiatric Medicine. Previously he was employed by the Los Angeles County Metropolitan Transportation Authority (MTA), where he served as a Senior Ethics Officer, Acting Principal Hearing Officer and Customer Communication Manager. Prior to the MTA, he was a compliance officer for the City of Los Angeles Office of Finance, and also an attorney in private practice. “I’m grateful for the opportunity to be a part of Long Beach Police Department and advancing our mission of Public Safety Through Partnerships ,” said Bureau Chief Campbell. “To that end, I look forward to building relationships with community members throughout Long Beach.” The Administration Bureau is responsible for managing the Police Department's fleet; records; information technology; personnel and payroll services; Business Desk operations; Live Scan services; Media Relations Detail; and volunteer opportunities. For more news, pictures, videos and announcements of what’s happening in Long Beach, follow us on Facebook , Twitter , Instagram and YouTube . " -555,http://www.tampa.gov/news/tampa-police-work-identify-battery-suspect-64991,Media Bulletins,Agency-Published Resources,Tampa Police Work to Identify Battery Suspect | City of Tampa, ,200,City of Tampa,"[""Tampa Police Work to Identify Battery Suspect""]","[""Information Resources"", ""Latest News"", ""Key Services"", ""Report A Problem"", ""Contact"", ""Connect With Us""]",[],[],[],[],"" -556,https://cityofgulfbreeze.us/departments/police/faqs-2/,Resources,Agency-Published Resources,FAQS - City of Gulf Breeze,Question: How do I obtain a Crash report? Answer: Obtain Crash Report Online It’s now possible to obtain a copy of a crash report online. The following information is required to request the report: Date of collision Driver’s last name Crash report number Name of agency investigating the crash Simply visit FLHSMV's website and enter the,200,Home - City of Gulf Breeze,"[""FAQS""]","[""What can we help you find?"", ""Mobile Menu"", ""Before Header"", ""Header Right"", ""Primary Sidebar"", ""Footer""]","[""Departments"", ""No Active Advisories"", ""City Projects"", ""Get Text Updates"", ""City of Gulf Breeze"", ""Most Requested"", ""County Agencies"", ""State Sites""]","[""Question: How do I obtain a Crash report?"", ""Answer:"", ""Question: How do I obtain a police report?"", ""Question: How can I get fingerprinted or obtain a V.I.N. verification?"", ""Question: I have had several phone calls from people representing themselves as police officers and asking for donations. Are these police officers and what is the money used for?"", ""Question: I received a call from a company claiming I had won a trip, but in order to claim my prize, I have to give them my bank account number, social security number, credit card number or some money. What should I do? Is this a scam?"", ""Question: Can you tell me if there’s a warrant out for my arrest?"", ""Question: Can you tell me if someone is in jail?"", ""Question: What can I do about speeding in my neighborhood?"", ""Question: How can I become a police officer?"", ""Question: I received a traffic citation I do not agree with. What can I do about it?"", ""Question: I saw a strange car in my neighborhood, but am unsure about calling the police when something like that happens."", ""Question: How do I recover my personal property from the Police Department?"", ""Question: I am going out of town; Can I have an officer check on my house while I am gone?"", ""Question: What does the Police Department do with found property that is turned in by the public or submitted by officers?"", ""South Santa Rosa Beneficial Reclaim Strategic Plan (BSRP) – Phase III"", ""Highpoint Water Main Replacement"", ""Eufaula Outfall Treatment Unit – RESTORE"", ""City Hall""]",[],[],"What can we help you find? What can we help you find? What can we help you find? What can we help you find? What can we help you find? What can we help you find? What can we help you find? What can we help you find? What can we help you find? What can we help you find? What can we help you find? What can we help you find? What can we help you find? What can we help you find? (850) 934-5100 Pay Online Find Agendas, packets, & minutes Digital Online Forms Apply For City Jobs Permits or Application Contact Mayor & City Council City Staff Report An Issue or Emergency Residential Traffic Issue Wildlife Scams Request Request a Public Record Garbage Collection Utility Bills via E-Mail Sign Up For Updates Watch Videos (850) 934-5100 Pay Online Find Agendas, packets, & minutes Digital Online Forms Apply For City Jobs Permits or Application Contact Mayor & City Council City Staff Report An Issue or Emergency Residential Traffic Issue Wildlife Scams Request Request a Public Record Garbage Collection Utility Bills via E-Mail Sign Up For Updates Watch Videos (850) 934-5100 Pay Online Find Agendas, packets, & minutes Digital Online Forms Apply For City Jobs Permits or Application Contact Mayor & City Council City Staff Report An Issue or Emergency Residential Traffic Issue Wildlife Scams Request Request a Public Record Garbage Collection Utility Bills via E-Mail Sign Up For Updates Watch Videos (850) 934-5100 Pay Online Find Agendas, packets, & minutes Digital Online Forms Apply For City Jobs Permits or Application Contact Mayor & City Council City Staff Report An Issue or Emergency Residential Traffic Issue Wildlife Scams Request Request a Public Record Garbage Collection Utility Bills via E-Mail Sign Up For Updates Watch Videos (850) 934-5100 Pay Online Find Agendas, packets, & minutes Digital Online Forms Apply For City Jobs Permits or Application Contact Mayor & City Council City Staff Report An Issue or Emergency Residential Traffic Issue Wildlife Scams Request Request a Public Record Garbage Collection Utility Bills via E-Mail Sign Up For Updates Watch Videos (850) 934-5100 Pay Online Find Agendas, packets, & minutes Digital Online Forms Apply For City Jobs Permits or Application Contact Mayor & City Council City Staff Report An Issue or Emergency Residential Traffic Issue Wildlife Scams Request Request a Public Record Garbage Collection Utility Bills via E-Mail Sign Up For Updates Watch Videos (850) 934-5100 Pay Online Find Agendas, packets, & minutes Digital Online Forms Apply For City Jobs Permits or Application Contact Mayor & City Council City Staff Report An Issue or Emergency Residential Traffic Issue Wildlife Scams Request Request a Public Record Garbage Collection Utility Bills via E-Mail Sign Up For Updates Watch Videos " -557,https://spdblotter.seattle.gov/2014/03/08/citizens-respond-to-a-woman-in-distress-and-hold-down-robbery-suspect-until-police-arrive/,Media Bulletins,Agency-Published Resources,Citizens Respond To A Woman In Distress And Hold Down Robbery Suspect Until Police Arrive - SPD Blotter,"",200,403 Forbidden,"[""Citizens Respond To A Woman In Distress And Hold Down Robbery Suspect Until Police Arrive""]","[""Find Posts By Topic"", ""Featured Posts"", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],"Seattle.gov Choose a language: English English Google Translate may not accurately translate all content. Read disclaimer . For general City questions, please call 206-684-2489 . Tell us your requested language in English, and we can connect you with an interpreter. Continue Cancel Español Es posible que Google Translate no traduzca con precisión todo el contenido. Lea el descargo de responsabilidad . Si necesita ayuda en otro idioma, díganos en inglés nombre del idioma que necesita y lo conectaremos con un intérprete: 206-684-2489 Seguir Cancelar 中國語文 Google翻譯可能無法準確翻譯所有內容。 閱讀免責聲明 。 如果您需要翻譯,請用英語説出您所需要的語言,我們將爲你連接口譯員: 206-684-2489 繼續 取消 简体中文 Google翻译可能无法准确翻译所有内容。 阅读免责声明 。 如果您需要翻译,请用英语说出您所需要的语言,我们将为你连接口译员: 206-684-2489 继续 取消 Tiếng Việt Google Dịch có thể không dịch chính xác tất cả nội dung. Đọc tuyên bố từ chối trách nhiệm . Nếu quý vị cần hỗ trợ về ngôn ngữ, xin vui lòng cho chúng tôi biết ngôn ngữ quý vị cần hỗ trợ bằng tiếng Anh (ví dụ “Vietnamese”), chúng tôi sẽ kết nối quý vị với một thông dịch viên: 206-684-2489 Tiếp tục Huỷ bỏ русский язык Google Translate не может точно перевести весь контент. Прочтите отказ от ответственности . Если вам нужна языковая помощь, сообщите нам на английском, какой язык вам нужен, и мы свяжем вас с переводчиком: 206-684-2489 Продолжать Отмена Af-Soomaali Google Translate ayaan si sax ah u turjumi karin dhammaan waxyaabaha ku jira. Akhri afeef . Haddii aad u baahan tahay caawimaad luqadeed, fadlan noogu sheeg Ingiriisiga luqadda aad u baahan tahay, ka dib waxaan kugu xiri doonnaa turjubaan: 206-684-2489 Sii wad Jooji አማርኛ የጉግል ትርጉም ሁሉንም ይዘቶች በትክክል መተርጎም ላይችል ይችላል። ማስተባበያ አንብብ ፡፡ ኣስተርጓሚ ካስፈለግዎ የሚፈልጉትን ቋንቋ በእንግልዝኛ ይንገሩን፣ ከኣስተርጓሚ እናገናኝዎታለን። 206-684-2489 ቀጥል ሰርዝ 한국어 구글은 정확하게 모든 내용을 번역하지 않을 수 있습니다 번역. 읽기 면책 조항 . 언어지원이 필요한 경우, 필요한 언어를 영어로 말씀해 주시면 통역사와 연결해 드리겠습니다: 206-684-2489 계속하다 취소 Tagalog Maaaring hindi tumpak na isalin ng Google Translate ang lahat ng nilalaman. Basahin ang disclaimer . Para sa mga pangkalahatang katanungan sa Lungsod, mangyaring tawagan ang 206-684-2489 . Sabihin sa amin ang hiniling mong wika sa Ingles, at maikokonekta ka namin sa isang interpreter. Magpatuloy Kanselahin ภาษาไทย Google Translate อาจแปลเนื้อหาทั้งหมดไม่ถูกต้อง อ่านข้อจำกัดความรับผิดชอบ สำหรับคำถามทั่วไปเกี่ยวกับเมืองโปรดโทร 206-684-2489 บอกภาษาที่คุณต้องการเป็นภาษาอังกฤษและเราสามารถติดต่อคุณกับล่ามได้ ดำเนินการต่อ ยกเลิก 日本語 Google翻訳は、すべてのコンテンツを正確に翻訳するとは限りません. 免責事項をお読みください 。 市の一般的な質問については 206-684-2489 に電話してください。ご希望の言語を英語で教えていただければ、通訳をご案内いたします。 継続する キャンセル ភាសាខ្មែរ កម្មវិធីបកប្រែហ្គូហ្គោលមិនអាចបកប្រែមាតិកាទាំងអស់បានត្រឹមត្រូវទេ។ អានការបដិសេធ។ សម្រាប់សំណួរទូទៅរបស់ទីក្រុងសូមទូរស័ព្ទមក 206-684-2489 ។ ប្រាប់យើងពីភាសាដែលអ្នកស្នើសុំជាភាសាអង់គ្លេសហើយយើងអាចភ្ជាប់អ្នកជាមួយអ្នកបកប្រែភាសា។ បន្ត បោះបង់ ພາສາລາວ Google Translate ອາດຈະບໍ່ແປເນື້ອຫາທັງ ໝົດ ຢ່າງຖືກຕ້ອງ. ອ່ານປະຕິເສດ . ສຳ ລັບ ຄຳ ຖາມທົ່ວໄປຂອງເມືອງ, ກະລຸນາໂທຫາ 206-684-2489 . ບອກພວກເຮົາເປັນພາສາອັງກິດທີ່ທ່ານຮ້ອງຂໍ, ແລະພວກເຮົາສາມາດເຊື່ອມຕໍ່ທ່ານກັບນາຍແປພາສາ. ສືບຕໍ່ ຍົກເລີກ Українська Перекладач Google може не точно перекласти весь вміст. Прочитайте застереження . За загальними запитаннями про місто, будь ласка, телефонуйте 206-684-2489 . Розкажіть нам про вашу мову англійською мовою, і ми можемо зв’язати вас із перекладачем. Продовжуйте Скасувати Français Google Traduction peut ne pas traduire correctement tout le contenu. Lisez la clause de non-responsabilité . Pour des questions générales sur la ville, veuillez appeler le 206-684-2489 . Dites-nous votre langue souhaitée en anglais, et nous pourrons vous mettre en contact avec un interprète. Continuer Annuler " -558,http://www.longbeach.gov/police/press-releases/traffic-fatality-anaheim-st-and-long-beach-blv/,Media Bulletins,Agency-Published Resources,TRAFFIC FATALITY ANAHEIM ST AND LONG BEACH BLV,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 7/1/2017 FOR IMMEDIATE RELEASE Press Release # 2017 Subject: TRAFFIC FATALITY ANAHEIM ST AND LONG BEACH BLV Contact: Media Relations Detail (562) 570-5273 On July 1, 2017 at 4:35 A.M. Officers from the Long Beach Police Department responded to Anaheim Street and Long Beach Boulevard on a report of a traffic collision. Upon Officers arrival they found that this collision involved two vehicles that had collided in the intersection. One vehicle a Silver 2011 Nissan Sentra was stopped in the intersection of Anaheim Street and Long Beach Boulevard. The other involved vehicle a 1999 Lexus RX300 was stopped on its right side on the northeast corner of the intersection. A 26-year-old female resident of Los Angeles was driving the 1999 Lexus. There were three passengers in the vehicle at the time of this collision all of which were transported to local hospitals for treatment. While at the Hospital the rear passenger of the vehicle a 21-year-old male resident of Los Angeles succumbed to his injuries and was pronounced dead. His name is being withheld until next of kin can be notified. The driver of the 2011 Nissan was found to be a 36-year-old male resident of Long Beach. There was also a passenger in the vehicle and both driver and passenger were transported to a local hospital for injuries they suffered as a result of this collision. Both are currently in stable condition. This collision is still under investigation, but it is believed that the 2011 Nissan was traveling eastbound Anaheim Street and the 1999 Lexus was traveling northbound Long Beach Boulevard. What is unknown is the phasing of the traffic control signal at the time of the collision. Anyone who may have witnessed this collision is asked to contact Collision Investigation Detective David Lauro at (562) 570-7355. Anonymous tips may be submitted through “LA Crime Stoppers” by calling 1-800-222-TIPS (8477), downloading the “P3 TIPS” app to your smart phone (available at the Apple App store and Google Play), or visiting http://www.lacrimestoppers.org/ This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -559,http://www.longbeach.gov/police/press-releases/sexual-assault-suspect-arrested--additional-victims-sought/,Media Bulletins,Agency-Published Resources,SEXUAL ASSAULT SUSPECT ARRESTED; ADDITIONAL VICTIMS SOUGHT,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 7/8/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: SEXUAL ASSAULT SUSPECT ARRESTED; ADDITIONAL VICTIMS SOUGHT Contact: Media Relations Detail (562) 570-5273 Long Beach and Signal Hill Police arrested a male suspect in connection with two sexual assault cases and it is believed that additional victims may exist. On June 29, 2014, around 11:30 p.m., Long Beach Police were dispatched to an alley in the area of Del Amo and Long Beach Boulevards and found a 31-year-old victim who had been beaten and sexually assaulted. It appeared the suspect followed the victim from a nearby bus depot prior to the assault. Long Beach Fire Department transported the victim to a local hospital. During their investigation, detectives obtained a photo of a possible suspect and learned Signal Hill Police Department was investigating a sexual assault incident with similar suspect description. In both cases, investigators believed the suspect used a handgun to assault the victims. Long Beach Police detectives and North Division Patrol officers worked closely to identify the suspect. Long Beach Sex Crimes Detail and Vice Detail detectives with Signal Hill Police detectives served a search warrant on July 3, 2014, and arrested 20-year-old Raymond Demetrius Howard of Long Beach at his residence. On July 8, 2014, Long Beach and Signal Hill Police detectives presented their cases to the Los Angeles District Attorney's office for filing consideration. The District Attorney’s Office filed charges of assault with a deadly weapon, mayhem, attempted human trafficking, robbery, criminal threats, rape, and other sexual assault related charges. Howard is currently being held on $5,650,000 bail. Investigators believe there may be additional victims who have never contacted police. If you have been a victim of an unreported crime or have any information regarding the incident, please contact Long Beach Police Sex Crimes Detective Luis Galvan at (562) 570-6407. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -560,https://delcopa.gov/publicrelations/releases/2019/pdf/nationalcrimevictimsrightsweekeventflyer2019.pdf,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -561,https://www.rolesvillenc.gov/police/frequently-asked-questions,Contact Info & Agency Meta,Info About Agencies,"Frequently Asked Questions | Town of Rolesville, NC","",200,"Town of Rolesville, NC","[""Frequently Asked Questions""]","[""Support Menu"", ""Social Media"", ""Main navigation"", ""Social Media"", ""Footer""]","[""NEEDING ASSISTANCE"", ""TRAFFIC ACCIDENTS"", ""FIREARMS"", ""FINGERPRINTING"", ""RESTRAINING ORDERS"", ""ANIMAL COMPLAINTS"", ""TRAFFIC TICKETS"", ""CAR SEATS"", ""COMPLIMENTS & COMPLAINTS"", ""CIVIL CITATIONS""]","[""When do I call 911?"", ""Should I call the police if I see something suspicious or unusual?"", ""What do I do if I am involved in a traffic crash?"", ""I was involved in a traffic crash. How can I get a copy of the report?"", ""How do I obtain a firearm purchase permit or concealed carry permit?"", ""I need to be fingerprinted for a job. Can I visit the police station to have this done?"", ""How do I file a restraining order or domestic violence protection order against someone?"", ""Does the Rolesville Police Department handle animal complaints?"", ""I received a traffic ticket, but I forgot my court date. How can I found out when I’m supposed to go to court?"", ""I received a warning ticket for a traffic violation. How do I handle this?"", ""How can I found out if my child is still required to ride in the car with a booster seat?"", ""How can I go about complimenting an officer or filing a complaint?"", ""I received a civil citation from a Rolesville officer, how do I make an appeal?""]","[""Connect with us""]",[],"tab start Menu Departments Open submenu Your Government Open submenu Residents & Visitors Open submenu Business Open submenu Close submenu Departments Communications Economic Development Finance Open submenu Fire Human Resources Open submenu Parks & Recreation Open submenu Planning Open submenu Police Open submenu Public Works Open submenu Town Clerk Open submenu Town Management Close submenu Finance Bid Opportunities Doing Business with the Town Financial Documents Solid Waste Billing Close submenu Human Resources Benefits Employment Opportunities Frequently Asked Questions Close submenu Parks & Recreation Adopted Plans Athletics Open submenu Cultural Programs Open submenu Forms and Permits Open submenu Parks and Facilities Open submenu Program Scholarships Special Events Open submenu Sponsors Staff Directory Volunteers Wake County Senior Games Close submenu Athletics Adult Softball Equipment Swap Outdoor 3 on 3 Basketball Youth Baseball & Softball Youth Basketball Youth Flag Football Youth Soccer Close submenu Cultural Programs Visual Arts Performing Arts S.T.E.M./S.T.E.A.M. Fitness Senior Nature/Outdoors Day Camps Trips Family Activities Close submenu Forms and Permits Commercial Use Of Park Property Photography Permit Special Event Permits Close submenu Parks and Facilities Main Street Park Mill Bridge Nature Park Redford Place Park Community Center Greenways Future Facilities Town of Rolesville Park Rules Close submenu Special Events 4th of July Arbor Day Blood Drive Egg Rush Fall FunFest Holiday Tree Lighting Juneteenth Celebration Litter Sweep Memorial Day Movies at the Middle Music at Mill Bridge Shred Event Trail Art Veterans Day Community Outreach Close submenu Planning * Submittal Process * Frequently Asked Questions Helpful Links Land Development Ordinance Technical Review Commitee Forms and Applications Development Projects Land Use and Zoning What are ""Development Applications"" ? Adopted Policy Plans What's New? Plans in Progress Helpful Links Signs Permits Public Hearings Utility Permits Fees - Development Applications Traffic Impact Analysis Board of Adjustment Pre-Construction Meetings Planning Board Close submenu Police Community Outreach Community Resources House Check Requests Police Reports Recruitment Police Department Assessment Close submenu Public Works Solid Waste Open submenu Stormwater Open submenu Street Maintenance Close submenu Solid Waste Garbage and Recycling Loose Leaves Other Waste Yard Waste Close submenu Stormwater Stormwater Mapping Project Close submenu Town Clerk Public Records Request Public/Legislative Hearings Close submenu Your Government Agendas & Minutes Boards & Commissions Open submenu Capital Projects Open submenu Locations & Hours Meetings Broadcast Strategic Plan Code of Ordinances Close submenu Boards & Commissions Mayor's Message Board of Adjustment Parks & Recreation Advisory Board Planning Board Close submenu Capital Projects Town Campus Plans Close submenu Residents & Visitors Calendar Community Resources Open submenu New to Rolesville News Town Events Close submenu Community Resources Community Group Funding Food Security Public Transportation Things to Do Veterans Resources Open submenu Close submenu Veterans Resources Military Banners May 2023 Close submenu Business Economic Development Open submenu Development Services Main Street Vision Available Buildings & Sites Bid Opportunities Chamber of Commerce Close submenu Economic Development Small Business Resources Why Rolesville? tab end " -562,https://ethics.ny.gov/news/jcope-settles-lobbyist-alleged-lobbying-law-gift-violation,Media Bulletins,Agency-Published Resources,Attention Required! | Cloudflare,"",200,Home Page | New York State Commission on Ethics and Lobbying in Government,"[""Sorry, you have been blocked""]","[""You are unable to access ny.gov"", ""Why have I been blocked?"", ""What can I do to resolve this?""]",[],[],[],[],"Please enable cookies. Sorry, you have been blocked You are unable to access ny.gov Why have I been blocked? This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data. What can I do to resolve this? You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page. Cloudflare Ray ID: 86a147088fad3b9a • Your IP: Click to reveal 209.6.137.20 • Performance & security by Cloudflare Please enable cookies. Sorry, you have been blocked You are unable to access ny.gov Why have I been blocked? This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data. What can I do to resolve this? You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page. Cloudflare Ray ID: 86a147088fad3b9a • Your IP: Click to reveal 209.6.137.20 • Performance & security by Cloudflare Sorry, you have been blocked You are unable to access ny.gov Why have I been blocked? This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data. What can I do to resolve this? You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page. Why have I been blocked? This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data. What can I do to resolve this? You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page. Why have I been blocked? This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data. " -563,https://spdblotter.seattle.gov/2017/06/05/police-conducting-death-investigation-at-sr-509-encampment/,Media Bulletins,Agency-Published Resources,(UPDATE) Two Men Arrested Following Death Investigation at SR-509 Encampment - SPD Blotter,"",200,403 Forbidden,"[""(UPDATE) Two Men Arrested Following Death Investigation at SR-509 Encampment""]","[""Find Posts By Topic"", ""Featured Posts"", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],"Seattle.gov Choose a language: English English Google Translate may not accurately translate all content. Read disclaimer . For general City questions, please call 206-684-2489 . Tell us your requested language in English, and we can connect you with an interpreter. Continue Cancel Español Es posible que Google Translate no traduzca con precisión todo el contenido. Lea el descargo de responsabilidad . Si necesita ayuda en otro idioma, díganos en inglés nombre del idioma que necesita y lo conectaremos con un intérprete: 206-684-2489 Seguir Cancelar 中國語文 Google翻譯可能無法準確翻譯所有內容。 閱讀免責聲明 。 如果您需要翻譯,請用英語説出您所需要的語言,我們將爲你連接口譯員: 206-684-2489 繼續 取消 简体中文 Google翻译可能无法准确翻译所有内容。 阅读免责声明 。 如果您需要翻译,请用英语说出您所需要的语言,我们将为你连接口译员: 206-684-2489 继续 取消 Tiếng Việt Google Dịch có thể không dịch chính xác tất cả nội dung. Đọc tuyên bố từ chối trách nhiệm . Nếu quý vị cần hỗ trợ về ngôn ngữ, xin vui lòng cho chúng tôi biết ngôn ngữ quý vị cần hỗ trợ bằng tiếng Anh (ví dụ “Vietnamese”), chúng tôi sẽ kết nối quý vị với một thông dịch viên: 206-684-2489 Tiếp tục Huỷ bỏ русский язык Google Translate не может точно перевести весь контент. Прочтите отказ от ответственности . Если вам нужна языковая помощь, сообщите нам на английском, какой язык вам нужен, и мы свяжем вас с переводчиком: 206-684-2489 Продолжать Отмена Af-Soomaali Google Translate ayaan si sax ah u turjumi karin dhammaan waxyaabaha ku jira. Akhri afeef . Haddii aad u baahan tahay caawimaad luqadeed, fadlan noogu sheeg Ingiriisiga luqadda aad u baahan tahay, ka dib waxaan kugu xiri doonnaa turjubaan: 206-684-2489 Sii wad Jooji አማርኛ የጉግል ትርጉም ሁሉንም ይዘቶች በትክክል መተርጎም ላይችል ይችላል። ማስተባበያ አንብብ ፡፡ ኣስተርጓሚ ካስፈለግዎ የሚፈልጉትን ቋንቋ በእንግልዝኛ ይንገሩን፣ ከኣስተርጓሚ እናገናኝዎታለን። 206-684-2489 ቀጥል ሰርዝ 한국어 구글은 정확하게 모든 내용을 번역하지 않을 수 있습니다 번역. 읽기 면책 조항 . 언어지원이 필요한 경우, 필요한 언어를 영어로 말씀해 주시면 통역사와 연결해 드리겠습니다: 206-684-2489 계속하다 취소 Tagalog Maaaring hindi tumpak na isalin ng Google Translate ang lahat ng nilalaman. Basahin ang disclaimer . Para sa mga pangkalahatang katanungan sa Lungsod, mangyaring tawagan ang 206-684-2489 . Sabihin sa amin ang hiniling mong wika sa Ingles, at maikokonekta ka namin sa isang interpreter. Magpatuloy Kanselahin ภาษาไทย Google Translate อาจแปลเนื้อหาทั้งหมดไม่ถูกต้อง อ่านข้อจำกัดความรับผิดชอบ สำหรับคำถามทั่วไปเกี่ยวกับเมืองโปรดโทร 206-684-2489 บอกภาษาที่คุณต้องการเป็นภาษาอังกฤษและเราสามารถติดต่อคุณกับล่ามได้ ดำเนินการต่อ ยกเลิก 日本語 Google翻訳は、すべてのコンテンツを正確に翻訳するとは限りません. 免責事項をお読みください 。 市の一般的な質問については 206-684-2489 に電話してください。ご希望の言語を英語で教えていただければ、通訳をご案内いたします。 継続する キャンセル ភាសាខ្មែរ កម្មវិធីបកប្រែហ្គូហ្គោលមិនអាចបកប្រែមាតិកាទាំងអស់បានត្រឹមត្រូវទេ។ អានការបដិសេធ។ សម្រាប់សំណួរទូទៅរបស់ទីក្រុងសូមទូរស័ព្ទមក 206-684-2489 ។ ប្រាប់យើងពីភាសាដែលអ្នកស្នើសុំជាភាសាអង់គ្លេសហើយយើងអាចភ្ជាប់អ្នកជាមួយអ្នកបកប្រែភាសា។ បន្ត បោះបង់ ພາສາລາວ Google Translate ອາດຈະບໍ່ແປເນື້ອຫາທັງ ໝົດ ຢ່າງຖືກຕ້ອງ. ອ່ານປະຕິເສດ . ສຳ ລັບ ຄຳ ຖາມທົ່ວໄປຂອງເມືອງ, ກະລຸນາໂທຫາ 206-684-2489 . ບອກພວກເຮົາເປັນພາສາອັງກິດທີ່ທ່ານຮ້ອງຂໍ, ແລະພວກເຮົາສາມາດເຊື່ອມຕໍ່ທ່ານກັບນາຍແປພາສາ. ສືບຕໍ່ ຍົກເລີກ Українська Перекладач Google може не точно перекласти весь вміст. Прочитайте застереження . За загальними запитаннями про місто, будь ласка, телефонуйте 206-684-2489 . Розкажіть нам про вашу мову англійською мовою, і ми можемо зв’язати вас із перекладачем. Продовжуйте Скасувати Français Google Traduction peut ne pas traduire correctement tout le contenu. Lisez la clause de non-responsabilité . Pour des questions générales sur la ville, veuillez appeler le 206-684-2489 . Dites-nous votre langue souhaitée en anglais, et nous pourrons vous mettre en contact avec un interprète. Continuer Annuler " -564,https://alpha.austin.gov/es/police-oversight/2020-06-4-8/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -565,https://alpha.austin.gov/en/police-oversight/formal-complaint-impartial-attitude-and-courtesy-22/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -566,https://delcopa.gov/publicrelations/releases/2020/votingdemo_canceled.html,Media Bulletins,Agency-Published Resources,"Delaware County Cancels Voting Machine Demonstrations - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Delaware County Cancels Voting Machine Demonstrations""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]","[""Demonstrations cancelled to adhere to social distancing guidance to prevent the spread of COVID-19""]",[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Delaware County Cancels Voting Machine Demonstrations Home / Departments / Public Relations Releases / Delaware County Cancels Voting Machine Demonstrations Demonstrations cancelled to adhere to social distancing guidance to prevent the spread of COVID-19 Public health officials have issued guidance for residents to avoid large gatherings and exercise social distancing as a preventive measure to reduce the spread of 2019 Novel Coronavirus (COVID-19.) In an effort to eliminate large gatherings and allow for social distancing, the County is cancelling the voting machine demonstrations that had been set up across the County in March and April. Residents can visit the County’s website to watch a tutorial on the new machines: www.delcopa.gov/electionsbureau/index.html As we move towards social distancing and announce cancellations and possible closures, Delaware County will be working to offer services and communications to residents by phone and online. The County has created a website dedicated to information on the Coronavirus, including prevention, resources and a FAQ section with link to the PA Health Department and CDC. The website is: www.delcopa.gov/ich/resources/coronavirus.html Public Relations Navigation Press Releases County Newsletter Use of County Facility Form Questions about COVID-19 vaccines? Please call the COVID-19 Call Center: 484-276-2100. Adrienne Marofsky, Director Government Center, 226A 201 W. Front St. Media, PA 19063 Phone: 610-891-4943 delcopr@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Delaware County Cancels Voting Machine Demonstrations Home / Departments / Public Relations Releases / Delaware County Cancels Voting Machine Demonstrations Delaware County Cancels Voting Machine Demonstrations Home / Departments / Public Relations Releases / Delaware County Cancels Voting Machine Demonstrations Delaware County Cancels Voting Machine Demonstrations Home / Departments / Public Relations Releases / Delaware County Cancels Voting Machine Demonstrations " -567,https://delcopa.gov/publicrelations/releases/2018/jurorphonesscam.pdf,Media Bulletins,Agency-Published Resources,"","",200,"","","","","","","","" -568,https://www.waynesvillenc.gov/departments/police/about-us,Contact Info & Agency Meta,Info About Agencies,"About Us | The Town of Waynesville, NC",Mission Statement “Our mission is to provide a safe environment for all citizens through the collective contributions of the community. Pride and integrity reflect our dedication to community values”. Statement of Values The Waynesville Police Department holds forth professional integrity as our most fundamental value. Professional integrity includes:,200,"Home Page | The Town of Waynesville, NC","[""About Us""]","[""Secondary navigation"", ""Main navigation"", ""Breadcrumb"", ""Waynesville Police""]","[""Mission Statement"", ""Statement of Values"", """", ""Three divisions"", ""Communications""]","[""Personal Integrity"", ""Professionalism"", ""Respect"", ""Fairness"", ""Loyalty"", ""Contact Information"", ""Stay Connected""]",[],[],"" -569,https://beaumonttexas.gov/beaumont-police-investigating-fatality-accident-2400-block-of-s-mlk/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -570,https://www.knoxvilletn.gov/government/city_departments_offices/police_department/management_services_bureau/recruitment_job_opportunities/basic_info_for_becoming_a_police_cadet,Training & Hiring Info,Info About Officers,Become a Cadet - Join Knoxville Police Department,"",200,Just a moment...,"[""Become A Cadet""]","[""Feel drawn to a career as a police officer but not yet 21?""]","[""Cadet Benefits and Compensations"", ""DO I QUALIFY?""]",[],[],"[""Health insurance with prescription, dental, and vision"", ""Health insurance with prescription, dental, and vision"", ""Long-term disability insurance"", ""Long-term disability insurance"", ""Life insurance and longevity pay"", ""Life insurance and longevity pay"", ""Up to $3,000 per year in tuition reimbursement"", ""Up to $3,000 per year in tuition reimbursement"", ""457B retirement plan (deferred compensation)"", ""457B retirement plan (deferred compensation)"", ""YMCA membership discount"", ""YMCA membership discount"", ""Health insurance with prescription, dental, and vision"", ""Health insurance with prescription, dental, and vision"", ""Our Ideal Candidate""]","JOIN KNOXPD No Better Place To Live No Better Place To Serve JOIN THE TEAM Become an Officer Become a Cadet Become an Explorer Civilian Positions Lateral Transfer APPLY NOW No Better Place To Live No Better Place To Serve JOIN THE TEAM Become an Officer Become a Cadet Become an Explorer Civilian Positions Lateral Transfer APPLY NOW Become A Cadet A GATEWAY TO YOUR CAREER Feel drawn to a career as a police officer but not yet 21? The Police Cadet Program is a fantastic alternative. Open to those 18 and older, Cadets handle non-enforcement activities while receiving law enforcement training. After completing the Cadet training, you’ll be put on assignments ranging from bicycle patrols, traffic control at special events (like UT games!), parking enforcement and sobriety checkpoints. Cadets also take part in on-duty physical fitness training. Cadet Benefits and Compensations Health insurance with prescription, dental, and vision Civilian Health insurance with prescription, dental, and vision Civilian Long-term disability insurance Civilian Long-term disability insurance Civilian Life insurance and longevity pay Civilian Life insurance and longevity pay Civilian Up to $3,000 per year in tuition reimbursement Civilian Up to $3,000 per year in tuition reimbursement Civilian 457B retirement plan (deferred compensation) Civilian 457B retirement plan (deferred compensation) Civilian YMCA membership discount Civilian YMCA membership discount Civilian Health insurance with prescription, dental, and vision Cadet Health insurance with prescription, dental, and vision Cadet DO I QUALIFY? Our Ideal Candidate Is 18 years old and not have reached 21st birthday upon entry into the Cadet program. Applicant must be a U.S. Citizen or a Permanent Legal Resident of the U.S. who applies for or obtains U.S. Citizenship within six years of hiring. Has a valid driver’s license. Is a high school graduate or its equivalent. Has no felony convictions. Above all, shows integrity and good moral character. More questions ? Just ask a Recruiter Contact No Better Place to Live Contact Apply Now No Better Place to Serve Salary & Benefits FAQ An Equal Opportunity Employer/Drug Free Workplace " -571,https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0103/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -572,http://www.ryepolice.us/pressrelease/pioneer-rd-closed-due-to-crash,Not Criminal Justice Related,Not Criminal Justice Related,Rye Police Department Pioneer Rd Closed Due to Crash - Rye Police Department,"",200,Rye Police Department Welcome to the Rye Police Department - Rye Police Department,"[""Pioneer Rd Closed Due to Crash""]","[""Pioneer Rd Closed Due to Crash""]","[""Navigation"", ""Follow Us"", ""Facebook"", ""Email Updates"", ""Storm Preparedness Guide""]",[],[],[]," Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Chief’s Message Crime Prevention Victim Services Domestic Violence Computer Crime Identity Theft Press Releases Police Logs Events Event Permits Beach Permits FAQ Contact Us Navigate... Chief’s Message Crime Prevention - Victim Services - Domestic Violence - Computer Crime - Identity Theft Press Releases Police Logs Events - Event Permits - Beach Permits FAQ Contact Us Search Pioneer Rd Closed Due to Crash Home Press Releases Pioneer Rd Closed Due to Crash Pioneer Rd Closed Due to Crash May 25, 2015 In Press Releases Pioneer Rd (Rt. 1A) is closed between Bracket Rd and Sagamore Rd due to a motor vehicle crash with entrapment. The vehicle struck and snapped a utility pole. Please seek an alternate route. Navigation About Rye Animal Control Announcements Beach Information Careers Chief’s Message Computer Crime Contact Us Coronavirus Crime Prevention Directions Domestic Violence FAQ Firearms Safety Fireworks Forms Identity Theft Mission Statement Parking Payments Personnel Police Logs Prescription Drug Disposal Press Releases Report Request Town Ordinances Victim Services West Nile / EEE Follow Us Facebook Email Updates Subscribe to our newsletter. We promise you won't get flooded with junk! Email * Storm Preparedness Guide Developed by ThemeMakers Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Chief’s Message Crime Prevention Victim Services Domestic Violence Computer Crime Identity Theft Press Releases Police Logs Events Event Permits Beach Permits FAQ Contact Us Navigate... Chief’s Message Crime Prevention - Victim Services - Domestic Violence - Computer Crime - Identity Theft Press Releases Police Logs Events - Event Permits - Beach Permits FAQ Contact Us Search Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Chief’s Message Crime Prevention Victim Services Domestic Violence Computer Crime Identity Theft Press Releases Police Logs Events Event Permits Beach Permits FAQ Contact Us Navigate... Chief’s Message Crime Prevention - Victim Services - Domestic Violence - Computer Crime - Identity Theft Press Releases Police Logs Events - Event Permits - Beach Permits FAQ Contact Us Search Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Chief’s Message Crime Prevention Victim Services Domestic Violence Computer Crime Identity Theft Press Releases Police Logs Events Event Permits Beach Permits FAQ Contact Us Navigate... Chief’s Message Crime Prevention - Victim Services - Domestic Violence - Computer Crime - Identity Theft Press Releases Police Logs Events - Event Permits - Beach Permits FAQ Contact Us Search Chief’s Message Crime Prevention Victim Services Domestic Violence Computer Crime Identity Theft Press Releases Police Logs Events Event Permits Beach Permits FAQ Contact Us Navigate... Chief’s Message Crime Prevention - Victim Services - Domestic Violence - Computer Crime - Identity Theft Press Releases Police Logs Events - Event Permits - Beach Permits FAQ Contact Us Search " -573,http://www.lafayettepolice.us/faq.aspx?qid=183,Not Criminal Justice Related,Not Criminal Justice Related,FAQs • What locations need a Class K extinguisher?,"",200,"Police Department | Lafayette, IN - Official Website",[],"[""▼ Fire Extinguishers""]","[""Categories"", ""Live Edit"", ""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -574,https://riag.ri.gov/press-releases/state-federal-and-law-enforcement-leaders-announce-16-million-grants-police,Media Bulletins,Agency-Published Resources,"State, federal, and law enforcement leaders announce $16 million in grants for police departments statewide for body-worn cameras | Rhode Island Attorney General's Office","",200,Welcome | Rhode Island Attorney General's Office,"[""State, federal, and law enforcement leaders announce $16 million in grants for police departments statewide for body-worn cameras""]",[],[],[],[],[],"" -575,https://www.stmatthewsky.gov/police/srt-vehicle/,Poor Data Source,Poor Data Source,SRT Vehicle - City of St Matthews,"",200,403 Forbidden,"[""SRT Vehicle""]",[],[],[],[],[],"Facebook Search Menu Home Community About St. Matthews Area Organizations Churches History Lodging Points of Interest Schools Shopping Farmers Markets Library Friends of the Library Citizens Group Louisville Metro Free Public Library Main St. Matthews Eline Library Branch Recreation & Parks Amazing Microscopic Park Photos Arthur K. Draut Park Brown Park Community Park Holzheimer Park Pavilions & Ball Fields St. Matthews Baseball Warwick Park Outstanding Neighbor Seasonal City Events Halloween In Brown Park Light Up St. Matthews Potato Festival Rentals / Reservations City Hall Meeting Rooms The Arterburn Event Venue Government Boards Ethics City Map Codes & Ordinances Communications Contact Us Newsletters Reach Alert Notification LENsAlert (Louisville Emergency Notification System) Departments Alcohol Beverage Control Arborist Business License / Tax City Clerk & Treasurer Code Enforcement IT Communications Occupational Tax Planning & Design Police Property Tax / Real Estate Public Works Signs Solicitation Finance Ad Valorem Audit Budget Expenditures Local / State / Federal Offices & Organization Elected Representatives Jefferson County League of Cities Kentucky League of Cities Voter Registration Mayor & Council About the Mayor Agenda, Minutes City Council Members Standing Committees Ethics Complaint Form Open Records Request Staff Directory Services Police About SMPD Provided Services Events Transparency How Do I… Public Works Electronic Speed Signs Graffiti Green Up / Vehicle Pull Off Leaf Collection Sidewalks Snow Treatment Speed Humps Street Damage / Potholes Tree Planting Resources Ambulance (EMS) Animal Control Driver’s Liscenses Fire Protection District First Hour Grief Response Hazardous Waste Disposal Health Department – Louisville Hospitals Prescription Drug Disposal Public Transportation Bus Routes (TARC) St. Matthews Area Ministries (STMAM) Seniors & Disabled Citizens Utilities Drainage – Surface Waters Electric Company (LG&E) Street Lights Metropolitan Sewer District (MSD) Water Service (Louisville Water Co.) Waste Disposal Go Green Junk Disposal Recycle Program Sanitation Yard Waste – Storm Debris Business Forms Alcohol Application for Rentals Alcohol Beverage Control Basic License Alcohol Beverage Temporary License Arterburn Contract Business License Application Employers Annual Reconciliation Employers Quarterly Report Ethics Complaint Form Facility Alcohol for Rentals Golf Cart / ATV Application Grant Application Form Letter of Compliance Occupational Tax Application Occupational Tax Refund Opens Record Request Form Portable Storage Container Request a Tree Right-of-Way Permit Application Sign Permit Application Solicitation Certificate Application Special Events Application Street Party Petition Tent Permit Application Vehicle Pull Off (VPO) Application Permits Building Golf Cart / ATV Portable Storage Sign Special Events Street Party Tents Walk/Run Events Rentals / Reservations Ball Field – Warwick Park City Hall Meeting Rooms Park Pavilions The Arterburn Event Venue Chamber of St. Matthews Contact Us Select Page SRT Vehicle Site Map Contact Us Website Designed and Optimized by: 301 Interactive Marketing Facebook Facebook Search Facebook Search Facebook Search " -576,https://www.ci.corcoran.mn.us/public_services/police/training_and_safety/emergency_preparedness_guide,Not Criminal Justice Related,Not Criminal Justice Related,Emergency Preparedness Guide - City of Corcoran,"",200,Just a moment...,"[""Emergency Preparedness Guide""]",[],[],[],[],[],"" -577,http://www.longbeach.gov/police/press-releases/traffic-fatality-artesia-and-myrtle1/,Media Bulletins,Agency-Published Resources,TRAFFIC FATALITY ARTESIA AND MYRTLE,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 6/2/2017 FOR IMMEDIATE RELEASE Press Release # 2017 Subject: TRAFFIC FATALITY ARTESIA AND MYRTLE Contact: Media Relations Detail (562) 570-5273 On Monday, May 29, 2017 at approximately 3:51p.m., officers from the Long Beach Police Department were dispatched to Artesia Boulevard and Myrtle Avenue regarding an injury traffic collision between two vehicles. When Officers arrived on scene, they discovered the unconscious 16-year-old female passenger trapped inside a 2012 Nissan Altima. Long Beach Fire Department paramedics responded and transported, the female along with two adults and two other juveniles who were also in the Altima to local hospitals for treatment. The preliminary investigation revealed that a 33-year-old male resident of Long Beach, was driving his 2013 Chevrolet Camaro west on Artesia Boulevard and in the process of turning south onto Myrtle Avenue. At the same time, the Altima being driven by 22-year-old female resident of Victorville, was traveling east on Artesia Boulevard. As the Chevrolet turned south, the two vehicles struck each other causing the Altima to ricochet south striking the metal traffic control light pole. It was determined that the driver of the Chevrolet was wearing his seatbelt and uninjured. However, all five occupants in the Altima did not appear to have their seatbelts fastened causing traumatic injuries to all occupants. The other occupants of the Altima included three males ages 19, 16 and 14. The driver of the Chevrolet had a suspended driver’s license and valid proof of insurance. The driver of the Altima had a valid driver’s license and proof of insurance. Alcohol did not appear to be a factor in the collision. On Friday, June 2, 2017, the Police Department was informed that the 16-year-old female passenger of the Altima passed away from a traumatic head injury caused in the collision. The deceased, the driver and the and 14 year-old male were siblings, and the other two occupants were friends. Anyone who may have information regarding this incident is asked to call Long Beach Police Department Collision Investigation Detail Detective Steve Fox at (562) 570-7355. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -578,http://www.ryepolice.us/logs/police-logs-for-71316-71916,Daily Activity Logs,Info About Officers,Rye Police Department Police Logs for 7/13/16-7/19/16 - Rye Police Department,"",200,Rye Police Department Welcome to the Rye Police Department - Rye Police Department,"[""Police Logs for 7/13/16-7/19/16""]","[""Police Logs for 7/13/16-7/19/16""]","[""Navigation"", ""Follow Us"", ""Facebook"", ""Email Updates"", ""Storm Preparedness Guide""]",[],[],[], -579,http://www.longbeach.gov/police/press-releases/dui-checkpoint-proves-effective-4-/,Media Bulletins,Agency-Published Resources,DUI CHECKPOINT PROVES EFFECTIVE(4),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 8/13/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: DUI CHECKPOINT PROVES EFFECTIVE Contact: Media Relations Detail (562) 570-5273 On Saturday, August 9, 2014, the Long Beach Police Department’s Traffic Section conducted a Driving Under the Influence/Driver License Checkpoint on 7th Street and Federation Drive, from 7 p.m. until 3 a.m. During the eight-hour operation, which was aided by Long Beach Police Explorers, Long Beach Search and Rescue and officers from the California Department of Alcoholic Beverage Control, 2,790 vehicles passed through the checkpoint with 542 drivers being screened, resulting in the following statistics: Four (4) Standardized Field Sobriety Tests conducted Two (2) drivers arrested for DUI One (1) driver arrested for DUI drug Three (3) drivers cited for unlicensed driving One (1) driver cited for suspended license Eighteen (18) drivers cited for unsafe driving DUI checkpoints are a vital component in the fight against both impaired and unlicensed driving. Nationally, impaired driving caused by alcohol and/or drugs causes one death every 33 minutes. The average American has a 30% chance of being killed or injured by a driver under the influence. Sobriety checkpoints have been proven to reduce these types of driving-related collisions by removing such drivers from our streets. Funding for this program was provided by a grant from the California Office of Traffic Safety, through the National Highway Safety Administration. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -580,https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/blotter/111522blotter.pdf,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -581,https://www.huntsvilleal.gov/videos/huntsville-police-departments-captain-mccarver-lets-grow-together/,Poor Data Source,Poor Data Source,Huntsville Police Department's Captain McCarver: Let's Grow Together - City of Huntsville,"",200,403 Forbidden,"[""Huntsville Police Department’s Captain McCarver: Let’s Grow Together""]","[""Top Requests"", ""HSV TV"", ""City News"", ""Contact Us""]",[],[],[],[],"Main Menu Main Menu Residents Back Residents Animal Services Neighborhoods Public Safety Volunteer Cemeteries Pay a Ticket Streets & Transportation Water & Sewer Garbage & Recycling Parks & Recreation Resident Toolkit Business Back Business About Huntsville Big Picture GIS Maps & Data Employment Bid A Project Codes & Ordinances Economic Development File A Claim E-Bids Pay Taxes Licensing & Permits Development Back Development Bid A Project Economic Development MPO Streets & Roadwork Building & Construction GIS Maps Planning Water & Sewer Big Picture Master Plan Historic Preservation ePlans Submittal Environment Back Environment Air Quality Garbage & Recycling Noise Sustainability Find A Park Nature Preserves Recreation Water Trails & Greenways Pets Lost & Found Green Team Government Back Government Boards & Commissions City Council Finances & Budget Media Center City Calendar Departments Mayor's Office Municipal Court Vote Find A Job Codes & Ordinances Services Original text Rate this translation Your feedback will be used to help improve Google Translate Original text Rate this translation Your feedback will be used to help improve Google Translate Original text Original text Rate this translation Your feedback will be used to help improve Google Translate Rate this translation Your feedback will be used to help improve Google Translate Rate this translation Your feedback will be used to help improve Google Translate Toggle Menu City of Huntsville Search Search for: City Video Closed captioning provided for all videos. Video Category Browse By Category… City Council Meetings Inside Huntsville with Brenda Martin Impact with Kenny Anderson State of the City Planning Commission Meetings City Videos Historic Preservation Commission Meetings COVID-19 Updates Poll Workers Video Department Browse By Department… Animal Services Huntsville Police Department Parks & Recreation Community Development Big Picture Planning Huntsville Fire & Rescue Public Works Traffic Engineering Public Transit Parking Media Center City Video Huntsville Police Department’s Captain McCarver: Let’s Grow Together Share & Print Twitter Facebook Email Print Categories: City Videos Top Requests Pay A Ticket Get A Permit Business License Municipal Court Police Fire & Rescue Public Transit – Orbit Huntsville Connect City Jobs HSV TV City News Mar 22 Conveniently distracted: Hands-free devices often perilous for drivers Mar 21 Kitten Season is coming – beat the heat by spaying and neutering your cat Mar 21 Arts Huntsville Announces Panoply Arts Festival 2024 Highlights Mar 19 All systems go: Huntsville’s first major music festival to launch in September Mar 19 Why Where Matters: Huntsville to host GeoResilience Summit on April 3 Contact Us (256) 427-5000 Huntsville City Hall 308 Fountain Circle Huntsville, Alabama 35801 Facebook Twitter Instagram Social Directory © 2022 | City of Huntsville, Alabama ADA Privacy Policy Intranet Webmail COH ESS Website Feedback Toggle Menu City of Huntsville Search Toggle Menu City of Huntsville Search Toggle Menu City of Huntsville Search Toggle Menu City of Huntsville Search Toggle Menu City of Huntsville Toggle Menu Search Search Search for: Search for: Search for: Search for: Search for: Search for: City Video City Video City Video City Video City Video " -582,http://www.ryepolice.us/pressrelease/positive-covid-19-case-at-rye-recycling-center/attachment/ryerecyclecase-2020-dhhs-edits-covid-09282020,Not Criminal Justice Related,Not Criminal Justice Related,Rye Police Department RyeRecycleCase-2020-DHHS edits Covid 09282020 - Rye Police Department,"",200,Rye Police Department Welcome to the Rye Police Department - Rye Police Department,"[""RyeRecycleCase-2020-DHHS edits Covid 09282020""]","[""RyeRecycleCase-2020-DHHS edits Covid 09282020""]","[""Navigation"", ""Follow Us"", ""Facebook"", ""Email Updates"", ""Storm Preparedness Guide""]",[],[],[]," Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Chief’s Message Crime Prevention Victim Services Domestic Violence Computer Crime Identity Theft Press Releases Police Logs Events Event Permits Beach Permits FAQ Contact Us Navigate... Chief’s Message Crime Prevention - Victim Services - Domestic Violence - Computer Crime - Identity Theft Press Releases Police Logs Events - Event Permits - Beach Permits FAQ Contact Us Search RyeRecycleCase-2020-DHHS edits Covid 09282020 Home RyeRecycleCase-2020-DHHS edits Covid 09282020 RyeRecycleCase-2020-DHHS edits Covid 09282020 September 28, 2020 Navigation About Rye Animal Control Announcements Beach Information Careers Chief’s Message Computer Crime Contact Us Coronavirus Crime Prevention Directions Domestic Violence FAQ Firearms Safety Fireworks Forms Identity Theft Mission Statement Parking Payments Personnel Police Logs Prescription Drug Disposal Press Releases Report Request Town Ordinances Victim Services West Nile / EEE Follow Us Facebook Email Updates Subscribe to our newsletter. We promise you won't get flooded with junk! Email * Storm Preparedness Guide Developed by ThemeMakers Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Chief’s Message Crime Prevention Victim Services Domestic Violence Computer Crime Identity Theft Press Releases Police Logs Events Event Permits Beach Permits FAQ Contact Us Navigate... Chief’s Message Crime Prevention - Victim Services - Domestic Violence - Computer Crime - Identity Theft Press Releases Police Logs Events - Event Permits - Beach Permits FAQ Contact Us Search Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Chief’s Message Crime Prevention Victim Services Domestic Violence Computer Crime Identity Theft Press Releases Police Logs Events Event Permits Beach Permits FAQ Contact Us Navigate... Chief’s Message Crime Prevention - Victim Services - Domestic Violence - Computer Crime - Identity Theft Press Releases Police Logs Events - Event Permits - Beach Permits FAQ Contact Us Search Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Chief’s Message Crime Prevention Victim Services Domestic Violence Computer Crime Identity Theft Press Releases Police Logs Events Event Permits Beach Permits FAQ Contact Us Navigate... Chief’s Message Crime Prevention - Victim Services - Domestic Violence - Computer Crime - Identity Theft Press Releases Police Logs Events - Event Permits - Beach Permits FAQ Contact Us Search Chief’s Message Crime Prevention Victim Services Domestic Violence Computer Crime Identity Theft Press Releases Police Logs Events Event Permits Beach Permits FAQ Contact Us Navigate... Chief’s Message Crime Prevention - Victim Services - Domestic Violence - Computer Crime - Identity Theft Press Releases Police Logs Events - Event Permits - Beach Permits FAQ Contact Us Search Chief’s Message Crime Prevention Victim Services Domestic Violence Computer Crime Identity Theft Press Releases Police Logs Events Event Permits Beach Permits FAQ Contact Us Search " -583,https://police.greenvillesc.gov/313/trails-bikes,Not Criminal Justice Related,Not Criminal Justice Related,"Trails & Bikes | Greenville, SC - Official Website","Learn all about the Greenways Master Plan, and find your way around Greenville using our systems of trails and greenways.",200,"Police Department | Greenville, SC - Official Website","[""Trails & Bikes""]","[""Trails & Greenways: A Top Priority"", ""Augusta Street Bike Boulevard""]","[""Loading""]",[],[],[],"Skip to Main Content Falls Park Unity Park Parks & Trails Recreation Rentals Get Involved Search Home Departments Parks, Recreation & Tourism Parks & Trails Trails & Bikes Trails & Bikes Trails & Greenways: A Top Priority The development of a Trails and Greenways Master Plan (PDF) was a ""Top Priority"" project as identified by Greenville City Council's 2006 Management Agenda. Over the course of the next year, two public meetings were held, more than 450 public comments were received via an on-line survey and the master plan was presented to council in September, 2007. On January 28, 2008 City Council adopted the Trails and Greenway's Master Plan. By doing so they formally recognized the importance of connecting residents and visitors alike to popular destinations throughout the City of Greenville. The Master Plan, amongst other things, encourages physical activity, promotes safe and sustainable transportation, stimulates economic growth and helps to protect environmental quality of open spaces and creek and river corridors. The City of Greenville is actively working to implement the Trails and Greenways Master Plan (PDF) and promote the use of trails throughout the City. Please take time to browse this site to learn more about our existing Trails System and upcoming projects. Augusta Street Bike Boulevard The Augusta Street Bicycle Boulevard is designed to get bicyclists off of Augusta Street while simultaneously providing orientation and wayfinding throughout the adjacent neighborhoods. Signage assists bicyclists in routing to neighborhood parks, schools, the Kroc Center, and the Swamp Rabbit Trail. Swamp Rabbit Trail Green Line Extension Laurens Road Trail Spurs Swamp Rabbit Trail Interactive Map Trails Rules & Etiquette Park Trails Master Plans Downtown Special Events Parking unity park falls park Bus & Trolley AFFORDABLE HOUSING Agendas & Minutes Home Contact Us Accessibility /QuickLinks.aspx 206 S Main Street, Greenville, SC 29601 Police Non-Emergency: 864-271-5333 Greenville Cares Information Center 864-232-2273 Back to Top Enable Google Translate " -584,http://www.lafayettepolice.us/851/fire-resistance-rated-construction,Not Criminal Justice Related,Not Criminal Justice Related,"Fire Resistance Rated Construction | Lafayette, IN - Official Website",Fire-Resistance-Rated Construction is building construction in which the structural members are used for the separation of adjacent spaces to safeguard against the spread of fire and smoke within a building.,200,"Police Department | Lafayette, IN - Official Website","[""Fire Resistance Rated Construction""]",[],"[""Contact Us"", ""Brian Alkire"", ""Fire Prevention Bureau"", ""Hours"", ""FAQs"", ""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search About Us Operations Prevention Recruitment How Do I... Home Government Departments A - F Fire Department Prevention Contractors & Designers Resources & Inspections Fire Resistance Rated Construction Fire Resistance Rated Construction Penetrations & Openings Doors, windows and other penetrations of the rated assembly have to be addressed. Fire rated doors, glass and penetration fire-stop systems and products must be installed to maintain the tested rating. Also, reference Indiana Building Code Section 712: Penetrations, and Section 715: Opening Protectives. Joints & Seams Joints installed in or between fire-resistance-rated walls, floor or floor/ceiling assemblies and roofs or roof/ceiling assemblies shall be protected by an approved fire-resistant joint system designed to resist the passage of fire for a time period not less than the required fire-resistance rating of the wall, floor or roof in or between which it is installed. Also, reference Indiana Building Code Section 713: Fire-Resistant Joint Systems. Inspection An inspector will need to inspect the wall or ceiling assembly prior to enclosing and after all building services have been installed such as HVAC ducts, electrical circuit wiring, plumbing, etc. Inspection Items Assembly (wall, floor/ceiling) been constructed in accordance with the tested design specification. See ASTM E 119 Assembly UL listing or design detail sheet on site for inspection Floor/ceiling sheathing - Type X gypsum or listed base layer/face layer sheathing Opening protection - Rated doors and frames, rated glass and glazing Penetrations filled or protected with fire-stopping system - UL listing or design sheet and product sample on site for inspection Proper fasteners - Nail / screw size and location Proper insulation - Fiberglass or mineral wool, mineral fiber Sheathing - Type X gypsum board - vertical joints over studs Wall (other than sheathing) Always consult with the Building or Fire Code Official if you have questions. Contact Us Brian Alkire Assistant Chief of Fire Prevention Email Fire Prevention Bureau 443 N. 4th Street Lafayette, IN -47901 Phone: 765-807-1600 Hours Monday - Friday 8 a.m. - 4:30 p.m. FAQs What is Fire-Resistance-Rated Construction? Why is Fire Resistance Rated Construction important? How is it constructed/rated? What's the difference between a fire wall and a fire barrier? View All FAQs /FAQ.aspx Directories & Additional Information Links & Resources Community Outreach Fire Stations Submit a Request History Photo Gallery Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate " -585,http://www.longbeach.gov/police/press-releases/arrests-made-in-murder-case/,Media Bulletins,Agency-Published Resources,ARRESTS MADE IN MURDER CASE,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 12/8/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: ARRESTS MADE IN MURDER CASE Contact: Media Relations Detail (562) 570-5273 View original news release Long Beach Police arrested three adults and a juvenile in connection with a murder that occurred last month. On November 10, 2015, around 9:00 p.m., officers were dispatched to the area of 14th Street and Gundry Avenue regarding a shooting call, which resulted in the death of 26-year-old Jeffrey Keo of Long Beach. Several individuals, including one who was later identified as the suspect, were detained and transported to police headquarters to be interviewed. At the conclusion of the interviews, a 17-year-old male resident of Long Beach was booked for murder and a gang enhancement. On November 13, 2015, the Los Angeles County District Attorney’s Office filed charges against the 17-year-old. The defendant is being tried as an adult. In addition to the murder and gang enhancement charges, the defendant was charged with one count of robbery for an unrelated incident that occurred on November 8, 2015. On December 3, 2015, Long Beach Police arrested 18-year-old Angel Campo of Long Beach on an unrelated assault charge. The next day, he was additionally booked on an arrest warrant for the murder of Jeffrey Keo. Defendant Campo was arraigned on December 7, 2015. He is being held in Los Angeles County Jail on $2,000,000 bail. On December 5, 2015, Long Beach Police arrested 28-year-old Hector Montiel of Long Beach and booked him on an arrest warrant for the murder of Jeffrey Keo. Defendant Montiel was arraigned on December 7, 2015. He is being held in Los Angeles County Jail on $2,000,000 bail. On December 5, 2015, Long Beach Police arrested 19-year-old Esteban Panchi of Long Beach and booked him for murder. Defendant Panchi was arraigned today. He is being held in Long Beach City Jail on $2,000,000 bail. The investigation remains ongoing. Anyone with information regarding the murder is urged to contact Long Beach Police Homicide Detectives S. Lasch, T. Hubert, and M. Hubbard at (562) 570-7244. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -586,https://cityoflakewood.us/police-homepage/lakewood-police-apply-for-a-job/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -587,http://lafayettepolice.us/3547/e-sports,Not Criminal Justice Related,Not Criminal Justice Related,"","",404,"","","","","","","","" -588,https://www.lynchburgvapolice.gov/news-updates/update-child-found-wandering-on-linkhorne-road-mother-located/,Media Bulletins,Agency-Published Resources,[UPDATE] Child Found Wandering on Linkhorne Road - Mother Located - Lynchburg Police Department,"",200,403 Forbidden,"[""[UPDATE] Child Found Wandering on Linkhorne Road – Mother Located""]",[],[],"[""Contact Us"", ""Site Links"", ""Site Links""]",[],[],"" -589,https://spdblotter.seattle.gov/2019/07/25/police-arrest-suspected-heroin-dealer-arrested-downtown/,Media Bulletins,Agency-Published Resources,Suspected Heroin Dealer Arrested Downtown - SPD Blotter,"",200,403 Forbidden,"[""Suspected Heroin Dealer Arrested Downtown""]","[""Find Posts By Topic"", ""Featured Posts"", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],"Seattle.gov Choose a language: English English Google Translate may not accurately translate all content. Read disclaimer . For general City questions, please call 206-684-2489 . Tell us your requested language in English, and we can connect you with an interpreter. Continue Cancel Español Es posible que Google Translate no traduzca con precisión todo el contenido. Lea el descargo de responsabilidad . Si necesita ayuda en otro idioma, díganos en inglés nombre del idioma que necesita y lo conectaremos con un intérprete: 206-684-2489 Seguir Cancelar 中國語文 Google翻譯可能無法準確翻譯所有內容。 閱讀免責聲明 。 如果您需要翻譯,請用英語説出您所需要的語言,我們將爲你連接口譯員: 206-684-2489 繼續 取消 简体中文 Google翻译可能无法准确翻译所有内容。 阅读免责声明 。 如果您需要翻译,请用英语说出您所需要的语言,我们将为你连接口译员: 206-684-2489 继续 取消 Tiếng Việt Google Dịch có thể không dịch chính xác tất cả nội dung. Đọc tuyên bố từ chối trách nhiệm . Nếu quý vị cần hỗ trợ về ngôn ngữ, xin vui lòng cho chúng tôi biết ngôn ngữ quý vị cần hỗ trợ bằng tiếng Anh (ví dụ “Vietnamese”), chúng tôi sẽ kết nối quý vị với một thông dịch viên: 206-684-2489 Tiếp tục Huỷ bỏ русский язык Google Translate не может точно перевести весь контент. Прочтите отказ от ответственности . Если вам нужна языковая помощь, сообщите нам на английском, какой язык вам нужен, и мы свяжем вас с переводчиком: 206-684-2489 Продолжать Отмена Af-Soomaali Google Translate ayaan si sax ah u turjumi karin dhammaan waxyaabaha ku jira. Akhri afeef . Haddii aad u baahan tahay caawimaad luqadeed, fadlan noogu sheeg Ingiriisiga luqadda aad u baahan tahay, ka dib waxaan kugu xiri doonnaa turjubaan: 206-684-2489 Sii wad Jooji አማርኛ የጉግል ትርጉም ሁሉንም ይዘቶች በትክክል መተርጎም ላይችል ይችላል። ማስተባበያ አንብብ ፡፡ ኣስተርጓሚ ካስፈለግዎ የሚፈልጉትን ቋንቋ በእንግልዝኛ ይንገሩን፣ ከኣስተርጓሚ እናገናኝዎታለን። 206-684-2489 ቀጥል ሰርዝ 한국어 구글은 정확하게 모든 내용을 번역하지 않을 수 있습니다 번역. 읽기 면책 조항 . 언어지원이 필요한 경우, 필요한 언어를 영어로 말씀해 주시면 통역사와 연결해 드리겠습니다: 206-684-2489 계속하다 취소 Tagalog Maaaring hindi tumpak na isalin ng Google Translate ang lahat ng nilalaman. Basahin ang disclaimer . Para sa mga pangkalahatang katanungan sa Lungsod, mangyaring tawagan ang 206-684-2489 . Sabihin sa amin ang hiniling mong wika sa Ingles, at maikokonekta ka namin sa isang interpreter. Magpatuloy Kanselahin ภาษาไทย Google Translate อาจแปลเนื้อหาทั้งหมดไม่ถูกต้อง อ่านข้อจำกัดความรับผิดชอบ สำหรับคำถามทั่วไปเกี่ยวกับเมืองโปรดโทร 206-684-2489 บอกภาษาที่คุณต้องการเป็นภาษาอังกฤษและเราสามารถติดต่อคุณกับล่ามได้ ดำเนินการต่อ ยกเลิก 日本語 Google翻訳は、すべてのコンテンツを正確に翻訳するとは限りません. 免責事項をお読みください 。 市の一般的な質問については 206-684-2489 に電話してください。ご希望の言語を英語で教えていただければ、通訳をご案内いたします。 継続する キャンセル ភាសាខ្មែរ កម្មវិធីបកប្រែហ្គូហ្គោលមិនអាចបកប្រែមាតិកាទាំងអស់បានត្រឹមត្រូវទេ។ អានការបដិសេធ។ សម្រាប់សំណួរទូទៅរបស់ទីក្រុងសូមទូរស័ព្ទមក 206-684-2489 ។ ប្រាប់យើងពីភាសាដែលអ្នកស្នើសុំជាភាសាអង់គ្លេសហើយយើងអាចភ្ជាប់អ្នកជាមួយអ្នកបកប្រែភាសា។ បន្ត បោះបង់ ພາສາລາວ Google Translate ອາດຈະບໍ່ແປເນື້ອຫາທັງ ໝົດ ຢ່າງຖືກຕ້ອງ. ອ່ານປະຕິເສດ . ສຳ ລັບ ຄຳ ຖາມທົ່ວໄປຂອງເມືອງ, ກະລຸນາໂທຫາ 206-684-2489 . ບອກພວກເຮົາເປັນພາສາອັງກິດທີ່ທ່ານຮ້ອງຂໍ, ແລະພວກເຮົາສາມາດເຊື່ອມຕໍ່ທ່ານກັບນາຍແປພາສາ. ສືບຕໍ່ ຍົກເລີກ Українська Перекладач Google може не точно перекласти весь вміст. Прочитайте застереження . За загальними запитаннями про місто, будь ласка, телефонуйте 206-684-2489 . Розкажіть нам про вашу мову англійською мовою, і ми можемо зв’язати вас із перекладачем. Продовжуйте Скасувати Français Google Traduction peut ne pas traduire correctement tout le contenu. Lisez la clause de non-responsabilité . Pour des questions générales sur la ville, veuillez appeler le 206-684-2489 . Dites-nous votre langue souhaitée en anglais, et nous pourrons vous mettre en contact avec un interprète. Continuer Annuler " -590,https://spdblotter.seattle.gov/2021/08/19/police-arrest-woman-for-violating-court-order-protecting-mayor-durkan/,Media Bulletins,Agency-Published Resources,Police Arrest Woman for Violating Court Order Protecting Mayor Durkan - SPD Blotter,"",200,403 Forbidden,"[""Police Arrest Woman for Violating Court Order Protecting Mayor Durkan""]","[""Find Posts By Topic"", ""Featured Posts"", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],"Seattle.gov Choose a language: English English Google Translate may not accurately translate all content. Read disclaimer . For general City questions, please call 206-684-2489 . Tell us your requested language in English, and we can connect you with an interpreter. Continue Cancel Español Es posible que Google Translate no traduzca con precisión todo el contenido. Lea el descargo de responsabilidad . Si necesita ayuda en otro idioma, díganos en inglés nombre del idioma que necesita y lo conectaremos con un intérprete: 206-684-2489 Seguir Cancelar 中國語文 Google翻譯可能無法準確翻譯所有內容。 閱讀免責聲明 。 如果您需要翻譯,請用英語説出您所需要的語言,我們將爲你連接口譯員: 206-684-2489 繼續 取消 简体中文 Google翻译可能无法准确翻译所有内容。 阅读免责声明 。 如果您需要翻译,请用英语说出您所需要的语言,我们将为你连接口译员: 206-684-2489 继续 取消 Tiếng Việt Google Dịch có thể không dịch chính xác tất cả nội dung. Đọc tuyên bố từ chối trách nhiệm . Nếu quý vị cần hỗ trợ về ngôn ngữ, xin vui lòng cho chúng tôi biết ngôn ngữ quý vị cần hỗ trợ bằng tiếng Anh (ví dụ “Vietnamese”), chúng tôi sẽ kết nối quý vị với một thông dịch viên: 206-684-2489 Tiếp tục Huỷ bỏ русский язык Google Translate не может точно перевести весь контент. Прочтите отказ от ответственности . Если вам нужна языковая помощь, сообщите нам на английском, какой язык вам нужен, и мы свяжем вас с переводчиком: 206-684-2489 Продолжать Отмена Af-Soomaali Google Translate ayaan si sax ah u turjumi karin dhammaan waxyaabaha ku jira. Akhri afeef . Haddii aad u baahan tahay caawimaad luqadeed, fadlan noogu sheeg Ingiriisiga luqadda aad u baahan tahay, ka dib waxaan kugu xiri doonnaa turjubaan: 206-684-2489 Sii wad Jooji አማርኛ የጉግል ትርጉም ሁሉንም ይዘቶች በትክክል መተርጎም ላይችል ይችላል። ማስተባበያ አንብብ ፡፡ ኣስተርጓሚ ካስፈለግዎ የሚፈልጉትን ቋንቋ በእንግልዝኛ ይንገሩን፣ ከኣስተርጓሚ እናገናኝዎታለን። 206-684-2489 ቀጥል ሰርዝ 한국어 구글은 정확하게 모든 내용을 번역하지 않을 수 있습니다 번역. 읽기 면책 조항 . 언어지원이 필요한 경우, 필요한 언어를 영어로 말씀해 주시면 통역사와 연결해 드리겠습니다: 206-684-2489 계속하다 취소 Tagalog Maaaring hindi tumpak na isalin ng Google Translate ang lahat ng nilalaman. Basahin ang disclaimer . Para sa mga pangkalahatang katanungan sa Lungsod, mangyaring tawagan ang 206-684-2489 . Sabihin sa amin ang hiniling mong wika sa Ingles, at maikokonekta ka namin sa isang interpreter. Magpatuloy Kanselahin ภาษาไทย Google Translate อาจแปลเนื้อหาทั้งหมดไม่ถูกต้อง อ่านข้อจำกัดความรับผิดชอบ สำหรับคำถามทั่วไปเกี่ยวกับเมืองโปรดโทร 206-684-2489 บอกภาษาที่คุณต้องการเป็นภาษาอังกฤษและเราสามารถติดต่อคุณกับล่ามได้ ดำเนินการต่อ ยกเลิก 日本語 Google翻訳は、すべてのコンテンツを正確に翻訳するとは限りません. 免責事項をお読みください 。 市の一般的な質問については 206-684-2489 に電話してください。ご希望の言語を英語で教えていただければ、通訳をご案内いたします。 継続する キャンセル ភាសាខ្មែរ កម្មវិធីបកប្រែហ្គូហ្គោលមិនអាចបកប្រែមាតិកាទាំងអស់បានត្រឹមត្រូវទេ។ អានការបដិសេធ។ សម្រាប់សំណួរទូទៅរបស់ទីក្រុងសូមទូរស័ព្ទមក 206-684-2489 ។ ប្រាប់យើងពីភាសាដែលអ្នកស្នើសុំជាភាសាអង់គ្លេសហើយយើងអាចភ្ជាប់អ្នកជាមួយអ្នកបកប្រែភាសា។ បន្ត បោះបង់ ພາສາລາວ Google Translate ອາດຈະບໍ່ແປເນື້ອຫາທັງ ໝົດ ຢ່າງຖືກຕ້ອງ. ອ່ານປະຕິເສດ . ສຳ ລັບ ຄຳ ຖາມທົ່ວໄປຂອງເມືອງ, ກະລຸນາໂທຫາ 206-684-2489 . ບອກພວກເຮົາເປັນພາສາອັງກິດທີ່ທ່ານຮ້ອງຂໍ, ແລະພວກເຮົາສາມາດເຊື່ອມຕໍ່ທ່ານກັບນາຍແປພາສາ. ສືບຕໍ່ ຍົກເລີກ Українська Перекладач Google може не точно перекласти весь вміст. Прочитайте застереження . За загальними запитаннями про місто, будь ласка, телефонуйте 206-684-2489 . Розкажіть нам про вашу мову англійською мовою, і ми можемо зв’язати вас із перекладачем. Продовжуйте Скасувати Français Google Traduction peut ne pas traduire correctement tout le contenu. Lisez la clause de non-responsabilité . Pour des questions générales sur la ville, veuillez appeler le 206-684-2489 . Dites-nous votre langue souhaitée en anglais, et nous pourrons vous mettre en contact avec un interprète. Continuer Annuler " -591,http://www.police.wallingfordct.gov/police-station-project/,Contact Info & Agency Meta,Info About Agencies,Police Station Project | Wallingford Police Department,Police Station Project,200,"Wallingford, CT Police Department","[""2022 Police Station Project"", ""New Police Headquarters Construction Photos"", ""New Police Headquarters Construction Photos"", ""New Police Headquarters Construction Photos"", ""Work Continues on Design of New Wallingford Police Station"", ""Wallingford Acquires Former 3M Building for New Police Station"", ""Wallingford Town Council Approves Purchase of Site for New Police Station""]","[""RSS Feed""]",[],[],[],[],"‹ Close Menu About Us Our Team Who We Serve Our History Police Station Project Divisions Records Division Traffic Division Investigative Services Division Professional Standards & Training Division Patrol Division Community Impact Unit Public Safety Communications Center Emergency Response Team Field Training & Evaluation Program How Do I? Pistol Permits Fingerprinting Accident Reports Case Reports Traffic Violations Pay a Parking Ticket Hire a Cop Alarm Registration Careers Current Employment Opportunities Forms & Resources Bingo, Bazaar & Raffle Documents Precious Metal Application Secondhand Application Pawnbroker Application Vending Application News & Events Road Closures & Detours Agency Events & Programs Press Releases Photo Gallery Video Gallery Wallingford PBA Contact 2022 Police Station Project 2022 Police Station Project New Police Headquarters Construction Photos 5/8/2023 View PDF New Police Headquarters Construction Photos 4/25/2023 View PDF New Police Headquarters Construction Photos 4/18/2023 View PDF Work Continues on Design of New Wallingford Police Station 1/25/2022 Wallingford Acquires Former 3M Building for New Police Station 7/13/2021 Wallingford Town Council Approves Purchase of Site for New Police Station 4/13/2021 RSS Feed Subscribe to this Page Our Team Who We Serve Our History Police Station Project New Police Headquarters Construction Photos 5/8/2023 View PDF New Police Headquarters Construction Photos 4/25/2023 View PDF New Police Headquarters Construction Photos 4/18/2023 View PDF Work Continues on Design of New Wallingford Police Station 1/25/2022 Wallingford Acquires Former 3M Building for New Police Station 7/13/2021 Wallingford Town Council Approves Purchase of Site for New Police Station 4/13/2021 RSS Feed Subscribe to this Page New Police Headquarters Construction Photos 5/8/2023 View PDF New Police Headquarters Construction Photos 4/25/2023 View PDF New Police Headquarters Construction Photos 4/18/2023 View PDF Work Continues on Design of New Wallingford Police Station 1/25/2022 Wallingford Acquires Former 3M Building for New Police Station 7/13/2021 Wallingford Town Council Approves Purchase of Site for New Police Station 4/13/2021 RSS Feed Subscribe to this Page New Police Headquarters Construction Photos 5/8/2023 View PDF New Police Headquarters Construction Photos 4/25/2023 View PDF New Police Headquarters Construction Photos 4/18/2023 View PDF Work Continues on Design of New Wallingford Police Station 1/25/2022 Wallingford Acquires Former 3M Building for New Police Station 7/13/2021 Wallingford Town Council Approves Purchase of Site for New Police Station 4/13/2021 Location: 135 North Main Street Wallingford, CT 06492 Tel: (203) 294-2800 Fax: (203) 294-2882 Administrative Office: Monday through Friday 8 am – 4 pm Site Map Privacy Policy Accessibility Statement Anonymous Tip Form Town of Wallingford Location: 135 North Main Street Wallingford, CT 06492 Tel: (203) 294-2800 Fax: (203) 294-2882 Administrative Office: Monday through Friday 8 am – 4 pm Site Map Privacy Policy Accessibility Statement Anonymous Tip Form Town of Wallingford Web Solutions © 2022 – 2024 Wallingford Police Department. All rights reserved. Web Solutions © 2022 – 2024 Wallingford Police Department. All rights reserved. " -592,https://www.floresvilletx.gov/departments/police/complaints-commendations/,Contact Info & Agency Meta,Info About Agencies,Complaints & Commendations - Police Department - City of Floresville,Our complaint system and disciplinary procedures subject Floresville police officers to corrective action and protect them from unwarranted criticism.,200,City of Floresville,"[""Complaints & Commendations""]","[""I’m looking for...""]","[""Internal Affairs"", ""Reporting Procedure"", ""Types of Complaints"", ""Complaint Investigation and Disposition Process"", ""Complaint Disposition"", ""Note"", ""Commendations"", ""Police Pages"", ""Government"", ""Departments"", ""Community"", ""Contact & Feedback""]",[],[],[],"Menu Home Government City Council FEDC Boards & Committees Agendas & Minutes Meeting Videos Notices Press Releases & RFQs Bid Notices Finance, Budget, Transparency City Documents Code of Ordinances Elections Employment Opportunities Forms & Applications City News Departments City Manager Assistant City Manager City Secretary Buildings & Permits Code Enforcement Community Development Cemetery Finance Fire & EMS Human Resources Municipal Court Police Public Works Utility Administration Water Wastewater Community About Floresville Calendar of Events Event Center Map Parks & Recreation Pool Photo Galleries Videos Resources & Links Contact & Feedback Citizen Complaints Open Records Requests Comments & Questions Contact Information I Want To… Pay Water/Garbage Bill See Event Calendar Find a Job Apply for a Permit Read Meeting Agendas Contact City Hall Visit Floresville Live in Floresville Do Business in Floresville Facebook Twitter Menu Home Government City Council FEDC Boards & Committees Agendas & Minutes Meeting Videos Notices Press Releases & RFQs Bid Notices Finance, Budget, Transparency City Documents Code of Ordinances Elections Employment Opportunities Forms & Applications City News Departments City Manager Assistant City Manager City Secretary Buildings & Permits Code Enforcement Community Development Cemetery Finance Fire & EMS Human Resources Municipal Court Police Public Works Utility Administration Water Wastewater Community About Floresville Calendar of Events Event Center Map Parks & Recreation Pool Photo Galleries Videos Resources & Links Contact & Feedback Citizen Complaints Open Records Requests Comments & Questions Contact Information I Want To… Pay Water/Garbage Bill See Event Calendar Find a Job Apply for a Permit Read Meeting Agendas Contact City Hall Visit Floresville Live in Floresville Do Business in Floresville Facebook Twitter Menu Home Government City Council FEDC Boards & Committees Agendas & Minutes Meeting Videos Notices Press Releases & RFQs Bid Notices Finance, Budget, Transparency City Documents Code of Ordinances Elections Employment Opportunities Forms & Applications City News Departments City Manager Assistant City Manager City Secretary Buildings & Permits Code Enforcement Community Development Cemetery Finance Fire & EMS Human Resources Municipal Court Police Public Works Utility Administration Water Wastewater Community About Floresville Calendar of Events Event Center Map Parks & Recreation Pool Photo Galleries Videos Resources & Links Contact & Feedback Citizen Complaints Open Records Requests Comments & Questions Contact Information I Want To… Pay Water/Garbage Bill See Event Calendar Find a Job Apply for a Permit Read Meeting Agendas Contact City Hall Visit Floresville Live in Floresville Do Business in Floresville Facebook Twitter " -593,https://delcopa.gov/ojs/efileforms/court admin forms for efile/writofexecutionnotice.pdf,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -594,http://www.longbeach.gov/police/press-releases/police-seek-public-s-help-with-identifying-financial-crimes-suspect/,Media Bulletins,Agency-Published Resources,Police Seek Public's Help with Identifying Financial Crimes Suspect,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 6/18/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: POLICE SEEK PUBLIC'S HELP WITH IDENTIFYING FINANCIAL CRIMES SUSPECT; PHOTOS PROVIDED Contact: Media Relations (562) 570-5273 On Tuesday, June 2, 2015, the suspect (depicted in the photographs provided) applied for an auto loan with a lending company located in central Long Beach. The suspect used an altered Department of Motor Vehicles Certificate of Title form, along with fraudulent documents including a driver’s license, utility bill, proof of insurance, and paystubs. He also used an unsuspecting victim’s name, date of birth and social security number. The suspect was able to obtain a $15,000 loan under these false pretenses. Once the loan was approved, the suspect went to a money transfer business in the City of Torrance and received the loan proceeds in cash. The individual in the photographs is suspected of committing multiple felony crimes including identity theft, forgery, perjury, conspiracy, grand theft and burglary. Anyone who recognizes this individual, or has information regarding this incident is urged to contact Long Beach Police Financial Crimes Detective Dominick Scaccia at (562) 570-7391. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting www.lacrimestoppers.org. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -595,https://www.pleasantprairiewi.gov/departments/police/news/police_and_fire___rescue_news_archive/2019_news_releases/coffee_with_a_cop,Media Bulletins,Agency-Published Resources,Coffee with a Cop - Village of Pleasant Prairie,"",200,Just a moment...,[],"[""Coffee with a Cop""]","[""Follow Us on Social Media""]",[],[],[],"" -596,https://police.greenvillesc.gov/599/paratransit-information,Not Criminal Justice Related,Not Criminal Justice Related,"Paratransit Information | Greenville, SC - Official Website","Greenville Area Paratransit (GAP) is an American with Disabilities Act paratransit service provided for individuals who, because of their disability, are unable to use Greenlink's fixed route bus service. Learn all about eligibility, service hours, and service area. From this page you can also schedule rides and file appeals.",200,"Police Department | Greenville, SC - Official Website","[""Paratransit Information""]",[],"[""Begin the process by downloading an application."", ""Loading""]","[""Download the GAP Rider's Handbook"", ""ADA Grievance Form""]",[],[],"Skip to Main Content About Bus Service Paratransit Service Trolley Service Initiatives Employment Search Home Departments Greenlink Transit Paratransit Service Paratransit Information Paratransit Information Greenville Area Paratransit (GAP) is an Americans with Disabilities Act paratransit service provided for individuals who, because of their disabilities, are unable to use Greenlink's fixed route bus and trolley service. This does not include disabilities that only make the use of accessible transit service difficult or inconvenient. GAP provides comparable service to the regular fixed route bus and trolley in terms of shared rides, origin-to-destination pickup, service area, and hours and days of service. Learn more about: GAP Eligibility Riding GAP Scheduling A Ride Hours and Service Area Responsibilities Of Riding GAP GAP Suspension Begin the process by downloading an application. GAP Eligibility Determination Application (PDF) GAP Información General y Formularios de Aplicación o Solicitud (PDF) GAP Eligibility Determination Application (Chinese) (PDF) Download the GAP Rider's Handbook GAP Handbook (PDF) ADA Grievance Form City of Greenville ADA Grievance Form (PDF) Eligibility Service Hours & Area Scheduling A Ride Riding GAP Responsibilities Suspension of Service Appeals Downtown Special Events Parking unity park falls park Bus & Trolley AFFORDABLE HOUSING Agendas & Minutes Home Contact Us Accessibility /QuickLinks.aspx 206 S Main Street, Greenville, SC 29601 Police Non-Emergency: 864-271-5333 Greenville Cares Information Center 864-232-2273 Back to Top Enable Google Translate About Bus Service Paratransit Service Trolley Service Initiatives Employment Search Home Departments Greenlink Transit Paratransit Service Paratransit Information Paratransit Information Greenville Area Paratransit (GAP) is an Americans with Disabilities Act paratransit service provided for individuals who, because of their disabilities, are unable to use Greenlink's fixed route bus and trolley service. This does not include disabilities that only make the use of accessible transit service difficult or inconvenient. GAP provides comparable service to the regular fixed route bus and trolley in terms of shared rides, origin-to-destination pickup, service area, and hours and days of service. Learn more about: GAP Eligibility Riding GAP Scheduling A Ride Hours and Service Area Responsibilities Of Riding GAP GAP Suspension Begin the process by downloading an application. GAP Eligibility Determination Application (PDF) GAP Información General y Formularios de Aplicación o Solicitud (PDF) GAP Eligibility Determination Application (Chinese) (PDF) Download the GAP Rider's Handbook GAP Handbook (PDF) ADA Grievance Form City of Greenville ADA Grievance Form (PDF) Eligibility Service Hours & Area Scheduling A Ride Riding GAP Responsibilities Suspension of Service Appeals Downtown Special Events Parking unity park falls park Bus & Trolley AFFORDABLE HOUSING Agendas & Minutes Home Contact Us Accessibility /QuickLinks.aspx 206 S Main Street, Greenville, SC 29601 Police Non-Emergency: 864-271-5333 Greenville Cares Information Center 864-232-2273 Back to Top Enable Google Translate " -597,https://www.fultoncountyga.gov/news/2021/07/23/fulton-county-police-observe-national-night-out,Media Bulletins,Agency-Published Resources,Fulton County Police Observe National Night Out,"",200,403 - Forbidden: Access is denied.,"[""Fulton County Police Observe National Night Out"", ""Fulton County Police Observe National Night Out""]",[],"[""Share This Story""]","[""Contact Us"", ""Helpful Links""]",[],"[""License & Certificates"", ""License & Certificates"", ""Voting & Elections"", ""Voting & Elections"", ""Health Services"", ""Health Services"", ""Libraries & Arts"", ""Libraries & Arts"", ""Animal Services"", ""Animal Services"", ""Youth"", ""Youth"", ""Seniors"", ""Seniors"", ""Water"", ""Water"", ""Public Safety"", ""Public Safety"", ""Courts"", ""Courts"", ""Human Services"", ""Human Services"", ""Other"", ""Other"", ""Property"", ""Property"", ""Vehicles"", ""Vehicles"", ""Water"", ""Water"", ""Doing Business with FC"", ""Doing Business with FC"", ""Bid Opportunities"", ""Bid Opportunities"", ""Economic Development"", ""Economic Development"", ""Permits and Inspections"", ""Permits and Inspections"", ""Courts"", ""Courts"", ""Justice Agencies"", ""Justice Agencies"", ""Court Services"", ""Court Services"", ""Board of Commissioners"", ""Board of Commissioners"", ""Clerk to the Commission"", ""Clerk to the Commission"", ""BOC Meeting Schedule"", ""BOC Meeting Schedule"", ""Agendas and Minutes"", ""Agendas and Minutes"", ""Watch Previous Board Meetings"", ""Watch Previous Board Meetings"", ""Citizen Engagement"", ""Citizen Engagement"", ""CourtWatch"", ""CourtWatch"", ""Tours and Requests"", ""Tours and Requests"", ""Volunteer Opportunities"", ""Volunteer Opportunities"", ""Youth Programs"", ""Youth Programs"", ""About Fulton County"", ""About Fulton County"", ""Executive Leadership"", ""Executive Leadership"", ""Fulton County Departments"", ""Fulton County Departments"", ""Fulton County Initiatives"", ""Fulton County Initiatives"", ""Open Government"", ""Open Government""]",Follow Us Twitter Instagram Facebook Twitter Instagram Facebook Search Created with Sketch. -598,https://www.sandiego.gov/department-document/march242009100-16th-streetaudioofficer-k-copeland-walkthroughredactedkmwav,Misc Police Activity,Police & Public Interactions,"","",404,"","","","","","","","" -599,https://delcopa.gov/publicrelations/releases/2020/babyitempickup_june19.html,Not Criminal Justice Related,Not Criminal Justice Related,"Baby Item Pick Up to be held June 19 - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Baby Item Pick Up to be held June 19""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Baby Item Pick Up to be held June 19 Home / Departments / Public Relations Releases / Baby Item Pick Up to be held June 19 Delaware County Council, the Department of Human Services, Individuals Aiding in Emergencies Foundation and Multicultural Community Family Services are sponsoring a baby item pick up event on Friday, June 19 from noon to 2pm at 250 Sharon Ave. in Sharon Hill. Newborn to size 6 diapers, formula, baby food, and other baby items are available free of charge for families in need. We ask that residents attending this event please wear a mask as well as practice social distancing. First come first serve. Public Relations Navigation Press Releases County Newsletter Use of County Facility Form Questions about COVID-19 vaccines? Please call the COVID-19 Call Center: 484-276-2100. Adrienne Marofsky, Director Government Center, 226A 201 W. Front St. Media, PA 19063 Phone: 610-891-4943 delcopr@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Baby Item Pick Up to be held June 19 Home / Departments / Public Relations Releases / Baby Item Pick Up to be held June 19 Baby Item Pick Up to be held June 19 Home / Departments / Public Relations Releases / Baby Item Pick Up to be held June 19 Baby Item Pick Up to be held June 19 Home / Departments / Public Relations Releases / Baby Item Pick Up to be held June 19 " -600,https://broadview-il.gov/events/police-and-fire-committee-meeting/,Poor Data Source,Poor Data Source,Police and Fire Committee Meeting | Broadview,"",200,Home | A Balanced Community,"[""Police and Fire Committee Meeting""]",[],"[""Leave a Reply Cancel reply"", ""I Want To"", ""Upcoming Events"", ""About Broadview, IL"", ""Phone Numbers"", ""Join Our Newsletter"", ""Broadview Municipal Building""]","[""Bowties & Tutus"", ""Drive-By Community Shred Day"", ""Walk with the Mayor"", ""Juneteenth Celebration 2024""]",[],[],"Menu Home Residents Events Village Board Meetings Report A Concern Curfew Parking Local Schools Receive Robo Calls Newsletter Archives Departments Water Pay My Water Bill Water Bill Rates How To Read Your Water Bill Water Billing Penalty Phase Waste & Yard Stickers Finance Financial Reports Property Tax Rates Financial Statements Compensation Packet Police Chief Of Police Thomas Mills Vision Operation Division Patrol Bureau Detective Bureau Administrative Services (Police) 911 Communications Truck Enforcement Initiative Police Reports Broadview Annual Police Reports General Information And Tips Sex Offender Registry Identity Theft Resources Vacation Checks For Your Home Block Party Request Form/Signature Form Community Feedback Organizational Structure Broadview Police Department Recruiting Fire Fire Chief Matthew Martin Fire Department Team About Us (Fire) Fire Suppression Emergency Medical Services Pre-Fire Planning Fire Inspector Martin Scafidi Fire Training Division Emergency Preparedness CPR Registration MyID Program Residential Knox Box Fire Prevention Bureau and Public Education Fire Annual Report Home Fire Safety Checklist Building Building Department Safety Committee Information Sheet Code Zoning Adjudication Downloadable Forms Solar Guideline, Checklists, and Permitting Public Works Public Works Department Refuse Broadview Capital Improvement Plan FAQ Public Works Website Links Water Quality Reports MS4 Annual Reports Village RFQ Government About Broadview Broadview History Village Government Village Code Village Board Meetings Village Directory Village Clerk Village Official Records Voter Registration FOIA Request Duties Important dates for November election Village Administrator Broadview Westchester Joint Water Agency Job Opportunities Alliance for Sustainability Solar Guidelines, Checklists & Permitting Solar Energy Resources Community Solar Unity Solar Group SBC Waste Hauler Juneteenth Festival Juneteenth Festival Archive Broadview Initiatives Elevating Aging-in-Community in Bellwood & Broadview English Spanish English Ask Broadview Map " -601,https://jamestownnd.gov/event/public-works-police-fire-committees-2-2023-06-22/,Poor Data Source,Poor Data Source,Public Works; Police & Fire Committees - City of Jamestown,"",200,Home - City of Jamestown,"["""", ""Public Works; Police & Fire Committees"", ""City Hall Offices""]","[""June 22, 2023 @ 4:00 PM"", ""Details"", ""Venue""]","[""Event Navigation"", ""Event Navigation"", ""Social"", ""Menu""]",[],[],[],"MENU MENU Home Departments ADMINISTRATION & FINANCE UTILITY BILLING ASSESSMENT CITY ATTORNEY CIVIC CENTER FORESTRY HUMAN RESOURCES PUBLIC SAFETY FIRE MUNICIPAL COURT POLICE PUBLIC WORKS BUILDING ENGINEERING INSPECTIONS PLANNING & ZONING RECYCLING SANITATION & SOLID WASTE STORM WATER MANAGEMENT STREET VECTOR CONTROL WASTEWATER WATER Government BIDS & PROPOSALS CITY COMMITTEES MEET THE MAYOR MEET THE COUNCIL MINUTES & AGENDAS CITY COUNCIL COMMITTEES MUNICIPAL CODE PUBLIC NOTICES UPCOMING SPECIAL ASSESSMENTS VOTING & ELECTIONS How Do I? APPLY FOR A CITY JOB OPENING A PERMIT/LICENSE CONTACT CITY COUNCIL FIND BID POSTINGS CITY BUDGET INFORMATION CITY MAPS CURRENT PSA'S ONLINE FORMS PROPERTY TAX INFO UPCOMING EVENTS SIGN UP FOR STUTSMAN ALERTS SUBMIT A GENERAL CONCERN ONLINE PAYMENTS Events Reach Us Home Public Works; Police & Fire Committees Home Public Works; Police & Fire Committees « All Events This event has passed. Public Works; Police & Fire Committees June 22, 2023 @ 4:00 PM Event Navigation « City Finance & Legal; Building, Planning & Zoning; Civic Center & Promotion Committees Special City Council Meeting » The meeting is scheduled at City Hall, 102 3rd Ave SE, Jamestown, ND. The meeting is open to the public. You may access an agenda on the Agenda & Minutes page of www.JamestownND.gov or contact 701-252-5900 or email info@JamestownND.gov. + Google Calendar + iCal Export Details Date: June 22, 2023 Time: 4:00 PM Venue 102 3rd Ave SE Jamestown , ND 58401 United States + Google Map Phone: 701-252-5900 Event Navigation « City Finance & Legal; Building, Planning & Zoning; Civic Center & Promotion Committees Special City Council Meeting » City Hall Offices 102 3rd Ave SE Jamestown, ND 58401 (701) 252-5900 (701) 252-5903 Social Menu MENU MENU Home Departments Government How Do I? Events Reach Us Employee Logon © 2024 City Of Jamestown MENU MENU Home Departments ADMINISTRATION & FINANCE UTILITY BILLING ASSESSMENT CITY ATTORNEY CIVIC CENTER FORESTRY HUMAN RESOURCES PUBLIC SAFETY FIRE MUNICIPAL COURT POLICE PUBLIC WORKS BUILDING ENGINEERING INSPECTIONS PLANNING & ZONING RECYCLING SANITATION & SOLID WASTE STORM WATER MANAGEMENT STREET VECTOR CONTROL WASTEWATER WATER Government BIDS & PROPOSALS CITY COMMITTEES MEET THE MAYOR MEET THE COUNCIL MINUTES & AGENDAS CITY COUNCIL COMMITTEES MUNICIPAL CODE PUBLIC NOTICES UPCOMING SPECIAL ASSESSMENTS VOTING & ELECTIONS How Do I? APPLY FOR A CITY JOB OPENING A PERMIT/LICENSE CONTACT CITY COUNCIL FIND BID POSTINGS CITY BUDGET INFORMATION CITY MAPS CURRENT PSA'S ONLINE FORMS PROPERTY TAX INFO UPCOMING EVENTS SIGN UP FOR STUTSMAN ALERTS SUBMIT A GENERAL CONCERN ONLINE PAYMENTS Events Reach Us " -602,https://police.birminghamal.gov/command-staff/captains/,Contact Info & Agency Meta,Info About Agencies,Captains | Birmingham Police Department,"",200,"Home | Police Department - Birmingham, AL","[""Birmingham Police Department Commitment | Excellence | Integrity""]","[""Putting People First"", ""Captains""]",[],"[""Hours & Info"", ""Upcoming Events"", ""CRIMESTOPPERS"", ""Police Information"", ""Quick Links"", ""I Need...""]",[],[],"Birmingham Police Department Commitment | Excellence | Integrity Putting People First Birmingham Police Department Commitment | Excellence | Integrity Putting People First Birmingham Police Department Commitment | Excellence | Integrity Putting People First Home About Command Staff Bureaus Press Releases Join the Team Crime Stats CALEA IAD Stats Inmate Search Contacts Search Home About Command Staff Bureaus Press Releases Join the Team Crime Stats CALEA IAD Stats Inmate Search Contacts Search Search Captains In This Section BPD Organization Chart Chief Scott Thurmond Assistant Chief La’Quaylin Parhm Mack Deputy Chief Shelia Frazier-Finney Deputy Chief Onree J. Pruitt Jr. Captains Lieutenants Captain Frank Alexander II – Custody Services Division Commander Captain Janice Blackwell – Community Engagement Liaison Captain Raymond Cochran – Vice/Narcotics Commander Captain Harry Greenberg – Forensic Science Division Commander Captain Thomas Hanks – North Precinct Commander Captain James Jackson – Executive Assistant to the Assistant Chief of Police Captain Torry Mack – Tactical Operations Precinct Commander Captain Curtis Mitchell, Jr. – West Precinct Commander Captain Michelle Pruitt – Property and Records Management Division Commander Captain Julie J. Quigley-Vining – East Precinct Commander Captain Joe Roberts – South Precinct Commander Captain David Rockett – Internal Affairs Division Commander Captain Michael Sellers- Crimes Against Person Division Commander Captains In This Section BPD Organization Chart Chief Scott Thurmond Assistant Chief La’Quaylin Parhm Mack Deputy Chief Shelia Frazier-Finney Deputy Chief Onree J. Pruitt Jr. Captains Lieutenants Captain Frank Alexander II – Custody Services Division Commander Captain Janice Blackwell – Community Engagement Liaison Captain Raymond Cochran – Vice/Narcotics Commander Captain Harry Greenberg – Forensic Science Division Commander Captain Thomas Hanks – North Precinct Commander Captain James Jackson – Executive Assistant to the Assistant Chief of Police Captain Torry Mack – Tactical Operations Precinct Commander Captain Curtis Mitchell, Jr. – West Precinct Commander Captain Michelle Pruitt – Property and Records Management Division Commander Captain Julie J. Quigley-Vining – East Precinct Commander Captain Joe Roberts – South Precinct Commander Captain David Rockett – Internal Affairs Division Commander Captain Michael Sellers- Crimes Against Person Division Commander In This Section BPD Organization Chart Chief Scott Thurmond Assistant Chief La’Quaylin Parhm Mack Deputy Chief Shelia Frazier-Finney Deputy Chief Onree J. Pruitt Jr. Captains Lieutenants In This Section BPD Organization Chart Chief Scott Thurmond Assistant Chief La’Quaylin Parhm Mack Deputy Chief Shelia Frazier-Finney Deputy Chief Onree J. Pruitt Jr. Captains Lieutenants Captain Frank Alexander II – Custody Services Division Commander Captain Janice Blackwell – Community Engagement Liaison Captain Raymond Cochran – Vice/Narcotics Commander Captain Harry Greenberg – Forensic Science Division Commander Captain Thomas Hanks – North Precinct Commander Captain James Jackson – Executive Assistant to the Assistant Chief of Police Captain Torry Mack – Tactical Operations Precinct Commander Captain Curtis Mitchell, Jr. – West Precinct Commander Captain Michelle Pruitt – Property and Records Management Division Commander Captain Julie J. Quigley-Vining – East Precinct Commander Captain Joe Roberts – South Precinct Commander Captain David Rockett – Internal Affairs Division Commander Captain Michael Sellers- Crimes Against Person Division Commander " -603,http://www.longbeach.gov/police/press-releases/long-beach-police-seeking-the-public-s-help-in-identifying-armed-robbery-suspect---video-footage-available--/,Media Bulletins,Agency-Published Resources,LONG BEACH POLICE SEEKING THE PUBLIC'S HELP IN IDENTIFYING ARMED ROBBERY SUSPECT --VIDEO FOOTAGE AVAILABLE--,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 7/16/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: LONG BEACH POLICE SEEKING THE PUBLIC'S HELP IN IDENTIFYING ARMED ROBBERY SUSPECT --VIDEO FOOTAGE AVAILABLE-- Contact: Media Relations (562) 570-5273 VIEW VIDEO FOOTAGE **Suspect seen in video at start and at end.** The Long Beach Police Department is asking for the public’s help in identifying a suspect who committed a robbery to a local business. On Wednesday, July 9, 2014, at approximately 6:30 P.M., the suspect entered a local business in the 100 block of Linden Avenue. The suspect approached one of the employees and had a brief conversation with the employee. During the course of the conversation, the suspect brandished a knife and demanded money from the employee. The employee was in immediate fear for their safety, opened the cash register and handed the suspect money. Thankfully, the employee was not injured. The suspect was last seen running north on Linden Avenue from the business. During the course of the investigation detectives obtained videotape evidence of the suspect entering the business. The suspect is described as a Male Black, approximately 50 years old, wearing a black cap, a blue and white plaid colored shirt and blue jeans. Anyone with information on the suspect or his whereabouts is urged to contact Long Beach Police Robbery Detective Don Collier at (562) 570-7464 or (562) 570-5537. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting www.lacrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -604,http://lafayettepolice.us/316/housing-information-and-application,Not Criminal Justice Related,Not Criminal Justice Related,"Housing Choice Voucher Application Information | Lafayette, IN - Official Website",Applications are currently being accepted.,200,"Police Department | Lafayette, IN - Official Website","[""Housing Choice Voucher Application Information""]","[""Michelle Reynolds""]","[""Contact Us"", ""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -605,https://spdblotter.seattle.gov/2020/05/30/police-respond-to-protests-property-damage-arrest-seven/,Media Bulletins,Agency-Published Resources,"Police Respond to Protests, Property Damage, Arrest Seven - SPD Blotter","",200,403 Forbidden,"[""Police Respond to Protests, Property Damage, Arrest Seven""]","[""Find Posts By Topic"", ""You might also like..."", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],SPD Blotter Seattle Police Department (SPD) Home Topics SPD Blotter Seattle Police Department (SPD) Home Topics SPD Blotter Seattle Police Department (SPD) Home Topics Search Search Search Search Find Posts By Topic Police Precincts East Precinct North Precinct Southwest Precinct South Precinct West Precinct Data and Crime Trends Investigations 2018 Homicides 2019 Homicides 2020 Homicides Statements and News Releases Chief of Police News Releases Events Alerts Community Outreach Traffic and Collisions Significant Incident Reports Find Posts By Topic Police Precincts East Precinct North Precinct Southwest Precinct South Precinct West Precinct Data and Crime Trends Investigations 2018 Homicides 2019 Homicides 2020 Homicides Statements and News Releases Chief of Police News Releases Events Alerts Community Outreach Traffic and Collisions Significant Incident Reports Police Precincts East Precinct North Precinct Southwest Precinct South Precinct West Precinct Data and Crime Trends Investigations 2018 Homicides 2019 Homicides 2020 Homicides Statements and News Releases Chief of Police News Releases Events Alerts Community Outreach Traffic and Collisions Significant Incident Reports -606,https://southamptontownnypolice.gov/205/adopt-a-planting-program,Not Criminal Justice Related,Not Criminal Justice Related,"Adopt a Planting Program | Southampton, NY - Official Website",Discover how to take part in the Adopt a Planting Program and help maintain a planting area.,200,"Police | Southampton, NY - Official Website","[""Adopt a Planting Program""]","[""Adopt A Planting Program""]","[""Site Tools"", ""Contact Us"", ""Charles McArdle"", ""Hours"", ""Contact Us"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Government Town Services Community Info How Do I Translate Page Site Tools Home My Account Printer Friendly Email Page Contact Us RSS Site Map Translate Page Notifications Documents Search Home Government Departments Highway Adopt a Planting Program Adopt a Planting Program Adopt A Planting Program We are lucky enough to have many beautiful plantings throughout the Town of Southampton. During our peek summer and fall seasons, we are unable to keep these plantings weeded and pruned to keep them in top shape. We are looking for people or organizations willing to adopt these planting areas and maintain, them. Please help! Call us at 631-728-3600, ext. 11, for more information. Contact Us Charles McArdle Superintendent of Highways Email Charles McArdle 20 Jackson Ave. Hampton Bays, NY 11946 Ph: 631-728-3600 Fx: 631-728-3605 Hours ( Excluding Holidays ) Monday - Friday 7:00 a.m. - 3:00 p.m. Adopt a Planting Program Adopt a Road Agreement (PDF) Printable Permit Applications Snow & Ice Control Policy (PDF) Town Clerk Meetings, Agendas & Minutes Pay Your Taxes Online Services Applications, Forms & Fees Notify Me® FOIL Requests Contact Us Town of Southampton 116 Hampton Road Southampton, NY 11968 Phone: 631-283-6000 Banner photo credit: robertseifertphotography.com Site Links Contact Us Site Map Accessibility Copyright Notices Intranet Job Opportunities Title VI Non-discrimination Policy /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate " -607,https://townofpaonia.colorado.gov/paonia-police-department-employment-application,Training & Hiring Info,Info About Officers,Paonia Police Department Employment Application | Town of Paonia,"",200,Home | Town of Paonia,"[""Paonia Police Department Employment Application""]",[],[],[],[],[],"" -608,https://delcopa.gov/controller/pdf/2017andolder/sheriffaudit2017.pdf,Policies & Contracts,Info About Agencies,"","",200,"","","","","","","","" -609,http://www.longbeach.gov/police/press-releases/holiday-toy-drive-collection/,Media Bulletins,Agency-Published Resources,HOLIDAY TOY DRIVE COLLECTION,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 11/30/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: L.B.P.D. KICKS OFF ANNUAL HOLIDAY TOY DRIVE COLLECTION Contact: Media Relations Detail (562) 570-5273 The Long Beach Police Department, in partnership with the Long Beach Police Foundation, has begun collecting donations of new unwrapped toys for the annual ‘Toy Patrol’ holiday toy drive. Officers regularly come into contact with families and children who are less fortunate due to circumstances beyond their control. Police employees, with firsthand knowledge of a family in need, submit the family’s information for consideration. No outside referrals are accepted. L.B.P.D. and the Police Foundation invite you to join us in spreading the joy of the holiday season by donating to this worthy cause. Each year, we are especially in need of toys for boys and girls ages 12 and up. Monetary donations and/or gift cards are also being accepted through the Long Beach Police Foundation, a 501(c)(3) non-profit organization. Please mail donations to LBPF, P.O. Box 15418, Long Beach, CA 90815, and mark your donation “Toy Patrol” on the memo line. For more information or to request a collection box, please call (562) 570-7212. Collection boxes are available at the below police facilities, as well as all City of Long Beach libraries, all Farmers & Merchants bank branches in Long Beach, and in a variety of businesses throughout the City. Police Facilities : Police Headquarters, 400 West Broadway East Division, 4800 Los Coyotes Diagonal North Division, 4891 Atlantic Avenue West Division, 1835 Santa Fe Avenue This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -610,https://alpha.austin.gov/en/police-oversight/notice-of-complaint-related-to-2022-0825/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -611,https://police.greenvillesc.gov/faq.aspx?qid=445,Poor Data Source,Poor Data Source,FAQs • Where will all of this new affordable housing go? Who,"",200,"Police Department | Greenville, SC - Official Website",[],"[""▼ GVL2040 Comprehensive Plan - Report to the Community FAQs""]","[""Categories"", ""Live Edit"", ""Loading""]",[],[],[],Skip to Main Content -612,https://cheswold.delaware.gov/cheswold-police-department-crime-statistics/january-2020-activity-report/,Annual & Monthly Reports,Info About Agencies,January 2020 - Activity Report - Town of Cheswold,"",200,"Home - Town of Cheswold - Kent County, Delaware","[""Cheswold""]","[""Delaware"", ""January 2020 – Activity Report""]","[""Menu""]","[""Address:"", ""Call Us:"", ""Reach Out:""]",[],[],"Skip to Content Skip to Footer Toggle navigation Menu Government Mayor Town Council Boards & Commissions Departments Elections Meetings & Events Public Notices Past Minutes & Agendas Info Public Hearings Comprehensive Plan Ordinances Taxes & Fees Delinquent Tax List Forms Town Charter Flag Status Past Minutes & Agendas Resolutions Community About Our Town Cheswold Welcome Packet Cheswold’s Airport Cheswold Newsletter Churches & Houses of Worship Colleges & Universities Libraries Local Developments Public Schools News Police About the Cheswold Police Department Police Reports Chief’s Page Cheswold Police Officers Cheswold Police Department Policy Manual Civilian Complaint Packet Crime Statistics Cheswold Police Department – Yearly Traffic Statistics Informational Pamphlets and Forms Law Enforcement Links Most Wanted Police Contact Form Police Employment Police News Ride-A-Long Program Sex Offender List Vacation Check Requests Photo Galleries Contact Contact Us FOIA Form Skip to Content Skip to Footer Toggle navigation Menu Government Mayor Town Council Boards & Commissions Departments Elections Meetings & Events Public Notices Past Minutes & Agendas Info Public Hearings Comprehensive Plan Ordinances Taxes & Fees Delinquent Tax List Forms Town Charter Flag Status Past Minutes & Agendas Resolutions Community About Our Town Cheswold Welcome Packet Cheswold’s Airport Cheswold Newsletter Churches & Houses of Worship Colleges & Universities Libraries Local Developments Public Schools News Police About the Cheswold Police Department Police Reports Chief’s Page Cheswold Police Officers Cheswold Police Department Policy Manual Civilian Complaint Packet Crime Statistics Cheswold Police Department – Yearly Traffic Statistics Informational Pamphlets and Forms Law Enforcement Links Most Wanted Police Contact Form Police Employment Police News Ride-A-Long Program Sex Offender List Vacation Check Requests Photo Galleries Contact Contact Us FOIA Form Skip to Content Skip to Footer Toggle navigation Menu Government Mayor Town Council Boards & Commissions Departments Elections Meetings & Events Public Notices Past Minutes & Agendas Info Public Hearings Comprehensive Plan Ordinances Taxes & Fees Delinquent Tax List Forms Town Charter Flag Status Past Minutes & Agendas Resolutions Community About Our Town Cheswold Welcome Packet Cheswold’s Airport Cheswold Newsletter Churches & Houses of Worship Colleges & Universities Libraries Local Developments Public Schools News Police About the Cheswold Police Department Police Reports Chief’s Page Cheswold Police Officers Cheswold Police Department Policy Manual Civilian Complaint Packet Crime Statistics Cheswold Police Department – Yearly Traffic Statistics Informational Pamphlets and Forms Law Enforcement Links Most Wanted Police Contact Form Police Employment Police News Ride-A-Long Program Sex Offender List Vacation Check Requests Photo Galleries Contact Contact Us FOIA Form Cheswold Delaware Listen January 2020 – Activity Report January 2020 - Activity Report Cheswold Delaware Listen January 2020 – Activity Report January 2020 - Activity Report Listen January 2020 – Activity Report January 2020 - Activity Report Listen January 2020 – Activity Report January 2020 - Activity Report Listen January 2020 – Activity Report January 2020 - Activity Report Listen Address: 691 Main Street Cheswold, DE 19936 Call Us: (302) 734-6991 Reach Out: Contact Form FOIA Form Address: 691 Main Street Cheswold, DE 19936 Call Us: (302) 734-6991 Reach Out: Contact Form FOIA Form " -613,https://delcopa.gov/sustainability/conference.html,Not Criminal Justice Related,Not Criminal Justice Related,3rd Annual Delaware County Sustainability Conference,"",200,"Delaware County, Pennsylvania","[""3rd Annual Delaware County Sustainability Conference""]","[""Welcome to Delaware County's 3rd Annual Sustainability Conference""]","[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]","[""Event Details:""]","[""NOTE: Conference space is very limited"", ""Pre-registration is required""]","[""D ate: Thursday, May 30, 2024"", ""TIME : REGISTRATION WILL OPEN AT 8:00 AM WITH A complimentary BREAKFAST. PROGRAMMING WILL BEGIN AT 9:00 AM. LUNCH, with Grilled, vegan, and allergen-free options, WILL BE SERVED AT 12:15 PM. THE DAY WILL CONCLUDE AT 3:00 PM."", ""L ocation: WIDENER UNIVERSITY, university center, 1 UNIVERSITY PLACE, CHESTER, PA 19013""]","" -614,https://www.wakeforestnc.gov/police/crime-prevention/reporting-suspicious-activity,Resources,Agency-Published Resources,"Reporting Suspicious Activity | Town of Wake Forest, NC","Prevention is everyone's responsibility.We are one neighborhood, one state, one nation;and it is the responsibility of all to remain vigilantand to report suspicious behavior.One call can make a difference. Reporting Suspicious Activity Police Emergency Number - 919-556-9111 or 911 If you suspect that the suspicious behavior that you detected is actually a crime-in-progress,",200,"Town of Wake Forest, NC","[""Reporting Suspicious Activity""]","[""img_0371.jpg"", ""Town Hall Closed Friday, March 29"", ""Search form"", ""You are here""]",[],[],[],[],Skip to main content -615,https://ose.louisiana.gov/event/police-sergeant-80/,Contact Info & Agency Meta,Info About Agencies,Police Sergeant | Louisiana Office of State Examiner,"",200,403 Forbidden,"["""", ""Police Sergeant""]",[],"[""Promotional Level""]",[],[],"[""Recent Posts"", ""Archives"", ""Categories"", ""Meta""]","Search Search Search Search Personnel Action Form About Testing & Employment Eligibility Lists Jurisdictions Resources Contact ADA Testing Accommodations Statewide Testing This event has passed. Police Sergeant Promotional Level Posting Period 10/24/2022 - 11/04/22 Application Deadline 11/04/22 Jurisdiction Franklin Application Search Recent Posts Holiday Closures Archives June 2023 Categories Uncategorized Meta Log in Entries feed Comments feed WordPress.org Sign Up for Updates Δ 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Privacy Policy Facebook Copyright © 2024 Office of State Examiner Site by Gatorworks. Search Personnel Action Form About Testing & Employment Eligibility Lists Jurisdictions Resources Contact ADA Testing Accommodations Statewide Testing Search Personnel Action Form Search Search Search Personnel Action Form This event has passed. Police Sergeant Promotional Level Posting Period 10/24/2022 - 11/04/22 Application Deadline 11/04/22 Jurisdiction Franklin Application Search Recent Posts Holiday Closures Archives June 2023 Categories Uncategorized Meta Log in Entries feed Comments feed WordPress.org This event has passed. Police Sergeant Promotional Level Posting Period 10/24/2022 - 11/04/22 Application Deadline 11/04/22 Jurisdiction Franklin Application Search Recent Posts Holiday Closures Archives June 2023 Categories Uncategorized Meta Log in Entries feed Comments feed WordPress.org This event has passed. Police Sergeant Promotional Level Posting Period 10/24/2022 - 11/04/22 Application Deadline 11/04/22 Jurisdiction Franklin Application This event has passed. Police Sergeant Promotional Level Posting Period 10/24/2022 - 11/04/22 Application Deadline 11/04/22 Jurisdiction Franklin Application This event has passed. Police Sergeant Promotional Level Posting Period 10/24/2022 - 11/04/22 Application Deadline 11/04/22 Jurisdiction Franklin Application This event has passed. Police Sergeant Promotional Level Promotional Level Promotional Level Posting Period 10/24/2022 - 11/04/22 Application Deadline 11/04/22 Jurisdiction Franklin Posting Period 10/24/2022 - 11/04/22 Application Deadline 11/04/22 Jurisdiction Franklin Posting Period 10/24/2022 - 11/04/22 Application Deadline 11/04/22 Jurisdiction Franklin Posting Period 10/24/2022 - 11/04/22 Posting Period Application Deadline 11/04/22 Application Deadline Jurisdiction Franklin Jurisdiction Application Search Search Sign Up for Updates Δ Sign Up for Updates Δ Sign Up for Updates 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Privacy Policy Facebook 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Privacy Policy 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Phone: (225) 925-4400 Privacy Policy Facebook Facebook Facebook Copyright © 2024 Office of State Examiner Site by Gatorworks. Copyright © 2024 Office of State Examiner Site by Gatorworks. " -616,https://pittsburghpa.gov/files/police/orders/ch6/68-02-grafitti-tracking-system.pdf,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -617,http://www.tampa.gov/events/national-coffee-cop-day/105796,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -618,"https://norfolkne.gov/government/departments/police-division/press-releases/april-27,-2021-press-release.html",Media Bulletins,Agency-Published Resources,"April 27, 2021 Press Release - City of Norfolk, NE","",200,"Welcome to Norfolk, NE - City of Norfolk, NE","[""City of Norfolk, NE"", ""Police Division"", ""April 27, 2021 Press Release"", ""City of Norfolk, NE""]",[],[],[],"[""Still looking for something?""]","[""Contact Us"", ""Pay or Apply..."", ""Government..."", ""Services..."", ""Business..."", ""Amenities...""]","" -619,https://police.birminghamal.gov/wp-content/uploads/2020/01/dsc_2278-225.jpg,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -620,https://delcopa.gov/vote/pdf/2021/delco_boe-meeting-notice_04-28-2021.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -621,https://delcopa.gov/vote/becomingapollworker.html,Not Criminal Justice Related,Not Criminal Justice Related,"Becoming a Poll Worker - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Becoming a Poll Worker""]",[],"[""How to Become a Poll Worker"", ""Poll Worker Requirements"", ""Student Poll Worker Program"", ""Poll Worker Positions"", ""Poll Worker Pay: Election Day"", ""Poll Worker Pay: Training Pay"", ""Filling Vacancies in an Election Board: Vacancy Kits"", ""Filling Vacancies in an Election Board: Emergency Appointments"", ""Questions?"", ""Delco Votes!"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"" -622,http://www.longbeach.gov/police/press-releases/undetermined-death-investigation-2-/,Media Bulletins,Agency-Published Resources,UNDETERMINED DEATH INVESTIGATION(2),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 4/11/2017 FOR IMMEDIATE RELEASE Press Release # Subject: UPDATE - UNDETERMINED DEATH INVESTIGATION Contact: Media Relations Detail (562) 570-5273 UPDATE (4/11/2017) : The victim has -been identified as 17-year-old Leslie Hernandez of Santa Monica. Based on the -initial results of the investigation, which includes the preliminary findings -of the LA County Coroner’s Office, this case is being investigated as a -possible drug overdose. The details surrounding why her -remains were at that location are still under investigation. ORIGINAL NEWS RELEASE (4/6/2017) : On Thursday, April 6, 2017, at 1:30 a.m., Long Beach Police were dispatched to the Los Angeles riverbed near the Ocean Boulevard Bridge after a caller indicated a body had been found. The preliminary investigation revealed that when officers arrived, they located the body of a deceased female victim, unknown age, along the waterline of the riverbed. The caller also indicated a vehicle had been seen leaving the area, and patrol officers conducted a traffic stop of a vehicle matching the vehicle’s description. The occupants were questioned, however, no arrests have been made relating to this case. The Public Safety Dive Team and Long Beach Search & -Rescue responded to the scene to search for any potential evidence. The Los -Angeles County Coroner's Office also responded and will determine the identity -of the victim and the official cause of death. Due to the ongoing investigation, no additional details are being released at this time. Anyone with information regarding the incident should contact L.B.P.D. Homicide Detectives Donald Goodman and Mark Mattia at (562) 570-7244. Anonymous tips may be submitted through “LA Crime Stoppers” by calling 1-800-222-TIPS (8477), downloading the “P3 Tips” app to your smart phone (available at the Apple App store and Google Play), or visiting www.lacrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -623,https://ci.san-bernardino.ca.us/city_hall/police_department/crime_statistics/about_ucr_statistics/part_2_crimes,Poor Data Source,Poor Data Source,Part 2 Crimes - City of San Bernardino,"",200,Just a moment...,"[""City of San Bernardino California""]","[""Part 2 Crimes""]",[],[],[],[],Skip to Content -624,https://police.greenvillesc.gov/2025/project-safe-neighborhoods,Resources,Agency-Published Resources,"Project Safe Neighborhoods | Greenville, SC - Official Website","Project Safe Neighborhoods is designed to build strong partnerships between the community, service providers and law enforcement to reduce firearm violence and prevent youth from becoming involved in gangs.",200,"Police Department | Greenville, SC - Official Website","[""Project Safe Neighborhoods""]",[],"[""Project Safe Neighborhoods Kick Off Event"", ""Loading""]",[],[],[],"Skip to Main Content Careers About Us Divisions News Services I Want To... Search Home Departments Police Department Services GRAVITY Project Safe Neighborhoods Project Safe Neighborhoods The Nicholtown community is working to make their neighborhood an even safer place. Project Safe Neighborhoods is designed to build strong partnerships between the community, service providers and law enforcement to reduce firearm violence and prevent youth from becoming involved in gangs. The program will be piloted in the Nicholtown neighborhood, which was selected, in part, due to its active neighborhood association and the number of resources and services already in place. Ultimately, the goal is to develop a framework for expanding Project Safe Neighborhoods to neighborhoods throughout the city. In October 2021, the U.S. Department of Justice’s Office of Community Oriented Policing Services awarded the Greenville Police Department (GPD) $112,800 for the Project Safe Neighborhoods initiative. The Office of Community Oriented Policing Services provides funding to law enforcement agencies seeking to develop or enhance programs that focus on building trust and legitimacy between law enforcement and the communities they serve. As part of the grant, GPD is working with experts from the National Network for Safe Communities (NNSC), whose mission is to reduce violence, build trust and transform public safety in partnership with communities around the world. Project Safe Neighborhoods Kick-off Event Held in August 2022 To kick off Project Safe Neighborhoods, the Nicholtown Neighborhood Association partnered with the City of Greenville to host a two-day event facilitated by representatives from NNSC. Project Safe Neighborhoods Kick Off Event Members of the Nicholtown Neighborhood Association give a history tour of the area to GPD Officers and Project Safe Neighborhood stakeholders. Yvonne Reeder of Nicholtown gives opening remarks. Annie Allen, of Asset Based Community Development, listens during the Nicholtown tour. Neighborhood president Alan Mitchell leads a discussion. Participants in the Project Safe Neighborhood kickoff event were asked to map out Nicholtown's assets. 1 2 3 4 5 Annual Officer Allen Jacobs Summer Camp Project Safe Neighborhoods my Neighborhood Become a Police Officer alarm registration compliments & complaints crime stoppers Emergency Notifications Contact Us | Accessibility | Web Policy and Copyright | Website by CivicPlus® City of Greenville, SC, Police Department | 4 McGee St., Greenville, SC 29601 | Police Non-Emergency: 864-271-5333 Back to Top Enable Google Translate " -625,https://delcopa.gov/publicrelations/releases/2022/pdf/vetresourcefair.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -626,http://www.ryepolice.us/event/annies-angels-rye-by-the-sea-duathlon-2,Not Criminal Justice Related,Not Criminal Justice Related,Rye Police Department Annie's Angels Rye by the Sea Duathlon - Rye Police Department,"",200,Rye Police Department Welcome to the Rye Police Department - Rye Police Department,"["""", ""Annie’s Angels Rye by the Sea Duathlon""]","[""June 1, 2019 @ 8:00 am - 11:00 am"", ""Details"", ""Organizer""]","[""Navigation"", ""Follow Us"", ""Facebook"", ""Email Updates"", ""Storm Preparedness Guide""]",[],[],[],"Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Chief’s Message Crime Prevention Victim Services Domestic Violence Computer Crime Identity Theft Press Releases Police Logs Events Event Permits Beach Permits FAQ Contact Us Search Home « All Events This event has passed. Annie’s Angels Rye by the Sea Duathlon June 1, 2019 @ 8:00 am - 11:00 am « Rye Beach Yoga, LLC Rye Beach Market, LLC » On Saturday, June 1, the Annie's Angels Rye by the Sea Duathlon will travel through Rye during the morning hours of approximately 8:00AM-11:00AM. The race consists of a run and bike ride. Please use caution and allot extra time to reach destinations. There will be officers posted to aid with traffic throughout the route. + Google Calendar + iCal Export Details Date: June 1, 2019 Time: 8:00 am - 11:00 am Event Category: Event Permits Organizer Bill DaGiau-Annie’s Angels Website: https://anniesangels.org/get-in-touch/ « Rye Beach Yoga, LLC Rye Beach Market, LLC » Navigation About Rye Animal Control Announcements Beach Information Careers Chief’s Message Computer Crime Contact Us Coronavirus Crime Prevention Directions Domestic Violence FAQ Firearms Safety Fireworks Forms Identity Theft Mission Statement Parking Payments Personnel Police Logs Prescription Drug Disposal Press Releases Report Request Town Ordinances Victim Services West Nile / EEE Follow Us Facebook Facebook Email Updates Subscribe to our newsletter. We promise you won't get flooded with junk! Email * Storm Preparedness Guide Developed by ThemeMakers Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Chief’s Message Crime Prevention Victim Services Domestic Violence Computer Crime Identity Theft Press Releases Police Logs Events Event Permits Beach Permits FAQ Contact Us Search Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Chief’s Message Crime Prevention Victim Services Domestic Violence Computer Crime Identity Theft Press Releases Police Logs Events Event Permits Beach Permits FAQ Contact Us Search Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Chief’s Message Crime Prevention Victim Services Domestic Violence Computer Crime Identity Theft Press Releases Police Logs Events Event Permits Beach Permits FAQ Contact Us Search Chief’s Message Crime Prevention Victim Services Domestic Violence Computer Crime Identity Theft Press Releases Police Logs Events Event Permits Beach Permits FAQ Contact Us Search Chief’s Message Crime Prevention Victim Services Domestic Violence Computer Crime Identity Theft Press Releases Police Logs Events Event Permits Beach Permits FAQ Contact Us Search " -627,https://southamptontownnypolice.gov/faq.aspx?qid=437,Resources,Agency-Published Resources,FAQs • How much are the permits this year?,"",200,"Police | Southampton, NY - Official Website",[],"[""▼ FAQ (COVID-19) | Southampton Town Beaches""]","[""Site Tools"", ""Categories"", ""Live Edit"", ""Contact Us"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -628,https://frederica.delaware.gov/2016/06/27/ad-for-part-time-police-office/townoffred-50-121467-1/,Media Bulletins,Agency-Published Resources,Ad for Part Time Police Officer - Frederica,"",200,"Home - Frederica - Kent County, Delaware","[""Frederica""]","[""Delaware"", ""Ad for Part Time Police Officer""]","[""Menu"", ""Online Bill Pay"", ""Connect With Us!""]",[],[],[],"Skip to Content Skip to Footer Toggle navigation Menu Home Government Town Hall Town Council & Employees Town Charter Town Code Planning & Zoning Meetings & Events Past Meeting Minutes & Agendas Flag Status Info Additional Resources Finance Fire Company Forms & Reports Police Department Trash & Recycling Water Dept./Public Works Community Places Around Town History Photo Gallery Town Newsletters News & Notices Online Bill Pay Contact Us Contact Form FOIA Form Utility Contact Form Skip to Content Skip to Footer Toggle navigation Menu Home Government Town Hall Town Council & Employees Town Charter Town Code Planning & Zoning Meetings & Events Past Meeting Minutes & Agendas Flag Status Info Additional Resources Finance Fire Company Forms & Reports Police Department Trash & Recycling Water Dept./Public Works Community Places Around Town History Photo Gallery Town Newsletters News & Notices Online Bill Pay Contact Us Contact Form FOIA Form Utility Contact Form Skip to Content Skip to Footer Toggle navigation Menu Home Government Town Hall Town Council & Employees Town Charter Town Code Planning & Zoning Meetings & Events Past Meeting Minutes & Agendas Flag Status Info Additional Resources Finance Fire Company Forms & Reports Police Department Trash & Recycling Water Dept./Public Works Community Places Around Town History Photo Gallery Town Newsletters News & Notices Online Bill Pay Contact Us Contact Form FOIA Form Utility Contact Form Frederica Delaware Frederica Delaware Frederica Delaware Frederica Delaware Listen Ad for Part Time Police Officer Date Posted: Monday, June 27th, 2016 Ad for Part Time Police Officer << Mar 2024 >> S M T W T F S 25 26 27 28 29 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 2 3 4 5 6 Sign Up for Emergency Notifications Today! Online Bill Pay Connect With Us! Listen Ad for Part Time Police Officer Date Posted: Monday, June 27th, 2016 Ad for Part Time Police Officer << Mar 2024 >> S M T W T F S 25 26 27 28 29 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 2 3 4 5 6 Sign Up for Emergency Notifications Today! Online Bill Pay Connect With Us! Listen Ad for Part Time Police Officer Date Posted: Monday, June 27th, 2016 Ad for Part Time Police Officer << Mar 2024 >> S M T W T F S 25 26 27 28 29 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 2 3 4 5 6 Sign Up for Emergency Notifications Today! Online Bill Pay Connect With Us! " -629,https://www.knoxvilletn.gov/government/city_departments_offices/police_department/management_services_bureau/community_police_academy,Media Bulletins,Agency-Published Resources,Community Police Academy - City of Knoxville,police*,200,Just a moment...,"[""Community Police Academy"", ""Police Chief""]",[],[],[],[],[],Skip navigation {1} ##LOC[OK]## {1} ##LOC[OK]## {1} ##LOC[OK]## {1} ##LOC[OK]## -630,https://www.southamptontownnypolice.gov/493/pump-out-boat-program,Not Criminal Justice Related,Not Criminal Justice Related,"Pump Out Boat Program | Southampton, NY - Official Website",Discover how the Pump Out Boat Program helps protect the town's shellfish beds and keep the waters safe and clean for swimming and recreation. ,200,"Police | Southampton, NY - Official Website","[""Pump Out Boat Program""]","[""Availability""]","[""Site Tools"", ""Contact Us"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Government Town Services Community Info How Do I Translate Page Site Tools Home My Account Printer Friendly Email Page Contact Us RSS Site Map Translate Page Notifications Documents Search Home Town Services Town Trustees Pump Out Boat Program Pump Out Boat Program Due to the implementation of the Pump Out Boat Program by the Southampton Town Board of Trustees, Peconic and South Shore Estuaries were designated as Vessel Waste No Discharge Zones (NDZ). This program was put into place in order to help protect our shellfish beds and keep our waters safe and clean for swimming and recreation. During the 2009 season, the boats pumped 105,079 gallons of waste that potentially could have been discharged into our local waterways. Availability There are currently six boats that work out of Mill Creek, Cold Spring, Westhampton, North Sea, Hampton Bays, and Sag Harbor and are available from Memorial Day until October 31. Recreational boaters in need of waste disposal need only to contact them on marine radio CH 73 and arrange a meeting place. PUBLIC PUMP OUT BOAT SCHEDULE 2018 IMPORTANT PHONE NUMBERS: VHF Channel: 73 Marine Maintenance: 631-728-1612 Bay Constables Office: 631-702-2268 Sag Harbor Harbormaster: 631-725-2368 Town Trustees Office: 631-287-5717 Coast Guard: 631-728-0078 Endangered Species Resolutions Parks & Recreation Forms & Applications Public Information Center Pump Out Boat Program Rules & Regulations Shellfish Threatened & Endangered Species Program Trustees Budget Trustees Studies & Reports Marine Resource Protection & Management Plan (PDF) Mill Pond Restoration Project 2020 Report - DRAFT Mecox Bay Management Plan Town Clerk Meetings, Agendas & Minutes Pay Your Taxes Online Services Applications, Forms & Fees Notify Me® FOIL Requests Contact Us Town of Southampton 116 Hampton Road Southampton, NY 11968 Phone: 631-283-6000 Banner photo credit: robertseifertphotography.com Site Links Contact Us Site Map Accessibility Copyright Notices Intranet Job Opportunities Title VI Non-discrimination Policy /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate " -631,https://www.sandiego.gov/form/get-it-done-police,Contact Info & Agency Meta,Info About Agencies,Get It Done - Police | City of San Diego Official Website,"",200,City of San Diego Official Website,"[""City of San Diego Official Website"", ""Get It Done - Police""]","[""Main navigation"", ""Leisure"", ""Resident Resources"", ""Doing Business"", ""Library"", ""Public Safety"", ""City Hall"", ""Footer"", ""Accessibility Tools""]",[],"[""Parks"", ""Outdoors"", ""Neighborhoods"", ""Recreational Activities"", ""Street Maintenance"", ""Plan"", ""Fix"", ""Build"", ""Programs & Events"", ""Services"", ""Kids & Teens"", ""eCollection"", ""Police"", ""Fire-Rescue"", ""Lifeguards"", ""City Officials"", ""City Government""]",[],[],"" -632,https://www.minneapolismn.gov/government/departments/police/,Contact Info & Agency Meta,Info About Agencies,Police - City of Minneapolis,We in the Minneapolis Police Department gain our authority from the community. We recognize that public safety is not just the absence of crime but the presence of justice.,200,City of Minneapolis,"[""Police Department"", ""Need help? We're here for you.""]","[""A snow emergency is not currently in effect. Normal parking rules apply."", ""Join the Minneapolis Police Department"", ""I want to"", ""Explore this section"", ""Staff and volunteers"", ""Bureaus"", ""Related programs and initiatives"", ""Stay Informed"", ""Related links"", ""Access to police services"", ""Report an issue"", ""Contact us""]","[""Read and give feedback on police policies"", ""File an online police report"", ""Apply for a police job"", ""Minneapolis police precincts"", ""Police auctions"", ""Reclaim property"", ""Gun permits"", ""Policy and Procedure Manual"", ""Oath of Office"", ""Police chief and administration"", ""Crime prevention specialists"", ""Chaplains"", ""Police Reserve"", ""Investigations"", ""Patrol"", ""Professional Standards"", ""National Night Out"", ""Police Explorers"", ""U and T visa"", ""Women's Leadership Academy"", ""View data and reports"", ""File online"", ""View resources"", ""Minneapolis Police Department"", ""Connect with the Minneapolis Police Department""]",[],[],[],"" -633,https://council.seattle.gov/2016/09/15/councilmember-johnsons-statement-on-the-north-precinct-police-station/,Not Criminal Justice Related,Not Criminal Justice Related,Councilmember Johnson’s Statement on the North Precinct Police Station - Seattle City Council Blog,"",200,403 Forbidden,"[""Councilmember Johnson’s Statement on the North Precinct Police Station""]",[],"[""HELPFUL LINKS"", ""Make your voice heard"", ""Councilmembers""]",[],[],[],"Home News Press Releases Video Councilmembers Rob Saka Tammy J. Morales Joy Hollingsworth Maritza Rivera Cathy Moore Dan Strauss Robert Kettle Tanya Woo Sara Nelson Councilmembers (2022-2024) About Councilmember Johnson’s Statement on the North Precinct Police Station Home » Councilmember Johnson’s Statement on the North Precinct Police Station Johnson , News Releases September 15, 2016 January 6, 2023 By City Council News Releases Councilmember Rob Johnson (District 4, Northeast Seattle) issued the following statement following the announcement that the North Precinct Police Station project will be revisited: “I fully believe that the decision to forego the current $149M design for the new North Precinct is more than prudent. As I’ve stated before, $149M is far too large a sum for one building. “I continue to look forward to the use of the Racial Equity Toolkit’s incorporation into the next design of the new North Precinct, as well as using this facility as a pilot for the City Capital Projects Oversight Committee that Councilmember Herbold and I called for back in August.” HELPFUL LINKS Meet the Council Mayor’s Office Council Calendar Council Agendas Council Committees Watch Council Live Make your voice heard Find Your Council District Contact the Council Sign up for Public Comment Register to Vote Councilmembers Rob Saka Tammy J. Morales Joy Hollingsworth Maritza Rivera Cathy Moore Dan Strauss Robert Kettle Teresa Mosqueda Sara Nelson The official blog of the Seattle City Council Home News Press Releases Video Councilmembers Rob Saka Tammy J. Morales Joy Hollingsworth Maritza Rivera Cathy Moore Dan Strauss Robert Kettle Tanya Woo Sara Nelson Councilmembers (2022-2024) About Councilmember Johnson’s Statement on the North Precinct Police Station Home » Councilmember Johnson’s Statement on the North Precinct Police Station Johnson , News Releases September 15, 2016 January 6, 2023 By City Council News Releases Councilmember Rob Johnson (District 4, Northeast Seattle) issued the following statement following the announcement that the North Precinct Police Station project will be revisited: “I fully believe that the decision to forego the current $149M design for the new North Precinct is more than prudent. As I’ve stated before, $149M is far too large a sum for one building. “I continue to look forward to the use of the Racial Equity Toolkit’s incorporation into the next design of the new North Precinct, as well as using this facility as a pilot for the City Capital Projects Oversight Committee that Councilmember Herbold and I called for back in August.” HELPFUL LINKS Meet the Council Mayor’s Office Council Calendar Council Agendas Council Committees Watch Council Live Make your voice heard Find Your Council District Contact the Council Sign up for Public Comment Register to Vote Councilmembers Rob Saka Tammy J. Morales Joy Hollingsworth Maritza Rivera Cathy Moore Dan Strauss Robert Kettle Teresa Mosqueda Sara Nelson Home News Press Releases Video Councilmembers Rob Saka Tammy J. Morales Joy Hollingsworth Maritza Rivera Cathy Moore Dan Strauss Robert Kettle Tanya Woo Sara Nelson Councilmembers (2022-2024) About " -634,https://alpha.austin.gov/en/police-oversight/formal-complaint-impartial-attitude-and-courtesy-29/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -635,https://www.cityofrc.us/news/rancho-cucamonga-welcomes-new-police-chief,Media Bulletins,Agency-Published Resources,Rancho Cucamonga Welcomes New Police Chief | City of Rancho Cucamonga, ,200,Home | City of Rancho Cucamonga,"[""Rancho Cucamonga Welcomes New Police Chief""]","[""Utility Menu"", ""Breadcrumb"", ""Footer Menu"", ""Main navigation""]",[],[],[],[],"Select Language English 繁體中文 Français हिन्दी 日本語 한국어 Español Filipino Tiếng Việt ไทย Utility Menu Translate Text Size (Decrease) Text Size (Normal) Text Size (Increase) Contact Us Menu Search Breadcrumb Home News Rancho Cucamonga Welcomes New Police Chief Rancho Cucamonga Welcomes New Police Chief April 27, 2023 | By City of RC Rancho Cucamonga Welcomes New Police Chief. With the recent promotion of Captain Perez to Deputy Chief with the San Bernardino County Sheriff’s Department, we are pleased to share the news that Lieutenant Mike Smith has been promoted to Captain and is the new Chief of Police for the Rancho Cucamonga Police Department, effective March 25, 2023. Mike Smith, a 24-year veteran of the San Bernardino County Sheriff’s Department, began his career in 1999. As a Deputy Sheriff, Captain Smith worked at the West Valley Detention Center and held his first patrol assignment in Rancho Cucamonga in 2002. He was promoted to Detective/Corporal in 2008 and worked at Central Station until he transferred to the Specialized Investigations Division in 2009. Captain Smith promoted to Sergeant in 2012 and held assignments at the High Desert Detention Center, West Valley Detention Center, Fontana Station, and the Coroner’s Division. In 2018, Captain Smith promoted to Lieutenant at the Coroner’s Division and transferred to the Rancho Cucamonga Station in 2019 and oversaw both administrative and operational positions for the station. In addition to his years of service to the Rancho Cucamonga community, Captain Smith is also a longtime resident of our beloved city and takes great pride in serving the community he calls home. Please join us in congratulating Captain Smith on his new role as the Chief of Police for the Rancho Cucamonga Police Department. Footer Menu RC2GO Employment Opportunities Privacy Policy Contact Us Rate Your Experience Close Enter your keywords: Document Search Main navigation Home Everything We Do Animal Center Community Services Community Development Economic Development Healthy RC Library Public Safety RCMU Your Government Select Language English 繁體中文 Français हिन्दी 日本語 한국어 Español Filipino Tiếng Việt ไทย Utility Menu Translate Text Size (Decrease) Text Size (Normal) Text Size (Increase) Contact Us Select Language English 繁體中文 Français हिन्दी 日本語 한국어 Español Filipino Tiếng Việt ไทย Utility Menu Translate Text Size (Decrease) Text Size (Normal) Text Size (Increase) Contact Us Select Language English 繁體中文 Français हिन्दी 日本語 한국어 Español Filipino Tiếng Việt ไทย Select Language English 繁體中文 Français हिन्दी 日本語 한국어 Español Filipino Tiếng Việt ไทย Menu Search Menu Search Menu Search Menu Search " -636,https://arcadia-fl.gov/departments/police/,Contact Info & Agency Meta,Info About Agencies,Arcadia Police Department – City of Arcadia,"",200,City of Arcadia – See our famous historic downtown antique district.,"[""City of Arcadia, Florida"", ""Arcadia Police Department""]","[""Upcoming Events""]","[""Arcadia Police – (863) 494-2222 for Non-Emergency – Call 9-1-1 for Emergencies Only"", ""City Council Meeting"", ""City Council Meeting"", ""City Council Meeting"", ""City Council Meeting"", ""City Council Meeting"", ""Address"", ""Get in touch"", ""Contact""]","[""Search This Site"", ""Contact the Arcadia Police"", ""Pay Utilities Bill Online"", ""Follow the Arcadia Police on Facebook"", ""Search for Loved Ones in the Cemetery"", ""Follow us on Facebook"", ""Quick Links"", ""Helpful Websites"", ""Categories""]",[],[],"City of Arcadia, Florida City of Arcadia, Florida City of Arcadia, Florida City of Arcadia, Florida City of Arcadia, Florida City of Arcadia, Florida City of Arcadia, Florida City of Arcadia, Florida City of Arcadia, Florida City Council Agendas & Minutes Council Meeting Dates News COVID-19 Departments Administration City Clerk Finance Human Resources Job Listings Community Development Code Enforcement Planning & Zoning Arcadia Airport Golf Course Public Works Streets Division Solid Waste Division Parks Division Mobile Home Park Division Cemetery Division Utilities Pay Your Utilities Bill Water Treatment Plant Division Waste Water Treatment Plant Division Water & Sewer System Division Utility Billing Division State Road and City Lighting Division Police Send an Anonymous Tip Biographies Apply for Employment Documents Residents & Visitors Pay Your Utilities Bill Directions Parks Division Events FAQ Code Enforcement Police Arcadia Municipal Golf Course Arcadia Airport – X06 COVID-19 Contact Contact Departments Contact City Council City Council Agendas & Minutes Council Meeting Dates Council Members News COVID-19 Departments Administration City Clerk General Finance Human Resources Job Listings Community Development General Code Enforcement Planning & Zoning Arcadia Airport Golf Course Public Works General Streets Division Solid Waste Division Parks Division Mobile Home Park Division Cemetery Division Utilities General Pay Your Utilities Bill Water Treatment Plant Division Waste Water Treatment Plant Division Water & Sewer System Division Utility Billing Division State Road and City Lighting Division Police General Send an Anonymous Tip Biographies Apply for Employment Documents Residents & Visitors Pay Your Utilities Bill Directions Parks Division Events FAQ Code Enforcement Police Golf Course Arcadia Airport – X06 COVID-19 Contact Contact Departments Contact City Council City Council Agendas & Minutes Council Meeting Dates News COVID-19 Departments Administration City Clerk Finance Human Resources Job Listings Community Development Code Enforcement Planning & Zoning Arcadia Airport Golf Course Public Works Streets Division Solid Waste Division Parks Division Mobile Home Park Division Cemetery Division Utilities Pay Your Utilities Bill Water Treatment Plant Division Waste Water Treatment Plant Division Water & Sewer System Division Utility Billing Division State Road and City Lighting Division Police Send an Anonymous Tip Biographies Apply for Employment Documents Residents & Visitors Pay Your Utilities Bill Directions Parks Division Events FAQ Code Enforcement Police Arcadia Municipal Golf Course Arcadia Airport – X06 COVID-19 Contact Contact Departments Contact City Council City Council Agendas & Minutes Council Meeting Dates Council Members News COVID-19 Departments Administration City Clerk General Finance Human Resources Job Listings Community Development General Code Enforcement Planning & Zoning Arcadia Airport Golf Course Public Works General Streets Division Solid Waste Division Parks Division Mobile Home Park Division Cemetery Division Utilities General Pay Your Utilities Bill Water Treatment Plant Division Waste Water Treatment Plant Division Water & Sewer System Division Utility Billing Division State Road and City Lighting Division Police General Send an Anonymous Tip Biographies Apply for Employment Documents Residents & Visitors Pay Your Utilities Bill Directions Parks Division Events FAQ Code Enforcement Police Golf Course Arcadia Airport – X06 COVID-19 Contact Contact Departments Contact City Council " -637,https://delcopa.gov/weightsmeasures/pdf/complaintform.pdf,Complaints & Misconduct,Info About Officers,"","",200,"","","","","","","","" -638,https://www.ci.san-bernardino.ca.us/city_hall/police_department/crime_statistics/about_ucr_statistics/arrest_statistics/arrest_statistics_-_2008,Crime Maps & Reports,Agency-Published Resources,Arrest Statistics - 2008 - City of San Bernardino,"",200,Just a moment...,"[""City of San Bernardino California""]","[""Arrest Statistics - 2008""]",[],[],[],[],Skip to Content -639,https://www.mass.gov/doc/gardnerpolicelieutenant2374rtf/download,Training & Hiring Info,Info About Officers,"","",200,"","","","","","","","" -640,https://www.coronadelmar.us/newport-beach-police-department-issues-citations-for-selling-alcohol-to-minors/,Media Bulletins,Agency-Published Resources,Newport Beach Police Department Issues Citations for Selling Alcohol to Minors | Corona del Mar California,"",200,Corona del Mar California,"[""Newport Beach Police Department Issues Citations for Selling Alcohol to Minors""]","[""Menu"", ""Be First to Comment"", ""Subscribe"", """", """"]","[""Share this:"", ""Like this:"", ""Related"", ""Leave a Reply Cancel reply"", """"]",[],[],[],"" -641,https://www.sandiego.gov/police/news-center/cold-cases/sleiman-hallak,Wanted Persons,Agency-Published Resources,Sleiman Hallak | City of San Diego Official Website,"Sleiman Hallak owned the Moonlight Market at Skyline and Meadowbrook for more than twenty years. He was known around the neighborhood as Pops. On Wednesday, April 17, 1996, at about 10:30 a.m., Hallak was working at the store counter waiting on a cigarette dealer when a black male armed with a gun entered the store and demanded that Hallak give up the money. When Hallak did not respond quickly enough, the suspect shot him to death and stole the money from the register and a handgun from the store.",200,City of San Diego Official Website,"[""City of San Diego Official Website"", ""Cold Case: Sleiman Hallak""]","[""Main navigation"", ""Leisure"", ""Resident Resources"", ""Doing Business"", ""Library"", ""Public Safety"", ""City Hall"", ""News Center"", ""Footer"", ""Accessibility Tools""]",[],"[""Parks"", ""Outdoors"", ""Neighborhoods"", ""Recreational Activities"", ""Street Maintenance"", ""Plan"", ""Fix"", ""Build"", ""Programs & Events"", ""Services"", ""Kids & Teens"", ""eCollection"", ""Police"", ""Fire-Rescue"", ""Lifeguards"", ""City Officials"", ""City Government""]",[],[],"" -642,https://www.dps.arkansas.gov/news/settlement-agreement-in-civil-action-against-state-police/,Media Bulletins,Agency-Published Resources,SETTLEMENT AGREEMENT IN CIVIL ACTION AGAINST STATE POLICE - Arkansas Department of Public Safety,"",200,Home - Arkansas Department of Public Safety,"[""Flag Status""]","[""NEWS"", ""SETTLEMENT AGREEMENT IN CIVIL ACTION AGAINST STATE POLICE"", ""Respect. Integrity. CUSTOMER SERVICE. TEAMWORK. SERVANT LEADERSHIP. CONTINUOUS IMPROVEMENT"", """", ""© 2024 All rights Reserved. Arkansas.gov""]",[],"[""Share this post""]","[""About DPS"", ""DPS Links"", ""DPS Address"", ""Your Arkansas.gov"", ""Top Online Services"", ""Helpful Information""]",[],"" -643,https://cheswold.delaware.gov/2015/03/06/cheswold-police-department-dea-sponsoring-national-take-back-day-sept-27-2014/,Not Criminal Justice Related,Not Criminal Justice Related,"Cheswold Police Department /DEA Sponsoring National Take Back Day Sept. 27, 2014 - Town of Cheswold - Kent County, Delaware","",200,"Home - Town of Cheswold - Kent County, Delaware","[""Cheswold""]","[""Delaware"", ""Cheswold Police Department /DEA Sponsoring National Take Back Day Sept. 27, 2014""]","[""Menu""]","[""Address:"", ""Call Us:"", ""Reach Out:""]",[],[],Skip to Content Skip to Footer Toggle navigation Menu Government Mayor Town Council Boards & Commissions Departments Elections Meetings & Events Public Notices Past Minutes & Agendas Info Public Hearings Comprehensive Plan Ordinances Taxes & Fees Delinquent Tax List Forms Town Charter Flag Status Past Minutes & Agendas Resolutions Community About Our Town Cheswold Welcome Packet Cheswold’s Airport Cheswold Newsletter Churches & Houses of Worship Colleges & Universities Libraries Local Developments Public Schools News Police About the Cheswold Police Department Police Reports Chief’s Page Cheswold Police Officers Cheswold Police Department Policy Manual Civilian Complaint Packet Crime Statistics Cheswold Police Department – Yearly Traffic Statistics Informational Pamphlets and Forms Law Enforcement Links Most Wanted Police Contact Form Police Employment Police News Ride-A-Long Program Sex Offender List Vacation Check Requests Photo Galleries Contact Contact Us FOIA Form Skip to Content Skip to Footer Toggle navigation Menu Government Mayor Town Council Boards & Commissions Departments Elections Meetings & Events Public Notices Past Minutes & Agendas Info Public Hearings Comprehensive Plan Ordinances Taxes & Fees Delinquent Tax List Forms Town Charter Flag Status Past Minutes & Agendas Resolutions Community About Our Town Cheswold Welcome Packet Cheswold’s Airport Cheswold Newsletter Churches & Houses of Worship Colleges & Universities Libraries Local Developments Public Schools News Police About the Cheswold Police Department Police Reports Chief’s Page Cheswold Police Officers Cheswold Police Department Policy Manual Civilian Complaint Packet Crime Statistics Cheswold Police Department – Yearly Traffic Statistics Informational Pamphlets and Forms Law Enforcement Links Most Wanted Police Contact Form Police Employment Police News Ride-A-Long Program Sex Offender List Vacation Check Requests Photo Galleries Contact Contact Us FOIA Form Skip to Content Skip to Footer Toggle navigation Menu Government Mayor Town Council Boards & Commissions Departments Elections Meetings & Events Public Notices Past Minutes & Agendas Info Public Hearings Comprehensive Plan Ordinances Taxes & Fees Delinquent Tax List Forms Town Charter Flag Status Past Minutes & Agendas Resolutions Community About Our Town Cheswold Welcome Packet Cheswold’s Airport Cheswold Newsletter Churches & Houses of Worship Colleges & Universities Libraries Local Developments Public Schools News Police About the Cheswold Police Department Police Reports Chief’s Page Cheswold Police Officers Cheswold Police Department Policy Manual Civilian Complaint Packet Crime Statistics Cheswold Police Department – Yearly Traffic Statistics Informational Pamphlets and Forms Law Enforcement Links Most Wanted Police Contact Form Police Employment Police News Ride-A-Long Program Sex Offender List Vacation Check Requests Photo Galleries Contact Contact Us FOIA Form -644,http://www.longbeach.gov/police/press-releases/murder3/,Media Bulletins,Agency-Published Resources,MURDER (900 Block of Hoffman),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 7/9/2018 FOR IMMEDIATE RELEASE Press Release # 2018 Subject: MURDER INVESTIGATION (900 BLOCK OF HOFFMAN AVENUE) Contact: Media Relations Detail (562) 570-5273 On July 8, 2018, at approx. 11:00 p.m., officers responded to the 900 block of Hoffman Avenue regarding reports of a shooting, which resulted in the death of a female adult, and the injuring of a male adult. When officers arrived, they located two gunshot victims in front of a residence. A female subject had been struck in the upper torso, and a male subject had been struck in the lower torso. Both victims were transported to a local hospital by LBFD paramedics, where the female was later pronounced deceased. The male victim was listed in stable condition. The deceased victim is only being identified as a 22-year-old female resident of Long Beach, pending notification of next of kin. The second victim is only being identified as a 25-year-old resident of Long Beach. The incident is being investigated as possibly gang-related, however, a motive has not yet been determined. Anyone who witnessed or has information regarding this incident is urged to contact LBPD Homicide Detectives Malcolm Evans and Shea Robertson at (562) 570-7244. Anonymous tips may be submitted through “LA Crime Stoppers” by calling 1-800-222-TIPS (8477), downloading the “P3 Tips” app to your smart phone (available at the Apple App store and Google Play), or visiting www.lacrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -645,https://pharr-tx.gov/ngg_tag/pharr-police-department-athletic-league/,Not Criminal Justice Related,Not Criminal Justice Related,Pharr Police Department Athletic League – City of Pharr,"",200,403 Forbidden,"[""Images tagged \""pharr-police-department-athletic-league\""""]",[],[],[],[],[],"" -646,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/summary/102821summary.pdf,Dispatch Logs,Police & Public Interactions,"","",404,"","","","","","","","" -647,https://www.southamptontownnypolice.gov/faq.aspx?qid=249,Not Criminal Justice Related,Not Criminal Justice Related,FAQs • What are the hours of operation for the Southampton A,"",200,"Police | Southampton, NY - Official Website",[],"[""▼ Public Safety - Animal Control""]","[""Site Tools"", ""Categories"", ""Live Edit"", ""Contact Us"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -648,https://delcopa.gov/heroin/tipsforprevention.html,Poor Data Source,Poor Data Source,"404 - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert " -649,https://www.woburnma.gov/government/police/police-records-request/arrest-records/,Arrest Records,Police & Public Interactions,Arrest Records - City of Woburn,"",200,"City of Woburn, Massachusetts","[""Arrest Records""]",[],"[""Get Text & Email Updates!""]",[],[],[],"Economic Development View our latest info here Pay Where Do I Go For Economic Development View our latest info here Pay Where Do I Go For Economic Development View our latest info here Pay Where Do I Go For Economic Development View our latest info here Pay Where Do I Go For MENU MENU Residents Moving to Woburn Resources Click here to view helpful resources for new or current Woburn residents. News Library Public Schools Recreation Report a Concern Woburn Senior Center Traffic & Parking Veterans Voting & Elections Woburn Public Media Center Trash & Recycling Businesses Economic Development Click here to view our latest info. Apply for Business Certificate Licenses & Permits Food Service Retail Food Mobile Food Municipal Lien Certificates Swimming Pool & Spa Tanning Establishment Temporary Food Service Government Departments & Boards Search through all Departments, Boards and Commissions A-Z. Mayor’s Office City Council Departments & Boards A-Z Employment Opportunities About Woburn History Minutes & Agendas Archive Upcoming Public Meetings Ordinances / Code Bid Postings Public Schools Services Pay a Bill Click here to pay your bill quickly and efficiently. Assessors Database Change Your Mailing Address Forms Open Checkbook Subscribe Pay A Bill Register a Vehicle Register to Vote Report a Concern Events Quick Actions MENU MENU Residents Moving to Woburn Resources Click here to view helpful resources for new or current Woburn residents. News Library Public Schools Recreation Report a Concern Woburn Senior Center Traffic & Parking Veterans Voting & Elections Woburn Public Media Center Trash & Recycling Businesses Economic Development Click here to view our latest info. Apply for Business Certificate Licenses & Permits Food Service Retail Food Mobile Food Municipal Lien Certificates Swimming Pool & Spa Tanning Establishment Temporary Food Service Government Departments & Boards Search through all Departments, Boards and Commissions A-Z. Mayor’s Office City Council Departments & Boards A-Z Employment Opportunities About Woburn History Minutes & Agendas Archive Upcoming Public Meetings Ordinances / Code Bid Postings Public Schools Services Pay a Bill Click here to pay your bill quickly and efficiently. Assessors Database Change Your Mailing Address Forms Open Checkbook Subscribe Pay A Bill Register a Vehicle Register to Vote Report a Concern Events Quick Actions " -650,http://www.longbeach.gov/police/press-releases/dui-saturation-patrol/,Media Bulletins,Agency-Published Resources,DUI Saturation Patrol,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 11/16/2015 FOR IMMEDIATE RELEASE Press Release # Subject: DUI SATURATION PATROL NETS THREE ARRESTS Contact: Media Relations Detail (562) 570-5273 The Long Beach Police Department’s Traffic Section conducted a DUI Saturation Patrol on Saturday, November 14, between the hours of 7:00 p.m. and 3:00 a.m. High visibility DUI enforcement efforts have a deterrent effect lowering the incidents of impaired driving and will continue thanks to special funding for extra officers to patrol for this deadly crime. 58 vehicle enforcement stops 3 DUI-alcohol suspects arrested 2 drivers cited/arrested for operating a vehicle unlicensed or while suspended/revoked 13 citations issued Law Enforcement emphasizes the preventable nature of drunk driving reminding everyone that all it takes is a little planning ahead. Designate a sober driver or call a cab. But whatever you do, don’t drink and drive. The California Office of Traffic Safety DDVIP (Designated Driver VIP) mobile app is now available for free download on iOS and Android devices. Launched last year, the new DDVIP app offers enhanced features, allowing users to “Map a Spot” with their current location to find DDVIP partnering establishments in their area or a “List of Spots” to search all participating bars and restaurants throughout California. Users will be offered free incentives at each bar to celebrate their life saving role. They can stay up-to-date with the latest from DDVIP and see what other users are saying via its social tab. Also through the app, for those who want to imbibe but also make it a point to plan ahead, users can easily order a sober ride from one of several ride sharing services – all from one screen. Drivers caught driving impaired can expect the impact of their DUI arrest to include jail time, fines, fees, DUI classes, other expenses that can exceed $10,000 not to mention the embarrassment when friends and family find out. The Long Beach Police Department will be conducting a DUI/Driver’s License Checkpoint on Saturday, November 21, 2015, in the Department’s ongoing commitment to lowering deaths and injuries upon the city’s streets and highways. The DUI Saturation Patrol was funded by a grant from the California Office of Traffic Safety, through the National Highway Traffic Safety Administration, reminding everyone to ‘Report Drunk Driver – Call 9-1-1’. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -651,https://police.greenvillesc.gov/874/transparency-portal,Resources,Agency-Published Resources,"Transparency | Greenville, SC - Official Website",The City of Greenville is committed to an open government.,200,"Police Department | Greenville, SC - Official Website","[""Transparency""]","[""Subscribe""]","[""Loading""]",[],[],[],"Skip to Main Content Government Departments Business Visitors Residents Search Home Government Transparency Transparency We hope this website improves your access to information, your ability to participate in City events, and your communication with the City of Greenville. Please contact us with any questions or requests. Agendas and Minutes Boards, Commissions, and Committees Building Permit and Site Grading Reports Business License Reports City Council Elections Employment eNewsletters Financial Publications Freedom of Information (FOIA) Requests Code of Ordinances Planning Project Applications Subscribe Stay informed about city news, information and events by subscribing to our city newsletters. More about e-communication City Council District Map Redistricting City Council Meeting Schedule Mayor Knox White Mayor's Corner John DeWorken - District 1 Lillian Brock Flemming - District 2 Ken Gibson - District 3 Wil Brasington - District 4 Dorothy Dowe - At Large Russell Stall - At Large Find Your Elected Officials Map City Manager Online Meetings Boards and Commissions Meeting Agendas & Minutes Meeting Calendar Annual Notice of Meetings (PDF) Elections Code of Ordinances Financial Publications Transparency Newsroom Week in Review Greenville on YouTube Social Media Subscribe to Enews News Archive Road Closure Map Emergency Information Title VI Plan Downtown Special Events Parking unity park falls park Bus & Trolley AFFORDABLE HOUSING Agendas & Minutes Home Contact Us Accessibility /QuickLinks.aspx 206 S Main Street, Greenville, SC 29601 Police Non-Emergency: 864-271-5333 Greenville Cares Information Center 864-232-2273 Back to Top Enable Google Translate Government Departments Business Visitors Residents Search Home Government Transparency Transparency We hope this website improves your access to information, your ability to participate in City events, and your communication with the City of Greenville. Please contact us with any questions or requests. Agendas and Minutes Boards, Commissions, and Committees Building Permit and Site Grading Reports Business License Reports City Council Elections Employment eNewsletters Financial Publications Freedom of Information (FOIA) Requests Code of Ordinances Planning Project Applications Subscribe Stay informed about city news, information and events by subscribing to our city newsletters. More about e-communication City Council District Map Redistricting City Council Meeting Schedule Mayor Knox White Mayor's Corner John DeWorken - District 1 Lillian Brock Flemming - District 2 Ken Gibson - District 3 Wil Brasington - District 4 Dorothy Dowe - At Large Russell Stall - At Large Find Your Elected Officials Map City Manager Online Meetings Boards and Commissions Meeting Agendas & Minutes Meeting Calendar Annual Notice of Meetings (PDF) Elections Code of Ordinances Financial Publications Transparency Newsroom Week in Review Greenville on YouTube Social Media Subscribe to Enews News Archive Road Closure Map Emergency Information Title VI Plan Downtown Special Events Parking unity park falls park Bus & Trolley AFFORDABLE HOUSING Agendas & Minutes Home Contact Us Accessibility /QuickLinks.aspx 206 S Main Street, Greenville, SC 29601 Police Non-Emergency: 864-271-5333 Greenville Cares Information Center 864-232-2273 Back to Top Enable Google Translate " -652,http://www.longbeach.gov/police/press-releases/fatal-traffic-accident-1-/,Media Bulletins,Agency-Published Resources,FATAL TRAFFIC ACCIDENT(1),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 3/19/2016 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: FATAL TRAFFIC ACCIDENT Contact: Media Relations Detail (562) 570-5273 On March 19, 2016, at approximately 11:49 p.m., officers from the Long Beach Police Department were dispatched to the 3300 block of South Street regarding an injury traffic collision between a vehicle and a pedestrian. Upon arrival, Officers observed Los Angeles County Fire Department Paramedics performing lifesaving medical aid on the pedestrian. That pedestrian was later transported to a local hospital where he remained in critical condition. The preliminary investigation revealed the pedestrian, a 28-year-old male resident of Huntington Beach, was crossing southbound across South Street west of Downey Avenue. He was not in a crosswalk when he was struck by a 1997 Honda Accord that was traveling eastbound on South Street being driven by a 32-year-old resident of Bellflower. The driver of the Honda remained at the scene, was interviewed and later released. On March 20, 2016, the pedestrian succumbed to his injuries at the local hospital. The pedestrian's identification is being withheld pending notification of the next of kin. Anyone who may have information regarding this incident is asked to call Long Beach Police Department Collision Investigation Detail Detective Steve Fox at (562) 570-7355. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -653,https://coloradosprings.gov/police-department/page/commander-rigdon,Poor Data Source,Poor Data Source,"","",403,"","","","","","","","" -654,https://lockhavenpa.gov/government/manager/personnel/lifeins_ft_police/,Not Criminal Justice Related,Not Criminal Justice Related,"Group Life: Full-time Police - City of Lock Haven, PA","",200,"City of Lock Haven, PA - Official Site","[""City of Lock Haven, PA"", ""Group Life: Full-time Police""]","[""""]","[""Quick Links"", ""River (Latest Observation)"", ""Archives"", ""Categories"", ""Meta""]",[],[],[],"City of Lock Haven, PA Menu Skip to content Home Residents Resources Bicycle Safety Open Burning Recycling Fall Leaf Collection Sidewalk Replacement Program Pesticides & Herbicides Emergency Preparedness Government Sustainability Diversity, Equity and Inclusion Education Energy Use, Conservation and Green Building Environmental Stewardship Governance and Community Engagement Healthy Communities Housing Land Use and Transportation City Council Agenda & Minutes Boards & Commissions Elected Officials City Manager Financial Administration Local Services Tax Real Estate Tax Personnel Administration Health Newsletters Workplace Safety New Hire & Annual Safety Training Open Enrollment Investment Administration Ethics Administration Lock Haven City Authority Forest Management Area Flood Protection Authority Levee Easement Redevelopment Authority Right to Know Employment Opportunities Full-time Semi-Skilled Laborer Assistant City Manager Departments Public Works Castanea Township Project Service Line Warranty Sewer Treatment Airport Operations Fire Department Streets Department Community Services Streets & Bridges Water Department 2023 Water Quality Report 2022 Water Quality Report 2021 Water Quality Report 2020 Water Quality Report 2019 Water Quality Report 2018 Water Quality Report 2017 Water Quality Report 2016 Water Quality Report WATER CONSERVATION Code Enforcement Building & Construction Health & Food Zoning Rental Property Registration Engineering GIS/GPS Mapping Map Room Fire Department Fire Dept Advisory Board Parking Downtown Parking Parking Fines Parking Permits Parks & Recreation Locations Programs City Beach Summer Recreation Program Planning 2020 Census Destination Lock Haven ADA Accessibility Community Development Block Grants Citizen Complaint Process Housing Rehabilitation Program Police Community Services Community Services Organization & Records Department Roster Policies Press Release Business & Development Open for Business Commercial Loan Program Commercial Recycling Forms & Publications Ordinances Public Notices Web Accessibility Community Food Trucks and Vendors Summer Concert Series Floating Stage Triangle Park Outdoor Movie Series Events Contact Us FAQ’s Location Search for: . пин ап официальный сайт – это современное онлайн-казино, которое предлагает широкий ассортимент азартных игр, включая слоты, настольные игры и игры с живыми дилерами. . Vavada Casino new players are welcome: bonus 150 free spins + 100% to the deposit. Increase your success! Group Life: Full-time Police Group Life: Full-time Police Quick Links 2023 WATER EMERGENCY SEARCH THE CITY ORDINANCES PAY YOUR WATER/SEWER BILL ONLINE PAY YOUR PARKING TICKET ONLINE LIVE RIVER WEBCAM Sponsored by Downtown Lock Haven, Inc. Airport Operations Right to Know Lock Haven Civil Space Employment Opportunities River (Latest Observation) Observation - LHVP1 - West Branch Susquehanna River at Lock Haven (Pennsylvania) Flood Categories Primary (ft) Action : 17 ft Minor : 21 ft Moderate : 23 ft Major : 25 ft Secondary (kcfs) Action : Not Set Minor : Not Set Moderate : Not Set Major : Not Set Gauge Data Latest Observation Category: Normal Latest Observation: 9.19 ft Latest Observation (Secondary): 5.38 kcfs Observation Time: […] Select photos used by permission, © David B. Kawchak. Search for: Archives Categories No categories Meta Log in Entries feed Comments feed WordPress.org " -655,https://www.newarknj.gov/news/mayor-ras-j-barakas-statement-on-police-chief-darnell-henry,Media Bulletins,Agency-Published Resources,News: MAYOR RAS J. BARAKA’S STATEMENT ON POLICE CHIEF DARNELL HENRY,"Official Page of Newark, NJ News: MAYOR RAS J. BARAKA’S STATEMENT ON POLICE CHIEF DARNELL HENRY",200,City of Newark,"[""City of"", ""NEWARK"", ""September 3, 2020"", ""MAYOR RAS J. BARAKA’S STATEMENT ON POLICE CHIEF DARNELL HENRY"", ""City of"", ""NEWARK""]","[""News"", ""Mayor Ras j baraka""]",[],[],[],[],"City of NEWARK DEPARTMENTS Administration Communications Economic & Housing Development Engineering Finance Health & Community Wellness Law Municipal Court Newark Office of Film+Television Office of Violence Prevention & Trauma Recovery Office of the City Clerk Office of the Mayor & Agencies Public Safety Public Works Recreation, Cultural Affairs and Senior Services Water & Sewer Utilities News Events Forms mayor City Mayor Council Members Contact Knowledge Contact us City of NEWARK DEPARTMENTS Administration Communications Economic & Housing Development Engineering Finance Health & Community Wellness Law Municipal Court Newark Office of Film+Television Office of Violence Prevention & Trauma Recovery Office of the City Clerk Office of the Mayor & Agencies Public Safety Public Works Recreation, Cultural Affairs and Senior Services Water & Sewer Utilities News Events Forms mayor City Mayor Council Members Contact Knowledge Contact us City of NEWARK DEPARTMENTS Administration Communications Economic & Housing Development Engineering Finance Health & Community Wellness Law Municipal Court Newark Office of Film+Television Office of Violence Prevention & Trauma Recovery Office of the City Clerk Office of the Mayor & Agencies Public Safety Public Works Recreation, Cultural Affairs and Senior Services Water & Sewer Utilities DEPARTMENTS DEPARTMENTS Administration Communications Economic & Housing Development Engineering Finance Health & Community Wellness Law Municipal Court Newark Office of Film+Television Office of Violence Prevention & Trauma Recovery Office of the City Clerk Office of the Mayor & Agencies Public Safety Public Works Recreation, Cultural Affairs and Senior Services Water & Sewer Utilities Administration Communications Economic & Housing Development Engineering Finance Health & Community Wellness Law Municipal Court Newark Office of Film+Television Office of Violence Prevention & Trauma Recovery Office of the City Clerk Office of the Mayor & Agencies Public Safety Public Works Recreation, Cultural Affairs and Senior Services Water & Sewer Utilities Administration Communications Economic & Housing Development Engineering Finance Health & Community Wellness Law Municipal Court Newark Office of Film+Television Office of Violence Prevention & Trauma Recovery Office of the City Clerk Office of the Mayor & Agencies Public Safety Public Works Recreation, Cultural Affairs and Senior Services Water & Sewer Utilities mayor City Mayor Council Members mayor mayor Contact Knowledge Contact us Contact Contact News News News News " -656,https://alpha.austin.gov/es/police-oversight/2020-09-17-08/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -657,http://www.longbeach.gov/police/press-releases/k-9-officer-is-partnered-with-new-police-service-dog/,Media Bulletins,Agency-Published Resources,K-9 Officer is Partnered with New Police Service Dog,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 11/22/2016 FOR IMMEDIATE RELEASE Press Release # Subject: K-9 OFFICER IS PARTNERED WITH NEW POLICE SERVICE DOG Contact: Media Relations Detail (562) 570-5273 CLICK ON IMAGES TO ENLARGE VIEW VIDEO CLIP OF STORM IN ACTION K-9 Officer Mike Parcells has acquired a new police service dog after his former dog “Credo” was fatally injured following a June 28, 2016 SWAT call-out involving a barricaded suspect. This week, Officer Parcells began field patrol with his new K-9 partner “Storm.” Storm, a 1 ½ year-old male Belgian Malinois, was imported from Holland where he received pre-training, before being received and trained by the Vohne Liche Kennels, a training facility in Indiana. In August 2016, Officer Parcells travelled to Indiana where he interacted with 25 dogs, before zeroing in on Storm. Once Storm was selected, he traveled back to Long Beach with Officer Parcells to begin several weeks of patrol training, which included: search techniques, verbal commands, obedience, agility, and evidence searches. In all, Storm has undergone 200+ hours of training, and was certified for field duty on November 11, 2016. Given his young age, Officer Parcells has described Storm as puppy-like and compared him to having a 2-year-old toddler, but is confident in what he has seen in his abilities. He acknowledged that losing Credo was extremely difficult and no other dog could take his place, but is excited to have Storm as his new partner and knows this is the beginning of a new journey. Storm is Officer Parcells’ sixth police service dog. Storm was funded by the Long Beach K-9 Officers Association (LBK9OA), a non-profit organization established by members of the community with the goal of promoting and supporting the LBPD’s K-9 Unit. The LBK9OA has also covered the cost of professionally fitted and upgraded tactical vests for LBPD police service dogs. To learn more about the LBK9OA or to make a contribution, visit their website at www.lbk9oa.org. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -658,https://columbiacitypolice.us/documents/publiccomplaint.pdf,Complaints & Misconduct,Info About Officers,"","",200,"","","","","","","","" -659,https://www.southamptontownnypolice.gov/1695/2022-tentative-roll-assessment-rolls,List of Data Sources,Info About Agencies,"2023 Tentative Roll Assessment Roll | Southampton, NY - Official Website","",200,"Police | Southampton, NY - Official Website","[""2023 Tentative Roll Assessment Roll""]",[],"[""Site Tools"", ""Contact Us"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Government Town Services Community Info How Do I Translate Page Site Tools Home My Account Printer Friendly Email Page Contact Us RSS Site Map Translate Page Notifications Documents Search Home Government Departments Assessor's Office Assessment Roll - Tentative (2023) 2023 Tentative Roll Assessment Roll North Haven 473601 Quogue 473603 Southampton 473605 Westhampton Beach 473607 Sag Harbor 473609 Westhampton Dunes-473613 Sagaponack-473615 473689 001-473689 033 473689 033-473689 069 473689 070-473689 110 473689 111-473689 145 473689 145-473689 206 473689 206-473689 258 473689 258-473689 297 473689 297-473689 351 473689 351-473689 381 473689 381-473689 500 Roll Sections 3-5-6-8 Grand-Totals Agricultural Assessment Information Applications & Instructions Assessment Rolls - Final (2023/2024) Assessment Roll - Tentative (2023) Grievance Day Account Lookup Grievance Day Information Grievance Facts Interactive Sales Map Property Tax Freeze Credit Small Claims Assessment Review STAR Information Town Clerk Meetings, Agendas & Minutes Pay Your Taxes Online Services Applications, Forms & Fees Notify Me® FOIL Requests Contact Us Town of Southampton 116 Hampton Road Southampton, NY 11968 Phone: 631-283-6000 Banner photo credit: robertseifertphotography.com Site Links Contact Us Site Map Accessibility Copyright Notices Intranet Job Opportunities Title VI Non-discrimination Policy /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Government Town Services Community Info How Do I Translate Page Site Tools Home My Account Printer Friendly Email Page Contact Us RSS Site Map Translate Page Notifications Documents Search Home Government Departments Assessor's Office Assessment Roll - Tentative (2023) 2023 Tentative Roll Assessment Roll North Haven 473601 Quogue 473603 Southampton 473605 Westhampton Beach 473607 Sag Harbor 473609 Westhampton Dunes-473613 Sagaponack-473615 473689 001-473689 033 473689 033-473689 069 473689 070-473689 110 473689 111-473689 145 473689 145-473689 206 473689 206-473689 258 473689 258-473689 297 473689 297-473689 351 473689 351-473689 381 473689 381-473689 500 Roll Sections 3-5-6-8 Grand-Totals Agricultural Assessment Information Applications & Instructions Assessment Rolls - Final (2023/2024) Assessment Roll - Tentative (2023) Grievance Day Account Lookup Grievance Day Information Grievance Facts Interactive Sales Map Property Tax Freeze Credit Small Claims Assessment Review STAR Information Town Clerk Meetings, Agendas & Minutes Pay Your Taxes Online Services Applications, Forms & Fees Notify Me® FOIL Requests Contact Us Town of Southampton 116 Hampton Road Southampton, NY 11968 Phone: 631-283-6000 Banner photo credit: robertseifertphotography.com Site Links Contact Us Site Map Accessibility Copyright Notices Intranet Job Opportunities Title VI Non-discrimination Policy /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... " -660,https://www.corcoranmn.gov/public_services/police/press_releases_records_and_complaint_recognition/press_releases,List of Data Sources,Info About Agencies,Press Releases - City of Corcoran,"",200,Just a moment...,"[""Press Releases""]",[],[],[],[],[],"" -661,http://lafayettepolice.us/1079/staff,Contact Info & Agency Meta,Info About Agencies,"Staff | Lafayette, IN - Official Website","",200,"Police Department | Lafayette, IN - Official Website","[""Staff""]",[],"[""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Government Services Our Community Business & Development How Do I... Transparency Home Government Departments H - W Water Works Staff Staff Steve Moore-Superintendent Ron Hurst-Assistant Superintendent Jay Schnebly-Chief of Distribution and Customer Service Chuck Reynolds-Chief of Operations and Maintenance John Burks-Water Works Public Works Inspector Rick Ross-Water Works Public Works Inspector Joe Davenport-Backflow/Cross Connection Inspector Jennifer Murray-Inventory Cost Account Manager Christy Schutter-Administrative Assistant Reports Meter Change-out Staff Upgrades Water's Path to You Water Tips Wellhead Protection Program Wellhead Protection Program Brochures Water Works Waivers Employment Utilities Payment Submit a Request Permits & Licensing Agendas & Minutes Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Government Services Our Community Business & Development How Do I... Transparency Home Government Departments H - W Water Works Staff Staff Steve Moore-Superintendent Ron Hurst-Assistant Superintendent Jay Schnebly-Chief of Distribution and Customer Service Chuck Reynolds-Chief of Operations and Maintenance John Burks-Water Works Public Works Inspector Rick Ross-Water Works Public Works Inspector Joe Davenport-Backflow/Cross Connection Inspector Jennifer Murray-Inventory Cost Account Manager Christy Schutter-Administrative Assistant Reports Meter Change-out Staff Upgrades Water's Path to You Water Tips Wellhead Protection Program Wellhead Protection Program Brochures Water Works Waivers Employment Utilities Payment Submit a Request Permits & Licensing Agendas & Minutes Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In " -662,https://delcopa.gov/publicrelations/releases/2021/covid_countiesvaccinestatement.html,Not Criminal Justice Related,Not Criminal Justice Related,"Southeast Pennsylvania Counties Issue Statement on COVID-19 Vaccine Distribution - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Southeast Pennsylvania Counties Issue Statement on COVID-19 Vaccine Distribution""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"" -663,https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0838/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -664,http://www.longbeach.gov/police/about-the-lbpd/bureaus/investigations-bureau/detective-division/auto-theft-detail-and-t.r.a.p/,Resources,Agency-Published Resources,Auto Theft Detail and T.R.A.P.,"",200,City of Long Beach,"[""Police Department""]","[""Auto Theft Detail And T.R.A.P""]","[""Mayor"", ""City Council"", ""Rex Richardson"", ""Mary Zendejas"", ""Cindy Allen"", ""Kristina Duggan"", ""Daryl Supernaw"", ""Megan Kerr"", ""Suely Saro"", ""Roberto Uranga"", ""Al Austin"", ""Dr. Joni Ricks-Oddie"", ""Dawn McIntosh"", ""Laura L. Doud"", ""Doug Haubert"", ""Tom Modica"", ""Monique DeLaGarza"", ""City-Wide Elected Officials"", ""Appointed Officials"", ""Online Payments"", ""Online Services"", ""In-Person Services"", ""Opening a Business"", ""Doing Business With The City"", ""Resources"", ""Most Popular"", ""Online Resources"", ""Attractions"", ""Business Associations"", ""Travel Resources"", ""Departments"", ""Job Opportunities"", ""Information"", ""LBPD"", ""Employment"", ""Bureaus"", ""News & Events"", ""Crime Info"", ""How Do I"", ""How Do I"", ""Contact Us"", ""TASK FORCE FOR REGIONAL AUTO THEFT PREVENTION (T.R.A.P.)"", ""Do."", ""Discover."", ""Connect."", ""Ask.""]","["""", ""1st District"", ""2nd District"", ""3rd District"", ""4th District"", ""5th District"", ""6th District"", ""7th District"", ""8th District"", ""9th District"", ""City Attorney"", ""City Auditor"", ""City Prosecutor"", ""City Manager"", ""City Clerk"", ""REPORTING AUTO THEFT"", ""CHECKING YOUR AUTO THEFT CASE STATUS"", ""RENTAL CAR THEFTS AND EMBEZZLEMENT"", ""FAILURE TO RETURN A BORROWED CAR"", ""LAWS PERTAINING TO AUTO THEFT""]","[""Long Beach Police non-emergency (562) 435-6711"", ""Long Beach Police business desks:"", ""File a Report Online"", ""Submit a Tip"", ""Submit a Commendation"", ""File a Complaint"", ""Ride Along Program"", """", """", """", """", ""Crime Lab Survey"", """"]",[],"" -665,https://delcopa.gov/ich/resources/covid19/pdf/coronavirustestingifnohealthcareprovider.pdf,Poor Data Source,Poor Data Source,"404 - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert " -666,https://rocklandmaine.gov/police-department/officer-duhamel-promoted-to-patrol-sergeant/attachment/f45111ed-37de-4a3d-b8e7-099f09cad7fb-15/,Poor Data Source,Poor Data Source,"F45111ED-37DE-4A3D-B8E7-099F09CAD7FB.jpeg | The City of Rockland, Maine","",200,403 Forbidden,"[""F45111ED-37DE-4A3D-B8E7-099F09CAD7FB.jpeg""]",[],"[""All Current Alerts & Announcements"", ""Current Weather"", ""City of Rockland""]",[],[],[],"All Current Alerts & Announcements Please note that the first phase of the City of Rockland’s revaluation has begun, with workers from Vision Government Solutions visiting properties for data collection. The data collector will have identification, be wearing a reflective vest, have a letter of verification from the City Assessor, and will have their car registered with the Police Department. You may also see the City Assessor, Molli Bennett, visiting properties as well! Current Weather Now loading... All Current Alerts & Announcements Please note that the first phase of the City of Rockland’s revaluation has begun, with workers from Vision Government Solutions visiting properties for data collection. The data collector will have identification, be wearing a reflective vest, have a letter of verification from the City Assessor, and will have their car registered with the Police Department. You may also see the City Assessor, Molli Bennett, visiting properties as well! Current Weather Now loading... All Current Alerts & Announcements Please note that the first phase of the City of Rockland’s revaluation has begun, with workers from Vision Government Solutions visiting properties for data collection. The data collector will have identification, be wearing a reflective vest, have a letter of verification from the City Assessor, and will have their car registered with the Police Department. You may also see the City Assessor, Molli Bennett, visiting properties as well! Current Weather Now loading... All Current Alerts & Announcements Please note that the first phase of the City of Rockland’s revaluation has begun, with workers from Vision Government Solutions visiting properties for data collection. The data collector will have identification, be wearing a reflective vest, have a letter of verification from the City Assessor, and will have their car registered with the Police Department. You may also see the City Assessor, Molli Bennett, visiting properties as well! All Current Alerts & Announcements Please note that the first phase of the City of Rockland’s revaluation has begun, with workers from Vision Government Solutions visiting properties for data collection. The data collector will have identification, be wearing a reflective vest, have a letter of verification from the City Assessor, and will have their car registered with the Police Department. You may also see the City Assessor, Molli Bennett, visiting properties as well! Please note that the first phase of the City of Rockland’s revaluation has begun, with workers from Vision Government Solutions visiting properties for data collection. The data collector will have identification, be wearing a reflective vest, have a letter of verification from the City Assessor, and will have their car registered with the Police Department. You may also see the City Assessor, Molli Bennett, visiting properties as well! " -667,https://www.madera.gov/wp-content/uploads/2016/05/madera-south-copy.jpg,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -668,https://www.fortworthtexas.gov/departments/police/public-safety/fw-pd-central-hemphill,Contact Info & Agency Meta,Info About Agencies,Welcome to the Fort Worth Police Department,"",200,Error retrieving title: 'NoneType' object has no attribute 'text',"[""Police Department""]","[""Learn what we're doing with the #FortWorthSafe Strategy"", ""Accident Reports"", ""Online Reporting"", ""Search One Address. Find Everything ."", ""Executive Staff"", ""Inside FWPD"", ""Patrol Commanders"", ""Help Us Solve a Crime"", ""Community Camera Program"", ""Most Wanted"", ""CrimeMapping.com""]","[""#FortWorthSafe Strategy"", ""Professional Standards"", ""Procedural Justice"", ""Chief of Police Neil Noakes"", ""Executive Assistant Chief Robert Alldredge"", ""Assistant Chief Julie Swearingin"", ""Assistant Chief David Carabajal"", ""Deputy Chief Buck Wheeler"", ""Deputy Chief Mark Barthen"", ""Deputy Chief Pedro \""Kiki\"" Criado"", ""Deputy Chief Chad Mahaffey"", ""Deputy Chief Monica Martin"", ""Deputy Chief Chris Daniels"", ""Assistant Police Director Leo Luna"", ""Assistant Police Director Keith Morris"", ""Central Commander - Robert Stewart"", ""East Commander - Antione Williams"", ""North Commander - Sean Kenjura"", ""Northwest Commander - Jason Kim"", ""South Commander - Andre Smith"", ""West Commander - Stefanie RIcks"", ""Catherine Davis, 24 years old"", ""Felicita Olguin, 81 years old"", ""Eduardo Lopez, 18 years old"", ""Derek Locke, 30 years old"", ""Miguel Ruiz, DOB: 05/14/1997"", ""Nestor Moreno, DOB: 02/26/1973"", ""Jaylnn Brooks, DOB: 03/14/2001"", ""Eric Sosa, DOB: 12/30/1981"", ""Draylon Gowans, DOB: 12/01/2000"", ""Paul Roman Aleman, DOB: 06/14/1996"", ""Johnathon Baughan, DOB: 09/01/1982"", ""Passion Crawford, DOB: 03/12/1992"", ""Ruben Buckner, DOB: 07/28/1968"", ""Reginald McDowell, DOB: 08/19/1996"", ""Resources"", ""Helpful Links"", ""Connect With FWPD""]",[],[],[],Learn what we're doing with the #FortWorthSafe Strategy -669,https://delcopa.gov/publicrelations/releases/2019/pdf/2019stateofthecounty.pdf,Media Bulletins,Agency-Published Resources,"","",200,"","","","","","","","" -670,https://police.greenvillesc.gov/304/health-wellness,Not Criminal Justice Related,Not Criminal Justice Related,"Employee Health Center | Greenville, SC - Official Website",Learn about the City's initiatives to promote healthy lifestyles and read about the award-winning Health and Wellness Program.,200,"Police Department | Greenville, SC - Official Website","[""Employee Health Center""]","[""On-site Walk-in Clinic"", ""Award Winning Health and Wellness Program"", ""Annual Physicals"", ""Lunch and Learns"", ""Award Winning On-site Tobacco Cessation Program"", ""Bicycle Commuter Tax Provision"", ""Employee Assistance Program (EAP)"", ""Mobile RN Program"", ""Nurse Practitioner"", ""Vaccinations"", ""Vaccinations"", ""Other Wellness Programs""]","[""Contacts"", ""Loading""]","[""Human Resources""]",[],[],Skip to Main Content -671,https://champaignil.gov/2010/08/05/champaign-police-hosts-pool-party-for-youth/,Media Bulletins,Agency-Published Resources,Champaign Police Hosts Pool Party for Youth - City of Champaign,"",200,403 Forbidden,"[""Champaign Police Hosts Pool Party for Youth""]","[""News Releases"", ""Department News""]",[],[],[],[],"skip to content City of Champaign Main Menu Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs Champaign Police Hosts Pool Party for Youth Search Posted on August 5, 2010 The Champaign Police Department, with the assistance of the Champaign Park District, Don Moyer Boys & Girls Club and local community members, will host an outreach event at Sholem Pool for local youth, age 12 – 17 y/o. When: Thursday, August 12, 2010 Where: Sholem Aquatic Center 2200 Sangamon Drive, Champaign Time: Grilling, 7– 8 p.m. Pool Party with games and prizes, 8 – 10 p.m. All youth must register at one of the following locations to receive a wristband for entry: Don Moyer Boys & Girls Club First Christian Church (Staley Road) The Church of the Living God The Leonhard Recreation Center The Douglass Community Center For more information, please contact Officer Katherine Thompson at Katherine.Thompson@ci.champaign.il.us or (217) 351-4545. Pool Party Flyer Categories: General Press Releases , Police Department Press Releases Subscribe to City News Read All City News News Releases General Construction Fire Department Police Department Department News City Council City Manager’s Office Equity and Engagement Department Finance Department Fire Department Human Resources Department Information Technologies Department Legal Department Library METCAD 9-1-1 Neighborhood Services Department Planning and Development Department Police Department Public Works Department The Champaign Insider City Newsletter City of Champaign City of Champaign 102 N. Neil St. Champaign, IL 61820 217-403-8700 Site Disclaimer I Privacy Policy City of Champaign Main Menu Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs City of Champaign Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works " -672,https://police.bixbyok.gov/faq.aspx?qid=79,Resources,Agency-Published Resources,FAQs • Can I limit the number of SMS (text) messages I recei,"",200,"Bixby Police Department, OK | Official Website",[],"[""▼ Nixle Alert System""]","[""Categories"", ""Live Edit"", ""Helpful Links"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -673,https://spdblotter.seattle.gov/2018/12/02/theater-cancels-matinee-police-investigate-after-theater-employees-discover-threats-on-facebook/,Media Bulletins,Agency-Published Resources,"Theater Cancels Matinee, Police Investigate After Theater Employees Discover Threats on Facebook - SPD Blotter","",200,403 Forbidden,"[""Theater Cancels Matinee, Police Investigate After Theater Employees Discover Threats on Facebook""]","[""Find Posts By Topic"", ""Featured Posts"", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],"Seattle.gov Choose a language: English English Google Translate may not accurately translate all content. Read disclaimer . For general City questions, please call 206-684-2489 . Tell us your requested language in English, and we can connect you with an interpreter. Continue Cancel Español Es posible que Google Translate no traduzca con precisión todo el contenido. Lea el descargo de responsabilidad . Si necesita ayuda en otro idioma, díganos en inglés nombre del idioma que necesita y lo conectaremos con un intérprete: 206-684-2489 Seguir Cancelar 中國語文 Google翻譯可能無法準確翻譯所有內容。 閱讀免責聲明 。 如果您需要翻譯,請用英語説出您所需要的語言,我們將爲你連接口譯員: 206-684-2489 繼續 取消 简体中文 Google翻译可能无法准确翻译所有内容。 阅读免责声明 。 如果您需要翻译,请用英语说出您所需要的语言,我们将为你连接口译员: 206-684-2489 继续 取消 Tiếng Việt Google Dịch có thể không dịch chính xác tất cả nội dung. Đọc tuyên bố từ chối trách nhiệm . Nếu quý vị cần hỗ trợ về ngôn ngữ, xin vui lòng cho chúng tôi biết ngôn ngữ quý vị cần hỗ trợ bằng tiếng Anh (ví dụ “Vietnamese”), chúng tôi sẽ kết nối quý vị với một thông dịch viên: 206-684-2489 Tiếp tục Huỷ bỏ русский язык Google Translate не может точно перевести весь контент. Прочтите отказ от ответственности . Если вам нужна языковая помощь, сообщите нам на английском, какой язык вам нужен, и мы свяжем вас с переводчиком: 206-684-2489 Продолжать Отмена Af-Soomaali Google Translate ayaan si sax ah u turjumi karin dhammaan waxyaabaha ku jira. Akhri afeef . Haddii aad u baahan tahay caawimaad luqadeed, fadlan noogu sheeg Ingiriisiga luqadda aad u baahan tahay, ka dib waxaan kugu xiri doonnaa turjubaan: 206-684-2489 Sii wad Jooji አማርኛ የጉግል ትርጉም ሁሉንም ይዘቶች በትክክል መተርጎም ላይችል ይችላል። ማስተባበያ አንብብ ፡፡ ኣስተርጓሚ ካስፈለግዎ የሚፈልጉትን ቋንቋ በእንግልዝኛ ይንገሩን፣ ከኣስተርጓሚ እናገናኝዎታለን። 206-684-2489 ቀጥል ሰርዝ 한국어 구글은 정확하게 모든 내용을 번역하지 않을 수 있습니다 번역. 읽기 면책 조항 . 언어지원이 필요한 경우, 필요한 언어를 영어로 말씀해 주시면 통역사와 연결해 드리겠습니다: 206-684-2489 계속하다 취소 Tagalog Maaaring hindi tumpak na isalin ng Google Translate ang lahat ng nilalaman. Basahin ang disclaimer . Para sa mga pangkalahatang katanungan sa Lungsod, mangyaring tawagan ang 206-684-2489 . Sabihin sa amin ang hiniling mong wika sa Ingles, at maikokonekta ka namin sa isang interpreter. Magpatuloy Kanselahin ภาษาไทย Google Translate อาจแปลเนื้อหาทั้งหมดไม่ถูกต้อง อ่านข้อจำกัดความรับผิดชอบ สำหรับคำถามทั่วไปเกี่ยวกับเมืองโปรดโทร 206-684-2489 บอกภาษาที่คุณต้องการเป็นภาษาอังกฤษและเราสามารถติดต่อคุณกับล่ามได้ ดำเนินการต่อ ยกเลิก 日本語 Google翻訳は、すべてのコンテンツを正確に翻訳するとは限りません. 免責事項をお読みください 。 市の一般的な質問については 206-684-2489 に電話してください。ご希望の言語を英語で教えていただければ、通訳をご案内いたします。 継続する キャンセル ភាសាខ្មែរ កម្មវិធីបកប្រែហ្គូហ្គោលមិនអាចបកប្រែមាតិកាទាំងអស់បានត្រឹមត្រូវទេ។ អានការបដិសេធ។ សម្រាប់សំណួរទូទៅរបស់ទីក្រុងសូមទូរស័ព្ទមក 206-684-2489 ។ ប្រាប់យើងពីភាសាដែលអ្នកស្នើសុំជាភាសាអង់គ្លេសហើយយើងអាចភ្ជាប់អ្នកជាមួយអ្នកបកប្រែភាសា។ បន្ត បោះបង់ ພາສາລາວ Google Translate ອາດຈະບໍ່ແປເນື້ອຫາທັງ ໝົດ ຢ່າງຖືກຕ້ອງ. ອ່ານປະຕິເສດ . ສຳ ລັບ ຄຳ ຖາມທົ່ວໄປຂອງເມືອງ, ກະລຸນາໂທຫາ 206-684-2489 . ບອກພວກເຮົາເປັນພາສາອັງກິດທີ່ທ່ານຮ້ອງຂໍ, ແລະພວກເຮົາສາມາດເຊື່ອມຕໍ່ທ່ານກັບນາຍແປພາສາ. ສືບຕໍ່ ຍົກເລີກ Українська Перекладач Google може не точно перекласти весь вміст. Прочитайте застереження . За загальними запитаннями про місто, будь ласка, телефонуйте 206-684-2489 . Розкажіть нам про вашу мову англійською мовою, і ми можемо зв’язати вас із перекладачем. Продовжуйте Скасувати Français Google Traduction peut ne pas traduire correctement tout le contenu. Lisez la clause de non-responsabilité . Pour des questions générales sur la ville, veuillez appeler le 206-684-2489 . Dites-nous votre langue souhaitée en anglais, et nous pourrons vous mettre en contact avec un interprète. Continuer Annuler " -674,https://www.mass.gov/info-details/audit-of-the-massachusetts-cultural-council-objectives-scope-and-methodology,Not Criminal Justice Related,Not Criminal Justice Related,"Audit of the Massachusetts Cultural Council Objectives, Scope, and Methodology | Mass.gov",An overview of the purpose and process of auditing the Massachusetts Cultural Council,200,Mass.gov,"[""Audit of the Massachusetts Cultural Council Objectives, Scope, and Methodology""]","[""Table of Contents for the audit, Audit of the Massachusetts Cultural Council"", ""Appendix"", ""Table of Contents"", ""Overview"", ""Grants to Individuals"", ""Cultural Organization Economic Recovery Program Grants"", ""ICP"", ""Cybersecurity Awareness Training"", ""Data Reliability"", ""Help Us Improve Mass.gov with your feedback""]","[""Go Smart"", ""Pearl"", ""MMARS""]",[],[],[],"" -675,https://www.montebelloca.gov/departments/police/services/pay_a_parking_ticket,Poor Data Source,Poor Data Source,Pay a Parking Ticket - City of Montebello,"",200,Just a moment...,"[""City of Montebello""]","[""Pay a Parking Ticket""]","[""FREQUENTLY ASKED QUESTIONS / PAY A PARKING TICKET""]",[],[],[],Skip to Content -676,https://delcopa.gov/publicrelations/releases/2020/covid_twoadditionaldeaths.html,Not Criminal Justice Related,Not Criminal Justice Related,"Two Additional COVID-19 Related Deaths Reported in Delaware County - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Two Additional COVID-19 Related Deaths Reported in Delaware County""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Two Additional COVID-19 Related Deaths Reported in Delaware County Home / Departments / Public Relations Releases / Two Additional COVID-19 Related Deaths Reported in Delaware County Sadly, there are two additional COVID-19 related deaths in Delaware County, bringing the total number of deaths to four in the County. The Chester County Health Department has confirmed a 70- year- old female from Ridley Township and a 63-year-old male from Middletown Township have passed away from COVID-19. Delaware County Council extends its deepest condolences to their families. As we as a community combat this pandemic together, this loss affects all of us and we are deeply saddened by the news. Delaware County Council continues to urge residents to follow Governor Wolf’s Stay at Home Order, which will help prevent the spread of the virus and protect our community. The order took effect on Monday, March 23 and will continue until April 6. Individuals may leave their residence only to perform allowable individual activities and allowable essential travel. More information about the order can be found here: https://www.governor.pa.gov/newsroom/governor-wolf-and-health-secretary-issue-stay-at-home-orders-to-7-counties-to-mitigate-spread-of-covid-19/ (link no longer active) Public Relations Navigation Press Releases County Newsletter Use of County Facility Form Questions about COVID-19 vaccines? Please call the COVID-19 Call Center: 484-276-2100. Adrienne Marofsky, Director Government Center, 226A 201 W. Front St. Media, PA 19063 Phone: 610-891-4943 delcopr@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Two Additional COVID-19 Related Deaths Reported in Delaware County Home / Departments / Public Relations Releases / Two Additional COVID-19 Related Deaths Reported in Delaware County Two Additional COVID-19 Related Deaths Reported in Delaware County Home / Departments / Public Relations Releases / Two Additional COVID-19 Related Deaths Reported in Delaware County Two Additional COVID-19 Related Deaths Reported in Delaware County Home / Departments / Public Relations Releases / Two Additional COVID-19 Related Deaths Reported in Delaware County " -677,https://www.foxcrossingwi.gov/foxcrossingwi.gov/police/,Annual & Monthly Reports,Info About Agencies,Police Archives - Fox Crossing Fox Crossing,"",200,Fox Crossing - Bridging the Fox Cities Fox Crossing,"[""""]",[],[],[],[],[],"Home Government Board of Review Bond Schedule Commissions & Boards Application for Appointment Village Board Elections and Voting Incorporation Information Fee Schedule Licenses & Permit Applications Minutes and Agendas Municipal Code Departments Administration Assessor Clerk Community Development Finance/Treasurer Fire Municipal Court Parks and Recreation Police Street Utilities Calendar Resources Elderly Transportation Program Employment Garbage & Recycling Individual & Business of Year Information for Vendors Local Links Pet Licensing Permits Building Permits Planning Permits Street Permits Population History Public Records Real Estate Inquiry Maps/GIS Property Information Tax & Parcel Information Tax Rate Information (TID IN) The Bridge Calendar Valley Transit Village History Weights & Measures Online Services Municipal Court Payments Parking Ticket Payments Rec Program Registration Utility Online Services Village General Payments Village Notifications Contact How Are We Doing 2022 Annual Report 2021 Annual Report 2020 Annual Report Administration Organizational Chart Community Policing Divisions Patrol Investigations Support Services Directory History Municipal Code Book Parking Ticket Payments Resources & Online Forms Copyright © 2010 - 2024 Fox Crossing, All Rights Reserved. Professional Web Site Design by Sandstone Digital. Disclaimer Home Government Board of Review Bond Schedule Commissions & Boards Application for Appointment Village Board Elections and Voting Incorporation Information Fee Schedule Licenses & Permit Applications Minutes and Agendas Municipal Code Departments Administration Assessor Clerk Community Development Finance/Treasurer Fire Municipal Court Parks and Recreation Police Street Utilities Calendar Resources Elderly Transportation Program Employment Garbage & Recycling Individual & Business of Year Information for Vendors Local Links Pet Licensing Permits Building Permits Planning Permits Street Permits Population History Public Records Real Estate Inquiry Maps/GIS Property Information Tax & Parcel Information Tax Rate Information (TID IN) The Bridge Calendar Valley Transit Village History Weights & Measures Online Services Municipal Court Payments Parking Ticket Payments Rec Program Registration Utility Online Services Village General Payments Village Notifications Contact How Are We Doing 2022 Annual Report 2021 Annual Report 2020 Annual Report Administration Organizational Chart Community Policing Divisions Patrol Investigations Support Services Directory History Municipal Code Book Parking Ticket Payments Resources & Online Forms " -678,https://www.troyny.gov/photos-troy-community-commemorates-retirement-of-troy-police-chief-john-tedesco/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -679,https://delcopa.gov/vetaffairs/forms/instructionsforfilingaclaim.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -680,https://www.littlerock.gov/media/5607/05-22-19-police.pdf,Media Bulletins,Agency-Published Resources,"","",200,"","","","","","","","" -681,https://dccouncil.gov/judiciary-public-safety/copy-of-fb0-fy19-attachment-i-contracts-and-grants/,Policies & Contracts,Info About Agencies,Copy of FB0 - FY19 - Attachment I - Contracts and Grants • Council of the District of Columbia,"",200,Home • Council of the District of Columbia,"[""Copy of FB0 – FY19 – Attachment I – Contracts and Grants""]",[],[],[],[],[],"Federal Tax Counter: $1,298,117,639 What is this? Get Updates RSS Press Center facebook twitter youtube Council of the District of Columbia Hearings Calendar Legislation & Laws The Council Federal Tax Counter: $1,298,117,639 What is this? Get Updates RSS Press Center facebook twitter youtube Federal Tax Counter: $1,298,117,639 What is this? Get Updates RSS Press Center facebook twitter youtube Council of the District of Columbia Hearings Calendar Legislation & Laws The Council Council of the District of Columbia Copy of FB0 – FY19 – Attachment I – Contracts and Grants October 10, 2018 Loading... Copy of FB0 – FY19 – Attachment I – Contracts and Grants October 10, 2018 Loading... Loading... Loading... DC Council seal About the Council Open Government Register to Vote Council Updates Jobs Council Directory Privacy Policy Commemorative D.C. Flag Program Ethics Visit the Wilson Building facebook twitter youtube Council of the District of Columbia 1350 Pennsylvania Avenue, NW, Washington, D.C. 20004 © Copyright 2016, The Council of the District of Columbia. All rights reserved Council of the District of Columbia 1350 Pennsylvania Avenue, NW, Washington, D.C. 20004 © Copyright 2016, The Council of the District of Columbia. All rights reserved Search facebook twitter youtube Original text Rate this translation Your feedback will be used to help improve Google Translate Original text Rate this translation Your feedback will be used to help improve Google Translate Original text Original text Rate this translation Your feedback will be used to help improve Google Translate Rate this translation Your feedback will be used to help improve Google Translate Rate this translation Your feedback will be used to help improve Google Translate " -682,https://northbrunswicknj.gov/wp-content/uploads/2020/09/national-police-week-2.jpg,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -683,https://www.coppelltx.gov/faq.aspx?qid=155,Not Criminal Justice Related,Not Criminal Justice Related,FAQs • What Minimum Control Measures (MCMs) will the City of,"",200,"Coppell, TX | Official Website",[],"[""Annual Report"", ""▼ Stormwater Management"", ""More Information"", ""Annual Report""]","[""Categories"", ""Live Edit"", ""Loading""]",[],[],[],Skip to Main Content -684,https://spdblotter.seattle.gov/2021/06/08/police-seize-five-firearms-following-crisis-call-arrest-man-for-earlier-drive-by-shooting/,Media Bulletins,Agency-Published Resources,"Police Seize Five Firearms Following Crisis Call, Arrest Man For Earlier Drive-By Shooting - SPD Blotter","",200,403 Forbidden,"[""Police Seize Five Firearms Following Crisis Call, Arrest Man For Earlier Drive-By Shooting""]","[""Find Posts By Topic"", ""Featured Posts"", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],"Seattle.gov Choose a language: English English Google Translate may not accurately translate all content. Read disclaimer . For general City questions, please call 206-684-2489 . Tell us your requested language in English, and we can connect you with an interpreter. Continue Cancel Español Es posible que Google Translate no traduzca con precisión todo el contenido. Lea el descargo de responsabilidad . Si necesita ayuda en otro idioma, díganos en inglés nombre del idioma que necesita y lo conectaremos con un intérprete: 206-684-2489 Seguir Cancelar 中國語文 Google翻譯可能無法準確翻譯所有內容。 閱讀免責聲明 。 如果您需要翻譯,請用英語説出您所需要的語言,我們將爲你連接口譯員: 206-684-2489 繼續 取消 简体中文 Google翻译可能无法准确翻译所有内容。 阅读免责声明 。 如果您需要翻译,请用英语说出您所需要的语言,我们将为你连接口译员: 206-684-2489 继续 取消 Tiếng Việt Google Dịch có thể không dịch chính xác tất cả nội dung. Đọc tuyên bố từ chối trách nhiệm . Nếu quý vị cần hỗ trợ về ngôn ngữ, xin vui lòng cho chúng tôi biết ngôn ngữ quý vị cần hỗ trợ bằng tiếng Anh (ví dụ “Vietnamese”), chúng tôi sẽ kết nối quý vị với một thông dịch viên: 206-684-2489 Tiếp tục Huỷ bỏ русский язык Google Translate не может точно перевести весь контент. Прочтите отказ от ответственности . Если вам нужна языковая помощь, сообщите нам на английском, какой язык вам нужен, и мы свяжем вас с переводчиком: 206-684-2489 Продолжать Отмена Af-Soomaali Google Translate ayaan si sax ah u turjumi karin dhammaan waxyaabaha ku jira. Akhri afeef . Haddii aad u baahan tahay caawimaad luqadeed, fadlan noogu sheeg Ingiriisiga luqadda aad u baahan tahay, ka dib waxaan kugu xiri doonnaa turjubaan: 206-684-2489 Sii wad Jooji አማርኛ የጉግል ትርጉም ሁሉንም ይዘቶች በትክክል መተርጎም ላይችል ይችላል። ማስተባበያ አንብብ ፡፡ ኣስተርጓሚ ካስፈለግዎ የሚፈልጉትን ቋንቋ በእንግልዝኛ ይንገሩን፣ ከኣስተርጓሚ እናገናኝዎታለን። 206-684-2489 ቀጥል ሰርዝ 한국어 구글은 정확하게 모든 내용을 번역하지 않을 수 있습니다 번역. 읽기 면책 조항 . 언어지원이 필요한 경우, 필요한 언어를 영어로 말씀해 주시면 통역사와 연결해 드리겠습니다: 206-684-2489 계속하다 취소 Tagalog Maaaring hindi tumpak na isalin ng Google Translate ang lahat ng nilalaman. Basahin ang disclaimer . Para sa mga pangkalahatang katanungan sa Lungsod, mangyaring tawagan ang 206-684-2489 . Sabihin sa amin ang hiniling mong wika sa Ingles, at maikokonekta ka namin sa isang interpreter. Magpatuloy Kanselahin ภาษาไทย Google Translate อาจแปลเนื้อหาทั้งหมดไม่ถูกต้อง อ่านข้อจำกัดความรับผิดชอบ สำหรับคำถามทั่วไปเกี่ยวกับเมืองโปรดโทร 206-684-2489 บอกภาษาที่คุณต้องการเป็นภาษาอังกฤษและเราสามารถติดต่อคุณกับล่ามได้ ดำเนินการต่อ ยกเลิก 日本語 Google翻訳は、すべてのコンテンツを正確に翻訳するとは限りません. 免責事項をお読みください 。 市の一般的な質問については 206-684-2489 に電話してください。ご希望の言語を英語で教えていただければ、通訳をご案内いたします。 継続する キャンセル ភាសាខ្មែរ កម្មវិធីបកប្រែហ្គូហ្គោលមិនអាចបកប្រែមាតិកាទាំងអស់បានត្រឹមត្រូវទេ។ អានការបដិសេធ។ សម្រាប់សំណួរទូទៅរបស់ទីក្រុងសូមទូរស័ព្ទមក 206-684-2489 ។ ប្រាប់យើងពីភាសាដែលអ្នកស្នើសុំជាភាសាអង់គ្លេសហើយយើងអាចភ្ជាប់អ្នកជាមួយអ្នកបកប្រែភាសា។ បន្ត បោះបង់ ພາສາລາວ Google Translate ອາດຈະບໍ່ແປເນື້ອຫາທັງ ໝົດ ຢ່າງຖືກຕ້ອງ. ອ່ານປະຕິເສດ . ສຳ ລັບ ຄຳ ຖາມທົ່ວໄປຂອງເມືອງ, ກະລຸນາໂທຫາ 206-684-2489 . ບອກພວກເຮົາເປັນພາສາອັງກິດທີ່ທ່ານຮ້ອງຂໍ, ແລະພວກເຮົາສາມາດເຊື່ອມຕໍ່ທ່ານກັບນາຍແປພາສາ. ສືບຕໍ່ ຍົກເລີກ Українська Перекладач Google може не точно перекласти весь вміст. Прочитайте застереження . За загальними запитаннями про місто, будь ласка, телефонуйте 206-684-2489 . Розкажіть нам про вашу мову англійською мовою, і ми можемо зв’язати вас із перекладачем. Продовжуйте Скасувати Français Google Traduction peut ne pas traduire correctement tout le contenu. Lisez la clause de non-responsabilité . Pour des questions générales sur la ville, veuillez appeler le 206-684-2489 . Dites-nous votre langue souhaitée en anglais, et nous pourrons vous mettre en contact avec un interprète. Continuer Annuler " -685,http://www.longbeach.gov/police/press-releases/fatality-1-/,Media Bulletins,Agency-Published Resources,FATALITY(1),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 9/19/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: FATALITY Contact: Media Relations (562) 570-5273 Today, the Long Beach Police Department was notified a person involved in a collision with a Los Angeles Metro Blue Line train last Friday has died. Robert Lee Mills, an 89-year-old resident of Signal Hill, had sufferd major injuries from the collision and was pronounced deceased early this morning. On Friday, September 12, 2014, at approximately 9:28 p.m., Long Beach Police responded to the area of Long Beach Boulevard and Burnett Street for reports of an injury traffic collision involving a Metro train and a vehicle. When officers arrived, they discovered a 2005 Cadillac CTS had been broadsided on the drivers side by the train. Mills, who was the sole person in the vehicle, was found in the drivers seat. Long Beach Fire Department paramedics responded to the scene and extracted Mills from his vehicle. Mills was transported to a local hospital and was admitted for his injuries. Based on witness statements and evidence at the scene, the preliminary investigation indicates Mills was stopped in the left turn lane of southbound Long Beach Boulevard for a red left turn arrow. Southbound vehicular and train traffic had the green light to go south on Long Beach Boulevard across Burnett Street. As the train alerted its horn and proceeded to cross Burnett Street, Mills drove into the intersection to make his left turn. The train broadsided Mills' vehicle and pushed the vehicle approximately 50 feet through the intersection. There were no injuries reported by the train operator or any train passengers. The train operator was questioned and released. It does not appear any charges will be filed. Anyone with additional information regarding this incident is asked to call Long Beach Police Collision Investigation Detective Steve Fox at (562) 570-7355. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting www.lacrimestoppers.org. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -686,https://www.sandiego.gov/department-document/san-diego-kicks-community-conversations-about-next-police-chief,Media Bulletins,Agency-Published Resources,San Diego Kicks Off Community Conversations About Next Police Chief | City of San Diego Official Website,"",200,City of San Diego Official Website,"[""City of San Diego Official Website""]","[""Main navigation"", ""Leisure"", ""Resident Resources"", ""Doing Business"", ""Library"", ""Public Safety"", ""City Hall"", ""San Diego Kicks Off Community Conversations About Next Police Chief"", ""Footer"", ""Accessibility Tools""]",[],"[""Parks"", ""Outdoors"", ""Neighborhoods"", ""Recreational Activities"", ""Street Maintenance"", ""Plan"", ""Fix"", ""Build"", ""Programs & Events"", ""Services"", ""Kids & Teens"", ""eCollection"", ""Police"", ""Fire-Rescue"", ""Lifeguards"", ""City Officials"", ""City Government""]",[],[],"" -687,http://www.longbeach.gov/police/press-releases/murder-20-/,Media Bulletins,Agency-Published Resources,MURDER(20),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 4/5/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: MURDER Contact: Media Relation (562) 570-7523 On Saturday, April 04, 2015, at approximately 10:53 P.M., Long Beach Police responded to the 2700 block of East South Street for reports of a person who had been shot. When officers arrived, they discovered a male adult down on the street with a gunshot wound. Long Beach Fire Department paramedics responded and pronounced the victim deceased at the scene. The victim has been identified as 47-year-old Lawrence Lee Casados of Los Alamitos . The preliminary investigation indicates the victim was socializing in the alleyway when the suspect approached the victim on foot and fired upon him. No suspect information is available at this time. The investigation remains ongoing. Anyone with information regarding this incident is urged to contact Long Beach Police Homicide Detectives Greg Krabbe and Michael Hubbard at (562) 570-7244. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting www.lacrimestoppers.org. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -689,https://norfolkne.gov/government/departments/police-division/press-releases/may-21st-press-release.html,Media Bulletins,Agency-Published Resources,"May 21st Press Release - City of Norfolk, NE","",200,"Welcome to Norfolk, NE - City of Norfolk, NE","[""City of Norfolk, NE"", ""Police Division"", ""May 21st Press Release"", ""City of Norfolk, NE""]",[],[],[],"[""Still looking for something?""]","[""Contact Us"", ""Pay or Apply..."", ""Government..."", ""Services..."", ""Business..."", ""Amenities...""]","" -690,https://alpha.austin.gov/police-oversight/formal-complaint-when-department-issued-bwc-system-use-is-required/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -691,https://www.southamptontownnypolice.gov/1469/kenyatta-nash,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -692,https://www.elburn.il.us/police-department/,Personnel Records,Info About Officers,"Police Department | Village of Elburn, Illinois","",200,"Home | Village of Elburn, Illinois","[""Police Department"", ""AUTO STICKERS"", ""CHILD SAFETY SEAT CERTIFIED INSTALLATION"", ""CRIME PREVENTION"", ""FORMS AND DOCUMENTS"", ""LAWS/ORDINANCES"", ""LINKS OF INTEREST"", ""METRA INFORMATION"", ""METRA FAQ"", ""ONLINE REPORTING"", ""POLICE DEPARTMENT FAQ"", ""REGISTERED SEX OFFENDERS"", ""SCHOOL ZONE SAFETY"", ""STATE’S ATTORNEY’S OFFICE"", ""VACATION WATCH"", ""PROPOSED POLICE STATION INFO""]",[],"["""", """", """", """", """", """"]","[""Chief’s Message"", ""NEWS & PRESS RELEASES"", ""IMPORTANT LINKS"", ""Department Overview""]","[""Solicitor and Itinerant Merchant Permits Issued"", ""Proposed Police Station Updates"", ""ComEd Prepares for Ice Storms in Northern Illinois"", ""Links"", ""Main Contact Info"", ""Follow Us""]",[],"" -693,https://ci.san-bernardino.ca.us/city_hall/police_department/contacting_sbpd,Contact Info & Agency Meta,Info About Agencies,Contacting SBPD - City of San Bernardino,"",200,Just a moment...,"[""City of San Bernardino California""]","[""Contacting SBPD""]",[],[],[],[],Skip to Content -694,http://www.tampa.gov/police/memorial/thank-you,Media Bulletins,Agency-Published Resources,A Message of Thanks - August 2009 | City of Tampa,Citizens of Tampa Tampa Fire Rescue Mayor Iorio Hillsborough County Sheriffs Office Tampa Business Community THANK YOU!,200,City of Tampa,"[""A Message of Thanks - August 2009""]","[""Police Department"", ""Key Services"", ""Report A Problem"", ""Contact"", ""Connect With Us""]",[],[],[],[],"" -695,http://www.longbeach.gov/police/press-releases/update---arrest-made-in-murder-5900-block-of-l-b--blvd-/,Media Bulletins,Agency-Published Resources,MURDER - UPDATE,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 5/25/2017 FOR IMMEDIATE RELEASE Press Release # 2017 Subject: MURDER - UPDATE Contact: Media Relations Detail (562) 570-5273 UPDATE: On May 24, 2017, detectives made an arrest in a murder investigation from April 21, 2017. The suspect has been identified as Terry Moore a 29 year-old resident of Compton. The arrest was made in the city of Lancaster. Moore was booked into the Long Beach Jail for murder and an outstanding warrant for violating his post release conditions for domestic violence. He is being held without bail and will be arraigned in Long Beach Superior Court on Friday May 26, 2017, in Department one. The victim was later identified as Lanette Washington a 32 year-old, with a prior residence in Victorville. Original News Release: On Friday, April 21, 2017, at approx. 9:50 a.m., officers responded to a motel in the 5900 block of Long Beach Boulevard regarding a shooting, which resulted in the death of a female adult. When officers arrived, they located the victim inside a room, who had been struck by gunfire Long Beach Fire Department paramedics responded and transported to her to a local hospital in serious condition. The victim was pronounced deceased shortly thereafter. Her identity is being withheld pending notification of next of kin. Information officers gathered indicated the suspect fled into the nearby neighborhood, and a containment area that included: Gordon Street to Allington Street, and Long Beach Boulevard to the 710 Freeway was established. SWAT was activated and K-9 also responded to assist in the search. Residents in the affected area were evacuated to a nearby school that was not in session due to Spring Break. The suspect was described as a male African-American in his 20’s, wearing a red shirt and jeans. Detectives believe the shooting may have happened as a result of a dispute, and the investigation continues. Anyone who has any information regarding the incident should contact Long Beach Police Homicide Detectives Peter Lackovic and Sean Irving at (562) 570-5273. Anonymous tips may be submitted through “LA Crime Stoppers” by calling 1-800-222-TIPS (8477), downloading the “P3 Tips” app to your smart phone (available at the Apple App store and Google Play), or visiting www.lacrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -696,https://southamptontownnypolice.gov/1139/office-of-sustainability,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -697,https://police.bixbyok.gov/faq.aspx?qid=77,Resources,Agency-Published Resources,FAQs • Can I register with an international telephone number,"",200,"Bixby Police Department, OK | Official Website",[],"[""▼ Nixle Alert System""]","[""Categories"", ""Live Edit"", ""Helpful Links"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -698,https://delcopa.gov/prison/pdfs/wardensreportapril2022.pdf,Poor Data Source,Poor Data Source,"404 - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert " -699,https://www.antioch.il.gov/wpfb-file/08-11-10-police-and-fire-commission-minutes-pdf/,Poor Data Source,Poor Data Source,"08-11-10 Police And Fire Commission Minutes - Antioch, IL",8006 08 11 10 police and fire commission minutes pdf commissions 2010 1284749388 415e95087ff8cdaefd2217d9ff094969 213x300 _clxydlrnkv7j thumb jpg 09 17 13 49 48 0 pdf application num_pages pdf_pages timings,200,"Home - Antioch, IL","[""08-11-10 Police And Fire Commission Minutes""]",[],[],[],[],[],Open toolbar Accessibility Tools Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset -700,https://delcopa.gov/planning/pdf/mapping/colwyn.pdf,Poor Data Source,Poor Data Source,"404 - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert " -701,http://www.ryepolice.us/logs/police-logs-for-1-9-19-1-15-19,Daily Activity Logs,Info About Officers,Rye Police Department Police Logs for 1/9/19-1/15/19 - Rye Police Department,"",200,Rye Police Department Welcome to the Rye Police Department - Rye Police Department,"[""Police Logs for 1/9/19-1/15/19""]","[""Police Logs for 1/9/19-1/15/19""]","[""Navigation"", ""Follow Us"", ""Facebook"", ""Email Updates"", ""Storm Preparedness Guide""]",[],[],[], -702,https://champaignil.gov/police/news-data/traffic/,Contact Info & Agency Meta,Info About Agencies,Traffic - City of Champaign,"",200,403 Forbidden,[],"[""Police Department"", ""Quick Links"", ""Police Department News"", ""Contact Us""]",[],[],[],[],"skip to content City of Champaign Main Menu Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs Police Department Search About The Department Department Overview Mission and Vision Strategic Plan Divisions Meet the Command Staff Recruitment Policies and Procedures IACP and NAACP Shared Principles Agreement Employee Recognition Honoring Our Fallen File an Online Report File a Report Missing Persons Open Homicide Investigations Crime Stoppers Employee Conduct Neighborhood Traffic Concern Department Services Alarm Permits & Renewals Background Check BEST Security Training Car Seat Safety Inspections Emergency Notification for Businesses Fingerprint Services Freedom of Information Act (FOIA) Request Parking Permit Project ChildSafe Request Copy of a Police Report Security Camera Registration Services Overview Special Event Application 21st Century Policing Community Engagement Community Involvement at Champaign Police Community Conversations Overview Champaign County Community Coalition Coffee with a Cop Community Outreach Request Neighborhood Watch Police Department Tours Police Liaisons Risk Watch Program School Resource Officer Program Youth Police Explorer Post 258 Youth Police Academy Community Police Academy News & Data Overview News Releases Police Media Reports Police Body Cameras Automated License Plate Readers Gunshot Detection Annual Employee Conduct Report Use of Force Review Citizen Review of Police Complaints Working Group Annual Report Resources Overview Crime Prevention and Safety Community Resources Curfew for Minors Door-to-Door Soliciting Federal Property Disclosure Gun Violence Prevention and Response Premise Alert Sex Offender Registry VOICES Act Youth Assessment Center Contact Us Meet the Staff News & Data News Releases Police Media Reports Police Body Cameras Automated License Plate Readers Gunshot Detection Annual Employee Conduct Report Use of Force Review Citizen Review Subcommittee Citizen Review of Police Complaints Working Group Annual Report Quick Links Join Our Team Police Newsroom Gun Violence Prevention & Response File a Police Report Crime Stoppers Alarm Permits Police Department News Shooting Investigation – 1400 Block of N. Hickory Street Shooting Investigation – 2500 Block of W. Springfield Avenue Shooting Investigation – 700 Block of W. Vine Street Contact Us Champaign Police Department 82 E. University Ave. Champaign, IL 61820 Emergency: 9-1-1 Non-emergency: 217-333-8911 Front Desk: 217-351-4545 217-403-6904 (fax) police@champaignil.gov City of Champaign City of Champaign 102 N. Neil St. Champaign, IL 61820 217-403-8700 Site Disclaimer I Privacy Policy Powered by Translate City of Champaign Main Menu Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs City of Champaign " -703,https://www.minneapolismn.gov/resident-services/public-safety/police-public-safety/police-reports-and-data-requests/frequently-requested/critical-incidents/feb-2-2022-officer-involved-shooting/,Media Bulletins,Agency-Published Resources,"February 2, 2022 Officer-Involved Shooting - City of Minneapolis","Public data gathered by the Minneapolis Police Department related to the February 2, 2022 officer-involved shooting.",200,City of Minneapolis,"[""February 2, 2022 officer-involved shooting"", ""Need help? We're here for you.""]","[""A snow emergency is not currently in effect. Normal parking rules apply."", ""Body-worn camera video - Incident 22-022798"", ""Citations"", ""Documents"", ""Officer involved in incident"", ""Note about Officer complaints and discipline"", ""Body Camera, Street Camera, and Squad Camera Footage""]","[""Still image from body-worn camera video - Incident 22-022798"", ""Hennepin County Medical Examiner Press Release Report"", ""22-022798 General Offense Public Information Report"", ""22-022798 Incident Detail Report"", ""22-0004855 Fire Incident Detail Report"", ""22-0004855 Fire Incident Report"", ""MPD News Release"", ""MPD News Release Photo 1"", ""MPD News Release Photo 2"", ""Public Personnel File for Mark Hanneman"", ""Employee Complaint Summary for Mark Hanneman""]","[""Request accessible format"", ""Request accessible format"", ""Request accessible format"", ""Request accessible format"", ""Request accessible format"", ""Request accessible format"", ""Request accessible format"", ""Request accessible format"", ""Request accessible format"", ""Request accessible format"", ""Request accessible format""]",[],[],"" -704,http://www.tampa.gov/news/tampa-police-officer-killed-line-duty-66406,Media Bulletins,Agency-Published Resources,Tampa Police Officer Killed in the Line of Duty | City of Tampa,"Master Patrol Officer Jesse Madsen was killed early Tuesday morning when his police vehicle was struck by a wrong way driver on Interstate 275. Just before 1:00 AM on Tuesday morning, Tampa Police began receiving calls about a white vehicle driving southbound in the northbound lanes of I275 at a high rate of speed and swerving through the lanes. Within a minute of the original call, the vehicle crashed into Officer Madsen’s police vehicle between the Hillsborough and Sligh Avenue exits. The impact killed both Jesse and the driver of the white sedan.",200,City of Tampa,"[""Tampa Police Officer Killed in the Line of Duty""]","[""Information Resources"", ""Latest News"", ""Key Services"", ""Report A Problem"", ""Contact"", ""Connect With Us""]",[],[],[],[],"" -705,http://www.cityofpataskalaohio.gov/government/clerk-of-council/public-notices/advertisement-of-legislation-passed-september-5-2017-copy/,Not Criminal Justice Related,Not Criminal Justice Related,"Advertisement of Legislation passed September 5, 2017 - Copy - City Of Pataskala",Official Website,200,Home - City Of Pataskala,"[""City Of Pataskala""]","[""Official Website""]",[],[],[],[],Document Library Calendar Public Services Pay Court Ticket Online City Of Pataskala Official Website Blog Community Police Obtain Fingerprints Solicitor’s Permit Citizens Police Academy Important Links/Resources Prescription Drug Drop Off Police Officer Job Application History of the Pataskala Police Department Curfew Vacation House Check Form Fire School Districts Residents Taxes in Pataskala RITA Tax Local Animal Shelter/Lost Pets Dog License BMV Info Licking County Health Department Register to Vote Report a Gas Emergency New to Pataskala? Good Neighbor Guidelines Outdoor Activities Attractions City Departments Mayor Administration Garage Sale Permit Adopt-A-Street Program Rent a Park Shelter Current Bids and RFQ’s Outdoor Activity/Event Permit Parade-Assembly Form Parks and Recreation Economic Development Human Resources Utilities Utility Rates Water and Sewer Billing/ E-Billing Interesting Facts and Information Storm Water Management Program Report a Water Leak Finance Pataskala’s Income Tax Budget Financial Reports Popular Annual Financial Report (PAFR) Annual Comprehensive Financial Reports Financial Condition Reports 2023 Financial Condition Reports 2022 Financial Condition Reports 2021 Financial Condition Reports 2020 Financial Condition Reports 2019 Financial Condition Reports 2018 Financial Condition Reports 2017 Financial Condition Reports 2016 Financial Condition Reports 2015 Financial Condition Reports 2014 Financial Condition Reports 2013 Financial Condition Reports 2012 Financial Condition Reports Audited Financial Reports Pataskala Open Checkbook Mayor’s Court Important Traffic Violation Info Pay Fines or Search Case Files How to Pay Fines Traffic and General Offense Codes Plea Descriptions Court Appearance Times Your Rights in the Pataskala’s Mayor’s Court Downloadable Forms Sealing a Record Informational Court Links Mayor’s Court Prosecutor Pataskala’s Mayors Court Magistrate Mayor’s Court Rules Criminal/Traffic Diversion Bond Schedule Fine Schedule Legal Public Service/Streets Pothole Repair Report a Pothole Right of Way Snow Removal Traffic Signals & Street Lights Drainage/Ditches Issues Planning & Zoning Permit Questions Planning & Zoning Fee Schedule Discharge Map Zoning Maps Permits Comprehensive Plan Properties With Posted Code Violations Government City Council Ward Map Tom H. Lee – Ward 1 Mary Hite – Ward 2 Deborah Kohman – Ward 3 Brandon Galik – Ward 4 Dustin Epperson – At-Large Jude Hampshire – At-Large Andy Walther – At Large Clerk of Council Council Packet Public Notices Agendas Meeting Minutes Audio/Video Recordings Legislation Approved Ordinances & Resolutions 2024 Resolutions 2024 Ordinances 2023 Resolutions 2023 Ordinances 2022 Resolutions 2022 Ordinances 2021 Resolutions 2021 Ordinances 2020 Resolutions 2020 Ordinances 2019 Resolutions 2019 Ordinances 2018 Resolutions 2018 Ordinances 2017 Resolutions 2017 Ordinances 2016 Resolutions 2016 Ordinances 2015 Resolutions 2015 Ordinances Codified Ordinances Charter Public Records Request Information Boards and Commissions Personnel Board of Review Planning and Zoning Commission Board of Zoning Appeals Parks and Recreation Advisory Board Planning & Zoning Commission Board of Zoning Appeals Document Library Calendar Public Services Pay Court Ticket Online -706,http://www.ryepolice.us/wp-content/uploads/scannerpd@town.rye_.nh_.us_20180430_142152_001.jpg,Media Bulletins,Agency-Published Resources,"","",200,"","","","","","","","" -707,https://delcopa.gov/ich/resources/covid19/pdf/spcapressrelease.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"404 - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert " -708,https://www.antioch.il.gov/wpfb-file/01-24-12-police-and-fire-agenda-pdf-5/,Poor Data Source,Poor Data Source,"01-24-12 Police And Fire Agenda - Antioch, IL",13144 01 24 12 police and fire agenda pdf commissions commission agendas 2012 1625758258 b0e21da6b80d9f67c4c403d35dad9303 7e7aa0fe814a0af3daa3feb9bbf49ac8d0d6f1c32554399c92c72dff4c5a8f53 213x300 _moswe3wb2frl thumb jpg 2017 05 17 08 41 32 0 66 249 146 2021 06 28 15 pdf application num_pages pagefailed_1 pagefailed_2 pagefailed_3 pagefailed_4 pagefailed_5 pagefailed_6 pagefailed_7 pagefailed_8 pagefailed_9 pagefailed_10 pagefailed_11 pagefailed_12 pagefailed_13 pagefailed_14 pagefailed_15 pagefailed_16 pagefailed_17 pagefailed_18,200,"Home - Antioch, IL","[""01-24-12 Police And Fire Agenda""]",[],[],[],[],[],Open toolbar Accessibility Tools Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset -709,https://bouldercolorado.gov/events/police-chief-town-hall-person-virtual-1,Contact Info & Agency Meta,Info About Agencies,Police Chief Town Hall (in person & virtual) | City of Boulder,"",200,Home | City of Boulder,"[""Police Chief Town Hall (in person & virtual)"", ""Boulder Police Department Virtual Town Halls""]","[""Breadcrumb"", ""Details"", ""Meeting Details"", ""More Resources""]",[],[],[],[],"Calendar Jobs Contact Us Search English 繁體中文 Français Deutsch 한국어 Русский Español नेपाली en Locations Services Projects Government News Toggle Menu City of Boulder Locations Services Projects Government News Calendar Jobs Contact Us Search Breadcrumb Home Events Police Chief Town Hall (in person & virtual) Canceled Details Date Wednesday, September 14, 2022 Time 5:00 PM - 6:00 PM Locations 1805 33rd Street Boulder , CO 80301 United States Boulder Police Department Virtual Town Halls These briefings will take place on the second Thursday rotating between a start time of 4 p.m. and 5 p.m. Add to Calendar Police Chief Town Hall (in person & virtual) America/Denver
Boulder, CO
-United States
Boulder, CO
-United States
Boulder, CO
-United States
Boulder, CO
-United States
GENERAL GUIDELINES FOR RETAIL STORES - - Implementing these safety recommendations will make your business ""crime unfriendly."" Remember, most crimes are crimes of opportunity...don't allow your business to be an easy target! - - Lighting is an important factor to consider when crime-proofing your business
",200,City of Long Beach,"[""Police Department""]","[""GENERAL GUIDELINES FOR RETAIL STORES""]","[""Mayor"", ""City Council"", ""Rex Richardson"", ""Mary Zendejas"", ""Cindy Allen"", ""Kristina Duggan"", ""Daryl Supernaw"", ""Megan Kerr"", ""Suely Saro"", ""Roberto Uranga"", ""Al Austin"", ""Dr. Joni Ricks-Oddie"", ""Dawn McIntosh"", ""Laura L. Doud"", ""Doug Haubert"", ""Tom Modica"", ""Monique DeLaGarza"", ""City-Wide Elected Officials"", ""Appointed Officials"", ""Online Payments"", ""Online Services"", ""In-Person Services"", ""Opening a Business"", ""Doing Business With The City"", ""Resources"", ""Most Popular"", ""Online Resources"", ""Attractions"", ""Business Associations"", ""Travel Resources"", ""Departments"", ""Job Opportunities"", ""Information"", ""LBPD"", ""Employment"", ""Bureaus"", ""News & Events"", ""Crime Info"", ""How Do I"", ""How Do I"", ""Contact Us"", ""How To Prevent Crime"", ""Do."", ""Discover."", ""Connect."", ""Ask.""]","["""", ""1st District"", ""2nd District"", ""3rd District"", ""4th District"", ""5th District"", ""6th District"", ""7th District"", ""8th District"", ""9th District"", ""City Attorney"", ""City Auditor"", ""City Prosecutor"", ""City Manager"", ""City Clerk""]","[""File a Report Online"", ""Submit a Tip"", ""Submit a Commendation"", ""File a Complaint"", ""Ride Along Program"", """", """", """", ""Crime Lab Survey"", """"]",[],"" -1343,https://alpha.austin.gov/es/police-oversight/2020-06-17-7/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -1344,http://www.lafayettepolice.us/faq.aspx?qid=68,Not Criminal Justice Related,Not Criminal Justice Related,"FAQs • How do I dispose of large items like carpet, sinks, s","",200,"Police Department | Lafayette, IN - Official Website",[],"[""▼ Sanitation Department""]","[""Categories"", ""Live Edit"", ""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -1345,https://www.mass.gov/info-details/audit-of-mount-wachusett-community-college-objectives-scope-and-methodology,Not Criminal Justice Related,Not Criminal Justice Related,"Audit of Mount Wachusett Community College Objectives, Scope, and Methodology | Mass.gov",An overview of the purpose and process of auditing Mount Wachusett Community College.,200,Mass.gov,"[""Audit of Mount Wachusett Community College Objectives, Scope, and Methodology""]","[""Table of Contents for the audit, Audit of Mount Wachusett Community College"", ""Table of Contents"", ""Overview"", ""Data Reliability"", ""Practicum Course Registration"", ""Auxiliary Services Operations"", ""Strategic Plan"", ""Help Us Improve Mass.gov with your feedback""]",[],[],[],[],"" -1346,http://lafayettepolice.us/faq.aspx?qid=80,Resources,Agency-Published Resources,FAQs • How do I obtain a handgun permit?,"",200,"Police Department | Lafayette, IN - Official Website",[],"[""▼ Police""]","[""Categories"", ""Live Edit"", ""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -1347,https://columbiacitypolice.us/photos/group 2017.jpg,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -1348,https://police.greenvillesc.gov/faq.aspx?qid=140,Resources,Agency-Published Resources,FAQs • What have I been charged with?,"",200,"Police Department | Greenville, SC - Official Website",[],"[""▼ Municipal Court - General Legal Questions""]","[""Categories"", ""Live Edit"", ""Loading""]",[],[],[],Skip to Main Content -1349,https://www.coronadelmar.us/newport-beach-mourns-locals-killed-in-helicopter-crash/,Not Criminal Justice Related,Not Criminal Justice Related,Newport Beach Mourns Locals Killed in Helicopter Crash | Corona del Mar California,"",200,Corona del Mar California,"[""Newport Beach Mourns Locals Killed in Helicopter Crash""]","[""Menu"", ""Be First to Comment"", ""Subscribe"", """", """"]","[""Share this:"", ""Like this:"", ""Related"", ""Leave a Reply Cancel reply"", """"]",[],[],[],"" -1350,https://www.mass.gov/doc/municipal-police-training-committee-meeting-minutes-091521/download,Training & Hiring Info,Info About Officers,"","",200,"","","","","","","","" -1351,https://www.madera.gov/tr-accordion/police-programs/,Not Criminal Justice Related,Not Criminal Justice Related,City of Madera - Serving Residents in the Heart of California,The Heart of California,200,City of Madera - Serving Residents in the Heart of California,[],"[""X"", ""FEATURED VIDEO"", ""CITY CALENDAR"", """", """", """", """", ""LATEST NEWS"", ""City adopts FY 23/24 budget, anticipates surplus amid economic challenges"", ""Special meeting to be held to discuss the future of Measure T"", ""PSA: Upcoming changes to utility bill due dates"", ""Annual curbside cleanup program returns February 19-March 29"", ""Madera Metro announces new bus routes"", ""Flood preparedness and sandbag locations"", ""Christmas tree collection service available in early January"", ""City of Madera adopts SolarAPP+ to streamline solar permitting process"", ""Holiday schedule for City offices and services"", ""City to celebrate over $2.5 million in grants for community improvement"", ""Iconic Loy E. Cook Water Tower to undergo renovation"", ""Notice of funding availability for CDBG FY 2024-2025"", ""MPD Detective honored with ‘Freedom Fighter Award’ for work against human trafficking"", ""Parks announces “spooky” Movies in the Park event planned for October 13"", ""Police Chief Lawson announces retirement, Chiaramonte tapped as successor"", ""City adopts FY 23/24 budget, anticipates surplus amid economic challenges"", ""Special meeting to be held to discuss the future of Measure T"", ""PSA: Upcoming changes to utility bill due dates"", ""MADERA CITY COUNCIL MEETING""]","[""Veterans Day"", ""Thanksgiving Da..."", ""Christmas Day"", ""New Years Day"", ""Measure T - Spe..."", ""Good Friday"", ""Memorial Day"", ""Independence Da..."", ""Labor Day"", ""Columbus Day"", ""Veterans Day"", ""Thanksgiving Da..."", ""Christmas Day"", ""New Years Day"", ""Measure T - Spe..."", ""Good Friday"", ""Memorial Day"", ""Independence Da..."", ""Labor Day"", ""Columbus Day""]",[],[],[],"" -1352,https://mountpocono-pa.gov/question/how-do-i-reach-the-police-department-with-a-non-emergency/,Contact Info & Agency Meta,Info About Agencies,"How do I reach the police department with a non emergency? - Mount Pocono, PA","",200,"Welcome - Mount Pocono, PA","[""How do I reach the police department with a non emergency?""]","[""Action toolbar"", ""Primary menu links"", ""Welcome"", ""Engage"", ""Help""]",[],[],[],[],"Official government website Action toolbar Answers Payments Report Issue Search Action toolbar Answers Payments Report Issue Search Mount Pocono, PA Primary menu links Residents Businesses Visitors Meetings Government News Contact Primary menu links Residents Businesses Visitors Meetings Government News Contact Mount Pocono, PA Mount Pocono, PA Mount Pocono, PA How do I reach the police department with a non emergency? All non emergency calls can be directed to (570) 895-2400. How do I reach the police department with a non emergency? All non emergency calls can be directed to (570) 895-2400. All non emergency calls can be directed to (570) 895-2400. Helpful Share Facebook Twitter Email Size + Reset a − Translate Translate language select Select language Afrikaans Albanian Amharic Arabic Armenian Azerbaijani Basque Belarusian Bengali Bosnian Bulgarian Catalan Cebuano Chichewa Chinese (Simplified) Chinese (Traditional) Corsican Croatian Czech Danish Dutch English Esperanto Estonian Filipino Finnish French Frisian Galician Georgian German Greek Gujarati Haitian Creole Hausa Hawaiian Hebrew Hindi Hmong Hungarian Icelandic Igbo Indonesian Irish Italian Japanese Javanese Kannada Kazakh Khmer Korean Kurdish (Kurmanji) Kyrgyz Lao Latin Latvian Lithuanian Luxembourgish Macedonian Malagasy Malay Malayalam Maltese Maori Marathi Mongolian Myanmar (Burmese) Nepali Norwegian Pashto Persian Polish Portuguese Punjabi Romanian Russian Samoan Scottish Gaelic Serbian Sesotho Shona Sindhi Sinhala Slovak Slovenian Somali Spanish Sundanese Swahili Swedish Tajik Tamil Telugu Thai Turkish Ukrainian Urdu Uzbek Vietnamese Welsh Xhosa Yiddish Yoruba Zulu Select language Afrikaans Albanian Amharic Arabic Armenian Azerbaijani Basque Belarusian Bengali Bosnian Bulgarian Catalan Cebuano Chichewa Chinese (Simplified) Chinese (Traditional) Corsican Croatian Czech Danish Dutch English Esperanto Estonian Filipino Finnish French Frisian Galician Georgian German Greek Gujarati Haitian Creole Hausa Hawaiian Hebrew Hindi Hmong Hungarian Icelandic Igbo Indonesian Irish Italian Japanese Javanese Kannada Kazakh Khmer Korean Kurdish (Kurmanji) Kyrgyz Lao Latin Latvian Lithuanian Luxembourgish Macedonian Malagasy Malay Malayalam Maltese Maori Marathi Mongolian Myanmar (Burmese) Nepali Norwegian Pashto Persian Polish Portuguese Punjabi Romanian Russian Samoan Scottish Gaelic Serbian Sesotho Shona Sindhi Sinhala Slovak Slovenian Somali Spanish Sundanese Swahili Swedish Tajik Tamil Telugu Thai Turkish Ukrainian Urdu Uzbek Vietnamese Welsh Xhosa Yiddish Yoruba Zulu Welcome History Community News Events Engage Subscribe Feedback Help Services Contact Directory Accessibility Sitemap Welcome History Community News Events Engage Subscribe Feedback Help Services Contact Directory Accessibility Sitemap Welcome History Community News Events History Community News Events Engage Subscribe Feedback Subscribe Feedback Help Services Contact Directory Accessibility Sitemap Services Contact Directory Accessibility Sitemap Powered by Powered by This content is for decoration only skip decoration . Close window This content is for decoration only skip decoration . This content is for decoration only skip decoration . This content is for decoration only skip decoration . Search Site Search Close window Search Site Search Search Site Search " -1353,https://champaignil.gov/2021/04/03/champaign-police-investigating-overnight-shooting-2/,Media Bulletins,Agency-Published Resources,Champaign Police Investigating Overnight Shooting - City of Champaign,"",200,403 Forbidden,"[""Champaign Police Investigating Overnight Shooting""]","[""News Releases"", ""Department News""]",[],[],[],[],"" -1354,https://alpha.austin.gov/en/police-oversight/2020-11-01/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -1355,https://southamptontownnypolice.gov/256/town-law-200-procedure,Resources,Agency-Published Resources,"Town Law 200 Procedure | Southampton, NY - Official Website",Learn about the procedure of the town law 200.,200,"Police | Southampton, NY - Official Website","[""Town Law 200 Procedure""]",[],"[""Site Tools"", ""Contact Us"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -1356,https://www.somervillema.gov/news/femino-named-interim-acting-chief-police,Personnel Records,Info About Officers,FEMINO NAMED INTERIM ACTING CHIEF OF POLICE | City of Somerville,"SOMERVILLE - Mayor Joseph A. Curtatone announced today that Somerville Police Captain Charles Femino has agreed to serve as the Interim Acting Chief of Police beginning on Dec. 1, 2013, until a permanent replacement is found for departing Chief Thomas Pasquarello. ",200,Home | City of Somerville,"[""FEMINO NAMED INTERIM ACTING CHIEF OF POLICE""]","[""Captain Charles Femino current Chief of Detectives, with department since 1984""]","[""Feedback"", ""Download Mobile Apps"", ""Sign up for City eNews"", ""Connect With Us""]",[],[],[],"" -1357,https://police.greenvillesc.gov/faq.aspx,Resources,Agency-Published Resources,"FAQs • Greenville, SC • CivicEngage","",200,"Police Department | Greenville, SC - Official Website",[],"[""▼ Affordable Housing"", ""▼ Animal Control"", ""▼ Business Licenses - Fees"", ""▼ Business Licenses - General"", ""▼ Business Licenses - Penalties"", ""▼ Clemson MBA Fireworks on the Fourth"", ""▼ Composting"", ""▼ COVID-FAQs-Intranet"", ""▼ Cultural Corridor"", ""▼ Flashing Yellow Left-Turn Signals"", ""▼ Greenlink"", ""▼ Greenlink Art Contest"", ""▼ Greenville Development Code"", ""▼ Greenville Jazz Fest"", ""▼ Gvl2040 Comprehensive Plan"", ""▼ GVL2040 Comprehensive Plan - Report to the Community FAQs"", ""▼ Historic Resources Survey"", ""▼ Ice on Main"", ""▼ Miguel Rosales Interview"", ""▼ Moonlight Movies"", ""▼ Municipal Court - Appeals & Records for Reconsideration"", ""▼ Municipal Court - Community Service"", ""▼ Municipal Court - Court Appearances"", ""▼ Municipal Court - Criminal Domestic Violence Program"", ""▼ Municipal Court - Driver's License Issues"", ""▼ Municipal Court - Financial, Fines & Fees"", ""▼ Municipal Court - General"", ""▼ Municipal Court - General Legal Questions"", ""▼ Municipal Court - House Arrest"", ""▼ Municipal Court - Jail"", ""▼ Municipal Court - Judicial Communications"", ""▼ Municipal Court - Records & Warrants"", ""▼ Municipal Court - Restraining Orders, Orders of Protection, Harassment"", ""▼ Planning & Zoning"", ""▼ Police Department"", ""▼ Police Mediation"", ""▼ Project Safe Neighborhoods"", ""▼ Recreation - Pickleball"", ""▼ Recycling"", ""▼ Right of Way & Trees"", ""▼ Sanitary Sewer"", ""▼ Short-Term Rentals"", ""▼ Sound Check"", ""▼ Storm Water"", ""▼ Streets & Sidewalks"", ""▼ Swamp Rabbit Trail"", ""▼ Tuition Reimbursement"", ""▼ Unity Park Open""]","[""Categories"", ""Live Edit"", ""Loading""]",[],[],[],Skip to Main Content -1358,"https://norfolkne.gov/government/departments/police-division/press-releases/january-4,-2021-press-release.html",Media Bulletins,Agency-Published Resources,"January 4, 2021 Press Release - City of Norfolk, NE","",200,"Welcome to Norfolk, NE - City of Norfolk, NE","[""City of Norfolk, NE"", ""Police Division"", ""January 4, 2021 Press Release"", ""City of Norfolk, NE""]",[],[],[],"[""Still looking for something?""]","[""Contact Us"", ""Pay or Apply..."", ""Government..."", ""Services..."", ""Business..."", ""Amenities...""]","" -1359,https://www.osc.state.ny.us/state-agencies/payroll-bulletins/state-police/sp-42-permanent-rank-sergeant-payment-employees-represented-nys-police,Media Bulletins,Agency-Published Resources,State Police Bulletin No. SP-42 | Office of the New York State Comptroller,To notify the Division of State Police of the procedure for processing the 2001-2002 payment,200,Office of the New York State Comptroller | Thomas P. DiNapoli,"[""State Police Bulletin No. SP-42"", """"]","[""Main navigation""]","[""How would you rate our website?""]","[""Disclaimer"", ""Purpose"", ""Affected Employees"", ""Payment Date(s)"", ""Contract Provision and Eligibility Criteria"", ""Agency Processing Instructions"", ""Payroll Register and Employees Check/Advice"", ""Questions"", ""Newsletter Sign-Up Confirmation"", ""Thank you for subscribing to the Comptroller's Weekly Newsletter!""]",[],[],"" -1360,https://www.mass.gov/doc/municipal-police-training-committee-mptc-meeting-agenda-71719/download,Misc Police Activity,Police & Public Interactions,"","",200,"","","","","","","","" -1361,http://www.ryepolice.us/logs/police-logs-for-12517-13117,Daily Activity Logs,Info About Officers,Rye Police Department Police Logs for 1/25/17-1/31/17 - Rye Police Department,"",200,Rye Police Department Welcome to the Rye Police Department - Rye Police Department,"[""Police Logs for 1/25/17-1/31/17""]","[""Police Logs for 1/25/17-1/31/17""]","[""Navigation"", ""Follow Us"", ""Facebook"", ""Email Updates"", ""Storm Preparedness Guide""]",[],[],[], -1362,https://police.greenvillesc.gov/994/crisis-intervention,Resources,Agency-Published Resources,"Crisis Intervention Team (CIT) | Greenville, SC - Official Website",Information about the Police Department's Crisis Intervention Team,200,"Police Department | Greenville, SC - Official Website","[""Crisis Intervention Team (CIT)""]",[],"[""Officer Participation"", ""Loading""]",[],[],[],"Skip to Main Content Careers About Us Divisions News Services I Want To... Search Home Departments Police Department Divisions Support Special Units Crisis Intervention Crisis Intervention Team (CIT) In 2010, the department recognized the need for officers to receive advanced training in dealing with people suffering from mental illness. Law enforcement officers are often the first ones to respond to calls for service. The Greenville Police Department’s Crisis Intervention Team’s goal is to help those with serious mental disorders access medical treatment, rather than placing them in the criminal justice system for illness-related behaviors. The Crisis Intervention Team (CIT) program is a community partnership of law enforcement, mental health professionals, mental health consumers, and family member advocates. Officer Participation Currently there are approximately 154 Greenville Police officers who have completed 40 hours of crisis intervention training and learned de-escalation methods. These officers are assigned throughout the department and are available to respond to calls for service 24/7. These officers utilize their specialized training to safely and effectively communicate with mentally ill individuals while ensuring a safe outcome to potentially volatile situations. Accident Investigation Crime Response Team Crisis Intervention Crisis Negotiation Dignitary Protection SWAT School Resource Officers my Neighborhood Become a Police Officer alarm registration compliments & complaints crime stoppers Emergency Notifications Contact Us | Accessibility | Web Policy and Copyright | Website by CivicPlus® City of Greenville, SC, Police Department | 4 McGee St., Greenville, SC 29601 | Police Non-Emergency: 864-271-5333 Back to Top Enable Google Translate Careers About Us Divisions News Services I Want To... Search Home Departments Police Department Divisions Support Special Units Crisis Intervention Crisis Intervention Team (CIT) In 2010, the department recognized the need for officers to receive advanced training in dealing with people suffering from mental illness. Law enforcement officers are often the first ones to respond to calls for service. The Greenville Police Department’s Crisis Intervention Team’s goal is to help those with serious mental disorders access medical treatment, rather than placing them in the criminal justice system for illness-related behaviors. The Crisis Intervention Team (CIT) program is a community partnership of law enforcement, mental health professionals, mental health consumers, and family member advocates. Officer Participation Currently there are approximately 154 Greenville Police officers who have completed 40 hours of crisis intervention training and learned de-escalation methods. These officers are assigned throughout the department and are available to respond to calls for service 24/7. These officers utilize their specialized training to safely and effectively communicate with mentally ill individuals while ensuring a safe outcome to potentially volatile situations. Accident Investigation Crime Response Team Crisis Intervention Crisis Negotiation Dignitary Protection SWAT School Resource Officers my Neighborhood Become a Police Officer alarm registration compliments & complaints crime stoppers Emergency Notifications Contact Us | Accessibility | Web Policy and Copyright | Website by CivicPlus® City of Greenville, SC, Police Department | 4 McGee St., Greenville, SC 29601 | Police Non-Emergency: 864-271-5333 Back to Top Enable Google Translate " -1363,https://alvordtx.gov/question/how-can-i-obtain-a-copy-of-the-municipal-codes/,Resources,Agency-Published Resources,"How can I obtain a copy of the municipal codes? - Alvord, TX","",200,"Welcome - Alvord, TX","[""How can I obtain a copy of the municipal codes?""]","[""Primary menu links"", ""Action toolbar"", ""Welcome"", ""Engage"", ""Help""]",[],[],[],[],"Alvord, TX Primary menu links Services Community Events News Departments Contact Action toolbar Answers Report Issue Translate Translate language select Select language Afrikaans Albanian Amharic Arabic Armenian Azerbaijani Basque Belarusian Bengali Bosnian Bulgarian Catalan Cebuano Chichewa Chinese (Simplified) Chinese (Traditional) Corsican Croatian Czech Danish Dutch English Esperanto Estonian Filipino Finnish French Frisian Galician Georgian German Greek Gujarati Haitian Creole Hausa Hawaiian Hebrew Hindi Hmong Hungarian Icelandic Igbo Indonesian Irish Italian Japanese Javanese Kannada Kazakh Khmer Korean Kurdish (Kurmanji) Kyrgyz Lao Latin Latvian Lithuanian Luxembourgish Macedonian Malagasy Malay Malayalam Maltese Maori Marathi Mongolian Myanmar (Burmese) Nepali Norwegian Pashto Persian Polish Portuguese Punjabi Romanian Russian Samoan Scottish Gaelic Serbian Sesotho Shona Sindhi Sinhala Slovak Slovenian Somali Spanish Sundanese Swahili Swedish Tajik Tamil Telugu Thai Turkish Ukrainian Urdu Uzbek Vietnamese Welsh Xhosa Yiddish Yoruba Zulu Search Primary menu links Services Community Events News Departments Contact Action toolbar Answers Report Issue Translate Translate language select Select language Afrikaans Albanian Amharic Arabic Armenian Azerbaijani Basque Belarusian Bengali Bosnian Bulgarian Catalan Cebuano Chichewa Chinese (Simplified) Chinese (Traditional) Corsican Croatian Czech Danish Dutch English Esperanto Estonian Filipino Finnish French Frisian Galician Georgian German Greek Gujarati Haitian Creole Hausa Hawaiian Hebrew Hindi Hmong Hungarian Icelandic Igbo Indonesian Irish Italian Japanese Javanese Kannada Kazakh Khmer Korean Kurdish (Kurmanji) Kyrgyz Lao Latin Latvian Lithuanian Luxembourgish Macedonian Malagasy Malay Malayalam Maltese Maori Marathi Mongolian Myanmar (Burmese) Nepali Norwegian Pashto Persian Polish Portuguese Punjabi Romanian Russian Samoan Scottish Gaelic Serbian Sesotho Shona Sindhi Sinhala Slovak Slovenian Somali Spanish Sundanese Swahili Swedish Tajik Tamil Telugu Thai Turkish Ukrainian Urdu Uzbek Vietnamese Welsh Xhosa Yiddish Yoruba Zulu Search Select language Afrikaans Albanian Amharic Arabic Armenian Azerbaijani Basque Belarusian Bengali Bosnian Bulgarian Catalan Cebuano Chichewa Chinese (Simplified) Chinese (Traditional) Corsican Croatian Czech Danish Dutch English Esperanto Estonian Filipino Finnish French Frisian Galician Georgian German Greek Gujarati Haitian Creole Hausa Hawaiian Hebrew Hindi Hmong Hungarian Icelandic Igbo Indonesian Irish Italian Japanese Javanese Kannada Kazakh Khmer Korean Kurdish (Kurmanji) Kyrgyz Lao Latin Latvian Lithuanian Luxembourgish Macedonian Malagasy Malay Malayalam Maltese Maori Marathi Mongolian Myanmar (Burmese) Nepali Norwegian Pashto Persian Polish Portuguese Punjabi Romanian Russian Samoan Scottish Gaelic Serbian Sesotho Shona Sindhi Sinhala Slovak Slovenian Somali Spanish Sundanese Swahili Swedish Tajik Tamil Telugu Thai Turkish Ukrainian Urdu Uzbek Vietnamese Welsh Xhosa Yiddish Yoruba Zulu Alvord, TX Alvord, TX Alvord, TX How can I obtain a copy of the municipal codes? Click the following links for information relating to municipal codes. https://alvordtx.gov/ordinances/ https://alvordtx.gov/departments/permits/ Or, come by city hall to obtain copies / information. How can I obtain a copy of the municipal codes? Click the following links for information relating to municipal codes. https://alvordtx.gov/ordinances/ https://alvordtx.gov/departments/permits/ Or, come by city hall to obtain copies / information. Click the following links for information relating to municipal codes. https://alvordtx.gov/ordinances/ https://alvordtx.gov/departments/permits/ Or, come by city hall to obtain copies / information. Helpful Share Facebook Twitter Email Size + Reset a − Welcome Community News Events Engage Connect Feedback Help Services Contact Directory Accessibility Sitemap " -1364,http://www.longbeach.gov/police/press-releases/murder-investigation---wardlow--orange/,Media Bulletins,Agency-Published Resources,*UPDATE* REWARD ISSUED IN MURDER INVESTIGATION,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -1365,https://louisvilleky.gov/news/louisville-metro-police-foundation-endorses-louisville-affordable-housing-trust-fund,Not Criminal Justice Related,Not Criminal Justice Related,"","",403,"","","","","","","","" -1366,http://www.longbeach.gov/police/press-releases/murder-1600-block-of-pine-avenue/,Media Bulletins,Agency-Published Resources,Murder (1600 Block of Pine Avenue),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 3/31/2016 FOR IMMEDIATE RELEASE Press Release # Subject: MURDER Contact: Media Relations Detail (562) 570-5273 On Wednesday, March 30, 2016, at approximately 11:00 p.m., Long Beach Police responded to the 1600 block of Pine Avenue in regards to a shots fired call, which resulted in the death of a male adult. When officers arrived, they discovered a male adult with apparent gunshot wounds to the torso, in the intersection. The victim was transported to a local hospital by paramedics, and was pronounced deceased shortly thereafter. Based on the preliminary investigation, detectives determined the victim was approached by two male Blacks, and subsequently shot multiple times in the torso. The suspects then fled eastbound on 16th Street and remain outstanding. A motive for the shooting is unknown. After fleeing the area, the suspects may have been involved in a physical altercation with a second male subject in the area of 16th Street and Locust Avenue, however, the investigation remains ongoing. The victim is only being identified as a male in his 40’s from Long Beach, pending notification of next of kin by the Los Angeles County Coroner’s Office. Anyone who may have information regarding this incident is urged to contact Long Beach Police Homicide Detectives Mark Mattia and Donald Goodman at (562) 570-7244. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting www.lacrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -1367,https://alpha.austin.gov/en/police-oversight/notice-of-complaint-related-to-2022-0415/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -1368,https://delcopa.gov/publicrelations/releases/18pdfs/18emergencypreparednessmonth.pdf,Media Bulletins,Agency-Published Resources,"","",200,"","","","","","","","" -1369,http://lafayettepolice.us/773/foam-systems,Not Criminal Justice Related,Not Criminal Justice Related,"Foam Systems | Lafayette, IN - Official Website",Fire fighting foam systems suppress fire by separating the fuel from the air (oxygen).,200,"Police Department | Lafayette, IN - Official Website","[""Foam Systems""]",[],"[""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search About Us Operations Prevention Recruitment How Do I... Home Government Departments A - F Fire Department Prevention Contractors & Designers Resources & Inspections Alternative Fire Extinguishing Systems Foam Systems Foam Systems Fire fighting foam systems suppress fire by separating the fuel from the air (oxygen). Depending on the type of foam system, this is done in several ways: Foam blankets the fuel surface smothering the fire The fuel is cooled by the water content of the foam The foam blanket suppresses the release of flammable vapors that can mix with the air Uses & Applications Foam systems are generally used in applications where flammable liquids are present. Typical applications include fuel storage tanks areas, petrochemical plants, aircraft hangars and facilities that store flammable or volatile liquids. The foam not only contains extinguishing agents to put out the fire but also acts as a ""blanket"" to exclude oxygen ""feeding"" the fire and to provide vapor suppression so protecting against re-ignition. Types Available There are various types of foam available from a basic protein foam through to Aqueous Film Forming Foam (AFFF) and Film Forming Flouroprotein (FFFP) with alcohol resistant foam used for polar solvents. Foam-extinguishing systems shall be installed, maintained, periodically inspected and tested in accordance with NFPA 11, NFPA 11A and NFPA 16 and their listing. Foam-extinguishing systems shall be inspected and tested at intervals in accordance with NFPA 25. Carbon Dioxide Systems Clean Agent Systems Dry Chemical Automatic Fire Suppression System Foam Systems Halon Systems Wet Chemical Systems Installation Testing & Operations/Maintenance UL 300 Community Outreach Fire Stations Submit a Request History Photo Gallery Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate " -1370,https://www.newarknj.gov/news/mayor-ras-j-barakas-statement-on-appointment-of-brian-ohara-as-deputy-mayor-of-strategic-initiatives-for-police-services-public-safety,Personnel Records,Info About Officers,News: MAYOR RAS J. BARAKA’S STATEMENT ON APPOINTMENT OF BRIAN O’HARA AS DEPUTY MAYOR OF STRATEGIC INITIATIVES FOR POLICE SERVICES/PUBLIC SAFETY,"Official Page of Newark, NJ News: MAYOR RAS J. BARAKA’S STATEMENT ON APPOINTMENT OF BRIAN O’HARA AS DEPUTY MAYOR OF STRATEGIC INITIATIVES FOR POLICE SERVICES/PUBLIC SAFETY",200,City of Newark,"[""City of"", ""NEWARK"", ""June 30, 2022"", ""MAYOR RAS J. BARAKA’S STATEMENT ON APPOINTMENT OF BRIAN O’HARA AS DEPUTY MAYOR OF STRATEGIC INITIATIVES FOR POLICE SERVICES/PUBLIC SAFETY"", ""City of"", ""NEWARK""]","[""News"", ""Mayor Ras j baraka""]",[],[],[],[],"City of NEWARK DEPARTMENTS Administration Communications Economic & Housing Development Engineering Finance Health & Community Wellness Law Municipal Court Newark Office of Film+Television Office of Violence Prevention & Trauma Recovery Office of the City Clerk Office of the Mayor & Agencies Public Safety Public Works Recreation, Cultural Affairs and Senior Services Water & Sewer Utilities News Events Forms mayor City Mayor Council Members Contact Knowledge Contact us City of NEWARK DEPARTMENTS Administration Communications Economic & Housing Development Engineering Finance Health & Community Wellness Law Municipal Court Newark Office of Film+Television Office of Violence Prevention & Trauma Recovery Office of the City Clerk Office of the Mayor & Agencies Public Safety Public Works Recreation, Cultural Affairs and Senior Services Water & Sewer Utilities News Events Forms mayor City Mayor Council Members Contact Knowledge Contact us City of NEWARK DEPARTMENTS Administration Communications Economic & Housing Development Engineering Finance Health & Community Wellness Law Municipal Court Newark Office of Film+Television Office of Violence Prevention & Trauma Recovery Office of the City Clerk Office of the Mayor & Agencies Public Safety Public Works Recreation, Cultural Affairs and Senior Services Water & Sewer Utilities DEPARTMENTS DEPARTMENTS Administration Communications Economic & Housing Development Engineering Finance Health & Community Wellness Law Municipal Court Newark Office of Film+Television Office of Violence Prevention & Trauma Recovery Office of the City Clerk Office of the Mayor & Agencies Public Safety Public Works Recreation, Cultural Affairs and Senior Services Water & Sewer Utilities Administration Communications Economic & Housing Development Engineering Finance Health & Community Wellness Law Municipal Court Newark Office of Film+Television Office of Violence Prevention & Trauma Recovery Office of the City Clerk Office of the Mayor & Agencies Public Safety Public Works Recreation, Cultural Affairs and Senior Services Water & Sewer Utilities Administration Communications Economic & Housing Development Engineering Finance Health & Community Wellness Law Municipal Court Newark Office of Film+Television Office of Violence Prevention & Trauma Recovery Office of the City Clerk Office of the Mayor & Agencies Public Safety Public Works Recreation, Cultural Affairs and Senior Services Water & Sewer Utilities mayor City Mayor Council Members mayor mayor Contact Knowledge Contact us Contact Contact News News News News " -1371,https://mtcb.colorado.gov/departments-services/police,Contact Info & Agency Meta,Info About Agencies,Police | Town of Mt. Crested Butte,"The Mt. Crested Butte Police Department's goal is to create and sustain a safe and relaxed environment within our jurisdiction. Through education, enforcement, investigation, and cooperation with our community Mt. CB PD helps address crime, road safety, and other quality of life issues ensuring a safe and friendly experience for guests and locals alike.",200,Home | Town of Mt. Crested Butte,"[""Police""]",[],[],[],[],[],"Skip to main content Visit ""Where can I get vaccinated"" or call 1-877-COVAXCO (1-877-268-2926) for vaccine information. Site Search Search Main Navigation - Top Bar Menu How Do I...? » Apply For Contact Pay Subscribe View Departments & Services » Community Development Finance Maintenance Municipal Court Parks Police Recycling & Trash Short-Term Rentals Town Clerk Government » Downtown Development Authority (DDA) Planning Commission Public Notices Town Code Town Council Town Elections Voter Registration Projects & Initiatives » Admissions Tax Grant Affordable Housing Initiatives Community Grant E-Bike Rebate Program Master Plan Request for Proposals Strategic Plan Wayfinding Program Visitors » Airport CBMR Electric Vehicle Charging Stations Mountain Express RTA How Do I...? » Apply For Contact Pay Subscribe View Departments & Services » Community Development Finance Maintenance Municipal Court Parks Police Recycling & Trash Short-Term Rentals Town Clerk Government » Downtown Development Authority (DDA) Planning Commission Public Notices Town Code Town Council Town Elections Voter Registration Projects & Initiatives » Admissions Tax Grant Affordable Housing Initiatives Community Grant E-Bike Rebate Program Master Plan Request for Proposals Strategic Plan Wayfinding Program Visitors » Airport CBMR Electric Vehicle Charging Stations Mountain Express RTA 1 Home Departments & Services Police Police Police Animal Regulations & Ordinances Contact Us FAQ's Helpful Links & Contact Info Parking Regulations Police Forms Wildlife Pay Online The Mt. Crested Butte Police Department's goal is to create and sustain a safe and relaxed environment within our jurisdiction. Through education, enforcement, investigation, and cooperation with our community Mt. CB PD helps address crime, road safety, and other quality of life issues ensuring a safe and friendly experience for guests and locals alike. The Mt. Crested Butte Police Department is located in Town Hall and is administered by the Chief of Police, Nate Stepanek. Jurisdiction The department's primary jurisdiction is within the town limits of Mt. Crested Butte. However, a mutual aid agreement between the town and Gunnison County Sheriff's Office gives officers jurisdiction over all areas of Gunnison County. This includes Crested Butte South and Red Mountain Ranch but excludes the Town of Crested Butte. Animal Regulations Contact Us FAQs Helpful Links & Contact Info Parking Regulations Police Department Forms Wildlife in Mt. Crested Butte Pay Online #FFFFFF Police Department & Staff Nate Stepanek Chief of Police Email Jared Hooks Sergeant Email Anthony Burton Officer Email Andy Diehl Officer Email Cliff Adams Officer Email John Turco Officer Email Joe Pecharich Officer Email Matt Halvorson Officer Email Madeline Thomas Records Tech & Admin Assistant Email #FFFFFF Address 911 Gothic Road P.O. Box 5800 Mt. Crested Butte, CO 81225 Office Hours Monday - Friday 8:00 a.m. - 4:30 p.m. Phone: (970) 349-6516 Dispatch: (970) 641-8200 Fax: (970) 349-5866 #FFFFFF Town of Mt. CB 911 Gothic Rd. I POB 5800 Mt. Crested Butte, CO 81225 (970) 349-6632 911 Gothic Road., Mt. Crested Butte, CO 81225 placeholder © 2024 State of Colorado Transparency Online Support Colorado Official State Web Portal " -1372,http://www.lafayettepolice.us/725/fireworks-safety,Not Criminal Justice Related,Not Criminal Justice Related,"Fireworks Safety | Lafayette, IN - Official Website",Find the rules for using fireworks in the City limits of Lafayette.,200,"Police Department | Lafayette, IN - Official Website","[""Fireworks Safety""]",[],"[""Quick Links"", ""News Flash"", ""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]","[""Deputy Chief sworn-in along with 4 other promotions for LFD"", ""Todd Budd promoted to Assistant Chief of Fire Prevention on September 4, 2023""]",[],[],Skip to Main Content -1373,https://www.cityofrc.us/public-safety/police/crime-mapping,Crime Maps & Reports,Agency-Published Resources,Crime Mapping | City of Rancho Cucamonga,"",200,Home | City of Rancho Cucamonga,"[""Crime Mapping""]","[""Utility Menu"", ""Breadcrumb"", ""Footer Menu"", ""Main navigation""]",[],[],[],[],Select Language English 繁體中文 Français हिन्दी 日本語 한국어 Español Filipino Tiếng Việt ไทย Utility Menu Translate Text Size (Decrease) Text Size (Normal) Text Size (Increase) Contact Us Menu Search Breadcrumb Home Public Safety Crime Mapping Crime Mapping https://www.crimemapping.com/map/agency/303 Footer Menu RC2GO Employment Opportunities Privacy Policy Contact Us Rate Your Experience Close Enter your keywords: Document Search Main navigation Home Everything We Do Animal Center Community Services Community Development Economic Development Healthy RC Library Public Safety RCMU Your Government Select Language English 繁體中文 Français हिन्दी 日本語 한국어 Español Filipino Tiếng Việt ไทย Utility Menu Translate Text Size (Decrease) Text Size (Normal) Text Size (Increase) Contact Us Select Language English 繁體中文 Français हिन्दी 日本語 한국어 Español Filipino Tiếng Việt ไทย Utility Menu Translate Text Size (Decrease) Text Size (Normal) Text Size (Increase) Contact Us Select Language English 繁體中文 Français हिन्दी 日本語 한국어 Español Filipino Tiếng Việt ไทย Select Language English 繁體中文 Français हिन्दी 日本語 한국어 Español Filipino Tiếng Việt ไทย Menu Search Menu Search Menu Search Menu Search Breadcrumb Home Public Safety Crime Mapping Crime Mapping https://www.crimemapping.com/map/agency/303 Breadcrumb Home Public Safety Crime Mapping Crime Mapping https://www.crimemapping.com/map/agency/303 Breadcrumb Home Public Safety Crime Mapping Crime Mapping https://www.crimemapping.com/map/agency/303 Breadcrumb Home Public Safety Crime Mapping Crime Mapping https://www.crimemapping.com/map/agency/303 https://www.crimemapping.com/map/agency/303 https://www.crimemapping.com/map/agency/303 https://www.crimemapping.com/map/agency/303 https://www.crimemapping.com/map/agency/303 Footer Menu RC2GO Employment Opportunities Privacy Policy Contact Us Rate Your Experience Footer Menu RC2GO Employment Opportunities Privacy Policy Contact Us Rate Your Experience Footer Menu RC2GO Employment Opportunities Privacy Policy Contact Us Rate Your Experience Footer Menu RC2GO Employment Opportunities Privacy Policy Contact Us Rate Your Experience Close Enter your keywords: Document Search Main navigation Home Everything We Do Animal Center Community Services Community Development Economic Development Healthy RC Library Public Safety RCMU Your Government Close Enter your keywords: Document Search Main navigation Home Everything We Do Animal Center Community Services Community Development Economic Development Healthy RC Library Public Safety RCMU Your Government Enter your keywords: Document Search Enter your keywords: Document Search Enter your keywords: Document Search -1374,https://delcopa.gov/courts/pdf/jd/2017preareport.pdf,Annual & Monthly Reports,Info About Agencies,"","",200,"","","","","","","","" -1375,https://delcopa.gov/publicrelations/releases/2020/pdf/govwolf_indoorrestaurants50percent.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -1376,http://www.longbeach.gov/police/press-releases/dui-driver-s-license-checkpoint-planned-this-weekend-8-/,Media Bulletins,Agency-Published Resources,DUI-DRIVER'S LICENSE CHECKPOINT PLANNED THIS WEEKEND(8),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -1377,https://delcopa.gov/prison/pdfs/wardereports/2021/wardensreportmay2021.pdf,Annual & Monthly Reports,Info About Agencies,"","",200,"","","","","","","","" -1378,https://www.goldenbeach.us/documents/resolution-2219-12-authorizing-the-participation-in-a-lease-agreement-for-two-police-motorcycles/,Policies & Contracts,Info About Agencies,RESO 2219.12 Authorizing the participation in a lease agreement for two police motorcycles – Golden Beach: A Town Unlike Any Other,"",200,Golden Beach: A Town Unlike Any Other – The Town of Golden Beach,[],[],"[""About Golden Beach"", ""Phone Numbers"", ""Town Hall""]","[""RESO 2219.12 Authorizing the participation in a lease agreement for two police motorcycles (65 kB)""]",[],[],Menu Home About Golden Beach History of Golden Beach Message From The Mayor Message from the Town Manager Laws and Ordinances Government Town Council Town Council Meeting & Workshop Video Archive Town Manager Town Clerk Finance Department Building and Zoning New Permit and Contractor Registration Appointments Capital Improvement Projects (CIP) Department Police Department Public Works Resident Services Town Attorney Other Elected Officials Job Opportunities Residents Community Calendar Golden Beach Magazine Galleries Hurricane Guide Recreation Reservation Guide: New Tennis System Reserve West Tennis Court: #1 Reserve East Tennis Court: #2 Beach Pavilion Rules Doing Business Schedule Inspection Building Permitting Appointments Public Record Request Vendor Enrollment Budget Contact Us Town Guide [hmapsprem id=1] Menu Home About Golden Beach History of Golden Beach Message From The Mayor Message from the Town Manager Laws and Ordinances Government Town Council Town Council Meeting & Workshop Video Archive Town Manager Town Clerk Finance Department Building and Zoning New Permit and Contractor Registration Appointments Capital Improvement Projects (CIP) Department Police Department Public Works Resident Services Town Attorney Other Elected Officials Job Opportunities Residents Community Calendar Golden Beach Magazine Galleries Hurricane Guide Recreation Reservation Guide: New Tennis System Reserve West Tennis Court: #1 Reserve East Tennis Court: #2 Beach Pavilion Rules Doing Business Schedule Inspection Building Permitting Appointments Public Record Request Vendor Enrollment Budget Contact Us Town Guide Menu Home About Golden Beach History of Golden Beach Message From The Mayor Message from the Town Manager Laws and Ordinances Government Town Council Town Council Meeting & Workshop Video Archive Town Manager Town Clerk Finance Department Building and Zoning New Permit and Contractor Registration Appointments Capital Improvement Projects (CIP) Department Police Department Public Works Resident Services Town Attorney Other Elected Officials Job Opportunities Residents Community Calendar Golden Beach Magazine Galleries Hurricane Guide Recreation Reservation Guide: New Tennis System Reserve West Tennis Court: #1 Reserve East Tennis Court: #2 Beach Pavilion Rules Doing Business Schedule Inspection Building Permitting Appointments Public Record Request Vendor Enrollment Budget Contact Us Town Guide Menu Home About Golden Beach History of Golden Beach Message From The Mayor Message from the Town Manager Laws and Ordinances Government Town Council Town Council Meeting & Workshop Video Archive Town Manager Town Clerk Finance Department Building and Zoning New Permit and Contractor Registration Appointments Capital Improvement Projects (CIP) Department Police Department Public Works Resident Services Town Attorney Other Elected Officials Job Opportunities Residents Community Calendar Golden Beach Magazine Galleries Hurricane Guide Recreation Reservation Guide: New Tennis System Reserve West Tennis Court: #1 Reserve East Tennis Court: #2 Beach Pavilion Rules Doing Business Schedule Inspection Building Permitting Appointments Public Record Request Vendor Enrollment Budget Contact Us Town Guide Menu -1379,https://felton.delaware.gov/police/request-for-security-check-form/,Resources,Agency-Published Resources,Request for Security Check Form - Town of Felton,"",200,Home - Town of Felton - Kent County Delaware,"[""Felton""]","[""Delaware"", ""Request for Security Check Form""]","[""Menu"", ""Contact Us"", ""\""A Great Delaware Small Town\""""]",[],[],[],"Skip to Content Skip to Footer Toggle navigation Menu Bill Pay Government Town Hall Town Manager Updates Town Council – Mayor & Members Charter and Ordinances Meetings & Events Contact Information Past Meetings Community News Schools Clubs and Activities Photo Gallery Information Police Building Permits Public Works Trash Collection Water Board of Adjustments Property Tax Contact Us Contact the Town FOIA Skip to Content Skip to Footer Toggle navigation Menu Bill Pay Government Town Hall Town Manager Updates Town Council – Mayor & Members Charter and Ordinances Meetings & Events Contact Information Past Meetings Community News Schools Clubs and Activities Photo Gallery Information Police Building Permits Public Works Trash Collection Water Board of Adjustments Property Tax Contact Us Contact the Town FOIA Skip to Content Skip to Footer Toggle navigation Menu Bill Pay Government Town Hall Town Manager Updates Town Council – Mayor & Members Charter and Ordinances Meetings & Events Contact Information Past Meetings Community News Schools Clubs and Activities Photo Gallery Information Police Building Permits Public Works Trash Collection Water Board of Adjustments Property Tax Contact Us Contact the Town FOIA Felton Delaware Listen Request for Security Check Form Request for Security Check Form Felton Delaware Listen Request for Security Check Form Request for Security Check Form Listen Request for Security Check Form Request for Security Check Form Listen Request for Security Check Form Request for Security Check Form Listen Request for Security Check Form Request for Security Check Form Listen Contact Us (302) 284-9365 24 E. Sewell Street Felton, DE 19943 Contact Form FOIA Form Like Us On Facebook! ""A Great Delaware Small Town"" Original design and concept by the Delaware GIC Copyright © 2024 Government Information Center Contact Us (302) 284-9365 24 E. Sewell Street Felton, DE 19943 Contact Form FOIA Form Like Us On Facebook! Contact Us (302) 284-9365 24 E. Sewell Street Felton, DE 19943 Contact Form FOIA Form Like Us On Facebook! (302) 284-9365 24 E. Sewell Street Felton, DE 19943 Contact Form FOIA Form Like Us On Facebook! ""A Great Delaware Small Town"" Original design and concept by the Delaware GIC Copyright © 2024 Government Information Center " -1380,https://delcopa.gov/publicrelations/releases/2021/covid_jan15update.html,Not Criminal Justice Related,Not Criminal Justice Related,"Jan. 15 Update on COVID-19 Vaccinations in Delaware County - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Jan. 15 Update on COVID-19 Vaccinations in Delaware County""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]","[""Phase 1B now includes residents age 65 years and older""]",[],[],"" -1381,https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0391/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -1382,https://www.southamptontownnypolice.gov/1084/ia-owts-requirements,Not Criminal Justice Related,Not Criminal Justice Related,"I/A OWTS Requirements | Southampton, NY - Official Website",Innovative and Alternative On-Site Wastewater Treatment System (I/A OWTS) Requirements ,200,"Police | Southampton, NY - Official Website","[""I/A OWTS Requirements""]","[""Innovative and Alternative On-Site Wastewater Treatment System (I/A OWTS) Requirements""]","[""Site Tools"", ""Additional Water Quality Information"", ""Contact Us"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Government Town Services Community Info How Do I Translate Page Site Tools Home My Account Printer Friendly Email Page Contact Us RSS Site Map Translate Page Notifications Documents Search Home Government Departments Land Management - Building & Zoning I/A OWTS Requirements I/A OWTS Requirements Innovative and Alternative On-Site Wastewater Treatment System (I/A OWTS) Requirements Town Code Chapter 123 (Building Construction) now includes a requirement for Innovative and Alternative On-Site Wastewater Treatment Systems (I/A OWTS) for certain residential projects: An I/A OWTS approved by the Suffolk County Department of Health Services (SCDHS) is required for residential projects located within the High Priority Area of the CPF Water Quality Improvement Project Plan (WQIPP) for: All new construction Any substantial system upgrade required by the SCDHS An increase in 25% of the floor area of a building When required by the Conservation Board or the Environment Division Verify parcel is located in high priority area Town Code Chapter 177 provides for Rebates for the installation of I/A OWTS in both Medium and High Priority Areas of the WQIPP for income eligible applicants. Please contact the Southampton Town Building Department for Electrical Permit Questions Only at (631) 287-5700 and the Southampton Town CPF Office for Rebate Inquiries Only at (631) 287-5720. Technical questions related to I/A system installations should be directed to the Suffolk County Office of Wastewater Management at (631) 852-5700 or Septic Improvement Program - Reclaim Our Waters I/A OWTS Application Procedure and Rebate Program I/A OWTS Information Brochure Additional Water Quality Information Water Quality Protection Information CPF Water Quality Improvement Project Plan (WQIPP) (PDF) Nitrogen Calculator (PDF) Reclaim Our Water - Suffolk County Department of Health Services View All /QuickLinks.aspx Building Applications & Forms I/A OWTS Requirements Licensing Applications & Forms Online Servces Request a Building Inspection Request an Electrical Inspection Join Town Hall's In-Person Waitlist Zoning Applications & Forms Policies for the ZBA Zoning Board of Appeals Town Clerk Meetings, Agendas & Minutes Pay Your Taxes Online Services Applications, Forms & Fees Notify Me® FOIL Requests Contact Us Town of Southampton 116 Hampton Road Southampton, NY 11968 Phone: 631-283-6000 Banner photo credit: robertseifertphotography.com Site Links Contact Us Site Map Accessibility Copyright Notices Intranet Job Opportunities Title VI Non-discrimination Policy /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate " -1383,https://brookfieldil.gov/publication/special-fire-police-commission-meeting-august-23-2017/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -1384,https://delcopa.gov/employment/jobpostings/caseworker2_oid.html,Poor Data Source,Poor Data Source,"404 - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert " -1385,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/022621blotter.pdf,Dispatch Logs,Police & Public Interactions,"","",404,"","","","","","","","" -1386,http://police.portlandmaine.gov/660/cdbg-priority-task-force,Not Criminal Justice Related,Not Criminal Justice Related,"CDBG Priority Task Force | Portland, ME - Official Website",This group's focus is on reevaluating the Community Development Block Grant priorities.,200,"Portland, ME - Official Website | Official Website","[""CDBG Priority Task Force""]",[],[],[],[],[],Skip to Main Content Pay & Apply Your Government Services Business Community Home Your Government Boards & Committees Completed Task Forces Task Forces CDBG Priority Task Force CDBG Priority Task Force CDBG Priority Task Force CDBG Working Group Waterfront Working Group Government Websites by CivicPlus® Pay & Apply Your Government Services Business Community Home Your Government Boards & Committees Completed Task Forces Task Forces CDBG Priority Task Force CDBG Priority Task Force CDBG Priority Task Force CDBG Working Group Waterfront Working Group Government Websites by CivicPlus® Pay & Apply Your Government Services Business Community Home Your Government Boards & Committees Completed Task Forces Task Forces CDBG Priority Task Force CDBG Priority Task Force CDBG Priority Task Force CDBG Working Group Waterfront Working Group Government Websites by CivicPlus® Pay & Apply Your Government Services Business Community Home Your Government Boards & Committees Completed Task Forces Task Forces CDBG Priority Task Force CDBG Priority Task Force CDBG Priority Task Force CDBG Working Group Waterfront Working Group Government Websites by CivicPlus® Pay & Apply Your Government Services Business Community Home Your Government Boards & Committees Completed Task Forces Task Forces CDBG Priority Task Force CDBG Priority Task Force CDBG Priority Task Force CDBG Working Group Waterfront Working Group Home Your Government Boards & Committees Completed Task Forces Task Forces CDBG Priority Task Force CDBG Priority Task Force CDBG Priority Task Force CDBG Working Group Waterfront Working Group Home Your Government Boards & Committees Completed Task Forces Task Forces CDBG Priority Task Force CDBG Priority Task Force CDBG Priority Task Force CDBG Working Group Waterfront Working Group Home Your Government Boards & Committees Completed Task Forces Task Forces CDBG Priority Task Force CDBG Priority Task Force Home Your Government Boards & Committees Completed Task Forces Task Forces CDBG Priority Task Force CDBG Priority Task Force Home Your Government Boards & Committees Completed Task Forces Task Forces CDBG Priority Task Force CDBG Priority Task Force CDBG Priority Task Force CDBG Priority Task Force CDBG Working Group Waterfront Working Group CDBG Priority Task Force CDBG Working Group Waterfront Working Group Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® -1387,https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0756/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -1388,https://alpha.austin.gov/es/police-oversight/indefinite-suspension-of-officer-jordan-wagstaff/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -1389,https://port-orange.us/2013/08/07/volusia-co-sheriffs-helicopter-makes-emergency-landing-on-beach/,Media Bulletins,Agency-Published Resources,"","",-1,"","","","","","","","" -1390,https://brookfieldil.gov/calendar/police-pension-fund-board-of-trustees-meeting/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -1391,https://mountpocono-pa.gov/topics/police-courts/,Resources,Agency-Published Resources,"Police Archives - Mount Pocono, PA","",200,"Welcome - Mount Pocono, PA","[""FAQ Topic: Police""]","[""Action toolbar"", ""Primary menu links"", ""Who do I call about police-related non-emergencies?"", ""How do I get a copy of a police report?"", ""How do I file a police report?"", ""Welcome"", ""Engage"", ""Help""]",[],[],[],[],"Official government website Action toolbar Answers Payments Report Issue Search Action toolbar Answers Payments Report Issue Search Mount Pocono, PA Primary menu links Residents Businesses Visitors Meetings Government News Contact Primary menu links Residents Businesses Visitors Meetings Government News Contact Mount Pocono, PA Mount Pocono, PA Mount Pocono, PA FAQ Topic: Police Who do I call about police-related non-emergencies? Contact Pocono Mountain Regional Police directly for non-emergency police matters. How do I get a copy of a police report? Contact Pocono Mountain Regional Police to obtain a copy of a police report. How do I file a police report? Contact Pocono Mountain Regional Police to file a police report. FAQ Topic: Police Who do I call about police-related non-emergencies? Contact Pocono Mountain Regional Police directly for non-emergency police matters. How do I get a copy of a police report? Contact Pocono Mountain Regional Police to obtain a copy of a police report. How do I file a police report? Contact Pocono Mountain Regional Police to file a police report. FAQ Topic: Police Contact Pocono Mountain Regional Police directly for non-emergency police matters. Contact Pocono Mountain Regional Police to obtain a copy of a police report. Contact Pocono Mountain Regional Police to file a police report. Helpful Share Facebook Twitter Email Size + Reset a − Translate Translate language select Select language Afrikaans Albanian Amharic Arabic Armenian Azerbaijani Basque Belarusian Bengali Bosnian Bulgarian Catalan Cebuano Chichewa Chinese (Simplified) Chinese (Traditional) Corsican Croatian Czech Danish Dutch English Esperanto Estonian Filipino Finnish French Frisian Galician Georgian German Greek Gujarati Haitian Creole Hausa Hawaiian Hebrew Hindi Hmong Hungarian Icelandic Igbo Indonesian Irish Italian Japanese Javanese Kannada Kazakh Khmer Korean Kurdish (Kurmanji) Kyrgyz Lao Latin Latvian Lithuanian Luxembourgish Macedonian Malagasy Malay Malayalam Maltese Maori Marathi Mongolian Myanmar (Burmese) Nepali Norwegian Pashto Persian Polish Portuguese Punjabi Romanian Russian Samoan Scottish Gaelic Serbian Sesotho Shona Sindhi Sinhala Slovak Slovenian Somali Spanish Sundanese Swahili Swedish Tajik Tamil Telugu Thai Turkish Ukrainian Urdu Uzbek Vietnamese Welsh Xhosa Yiddish Yoruba Zulu Select language Afrikaans Albanian Amharic Arabic Armenian Azerbaijani Basque Belarusian Bengali Bosnian Bulgarian Catalan Cebuano Chichewa Chinese (Simplified) Chinese (Traditional) Corsican Croatian Czech Danish Dutch English Esperanto Estonian Filipino Finnish French Frisian Galician Georgian German Greek Gujarati Haitian Creole Hausa Hawaiian Hebrew Hindi Hmong Hungarian Icelandic Igbo Indonesian Irish Italian Japanese Javanese Kannada Kazakh Khmer Korean Kurdish (Kurmanji) Kyrgyz Lao Latin Latvian Lithuanian Luxembourgish Macedonian Malagasy Malay Malayalam Maltese Maori Marathi Mongolian Myanmar (Burmese) Nepali Norwegian Pashto Persian Polish Portuguese Punjabi Romanian Russian Samoan Scottish Gaelic Serbian Sesotho Shona Sindhi Sinhala Slovak Slovenian Somali Spanish Sundanese Swahili Swedish Tajik Tamil Telugu Thai Turkish Ukrainian Urdu Uzbek Vietnamese Welsh Xhosa Yiddish Yoruba Zulu Welcome History Community News Events Engage Subscribe Feedback Help Services Contact Directory Accessibility Sitemap Welcome History Community News Events Engage Subscribe Feedback Help Services Contact Directory Accessibility Sitemap Welcome History Community News Events History Community News Events Engage Subscribe Feedback Subscribe Feedback Help Services Contact Directory Accessibility Sitemap Services Contact Directory Accessibility Sitemap Powered by Powered by " -1392,https://cityofpowell.us/government/employment-opportunities/police-officer-selection-process-6/,Resources,Agency-Published Resources,"City of Powell, Ohio | Police Officer Selection Process","",200,"City of Powell, Ohio","[""Police Officer Selection Process""]","[""CONTACT INFO"", ""HELPFUL LINKS"", ""LET'S CONNECT""]","[""you're at home in Powell""]","[""614.885.5380"", ""47 Hall Street, Powell, OH 43065"", ""Signup for our newsletter""]",[],[],"Discover Annual Reports Community Maps Demographics DORA Historic Powell Library Public Parking Schools Visit Government Agendas & Minutes Boards & Commissions City Code City Council City Manager’s Office Departments Building Business & Economic Development City Clerk Communications Development Engineering Finance Parks & Recreation Public Service Police Legislation Monthly Reports Public Records Parks & Recreation Powell Parks Bike Paths Community Garden Online Class Registration Facility Rental Request Class Cancellations, Wait Lists & Inclement Weather Residents A to Z Guide Address Check Tool Driver’s License & Titles Homeowners’ Associations Services Christmas Tree Disposal Leaf Removal Snow and Ice Removal Street Trees Trash, Recycling, and Yard Waste Taxes Utilities Vacation House Watch Businesses Building Department Development Department Development Toolkit Greater Powell Chamber of Commerce Zoning Map Events Powell Festival Special Event Permit Designated Outdoor Refreshment Area (DORA) Safety Police Canine Unit Citizens Police Academy Community Oriented Policing Crash Reports Employment Resources Public Records Requests Services Traffic Surveys Fire Delco Alerts Vacation House Watch Discover Annual Reports Community Maps Demographics DORA Historic Powell Library Public Parking Schools Visit Government Agendas & Minutes Boards & Commissions City Code City Council City Manager’s Office Departments Building Business & Economic Development City Clerk Communications Development Engineering Finance Parks & Recreation Public Service Police Legislation Monthly Reports Public Records Parks & Recreation Powell Parks Bike Paths Community Garden Online Class Registration Facility Rental Request Class Cancellations, Wait Lists & Inclement Weather Residents A to Z Guide Address Check Tool Driver’s License & Titles Homeowners’ Associations Services Christmas Tree Disposal Leaf Removal Snow and Ice Removal Street Trees Trash, Recycling, and Yard Waste Taxes Utilities Vacation House Watch Businesses Building Department Development Department Development Toolkit Greater Powell Chamber of Commerce Zoning Map Events Powell Festival Special Event Permit Designated Outdoor Refreshment Area (DORA) Safety Police Canine Unit Citizens Police Academy Community Oriented Policing Crash Reports Employment Resources Public Records Requests Services Traffic Surveys Fire Delco Alerts Vacation House Watch Discover Annual Reports Community Maps Demographics DORA Historic Powell Library Public Parking Schools Visit Government Agendas & Minutes Boards & Commissions City Code City Council City Manager’s Office Departments Building Business & Economic Development City Clerk Communications Development Engineering Finance Parks & Recreation Public Service Police Legislation Monthly Reports Public Records Parks & Recreation Powell Parks Bike Paths Community Garden Online Class Registration Facility Rental Request Class Cancellations, Wait Lists & Inclement Weather Residents A to Z Guide Address Check Tool Driver’s License & Titles Homeowners’ Associations Services Christmas Tree Disposal Leaf Removal Snow and Ice Removal Street Trees Trash, Recycling, and Yard Waste Taxes Utilities Vacation House Watch Businesses Building Department Development Department Development Toolkit Greater Powell Chamber of Commerce Zoning Map Events Powell Festival Special Event Permit Designated Outdoor Refreshment Area (DORA) Safety Police Canine Unit Citizens Police Academy Community Oriented Policing Crash Reports Employment Resources Public Records Requests Services Traffic Surveys Fire Delco Alerts Vacation House Watch News Calendar Powell Festival Economic Development Careers Contact Translate Facebook Twitter LinkedIn Instagram Pinterest Vimeo " -1393,https://delcopa.gov/ems/pdfdocs/initialcertificationeducationtesting/2022regionalemslistmap.pdf,Geographic,Info About Agencies,"","",200,"","","","","","","","" -1394,http://chico.ca.us/police-department-volunteers,Media Bulletins,Agency-Published Resources,City of Chico - Site Search,"",200,City of Chico - Home,"[""City of Chico"", ""City of Chico""]","[""Site Search""]","[""Contact Us"", ""Quicklinks"", ""City Resources"", ""Stay Connected"", ""Contact Us"", ""Quicklinks"", ""Follow\n \n City of Chico""]",[],[],[],skip to main content -1395,http://www.longbeach.gov/police/press-releases/two-arrested-and-numerous-guns-seized/,Media Bulletins,Agency-Published Resources,TWO ARRESTED AND NUMEROUS GUNS SEIZED,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 5/10/2017 FOR IMMEDIATE RELEASE Press Release # 2017 Subject: TWO ARRESTED AND NUMEROUS GUNS SEIZED Contact: Media Relations Detail (562) 570-5273 SEIZED GUNS On May 8, 2017, at approximately 5:20 pm, LBPD officers and detectives working with the California Department of Justice (Cal DOJ) Firearms Bureau Prohibited Possessor Team served a search warrant in the 6400 block of Atlantic Avenue. The search warrant lead to the arrest of two individuals and the seizure of numerous weapons. The weapons recovered were two assault rifles, a .22 caliber rifle, two handguns, multiple parts to assault rifles, magazines for the weapons, and ammunition. The suspects are husband and wife, and have been identified as 41 year-old James Anthony Harvey, and 37 year-old City Harvey, both residents of Long Beach. James Harvey was arrested for ex-felon in possession of a firearm, child endangerment, and unlawful possession of ammunition. He was booked in to the Long Beach Jail and is being held on $100,000.00 bail. Harvey is a prohibited possessor for prior felony conviction out of North Carolina. City Harvey was arrested for giving a firearm to a prohibited possessor, and child endangerment. She was booked into the Long Beach City Jail and is being held on $100,000.00 bail. A 22 month old child was taken into protective custody by the Department of Child Services after both parents were arrested. Anyone with additional information is urged to contact Detective Joe Pirooz at (562) 570-7370. Anonymous tips may be submitted through ""LA Crime Stoppers"" by calling 1-800-222-TIPS (8477), downloading the ""P3 Tips"" app to your smart phone (available at the Apple App store and Google Play), or visiting http://www.lacrimestoppers.org/ This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -1396,http://www.lafayettepolice.us/faq.aspx?qid=208,Not Criminal Justice Related,Not Criminal Justice Related,FAQs • Are “floaties” or flotation devices allowed?,"",200,"Police Department | Lafayette, IN - Official Website",[],"[""▼ Parks and Recreation - Aquatics""]","[""Categories"", ""Live Edit"", ""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -1397,https://alpha.austin.gov/es/police-oversight/temporary-suspension-of-officer-jeremy-bohannon/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -1398,https://alpha.austin.gov/police-oversight/temporary-suspension-of-officer-ryan-seweryn-2/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -1399,https://www.ci.san-bernardino.ca.us/city_hall/police_department/crime_statistics/about_ucr_statistics/arrest_statistics/arrest_statistics-2009,Crime Statistics,Agency-Published Resources,Arrest Statistics - 2009 - City of San Bernardino,"",200,Just a moment...,"[""City of San Bernardino California""]","[""Arrest Statistics - 2009""]",[],[],[],[],Skip to Content -1400,https://www.mass.gov/locations/state-police-millbury-barracks/locations,Geographic,Info About Agencies,Locations | Mass.gov,"",200,Mass.gov,"[""Other locations related to State Police Millbury Barracks""]","[""Showing 1 - 7 of 7 results for:"", ""State Police Athol Barracks"", ""State Police Belchertown Barracks"", ""State Police Brookfield Barracks"", ""State Police Devens Barracks"", ""State Police Holden Barracks"", ""State Police Leominster Barracks"", ""State Police Sturbridge Barracks""]",[],[],[],[],"" -1401,https://www.coppelltx.gov/faq.aspx?qid=309,Not Criminal Justice Related,Not Criminal Justice Related,FAQs • Why did the City choose to participate in the program,"",200,"Coppell, TX | Official Website",[],"[""▼ Texas Power Switch""]","[""Categories"", ""Live Edit"", ""Loading""]",[],[],[],Skip to Main Content -1402,https://southcoffeyvilleok.gov/police-department/screen-shot-2016-09-27-at-4-41-47-pm/,Poor Data Source,Poor Data Source,screen-shot-2016-09-27-at-4-41-47-pm -,"",200,403 Forbidden,[],"[""screen-shot-2016-09-27-at-4-41-47-pm""]","[""Contact Town of South Coffeyville"", """"]",[],[],[],"Town Alert ***************Boil Water Alert************* click here for more information Town Alert ***************Boil Water Alert************* click here for more information Town Alert ***************Boil Water Alert************* click here for more information Town Alert ***************Boil Water Alert************* click here for more information 2017 Water Report Town News Town Calendar Town Directory Town Help Desk Town Jobs Council Agendas & Minutes South Coffeyville Public Schools OK Union Public Schools OK Helpline BILL PAY Pay Utilities Pay Citations Pay Property Taxes Popular Resources My Town News Town History Project Government Town Council Town Clerk Court Clerk Deputy Treasurer Agendas & Minutes Ordinances Voting Public Meetings Town Utilities City Court Maintenance Dept. Police Department Fire Department Animal Control Permits & Licenses Business Business Directory Community Data Permits Relocate Here South Town Center Contact Town HOME Popular Resources Town Government Town Utilities Maintenance Dept. Police Department City Court Business News Town Help Desk Contact Town screen-shot-2016-09-27-at-4-41-47-pm Contact Town of South Coffeyville PO Box 100 419 Willow Street South Coffeyville, OK 74072 City Hall: (918) 255-6045 Fax: (918) 255-6430 Directions to City Hall Town Directory Economic Development Pay Utility Bill FEMA Disaster Assistance Section 508 Accessibility Privacy Policy Legal Disclaimer 2017 Water Report Town News Town Calendar Town Directory Town Help Desk Town Jobs Council Agendas & Minutes South Coffeyville Public Schools OK Union Public Schools OK Helpline BILL PAY Pay Utilities Pay Citations Pay Property Taxes Popular Resources My Town News Town History Project Government Town Council Town Clerk Court Clerk Deputy Treasurer Agendas & Minutes Ordinances Voting Public Meetings Town Utilities City Court Maintenance Dept. Police Department Fire Department Animal Control Permits & Licenses Business Business Directory Community Data Permits Relocate Here South Town Center Contact Town 2017 Water Report Town News Town Calendar Town Directory Town Help Desk Town Jobs Council Agendas & Minutes South Coffeyville Public Schools OK Union Public Schools OK Helpline BILL PAY Pay Utilities Pay Citations Pay Property Taxes Popular Resources My Town News Town History Project Government Town Council Town Clerk Court Clerk Deputy Treasurer Agendas & Minutes Ordinances Voting Public Meetings Town Utilities City Court Maintenance Dept. Police Department Fire Department Animal Control Permits & Licenses Business Business Directory Community Data Permits Relocate Here South Town Center Contact Town 2017 Water Report Town News Town Calendar Town Directory Town Help Desk Town Jobs Council Agendas & Minutes South Coffeyville Public Schools OK Union Public Schools OK Helpline BILL PAY Pay Utilities Pay Citations Pay Property Taxes Popular Resources My Town News Town History Project Government Town Council Town Clerk Court Clerk Deputy Treasurer Agendas & Minutes Ordinances Voting Public Meetings Town Utilities City Court Maintenance Dept. Police Department Fire Department Animal Control Permits & Licenses Business Business Directory Community Data Permits Relocate Here South Town Center Contact Town 2017 Water Report Town News Town Calendar Town Directory Town Help Desk Town Jobs Council Agendas & Minutes South Coffeyville Public Schools OK Union Public Schools OK Helpline " -1403,http://www.longbeach.gov/police/press-releases/halloween-safety-tips/,Media Bulletins,Agency-Published Resources,HALLOWEEN SAFETY TIPS,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 10/23/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: HALLOWEEN SAFETY TIPS Contact: Media Relations Detail (562) 570-5273 The Long Beach Police Department would like to warn parents about marijuana laced candy, and encourage the community to practice safety tips to ensure a fun and safe Halloween. Can you identify which candies pictured in this photo are laced with marijuana? Surprisingly, all of them! These candies were found at various Long Beach marijuana dispensaries and may or may not come packaged. Parents are encouraged to check the candy their children bring home, and to dispose of anything that is not factory sealed. If unsure, but something looks or smells suspicious, get rid of it immediately. Although there have been no reported incidents in Long Beach where a child unknowingly ingested marijuana laced candy, parents should still take every precaution. Other Halloween safety tips that are just as important are as follows: Be sure your child's activities are age-appropriate All children should be accompanied by an adult Only visit homes that are well lighted and never go into a stranger's house Stay on the sidewalk and only cross at corners Stay in well populated areas and never cut through alleys or parks Apply reflective tape to your child’s costume or use glow sticks for better visibility Use face paint rather than masks that may block your child’s vision Map out your route ahead of time and carry a flash light with you Ensure tips of any props (pitchfork, sword, etc.) your child is carrying are smooth Be cautious of animals and keep your pet(s) indoors Consider trick-or-treating at participating malls or shopping centers Report any suspicious or illegal activity by calling 9-1-1 immediately Look out for cars and if you are out driving, be sure to drive slow and cautious in areas where pedestrians are present Reminder: The curfew law in Long Beach prohibits anyone 17 years old or younger from being out past 10:00 p.m. without a parent/guardian, unless going to or returning home from work or an organized event supervised by an adult, without any detour or stop. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -1404,http://www.ryepolice.us/logs/police-logs-for-21716-22316,Calls for Service,Police & Public Interactions,Rye Police Department Police Logs for 2/17/16-2/23/16 - Rye Police Department,"",200,Rye Police Department Welcome to the Rye Police Department - Rye Police Department,"[""Police Logs for 2/17/16-2/23/16""]","[""Police Logs for 2/17/16-2/23/16""]","[""Navigation"", ""Follow Us"", ""Facebook"", ""Email Updates"", ""Storm Preparedness Guide""]",[],[],[], -1405,https://www.southbendin.gov/police/,Contact Info & Agency Meta,Info About Agencies,South Bend Police Department | South Bend Police Department,"",200,403 Forbidden,"[""South Bend Police Department""]","[""MISSI ON"", ""VISION"", ""Useful Links"", ""Participate"", ""Meet the Department"", ""REGISTER A CAMERA"", ""South Bend"", ""Social Media""]","[""NEED TO FILL OUT A SHOPLIFTING FORM?"", ""NEW! File an Online Police Report"", ""View the Public Information Bulletin"", ""Register Your Security Camera with SBPD"", ""Visit Our Transparency Hub"", ""Click here to read a message from the Chief"", ""get involved in your community"", ""Police Athletic League"", ""Michiana Crime Stoppers"", ""Cadets and Jr. Cadets"", ""Volunteer with SBPD"", ""Neighborhood Watch"", ""Group Violence Intervention"", ""an introduction to your officers and civilians who serve"", ""Police Crime Reports"", ""stay connected, be informed""]","[""Travis Kukla Patrolman (First Class) Learn More"", ""Sienna Sears Patrolman (First Class) Learn More"", ""Jarveair Bourn Patrolman (First Class) Learn More"", ""Brianne Fenton Crime Analyst Learn More"", ""Tricia Deal Manager of Property & Evidence Room Learn More""]",[],[],Skip to main content -1406,https://beaumonttexas.gov/beaumont-police-investigating-officer-involved-shooting-lindbergh-overpass/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -1407,https://police.greenvillesc.gov/324/business-assistance,Not Criminal Justice Related,Not Criminal Justice Related,"Business Assistance | Greenville, SC - Official Website",Review links and information on various incentives and programs for business assistance. ,200,"Police Department | Greenville, SC - Official Website","[""Business Assistance""]","[""Business License Incentive"", ""LADDER"", ""State & County Incentives""]","[""Loading""]",[],[],[],"Skip to Main Content Government Departments Business Visitors Residents Search Home Departments Economic Development Business Incentives Business Assistance Business Assistance Business License Incentive In 2021, City Council passed a new ordinance, creating Chapter 8 Article II to provide for certain economic development stimulus incentives. Incentive Program Application Eligible businesses must apply for the program each year that it is available. The program for existing businesses is scheduled to end June 30, 2027. This program will be administrated by the Economic Development Department. If you have questions about the Economic Development Business License Incentive Program please contact: edincentiveprogram@greenvillesc.gov . More Information LADDER The LADDER program is a comprehensive job training/placement program to reduce barriers qualified residents face in accessing employment opportunities, including education, training, child care transportation, uniforms, and tools. State & County Incentives Visit the Greenville Area Development Corporation's website for more information on the incentives offered by the State of South Carolina and Greenville County. Business License Incentives Business License Calculators Downtown Special Events Parking unity park falls park Bus & Trolley AFFORDABLE HOUSING Agendas & Minutes Home Contact Us Accessibility /QuickLinks.aspx 206 S Main Street, Greenville, SC 29601 Police Non-Emergency: 864-271-5333 Greenville Cares Information Center 864-232-2273 Back to Top Enable Google Translate Government Departments Business Visitors Residents Search Home Departments Economic Development Business Incentives Business Assistance Business Assistance Business License Incentive In 2021, City Council passed a new ordinance, creating Chapter 8 Article II to provide for certain economic development stimulus incentives. Incentive Program Application Eligible businesses must apply for the program each year that it is available. The program for existing businesses is scheduled to end June 30, 2027. This program will be administrated by the Economic Development Department. If you have questions about the Economic Development Business License Incentive Program please contact: edincentiveprogram@greenvillesc.gov . More Information LADDER The LADDER program is a comprehensive job training/placement program to reduce barriers qualified residents face in accessing employment opportunities, including education, training, child care transportation, uniforms, and tools. State & County Incentives Visit the Greenville Area Development Corporation's website for more information on the incentives offered by the State of South Carolina and Greenville County. Business License Incentives Business License Calculators Downtown Special Events Parking unity park falls park Bus & Trolley AFFORDABLE HOUSING Agendas & Minutes Home Contact Us Accessibility /QuickLinks.aspx 206 S Main Street, Greenville, SC 29601 Police Non-Emergency: 864-271-5333 Greenville Cares Information Center 864-232-2273 Back to Top Enable Google Translate " -1408,https://www.wakeforestnc.gov/police/about-us/police-jobs/police-officer-employment,Training & Hiring Info,Info About Officers,"Police Officer Employment | Town of Wake Forest, NC",The following is a general progression of the application process and will indicate where a candidate is in the hiring process:Complete an application of employment for the Town of Wake Forest online through NEOGOV.,200,"Town of Wake Forest, NC","[""Police Officer Employment""]","[""joyner_park_1.jpg"", ""Town Hall Closed Friday, March 29"", ""Search form"", ""You are here""]","[""Minimum Qualifications"", ""Additional Benefits"", ""Police Officer Starting Salaries Based on Experience"", ""Additions to Salaries"", ""Pay Scale""]",[],[],[],Skip to main content -1409,https://spdblotter.seattle.gov/2019/01/25/police-arrest-man-following-stabbing-in-pioneer-square-neighborhood/,Media Bulletins,Agency-Published Resources,Police Arrest Man Following Thursday Night Stabbing in Pioneer Square Neighborhood - SPD Blotter,"",200,403 Forbidden,"[""Police Arrest Man Following Thursday Night Stabbing in Pioneer Square Neighborhood""]","[""Find Posts By Topic"", ""Featured Posts"", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],"Seattle.gov Choose a language: English English Google Translate may not accurately translate all content. Read disclaimer . For general City questions, please call 206-684-2489 . Tell us your requested language in English, and we can connect you with an interpreter. Continue Cancel Español Es posible que Google Translate no traduzca con precisión todo el contenido. Lea el descargo de responsabilidad . Si necesita ayuda en otro idioma, díganos en inglés nombre del idioma que necesita y lo conectaremos con un intérprete: 206-684-2489 Seguir Cancelar 中國語文 Google翻譯可能無法準確翻譯所有內容。 閱讀免責聲明 。 如果您需要翻譯,請用英語説出您所需要的語言,我們將爲你連接口譯員: 206-684-2489 繼續 取消 简体中文 Google翻译可能无法准确翻译所有内容。 阅读免责声明 。 如果您需要翻译,请用英语说出您所需要的语言,我们将为你连接口译员: 206-684-2489 继续 取消 Tiếng Việt Google Dịch có thể không dịch chính xác tất cả nội dung. Đọc tuyên bố từ chối trách nhiệm . Nếu quý vị cần hỗ trợ về ngôn ngữ, xin vui lòng cho chúng tôi biết ngôn ngữ quý vị cần hỗ trợ bằng tiếng Anh (ví dụ “Vietnamese”), chúng tôi sẽ kết nối quý vị với một thông dịch viên: 206-684-2489 Tiếp tục Huỷ bỏ русский язык Google Translate не может точно перевести весь контент. Прочтите отказ от ответственности . Если вам нужна языковая помощь, сообщите нам на английском, какой язык вам нужен, и мы свяжем вас с переводчиком: 206-684-2489 Продолжать Отмена Af-Soomaali Google Translate ayaan si sax ah u turjumi karin dhammaan waxyaabaha ku jira. Akhri afeef . Haddii aad u baahan tahay caawimaad luqadeed, fadlan noogu sheeg Ingiriisiga luqadda aad u baahan tahay, ka dib waxaan kugu xiri doonnaa turjubaan: 206-684-2489 Sii wad Jooji አማርኛ የጉግል ትርጉም ሁሉንም ይዘቶች በትክክል መተርጎም ላይችል ይችላል። ማስተባበያ አንብብ ፡፡ ኣስተርጓሚ ካስፈለግዎ የሚፈልጉትን ቋንቋ በእንግልዝኛ ይንገሩን፣ ከኣስተርጓሚ እናገናኝዎታለን። 206-684-2489 ቀጥል ሰርዝ 한국어 구글은 정확하게 모든 내용을 번역하지 않을 수 있습니다 번역. 읽기 면책 조항 . 언어지원이 필요한 경우, 필요한 언어를 영어로 말씀해 주시면 통역사와 연결해 드리겠습니다: 206-684-2489 계속하다 취소 Tagalog Maaaring hindi tumpak na isalin ng Google Translate ang lahat ng nilalaman. Basahin ang disclaimer . Para sa mga pangkalahatang katanungan sa Lungsod, mangyaring tawagan ang 206-684-2489 . Sabihin sa amin ang hiniling mong wika sa Ingles, at maikokonekta ka namin sa isang interpreter. Magpatuloy Kanselahin ภาษาไทย Google Translate อาจแปลเนื้อหาทั้งหมดไม่ถูกต้อง อ่านข้อจำกัดความรับผิดชอบ สำหรับคำถามทั่วไปเกี่ยวกับเมืองโปรดโทร 206-684-2489 บอกภาษาที่คุณต้องการเป็นภาษาอังกฤษและเราสามารถติดต่อคุณกับล่ามได้ ดำเนินการต่อ ยกเลิก 日本語 Google翻訳は、すべてのコンテンツを正確に翻訳するとは限りません. 免責事項をお読みください 。 市の一般的な質問については 206-684-2489 に電話してください。ご希望の言語を英語で教えていただければ、通訳をご案内いたします。 継続する キャンセル ភាសាខ្មែរ កម្មវិធីបកប្រែហ្គូហ្គោលមិនអាចបកប្រែមាតិកាទាំងអស់បានត្រឹមត្រូវទេ។ អានការបដិសេធ។ សម្រាប់សំណួរទូទៅរបស់ទីក្រុងសូមទូរស័ព្ទមក 206-684-2489 ។ ប្រាប់យើងពីភាសាដែលអ្នកស្នើសុំជាភាសាអង់គ្លេសហើយយើងអាចភ្ជាប់អ្នកជាមួយអ្នកបកប្រែភាសា។ បន្ត បោះបង់ ພາສາລາວ Google Translate ອາດຈະບໍ່ແປເນື້ອຫາທັງ ໝົດ ຢ່າງຖືກຕ້ອງ. ອ່ານປະຕິເສດ . ສຳ ລັບ ຄຳ ຖາມທົ່ວໄປຂອງເມືອງ, ກະລຸນາໂທຫາ 206-684-2489 . ບອກພວກເຮົາເປັນພາສາອັງກິດທີ່ທ່ານຮ້ອງຂໍ, ແລະພວກເຮົາສາມາດເຊື່ອມຕໍ່ທ່ານກັບນາຍແປພາສາ. ສືບຕໍ່ ຍົກເລີກ Українська Перекладач Google може не точно перекласти весь вміст. Прочитайте застереження . За загальними запитаннями про місто, будь ласка, телефонуйте 206-684-2489 . Розкажіть нам про вашу мову англійською мовою, і ми можемо зв’язати вас із перекладачем. Продовжуйте Скасувати Français Google Traduction peut ne pas traduire correctement tout le contenu. Lisez la clause de non-responsabilité . Pour des questions générales sur la ville, veuillez appeler le 206-684-2489 . Dites-nous votre langue souhaitée en anglais, et nous pourrons vous mettre en contact avec un interprète. Continuer Annuler " -1410,https://www.mass.gov/doc/2020-chelmsford-police-lieutenant-sole-assessment-center-examination-in-title-employment/download,Training & Hiring Info,Info About Officers,"","",200,"","","","","","","","" -1411,http://www.longbeach.gov/police/press-releases/fatal-traffic-collision/,Media Bulletins,Agency-Published Resources,FATAL TRAFFIC COLLISION,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 4/29/2016 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: FATAL TRAFFIC COLLISION Contact: Media Relations Detail (562) 570-5273 On April 28, 2016, at approximately 4:36 PM officers from the Long Beach Police Department responded to a report of a vehicle versus vehicle traffic collision at Spring Street and El Dorado Park Drive. Upon Officers arrival they immediately began CPR on a non-responsive female who was involved in the collision. Long Beach Fire personnel arrived shortly after and continued life saving measures until they made a determination that the female was deceased. A preliminary investigation of the collision reviled that a Hyundai Sonata being driven by a 57-year-old male resident of Long Beach was traveling westbound on Spring Street. The male driver momentarily look down away from the roadway and when he looked back up he saw that a Toyota Scion was stopped in front of him. The male had no time to react and collided with the rear of the Scion. The deceased female was a 31-year-old resident of Downey. Her name is being withheld until such time that the Los Angeles County Coroner’s Office notifies the female’s next of kin. Anyone with information regarding this collision is urged to call Collision Investigations Detective D. Lauro at (562) 570-7355. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -1412,https://oceansprings-ms.gov/form-pdf/ospd-police-reserve-application/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -1413,https://www.alamoheightstx.gov/public-safety/police/services/solicitor-information/,Resources,Agency-Published Resources,Solicitor Information - City of Alamo Heights,"",200,403 Forbidden,"[""Solicitor Information""]","[""Definitions:""]",[],[],[],[],"" -1414,https://elkhartlakewi.gov/departments/police/meet-us/,Personnel Records,Info About Officers,Meet Us - Village of Elkhart Lake,"",200,Error retrieving title: 'NoneType' object has no attribute 'text',"[""VILLAGE OF ELKHART LAKE POLICE DEPARTMENT STAFF""]","[""CONTACT US"", ""MORE ABOUT ELPD"", ""VILLAGE DEPARTMENTS""]","[""K-9 Copper"", ""Michael Meeusen, Chief of Police"", ""Jeremiah Pritzl, Sergeant"", ""Travis Auch, School Resource Officer"", ""Brenda Garcia, Police Officer"", ""K-9 Copper"", ""Brad Abel, Police Officer"", ""Robert Toeller, Police Officer"", ""Dylan Ninmer, Police Officer"", ""Thomas Kultgen, Police Officer"", ""Evan Gilbert, Police Officer"", ""Kelly Sippel, Police Officer"", ""Phil Schaefer, Police Officer"", ""Tyler Olig, Police Officer"", ""Amy Gross, Police Officer"", ""Marcus Anderson, Police Officer"", ""Noah Bramstedt, Police Officer"", ""VILLAGE DEPARTMENTS"", ""VILLAGE SERVICES"", ""KEY VILLAGE CONTACTS""]",[],[],[],"" -1415,https://www.sanramon.ca.gov/our_city/departments_and_divisions/police/police_news/weekly_arrest_log,Arrest Records,Police & Public Interactions,Weekly Arrest Log - City of San Ramon,"",200,Just a moment...,"[""Weekly Arrest Log""]","[""Contact Us"", ""Useful Links""]",[],[],[],[],"" -1416,https://www.dps.nm.gov/blog/2022/10/22/silver-alert-alamogordo-police-department-ralph-magruder/,Resources,Agency-Published Resources,SILVER ALERT – Otero County Sheriff's Office– Ralph Magruder - NM Department of Public Safety,"",200,Home - NM Department of Public Safety,"[""SILVER ALERT – Otero County Sheriff’s Office– Ralph Magruder""]",[],"[""Location"", ""Sitemap"", ""Quick Links"", ""Social Media Links""]",[],[],[],"" -1417,https://www.ashevillenc.gov/news/asheville-police-department-to-add-patrol-district-realign-existing-districts-in-2020/,Media Bulletins,Agency-Published Resources,ERROR: The request could not be satisfied,"",200,The City of Asheville - Your Asheville,"[""403 ERROR""]","[""The request could not be satisfied.""]",[],[],[],[],"" -1418,https://www.naperville.il.us/services/naperville-police-department/programs-and-services/police-department-tours/,Resources,Agency-Published Resources,Police Department Tours | The City of Naperville,Facility tours are educational and structured to help residents better understand the workings of a police department.,200,Home | The City of Naperville,"[""Police Department Tours""]","[""Programs and Services"", ""Contact Us"", ""Request a Tour"", ""Naperville Police Department""]","[""Explore"", ""TOUR INFORMATION"", ""TOUR INFORMATION"", ""REQUESTOR INFORMATION"", ""REQUESTOR INFORMATION"", ""GROUP INFORMATION"", ""GROUP INFORMATION""]",[],"[""Helping Residents Build a Better Community"", ""Resources for Doing Business in Naperville""]",[],"Menu Search Menu Search Search Main Menu Navigation About Naperville + An Award-Winning Community Demographics and Key Facts Education Historic Preservation in Naperville Projects in Naperville Transportation and Parking Townships Government + Boards and Commissions City Leadership Team City Finances Annual Budget and Financial Reports Purchasing and Bids Taxes and Financial Forms Utility Services and Billing General Billing Water Street TIF District Coronavirus Resources Diversity, Equity and Inclusion A Community of Belonging DEI Defined DEI Timeline Youth Involvement Embracing Community Environmental Sustainability in Naperville Grants Meetings and Agendas Legislative Priorities Meeting Room Reservations Meet Your City Council Mayor Scott A. Wehrli Councilman Ian Holzhauer Councilman Patrick Kelly Councilman Paul Leong Councilwoman Allison Longenbaugh Councilman Josh McBroom Councilwoman Jennifer Bruzan Taylor Councilman Dr. Benjamin M. White Councilman Nate Wilson Municipal Center Municipal Code Open Data Proclamations Strategic Plan Task Forces Voting and Voter Registration Services + Brush, Leaf & Yard Waste Curbside Bulk Brush Collection Leaf Collection Yard Waste Collection Electric Utility Your Electric Service Electrical Safety Powering Our Community for the Future FOIA Request Garbage and Recycling Residential Garbage Collection Garbage Carts Curbside Recycling Program Recycling Carts Recycling Drop-Off Center Household Hazardous Waste Facility Electronics Recycling Holiday Lights Recycling Naperville Fire Department About the Fire Department Emergency Preparedness Inspections and Permits Programs and Services Safety and Public Education Naperville Police Department About the Police Department Programs and Services Community Education and Crime Prevention Office of the Chief of Police Investigations Division Patrol Division Join NPD Permits and Licenses Senior Services and Resources Services and Resources for People with Disabilities Snow and Ice Removal Snow Plowing and Salting Mailboxes and Parkway Sod Winter Updates Water/Wastewater Utility Your Water Service Maintaining Our System Common Water Issues Residents + Helping Residents Build a Better Community You can find a collection of city information relevant to everyone in Naperville, from new residents to long-time community members. Go to this section Businesses + Resources for Doing Business in Naperville Whether you're starting, running or visiting a Naperville business - find resources to help you. Go to this section Enjoy Naperville + Biking Maps, Guides and Plans Commander Dan Shanower September 11 Memorial Explore the Community Festivals and Parades Millennium Wall Naperville Community Concert Center Naperville Riverwalk Naper Settlement & Homestead Von Oven Scout Reservation Walks and Runs + + + + Helping Residents Build a Better Community You can find a collection of city information relevant to everyone in Naperville, from new residents to long-time community members. Go to this section + Resources for Doing Business in Naperville Whether you're starting, running or visiting a Naperville business - find resources to help you. Go to this section + " -1419,https://southamptontownnypolice.gov/faq.aspx?qid=499,Resources,Agency-Published Resources,FAQs • What beaches are Southampton Town beaches?,"",200,"Police | Southampton, NY - Official Website",[],"[""▼ Parks & Rec""]","[""Site Tools"", ""Categories"", ""Live Edit"", ""Contact Us"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -1420,https://spdblotter.seattle.gov/2014/05/16/police-bolstering-patrols-as-detectives-investigate-recent-shootings/,Media Bulletins,Agency-Published Resources,Police Bolstering Patrols As Detectives Investigate Recent Shootings - SPD Blotter,"",200,403 Forbidden,"[""Police Bolstering Patrols As Detectives Investigate Recent Shootings""]","[""Find Posts By Topic"", ""Featured Posts"", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],"Seattle.gov Choose a language: English English Google Translate may not accurately translate all content. Read disclaimer . For general City questions, please call 206-684-2489 . Tell us your requested language in English, and we can connect you with an interpreter. Continue Cancel Español Es posible que Google Translate no traduzca con precisión todo el contenido. Lea el descargo de responsabilidad . Si necesita ayuda en otro idioma, díganos en inglés nombre del idioma que necesita y lo conectaremos con un intérprete: 206-684-2489 Seguir Cancelar 中國語文 Google翻譯可能無法準確翻譯所有內容。 閱讀免責聲明 。 如果您需要翻譯,請用英語説出您所需要的語言,我們將爲你連接口譯員: 206-684-2489 繼續 取消 简体中文 Google翻译可能无法准确翻译所有内容。 阅读免责声明 。 如果您需要翻译,请用英语说出您所需要的语言,我们将为你连接口译员: 206-684-2489 继续 取消 Tiếng Việt Google Dịch có thể không dịch chính xác tất cả nội dung. Đọc tuyên bố từ chối trách nhiệm . Nếu quý vị cần hỗ trợ về ngôn ngữ, xin vui lòng cho chúng tôi biết ngôn ngữ quý vị cần hỗ trợ bằng tiếng Anh (ví dụ “Vietnamese”), chúng tôi sẽ kết nối quý vị với một thông dịch viên: 206-684-2489 Tiếp tục Huỷ bỏ русский язык Google Translate не может точно перевести весь контент. Прочтите отказ от ответственности . Если вам нужна языковая помощь, сообщите нам на английском, какой язык вам нужен, и мы свяжем вас с переводчиком: 206-684-2489 Продолжать Отмена Af-Soomaali Google Translate ayaan si sax ah u turjumi karin dhammaan waxyaabaha ku jira. Akhri afeef . Haddii aad u baahan tahay caawimaad luqadeed, fadlan noogu sheeg Ingiriisiga luqadda aad u baahan tahay, ka dib waxaan kugu xiri doonnaa turjubaan: 206-684-2489 Sii wad Jooji አማርኛ የጉግል ትርጉም ሁሉንም ይዘቶች በትክክል መተርጎም ላይችል ይችላል። ማስተባበያ አንብብ ፡፡ ኣስተርጓሚ ካስፈለግዎ የሚፈልጉትን ቋንቋ በእንግልዝኛ ይንገሩን፣ ከኣስተርጓሚ እናገናኝዎታለን። 206-684-2489 ቀጥል ሰርዝ 한국어 구글은 정확하게 모든 내용을 번역하지 않을 수 있습니다 번역. 읽기 면책 조항 . 언어지원이 필요한 경우, 필요한 언어를 영어로 말씀해 주시면 통역사와 연결해 드리겠습니다: 206-684-2489 계속하다 취소 Tagalog Maaaring hindi tumpak na isalin ng Google Translate ang lahat ng nilalaman. Basahin ang disclaimer . Para sa mga pangkalahatang katanungan sa Lungsod, mangyaring tawagan ang 206-684-2489 . Sabihin sa amin ang hiniling mong wika sa Ingles, at maikokonekta ka namin sa isang interpreter. Magpatuloy Kanselahin ภาษาไทย Google Translate อาจแปลเนื้อหาทั้งหมดไม่ถูกต้อง อ่านข้อจำกัดความรับผิดชอบ สำหรับคำถามทั่วไปเกี่ยวกับเมืองโปรดโทร 206-684-2489 บอกภาษาที่คุณต้องการเป็นภาษาอังกฤษและเราสามารถติดต่อคุณกับล่ามได้ ดำเนินการต่อ ยกเลิก 日本語 Google翻訳は、すべてのコンテンツを正確に翻訳するとは限りません. 免責事項をお読みください 。 市の一般的な質問については 206-684-2489 に電話してください。ご希望の言語を英語で教えていただければ、通訳をご案内いたします。 継続する キャンセル ភាសាខ្មែរ កម្មវិធីបកប្រែហ្គូហ្គោលមិនអាចបកប្រែមាតិកាទាំងអស់បានត្រឹមត្រូវទេ។ អានការបដិសេធ។ សម្រាប់សំណួរទូទៅរបស់ទីក្រុងសូមទូរស័ព្ទមក 206-684-2489 ។ ប្រាប់យើងពីភាសាដែលអ្នកស្នើសុំជាភាសាអង់គ្លេសហើយយើងអាចភ្ជាប់អ្នកជាមួយអ្នកបកប្រែភាសា។ បន្ត បោះបង់ ພາສາລາວ Google Translate ອາດຈະບໍ່ແປເນື້ອຫາທັງ ໝົດ ຢ່າງຖືກຕ້ອງ. ອ່ານປະຕິເສດ . ສຳ ລັບ ຄຳ ຖາມທົ່ວໄປຂອງເມືອງ, ກະລຸນາໂທຫາ 206-684-2489 . ບອກພວກເຮົາເປັນພາສາອັງກິດທີ່ທ່ານຮ້ອງຂໍ, ແລະພວກເຮົາສາມາດເຊື່ອມຕໍ່ທ່ານກັບນາຍແປພາສາ. ສືບຕໍ່ ຍົກເລີກ Українська Перекладач Google може не точно перекласти весь вміст. Прочитайте застереження . За загальними запитаннями про місто, будь ласка, телефонуйте 206-684-2489 . Розкажіть нам про вашу мову англійською мовою, і ми можемо зв’язати вас із перекладачем. Продовжуйте Скасувати Français Google Traduction peut ne pas traduire correctement tout le contenu. Lisez la clause de non-responsabilité . Pour des questions générales sur la ville, veuillez appeler le 206-684-2489 . Dites-nous votre langue souhaitée en anglais, et nous pourrons vous mettre en contact avec un interprète. Continuer Annuler " -1421,https://www.newlexingtonohio.gov/resources/forms/police-department-public-records-request-form/,Records Request Info,Agency-Published Resources,Police Department Public Records Request Form - Village of New Lexington,"New Lexington, Ohio",200,Error retrieving title: dictionary changed size during iteration,"[""Police Department Records Request Form""]",[],[],[],[],[],"About Our Town History Departments Village Council Village Council Elected Officials Police Department Fire/EMS Income Tax Department Parks and Recreation Tree Commission Shelter House Street Canvassing Calendar Swimming Pool Administration Offices Water Department Finance Department News Village Event Calendar Announcements Resources Ordinances & Resolutions Council Meeting Minutes New Lexington Charter Zoning Ordinance Forms Requests Public Records Request Form Citizen Request Form Police Department Public Records Request Form Permits Parades and Assemblies Permit Application Commercial Zoning Permit Application Residential Zoning Permit Application Temporary Sales Application Fence Permit Request Form Solicitation Permit Backflow-Prevention Form(Download) Become a Collaborator Select Page About Our Town History Departments Village Council Village Council Elected Officials Police Department Fire/EMS Income Tax Department Parks and Recreation Tree Commission Shelter House Street Canvassing Calendar Swimming Pool Administration Offices Water Department Finance Department News Village Event Calendar Announcements Resources Ordinances & Resolutions Council Meeting Minutes New Lexington Charter Zoning Ordinance Forms Requests Public Records Request Form Citizen Request Form Police Department Public Records Request Form Permits Parades and Assemblies Permit Application Commercial Zoning Permit Application Residential Zoning Permit Application Temporary Sales Application Fence Permit Request Form Solicitation Permit Backflow-Prevention Form(Download) Become a Collaborator Police Department Records Request Form Requestor Information Information regarding the records you are requesting: Agreement I understand by submitting this form, I attest to the accuracy of all information provided. New Lexington Police Department is responsible for the release of offense/incident reports and accident reports. The request will be processed during normal business hours Monday through Friday 8:00am to 4:00pm. All other requests for public records shall be directed to the Village Administrator’s Office. The cost for accident reports are $5.00, all other copies are $.15 a page. Only completed reports approved by a supervisor will be released. This request corresponds with R.C 149.43 in accordance with Public Records. Village of New Lexington 215 S. Main Street New Lexington OH, 43764 Phone: (740) 342-1633 Fax: (740) 342-1292 " -1422,https://champaignil.gov/police/resources/gun-violence-prevention-and-response/,Resources,Agency-Published Resources,Gun Violence Prevention and Response - City of Champaign,"",200,403 Forbidden,"[""Gun Violence Prevention and Response""]","[""Police Department"", ""Quick Links"", ""Police Department News"", ""Contact Us""]","["""", ""Jump to the latest shooting incident statistics"", ""What is the City of Champaign Doing to Combat Gun Violence?"", ""Community Resources"", ""Shooting Incident Statistics""]",[],[],[],"" -1423,https://townofkremmling.colorado.gov/departments/police,Resources,Agency-Published Resources,Police | Town of Kremmling,"",200,Home | Town of Kremmling,"[""Police""]","[""Frequently Asked Questions"", ""Town of Kremmling"", ""We're Social""]",[],[],[],[],"" -1424,http://www.longbeach.gov/police/press-releases/murder-23-/,Media Bulletins,Agency-Published Resources,MURDER(23),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 6/6/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: MURDER Contact: Media Relations Detail (562) 570-5273 On Friday, June 5, 2015, at approximately 10:00 p.m., Long Beach Police responded to a shooting in the 1200 block of E. 17th Street, which resulted in the death of a male adult. When officers arrived, they discovered the victim, identified as 20-year-old Anthony Holston of Long Beach, had been struck in the upper body by gunfire. Long Beach Fire Department paramedics transported Victim Holston to a local hospital, where he was pronounced deceased. The preliminary investigation revealed the victim had become involved in a dispute with an unknown number of male subjects. The dispute escalated and there was an exchange of gunfire between the victim and suspect(s), who remain outstanding. The incident is being investigated as possibly gang-related. Anyone with information regarding this incident is urged to contact Long Beach Police Homicide Detectives Hugo Cortes and Oscar Valenzuela at (562) 570-7244. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -1425,http://www.longbeach.gov/police/press-releases/murder-pch-and-pacific/,Media Bulletins,Agency-Published Resources,MURDER PCH AND PACIFIC,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 10/3/2016 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: MURDER Contact: Media Relations Detail (562) 570-5273 On Monday, October 3, 2016, at approximately 2:40 a.m., Long Beach Police were dispatched to the area of Pacific Coast Highway and Pacific Avenue to assist Long Beach Fire Department with an individual lying in the street. Arriving officers located a male adult who sustained multiple stab wounds to the upper torso. Long Beach Fire Department personnel transported the victim to a local hospital where he succumbed to his injuries. The victim has been identified as Sergio Diaz Acosta, 25 years old and a resident of Long Beach. The incident is being investigated as gang related. A motive for the stabbing is unknown and the investigation remains ongoing. Anyone with information regarding this incident is asked to contact Long Beach Police Homicide Detectives Todd Johnson and Shea Robertson at (562) 570-7244. Anonymous tips may be submitted through ""LA Crime Stoppers"" by calling 1-800-222-TIPS (8477), downloading the ""P3 Tips"" app to your smart phone (available at the Apple App store and Google Play), or visiting www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -1426,https://champaignil.gov/2014/03/24/police-arrest-one-suspect-in-home-invasion/,Media Bulletins,Agency-Published Resources,Police Arrest One Suspect in Home Invasion - City of Champaign,"",200,403 Forbidden,"[""Police Arrest One Suspect in Home Invasion""]","[""News Releases"", ""Department News""]",[],[],[],[],"skip to content City of Champaign Main Menu Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs Police Arrest One Suspect in Home Invasion Search Posted on March 24, 2014 The Champaign Police Department is currently investigating a home invasion that occurred in the 00 block of Hanover Court on March 22, 2014. Police arrested one suspect and continue to search for at least two additional suspects involved in this incident. Officers were dispatched to a home invasion, in progress, at 8:48 p.m., after three males forced their way into the home and battered a male and female resident. The female was punched and a 29 year-old male was stabbed during a physical altercation with one of the suspects. The suspects then searched the home for unknown items before leaving in the residents’ vehicle. When officers arrived on scene, they observed three males bailing from the stolen vehicle and fleeing on foot. One of the suspects, Korey Coleman, 21, of Champaign, was apprehended by officers and arrested for Home Invasion. He was transported to the Champaign County Jail. The male victim was transported to Carle Hospital for what appeared to be non-life- threatening injuries. Officers are seeking information from the public to help identify the persons involved in this incident. Anyone with information about these crimes can contact the Champaign Police Department by calling (217) 351-4545 or callers can remain anonymous by calling Crime Stoppers at 373-8477 (TIPS). Information can also be sent by anonymous web tip by going to: www.373tips.com or by texting keyword “CCTIP” plus the information to 274637 (CRIMES). Categories: Police Department Press Releases Tags: Arrest , Champaign , Hanover Court , Home , Invasion , Korey Coleman , police , Suspect Subscribe to City News Read All City News News Releases General Construction Fire Department Police Department Department News City Council City Manager’s Office Equity and Engagement Department Finance Department Fire Department Human Resources Department Information Technologies Department Legal Department Library METCAD 9-1-1 Neighborhood Services Department Planning and Development Department Police Department Public Works Department The Champaign Insider City Newsletter City of Champaign City of Champaign 102 N. Neil St. Champaign, IL 61820 217-403-8700 Site Disclaimer I Privacy Policy City of Champaign Main Menu Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs City of Champaign " -1427,https://www.mass.gov/doc/rossi-cully-v-duxbury-police-department-related-superior-court-decision-52710/download,Court Cases,Jails & Courts Specific,"","",200,"","","","","","","","" -1428,https://galenaks.gov/view-more-http-emjophotography-pass-us-galenapolicedepartment2018-8/,Poor Data Source,Poor Data Source,"PO Fleming – City of Galena, Kansas","",200,Not Acceptable!,"[""PO Fleming""]","[""0 Comments""]","[""Weather Info"", ""Featured Gallery"", ""Directory"", ""About GALENAKS.GOV"", ""Upcoming Events"", ""Important Forms"", ""Quick Contact""]","[""Leave a comment Cancel reply"", ""Local Time"", ""Today"", ""Tuesday"", ""Wednesday"", ""Thursday"", ""Galena Police Department 2018"", ""Schermerhorn Park"", ""Galena Senior Citizens Weekly Meal"", ""Game Day and Special Events for Seniors"", ""2024 CITY COUNCIL MEETING MINUTES"", ""Assessment Removal Request""]","[""March 25, 2024"", ""March 26, 2024"", ""March 27, 2024"", ""March 28, 2024""]",[],"Manage Cookie Consent To provide the best experiences, we use technologies like cookies to store and/or access device information. Consenting to these technologies will allow us to process data such as browsing behavior or unique IDs on this site. Not consenting or withdrawing consent, may adversely affect certain features and functions. Functional Functional Always active The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network. Preferences Preferences The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user. Statistics Statistics The technical storage or access that is used exclusively for statistical purposes. The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you. Marketing Marketing The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes. Manage options Manage services Manage {vendor_count} vendors Read more about these purposes Accept Deny View preferences Save preferences View preferences {title} {title} {title} Manage Cookie Consent To provide the best experiences, we use technologies like cookies to store and/or access device information. Consenting to these technologies will allow us to process data such as browsing behavior or unique IDs on this site. Not consenting or withdrawing consent, may adversely affect certain features and functions. Functional Functional Always active The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network. Preferences Preferences The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user. Statistics Statistics The technical storage or access that is used exclusively for statistical purposes. The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you. Marketing Marketing The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes. Manage options Manage services Manage {vendor_count} vendors Read more about these purposes Accept Deny View preferences Save preferences View preferences {title} {title} {title} Manage Cookie Consent Manage Cookie Consent " -1429,http://www.longbeach.gov/police/press-releases/significant-crime-reduction-during-first-year-metro-blue-line-contract/,Media Bulletins,Agency-Published Resources,SIGNIFICANT CRIME REDUCTION DURING FIRST YEAR METRO BLUE LINE CONTRACT,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 9/20/2018 FOR IMMEDIATE RELEASE Press Release # Subject: SIGNIFICANT CRIME REDUCTION DURING FIRST YEAR METRO BLUE LINE CONTRACT Contact: Media Relations Detail (562) 570-5273 Metro Staff with Chief Luna (Click on the Photlarge) The Long Beach Police Department (LBPD) was awarded the Los Angeles County Metropolitan Transportation Authority (Metro) Blue Line security contract in 2017 and began services on July 1, 2017. Since the start of the partnership, the dedication and hard work of the men and women of the LBPD has shown outstanding success in reducing crime and increasing safety on the Blue Line. In the last year, through ongoing outreach and enforcement efforts, the LBPD has reduced Part 1 crime by 50% and Part 2 crime by 80% within the eight station platforms and trains that fall under the City’s jurisdiction. The presence of officers in and around the platforms has reduced assaults against train operators by 30%, and achieved an average Priority 1 response time of 2.38 minutes. These significant decreases are a direct result of the partnership between the Los Angeles County Metropolitan Transportation Authority (Metro) and the dedication of LBPD personnel. “I want to take this opportunity to thank the men and women of our Department for their outstanding success in reducing crime and disorder on the Blue Line during the first year of our contract,” said Chief of Police Robert Luna. “This is a true testament of the commitment, professionalism of our personnel and the partnerships we have developed with our community.” The LBPD works with Metro to continue our mission of preventing all crime and acts of terrorism, by having officers continuously ride trains and patrol Blue Line stations from Wardlow Road to the Downtown Long Beach area. To further support the field operations, the LBPD’s 2019 fiscal year budget will add one detective position dedicated to investigating Metro related crimes; and contract two “Quality of Life” officers who will focus their efforts on connecting persons experiencing homelessness to social services and resources. The LBPD will continue our partnership with Metro, to increase visibility and impact crime to ensure both our community and passengers always feel safe and protected when riding the Blue Line in Long Beach. For more information about how Part 1 and Part 2 crimes are classified visit: https://www2.fbi.gov/ucr/cius_04/appendices/appendix_02.html This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -1430,https://southamptontownnypolice.gov/faq.aspx?qid=297,Resources,Agency-Published Resources,FAQs • Does the Trustee’s Office handle shellfish permits?,"",200,"Police | Southampton, NY - Official Website",[],"[""▼ Trustees""]","[""Site Tools"", ""Categories"", ""Live Edit"", ""Contact Us"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -1431,https://www.mass.gov/doc/copper-in-drinking-water-faq-english-0/download,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,Mass.gov,[],[],[],[],[],[],"" -1432,https://police.beaumonttexas.gov/taxonomy-template/,Poor Data Source,Poor Data Source,"Taxonomy template – City of Beaumont, Texas","",200,403 Forbidden,"[""Taxonomy template""]",[],[],"[""Quick Links"", """"]",[],[],"Facebook X Instagram Search for: Home Administration Division Community Relations Community Programs Cops & Kids Honor Roll Police Museum Police 2 Citizen Community Advisory Finger Prints Internal Affairs Permits & Registrations Public Access Documents Records Management Reports Training Recruitment 911 Operation Center Criminal Investigation Divison Auto Theft Task Force Financial Crimes Family Violence Unit Patrol Division FAQ City Links Adopt a Pet Airport Building Permits & Inspections Chamber of Commerce City Jobs City Maps City Ordinances City Service Helpline EMS Emergency Preparedness Fire Department Food Permits & Inspections Garbage & Recycling GIS Data Health Services Online Payments Parks & Recreation Purchasing & Bids Rent a Community Center Senior Services Transit Services Government City Council City Manager Departments Press Releases Go to... Home Administration Division Community Relations Community Programs Cops & Kids Honor Roll Police Museum Police 2 Citizen Community Advisory Finger Prints Internal Affairs Permits & Registrations Public Access Documents Records Management Reports Training Recruitment 911 Operation Center Criminal Investigation Divison Auto Theft Task Force Financial Crimes Family Violence Unit Patrol Division FAQ City Links Adopt a Pet Airport Building Permits & Inspections Chamber of Commerce City Jobs City Maps City Ordinances City Service Helpline EMS Emergency Preparedness Fire Department Food Permits & Inspections Garbage & Recycling GIS Data Health Services Online Payments Parks & Recreation Purchasing & Bids Rent a Community Center Senior Services Transit Services Government City Council City Manager Departments Press Releases Search for: Taxonomy template Home Taxonomy template Taxonomy template Angela Wright 2016-10-20T07:18:33-05:00 [CONTENT] Quick Links Active Calls Wrecker Rotation Neighborhood Associations Map Law Beats Map Emergency Management Press Releases Municipal Court Public Records Contact Us Police 2 Citizen P.O. Box 3827 Beaumont, Texas 77704-3827 | (409) 980-8311 | © City of Beaumont, Texas | Americans with Disabilities Act Facebook X Instagram " -1433,http://www.longbeach.gov/police/press-releases/directed-enforcement-patrols-and-bicycle-theft-sting-results-in-arrests/,Media Bulletins,Agency-Published Resources,DIRECTED ENFORCEMENT PATROLS AND BICYCLE THEFT STING RESULTS IN ARRESTS,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -1434,http://www.lafayettepolice.us/354/juvenile-investigations,Resources,Agency-Published Resources,"Special Victims Unit | Lafayette, IN - Official Website",The mission of the Juvenile Division is to investigate crimes against juveniles and those offenses committed by juveniles.,200,"Police Department | Lafayette, IN - Official Website","[""Special Victims Unit""]","[""RESPONSIBILITIES"", ""-----------------------------------------------------------------------------"", ""RESOURCES""]","[""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -1435,https://www.mass.gov/directive/directive-93-7-exempt-sales-of-copying-machines-and-related-items,Not Criminal Justice Related,Not Criminal Justice Related,Directive 93-7: Exempt Sales of Copying Machines and Related Items | Mass.gov,"Sales and Use Tax ISSUE: When are retail sales of copying machines, related supplies, photocopies and service contracts exempt from sales tax? DIRECTIVE: Copying Machines. Retail sales of copying machines are subject to sales tax unless the copier is used directly and exclusively in an industrial plant in the actual manufacture of tangible personal property to be sold. See G.L. c. 64H, § 6(s). Supplies. The retail sale of copying machine supplies such as paper, toner and ink are exempt if the photocopies produced from these ingredient or component materials will be sold. See G.L. c. 64H, § 6(r). Retail sales of supplies that do not become an ingredient or component part of tangible personal property to be sold are exempt only if they are consumed and used directly and exclusively in an industrial plant in the actual manufacture of tangible personal property to be sold. See G.L. c. 64H, § 6(s). Photocopies. Retail sales of photocopies are subject to sales tax. Service Contracts. Generally, when the sales price of a service contract is separately stated from the sales price of the equipment and the purchase of the contract is optional, the purchase of the service contract is not subject to sales tax. The cost of a mandatory service contract which the buyer must purchase as part of the sale of the copying machine is included in the taxable sale price of the machine. See 830 CMR 64H.1.1(5)(g), for information regarding taxation of service contracts and replacement parts. Sales to Exempt Purchasers. Retail sales of tangible personal property, including copying machines, supplies and photocopies to government agencies or under certain circumstances to tax exempt organizations qualified under § 501(c)(3) of the Internal Revenue Code, are exempt from tax under G.L. c. 64H, § 6(d) and § 6(e) respectively. DISCUSSION OF LAW: General Laws Chapter 64H, § 2, imposes a tax upon retail sales in the commonwealth by any vendor of tangible personal property or telecommunications services unless specifically exempt. The definition of ""sales"" includes leases and rentals. G.L. c. 64H, § 1. However, the sale of any item of tangible personal property may be exempt if it is sold for an exempt use or if it is sold to an exempt purchaser. 1. Exempt Use a. Copying Machines General Laws Chapter 64H, § 6(s), exempts from taxation sales of machinery, and its replacement parts, used directly and exclusively in an industrial plant in the actual manufacture of tangible personal property to be sold. Machinery is ""used directly and exclusively"" in the manufacture of tangible personal property to be sold only where it is used solely during a manufacturing operation to cause a direct and immediate physical change upon such property. Id. An industrial plant is a factory at a fixed location primarily engaged in the manufacture, conversion or processing of tangible personal property to be sold in the regular course of business. b. Supplies General Laws Chapter 64H, § 6(r), exempts from taxation sales of materials, tools and fuel, or their substitutes, which become an ingredient or component part of tangible personal property to be sold. Materials, tools and fuel which do not become an ingredient or component part of tangible personal property to be sold may be exempt if they are consumed and used directly and exclusively in an industrial plant in the actual manufacture of tangible personal property to be sold. Id. A material, tool or fuel is ""consumed and used directly and exclusively in an industrial plant in the actual manufacture of tangible personal property to be sold"" only if its normal useful life is less than one year, or if its cost is allowable as an ordinary and necessary business expense for federal income tax purposes. Id. 2. Exempt Purchaser General Laws Chapter 64H, § 6(d), exempts from sales tax sales to the United States, the commonwealth, or their respective agencies. Sales to organizations exempt from taxation pursuant to section 501(c)(3) of the Internal Revenue Code (""tax exempt""), are exempt from sales tax provided that the tangible personal property sold is used in the conduct of the organization's exempt enterprise, and the organization obtains a certificate from the Commissioner of Revenue stating it is entitled to the exemption, and the vendor keeps a proper record of the sale. See G.L. c. 64H, § 6(e). EXAMPLES: 1. A company operating a photoprocessing business at a fixed location purchases a copying machine. The company's primary activity is the manufacturing of photographic images to be sold in the regular course of the company's business. The copying machine is used solely to cause a direct and immediate physical change upon the property to be sold during photoprocessing operations. The company also purchases supplies for the copying machine. The company's premises qualifies as a ""factory"" since the primary activity there consists of using mechanical power in photoprocessing manufacturing operations. See Letter Rulings 85-40 and 89-7, and Directive 88-9. The company's premises qualifies as an ""industrial plant"" because it consists of a factory at a fixed location used primarily for the manufacture of tangible personal property to be sold in the regular course of the company's business. The sale of the copying machine is exempt from tax since the machine is used directly and exclusively in an industrial plant in the actual manufacture of tangible personal property to be sold. The sales of supplies used in this machine are exempt if the supplies become an ingredient or component part of tangible personal property to be sold. Supplies that do not become an ingredient or component part of the tangible personal property sold are exempt only if they are consumed and used directly and exclusively in the industrial plant in the actual manufacture of tangible personal property to be sold. Sales of the photocopies are generally taxable. 2. Copying machines are leased for use by various ""tax exempt"" organizations that qualify for exemption under G.L. c. 64H, § 6(e) as discussed above and government entities, such as public universities and public libraries. These organizations and entities also purchase supplies for the copying machines, and make the copying machines availables to the general public. Leases of the copying machines and sales of supplies to qualified ""tax exempt"" organizations are exempt from taxation. Leases of the copying machines and sales of supplies to the federal government and its agencies, and to the commonwealth and its agencies, are exempt from taxation. Sales of tangible personal property by such ""tax exempt"" organizations and government agencies, however, are generally taxable. Thus, sales of photocopies by these institutions are generally subject to tax. See G.L. c. 64H, § 1, (definition of ""retailer""); see also DOR Directive 91-1 and Letter Ruling 92-3. CONCLUSION: Depending on the facts of each transaction, retail sales of copying machines, although generally taxable, may be exempt from taxation pursuant to G.L. c. 64H, § 6(d), § 6(e) or § 6(s). Sales of copying machine supplies, also generally taxable, may be exempt from taxation pursuant to G.L. c. 64H, § 6(d), § 6(e), § 6(r), or § 6(s). Generally, sales of photocopies are subject to tax. Exempt Usage. When claiming an exemption based on use pursuant to G.L. c. 64H, § 6(r) or § 6(s), a properly completed Form ST-12 certifying that the property is being purchased for an exempt use must be presented by the purchaser to the vendor. See 830 CMR 64H.8.1(5). Exempt Purchaser. When claiming an exemption as an exempt purchaser pursuant to G.L. c. 64H, § 6(d) or § 6(e), a properly completed Form ST-5 with an ST-2 copy (required for tax exempt organizations only) certifying that the purchaser is exempt must be presented by the purchaser to the vendor. See 830 CMR 64H.8.1(5). If a government entity claims the exemption but does not offer an Exempt Purchaser Certificate the vendor, to sell tax free, must obtain adequate documentation, generally, a copy of the government check, verifying that the purchaser is a government entity. /s/Mitchell Adams Mitchell Adams Commissioner of Revenue MA:HMP:kt December 21, 1993 DOR-D 93-7",200,Mass.gov,"[""Directive Directive 93-7: Exempt Sales of Copying Machines and Related Items""]","[""Notices & Alerts Hide Expand"", ""Table of Contents"", ""Help Us Improve Mass.gov with your feedback""]","[""notice Get important updates from DOR. Updated Feb. 5, 2024, 03:00 pm""]",[],[],[],"" -1436,http://www.longbeach.gov/police/press-releases/defendant-sentenced-to-45-years-for-charges-relating-to-human-trafficking/,Media Bulletins,Agency-Published Resources,DEFENDANT SENTENCED TO 45 YEARS FOR CHARGES RELATING TO HUMAN TRAFFICKING,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 1/6/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: DEFENDANT SENTENCED TO 45 YEARS FOR CHARGES RELATING TO HUMAN TRAFFICKING Contact: Media Relations Detail (562) 570-5273 A defendant convicted of various charges related to the human trafficking of a young girl has been sentenced to prison, demonstrating the Long Beach Police Department’s ongoing commitment towards aggressively combating this horrific crime. In January of 2011, a human trafficking investigation was launched after the arrest of a 13-year-old female for prostitution. Through the investigation, detectives learned that a male subject, identified as 33-year-old Ray Rhodes of Los Angeles, had begun forcing the 13-year-old into prostitution in the Long Beach area in September of 2010, until the time of her arrest. An arrest warrant was issued for the defendant for human trafficking, sexual assault, and pimping and pandering. He was ultimately arrested in San Bernardino County in May of 2011 on unrelated charges, in addition to the outstanding Long Beach warrant. On June 27, 2013, the defendant was convicted in Los Angeles Superior Court on two counts of lewd act with a child, and one count each of the following charges: procuring a child for a lewd act, pandering a minor under 16 years of age, and pimping a minor under 16 years of age. On January 2, 2014, the defendant was sentenced to 45 years in prison, and will not be eligible for parole until the age of 73. The investigative efforts, testimony, and victim follow-up carried out by the Juvenile Investigations Section detectives assigned to this case, were essential to its successful outcome. The Long Beach Police Department is committed to combating human trafficking and we will continue to use all tools available to us to identify those responsible and hold them accountable. Anyone who is, or has been a victim of human trafficking is urged to come forward by contacting the Long Beach Police Department’s Vice Investigations Detail at (562) 570-7219. Any victim in need of resources is also encouraged to contact detectives. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -1437,https://delcopa.gov/publicrelations/releases/2018/2019doglicenses.html,Resources,Agency-Published Resources,"2019 Dog Licenses now available - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""2019 Dog Licenses now available""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 2019 Dog Licenses now available Home / Departments / Public Relations Releases / 2019 Dog Licenses now available Your browser does not support H.264/MP4. If you experience playback issues, please update your browser. Public Relations Navigation Press Releases County Newsletter Use of County Facility Form Questions about COVID-19 vaccines? Please call the COVID-19 Call Center: 484-276-2100. Adrienne Marofsky, Director Government Center, 226A 201 W. Front St. Media, PA 19063 Phone: 610-891-4943 delcopr@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 2019 Dog Licenses now available Home / Departments / Public Relations Releases / 2019 Dog Licenses now available 2019 Dog Licenses now available Home / Departments / Public Relations Releases / 2019 Dog Licenses now available 2019 Dog Licenses now available Home / Departments / Public Relations Releases / 2019 Dog Licenses now available Your browser does not support H.264/MP4. If you experience playback issues, please update your browser. Public Relations Navigation Press Releases County Newsletter Use of County Facility Form Questions about COVID-19 vaccines? Please call the COVID-19 Call Center: 484-276-2100. Adrienne Marofsky, Director Government Center, 226A 201 W. Front St. Media, PA 19063 Phone: 610-891-4943 delcopr@co.delaware.pa.us Your browser does not support H.264/MP4. If you experience playback issues, please update your browser. Public Relations Navigation Press Releases County Newsletter Use of County Facility Form Questions about COVID-19 vaccines? Please call the COVID-19 Call Center: 484-276-2100. Adrienne Marofsky, Director Government Center, 226A 201 W. Front St. Media, PA 19063 Phone: 610-891-4943 delcopr@co.delaware.pa.us Public Relations Navigation Press Releases County Newsletter Use of County Facility Form Public Relations Navigation Questions about COVID-19 vaccines? Please call the COVID-19 Call Center: 484-276-2100. Adrienne Marofsky, Director Government Center, 226A 201 W. Front St. Media, PA 19063 Phone: 610-891-4943 delcopr@co.delaware.pa.us " -1438,https://www.knoxvilletn.gov/government/mayors_office/c_o_v_i_d-19___coronavirus_/stress_and_coping/knox_well/kid___parent_resources,Resources,Agency-Published Resources,Kid & Parent Resources - City of Knoxville,nothing*,200,Just a moment...,"[""Kid & Parent Resources""]",[],[],[],[],[],Skip navigation {1} ##LOC[OK]## {1} ##LOC[OK]## {1} ##LOC[OK]## {1} ##LOC[OK]## -1439,https://spdblotter.seattle.gov/2016/08/17/police-search-for-leads-on-teen-girls-suspected-in-south-seattle-bleach-attacks/,Media Bulletins,Agency-Published Resources,Police Search for Leads on Teen Girls Suspected In South Seattle Bleach Attacks - SPD Blotter,"",200,403 Forbidden,"[""Police Search for Leads on Teen Girls Suspected In South Seattle Bleach Attacks""]","[""Find Posts By Topic"", ""Featured Posts"", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],"Seattle.gov Choose a language: English English Google Translate may not accurately translate all content. Read disclaimer . For general City questions, please call 206-684-2489 . Tell us your requested language in English, and we can connect you with an interpreter. Continue Cancel Español Es posible que Google Translate no traduzca con precisión todo el contenido. Lea el descargo de responsabilidad . Si necesita ayuda en otro idioma, díganos en inglés nombre del idioma que necesita y lo conectaremos con un intérprete: 206-684-2489 Seguir Cancelar 中國語文 Google翻譯可能無法準確翻譯所有內容。 閱讀免責聲明 。 如果您需要翻譯,請用英語説出您所需要的語言,我們將爲你連接口譯員: 206-684-2489 繼續 取消 简体中文 Google翻译可能无法准确翻译所有内容。 阅读免责声明 。 如果您需要翻译,请用英语说出您所需要的语言,我们将为你连接口译员: 206-684-2489 继续 取消 Tiếng Việt Google Dịch có thể không dịch chính xác tất cả nội dung. Đọc tuyên bố từ chối trách nhiệm . Nếu quý vị cần hỗ trợ về ngôn ngữ, xin vui lòng cho chúng tôi biết ngôn ngữ quý vị cần hỗ trợ bằng tiếng Anh (ví dụ “Vietnamese”), chúng tôi sẽ kết nối quý vị với một thông dịch viên: 206-684-2489 Tiếp tục Huỷ bỏ русский язык Google Translate не может точно перевести весь контент. Прочтите отказ от ответственности . Если вам нужна языковая помощь, сообщите нам на английском, какой язык вам нужен, и мы свяжем вас с переводчиком: 206-684-2489 Продолжать Отмена Af-Soomaali Google Translate ayaan si sax ah u turjumi karin dhammaan waxyaabaha ku jira. Akhri afeef . Haddii aad u baahan tahay caawimaad luqadeed, fadlan noogu sheeg Ingiriisiga luqadda aad u baahan tahay, ka dib waxaan kugu xiri doonnaa turjubaan: 206-684-2489 Sii wad Jooji አማርኛ የጉግል ትርጉም ሁሉንም ይዘቶች በትክክል መተርጎም ላይችል ይችላል። ማስተባበያ አንብብ ፡፡ ኣስተርጓሚ ካስፈለግዎ የሚፈልጉትን ቋንቋ በእንግልዝኛ ይንገሩን፣ ከኣስተርጓሚ እናገናኝዎታለን። 206-684-2489 ቀጥል ሰርዝ 한국어 구글은 정확하게 모든 내용을 번역하지 않을 수 있습니다 번역. 읽기 면책 조항 . 언어지원이 필요한 경우, 필요한 언어를 영어로 말씀해 주시면 통역사와 연결해 드리겠습니다: 206-684-2489 계속하다 취소 Tagalog Maaaring hindi tumpak na isalin ng Google Translate ang lahat ng nilalaman. Basahin ang disclaimer . Para sa mga pangkalahatang katanungan sa Lungsod, mangyaring tawagan ang 206-684-2489 . Sabihin sa amin ang hiniling mong wika sa Ingles, at maikokonekta ka namin sa isang interpreter. Magpatuloy Kanselahin ภาษาไทย Google Translate อาจแปลเนื้อหาทั้งหมดไม่ถูกต้อง อ่านข้อจำกัดความรับผิดชอบ สำหรับคำถามทั่วไปเกี่ยวกับเมืองโปรดโทร 206-684-2489 บอกภาษาที่คุณต้องการเป็นภาษาอังกฤษและเราสามารถติดต่อคุณกับล่ามได้ ดำเนินการต่อ ยกเลิก 日本語 Google翻訳は、すべてのコンテンツを正確に翻訳するとは限りません. 免責事項をお読みください 。 市の一般的な質問については 206-684-2489 に電話してください。ご希望の言語を英語で教えていただければ、通訳をご案内いたします。 継続する キャンセル ភាសាខ្មែរ កម្មវិធីបកប្រែហ្គូហ្គោលមិនអាចបកប្រែមាតិកាទាំងអស់បានត្រឹមត្រូវទេ។ អានការបដិសេធ។ សម្រាប់សំណួរទូទៅរបស់ទីក្រុងសូមទូរស័ព្ទមក 206-684-2489 ។ ប្រាប់យើងពីភាសាដែលអ្នកស្នើសុំជាភាសាអង់គ្លេសហើយយើងអាចភ្ជាប់អ្នកជាមួយអ្នកបកប្រែភាសា។ បន្ត បោះបង់ ພາສາລາວ Google Translate ອາດຈະບໍ່ແປເນື້ອຫາທັງ ໝົດ ຢ່າງຖືກຕ້ອງ. ອ່ານປະຕິເສດ . ສຳ ລັບ ຄຳ ຖາມທົ່ວໄປຂອງເມືອງ, ກະລຸນາໂທຫາ 206-684-2489 . ບອກພວກເຮົາເປັນພາສາອັງກິດທີ່ທ່ານຮ້ອງຂໍ, ແລະພວກເຮົາສາມາດເຊື່ອມຕໍ່ທ່ານກັບນາຍແປພາສາ. ສືບຕໍ່ ຍົກເລີກ Українська Перекладач Google може не точно перекласти весь вміст. Прочитайте застереження . За загальними запитаннями про місто, будь ласка, телефонуйте 206-684-2489 . Розкажіть нам про вашу мову англійською мовою, і ми можемо зв’язати вас із перекладачем. Продовжуйте Скасувати Français Google Traduction peut ne pas traduire correctement tout le contenu. Lisez la clause de non-responsabilité . Pour des questions générales sur la ville, veuillez appeler le 206-684-2489 . Dites-nous votre langue souhaitée en anglais, et nous pourrons vous mettre en contact avec un interprète. Continuer Annuler " -1440,https://www.chesterfield.in.gov/departments/police/,Resources,Agency-Published Resources,Police Department – Town of Chesterfield,"",200,Town of Chesterfield – A Progressive Community Est. 1858,"[""Menu"", ""Town of Chesterfield"", ""Police Department"", ""I Want to…"", ""Recent News"", ""Upcoming Events""]","[""A Progressive Community Est. 1858"", """"]","[""Police and Accident Reports""]",[],[],[],"Menu Skip to content Welcome Current News Town Government Town Council Clerk/Treasurer Utilities & Billing Building Permits Planning Commission Board of Zoning Appeals Union Township Trustee Ordinances & Resolutions Town Departments Town Parks Park Board Police Department Programs and Services Gun Permits CPD Social Media Terms of Use Fire Department Water Department Streets Department Our Town Community Programs Civic Organizations Local Schools History Calendar Contact Town of Chesterfield A Progressive Community Est. 1858 Police Department Police and Accident Reports All reports taken by the officers of the Chesterfield Police Department are considered to be public record and are available to anyone who wishes to obtain copies. All copies are available at the current fee of $8.00 per copy. Multiple copies may be discounted at the discretion of the Chief of Police or the Town Council. You can pick up copies during the following times: Monday: 10 a.m.-5 p.m. Tuesday: 9 a.m.-10 p.m. Wednesday: 9 a.m.-10 p.m. Thursday: 9 a.m.-10 p.m. Friday: 9 a.m.-10 p.m. Search for: I Want to… Pay My Utility Bill Get a Building Permit Locate an Ordinance Setup Utilities Find a Park Recent News 2023 Annual Drinking Water Quality Report March 18, 2024 2022 Annual Drinking Water Report March 2, 2023 2021 Annual Drinking Water Quality Report April 11, 2022 Town of Chesterfield Coronovirus Guidelines 1/1/2021 Update January 7, 2021 Wastewater Treatment Plant Preliminary Engineering Report July 6, 2020 Upcoming Events Loading Widget… Copyright ©2021, Town of Chesterfield, Indiana. All rights reserved. Menu Skip to content Welcome Current News Town Government Town Council Clerk/Treasurer Utilities & Billing Building Permits Planning Commission Board of Zoning Appeals Union Township Trustee Ordinances & Resolutions Town Departments Town Parks Park Board Police Department Programs and Services Gun Permits CPD Social Media Terms of Use Fire Department Water Department Streets Department Our Town Community Programs Civic Organizations Local Schools History Calendar Contact Welcome Current News Town Government Town Council Clerk/Treasurer Utilities & Billing Building Permits Planning Commission Board of Zoning Appeals Union Township Trustee Ordinances & Resolutions Town Departments Town Parks Park Board Police Department Programs and Services Gun Permits CPD Social Media Terms of Use Fire Department Water Department Streets Department Our Town Community Programs Civic Organizations Local Schools History Calendar Contact Town of Chesterfield A Progressive Community Est. 1858 " -1441,https://www.mass.gov/doc/fitchburgpolicesergeant7929rtf/download,Training & Hiring Info,Info About Officers,"","",200,"","","","","","","","" -1442,http://www.tampa.gov/police/info/honoring-our-heroes/curtis-and-kocab/david-curtis,Personnel Records,Info About Officers,Officer David Lamar Curtis | City of Tampa,"October 3, 1978 - June 29, 2010",200,City of Tampa,"[""Officer David Lamar Curtis""]","[""Police Department"", ""Key Services"", ""Report A Problem"", ""Contact"", ""Connect With Us""]",[],[],[],[],"" -1443,https://www.antioch.il.gov/wpfb-file/08-03-11-police-and-fire-agenda-pdf/,Media Bulletins,Agency-Published Resources,"08-03-11 Police And Fire Agenda - Antioch, IL",8038 08 03 11 police and fire agenda pdf commissions commission agendas 2011 1311972182 b5a97d493539b841a8655f0d9c16d00b 217x300 _xa4zmw67zhfv thumb jpg 07 29 15 43 02 0 pdf application page_text num_pages analyze pdf_pages pdf_2text timings,200,"Home - Antioch, IL","[""08-03-11 Police And Fire Agenda""]",[],[],[],[],[],Open toolbar Accessibility Tools Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset -1444,https://www.southamptontownnypolice.gov/1782/2023-budgets,Resources,Agency-Published Resources,"2023 Budgets | Southampton, NY - Official Website","",200,"Police | Southampton, NY - Official Website","[""2023 Budgets""]",[],"[""Site Tools"", ""Contact Us"", ""Site Links"", ""Loading""]","[""2023 Tentative Budget - Operating"", ""2023 Tentative Budget - Capital"", ""2023 Adopted Budget - Operating"", ""2023 Adopted Budget - Capital""]",[],[],"Skip to Main Content EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Government Town Services Community Info How Do I Translate Page Site Tools Home My Account Printer Friendly Email Page Contact Us RSS Site Map Translate Page Notifications Documents Search Home Government Departments Finance (Comptroller) 2023 Budgets 2023 Budgets 9 1 1 1 2023 Tentative Budget - Operating Link to page 2023 Tentative Budget - Capital Link to page 2023 Adopted Budget - Operating Link to page 2023 Adopted Budget - Capital Link to page 2023 Tentative Budget - Operating 2023 Tentative Budget - Capital 2023 Adopted Budget - Operating 2023 Adopted Budget - Capital Town Clerk Meetings, Agendas & Minutes Pay Your Taxes Online Services Applications, Forms & Fees Notify Me® FOIL Requests Contact Us Town of Southampton 116 Hampton Road Southampton, NY 11968 Phone: 631-283-6000 Banner photo credit: robertseifertphotography.com Site Links Contact Us Site Map Accessibility Copyright Notices Intranet Job Opportunities Title VI Non-discrimination Policy /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Government Town Services Community Info How Do I Translate Page Site Tools Home My Account Printer Friendly Email Page Contact Us RSS Site Map Translate Page Notifications Documents Search Home Government Departments Finance (Comptroller) 2023 Budgets 2023 Budgets 9 1 1 1 2023 Tentative Budget - Operating Link to page 2023 Tentative Budget - Capital Link to page 2023 Adopted Budget - Operating Link to page 2023 Adopted Budget - Capital Link to page 2023 Tentative Budget - Operating 2023 Tentative Budget - Capital 2023 Adopted Budget - Operating 2023 Adopted Budget - Capital Town Clerk Meetings, Agendas & Minutes Pay Your Taxes Online Services Applications, Forms & Fees Notify Me® FOIL Requests Contact Us Town of Southampton 116 Hampton Road Southampton, NY 11968 Phone: 631-283-6000 Banner photo credit: robertseifertphotography.com Site Links Contact Us Site Map Accessibility Copyright Notices Intranet Job Opportunities Title VI Non-discrimination Policy /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In " -1445,https://alpha.austin.gov/es/police-oversight/2020-06-30-2/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -1446,https://www.coronadelmar.us/procession-honors-newport-beach-police-detective/,Not Criminal Justice Related,Not Criminal Justice Related,Procession Honors Newport Beach Police Detective | Corona del Mar California,"",200,Corona del Mar California,"[""Procession Honors Newport Beach Police Detective""]","[""Menu"", ""Be First to Comment"", ""Subscribe"", """", """"]","[""Share this:"", ""Like this:"", ""Related"", ""Leave a Reply Cancel reply"", """"]",[],[],[],"" -1447,https://coloradosprings.gov/police-department/article/news/las-vegas-street-and-south-tejon-street,Media Bulletins,Agency-Published Resources,Las Vegas Street and South Tejon Street | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""Las Vegas Street and South Tejon Street""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[],"" -1448,https://rocklandmaine.gov/events/police-review-committee-meeting-18/,Poor Data Source,Poor Data Source,"Police Review Committee Meeting | The City of Rockland, Maine","Monday, 25 July 2022 - 430pm Zoom Meeting Link - https://us02web.zoom.us/j/5040315241?pwd=eFhHaWJ4ZmhNakRmQ0VIQko4VmlKUT09 Facilitator: Emily Note Taker: Jan",200,403 Forbidden,"[""Police Review Committee Meeting"", ""Police Review Committee Meeting""]",[],"[""All Current Alerts & Announcements"", ""Current Weather"", ""Date"", ""Time"", ""Leave a Comment Cancel reply"", ""City of Rockland""]",[],[],[],"All Current Alerts & Announcements Please note that the first phase of the City of Rockland’s revaluation has begun, with workers from Vision Government Solutions visiting properties for data collection. The data collector will have identification, be wearing a reflective vest, have a letter of verification from the City Assessor, and will have their car registered with the Police Department. You may also see the City Assessor, Molli Bennett, visiting properties as well! Current Weather Now loading... All Current Alerts & Announcements Please note that the first phase of the City of Rockland’s revaluation has begun, with workers from Vision Government Solutions visiting properties for data collection. The data collector will have identification, be wearing a reflective vest, have a letter of verification from the City Assessor, and will have their car registered with the Police Department. You may also see the City Assessor, Molli Bennett, visiting properties as well! Current Weather Now loading... All Current Alerts & Announcements Please note that the first phase of the City of Rockland’s revaluation has begun, with workers from Vision Government Solutions visiting properties for data collection. The data collector will have identification, be wearing a reflective vest, have a letter of verification from the City Assessor, and will have their car registered with the Police Department. You may also see the City Assessor, Molli Bennett, visiting properties as well! Current Weather Now loading... All Current Alerts & Announcements Please note that the first phase of the City of Rockland’s revaluation has begun, with workers from Vision Government Solutions visiting properties for data collection. The data collector will have identification, be wearing a reflective vest, have a letter of verification from the City Assessor, and will have their car registered with the Police Department. You may also see the City Assessor, Molli Bennett, visiting properties as well! All Current Alerts & Announcements Please note that the first phase of the City of Rockland’s revaluation has begun, with workers from Vision Government Solutions visiting properties for data collection. The data collector will have identification, be wearing a reflective vest, have a letter of verification from the City Assessor, and will have their car registered with the Police Department. You may also see the City Assessor, Molli Bennett, visiting properties as well! Please note that the first phase of the City of Rockland’s revaluation has begun, with workers from Vision Government Solutions visiting properties for data collection. The data collector will have identification, be wearing a reflective vest, have a letter of verification from the City Assessor, and will have their car registered with the Police Department. You may also see the City Assessor, Molli Bennett, visiting properties as well! " -1449,https://coloradosprings.gov/police-department/article/news/city-ordinance-area-expanded,Media Bulletins,Agency-Published Resources,City Ordinance Area Expanded | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""City Ordinance Area Expanded""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[],"" -1450,https://delcopa.gov/publicrelations/releases/2022/delcohonoredtoreceivegovernersawardforlocalgovtexcellence.html,Media Bulletins,Agency-Published Resources,"Delaware County Honored to Receive the Governor’s Award for Local Government Excellence - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Delaware County Honored to Receive the Governor’s Award for Local Government Excellence""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"" -1451,https://delcopa.gov/health/pages/animalbites.html,Resources,Agency-Published Resources,"Animal Bites to Humans - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Animal Bites to Humans""]",[],"["""", ""Health Dept Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"" -1452,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/arrests/011321arrests.pdf,Arrest Records,Police & Public Interactions,"","",404,"","","","","","","","" -1453,http://www.longbeach.gov/police/press-releases/dui-drivers-license-checkpoint/,Media Bulletins,Agency-Published Resources,DUI DRIVERS LICENSE CHECKPOINT,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -1454,https://www.mass.gov/doc/perry-brian-v-boston-police-department-92012/download,Court Cases,Jails & Courts Specific,"","",200,"","","","","","","","" -1455,https://www.memphistn.gov/government/police-department/in-memoriam/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -1456,https://www.mass.gov/doc/hamm-brendan-v-boston-police-department-111308/download,Court Cases,Jails & Courts Specific,"","",200,"","","","","","","","" -1457,https://www.coppelltx.gov/666/sustainability-data,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -1458,https://edenny.gov/town-of-eden-police-reform-plan/,Contact Info & Agency Meta,Info About Agencies,"Town of Eden Police Reform Plan | Town of Eden, New York","",200,"Town of Eden, New York | The Garden Spot of New York","[""Town of Eden Police Reform Plan""]",[],[],"[""Contact Information""]",[],[],"Home Town of Eden Town Board Overview Agendas Minutes Meeting Recordings Legal Notices Town Board Members Employee/ Volunteer Resources Emergency Services Police Eden Emergency Squad Fire – Eden Fire – East Eden Departments Assessors Building Courts Dog Control Highway Recreation Town Clerk Boards Assessment Conservation Planning Recreation Advisory Zoning New Member Application Committees Code Review Disaster Preparedness Off-Road Drainage Library Review New Member Application Master Plan Town History Residents Eden Central Schools Eden Corn Festival Eden Library Garbage Management Resources Senior Citizen Services Volunteer Opportunities Businesses Overview Business Directory GIS Mapping Chamber of Commerce Business District Committee Calendar News Contact Contact & Directions Staff Directory Select Page Home Town of Eden Town Board Overview Agendas Minutes Meeting Recordings Legal Notices Town Board Members Employee/ Volunteer Resources Emergency Services Police Eden Emergency Squad Fire – Eden Fire – East Eden Departments Assessors Building Courts Dog Control Highway Recreation Town Clerk Boards Assessment Conservation Planning Recreation Advisory Zoning New Member Application Committees Code Review Disaster Preparedness Off-Road Drainage Library Review New Member Application Master Plan Town History Residents Eden Central Schools Eden Corn Festival Eden Library Garbage Management Resources Senior Citizen Services Volunteer Opportunities Businesses Overview Business Directory GIS Mapping Chamber of Commerce Business District Committee Calendar News Contact Contact & Directions Staff Directory Town of Eden Police Reform Plan by Marlene Grunder | Feb 22, 2021 | Community , Town News The draft of the Town of Eden Police Reform Plan is available for public comments. The plan can be viewed here. If you would like to comment on the plan please email Marlene at marlene@edenny.gov. The comments will be shared with the committee and the Town Board. Also, public comments will be heard at the next Town Board meeting on March 10th at 7pm. Contact Information Eden Town Hall 2795 East Church Street Eden, New York 14057 (716) 992-3408 (716) 992-4131 (Fax) Town of Eden, NY © 2021 | Website Powered by SM-Blu Digital " -1459,https://police.crystalmn.gov/r_e_s_i_d_e_n_t/community_development/permits_and_inspections,Resources,Agency-Published Resources,Permits and Inspections - City of Crystal,Links and information about permits and inspections in the City of Crystal.,200,Just a moment...,"[""Permits and Inspections""]",[],"[""Sign up for a city newsletter or notification."", ""City Hall"", ""Regular Hours:""]","[""Monday - Friday""]",[],[],"" -1460,https://www.mass.gov/news/police-arrest-juvenile-for-homicide-in-adams-death,Media Bulletins,Agency-Published Resources,Police Arrest Juvenile For Homicide In Adams Death | Mass.gov,"Authorities arrested a juvenile for homicide in the death of Benjamin Martinez, 34, of Springfield.",200,Mass.gov,"[""Press Release Police Arrest Juvenile For Homicide In Adams Death""]","[""Media Contact for Police Arrest Juvenile For Homicide In Adams Death"", ""Media Contact for Police Arrest Juvenile For Homicide In Adams Death"", ""Berkshire District Attorney's Office"", ""Media Contact for Police Arrest Juvenile For Homicide In Adams Death"", ""Help Us Improve Mass.gov with your feedback""]","[""Andrew McKeever, Director of Communications"", ""Andrew McKeever, Director of Communications"", ""Andrew McKeever, Director of Communications""]","[""Phone"", ""Online"", ""Phone"", ""Online"", ""Phone"", ""Online""]",[],[],"" -1461,https://www.roseville.ca.us/government/departments/police_department/social_services/shop_with_a_cop,Misc Police Activity,Police & Public Interactions,Shop with a cop - City of Roseville,"",200,Just a moment...,"[""City of Roseville""]","[""Shop with a cop""]","[""Roseville Police Department""]",[],[],[],"" -1462,https://alpha.austin.gov/en/police-oversight/2020-06-12-3/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -1463,https://www.mass.gov/regulations/515-cmr-500-standards-of-skill-for-special-state-police-officers,Training & Hiring Info,Info About Officers,515 CMR 5.00: Standards of skill for special state police officers | Mass.gov,"515 CMR 5.00 ensures proper standards of skill for special state police officers pursuant to the terms and provisions of M.G.L. c. 22C, § 69. Download a PDF copy of the regulation below.",200,Mass.gov,"[""Regulation 515 CMR 5.00: Standards of skill for special state police officers""]","[""Table of Contents for the law library, 515 CMR"", ""Contact for 515 CMR 5.00: Standards of skill for special state police officers"", ""Table of Contents"", ""Downloads"", ""Contact"", ""Contact for 515 CMR 5.00: Standards of skill for special state police officers"", ""Help Us Improve Mass.gov with your feedback""]","[""Trial Court Law Libraries"", ""Trial Court Law Libraries"", ""Trial Court Law Libraries""]","[""Online"", ""Online"", ""Online""]",[],[],"" -1464,https://www.ci.rohnert-park.ca.us/city_hall/departments/public_safety/police_services/permits___licensing/solicitors_peddlers_permit,Resources,Agency-Published Resources,Solicitors/Peddlers Permit - City of Rohnert Park,"",200,Just a moment...,"[""City of Rohnert Park""]","[""Rohnert Park""]","[""Solicitors/Peddlers Permit""]","[""Solicitors/Peddlers Permit""]",[],[],"" -1465,https://council.seattle.gov/2011/07/14/seattle-city-council-seeking-candidates-for-police-accountability-review-board/,Media Bulletins,Agency-Published Resources,Seattle City Council seeking candidates for police accountability review board - Seattle City Council Blog,"",200,403 Forbidden,"[""Seattle City Council seeking candidates for police accountability review board""]",[],"[""HELPFUL LINKS"", ""Make your voice heard"", ""Councilmembers""]",[],[],[],"" -1466,https://directory.arkansas.gov/agency/arkansas-fire-and-police-pension-review-board/questions/,Poor Data Source,Poor Data Source,State Directory – Arkansas.gov,"",200,State Directory – Arkansas.gov,"[""Flag Status""]","[""Discover More"", ""Discover More"", ""Discover More"", ""Discover More"", ""What can we help you find?"", ""Search the Directories"", ""Flag Status"", """"]","[""Government Resources"", ""Business Resources"", ""Residents Resources"", ""Visiting Resources"", ""State Directory"", ""Agencies"", ""Services"", ""Employees"", ""Your Arkansas.gov"", ""Top Online Services"", ""helpful information""]","[""Was the information on this page helpful?""]",[],[],"" -1467,https://www.mass.gov/doc/pdf-copy-of-the-field-auditor-i-performance-audits-chicopee-job-description-2020-05-06/download,Training & Hiring Info,Info About Officers,"","",200,"","","","","","","","" -1468,https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0031-2/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -1469,https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/blotter/081722blotter.pdf,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -1470,https://edmonstonmd.gov/prince-georges-county-news-police-chief-town-hall-beautification/,Not Criminal Justice Related,Not Criminal Justice Related,"County News: Police Chief Town Hall, Beautification - Town of Edmonston","Police Chief Town Hall Recording County Executive Angela Alsobrooks and Acting Chief of Police Malik Aziz held a town hall to discuss community policing, police reform, and a new summer crime initiative that is now underway. Residents can watch the town hall below. https://www.youtube.com/watch?v=oyMrHhKoY40 Beautification Survey If you live in…",200,Town of Edmonston,"[""County News: Police Chief Town Hall, Beautification""]","[""Town Hall"", ""Police Department"", ""Town Hall"", ""Police Department"", ""Town Hall"", ""Police Department"", ""Town Hall"", ""Police Department"", ""Police Chief Town Hall Recording"", ""Beautification Survey"", ""Encuesta de embellecimiento del condado"", ""Beautify and Comply!"", ""¡Embellece tu propiedad y llévala al Cumplimiento!"", ""Town of Edmonston"", ""Police Department"", ""Quick Links"", ""Quick Links""]",[],[],[],"[""Town Hall"", ""Office hours"", ""administrative offices"", ""contACT THE POLICE DEPARTMENT""]","" -1471,https://www.dps.nm.gov/blog/2022/03/24/new-mexico-state-police-arrest-fugitive-tennessee-murder-suspects/,Media Bulletins,Agency-Published Resources,New Mexico State Police Arrest Fugitive Tennessee Murder Suspects - NM Department of Public Safety,"",200,Home - NM Department of Public Safety,"[""New Mexico State Police Arrest Fugitive Tennessee Murder Suspects""]",[],"[""Location"", ""Sitemap"", ""Quick Links"", ""Social Media Links""]",[],[],[],"Manage Cookie Consent We use cookies to optimize our website and our service. Functional Functional Always active The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network. Preferences Preferences The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user. Statistics Statistics The technical storage or access that is used exclusively for statistical purposes. The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you. Marketing Marketing The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes. Manage options Manage services Manage {vendor_count} vendors Read more about these purposes Accept Deny Preferences Save preferences Preferences Cookie Policy Privacy Statement {title} Manage Cookie Consent We use cookies to optimize our website and our service. Functional Functional Always active The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network. Preferences Preferences The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user. Statistics Statistics The technical storage or access that is used exclusively for statistical purposes. The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you. Marketing Marketing The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes. Manage options Manage services Manage {vendor_count} vendors Read more about these purposes Accept Deny Preferences Save preferences Preferences Cookie Policy Privacy Statement {title} Manage Cookie Consent Manage Cookie Consent " -1472,https://www.southamptontownnypolice.gov/943/the-hills---deis-april-2016,Resources,Agency-Published Resources,"The Hills - DEIS-April 2016 | Southampton, NY - Official Website","",200,"Police | Southampton, NY - Official Website","[""The Hills - DEIS-April 2016""]",[],"[""Site Tools"", ""Contact Us"", ""Site Links"", ""Loading""]","[""The Hills - DEIS-April 2016"", ""DEIS Appendices"", ""DEIS Plans""]",[],[],Skip to Main Content -1473,https://www.florenceaz.gov/police-hosting-a-town-hall-meeting-on-december-9th/,Misc Police Activity,Police & Public Interactions,Police Hosting a Town Hall Meeting on December 9th – Town of Florence,"",200,Town of Florence,"[""Police Hosting a Town Hall Meeting on December 9th""]","[""About the Author: Shaun Courtney""]","[""Visitors"", ""Events"", ""Business Information"", ""Services"", ""Town Departments"", ""News Categories"", ""Utilities""]","[""Town Council Work Session March 25, 2024"", ""Historic District Advisory Commission March 27, 2024"", ""Charles Whitlow Rodeo Grounds Advisory Board March 28, 2024"", ""Multi-Generational Center Open House"", ""Town Council Meeting April 1, 2024"", ""Dive into Summer Opportunities at Florence’s Aquatic Center Job Fair"", ""Major Equipment Upgrades Coming to Florence Fitness Center"", ""Florence’s Western Heritage Comes Alive: The 91st Annual Jr. Parada"", ""Share This Story, Choose Your Platform!"", ""Recent Posts""]",[],[],"" -1474,https://www.hayward-ca.gov/discover/news/sep21/police-blotter-august-22-28-2021,Media Bulletins,Agency-Published Resources,"Police Blotter: August 22-28, 2021 | City of Hayward - Official website","STATISTICAL HIGHLIGHTSAugust 22-28, 2021 Weekly Arrests (Includes cite/released):44 Homicide 0Weekly Calls for Service: 2,070 Assault—Great Bodily Injury 2Weekly Reports Taken:194 Burglary— Nonresidential 8Weekly Complaints(against HPD):0 Burglary—Residential 3Weekly Calls Received:5,876 Theft 25This data is subject to change and based on crimes that were reported to have",200,City of Hayward - Official website,"[""Police Blotter: August 22-28, 2021""]","[""Look Deeper"", ""Welcome home"", ""Where opportunity lives"", ""Find what you need. Fast."", ""Working for You"", ""Your Hayward Environment"", ""You are here. So is everything else."", ""Search form"", ""Look Deeper"", ""Welcome home"", ""Where opportunity lives"", ""Find what you need. Fast."", ""Working for You"", ""Your Hayward Environment""]",[],"[""STATISTICAL HIGHLIGHTS"", ""August 22-28, 2021"", """", """", """", ""Significant Incidents"", ""Do you need help paying energy bills? You may qualify for federal aid."", ""Hayward Receives Grant for Safe Routes to Schools Infrastructure and Bicycle Incentives"", ""Hayward Celebrates Earth Day at Weekes Park!"", ""Spring 2024 Compost Giveaway"", ""Sustainable Solutions for Celebrating Easter"", ""City Hall and Nonessential Services Closure: Monday, Apr. 01, 2024"", ""Presidential Primary Election: Tuesday, Mar. 5, 2024"", ""Library Closure: February 12 and February 19, 2024."", ""City Hall and Nonessential Services Closures: Monday, Feb. 19"", ""City Hall and Nonessential Services Closure: Monday, Jan. 15, 2024"", ""YOU ARE HERE. SO IS EVERYTHING ELSE."", ""Related News"", ""Police Blotter - February 25-March 2, 2024"", ""Weekly Blotter - February 18-24, 2024"", ""Police Blotter - February 11-17, 2024"", ""Report Problems"", ""Ask Questions"", ""Make a Suggestion"", ""Translate"", ""Search""]",[],[],Skip to main content -1475,http://police.portlandmaine.gov/552/peaks-island-services,Not Criminal Justice Related,Not Criminal Justice Related,"Peaks Island Services | Portland, ME - Official Website",Learn abut services to Peaks Island.,200,"Portland, ME - Official Website | Official Website","[""Peaks Island Services""]",[],[],[],[],[],Skip to Main Content Pay & Apply Your Government Services Business Community Home Your Government Departments Public Works Trash & Recycling Peaks Island Services Peaks Island Services Trash Recycling Recycling Resources Holiday Collection Schedule Peaks Island Services Bulky Waste Collection Permit ECARD Riverside Recycling / Transfer Station Yard Waste Trash & Recycling Route Map Commercial Waste Haulers Solid Waste Programs & Services Government Websites by CivicPlus® Pay & Apply Your Government Services Business Community Home Your Government Departments Public Works Trash & Recycling Peaks Island Services Peaks Island Services Trash Recycling Recycling Resources Holiday Collection Schedule Peaks Island Services Bulky Waste Collection Permit ECARD Riverside Recycling / Transfer Station Yard Waste Trash & Recycling Route Map Commercial Waste Haulers Solid Waste Programs & Services Government Websites by CivicPlus® Pay & Apply Your Government Services Business Community Home Your Government Departments Public Works Trash & Recycling Peaks Island Services Peaks Island Services Trash Recycling Recycling Resources Holiday Collection Schedule Peaks Island Services Bulky Waste Collection Permit ECARD Riverside Recycling / Transfer Station Yard Waste Trash & Recycling Route Map Commercial Waste Haulers Solid Waste Programs & Services Government Websites by CivicPlus® Pay & Apply Your Government Services Business Community Home Your Government Departments Public Works Trash & Recycling Peaks Island Services Peaks Island Services Trash Recycling Recycling Resources Holiday Collection Schedule Peaks Island Services Bulky Waste Collection Permit ECARD Riverside Recycling / Transfer Station Yard Waste Trash & Recycling Route Map Commercial Waste Haulers Solid Waste Programs & Services Government Websites by CivicPlus® Pay & Apply Your Government Services Business Community Home Your Government Departments Public Works Trash & Recycling Peaks Island Services Peaks Island Services Trash Recycling Recycling Resources Holiday Collection Schedule Peaks Island Services Bulky Waste Collection Permit ECARD Riverside Recycling / Transfer Station Yard Waste Trash & Recycling Route Map Commercial Waste Haulers Solid Waste Programs & Services Home Your Government Departments Public Works Trash & Recycling Peaks Island Services Peaks Island Services Trash Recycling Recycling Resources Holiday Collection Schedule Peaks Island Services Bulky Waste Collection Permit ECARD Riverside Recycling / Transfer Station Yard Waste Trash & Recycling Route Map Commercial Waste Haulers Solid Waste Programs & Services Home Your Government Departments Public Works Trash & Recycling Peaks Island Services Peaks Island Services Trash Recycling Recycling Resources Holiday Collection Schedule Peaks Island Services Bulky Waste Collection Permit ECARD Riverside Recycling / Transfer Station Yard Waste Trash & Recycling Route Map Commercial Waste Haulers Solid Waste Programs & Services Home Your Government Departments Public Works Trash & Recycling Peaks Island Services Peaks Island Services Home Your Government Departments Public Works Trash & Recycling Peaks Island Services Peaks Island Services Home Your Government Departments Public Works Trash & Recycling Peaks Island Services Peaks Island Services Peaks Island Services Trash Recycling Recycling Resources Holiday Collection Schedule Peaks Island Services Bulky Waste Collection Permit ECARD Riverside Recycling / Transfer Station Yard Waste Trash & Recycling Route Map Commercial Waste Haulers Solid Waste Programs & Services Trash Recycling Recycling Resources Holiday Collection Schedule -1476,https://beaumonttexas.gov/beaumont-police-arrest-hike-bike-auto-burglar-6450-folsom/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -1477,http://www.ryepolice.us/logs/police-logs-07-27-2022-08-02-2022,Daily Activity Logs,Info About Officers,Rye Police Department Police Logs 07/27/2022-08/02/2022 - Rye Police Department,"",200,Rye Police Department Welcome to the Rye Police Department - Rye Police Department,"[""Police Logs 07/27/2022-08/02/2022""]","[""Police Logs 07/27/2022-08/02/2022""]","[""Navigation"", ""Follow Us"", ""Facebook"", ""Email Updates"", ""Storm Preparedness Guide""]",[],[],[], -1478,https://alpha.austin.gov/health-safety/accountability-and-transparency-in-policing/police-feedback-and-records/office-of-police-oversight-official-reports/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -1479,https://coloradosprings.gov/police-department/page/vin-verification-services,Resources,Agency-Published Resources,VIN Verification Services | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""VIN Verification Services""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]","[""VIN Verification Services""]",[],"[""REPORT ONLINE""]",[],"" -1480,https://hollister.ca.gov/government/city-departments/police/join-our-team/,Training & Hiring Info,Info About Officers,"Join Our Team – City of Hollister, California","",200,"City of Hollister, California",[],[],"[""Follow Us on..."", ""Join Our Team"", ""We are Hiring"", ""Follow Us on....""]",[],[],[],"Skip to content Follow Us on... Home Residents 2024 City of Hollister Resource Guide Community Resources Council District Map Downtown Events Housing Element Newsletter: 2022 Volume 1 Newsletter: 2022 Volume 2 Nextdoor State Route 156 Improvement Project Business Starting a Business Business License Application Business Resources Cannabis Affairs Green Your Business Government City Council City Council Agenda & Minutes Commissions City Departments Airport Administrative Services Finance Human Resources City Attorney City Clerk Elections City Council City Manager Development Services Building Cannabis Affairs General Plan Housing Housing Element Planning Successor Agency Fire Parks and Recreation Parks Police Animal Control Code Enforcement Public Works Engineering Streets Stormwater Management Wastewater Services Water Services Fire Department Parks and Recreation Police Department Intergrated Waste Management Request Public Records Transparency 2023-24 Adopted Budget Financial Reports Municipal Code Search Request Public Records Services Hollister Recreation Online Registration Pay Your Utility Bill Start / Stop Water Service Utility Forms City Maps Open Bids and RFPs San Benito County GIS Mapping How Do I… View the Draft 2040 General Plan Apply for a Temorary RV Parking Permit Contact the City Do Business With the City File a Business License Application File a Police Online Incident Report Register with Hollister Recreation Look At A Council District Map Pay My Utility Bill Online Report a Crime Anonymously Request Public Records Search the Municipal Code Start / Stop Water Service View City Council Agendas View the Friendly Workplace Manual for Public Officials Contact Employment About Hollister Welcome to Hollister Our Story Food & Drink Historic Hollister Outdoors Pinnacles National Park Menu Search for: Police Code Enforcement Department News & Events Press Releases FAQ Join Our Team Volunteer PAL – Police Activities League Incident Reports Online Incident Reporting Anonymous Reporting Forms Crime Statistics / Crime Blotter Social Networking Gang Task Force Crime Prevention Law Enforcement Cadets HPD History Comments Join Our Team The Hollister Police Department is continuously seeking qualified individuals for our team. Current Recruitments are: -Police Officer Trainee - Apply for Police Officer Trainee Position Lateral / Academy Graduate Officer - Apply for Lateral / Academy Graduate Officer Position Apply Online! See all Current City of Hollister Open Position Recruitments . Location 395 Apollo Way Hollister, CA 95023 (831) 636-4330 Non-Emergency (831) 636-4331 Fax (831) 636-4339 Emergency 9-1-1 We are Hiring More information here CodeRED is our new Emergency Notification system for Santa Cruz and San Benito counties. Click on the logo and register your cell phone number and email for instant notifications of Emergencies within San Benito and Santa Cruz Counties. Follow Us on.... City of Hollister, California, Copyright 2024 Follow Us on... Follow Us on... " -1481,https://www.mass.gov/doc/fitzgibbon-daniel-v-boston-police-department-related-superior-court-decision-32113/download,Court Cases,Jails & Courts Specific,"","",200,"","","","","","","","" -1482,https://delcopa.gov/pdf/2021budget.pdf,Policies & Contracts,Info About Agencies,"","",200,"","","","","","","","" -1484,https://www.ci.san-ramon.ca.us/our_city/departments_and_divisions/police/srpd-downloads,Poor Data Source,Poor Data Source,SRPD Downloads - City of San Ramon,"",200,Just a moment...,"[""SRPD Downloads""]","[""Contact Us"", ""Useful Links""]",[],[],[],[],"" -1485,https://www.antioch.il.gov/event/police-fire-commission-special-meeting-4/,Poor Data Source,Poor Data Source,"Police & Fire Commission Special Meeting - Antioch, IL","",200,"Home - Antioch, IL","[""Police & Fire Commission Special Meeting""]",[],[],[],[],[],Open toolbar Accessibility Tools Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset -1486,http://www.longbeach.gov/police/press-releases/murder-investigation---2300-block-of-elm-avenue/,Media Bulletins,Agency-Published Resources,MURDER INVESTIGATION - 2300 BLOCK OF ELM AVENUE,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 5/31/2019 FOR IMMEDIATE RELEASE Press Release # Subject: MURDER INVESTIGATION – 2300 BLOCK OF ELM AVENUE Contact: Media Relations Detail (562) 570-5273 LBPDMediaRelations@longbeach.gov On Thursday, May 30, 2019, at approximately 9:45 p.m., officers were dispatched to the 2300 block of Elm Avenue for an assault with a deadly weapon call, which resulted in the death of a male adult. Upon arrival, officers located an adult male victim laying in the street with a gunshot wound to his upper torso. Responding officers performed life-saving measures and requested the assistance of Long Beach Fire Department paramedics, who determined the victim deceased at the scene. The victim has been identified as 39-year-old Antonio Macias of Long Beach. A description of the suspect(s) and the motive for the shooting is unknown at this time. Any relationship between the victim and suspect(s) is not known. Detectives are working diligently to gather additional information, which is currently being investigated as possibly gang-related. We urge anyone with any information to contact Long Beach Police Homicide Detectives Don Collier or Mark Mattia at (562) 570-7244. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.lacrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -1487,https://dps.iowa.gov/former-clarksville-police-officer-arrested,Media Bulletins,Agency-Published Resources,Former Clarksville Police Officer Arrested | Iowa Department of Public Safety,"September 1, 2022 Butler County, Iowa - On March 4, 2022, a minor under the age of 18 reported to the Butler County Sheriff’s Office that Clarksville police officer Mike Tobin had showed the minor sexually explicit images and videos that were evidence in a pending criminal case. Those images included nude images of minors. Tobin’s employment with the City of Clarksville was discontinued on March 5th, 2022. The Iowa Division of Criminal Investigation was asked to assist with the investigation.",200,Iowa Department of Public Safety | Iowa Department of Public Safety,"[""Iowa Department of Public Safety"", ""Former Clarksville Police Officer Arrested""]",[],[],[],[],[],"Skip to main content Iowa Department of Public Safety Former Clarksville Police Officer Arrested Mike Krapfl Special Agent in Charge 563.599.4239 krapfl@dps.state.ia.us September 1, 2022 Butler County, Iowa - On March 4, 2022, a minor under the age of 18 reported to the Butler County Sheriff’s Office that Clarksville police officer Mike Tobin had showed the minor sexually explicit images and videos that were evidence in a pending criminal case. Those images included nude images of minors. Tobin’s employment with the City of Clarksville was discontinued on March 5th, 2022. The Iowa Division of Criminal Investigation was asked to assist with the investigation. On September 1, 2022, Tobin was arrested and charged with the following offenses: two (2) counts of sexual exploitation by a minor (class C felony); one (1) count of sexual exploitation of a minor (class D felony; and eight (8) counts of sexual exploitation of a minor (aggravated misdemeanor). The results of the investigation have been forwarded to the Butler County Attorney’s Office for review. ABOUT THE IOWA DEPARTMENT OF PUBLIC SAFETY The Iowa Department of Public Safety (DPS) is the largest law enforcement agency in the state. It includes six divisions and several bureaus, all working together with local, state and federal government agencies and the private sector, to keep Iowa a safe place by following our core values: leadership, integrity, professionalism, courtesy, service and protection. Divisions within the Iowa DPS: Iowa Division of Criminal Investigation, Iowa Division of Narcotics Enforcement, Iowa State Patrol, Iowa State Fire Marshal Division, Iowa Division of Intelligence and Fusion Center, and Administrative Services Division. The Department of Public Safety is led by the Commissioner who is appointed by the Governor. Iowa Department of Public Safety 215 E 7th St Des Moines IA 50319 https://dps.iowa.gov " -1488,http://www.longbeach.gov/police/press-releases/dui-checkpoint-1-/,Media Bulletins,Agency-Published Resources,DUI CHECKPOINT(1),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -1489,https://alpha.austin.gov/es/police-oversight/formal-complaint-de-escalation-of-potential-force-encounters-and-other-policy-violations-3/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -1490,https://www.southamptontownnypolice.gov/faq.aspx?qid=554,Resources,Agency-Published Resources,FAQs • How do I upload a completed documents?,"",200,"Police | Southampton, NY - Official Website",[],"[""▼ Online Service Assistance""]","[""Site Tools"", ""Categories"", ""Live Edit"", ""Contact Us"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -1491,https://www.southamptontownnypolice.gov/faq.aspx?qid=78,Resources,Agency-Published Resources,FAQs • A house in my neighborhood burned down. How long do I,"",200,"Police | Southampton, NY - Official Website",[],"[""▼ Public Safety - Code Enforcement""]","[""Site Tools"", ""Categories"", ""Live Edit"", ""Contact Us"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -1492,http://www.longbeach.gov/police/press-releases/charges-filed-against-robbery-suspects/,Media Bulletins,Agency-Published Resources,CHARGES FILED AGAINST ROBBERY SUSPECTS,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -1493,http://www.longbeach.gov/police/press-releases/improving-motorcycle-safety-aim-of-l-b-p-d--operation-2-/,Media Bulletins,Agency-Published Resources,Improving Motorcycle Safety Aim of L.B.P.D. Operation(2),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 8/12/2015 FOR IMMEDIATE RELEASE Press Release # Subject: IMPROVING MOTORCYCLE SAFETY AIM OF L.B.P.D. OPERATION Careless Motorists as Well as Riders Get Special Scrutiny ... Contact: Media Relations Detail (562) 570-5273 The Long Beach Police Department will be conducting Specialized Motorcycle Safety Enforcement Operations on Saturday, August 15th and Sunday, August 16th, in an effort to lower deaths and injuries. Extra officers will be on duty patrolling areas frequented by motorcyclists and where motorcycle crashes occur. Officers will be looking for violations made by drivers and riders alike that can lead to motorcycle crashes. They will be cracking down on both those operating regular vehicles and motorcycles who are under the influence of drugs or alcohol, speeding, making illegal turns, or any other dangerous violation. Motorcycle fatalities saw a phenomenal drop of 37 percent from 2008 to 2010, but then rose 23 percent by 2012. Operations like this are aimed at curbing any more rises in motorcycle deaths and sending the numbers back downward. Over the course of the past two years, motorcycle involved collisions have resulted in 12 fatalities and 184 injuries in the City of Long Beach. California collision data reveals that primary causes of motorcycle-involved crashes include speeding, unsafe turning and impairment due to alcohol and other drugs by both riders and drivers alike. Safety tips for riders – See and Be Seen: • Ride with lights on during daylight hours • Use your lane position to increase visibility; change lanes only when there is ample room • Match your speed to surrounding traffic • Always wear a DOT compliant helmet and brightly colored, protective clothing Safety tips for drivers – Share the Road: • Look twice for motorcyclists, especially when entering the roadway, turning or changing lanes • Motorcyclist are allowed in HOV lanes unless prohibited by signage Riders are urged to get training through the California Motorcyclist Safety Program . Information and training locations are available at www.CA-msp.org or 1-877 RIDE 411 (1-877-743-3411). Funding for this program is provided by a grant from the California Office of Traffic Safety through the National Highway Traffic Safety Administration. The message to all drivers and motorcyclists is: share in the responsibility and do your part by safely “sharing the road.” This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -1494,https://bouldercolorado.gov/events/police-oversight-panel-community-engagement-committee-meeting-0,Misc Police Activity,Police & Public Interactions,Police Oversight Panel - Community Engagement Committee Meeting | City of Boulder,"",200,Home | City of Boulder,"[""Police Oversight Panel - Community Engagement Committee Meeting"", ""Police Oversight Panel Meetings""]","[""Breadcrumb"", ""Details"", ""Meeting Details"", ""More Resources""]","[""Police Oversight Panel: Co-Chairs/IPM Meeting"", ""Police Oversight Panel: BPOP/Interim Chief of Police Meeting"", ""Police Oversight Panel: Subcommittee Community Engagement & Communications Meeting"", ""Police Oversight Panel: All Panel Meeting"", ""Police Oversight Panel: Co-Chairs/IPM Meeting"", ""Police Oversight Panel: Subcommittee Governance Meeting""]",[],[],[],"Calendar Jobs Contact Us Search English 繁體中文 Français Deutsch 한국어 Русский Español नेपाली en Locations Services Projects Government News Toggle Menu City of Boulder Locations Services Projects Government News Calendar Jobs Contact Us Search Breadcrumb Home Events Police Oversight Panel - Community Engagement Committee Meeting Details Date Thursday, June 2, 2022 Time 6:30 PM - 7:30 PM Locations Virtual Police Oversight Panel Meetings Boulder’s Police Oversight Panel meets on the second Thursday of every month. Add to Calendar Police Oversight Panel - Community Engagement Committee Meeting America/DenverBoulder, CO
-United States
Boulder, CO
-United States
LONG BEACH MOUNTED POLICE - - The Long Beach Mounted Police is a non-profit corporation with a duly elected Board of Directors. They maintain their own insurance and oversee other business matters and investments. Membership includes riders and non-riders who are supporters of equestrian activities. - For mo
",200,City of Long Beach,"[""Police Department""]","[""LONG BEACH MOUNTED POLICE""]","[""Mayor"", ""City Council"", ""Rex Richardson"", ""Mary Zendejas"", ""Cindy Allen"", ""Kristina Duggan"", ""Daryl Supernaw"", ""Megan Kerr"", ""Suely Saro"", ""Roberto Uranga"", ""Al Austin"", ""Dr. Joni Ricks-Oddie"", ""Dawn McIntosh"", ""Laura L. Doud"", ""Doug Haubert"", ""Tom Modica"", ""Monique DeLaGarza"", ""City-Wide Elected Officials"", ""Appointed Officials"", ""Online Payments"", ""Online Services"", ""In-Person Services"", ""Opening a Business"", ""Doing Business With The City"", ""Resources"", ""Most Popular"", ""Online Resources"", ""Attractions"", ""Business Associations"", ""Travel Resources"", ""Departments"", ""Job Opportunities"", ""Information"", ""LBPD"", ""Employment"", ""Bureaus"", ""News & Events"", ""Crime Info"", ""How Do I"", ""How Do I"", ""Contact Us"", ""Volunteer Opportunities"", ""Do."", ""Discover."", ""Connect."", ""Ask.""]","["""", ""1st District"", ""2nd District"", ""3rd District"", ""4th District"", ""5th District"", ""6th District"", ""7th District"", ""8th District"", ""9th District"", ""City Attorney"", ""City Auditor"", ""City Prosecutor"", ""City Manager"", ""City Clerk""]","[""File a Report Online"", ""Submit a Tip"", ""Submit a Commendation"", ""File a Complaint"", ""Ride Along Program"", """", """", """", ""Crime Lab Survey"", """"]",[],"" -1877,https://www.arlingtontx.gov/news/my_arlington_t_x/news_archive/2016_archived_news/may_2016/arlington_honors_police_salutes_sacrifice,Media Bulletins,Agency-Published Resources,"Arlington Honors Police Service, Salutes Sacrifice - City of Arlington","",200,Just a moment...,"[""YOUR COMMUNITY NEWS AND EVENTS"", ""City of Arlington""]","[""Arlington Honors Police Service, Salutes Sacrifice""]",[],[],[],[],Skip to Content Skip to Content -1878,https://delcopa.gov/sustainability/pdf/raise/eastcostgreenwaytrailfeasibilitystudy_2009.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"404 - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert " -1880,https://spdblotter.seattle.gov/2010/08/09/john-diaz-confirmed-as-new-chief-of-police/,Media Bulletins,Agency-Published Resources,John Diaz confirmed as new Chief of Police - SPD Blotter,"",200,403 Forbidden,"[""John Diaz confirmed as new Chief of Police""]","[""Find Posts By Topic"", ""Featured Posts"", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],"Seattle.gov Choose a language: English English Google Translate may not accurately translate all content. Read disclaimer . For general City questions, please call 206-684-2489 . Tell us your requested language in English, and we can connect you with an interpreter. Continue Cancel Español Es posible que Google Translate no traduzca con precisión todo el contenido. Lea el descargo de responsabilidad . Si necesita ayuda en otro idioma, díganos en inglés nombre del idioma que necesita y lo conectaremos con un intérprete: 206-684-2489 Seguir Cancelar 中國語文 Google翻譯可能無法準確翻譯所有內容。 閱讀免責聲明 。 如果您需要翻譯,請用英語説出您所需要的語言,我們將爲你連接口譯員: 206-684-2489 繼續 取消 简体中文 Google翻译可能无法准确翻译所有内容。 阅读免责声明 。 如果您需要翻译,请用英语说出您所需要的语言,我们将为你连接口译员: 206-684-2489 继续 取消 Tiếng Việt Google Dịch có thể không dịch chính xác tất cả nội dung. Đọc tuyên bố từ chối trách nhiệm . Nếu quý vị cần hỗ trợ về ngôn ngữ, xin vui lòng cho chúng tôi biết ngôn ngữ quý vị cần hỗ trợ bằng tiếng Anh (ví dụ “Vietnamese”), chúng tôi sẽ kết nối quý vị với một thông dịch viên: 206-684-2489 Tiếp tục Huỷ bỏ русский язык Google Translate не может точно перевести весь контент. Прочтите отказ от ответственности . Если вам нужна языковая помощь, сообщите нам на английском, какой язык вам нужен, и мы свяжем вас с переводчиком: 206-684-2489 Продолжать Отмена Af-Soomaali Google Translate ayaan si sax ah u turjumi karin dhammaan waxyaabaha ku jira. Akhri afeef . Haddii aad u baahan tahay caawimaad luqadeed, fadlan noogu sheeg Ingiriisiga luqadda aad u baahan tahay, ka dib waxaan kugu xiri doonnaa turjubaan: 206-684-2489 Sii wad Jooji አማርኛ የጉግል ትርጉም ሁሉንም ይዘቶች በትክክል መተርጎም ላይችል ይችላል። ማስተባበያ አንብብ ፡፡ ኣስተርጓሚ ካስፈለግዎ የሚፈልጉትን ቋንቋ በእንግልዝኛ ይንገሩን፣ ከኣስተርጓሚ እናገናኝዎታለን። 206-684-2489 ቀጥል ሰርዝ 한국어 구글은 정확하게 모든 내용을 번역하지 않을 수 있습니다 번역. 읽기 면책 조항 . 언어지원이 필요한 경우, 필요한 언어를 영어로 말씀해 주시면 통역사와 연결해 드리겠습니다: 206-684-2489 계속하다 취소 Tagalog Maaaring hindi tumpak na isalin ng Google Translate ang lahat ng nilalaman. Basahin ang disclaimer . Para sa mga pangkalahatang katanungan sa Lungsod, mangyaring tawagan ang 206-684-2489 . Sabihin sa amin ang hiniling mong wika sa Ingles, at maikokonekta ka namin sa isang interpreter. Magpatuloy Kanselahin ภาษาไทย Google Translate อาจแปลเนื้อหาทั้งหมดไม่ถูกต้อง อ่านข้อจำกัดความรับผิดชอบ สำหรับคำถามทั่วไปเกี่ยวกับเมืองโปรดโทร 206-684-2489 บอกภาษาที่คุณต้องการเป็นภาษาอังกฤษและเราสามารถติดต่อคุณกับล่ามได้ ดำเนินการต่อ ยกเลิก 日本語 Google翻訳は、すべてのコンテンツを正確に翻訳するとは限りません. 免責事項をお読みください 。 市の一般的な質問については 206-684-2489 に電話してください。ご希望の言語を英語で教えていただければ、通訳をご案内いたします。 継続する キャンセル ភាសាខ្មែរ កម្មវិធីបកប្រែហ្គូហ្គោលមិនអាចបកប្រែមាតិកាទាំងអស់បានត្រឹមត្រូវទេ។ អានការបដិសេធ។ សម្រាប់សំណួរទូទៅរបស់ទីក្រុងសូមទូរស័ព្ទមក 206-684-2489 ។ ប្រាប់យើងពីភាសាដែលអ្នកស្នើសុំជាភាសាអង់គ្លេសហើយយើងអាចភ្ជាប់អ្នកជាមួយអ្នកបកប្រែភាសា។ បន្ត បោះបង់ ພາສາລາວ Google Translate ອາດຈະບໍ່ແປເນື້ອຫາທັງ ໝົດ ຢ່າງຖືກຕ້ອງ. ອ່ານປະຕິເສດ . ສຳ ລັບ ຄຳ ຖາມທົ່ວໄປຂອງເມືອງ, ກະລຸນາໂທຫາ 206-684-2489 . ບອກພວກເຮົາເປັນພາສາອັງກິດທີ່ທ່ານຮ້ອງຂໍ, ແລະພວກເຮົາສາມາດເຊື່ອມຕໍ່ທ່ານກັບນາຍແປພາສາ. ສືບຕໍ່ ຍົກເລີກ Українська Перекладач Google може не точно перекласти весь вміст. Прочитайте застереження . За загальними запитаннями про місто, будь ласка, телефонуйте 206-684-2489 . Розкажіть нам про вашу мову англійською мовою, і ми можемо зв’язати вас із перекладачем. Продовжуйте Скасувати Français Google Traduction peut ne pas traduire correctement tout le contenu. Lisez la clause de non-responsabilité . Pour des questions générales sur la ville, veuillez appeler le 206-684-2489 . Dites-nous votre langue souhaitée en anglais, et nous pourrons vous mettre en contact avec un interprète. Continuer Annuler " -1881,https://spdblotter.seattle.gov/2010/02/01/police-arrest-grab-n-go-bandit/,Media Bulletins,Agency-Published Resources,"""Grab-N-Go"" bandit arrested - SPD Blotter","",200,403 Forbidden,"[""“Grab-N-Go” bandit arrested""]","[""Find Posts By Topic"", ""Featured Posts"", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],"Seattle.gov Choose a language: English English Google Translate may not accurately translate all content. Read disclaimer . For general City questions, please call 206-684-2489 . Tell us your requested language in English, and we can connect you with an interpreter. Continue Cancel Español Es posible que Google Translate no traduzca con precisión todo el contenido. Lea el descargo de responsabilidad . Si necesita ayuda en otro idioma, díganos en inglés nombre del idioma que necesita y lo conectaremos con un intérprete: 206-684-2489 Seguir Cancelar 中國語文 Google翻譯可能無法準確翻譯所有內容。 閱讀免責聲明 。 如果您需要翻譯,請用英語説出您所需要的語言,我們將爲你連接口譯員: 206-684-2489 繼續 取消 简体中文 Google翻译可能无法准确翻译所有内容。 阅读免责声明 。 如果您需要翻译,请用英语说出您所需要的语言,我们将为你连接口译员: 206-684-2489 继续 取消 Tiếng Việt Google Dịch có thể không dịch chính xác tất cả nội dung. Đọc tuyên bố từ chối trách nhiệm . Nếu quý vị cần hỗ trợ về ngôn ngữ, xin vui lòng cho chúng tôi biết ngôn ngữ quý vị cần hỗ trợ bằng tiếng Anh (ví dụ “Vietnamese”), chúng tôi sẽ kết nối quý vị với một thông dịch viên: 206-684-2489 Tiếp tục Huỷ bỏ русский язык Google Translate не может точно перевести весь контент. Прочтите отказ от ответственности . Если вам нужна языковая помощь, сообщите нам на английском, какой язык вам нужен, и мы свяжем вас с переводчиком: 206-684-2489 Продолжать Отмена Af-Soomaali Google Translate ayaan si sax ah u turjumi karin dhammaan waxyaabaha ku jira. Akhri afeef . Haddii aad u baahan tahay caawimaad luqadeed, fadlan noogu sheeg Ingiriisiga luqadda aad u baahan tahay, ka dib waxaan kugu xiri doonnaa turjubaan: 206-684-2489 Sii wad Jooji አማርኛ የጉግል ትርጉም ሁሉንም ይዘቶች በትክክል መተርጎም ላይችል ይችላል። ማስተባበያ አንብብ ፡፡ ኣስተርጓሚ ካስፈለግዎ የሚፈልጉትን ቋንቋ በእንግልዝኛ ይንገሩን፣ ከኣስተርጓሚ እናገናኝዎታለን። 206-684-2489 ቀጥል ሰርዝ 한국어 구글은 정확하게 모든 내용을 번역하지 않을 수 있습니다 번역. 읽기 면책 조항 . 언어지원이 필요한 경우, 필요한 언어를 영어로 말씀해 주시면 통역사와 연결해 드리겠습니다: 206-684-2489 계속하다 취소 Tagalog Maaaring hindi tumpak na isalin ng Google Translate ang lahat ng nilalaman. Basahin ang disclaimer . Para sa mga pangkalahatang katanungan sa Lungsod, mangyaring tawagan ang 206-684-2489 . Sabihin sa amin ang hiniling mong wika sa Ingles, at maikokonekta ka namin sa isang interpreter. Magpatuloy Kanselahin ภาษาไทย Google Translate อาจแปลเนื้อหาทั้งหมดไม่ถูกต้อง อ่านข้อจำกัดความรับผิดชอบ สำหรับคำถามทั่วไปเกี่ยวกับเมืองโปรดโทร 206-684-2489 บอกภาษาที่คุณต้องการเป็นภาษาอังกฤษและเราสามารถติดต่อคุณกับล่ามได้ ดำเนินการต่อ ยกเลิก 日本語 Google翻訳は、すべてのコンテンツを正確に翻訳するとは限りません. 免責事項をお読みください 。 市の一般的な質問については 206-684-2489 に電話してください。ご希望の言語を英語で教えていただければ、通訳をご案内いたします。 継続する キャンセル ភាសាខ្មែរ កម្មវិធីបកប្រែហ្គូហ្គោលមិនអាចបកប្រែមាតិកាទាំងអស់បានត្រឹមត្រូវទេ។ អានការបដិសេធ។ សម្រាប់សំណួរទូទៅរបស់ទីក្រុងសូមទូរស័ព្ទមក 206-684-2489 ។ ប្រាប់យើងពីភាសាដែលអ្នកស្នើសុំជាភាសាអង់គ្លេសហើយយើងអាចភ្ជាប់អ្នកជាមួយអ្នកបកប្រែភាសា។ បន្ត បោះបង់ ພາສາລາວ Google Translate ອາດຈະບໍ່ແປເນື້ອຫາທັງ ໝົດ ຢ່າງຖືກຕ້ອງ. ອ່ານປະຕິເສດ . ສຳ ລັບ ຄຳ ຖາມທົ່ວໄປຂອງເມືອງ, ກະລຸນາໂທຫາ 206-684-2489 . ບອກພວກເຮົາເປັນພາສາອັງກິດທີ່ທ່ານຮ້ອງຂໍ, ແລະພວກເຮົາສາມາດເຊື່ອມຕໍ່ທ່ານກັບນາຍແປພາສາ. ສືບຕໍ່ ຍົກເລີກ Українська Перекладач Google може не точно перекласти весь вміст. Прочитайте застереження . За загальними запитаннями про місто, будь ласка, телефонуйте 206-684-2489 . Розкажіть нам про вашу мову англійською мовою, і ми можемо зв’язати вас із перекладачем. Продовжуйте Скасувати Français Google Traduction peut ne pas traduire correctement tout le contenu. Lisez la clause de non-responsabilité . Pour des questions générales sur la ville, veuillez appeler le 206-684-2489 . Dites-nous votre langue souhaitée en anglais, et nous pourrons vous mettre en contact avec un interprète. Continuer Annuler " -1882,https://www.sandiego.gov/department-document/san-diego-police-arrest-two-suspects-multiple-car-burglaries,Media Bulletins,Agency-Published Resources,San Diego Police Arrest Two Suspects for Multiple Car Burglaries | City of San Diego Official Website,"",200,City of San Diego Official Website,"[""City of San Diego Official Website""]","[""Main navigation"", ""Leisure"", ""Resident Resources"", ""Doing Business"", ""Library"", ""Public Safety"", ""City Hall"", ""San Diego Police Arrest Two Suspects for Multiple Car Burglaries"", ""Footer"", ""Accessibility Tools""]",[],"[""Parks"", ""Outdoors"", ""Neighborhoods"", ""Recreational Activities"", ""Street Maintenance"", ""Plan"", ""Fix"", ""Build"", ""Programs & Events"", ""Services"", ""Kids & Teens"", ""eCollection"", ""Police"", ""Fire-Rescue"", ""Lifeguards"", ""City Officials"", ""City Government""]",[],[],"" -1883,https://www.antioch.il.gov/2019/11/21/police-fire-commission-special-meeting/,Misc Police Activity,Police & Public Interactions,"Police & Fire Commission Special Meeting - Antioch, IL","",200,"Home - Antioch, IL","[""Police & Fire Commission Special Meeting""]",[],[],[],[],[],Open toolbar Accessibility Tools Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset -1884,http://www.longbeach.gov/police/press-releases/police-seek-publics-help/,Media Bulletins,Agency-Published Resources,POLICE SEEK PUBLICS HELP,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],"[""UPDATE: On November 10, 2015, Long Beach City Council approved a $25,000 reward that raises the total reward to $75,000.""]",[],[],[],"" -1885,https://www.mass.gov/regulations/273-cmr-400-scope-of-practice,Not Criminal Justice Related,Not Criminal Justice Related,273 CMR 4.00: Scope of practice | Mass.gov,273 CMR 4.00 establishes the scope of practice for the practice of naturopathic health care. Download a PDF copy of the regulation below.,200,Mass.gov,"[""Regulation 273 CMR 4.00: Scope of practice""]","[""Table of Contents for the law library, 273 CMR"", ""Contact for 273 CMR 4.00: Scope of practice"", ""Table of Contents"", ""Downloads"", ""Contact"", ""Contact for 273 CMR 4.00: Scope of practice"", ""Help Us Improve Mass.gov with your feedback""]","[""Trial Court Law Libraries"", ""Trial Court Law Libraries"", ""Trial Court Law Libraries""]","[""Online"", ""Online"", ""Online""]",[],[],"" -1886,https://champaignil.gov/tag/youth-police-academy/,Media Bulletins,Agency-Published Resources,Youth Police Academy Archives - City of Champaign,"",200,403 Forbidden,"[""Items tagged: Youth Police Academy""]","[""Reserve Your Spot Today! Citizen Police Academy and Youth Police Academy"", ""News Releases"", ""Department News""]",[],[],[],[],"skip to content City of Champaign Main Menu Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs Items tagged: Youth Police Academy Search Reserve Your Spot Today! Citizen Police Academy and Youth Police Academy Posted: March 8, 2017 Youth Police Academy Open to youth ages 12-18, the Youth Police Academy (YPA) introduces participants to the field of law enforcement and allows youth and police officers to build stronger, positive relationships. Students will attend a mock police academy involving lectures, demonstrations, role-play scenarios and team building exercises. YPA offers the following courses: Basic: June 27-30, 2017, 1:00 […] Categories: Police Department Press Releases | Tags: Citizen Police Academy , Reserve Your Spot Today! Citizen Police Academy and Youth Police Academy , Youth Police Academy Subscribe to City News Read All City News News Releases General Construction Fire Department Police Department Department News City Council City Manager’s Office Equity and Engagement Department Finance Department Fire Department Human Resources Department Information Technologies Department Legal Department Library METCAD 9-1-1 Neighborhood Services Department Planning and Development Department Police Department Public Works Department The Champaign Insider City Newsletter City of Champaign City of Champaign 102 N. Neil St. Champaign, IL 61820 217-403-8700 Site Disclaimer I Privacy Policy City of Champaign Main Menu Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs City of Champaign Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works " -1887,https://delcopa.gov/planning/pubs/delco2035.html,Not Criminal Justice Related,Not Criminal Justice Related,"Delaware County 2035- Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Delaware County 2035""]","[""Component Plans""]","[""Planning Department Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Delaware County 2035 Home / Departments / Planning Department / Publications / Delaware County 2035 Delaware County 2035 is the Comprehensive Plan for Delaware County, PA and provides a policy framework for land use decisions in the County. Delaware County 2035 consists of a central, Land Use Policy Framework Plan and a number of related, interconnected, but more detailed component plans. Some of these component plans – addressing additional planning-related elements within the County – have already been developed, others are currently underway, and more will be developed in the future, but all will use the same framework and build off of the Land Use policies laid out in the Framework Plan. Questions about Delaware County 2035 ? Contact the Planning Department at 610-891-5200 or Planning_Department@co.delaware.pa.us . Component Plans Land Use Policy Framework Plan (2013) Open Space and Recreation Plan (2015) Economic Development Plan (2017) Historic Preservation Plan (2018) Transportation Plan (2017) Housing Plan (Under Development) Implementation Metrics Report The Implementation Metrics Report helps the County to track progress in implementing Delaware County 2035. Perhaps most importantly, it will help the County to determine the efforts that are working most effectively and which goals may need more focus or a different approach. It uses commonly available data that is tracked regionally or nationally and regularly updated; this allows the report to be updated regularly. View the 2017 Implementation Metrics Report Planning Department Navigation Access the Data and Mapping Innovation Hub About Planning Calendar Current Projects Delaware County 2035 Demographic Data Development Review Forms Funding Green Space and Trails Project Mapping Municipal Programs & Initiatives Planning Education Publications Gina Burritt, Director Planning Department 2 W. Baltimore Avenue Suite 202 Media, PA 19063 Phone: 610-891-5200 Fax: 610-891-5203 Email: Planning_Department@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2023 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Delaware County 2035 Home / Departments / Planning Department / Publications / Delaware County 2035 Delaware County 2035 Home / Departments / Planning Department / Publications / Delaware County 2035 Delaware County 2035 " -1888,https://www.sandiego.gov/department-document/resolution-no-115919-copy,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -1889,https://southamptontownnypolice.gov/faq.aspx?qid=237,Not Criminal Justice Related,Not Criminal Justice Related,FAQs • What happens if I pay my taxes late?,"",200,"Police | Southampton, NY - Official Website",[],"[""▼ Tax Receiver""]","[""Site Tools"", ""Categories"", ""In Person"", ""Mail"", ""Online Services"", ""Live Edit"", ""Contact Us"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -1890,https://champaignil.gov/police/about-us/level-up-experienced-officer-interest-form/,Contact Info & Agency Meta,Info About Agencies,"","",404,"","","","","","","","" -1891,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/arrests/052421arrests.pdf,Arrest Records,Police & Public Interactions,"","",404,"","","","","","","","" -1892,https://www.londonohio.gov/copy-of-city-ordances,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -1893,https://estespark.colorado.gov/departments/police/operations/patrol,Contact Info & Agency Meta,Info About Agencies,Patrol | Town of Estes Park,"",200,Home | Town of Estes Park,"[""Patrol""]","[""Providing Quality Police Services""]","[""What we do"", ""The Town"", ""Animal Control"", ""Code Enforcement"", ""DUI Enforcement"", ""School Resource Officer (SRO)"", ""Language Translation""]",[],[],[],"" -1894,https://www.tukwilawa.gov/departments/police/police-department-services/online-reporting/,Resources,Agency-Published Resources,Online Reporting - City of Tukwila,"",200,Home - City of Tukwila,"[""Online Reporting""]",[],"[""Government""]","[""City of Tukwila""]","[""I am a..."", ""Online Services"", ""Most Requested Forms""]",[],"" -1895,https://www.sandiego.gov/police/recruiting/contact,Contact Info & Agency Meta,Info About Agencies,Join Us Contact | City of San Diego Official Website,The following contact information and form are for theSDPD Recruiting Unit only. SeeContact Police Dispatchfor dispatch information and the dispatch contact form.,200,City of San Diego Official Website,"[""City of San Diego Official Website"", ""Join Us Contact""]","[""Main navigation"", ""Leisure"", ""Resident Resources"", ""Doing Business"", ""Library"", ""Public Safety"", ""City Hall"", """", ""Footer"", ""Accessibility Tools""]","[""Recruiting Officers"", ""Dispatch Recruiting""]","[""Parks"", ""Outdoors"", ""Neighborhoods"", ""Recreational Activities"", ""Street Maintenance"", ""Plan"", ""Fix"", ""Build"", ""Programs & Events"", ""Services"", ""Kids & Teens"", ""eCollection"", ""Police"", ""Fire-Rescue"", ""Lifeguards"", ""City Officials"", ""City Government""]",[],[],"" -1896,https://delcopa.gov/publicrelations/releases/2021/sheriffsofficeaccreditation.html,Media Bulletins,Agency-Published Resources,"Delaware County Sheriff's Office Earns Law Enforcement Accreditation - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Delaware County Sheriff's Office Earns Law Enforcement Accreditation""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Delaware County Sheriff's Office Earns Law Enforcement Accreditation Home / Departments / Public Relations Releases / Delaware County Sheriff's Office Earns Law Enforcement Accreditation Released: September 7, 2021 Delaware County Council commends the Delaware County Sheriff’s Office, under the leadership of Sheriff Jerry L. Sanders, Jr., for earning a unanimous vote for accreditation by the Pennsylvania Law Enforcement Accreditation Commission of the Pennsylvania Chiefs of Police Association. Accreditation is awarded to only a small percentage of law enforcement agencies in Pennsylvania, and County Council is proud that the Sheriff’s Office has earned such a distinguished honor, exhibiting strong leadership and professionalism. This is the third time that the Sheriff’s office has earned this distinction, and the second time since Sheriff Sanders first took office in early 2018. To determine if a law enforcement agency will be awarded accreditation, the Commission conducts a thorough analysis to determine if the office’s current policies comply with the program’s 139 standards, and on-site reviews of agency files are conducted by trained assessors to ensure compliance with those standards. The Commission found the office to be meritorious and worthy of accreditation. Law enforcement accreditation is considered a progressive and time-proven method of helping law enforcement agencies evaluate and improve their overall performance by adopting high standards and professional objectives. Accreditation has many benefits, including: Improvements in law enforcement/community relations Increases employee input, interaction, and confidence in the agency Reduces agency risk and exposure to lawsuits Decreases liability insurance expenditures Extends agency accountability to the public and elected officials Encourages problem-solving activities within the agency Identifies and highlights the capabilities and competence of the agency Furnishes a solid foundation for the agency to build upon for further progress In all, over 375 agencies have enrolled since the program’s inception in 2001, and only 131 agencies currently maintain accredited status—including just six sheriff’s offices in the State and eight of 51 law enforcement agencies in Delaware County. The Delaware County’s Sheriff’s Office’s accreditation was announced during the Pennsylvania Chiefs of Police Association's annual banquet in July of 2021, and accreditation status will remain valid for a three-year period with annual reports required. Public Relations Navigation Press Releases County Newsletter Use of County Facility Form Questions about COVID-19 vaccines? Please call the COVID-19 Call Center: 484-276-2100. Adrienne Marofsky, Director Government Center, 226A 201 W. Front St. Media, PA 19063 Phone: 610-891-4943 delcopr@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll " -1897,https://www.roseville.ca.us/news/what_s_happening_in_roseville/police_thank_local_community,Media Bulletins,Agency-Published Resources,Police thank local community for RPAL support - City of Roseville,Residents of a newly developed Fiddyment Farm neighborhood came together on July Fourth in celebration and support of the greater Roseville community.,200,Just a moment...,"[""City of Roseville""]","[""Police thank local community for RPAL support"", ""Police thank you local community for RPAL support"", ""Featured Stories""]","[""Help us improve our website"", ""Drop in for free daily activities during National Library Week"", ""Nature’s protectors: Urban Forestry Team safeguards local wildlife"", ""Join us for Roseville Venture Lab entrepreneur and small business events"", ""Gear up for Roseville BikeFest"", ""City of Roseville""]",[],[],[],"" -1898,http://www.longbeach.gov/police/press-releases/l-b-p-d--dui-checkpoint-proves-effective/,Media Bulletins,Agency-Published Resources,L.B.P.D. DUI CHECKPOINT PROVES EFFECTIVE,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 4/28/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: L.B.P.D. DUI CHECKPOINT PROVES EFFECTIVE Contact: Media Relations Details (562) 570-5273 On Saturday, April 26, 2014, the Long Beach Police Department's Traffic Section conducted a Driving Under the Influence/Driver License Checkpoint on Atlantic Ave. and South St. from 7 p.m. until 3 a.m. During the eight-hour operation, which was aided by Long Beach Police Explorers, Long Beach Search and Rescue and Public Works, 575 vehicles passed through the checkpoint with 286 drivers being screened, resulting in the following statistics: Five (5) field sobriety tests conducted Two (2) DUI arrests One (1) arrest for other charges Six (6) cited for unlicensed driving Two (2) cited for suspended license One (1) vehicles impounded for suspended license DUI checkpoints are a vital component in the fight against both impaired and unlicensed driving. Nationally, impaired driving caused by alcohol and/or drugs causes one death every 33 minutes. The average American has a 30% chance of being killed or injured by a driver under the influence. Sobriety checkpoints have been proven to reduce these types of driving-related collisions by removing such drivers from our streets. Funding for this program was provided by a grant from the California Office of Traffic Safety, through the National Highway Safety Administration. For further information contact Traffic Section Lieutenant Kris Klein at (562) 570-7292. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -1899,https://www.sandiego.gov/department-document/police-officer-cleared-shooting-jury-finds-actions-were-reasonable,Officer Involved Shootings,Police & Public Interactions,Police Officer Cleared in Shooting; Jury Finds Actions Were Reasonable | City of San Diego Official Website,"",200,City of San Diego Official Website,"[""City of San Diego Official Website""]","[""Main navigation"", ""Leisure"", ""Resident Resources"", ""Doing Business"", ""Library"", ""Public Safety"", ""City Hall"", ""Police Officer Cleared in Shooting; Jury Finds Actions Were Reasonable"", ""Footer"", ""Accessibility Tools""]",[],"[""Parks"", ""Outdoors"", ""Neighborhoods"", ""Recreational Activities"", ""Street Maintenance"", ""Plan"", ""Fix"", ""Build"", ""Programs & Events"", ""Services"", ""Kids & Teens"", ""eCollection"", ""Police"", ""Fire-Rescue"", ""Lifeguards"", ""City Officials"", ""City Government""]",[],[],"" -1900,https://www.roundrocktexas.gov/news/police-seek-assistance-locating-robbery-suspect-3/,Media Bulletins,Agency-Published Resources,Bank robbery suspect arrested following public assistance - City of Round Rock,"",200,403 Forbidden,[],[],"[""Bank robbery suspect arrested following public assistance""]","[""Site Search"", ""Follow Us""]",[],[],"" -1901,https://www.plymouthmi.gov/government/departments/police/forms_and_documents/i_c_m_a_public_safety_reports,Annual & Monthly Reports,Info About Agencies,"ICMA Public Safety Reports - City of Plymouth, MI","",200,Just a moment...,"[""ICMA Public Safety Reports""]",[],[],[],[],[],"" -1902,https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0351/,Complaints & Misconduct,Info About Officers,"","",200,"","","","","","","","" -1903,https://www.stpaul.gov/departments/police/connect-with-department/minnesota-crime-alert-network,Contact Info & Agency Meta,Info About Agencies,Minnesota Crime Alert Network | Saint Paul Minnesota,"Minnesota Crime Alert Network The Saint Paul Police Department, Bureau of Criminal Apprehension and the Minnesota Department of Public Safety are inviting",200,Home | Saint Paul Minnesota,"[""Minnesota Crime Alert Network""]","[""Main Navigation"", ""Popular Topics"", ""Breadcrumb"", ""Minnesota Crime Alert Network"", ""Footer""]","[""You are using an unsupported browser. Please use Microsoft Edge."", ""Contact The City"", ""Email Us"", ""Call 651-266-8989""]","[""Business Spotlight"", ""Featured"", ""Business Spotlight"", ""Featured""]",[],[],"" -1904,https://alpha.austin.gov/en/police-oversight/formal-complaint-purpose-and-scope-12/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -1905,https://pittsburghpa.gov/files/police/orders/ch3/35-03-infectious-disease-kits.pdf,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -1906,https://www.minneapolismn.gov/news/2022/september/new-police-chief-/,Poor Data Source,Poor Data Source,300 Multiple Choices,"",300,City of Minneapolis,"[""Multiple Choices""]",[],[],[],[],[],"" -1907,https://coloradosprings.gov/police-department/article/news/traffic-fatality-briargate-parkway-and-1,Media Bulletins,Agency-Published Resources,Traffic Fatality: Briargate Parkway and Chapel Hills Drive | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""Traffic Fatality: Briargate Parkway and Chapel Hills Drive""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[],"" -1908,http://www.lafayettepolice.us/3537/report-an-issue,Resources,Agency-Published Resources,"Report an Issue | Lafayette, IN - Official Website",Reporting landing page for SeeClickFix request categories.,200,"Police Department | Lafayette, IN - Official Website","[""Report an Issue""]",[],"[""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Government Services Our Community Business & Development How Do I... Transparency Home How Do I... Submit Report an Issue Report an Issue The City of Lafayette has partnered with CivicPlus to bring a better reporting solution, SeeClickFix. We believe this solution will provide a more robust experience to our citizens, as well as improve efficiencies in responding to your inquiries. To use this, simply follow one of the Request Category links below, or via your iOS or Android smartphone via the SeeClickFix app. Quick download links for these are below, to be used from your smartphone or tablet: Download SeeClickFix on the Apple App Store Download SeeClickFix from Google Play **Please note that the CivicMobile and LafayetteIN apps are being phased-out soon. The SeeClickFix app includes other City links, and our website is mobile-accessible if you would prefer to not use an app. These apps will be removed from the relevant app stores soon: The SeeClickFix app will replace our mobile app: Parking Citation Payments Online Utility Payments Police Department Compliments & Concerns Street Light Outages Star City Customer Service Award Nomination Report an Issue Employment Utilities Payment Submit a Request Permits & Licensing Agendas & Minutes Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate " -1910,http://police.portlandmaine.gov/1170/maine-state-pier,Not Criminal Justice Related,Not Criminal Justice Related,"Maine State Pier | Portland, ME - Official Website","",200,"Portland, ME - Official Website | Official Website","[""Maine State Pier""]",[],[],[],[],[],"Skip to Main Content Places Programs Venues About Us Home Your Government Departments Parks, Recreation & Facilities Venues Maine State Pier Maine State Pier City Hall Community Centers FAQ James A Banks Sr Portland Exposition Building Maine State Pier Merrill Auditorium Ocean Gateway Public Assembly Facilities Troubh Ice Arena Use of Public Space Government Websites by CivicPlus® Places Programs Venues About Us Home Your Government Departments Parks, Recreation & Facilities Venues Maine State Pier Maine State Pier City Hall Community Centers FAQ James A Banks Sr Portland Exposition Building Maine State Pier Merrill Auditorium Ocean Gateway Public Assembly Facilities Troubh Ice Arena Use of Public Space Government Websites by CivicPlus® Places Programs Venues About Us Home Your Government Departments Parks, Recreation & Facilities Venues Maine State Pier Maine State Pier City Hall Community Centers FAQ James A Banks Sr Portland Exposition Building Maine State Pier Merrill Auditorium Ocean Gateway Public Assembly Facilities Troubh Ice Arena Use of Public Space Government Websites by CivicPlus® Places Programs Venues About Us Home Your Government Departments Parks, Recreation & Facilities Venues Maine State Pier Maine State Pier City Hall Community Centers FAQ James A Banks Sr Portland Exposition Building Maine State Pier Merrill Auditorium Ocean Gateway Public Assembly Facilities Troubh Ice Arena Use of Public Space Government Websites by CivicPlus® Places Programs Venues About Us Home Your Government Departments Parks, Recreation & Facilities Venues Maine State Pier Maine State Pier City Hall Community Centers FAQ James A Banks Sr Portland Exposition Building Maine State Pier Merrill Auditorium Ocean Gateway Public Assembly Facilities Troubh Ice Arena Use of Public Space Home Your Government Departments Parks, Recreation & Facilities Venues Maine State Pier Maine State Pier City Hall Community Centers FAQ James A Banks Sr Portland Exposition Building Maine State Pier Merrill Auditorium Ocean Gateway Public Assembly Facilities Troubh Ice Arena Use of Public Space Home Your Government Departments Parks, Recreation & Facilities Venues Maine State Pier Maine State Pier City Hall Community Centers FAQ James A Banks Sr Portland Exposition Building Maine State Pier Merrill Auditorium Ocean Gateway Public Assembly Facilities Troubh Ice Arena Use of Public Space Home Your Government Departments Parks, Recreation & Facilities Venues Maine State Pier Maine State Pier Home Your Government Departments Parks, Recreation & Facilities Venues Maine State Pier Maine State Pier Home Your Government Departments Parks, Recreation & Facilities Venues Maine State Pier Maine State Pier Maine State Pier City Hall Community Centers FAQ James A Banks Sr Portland Exposition Building Maine State Pier Merrill Auditorium Ocean Gateway Public Assembly Facilities Troubh Ice Arena Use of Public Space City Hall Community Centers FAQ James A Banks Sr Portland Exposition Building Maine State Pier Merrill Auditorium Ocean Gateway Public Assembly Facilities Troubh Ice Arena Use of Public Space Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® " -1911,https://alpha.austin.gov/en/police-oversight/2020-08-26-12/,Complaints & Misconduct,Info About Officers,"","",200,"","","","","","","","" -1912,https://www.roundrocktexas.gov/news/round-rock-police-investigate-suspicious-death-subject-in-custody/,Media Bulletins,Agency-Published Resources,Police investigate murder at storage facility - City of Round Rock,"",200,403 Forbidden,[],[],"[""Police investigate murder at storage facility""]","[""Site Search"", ""Follow Us""]",[],[],"" -1913,http://www.longbeach.gov/police/press-releases/murder-3500-block-of-faust-ave/,Media Bulletins,Agency-Published Resources,Murder 3500 Block of Faust Ave,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 12/7/2015 FOR IMMEDIATE RELEASE Press Release # Subject: MURDER Contact: Media Relations Detail (562) 570-5273 On Sunday, December 6, 2015, at approximately 11:50 p.m., Long Beach Police responded to a residence in the 3500 block of Faust Avenue regarding the body of a deceased male adult. Based on the preliminary investigation, it was determined the victim and a male subject had become involved in a dispute at the location. Further investigation revealed the victim and male subject were in a relationship and resided at the location together. During a physical altercation, the victim sustained severe head trauma. Long Beach Fire Department paramedics were then called to the scene who determined the victim deceased and requested the assistance of the police department. The victim is only being identified as a 45-year-old male, pending notification of next of kin. The suspect, identified as 24-year-old Timothy Hagler, was arrested at the scene. He has been booked for murder and is being held at the Long Beach City Jail on $1,000,000.00 bail. Anyone with information regarding this incident is asked to contact Long Beach Police Homicide Detectives Mark Bigel Guarino and Shea Robertson at (562) 570-7244. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting www.lacrimestoppers.org. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -1914,https://www.antioch.il.gov/wpfb-file/national-coffee-with-a-cop-flyer-template-ppt-pdf/,Misc Police Activity,Police & Public Interactions,"National-Coffee-With-A-Cop-Flyer-Template-ppt - Antioch, IL",15230 national coffee with a cop flyer template ppt pdf event documents 2017 1625759890 364503d45be0a2fb8c68180abac5d6cd 15a3caf730ab8522c6cbb9cef220d9e955aab263a9e0b28c90daa8b038d5efb9 225x300 _razo576asevc thumb jpg 09 18 14 17 40 0 216 125 48 192 2021 07 13 26 38 pdf application num_pages pagefailed_1 pagefailed_2 pagefailed_3 pagefailed_4 pagefailed_5 pagefailed_6 pagefailed_7 pagefailed_8 pagefailed_9 pagefailed_10 pagefailed_11 pagefailed_12 pagefailed_13 pagefailed_14 pagefailed_15 pagefailed_16 pagefailed_17,200,"Home - Antioch, IL","[""National-Coffee-With-A-Cop-Flyer-Template-ppt""]",[],[],[],[],[],Open toolbar Accessibility Tools Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset -1915,http://www.longbeach.gov/police/press-releases/murder-19-/,Media Bulletins,Agency-Published Resources,MURDER(19),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 2/5/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: MURDER Contact: Media Relations (562) 570-5273 On Wednesday, February 04, 2015, at approximately 3:00 p.m., Long Beach Police responded to the 4400 block of Rutgers Avenue regarding two deceased individuals found inside a residence. When the officers arrived they located a male adult and a female adult who appeared to have sustained gunshot wounds. Long Beach Fire Department Paramedics responded and pronounced both individuals deceased at the scene. The victims have been identified as 57-year-old Salvador Trujillo , and his wife, 57-year-old Sayuri Jean Griffin of Long Beach. The preliminary investigation revealed there were no obvious signs of forced entry to the home, and a firearm was recovered from the scene. This does not appear to be a random act of violence. The investigation remains ongoing. Anyone with information regarding this incident is urged to contact Long Beach Police Homicide Detectives Hugo Cortes and Oscar Valenzuela at (562) 570-7244. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting www.lacrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -1916,https://pittsburghpa.gov/files/police/orders/ch2/25-02-reinstatement-voluntary-break-in-service.pdf,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -1917,http://www.longbeach.gov/police/press-releases/dui-checkpoint-nets-one-arrest---numerous-citations/,Media Bulletins,Agency-Published Resources,DUI CHECKPOINT NETS ONE ARREST & NUMEROUS CITATIONS,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 6/19/2017 FOR IMMEDIATE RELEASE Press Release # 2017 Subject: DUI CHECKPOINT NETS ONE ARREST & NUMEROUS CITATIONS Contact: Media Relations Detail (562) 570-5273 The Long Beach Police Department’s Traffic Section conducted a DUI/Driver’s License checkpoint on Saturday, June 17th. The checkpoint was located at the intersection of Pacific Coast Highway and Daisy Avenue, between the hours of 7:00 p.m. and 3:00 a.m. Checkpoints are placed in locations that have the greatest opportunity for achieving drunk and drugged driving deterrence and provide the greatest safety for officers and the public. High Visibility Enforcements, which include DUI/Driver’s License checkpoints, have been shown to lower DUI deaths and injuries. A major component of these checkpoints are the deterrent effects it has on those who might drive while alcohol or drug impaired, bringing about more awareness and encouraging everyone to use sober designated drivers. Listed below are the statistics related to Saturday’s checkpoint: 1,225 vehicles through checkpoint 461 vehicles screened 1 DUI-alcohol suspect arrested 3 drivers cited for operating a vehicle while license suspended/revoked 22 drivers cited for operating a vehicle while unlicensed 9 citations issued for unsafe driving Drivers are encouraged to download the Designated Driver VIP, or “DDVIP,” free mobile app for Android or iPhone. The DDVIP app helps find nearby bars and restaurants that feature free incentives for the designated sober driver, from free non-alcoholic drinks to free appetizers and more. The feature-packed app even has social media tie-ins and a tab for the non-DD to call Uber, Lyft, or Curb. Studies of California drivers have shown that 30 percent of drivers in fatal crashes had one or more drugs in their systems. A study of active drivers showed more tested positive for drugs that may impair driving (14 percent), than did for alcohol (7.3 percent). Of the drugs, marijuana was most prevalent, at 7.4 percent, slightly more than alcohol. Drivers caught driving impaired can expect the impact of a DUI arrest to include jail time, fines, fees, DUI classes, license suspension and other expenses that can exceed $10,000, not to mention the embarrassment when friends and family find out. The checkpoint was funded by a grant from the California Office of Traffic Safety, through the National Highway Traffic Safety Administration, reminding everyone to ‘Report Drunk Driver – Call 9-1-1’. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -1918,https://dccouncil.gov/donation-disclosures/copy-of-december-2018-donation-disclosures-3/,Not Criminal Justice Related,Not Criminal Justice Related,Copy of December 2018 Donation Disclosures • Council of the District of Columbia,"",200,Home • Council of the District of Columbia,"[""Copy of December 2018 Donation Disclosures""]",[],[],[],[],[],"Federal Tax Counter: $1,298,489,450 What is this? Get Updates RSS Press Center facebook twitter youtube Council of the District of Columbia Hearings Calendar Legislation & Laws The Council Federal Tax Counter: $1,298,489,450 What is this? Get Updates RSS Press Center facebook twitter youtube Federal Tax Counter: $1,298,489,450 What is this? Get Updates RSS Press Center facebook twitter youtube Council of the District of Columbia Hearings Calendar Legislation & Laws The Council Council of the District of Columbia Copy of December 2018 Donation Disclosures June 07, 2019 Copy of December 2018 Donation Disclosures Copy of December 2018 Donation Disclosures June 07, 2019 Copy of December 2018 Donation Disclosures DC Council seal About the Council Open Government Register to Vote Council Updates Jobs Council Directory Privacy Policy Commemorative D.C. Flag Program Ethics Visit the Wilson Building facebook twitter youtube Council of the District of Columbia 1350 Pennsylvania Avenue, NW, Washington, D.C. 20004 © Copyright 2016, The Council of the District of Columbia. All rights reserved Council of the District of Columbia 1350 Pennsylvania Avenue, NW, Washington, D.C. 20004 © Copyright 2016, The Council of the District of Columbia. All rights reserved Search facebook twitter youtube Original text Rate this translation Your feedback will be used to help improve Google Translate Original text Rate this translation Your feedback will be used to help improve Google Translate Original text Original text Rate this translation Your feedback will be used to help improve Google Translate Rate this translation Your feedback will be used to help improve Google Translate Rate this translation Your feedback will be used to help improve Google Translate " -1919,https://www.sandyspringsgapolice.gov/north-metro-s-w-a-t/,Contact Info & Agency Meta,Info About Agencies,North Metro S.W.A.T. – Sandy Springs Police Department,"",200,Sandy Springs Police Department,"[""North Metro S.W.A.T.""]",[],[],[],[],[],Emergency: Dial 911 | Non-Emergency: Phone Directory | Police Reports | Events Emergency: Dial 911 | Non-Emergency: Phone Directory | Police Reports | Events Menu Menu About SSPD Police Chief Command Staff Districts Careers with SSPD Contact Us Visit Police HQ Higher Learning Statement on Use of Force & Community Engagement SSPD Most Wanted In Memoriam Sandy Springs Police Benevolent Fund SSPD’s Social Media Policy Divisions and Units Patrol Division Special Operations Division Criminal Investigation Division Administration Division Intelligence and Technology Division Internal Affairs Training and Background Unit Property & Evidence Unit Specialized Units North Metro S.W.A.T. Quick Response Force Street Crimes Unit K-9 Unit Traffic Traffic Response Vehicle Bicycle Patrol CSI Unit Crisis Negotiation Team River Patrol Unit Honor Guard Drone Program Community Part Time / Reserve Officers Task Forces Organizational Chart Citizen Services Alarm Information Alcohol Pouring Permits Apartment Safety Checker ChatComm911 Criminal History Reports and Record Restrictions Event Map ⤤ Domestic Violence Resources Home and Business Checks Mental Health & Substance Abuse Municipal Court Off-Duty Officer Requests Open Records Requests Police Reports Report a Crime & Crime Tips Sex Offender Registry Vehicle Release VIN Verification Weapons Carry License Crime Prevention Crime Statistics Neighborhood Watch Home and Business Security Citizen Participation SSPD Events Citizens Police Academy (CPA) Women’s Self Defense Classes Handgun Safety Class Volunteer Programs Citizens On Patrol (COPS) Law Enforcement Explorers Youth Program Internship Program VIPS (Volunteers in Police Service) Chaplains Program Camera Registry Program Menu About SSPD Police Chief Command Staff Districts Careers with SSPD Contact Us Visit Police HQ Higher Learning Statement on Use of Force & Community Engagement SSPD Most Wanted In Memoriam Sandy Springs Police Benevolent Fund SSPD’s Social Media Policy Divisions and Units Patrol Division Special Operations Division Criminal Investigation Division Administration Division Intelligence and Technology Division Internal Affairs Training and Background Unit Property & Evidence Unit Specialized Units North Metro S.W.A.T. Quick Response Force Street Crimes Unit K-9 Unit Traffic Traffic Response Vehicle Bicycle Patrol CSI Unit Crisis Negotiation Team River Patrol Unit Honor Guard Drone Program Community Part Time / Reserve Officers Task Forces Organizational Chart Citizen Services Alarm Information Alcohol Pouring Permits Apartment Safety Checker ChatComm911 Criminal History Reports and Record Restrictions Event Map ⤤ Domestic Violence Resources Home and Business Checks Mental Health & Substance Abuse Municipal Court Off-Duty Officer Requests Open Records Requests Police Reports Report a Crime & Crime Tips Sex Offender Registry Vehicle Release VIN Verification Weapons Carry License Crime Prevention Crime Statistics Neighborhood Watch Home and Business Security Citizen Participation SSPD Events Citizens Police Academy (CPA) Women’s Self Defense Classes Handgun Safety Class Volunteer Programs Citizens On Patrol (COPS) Law Enforcement Explorers Youth Program Internship Program VIPS (Volunteers in Police Service) Chaplains Program Camera Registry Program -1920,https://www.ashevillenc.gov/news/three-promoted-in-asheville-police-dept/,Media Bulletins,Agency-Published Resources,ERROR: The request could not be satisfied,"",200,The City of Asheville - Your Asheville,"[""403 ERROR""]","[""The request could not be satisfied.""]",[],[],[],[],"" -1921,https://www.east-windsor.nj.us//police/cpanel,Poor Data Source,Poor Data Source,cPanel Login,"",200,"Official Website of East Windsor Township, New Jersey - Home",[],[],[],[],[],[],"JavaScript is disabled in your browser. - For cPanel to function properly, you must enable JavaScript. - If you do not enable JavaScript, certain features in cPanel will not function correctly. You have logged out. The system has detected that you are using Internet Explorer 11. cPanel & WHM no longer supports Internet Explorer 11. For more information, read the cPanel Blog . Please select a locale: X Close العربية български čeština dansk Deutsch Ελληνικά English español español latinoamericano español de España suomi Filipino français עברית magyar i_en Bahasa Indonesia italiano 日本語 한국어 Bahasa Melayu norsk bokmål Nederlands Norwegian polski português português do Brasil română русский slovenščina svenska ไทย Türkçe українська Tiếng Việt 中文 中文(中国) 中文(台湾) Continue Username Password Log in Reset Password Change locale العربية български čeština dansk Deutsch Ελληνικά English español español latinoamericano español de España suomi Filipino français עברית magyar i_en Bahasa Indonesia italiano 日本語 한국어 Bahasa Melayu norsk bokmål Nederlands Norwegian polski português português do Brasil română русский slovenščina svenska ไทย Türkçe українська Tiếng Việt 中文 中文(中国) 中文(台湾) Change العربية български čeština dansk Deutsch Ελληνικά English español … Select a locale: English JavaScript is disabled in your browser. - For cPanel to function properly, you must enable JavaScript. - If you do not enable JavaScript, certain features in cPanel will not function correctly. You have logged out. The system has detected that you are using Internet Explorer 11. cPanel & WHM no longer supports Internet Explorer 11. For more information, read the cPanel Blog . Please select a locale: X Close العربية български čeština dansk Deutsch Ελληνικά English español español latinoamericano español de España suomi Filipino français עברית magyar i_en Bahasa Indonesia italiano 日本語 한국어 Bahasa Melayu norsk bokmål Nederlands Norwegian polski português português do Brasil română русский slovenščina svenska ไทย Türkçe українська Tiếng Việt 中文 中文(中国) 中文(台湾) Continue Username Password Log in Reset Password Change locale العربية български čeština dansk Deutsch Ελληνικά English español español latinoamericano español de España suomi Filipino français עברית magyar i_en Bahasa Indonesia italiano 日本語 한국어 Bahasa Melayu norsk bokmål Nederlands Norwegian polski português português do Brasil română русский slovenščina svenska ไทย Türkçe українська Tiếng Việt 中文 中文(中国) 中文(台湾) Change العربية български čeština dansk Deutsch Ελληνικά English español … Select a locale: English JavaScript is disabled in your browser. - For cPanel to function properly, you must enable JavaScript. - If you do not enable JavaScript, certain features in cPanel will not function correctly. You have logged out. The system has detected that you are using Internet Explorer 11. cPanel & WHM no longer supports Internet Explorer 11. For more information, read the cPanel Blog . JavaScript is disabled in your browser. - For cPanel to function properly, you must enable JavaScript. - If you do not enable JavaScript, certain features in cPanel will not function correctly. You have logged out. You have logged out. You have logged out. You have logged out. " -1922,https://www.dps.nm.gov/blog/2021/04/14/new-mexico-state-police-arrests-driver-for-vehicular-homicide-in-chaves-county/,Media Bulletins,Agency-Published Resources,New Mexico State Police Arrests Driver for Vehicular Homicide in Chaves County - NM Department of Public Safety,"",200,Home - NM Department of Public Safety,"[""New Mexico State Police Arrests Driver for Vehicular Homicide in Chaves County""]",[],"[""Location"", ""Sitemap"", ""Quick Links"", ""Social Media Links""]",[],[],[],"Manage Cookie Consent We use cookies to optimize our website and our service. Functional Functional Always active The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network. Preferences Preferences The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user. Statistics Statistics The technical storage or access that is used exclusively for statistical purposes. The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you. Marketing Marketing The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes. Manage options Manage services Manage {vendor_count} vendors Read more about these purposes Accept Deny Preferences Save preferences Preferences Cookie Policy Privacy Statement {title} Manage Cookie Consent We use cookies to optimize our website and our service. Functional Functional Always active The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network. Preferences Preferences The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user. Statistics Statistics The technical storage or access that is used exclusively for statistical purposes. The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you. Marketing Marketing The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes. Manage options Manage services Manage {vendor_count} vendors Read more about these purposes Accept Deny Preferences Save preferences Preferences Cookie Policy Privacy Statement {title} Manage Cookie Consent Manage Cookie Consent " -1923,https://cityofpowell.us/police-agency/traffic-surveys/traffic-survey-report-11-13-17-2/,Not Criminal Justice Related,Not Criminal Justice Related,"City of Powell, Ohio | Traffic Survey Report 11-13-17","",200,"City of Powell, Ohio","[""Traffic Survey Report 11-13-17""]","[""CONTACT INFO"", ""HELPFUL LINKS"", ""LET'S CONNECT""]","[""you're at home in Powell""]","[""614.885.5380"", ""47 Hall Street, Powell, OH 43065"", ""Signup for our newsletter""]",[],[],"Discover Annual Reports Community Maps Demographics DORA Historic Powell Library Public Parking Schools Visit Government Agendas & Minutes Boards & Commissions City Code City Council City Manager’s Office Departments Building Business & Economic Development City Clerk Communications Development Engineering Finance Parks & Recreation Public Service Police Legislation Monthly Reports Public Records Parks & Recreation Powell Parks Bike Paths Community Garden Online Class Registration Facility Rental Request Class Cancellations, Wait Lists & Inclement Weather Residents A to Z Guide Address Check Tool Driver’s License & Titles Homeowners’ Associations Services Christmas Tree Disposal Leaf Removal Snow and Ice Removal Street Trees Trash, Recycling, and Yard Waste Taxes Utilities Vacation House Watch Businesses Building Department Development Department Development Toolkit Greater Powell Chamber of Commerce Zoning Map Events Powell Festival Special Event Permit Designated Outdoor Refreshment Area (DORA) Safety Police Canine Unit Citizens Police Academy Community Oriented Policing Crash Reports Employment Resources Public Records Requests Services Traffic Surveys Fire Delco Alerts Vacation House Watch Discover Annual Reports Community Maps Demographics DORA Historic Powell Library Public Parking Schools Visit Government Agendas & Minutes Boards & Commissions City Code City Council City Manager’s Office Departments Building Business & Economic Development City Clerk Communications Development Engineering Finance Parks & Recreation Public Service Police Legislation Monthly Reports Public Records Parks & Recreation Powell Parks Bike Paths Community Garden Online Class Registration Facility Rental Request Class Cancellations, Wait Lists & Inclement Weather Residents A to Z Guide Address Check Tool Driver’s License & Titles Homeowners’ Associations Services Christmas Tree Disposal Leaf Removal Snow and Ice Removal Street Trees Trash, Recycling, and Yard Waste Taxes Utilities Vacation House Watch Businesses Building Department Development Department Development Toolkit Greater Powell Chamber of Commerce Zoning Map Events Powell Festival Special Event Permit Designated Outdoor Refreshment Area (DORA) Safety Police Canine Unit Citizens Police Academy Community Oriented Policing Crash Reports Employment Resources Public Records Requests Services Traffic Surveys Fire Delco Alerts Vacation House Watch Discover Annual Reports Community Maps Demographics DORA Historic Powell Library Public Parking Schools Visit Government Agendas & Minutes Boards & Commissions City Code City Council City Manager’s Office Departments Building Business & Economic Development City Clerk Communications Development Engineering Finance Parks & Recreation Public Service Police Legislation Monthly Reports Public Records Parks & Recreation Powell Parks Bike Paths Community Garden Online Class Registration Facility Rental Request Class Cancellations, Wait Lists & Inclement Weather Residents A to Z Guide Address Check Tool Driver’s License & Titles Homeowners’ Associations Services Christmas Tree Disposal Leaf Removal Snow and Ice Removal Street Trees Trash, Recycling, and Yard Waste Taxes Utilities Vacation House Watch Businesses Building Department Development Department Development Toolkit Greater Powell Chamber of Commerce Zoning Map Events Powell Festival Special Event Permit Designated Outdoor Refreshment Area (DORA) Safety Police Canine Unit Citizens Police Academy Community Oriented Policing Crash Reports Employment Resources Public Records Requests Services Traffic Surveys Fire Delco Alerts Vacation House Watch News Calendar Powell Festival Economic Development Careers Contact Translate Facebook Twitter LinkedIn Instagram Pinterest Vimeo " -1924,https://ose.louisiana.gov/event/police-officer-20/,Poor Data Source,Poor Data Source,Police Officer | Louisiana Office of State Examiner,"",200,403 Forbidden,"["""", ""Police Officer""]",[],"[""Competitive Level""]",[],[],"[""Recent Posts"", ""Archives"", ""Categories"", ""Meta""]","Search Search Search Search Personnel Action Form About Testing & Employment Eligibility Lists Jurisdictions Resources Contact ADA Testing Accommodations Statewide Testing This event has passed. Police Officer Competitive Level Application Deadline TBD Jurisdiction Bogalusa Application Search Recent Posts Holiday Closures Archives June 2023 Categories Uncategorized Meta Log in Entries feed Comments feed WordPress.org Sign Up for Updates Δ 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Privacy Policy Facebook Copyright © 2024 Office of State Examiner Site by Gatorworks. Search Personnel Action Form About Testing & Employment Eligibility Lists Jurisdictions Resources Contact ADA Testing Accommodations Statewide Testing Search Personnel Action Form Search Search Search Personnel Action Form This event has passed. Police Officer Competitive Level Application Deadline TBD Jurisdiction Bogalusa Application Search Recent Posts Holiday Closures Archives June 2023 Categories Uncategorized Meta Log in Entries feed Comments feed WordPress.org This event has passed. Police Officer Competitive Level Application Deadline TBD Jurisdiction Bogalusa Application Search Recent Posts Holiday Closures Archives June 2023 Categories Uncategorized Meta Log in Entries feed Comments feed WordPress.org This event has passed. Police Officer Competitive Level Application Deadline TBD Jurisdiction Bogalusa Application This event has passed. Police Officer Competitive Level Application Deadline TBD Jurisdiction Bogalusa Application This event has passed. Police Officer Competitive Level Application Deadline TBD Jurisdiction Bogalusa Application This event has passed. Police Officer Competitive Level Competitive Level Competitive Level Application Deadline TBD Jurisdiction Bogalusa Application Deadline TBD Jurisdiction Bogalusa Application Deadline TBD Jurisdiction Bogalusa Application Deadline TBD Application Deadline Jurisdiction Bogalusa Jurisdiction Application Search Search Sign Up for Updates Δ Sign Up for Updates Δ Sign Up for Updates 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Privacy Policy Facebook 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Privacy Policy 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Phone: (225) 925-4400 Privacy Policy Facebook Facebook Facebook Copyright © 2024 Office of State Examiner Site by Gatorworks. Copyright © 2024 Office of State Examiner Site by Gatorworks. " -1925,https://delcopa.gov/publicrelations/releases/2021/covid_vaccineupdate0217.html,Media Bulletins,Agency-Published Resources,"Delaware County’s Feb. 17 Update on COVID-19 Vaccine Efforts - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Delaware County’s Feb. 17 Update on COVID-19 Vaccine Efforts""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"" -1926,http://www.longbeach.gov/police/press-releases/police-asking-for-publics-help-in-identifying-person-of-interest-in-sexual-battery/,Media Bulletins,Agency-Published Resources,POLICE ASKING FOR PUBLIC'S HELP IN IDENTIFYING PERSON OF INTEREST IN SEXUAL BATTERY,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 3/4/2019 FOR IMMEDIATE RELEASE Press Release # Subject: POLICE ASKING FOR PUBLIC'S HELP IN IDENTIFYING PERSON OF INTEREST IN SEXUAL BATTERY Contact: Media Relations Details (562) 570-5273 LBPDMediaRelations@longbeach.gov (Click on photos to enlarge) The Long Beach Police Department is asking for the public’s help in identifying a suspect who detectives believe may be responsible for a sexual battery where an adult female victim was groped by an adult male suspect. On Tuesday, February 26, 2019, at approximately 7:15 a.m., the suspect approached the victim from behind as she was walking southbound in an alley east of Long Beach Blvd. and South of Pacific Coast Highway. The suspect struck the victim on the back of her head with an unknown object and proceeded to “body slam” her onto the ground. The suspect reached underneath her clothing and groped her breast. The suspect’s attack was interrupted when the victim began to yell for help and a bystander came to her aid. The bystander told the victim to run as he chased after the suspect. The victim sought medical attention on her own for a complaint of pain to her head. The suspect is being described as a male Hispanic, in his 20’s, thin build, wearing a burgundy baseball cap with a “diamond” stitched on the front. The victim described the diamond as a “wedding diamond.” He was wearing a gray jacket with black on the sides of the jacket, dark colored pants, and black shoes. Detectives would like to encourage anyone who may have also been a victim and have not reported the incident, to do so immediately by calling Police Dispatch at (562) 435-6711. Anyone who may have information regarding the person responsible for these crimes should contact Sex Crimes Detective Adriana Jaurigui at (562) 570-7372. Anonymous tips may be submitted through “LA Crime Stoppers” by calling 1-800-222-TIPS (8477), downloading the “P3 Tips” app to your smartphone (available at the Apple App store and Google Play), or visiting www.lacrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -1928,https://alpha.austin.gov/es/police-oversight/formal-complaint-responsibility-to-the-community-2/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -1929,https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0014/,Complaints & Misconduct,Info About Officers,"","",200,"","","","","","","","" -1930,https://www.ci.san-ramon.ca.us/our_city/departments_and_divisions/police/victims_rights_information/survivor_of_sexual_assault,Resources,Agency-Published Resources,Survivor of Sexual Assault - City of San Ramon,"",200,Just a moment...,"[""Survivor of Sexual Assault""]","[""YOUR RIGHTS AS A SURVIVOR OF SEXUAL ASSAULT:"", ""Contact Us"", ""Useful Links""]","[""YOU HAVE THE RIGHT TO"", ""YOU HAVE THE RIGHT TO"", ""YOU HAVE THE RIGHT TO""]",[],[],[],"" -1931,https://www.elrenook.gov/departments/police-department/services-resources/resource-numbers/,Contact Info & Agency Meta,Info About Agencies,"","",404,"","","","","","","","" -1932,https://www.attorneygeneral.utah.gov/wp-content/uploads/2015/03/img_7489-copy-2.jpg,Media Bulletins,Agency-Published Resources,"","",404,"","","","","","","","" -1933,https://www.mass.gov/doc/october-30-1996-out-of-state-domestic-violence-restraining-orders-with-a-copy-of-memorandum/download,Policies & Contracts,Info About Agencies,"","",200,"","","","","","","","" -1934,https://www.alamoheightstx.gov/public-safety/police/divisions/,Contact Info & Agency Meta,Info About Agencies,Divisions - City of Alamo Heights,"",200,403 Forbidden,"[""Divisions""]","[""Patrol Operations Division"", ""Support Services Division"", ""Police Administrative Office"", ""Criminal Investigations Division"", ""Emergency Services Center"", ""Animal Care Services""]",[],[],[],[],"" -1935,https://delcopa.gov/planning/pubs/portfolio-12_tacticalplacemaking.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -1936,https://icjia.illinois.gov/researchhub/articles/law-enforcement-response-to-mental-health-crisis-incidents-a-survey-of-illinois-police-and-sheriff-s-departments/,Media Bulletins,Agency-Published Resources,ICJIA | Illinois Criminal Justice Information Authority,Illinois Criminal Justice Information Authority,200,ICJIA | Illinois Criminal Justice Information Authority,[],[],[],[],[],[],"Skip to content MENU ILLINOIS CRIMINAL JUSTICE INFORMATION AUTHORITY About arrow_drop_down Research arrow_drop_down Grant Resources arrow_drop_down Partners arrow_drop_down About Research Grant Resources Partners ICJIA » Research and Analysis Unit Research Translate this site Research Hub R&A Overview Articles Web Applications Datasets Publications Institutional Review Board NOTICE OF FEDERAL FUNDING AND FEDERAL DISCLAIMER ICJIA’s Research Hub is funded through a grant from the Bureau of Justice Statistics, Office of Justice Programs, U.S. Department of Justice. Neither the U.S. Department of Justice nor any of its components operate, control, are responsible for, or necessarily endorse, ICJIA’s Research Hub (including, without limitation, its content, technical infrastructure, and policies, and any services or tools provided). About Contact Employment Events Funding Grant Status Request Meetings News & Information Press Research Training About | Contact | Document Archive | FOIA | Language Access Request | Privacy | Grant Status Request | Subscribe to CJ Dispatch © 2024 Illinois Criminal Justice Information Authority Skip to content MENU ILLINOIS CRIMINAL JUSTICE INFORMATION AUTHORITY About arrow_drop_down Research arrow_drop_down Grant Resources arrow_drop_down Partners arrow_drop_down About Research Grant Resources Partners ICJIA » Research and Analysis Unit Research Translate this site Research Hub R&A Overview Articles Web Applications Datasets Publications Institutional Review Board NOTICE OF FEDERAL FUNDING AND FEDERAL DISCLAIMER ICJIA’s Research Hub is funded through a grant from the Bureau of Justice Statistics, Office of Justice Programs, U.S. Department of Justice. Neither the U.S. Department of Justice nor any of its components operate, control, are responsible for, or necessarily endorse, ICJIA’s Research Hub (including, without limitation, its content, technical infrastructure, and policies, and any services or tools provided). About Contact Employment Events Funding Grant Status Request Meetings News & Information Press Research Training About | Contact | Document Archive | FOIA | Language Access Request | Privacy | Grant Status Request | Subscribe to CJ Dispatch © 2024 Illinois Criminal Justice Information Authority MENU ILLINOIS CRIMINAL JUSTICE INFORMATION AUTHORITY About arrow_drop_down Research arrow_drop_down Grant Resources arrow_drop_down Partners arrow_drop_down MENU ILLINOIS CRIMINAL JUSTICE INFORMATION AUTHORITY About arrow_drop_down Research arrow_drop_down Grant Resources arrow_drop_down Partners arrow_drop_down MENU MENU ILLINOIS CRIMINAL JUSTICE INFORMATION AUTHORITY About Research Grant Resources Partners About Research Grant Resources Partners About Research Grant Resources Partners About About About About About Research Research Research Research Research Grant Resources Grant Resources Grant Resources Grant Resources Grant Resources Partners Partners Partners Partners Partners ICJIA » Research and Analysis Unit Research Translate this site Research Hub R&A Overview Articles Web Applications Datasets Publications Institutional Review Board NOTICE OF FEDERAL FUNDING AND FEDERAL DISCLAIMER ICJIA’s Research Hub is funded through a grant from the Bureau of Justice Statistics, Office of Justice Programs, U.S. Department of Justice. Neither the U.S. Department of Justice nor any of its components operate, control, are responsible for, or necessarily endorse, ICJIA’s Research Hub (including, without limitation, its content, technical infrastructure, and policies, and any services or tools provided). ICJIA » Research and Analysis Unit Research Translate this site Research Hub R&A Overview Articles Web Applications Datasets Publications Institutional Review Board " -1937,http://www.longbeach.gov/police/press-releases/traffic-fatality-20-/,Media Bulletins,Agency-Published Resources,TRAFFIC FATALITY(20),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 12/22/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: TRAFFIC FATALITY Contact: Media Relations Detail (562) 570-5273 On December 11, 2015, at approximately 10:58 a.m., Long Beach Police responded to the 1300 block of Junipero Avenue regarding an injury traffic collision involving a vehicle and a pedestrian. The preliminary investigation revealed a 2010 Ford Fusion, being driven by a 21-year-old resident of Long Beach, was slowly backing out of the driveway when the vehicle collided with 69-year-old David Marroquin of Long Beach who was walking on the sidewalk. The collision knocked the pedestrian to the ground, causing him to strike his head on the cement driveway. Immediately following the collision, the driver stopped, called 9-1-1, and remained with Mr. Marroquin until Long Beach Fire Department personnel arrived. Paramedics transported him, in critical condition, to a local hospital. On December 16, 2015, at 10:39 a.m., Mr. Marroquin was pronounced deceased at the hospital. On December 21, 2015, the Long Beach Police Department was notified. Anyone with information regarding this incident is asked to contact Detective David Lauro of the Collision Investigations Detail at (562) 570-7355. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -1938,https://southamptontownnypolice.gov/1663/2022-adopted-budget-operating,List of Data Sources,Info About Agencies,"2022 Adopted Budget Operating | Southampton, NY - Official Website","",200,"Police | Southampton, NY - Official Website","[""2022 Adopted Budget Operating""]",[],"[""Site Tools"", ""Contact Us"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Government Town Services Community Info How Do I Translate Page Site Tools Home My Account Printer Friendly Email Page Contact Us RSS Site Map Translate Page Notifications Documents Search Home Government Departments Finance (Comptroller) 2022 Budgets 2022 Adopted Budget Operating 2022 Adopted Budget Operating _01-2022-BudgetMessage _02-2022-Budget Charts _03-2022-FinancialSummaries _04-2022-Summary Revenue and Expenses by Fund _05-2022-Tax Levy Maps _06-2022-Financial Policies _07-2022-Bonded Indebtedness _08-2022- Tax Exemption Analysis _09-2022-SalaryCharts 00-TownORG 01-TownBoard 02 Dept of Public Information 03-TownClerk 04-TaxReceiver 05-TaxAssessor 06-TownTrustees 07-TownAttorney 08-Public Safety 09-Justice Court 10 -Housing and Community Services 11 -Human Resources 12-Finance org 13-LandManagment 14-ParksRec 15-Highway 16-MunicipalWorks 17-TownPolice 18-CPF 19-Unallocated-RevenuesExpenses 20-Retiree IIIb-TX-DIST-01-Ambulance IIIb-TX-DIST-02-CoastalErosion IIIb-TX-DIST-03-Fire IIIb-TX-DIST-04b-Park District IIIb-TX-DIST-04b-PublicParking IIIb-TX-DIST-05-RoadImprov IIIb-TX-DIST-06-Cliff Drive Utility District IIIb-TX-DIST-07-StreetLighting IIIb-TX-DIST-08-Hampton Bay-Water 2022 Tentative Budget - Operating 2022 Tentative Budget - Capital 2022 Adopted Budget Operating 2022 Adopted Budget - Capital Town Clerk Meetings, Agendas & Minutes Pay Your Taxes Online Services Applications, Forms & Fees Notify Me® FOIL Requests Contact Us Town of Southampton 116 Hampton Road Southampton, NY 11968 Phone: 631-283-6000 Banner photo credit: robertseifertphotography.com Site Links Contact Us Site Map Accessibility Copyright Notices Intranet Job Opportunities Title VI Non-discrimination Policy /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Government Town Services Community Info How Do I Translate Page Site Tools Home My Account Printer Friendly Email Page Contact Us RSS Site Map Translate Page Notifications Documents Search Home Government Departments Finance (Comptroller) 2022 Budgets 2022 Adopted Budget Operating 2022 Adopted Budget Operating _01-2022-BudgetMessage _02-2022-Budget Charts _03-2022-FinancialSummaries _04-2022-Summary Revenue and Expenses by Fund _05-2022-Tax Levy Maps _06-2022-Financial Policies _07-2022-Bonded Indebtedness _08-2022- Tax Exemption Analysis _09-2022-SalaryCharts 00-TownORG 01-TownBoard 02 Dept of Public Information 03-TownClerk 04-TaxReceiver 05-TaxAssessor 06-TownTrustees 07-TownAttorney 08-Public Safety 09-Justice Court 10 -Housing and Community Services 11 -Human Resources 12-Finance org 13-LandManagment 14-ParksRec 15-Highway 16-MunicipalWorks 17-TownPolice 18-CPF 19-Unallocated-RevenuesExpenses 20-Retiree IIIb-TX-DIST-01-Ambulance IIIb-TX-DIST-02-CoastalErosion IIIb-TX-DIST-03-Fire IIIb-TX-DIST-04b-Park District IIIb-TX-DIST-04b-PublicParking IIIb-TX-DIST-05-RoadImprov IIIb-TX-DIST-06-Cliff Drive Utility District IIIb-TX-DIST-07-StreetLighting IIIb-TX-DIST-08-Hampton Bay-Water 2022 Tentative Budget - Operating 2022 Tentative Budget - Capital 2022 Adopted Budget Operating 2022 Adopted Budget - Capital Town Clerk Meetings, Agendas & Minutes Pay Your Taxes Online Services Applications, Forms & Fees Notify Me® FOIL Requests Contact Us Town of Southampton 116 Hampton Road Southampton, NY 11968 Phone: 631-283-6000 Banner photo credit: robertseifertphotography.com Site Links Contact Us Site Map Accessibility Copyright Notices Intranet Job Opportunities Title VI Non-discrimination Policy /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... " -1939,https://delcopa.gov/purchasing/bidsprops/kyo878.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -1940,http://www.longbeach.gov/police/press-releases/murder-investigation/,Media Bulletins,Agency-Published Resources,MURDER INVESTIGATION,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 2/23/2018 FOR IMMEDIATE RELEASE Press Release # 2018 Subject: MURDER INVESTIGATION Contact: Media Relations Detail (562) 570-5273 On 2/23/18 at approx., 12:41 am, officers were dispatched to the area of the 710 Freeway and Anaheim street regarding possible traffic accident. The calling party advised there was a small white car that may have been involved in an accident, the car was stopped on the greenery of the onramp to the 710 freeway from westbound Anaheim Street. Upon arrival officers found an unresponsive male adult in his 30’s. The vehicle appeared to have driven off roadway into ivy at slow speeds. Long Beach Fire responded and determined the subject deceased at the scene. Further investigation found that the victim had what appears to be a gunshot wound to his upper torso. Unknown exactly where shooting occurred. Homicide detectives responded and the investigation is ongoing. The victim has been identified as Glen Chico, 31-year old resident of Long Beach. Anaheim was closed in both directions from Oregon to Harbor as was southbound 710 to eastbound Anaheim and northbound 710 to westbound Anaheim, for several hours. All road closures were opened just before 8:00 am. Anyone with information is urged to call Homicide Detectives Donald Goodman and Mark Mattia at (562) 570-7244. Anonymous tips may be submitted through ""LA Crime Stoppers"" by calling 1-800-222-TIPS (8477), downloading the ""P3 Tips"" app to your smart phone (available at the Apple App store and Google Play), or visiting www.lacrimestoppers.org . About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police , ""Like"" us on Facebook , follow us on Twitter and Instagram . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -1941,https://www.fortworthtexas.gov/departments/hr/administration/prr/police-prr,Policies & Contracts,Info About Agencies,Personnel Rules and Regulations for Commissioned Police Officers – Welcome to the City of Fort Worth,Personnel Rules and Regulations for Sworn Police Officers.,200,Error retrieving title: 'NoneType' object has no attribute 'text',"[""Personnel Rules and Regulations for Commissioned Police Officers""]","[""Chapter 143 of the Texas Local Government Code"", ""Chapters 141 and 142 of the Texas Local Government Code"", ""Meet and Confer Labor Agreement"", ""Fort Worth Fire Fighters’ and Police Officers’ Civil Service Commission"", ""Management Rights"", ""Amendments"", ""Department Rules and Regulations"", ""Waivers"", ""Clarifications"", ""Quarantine/Traumatic Leave"", ""Related Information"", ""Accommodations & Accessibilities"", ""About Fort Worth"", ""City Council"", ""Public Safety"", ""Business"", ""Get Connected. Stay Informed.""]","[""City Council Meeting on YouTube"", ""Effective September 1, 2021""]",[],[],[],"opens in new tab or window City Council Meeting on YouTube The Fort Worth City Cable Channel (Charter/Spectrum channel 190) will be offline for a few weeks starting March 11 while facilities connections are being rerouted. During the outage, you can watch the City Council Meetings and other City meetings on the City’s YouTube Channel . City Council Meeting on YouTube The Fort Worth City Cable Channel (Charter/Spectrum channel 190) will be offline for a few weeks starting March 11 while facilities connections are being rerouted. During the outage, you can watch the City Council Meetings and other City meetings on the City’s YouTube Channel . City Council Meeting on YouTube The Fort Worth City Cable Channel (Charter/Spectrum channel 190) will be offline for a few weeks starting March 11 while facilities connections are being rerouted. During the outage, you can watch the City Council Meetings and other City meetings on the City’s YouTube Channel . City Council Meeting on YouTube The Fort Worth City Cable Channel (Charter/Spectrum channel 190) will be offline for a few weeks starting March 11 while facilities connections are being rerouted. During the outage, you can watch the City Council Meetings and other City meetings on the City’s YouTube Channel . City Council Meeting on YouTube The Fort Worth City Cable Channel (Charter/Spectrum channel 190) will be offline for a few weeks starting March 11 while facilities connections are being rerouted. During the outage, you can watch the City Council Meetings and other City meetings on the City’s YouTube Channel . The Fort Worth City Cable Channel (Charter/Spectrum channel 190) will be offline for a few weeks starting March 11 while facilities connections are being rerouted. During the outage, you can watch the City Council Meetings and other City meetings on the City’s YouTube Channel . " -1942,https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/blotter/022622blotter.pdf,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -1943,https://joinmpd.dc.gov/metropolitan-police/reserve-police-officer,Training & Hiring Info,Info About Officers,Reserve Police Officer | joinmpd.dc.gov,Reserve Police Officer,200,joinmpd.dc.gov | Careers at DC Metropolitan Police Department,"[""Reserve Police Officer""]","[""joinmpd.dc.gov"", ""Main menu"", ""Main menu"", ""Navigation""]","[""Becoming a Reserve Officer""]",[],[],[],Skip to main content -1944,https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0932/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -1945,https://delcopa.gov/ojs/ojsforms/praecipetosettlediscontinue.pdf,Resources,Agency-Published Resources,"","",200,"","","","","","","","" -1946,http://www.longbeach.gov/police/about-the-lbpd/bureaus/investigations-bureau/officer-involved-shooting-investigation-process/,Policies & Contracts,Info About Agencies,OFFICER INVOLVED SHOOTING INVESTIGATION PROCESS,"- OFFICER INVOLVED SHOOTING INVESTIGATION PROCESS - To demonstrate the level of investigation, review, evaluation, and actions our Department takes when an officer involved shooting occurs, an overview of the process is provided below: - Homicide Detail detectives, field supervisors, and departmental manager
",200,City of Long Beach,"[""Police Department""]",[],"[""Mayor"", ""City Council"", ""Rex Richardson"", ""Mary Zendejas"", ""Cindy Allen"", ""Kristina Duggan"", ""Daryl Supernaw"", ""Megan Kerr"", ""Suely Saro"", ""Roberto Uranga"", ""Al Austin"", ""Dr. Joni Ricks-Oddie"", ""Dawn McIntosh"", ""Laura L. Doud"", ""Doug Haubert"", ""Tom Modica"", ""Monique DeLaGarza"", ""City-Wide Elected Officials"", ""Appointed Officials"", ""Online Payments"", ""Online Services"", ""In-Person Services"", ""Opening a Business"", ""Doing Business With The City"", ""Resources"", ""Most Popular"", ""Online Resources"", ""Attractions"", ""Business Associations"", ""Travel Resources"", ""Departments"", ""Job Opportunities"", ""Information"", ""LBPD"", ""Employment"", ""Bureaus"", ""News & Events"", ""Crime Info"", ""How Do I"", ""How Do I"", ""Contact Us"", ""OFFICER INVOLVED SHOOTING INVESTIGATION PROCESS"", ""Do."", ""Discover."", ""Connect."", ""Ask.""]","["""", ""1st District"", ""2nd District"", ""3rd District"", ""4th District"", ""5th District"", ""6th District"", ""7th District"", ""8th District"", ""9th District"", ""City Attorney"", ""City Auditor"", ""City Prosecutor"", ""City Manager"", ""City Clerk""]","[""File a Report Online"", ""Submit a Tip"", ""Submit a Commendation"", ""File a Complaint"", ""Ride Along Program"", """", """", """", """", ""Crime Lab Survey"", """"]",[],"" -1947,https://delcopa.gov/council/2020minutes/10072020minutes.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -1948,https://www.ci.rohnert-park.ca.us/city_hall/departments/public_works/drainage___stormwater/creeks__environmental_information/copeland_test,Not Criminal Justice Related,Not Criminal Justice Related,Copeland Test - City of Rohnert Park,"",200,Just a moment...,"[""City of Rohnert Park""]","[""Rohnert Park""]","[""Copeland Test"", ""Daily Acts is making its way to Rohnert Park!""]",[],[],[],"" -1949,https://champaignil.gov/2022/08/27/champaign-police-investigating-overnight-shooting-incidents/,Media Bulletins,Agency-Published Resources,Champaign Police Investigating Overnight Shooting Incidents - City of Champaign,"",200,403 Forbidden,"[""Champaign Police Investigating Overnight Shooting Incidents""]","[""News Releases"", ""Department News""]",[],[],[],[],"" -1950,https://delcopa.gov/publicrelations/releases/2020/pdf/delawarecountynovemberflushotclinics_mercyfitz.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -1951,https://www.jacksontn.gov/government/departments/police/daily_arrest_reports,Poor Data Source,Poor Data Source,"Daily Arrest Reports - City of Jackson, TN",Welcome to the official website of City of Jackson in Tennessee.,200,Just a moment...,"[""City of Jackson TN"", ""City of Jackson TN""]","[""Daily Arrest Reports""]",[],[],[],[],"" -1952,https://alpha.austin.gov/police-oversight/2020-06-4-17/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -1953,https://louisvilleky.gov/police/forms/submit-crime-tip,Resources,Agency-Published Resources,"","",403,"","","","","","","","" -1954,https://bolivar.mo.us/shop-with-a-copr/img_3318/,Poor Data Source,Poor Data Source,"IMG_3318 - City of Bolivar, Missouri","",200,"Welcome to Bolivar - Where Liberty Flows - City of Bolivar, Missouri","[""IMG_3318""]",[],[],[],[],[],"Skip to content DEPARTMENTS ADMINISTRATION MUNICIPAL COURT PARKS & RECREATION New Parks & Recreation registration site COMMUNITY DEVELOPMENT BUILDING DEPARTMENT CODE ENFORCEMENT DEPARTMENT PLANNING & ZONING DEVELOPER FORMS MS4: Municipal Separate Storm Sewer System FINANCIAL, BUDGET & CURRENT BIDS HUMAN RESOURCES CAREER OPPORTUNITIES UTILITIES FIRE DEPARTMENT PERSONNEL FIRE STATIONS APPARATUS FIRE DEPARTMENT FORMS POLICE DEPARTMENT EMERGENCY MANAGEMENT ANIMAL POUND PUBLIC WORKS ECONOMIC DEVELOPMENT PARTNERSHIP COVID-19 FINANCIAL RELIEF ECONOMIC DEVELOPMENT LINKS BOARD OF ALDERMEN AGENDAS/PACKETS/MINUTES REQUEST TO ADDRESS COUNCIL ORDINANCES HOW DO I.. RESERVE PARK PAVILIONS/ ROOMS MUNICIPAL COURT Contact Us IMG_3318 Home Departments Police Shop with a Cop® IMG_3318 12 Dec 2014 by City Administrator WordPress Theme - Total by HashThemes DEPARTMENTS ADMINISTRATION MUNICIPAL COURT PARKS & RECREATION New Parks & Recreation registration site COMMUNITY DEVELOPMENT BUILDING DEPARTMENT CODE ENFORCEMENT DEPARTMENT PLANNING & ZONING DEVELOPER FORMS MS4: Municipal Separate Storm Sewer System FINANCIAL, BUDGET & CURRENT BIDS HUMAN RESOURCES CAREER OPPORTUNITIES UTILITIES FIRE DEPARTMENT PERSONNEL FIRE STATIONS APPARATUS FIRE DEPARTMENT FORMS POLICE DEPARTMENT EMERGENCY MANAGEMENT ANIMAL POUND PUBLIC WORKS ECONOMIC DEVELOPMENT PARTNERSHIP COVID-19 FINANCIAL RELIEF ECONOMIC DEVELOPMENT LINKS BOARD OF ALDERMEN AGENDAS/PACKETS/MINUTES REQUEST TO ADDRESS COUNCIL ORDINANCES HOW DO I.. RESERVE PARK PAVILIONS/ ROOMS MUNICIPAL COURT Contact Us DEPARTMENTS ADMINISTRATION MUNICIPAL COURT PARKS & RECREATION New Parks & Recreation registration site COMMUNITY DEVELOPMENT BUILDING DEPARTMENT CODE ENFORCEMENT DEPARTMENT PLANNING & ZONING DEVELOPER FORMS MS4: Municipal Separate Storm Sewer System FINANCIAL, BUDGET & CURRENT BIDS HUMAN RESOURCES CAREER OPPORTUNITIES UTILITIES FIRE DEPARTMENT PERSONNEL FIRE STATIONS APPARATUS FIRE DEPARTMENT FORMS POLICE DEPARTMENT EMERGENCY MANAGEMENT ANIMAL POUND PUBLIC WORKS ECONOMIC DEVELOPMENT PARTNERSHIP COVID-19 FINANCIAL RELIEF ECONOMIC DEVELOPMENT LINKS BOARD OF ALDERMEN AGENDAS/PACKETS/MINUTES REQUEST TO ADDRESS COUNCIL ORDINANCES HOW DO I.. RESERVE PARK PAVILIONS/ ROOMS MUNICIPAL COURT Contact Us DEPARTMENTS ADMINISTRATION MUNICIPAL COURT PARKS & RECREATION New Parks & Recreation registration site COMMUNITY DEVELOPMENT BUILDING DEPARTMENT CODE ENFORCEMENT DEPARTMENT PLANNING & ZONING DEVELOPER FORMS MS4: Municipal Separate Storm Sewer System FINANCIAL, BUDGET & CURRENT BIDS HUMAN RESOURCES CAREER OPPORTUNITIES UTILITIES FIRE DEPARTMENT PERSONNEL FIRE STATIONS APPARATUS FIRE DEPARTMENT FORMS POLICE DEPARTMENT EMERGENCY MANAGEMENT ANIMAL POUND PUBLIC WORKS ECONOMIC DEVELOPMENT PARTNERSHIP COVID-19 FINANCIAL RELIEF ECONOMIC DEVELOPMENT LINKS BOARD OF ALDERMEN AGENDAS/PACKETS/MINUTES REQUEST TO ADDRESS COUNCIL ORDINANCES HOW DO I.. RESERVE PARK PAVILIONS/ ROOMS MUNICIPAL COURT Contact Us IMG_3318 Home Departments Police Shop with a Cop® IMG_3318 12 Dec 2014 by City Administrator IMG_3318 Home Departments Police Shop with a Cop® IMG_3318 IMG_3318 Home Departments Police Shop with a Cop® IMG_3318 12 Dec 2014 by City Administrator 12 Dec 2014 by City Administrator 12 Dec 2014 by City Administrator 12 Dec 2014 by City Administrator WordPress Theme - Total by HashThemes WordPress Theme - Total by HashThemes WordPress Theme - Total by HashThemes " -1955,https://www.farmingtonmn.gov/government/departments/police/staff_directory,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -1956,https://delcopa.gov/vote/pdf/2021/delco-boe_legal-notice_public-meeting_9-20-2021.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -1957,https://www.panynj.gov/police/en/about/leadership.html,Personnel Records,Info About Officers,Leadership,"",200,We Keep the Region Moving | Port Authority of New York and New Jersey,[],[],[],[],[],[],"" -1958,https://rexburg.us/police-investigating-road-rage-after-man-killed-in-box-elder-county-rollover-thursday/,Poor Data Source,Poor Data Source,"","",522,"","","","","","","","" -1959,https://cheswold.delaware.gov/cheswold-police-department-policy-and-procedure-manual/directive-10-2-43-naloxone-programs/,Policies & Contracts,Info About Agencies,Directive 10-2-43 Naloxone Programs - Town of Cheswold,"",200,"Home - Town of Cheswold - Kent County, Delaware","[""Cheswold""]","[""Delaware"", ""Directive 10-2-43 Naloxone Programs""]","[""Menu""]","[""Address:"", ""Call Us:"", ""Reach Out:""]",[],[],"Skip to Content Skip to Footer Toggle navigation Menu Government Mayor Town Council Boards & Commissions Departments Elections Meetings & Events Public Notices Past Minutes & Agendas Info Public Hearings Comprehensive Plan Ordinances Taxes & Fees Delinquent Tax List Forms Town Charter Flag Status Past Minutes & Agendas Resolutions Community About Our Town Cheswold Welcome Packet Cheswold’s Airport Cheswold Newsletter Churches & Houses of Worship Colleges & Universities Libraries Local Developments Public Schools News Police About the Cheswold Police Department Police Reports Chief’s Page Cheswold Police Officers Cheswold Police Department Policy Manual Civilian Complaint Packet Crime Statistics Cheswold Police Department – Yearly Traffic Statistics Informational Pamphlets and Forms Law Enforcement Links Most Wanted Police Contact Form Police Employment Police News Ride-A-Long Program Sex Offender List Vacation Check Requests Photo Galleries Contact Contact Us FOIA Form Skip to Content Skip to Footer Toggle navigation Menu Government Mayor Town Council Boards & Commissions Departments Elections Meetings & Events Public Notices Past Minutes & Agendas Info Public Hearings Comprehensive Plan Ordinances Taxes & Fees Delinquent Tax List Forms Town Charter Flag Status Past Minutes & Agendas Resolutions Community About Our Town Cheswold Welcome Packet Cheswold’s Airport Cheswold Newsletter Churches & Houses of Worship Colleges & Universities Libraries Local Developments Public Schools News Police About the Cheswold Police Department Police Reports Chief’s Page Cheswold Police Officers Cheswold Police Department Policy Manual Civilian Complaint Packet Crime Statistics Cheswold Police Department – Yearly Traffic Statistics Informational Pamphlets and Forms Law Enforcement Links Most Wanted Police Contact Form Police Employment Police News Ride-A-Long Program Sex Offender List Vacation Check Requests Photo Galleries Contact Contact Us FOIA Form Skip to Content Skip to Footer Toggle navigation Menu Government Mayor Town Council Boards & Commissions Departments Elections Meetings & Events Public Notices Past Minutes & Agendas Info Public Hearings Comprehensive Plan Ordinances Taxes & Fees Delinquent Tax List Forms Town Charter Flag Status Past Minutes & Agendas Resolutions Community About Our Town Cheswold Welcome Packet Cheswold’s Airport Cheswold Newsletter Churches & Houses of Worship Colleges & Universities Libraries Local Developments Public Schools News Police About the Cheswold Police Department Police Reports Chief’s Page Cheswold Police Officers Cheswold Police Department Policy Manual Civilian Complaint Packet Crime Statistics Cheswold Police Department – Yearly Traffic Statistics Informational Pamphlets and Forms Law Enforcement Links Most Wanted Police Contact Form Police Employment Police News Ride-A-Long Program Sex Offender List Vacation Check Requests Photo Galleries Contact Contact Us FOIA Form Cheswold Delaware Listen Directive 10-2-43 Naloxone Programs Directive 10-2-43 Naloxone Programs Cheswold Delaware Listen Directive 10-2-43 Naloxone Programs Directive 10-2-43 Naloxone Programs Listen Directive 10-2-43 Naloxone Programs Directive 10-2-43 Naloxone Programs Listen Directive 10-2-43 Naloxone Programs Directive 10-2-43 Naloxone Programs Listen Directive 10-2-43 Naloxone Programs Directive 10-2-43 Naloxone Programs Listen Address: 691 Main Street Cheswold, DE 19936 Call Us: (302) 734-6991 Reach Out: Contact Form FOIA Form Address: 691 Main Street Cheswold, DE 19936 Call Us: (302) 734-6991 Reach Out: Contact Form FOIA Form " -1960,https://policing.cityofpleasantonca.gov/police-department-faqs/,Resources,Agency-Published Resources,Police Department FAQs | Policing in Pleasanton,"",200,Policing in Pleasanton |,"[""Police Department FAQs""]",[],"[""Submit a Comment Cancel reply""]",[],[],[],"Advisory Board FAQs Contact Us Department Budget Hiring Structure Training Policies Use of Force Programs 21st Century Policing Annual Reports Calls for Service Select Page Advisory Board FAQs Contact Us Department Budget Hiring Structure Training Policies Use of Force Programs 21st Century Policing Annual Reports Calls for Service Police Department FAQs by seanpwelch90 | Jul 31, 2020 | Uncategorized | 0 comments Submit a Comment Cancel reply Your email address will not be published. Required fields are marked * Comment * Name * Email * Website Save my name, email, and website in this browser for the next time I comment. Pleasanton Police Department Administration Hours – Lobby open 24 hours a day 4833 Bernal Avenue PO Box 909, Pleasanton, CA 94566 (925) 931-5100 Police Non-Emergency Number (925) 931-5122 Police Emergency Number Can’t find what you are looking for? Please contact us . Advisory Board FAQs Contact Us Department Budget Hiring Structure Training Policies Use of Force Programs 21st Century Policing Annual Reports Calls for Service Select Page Advisory Board FAQs Contact Us Department Budget Hiring Structure Training Policies Use of Force Programs 21st Century Policing Annual Reports Calls for Service Advisory Board FAQs Contact Us Department Budget Hiring Structure Training Policies Use of Force Programs 21st Century Policing Annual Reports Calls for Service Select Page Advisory Board FAQs Contact Us Department Budget Hiring Structure Training Policies Use of Force Programs 21st Century Policing Annual Reports Calls for Service Select Page Advisory Board FAQs Contact Us Department Budget Hiring Structure Training Policies Use of Force Programs 21st Century Policing Annual Reports Calls for Service Select Page Advisory Board FAQs Contact Us Department Budget Hiring Structure Training Policies Use of Force Programs 21st Century Policing Annual Reports Calls for Service Police Department FAQs by seanpwelch90 | Jul 31, 2020 | Uncategorized | 0 comments Submit a Comment Cancel reply Your email address will not be published. Required fields are marked * Comment * Name * Email * Website Save my name, email, and website in this browser for the next time I comment. Pleasanton Police Department Administration Hours – Lobby open 24 hours a day 4833 Bernal Avenue PO Box 909, Pleasanton, CA 94566 (925) 931-5100 Police Non-Emergency Number (925) 931-5122 Police Emergency Number Can’t find what you are looking for? Please contact us . Police Department FAQs by seanpwelch90 | Jul 31, 2020 | Uncategorized | 0 comments Submit a Comment Cancel reply Your email address will not be published. Required fields are marked * Comment * Name * Email * Website Save my name, email, and website in this browser for the next time I comment. Police Department FAQs by seanpwelch90 | Jul 31, 2020 | Uncategorized | 0 comments Submit a Comment Cancel reply Your email address will not be published. Required fields are marked * Comment * Name * Email * Website Save my name, email, and website in this browser for the next time I comment. " -1961,https://delcopa.gov/health/pdf/agendaminutes/bohagenda_jan_6_22.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -1962,https://alpha.austin.gov/en/police-oversight/bwc-dmav-the-role-of-vendors-and-community-input-in-policy/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -1963,https://champaignil.gov/tag/champaign-police-arrest-kidnapping-suspect/,Media Bulletins,Agency-Published Resources,Champaign Police Arrest Kidnapping Suspect Archives - City of Champaign,"",200,403 Forbidden,"[""Items tagged: Champaign Police Arrest Kidnapping Suspect""]","[""Champaign Police Arrest Kidnapping Suspect"", ""News Releases"", ""Department News""]",[],[],[],[],"skip to content City of Champaign Main Menu Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs Items tagged: Champaign Police Arrest Kidnapping Suspect Search Champaign Police Arrest Kidnapping Suspect Posted: February 8, 2019 Today, at approximately 1:50 p.m., Champaign Police arrested 32-year-old Robert D. Jackson in connection with the reported kidnapping of a 21-year-old female victim. The preliminary information reveals that on February 7, 2019, at approximately 1:38 a.m. at the Circle K Gas Station on N Prospect Avenue, Jackson requested a ride from the victim, who accepted. […] Categories: Police Department Press Releases | Tags: Champaign Police Arrest Kidnapping Suspect , Danville , Robert D. Jackson , Tilton Subscribe to City News Read All City News News Releases General Construction Fire Department Police Department Department News City Council City Manager’s Office Equity and Engagement Department Finance Department Fire Department Human Resources Department Information Technologies Department Legal Department Library METCAD 9-1-1 Neighborhood Services Department Planning and Development Department Police Department Public Works Department The Champaign Insider City Newsletter City of Champaign City of Champaign 102 N. Neil St. Champaign, IL 61820 217-403-8700 Site Disclaimer I Privacy Policy City of Champaign Main Menu Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs City of Champaign Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works " -1964,https://delcopa.gov/hcd/cdbg.html,Not Criminal Justice Related,Not Criminal Justice Related,CDBG Program,"",200,"Delaware County, Pennsylvania","[""CDBG Program""]",[],"[""Housing & Community Development Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"" -1965,https://delcopa.gov/ich/pdfs/covid_govwolf_medicaidchip.pdf,Poor Data Source,Poor Data Source,"404 - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert " -1966,https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0328/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -1967,http://www.longbeach.gov/police/press-releases/murder-31-/,Media Bulletins,Agency-Published Resources,MURDER(31),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 8/19/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: MURDER Contact: Media Relations (562) 570-5273 On Tuesday, August 18, 2015, at approximately 9:11 P.M., officers responded to the 1100 block of E. 10th Street in regards to reports of a battery that had just occurred. When the officers arrived they learned a male adult victim had been struck with a bottle during a fight with another male adult subject. The victim was transported to a local hospital in critical condition. At approximately 3:00 a.m. this morning the victim succumbed to his injuries and was pronounced deceased. The motive for the fight is still under investigation. We are withholding the identity of the victim pending notification to next of kin by the Los Angeles County Coroner’s Office. Anyone with information regarding this incident is urged to contact Long Beach Police Homicide Detectives Malcolm Evans and Mark Bigel at (562) 570-7244. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting www.lacrimestoppers.org. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -1968,https://www.knoxvilletn.gov/government/boards_commissions/police_advisory_review_committee_parc/p_a_r_c_20th_anniversary/history_of_p_a_r_c___p_d_f_,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -1969,http://www.longbeach.gov/police/press-releases/arrest-made-in-2007-murder-case/,Media Bulletins,Agency-Published Resources,ARREST MADE IN 2007 MURDER CASE,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 3/4/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: ARREST MADE IN 2007 MURDER CASE Contact: Media Relations Detail (562) 570-5273 On February 27, 2014, Long Beach Homicide Detectives arrested - 28-year-old Darnell Clarke of Long Beach for the murder of Alfred Henderson and - attempted murder of his female companion. In the early morning - hours of April 22, 2007, Alfred Henderson and his female companion were gunned - down while talking in front of a relative’s house, in the 2000 block of Lime - Avenue. The surviving female victim was transported to a local hospital and -was treated for several gunshot wounds. Victim Henderson, a Long Beach -resident, did not survive his injuries. On March 3, 2014, the Los -Angeles County District Attorney's Office filed one count of murder, one count -of attempted murder, a gang allegation enhancement (186.22 PC), as well as a -use of a firearm enhancement. Anyone with additional information -regarding this case is urged to contact Long Beach Police Homicide Detectives -Teryl Hubert and Sean Irving at 562 570-7244. Anyone wishing to remain -anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 -(CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -1970,https://www.southamptontownnypolice.gov/1056/xeriscaping,Not Criminal Justice Related,Not Criminal Justice Related,"Xeriscaping | Southampton, NY - Official Website","",200,"Police | Southampton, NY - Official Website","[""Xeriscaping""]",[],"[""Site Tools"", ""Contact Us"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -1971,http://www.longbeach.gov/police/press-releases/update---companion-dog-taken-in-vehicle-theft/,Media Bulletins,Agency-Published Resources,UPDATE - COMPANION DOG TAKEN IN VEHICLE THEFT,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 1/15/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: *UPDATE* - COMPANION DOG TAKEN IN VEHICLE THEFT Contact: Media Relations Detail (562) 570-5273 MISSING DOG ""SANDY"" SUSPECT VEHICLE (Click on a photo to enlarge) UPDATE : The victim's vehicle in this case (bronze 1985 Nissan Maxima) has been located. The vehicle was recovered by Lakewood Sheriff's in a shopping center parking lot near Artesia Boulevard & Lakewood Boulevard and has been returned to the owner. There was no sign of Sandy in the vehicle. The suspect vehicle, a white full-size extended cab construction truck, CA license plate 5RIA079, remains outstanding. ************************************************* Original Release: The Long Beach Police Department is asking for the public's help in locating a stolen vehicle and a companion dog that was inside the vehicle at the time it was taken. On Tuesday, January 13, 2015, at approximately 6:30 p.m., a woman and her daughter parked their bronze 1985 Nissan Maxima, CA license plate 5RIA079, in a shopping center parking lot on the southeast corner of Cherry Avenue and 68th Street in Long Beach and entered the store. When they returned moments later, the vehicle was missing and they called police. Detectives were able to view video footage in the area and learned that shortly after the vehicle was left, a white full-size extended cab construction truck parked next to the Maxima. A passenger in the truck got out, entered the Maxima, and drove off with the dog in the back seat. The truck followed the Maxima and both vehicles left the area. It is possible the thief was unaware of the dog’s presence. The dog, a tan and white male Chihuahua mix named ""Sandy"" is a companion dog to the victim’s daughter. She relies on Sandy to provide her comfort due to her medical condition. The loss of Sandy is exacerbating her condition, and his return is important to her well-being. Sandy was wearing a metal chain type collar, but did not have an identification tag or identification chip. Animal Care Services has been informed to be on the lookout for Sandy. Anyone with information regarding this incident or on the whereabouts of Sandy or the vehicle is asked to contact Long Beach Police Auto Theft Corporal Joe Starbird at (562) 570-7364. Anyone locating Sandy should contact Animal Care Services at (562) 570-7387. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -1972,https://delcopa.gov/vote/pdf/2022/2022primary-electiondayguidedigitaleditionv-rev1.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -1973,https://dccouncil.gov/judiciary-public-safety/copy-of-ag0_fy19_-attachment-iv/,Annual & Monthly Reports,Info About Agencies,Copy of AG0_FY19_ Attachment IV • Council of the District of Columbia,"",200,Home • Council of the District of Columbia,"[""Copy of AG0_FY19_ Attachment IV""]",[],[],[],[],[],"Federal Tax Counter: $1,298,500,957 What is this? Get Updates RSS Press Center facebook twitter youtube Council of the District of Columbia Hearings Calendar Legislation & Laws The Council Federal Tax Counter: $1,298,500,957 What is this? Get Updates RSS Press Center facebook twitter youtube Federal Tax Counter: $1,298,500,957 What is this? Get Updates RSS Press Center facebook twitter youtube Council of the District of Columbia Hearings Calendar Legislation & Laws The Council Council of the District of Columbia Copy of AG0_FY19_ Attachment IV October 10, 2018 Loading... Copy of AG0_FY19_ Attachment IV October 10, 2018 Loading... Loading... Loading... DC Council seal About the Council Open Government Register to Vote Council Updates Jobs Council Directory Privacy Policy Commemorative D.C. Flag Program Ethics Visit the Wilson Building facebook twitter youtube Council of the District of Columbia 1350 Pennsylvania Avenue, NW, Washington, D.C. 20004 © Copyright 2016, The Council of the District of Columbia. All rights reserved Council of the District of Columbia 1350 Pennsylvania Avenue, NW, Washington, D.C. 20004 © Copyright 2016, The Council of the District of Columbia. All rights reserved Search facebook twitter youtube Original text Rate this translation Your feedback will be used to help improve Google Translate Original text Rate this translation Your feedback will be used to help improve Google Translate Original text Original text Rate this translation Your feedback will be used to help improve Google Translate Rate this translation Your feedback will be used to help improve Google Translate Rate this translation Your feedback will be used to help improve Google Translate " -1974,http://www.longbeach.gov/police/press-releases/undetermined-deaths--possibly-related-to-carbon-monoxide-poisoning/,Media Bulletins,Agency-Published Resources,UNDETERMINED DEATHS; POSSIBLY RELATED TO CARBON MONOXIDE POISONING,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 1/13/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: UNDETERMINED DEATHS; POSSIBLY RELATED TO CARBON MONOXIDE POISONING Contact: Media Relations Detail (562) 570-5273 On Monday, January 12, 2015, at approximately 6:50 p.m., Long Beach Police were dispatched to an apartment complex in the 1100 block of Gardenia Avenue in regards to a foul odor emitting from one of the units, and ultimately located three deceased subjects. Officers arrived at the location and found one female and two male adult subjects inside the apartment unit. They also located a large propane heater inside the unit it appeared the occupants were using for warmth. Although the cause of death is unknown and will be officially determined by the Los Angeles County Coroner's Office, it is possible their deaths are related to carbon monoxide poisoning. These types of heaters are not intended for indoor use and can produce deadly levels of carbon monoxide if the area is not adequately ventilated. The identities of the individuals will also be determined by the Coroner’s office and will be released pending notification of next of kin. The relationship between the occupants is unknown and the investigation remains ongoing. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -1975,https://www.cityofladue-mo.gov/departments/police-department/annual-reports-158,Annual & Monthly Reports,Info About Agencies,"","",404,"","","","","","","","" -1976,"https://norfolkne.gov/government/departments/police-division/press-releases/march-4,-2021-press-release.html",Media Bulletins,Agency-Published Resources,"March 4, 2021 Press Release - City of Norfolk, NE","",200,"Welcome to Norfolk, NE - City of Norfolk, NE","[""City of Norfolk, NE"", ""Police Division"", ""March 4, 2021 Press Release"", ""City of Norfolk, NE""]",[],[],[],"[""Still looking for something?""]","[""Contact Us"", ""Pay or Apply..."", ""Government..."", ""Services..."", ""Business..."", ""Amenities...""]","" -1977,http://www.longbeach.gov/police/press-releases/robbery-suspect-arrested--charges-filed/,Media Bulletins,Agency-Published Resources,ROBBERY SUSPECT ARRESTED; CHARGES FILED,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 6/4/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: ROBBERY SUSPECT ARRESTED; CHARGES FILED Contact: Media Relations Detail (562) 570-5273 On June 4, 2015, felony charges were filed against a 20-year-old Carson man in connection with a robbery to a taxi cab driver. On May 29, 2015, around 8:45 p.m., Long Beach Police were dispatched to a strong arm robbery in the 100 block of Pine Avenue. Their preliminary investigation indicated that a taxi cab driver was waiting for a fare and in the midst of speaking to the customer, the customer became upset and demanded the driver’s property. The customer grabbed the taxi cab driver’s cell phone and fled on foot. Fortunately, the taxi driver was not injured during the altercation. Through their investigation, Robbery detectives learned the customer had re-contacted the victim, wanting to sell the taxi cab driver’s property back to him. On Tuesday, June 2, 2015, the suspect agreed to meet with the victim and was arrested by undercover detectives. The suspect was found to be in possession of a dirk or dagger and had an outstanding narcotic warrant for his arrest. The case was presented to the Los Angeles County District Attorney’s Office. The District Attorney’s Office filed one count of robbery and one count of possession of a dirk or dagger against Brandon Russell Junior. He remains in Long Beach City Jail without bail. Anyone with information regarding this investigation is encouraged to call Long Beach Police Robbery Detective Ben Vargas at (562) 570-5538. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -1978,https://alpha.austin.gov/police-oversight/formal-complaint-impartial-attitude-and-courtesy-13/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -1980,http://www.longbeach.gov/police/press-releases/traffic-fatality---long-beach-blvd.--cambridge-st/,Media Bulletins,Agency-Published Resources,Traffic Fatality - Long Beach Blvd. & Cambridge St.,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 11/28/2017 FOR IMMEDIATE RELEASE Press Release # Subject: TRAFFIC FATALITY - LONG BEACH BOULEVARD & CAMBRIDGE STREET Contact: Media Relations Detail (562) 570-5273 On Monday, November 27, 2017, at approximately 5:15 p.m., officers were dispatched to the intersection of Long Beach Boulevard and Cambridge Street regarding a vehicle versus pedestrian injury traffic collision, which resulted in the death of the pedestrian. Upon arrival officers found an elderly male pedestrian on Long Beach Boulevard north of Cambridge Street with life-threatening injuries. Long Beach Fire Department responded and transported the pedestrian to a local hospital, where he was later pronounced deceased. The preliminary investigation revealed the pedestrian was attempting to cross Long Beach Blvd., eastbound through a raised center median with vegetation, when he stepped out into the #1 lane of northbound Long Beach Blvd., when he was struck by a 2003 Mercury Grand Marquis driven by a 68-year-old male resident of Los Angeles. The pedestrian was outside of a crosswalk when he entered the northbound #1 lane of Long Beach Blvd. The driver of the vehicle remained at the scene and cooperated with the investigation. He was later released pending further investigation. The victim is only being identified as a 73-year-old resident of Los Angeles, pending notification of next of kin. Anyone who may have information regarding this incident is asked to call Long Beach Police Department Collision Investigation Detail Detective Sirilo Garcia at (562) 570-7355. Anonymous tips may be submitted through “LA Crime Stoppers” by calling 1-800-222-TIPS (8477), downloading the “P3 Tips” app to your smart phone (available at the Apple App store and Google Play), or visiting www.lacrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -1981,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/071421blotter.pdf,Dispatch Logs,Police & Public Interactions,"","",404,"","","","","","","","" -1982,http://www.longbeach.gov/police/press-releases/halloween-safety-tips-1-/,Media Bulletins,Agency-Published Resources,Halloween Safety Tips(1),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 10/23/2015 FOR IMMEDIATE RELEASE Press Release # Subject: HALLOWEEN SAFETY TIPS Contact: Media Relations (562) 570-5273 The Long Beach Police Department would like to encourage community members to practice the following safety tips to help ensure a fun and safe Halloween: Be sure your child’s activities are age-appropriate All children should be accompanied by an adult Only visit homes that are well-lighted and never go into a stranger’s house Stay on the sidewalk and only cross at corners Stay in well populated areas and never cut through alleys or parks Apply reflective tape to your child’s costume or use glow sticks for better visibility Use face paint rather than masks that may block your child’s vision Map out your route ahead of time and carry a flash light with you Ensure tips of any props (pitchfork, sword, etc.) your child is carrying are smooth Be cautious of animals and keep your pet(s) indoors Inspect your child’s candy before allowing them to eat it Report any suspicious or illegal activity by calling 9-1-1 immediately Motorists are advised to be extra cautious on Halloween night and to drive slowly Do not drink and drive; plan ahead and designate a driver or call for a ride Reminder: The curfew law in Long Beach prohibits anyone 17-years-old or younger from being out past 10:00 p.m. without a parent/guardian, unless going to or returning home from work or an organized event supervised by an adult, without any detour or stop. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -1983,https://www.ashevillenc.gov/wp-content/uploads/2016/08/citizens-police-academy.jpg,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -1984,https://www.lyndhurstohio.gov/police-crime-prevention-run-hide-fight.html,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -1985,https://www.hayward-ca.gov/discover/news/feb19/applicants-sought-new-police-community-advisory-panel,Training & Hiring Info,Info About Officers,Applicants sought for new police Community Advisory Panel | City of Hayward - Official website,Hayward residents interested in serving on a new Community Advisory Panel to the Hayward Chief of Police are invited to submit applications for consideration and potential selection.The purpose of the Community Advisory Panel is to improve trust and strengthen understanding between the Hayward Police Department and Hayward community members by creating a structure and venue,200,City of Hayward - Official website,"[""Applicants sought for new police Community Advisory Panel""]","[""Look Deeper"", ""Welcome home"", ""Where opportunity lives"", ""Find what you need. Fast."", ""Working for You"", ""Your Hayward Environment"", ""You are here. So is everything else."", ""Search form"", ""Look Deeper"", ""Welcome home"", ""Where opportunity lives"", ""Find what you need. Fast."", ""Working for You"", ""Your Hayward Environment""]",[],"[""Do you need help paying energy bills? You may qualify for federal aid."", ""Hayward Receives Grant for Safe Routes to Schools Infrastructure and Bicycle Incentives"", ""Hayward Celebrates Earth Day at Weekes Park!"", ""Spring 2024 Compost Giveaway"", ""Sustainable Solutions for Celebrating Easter"", ""City Hall and Nonessential Services Closure: Monday, Apr. 01, 2024"", ""Presidential Primary Election: Tuesday, Mar. 5, 2024"", ""Library Closure: February 12 and February 19, 2024."", ""City Hall and Nonessential Services Closures: Monday, Feb. 19"", ""City Hall and Nonessential Services Closure: Monday, Jan. 15, 2024"", ""YOU ARE HERE. SO IS EVERYTHING ELSE."", ""Related News"", ""Annual Citywide Earth Day Clean-Up and Community Fair—Saturday, April 20"", ""City of Hayward is celebrating Black History Month"", ""Entries being accepted for annual Earth Day Poster & Writing Contest until March 15"", ""Report Problems"", ""Ask Questions"", ""Make a Suggestion"", ""Translate"", ""Search""]",[],[],Skip to main content -1986,https://southamptontownnypolice.gov/169/parent-resources,Resources,Agency-Published Resources,"Parent Resources | Southampton, NY - Official Website",Find valuable parenting resources through the Youth Bureau.,200,"Police | Southampton, NY - Official Website","[""Parent Resources""]","[""Parents with a Purpose Resources"", ""Preventing Youth Drug Use"", ""Teen Drinking Information""]","[""Site Tools"", ""Contact Us"", """", ""Contact Us"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Government Town Services Community Info How Do I Translate Page Site Tools Home My Account Printer Friendly Email Page Contact Us RSS Site Map Translate Page Notifications Documents Search Home Government Departments Housing and Community Services Youth Bureau Resource Pages Parent Resources Parent Resources Parents with a Purpose Resources CDC Underage Drinking Fact Sheet Connect with Kids Families Together in New York State KidsHealth.org Macaroni Kid National Alliance on Mental Illness National Association for Self-Esteem Office of Children and Family Services Parent Further Suffolk County Coalition Against Domestic Violence Teaching Tolerance Preventing Youth Drug Use Our goal is to provide the Southampton community with information related to mutual, common family issues such as: bullying, cultural diversity, domestic violence, parenting, self-esteem, substance / prescription medication excess, and underage drinking. It is our belief that through knowledge, resources, and programs we will create an environment that protects our children, promotes healthy families, and empowers individuals to take control of their lives. Below you will find valuable resources to support this mission: A Parent’s Guide to the Teen Brain DEA’s Launch of GetSmartAboutDrugs.com Parents: The Anti-Drug Medicine Cabinet Safety Parents Empowered SAMHSA STOP Underage Drinking The Parent Toolkit Time to Act Teen Drinking Information Medical Impact of Underage Drinking (PDF) Parent Leadership Initiative (PDF) Parent Tips on Underage Drinking (PDF) Underage Drinking Fact Sheet (PDF) Underage Drinking Laws (PDF) Contact Us DAVID W. CROHAN COMMUNITY CENTER (Lower Level) 655 Flanders Rd, Flanders, NY 11901 Ph: 631-702-2425 Tracy Kolsin, LCSW Youth Services Coordinator Staff Directory Join Our Mailing List Bullying Resources Vaping and E-Cigarettes TEENS Vaping and E-Cigarette VIDEOS PARENTS - PARENTS - Vaping and E-cigarettes Parent Resources Teen Resources Community Service Guide Town Clerk Meetings, Agendas & Minutes Pay Your Taxes Online Services Applications, Forms & Fees Notify Me® FOIL Requests Contact Us Town of Southampton 116 Hampton Road Southampton, NY 11968 Phone: 631-283-6000 Banner photo credit: robertseifertphotography.com Site Links Contact Us Site Map Accessibility Copyright Notices Intranet Job Opportunities Title VI Non-discrimination Policy /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate " -1987,https://www.mass.gov/doc/essential-functions-of-a-police-officer/download,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -1989,https://www.jacksonms.gov/meetings/bid-opening-jpd-november-30-2021/jpd-rfp-catering-services-for-the-city-of-jackson-police-training-academy/,Not Criminal Justice Related,Not Criminal Justice Related,"JPD RFP-Catering Services for The City of Jackson-Police Training Academy - Jackson, MS","",200,"City of Jackson - Jackson, MS","[""JPD RFP-Catering Services for The City of Jackson-Police Training Academy""]","[""Primary menu links"", ""Action toolbar"", ""Recent news"", ""Contact"", ""Subscribe"", ""Connect""]","[""Beasley Road Bride Closure"", ""Statement from Mayor Lumumba on passage of garbage contract"", ""Jackson Selected for Bloomberg American Sustainable Cities Initiative"", ""Mayor Lumumba releases recommended RFP bid for garbage collection contract"", ""City Announces Redesigned, Updated JTRAN Network""]",[],"[""""]",[],"Jackson, MS Primary menu links Residents Businesses Visitors Government News Contact Action toolbar Answers Payments Report Issue Search Primary menu links Residents Businesses Visitors Government News Contact Action toolbar Answers Payments Report Issue Search Jackson, MS Jackson, MS Jackson, MS Proclamation of Local Emergency ___________________________________________________________________________________________________________________________________ The City of Jackson’s Water and Sewer Business Administration is now JXN Water. Click here . _____________________________________________________________________________________________________________________________________ PEG Network Off-Air Announcement: PEG Network is currently off the air as we undergo a relocation. We appreciate your patience during this transition. In the meantime, you can stay connected with PEG Network here or visit our YouTube channel at www.youtube.com/@JacksonPEGNetwork JPD RFP-Catering Services for The City of Jackson-Police Training Academy Posted on November 16, 2021 Recent news Beasley Road Bride Closure Posted on March 21, 2024 Statement from Mayor Lumumba on passage of garbage contract Posted on March 19, 2024 Jackson Selected for Bloomberg American Sustainable Cities Initiative Posted on March 19, 2024 Mayor Lumumba releases recommended RFP bid for garbage collection contract Posted on March 13, 2024 City Announces Redesigned, Updated JTRAN Network Posted on March 5, 2024 All news » JPD RFP-Catering Services for The City of Jackson-Police Training Academy Posted on November 16, 2021 Recent news Beasley Road Bride Closure Posted on March 21, 2024 Statement from Mayor Lumumba on passage of garbage contract Posted on March 19, 2024 Jackson Selected for Bloomberg American Sustainable Cities Initiative Posted on March 19, 2024 Mayor Lumumba releases recommended RFP bid for garbage collection contract Posted on March 13, 2024 City Announces Redesigned, Updated JTRAN Network Posted on March 5, 2024 All news » Recent news Beasley Road Bride Closure Posted on March 21, 2024 Statement from Mayor Lumumba on passage of garbage contract Posted on March 19, 2024 Jackson Selected for Bloomberg American Sustainable Cities Initiative Posted on March 19, 2024 Mayor Lumumba releases recommended RFP bid for garbage collection contract Posted on March 13, 2024 City Announces Redesigned, Updated JTRAN Network Posted on March 5, 2024 All news » Recent news Beasley Road Bride Closure Posted on March 21, 2024 Statement from Mayor Lumumba on passage of garbage contract Posted on March 19, 2024 Jackson Selected for Bloomberg American Sustainable Cities Initiative Posted on March 19, 2024 Mayor Lumumba releases recommended RFP bid for garbage collection contract Posted on March 13, 2024 City Announces Redesigned, Updated JTRAN Network Posted on March 5, 2024 All news » " -1990,https://www.stpaul.gov/departments/police/21st-century-policing-report/pillar-2-policy-and-oversight/report-0,List of Data Sources,Info About Agencies,Report Recommendation 2.2 | Saint Paul Minnesota,"Ensure comprehensive policies on the use of force that include training, investigations, prosecutions, data collection, and information sharing that are clear, concise, and openly available for public inspection.",200,Home | Saint Paul Minnesota,"[""Report Recommendation 2.2""]","[""Main Navigation"", ""Popular Topics"", ""Breadcrumb"", ""Footer""]","[""You are using an unsupported browser. Please use Microsoft Edge."", ""SPPD has comprehensive use-of-force policies"", ""SPPD posts interactive policies online"", ""SPPD emphasizes minimal force"", ""SPPD regularly trains use of force"", ""SPPD is committed to crisis intervention training"", ""SPPD is investing in training"", ""SPPD is committed to community safety"", ""SPPD is committed to transparency"", ""SPPD is committed to transparency"", ""SPPD is committed to transparency"", ""SPPD is committed to transparency"", ""SPPD is committed to transparency"", ""SPPD is committed to transparency"", ""SPPD is committed to transparency"", ""SPPD reviews all uses of force"", ""SPPD is committed to excellence"", ""Contact The City"", ""Email Us"", ""Call 651-266-8989""]","[""Business Spotlight"", ""Featured"", ""Business Spotlight"", ""Featured"", ""Reference Data"", ""Reference Data"", ""Reference Data"", ""Reference Data"", ""Reference Data"", ""Reference Data"", ""Reference Data"", ""Reference Data"", ""Reference Data""]",[],[],"" -1991,https://delcopa.gov/publicrelations/releases/2020/pdf/citizencorptrainingaug27.pdf,Media Bulletins,Agency-Published Resources,"","",200,"","","","","","","","" -1992,http://www.longbeach.gov/police/press-releases/l.b.p.d.-seizes-large-quantity-of-fireworks/,Media Bulletins,Agency-Published Resources,L.B.P.D. SEIZES LARGE QUANTITY OF FIREWORKS,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 6/21/2018 FOR IMMEDIATE RELEASE Press Release # Subject: L.B.P.D. SEIZES LARGE QUANTITY OF FIREWORKS Contact: Media Relations (562) 570-5273 VIEW THE VIDEO On Wednesday, June 20, 2018, at approx. 4:00 p.m., through a firework enforcement investigation, Long Beach Police detectives located several thousand pounds of illegal high-powered fireworks worth a quarter of a million dollars, and detained two individuals. Detectives conducting an investigation into the illegal possession and sales of fireworks in East Long Beach, which led them to two storage facilities in the Cities of Pico Rivera and Santa Fe Springs. Search warrants were served at both locations, where an excessive amount of illegal fireworks were located. Several thousand pounds of fireworks were confiscated from the storage facilities, with a street value of approximately $250,000. The Long Beach Fire Investigations Team and the Bureau of Alcohol, Tobacco, Firearms, and Explosives (ATF) Arson Unit Task Force also responded to the scene to assist, and took possession of the fireworks for safe disposal through the State Fire Marshal’s Office. An 82-year-old man from Paramount and a 54-year-old man from West Covina were both detained, and may be facing felony charges pending further investigation. The Long Beach Police and Fire Departments will continue to enforce the laws pertaining to the possession and sales of fireworks, which are illegal in the City of Long Beach. We will be out in force in the days leading up to, and on July 4th, to ensure compliance with the Long Beach City Ordinance that bans ALL fireworks, including those deemed “Safe and Sane.” Anyone found in violation of the city ordinance may be cited and/or arrested. Those found in violation may face a $1,000 fine, sentenced to six months in jail, or both. The fines and penalties may increase depending on the fireworks’ classification. Fireworks may be voluntarily disposed of at collection bins located at all fire stations, or at Lifeguard Headquarters, located at 2100 E. Ocean Boulevard (west side of the Junipero lot), from 8am to 8pm. If you or your neighbor would like post flyers or posters at your home or business, they can be picked-up at Fire Headquarters (3205 Lakewood Blvd.) until July 3rd, from 7:00 a.m. to 4:00 p.m., or at the Neighborhood Resource Center (100 W. Broadway, Suite 550) until July 3rd, from 8:00 a.m. to 5:00 p.m. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -1993,https://www.coppelltx.gov/217/emergency-notification-system-notifycopp,Resources,Agency-Published Resources,"Emergency Notification System (NotifyCoppell) | Coppell, TX",Learn about the NotifyCoppell system and what you receive when you sign up for it. ,200,"Coppell, TX | Official Website","[""Emergency Notification System (NotifyCoppell)""]","[""Fire Station #1"", ""Fire Station #2"", ""Fire Station #3"", ""Fire Station #4""]","[""Loading""]",[],[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search How Do I? Fire Prevention Emergency Management Life Safety Park About Us City Home Home Government City Departments Fire Department Emergency Management Mass Notification Emergency Notification System (NotifyCoppell) Emergency Notification System (NotifyCoppell) Receive alerts about emergencies and other important community news by signing up for NotifyCoppell , an Everbridge system. This system enables us to provide you with critical information quickly in a variety of situations, such as severe weather (with optional opt-in notifications for a variety of advisories, watches and warnings ), unexpected road closures, missing persons, and evacuations of buildings or neighborhoods. You will receive time-sensitive messages wherever you specify, such as your home, mobile or business phones, email address, text messages, and more. You pick where, you pick how. We recommend you include a cell phone number capable of receiving SMS text messages, as well as email addresses as less invasive ways to receive non-emergency messages. If you no longer wish to receive messages from NotifyCoppell but are unable to access your account, please submit a request to unsubscribe . Emergency Notification System (NotifyCoppell) NOAA All-Hazards Weather Radio Smartphone Applications Wireless Emergency Alerts System Contact Us Services EMS Report Medical Billing Fire Incident Report Notify Coppell Fire Administration 265 Parkway Boulevard P.O. Box 9478 Coppell, TX 75019 Life Safety Park 820 South Coppell Road Coppell, TX 75019 Mon-Fri, 7:00 am - 4:00 pm Phone: 972-304-3512 Fax: 972-745-4517 Email Fire Station #1 520 Southwestern Boulevard Coppell, TX 75019 Fire Station #2 366 South MacArthur Boulevard Coppell, TX 75019 Fire Station #3 133 Parkway Boulevard Coppell, TX 75019 Fire Station #4 440 Northpoint Drive Coppell, TX 75019 To report an emergency situation, call 9-1-1 . To report an arson or suspected arson, call the Fire Marshal's Office at 972-304-7055 . For non-emergency requests, call non-emergency dispatch 24 hours at 469-289-3270 . You can also contact non-emergency dispatch by dialing *247 from your cellular phone. Government Websites by CivicPlus® " -1994,https://www.sandiego.gov/police/news-center/cold-cases/frank-lee-foust,Media Bulletins,Agency-Published Resources,Frank Lee Foust | City of San Diego Official Website,"Officers were called to the scene after the building manager checked on an occupant and found him dead. The tenant had been shot at close range with a small caliber handgun. According to other tenants and the manager, the victim was last seen alive two days prior to being found. The victim was a 35-year-old black male who worked as a welder, and was a self employed artist. The victim's wallet and personal property were not taken. There is no known motive for the crime.",200,City of San Diego Official Website,"[""City of San Diego Official Website"", ""Cold Case: Frank Lee Foust""]","[""Main navigation"", ""Leisure"", ""Resident Resources"", ""Doing Business"", ""Library"", ""Public Safety"", ""City Hall"", ""News Center"", ""Footer"", ""Accessibility Tools""]",[],"[""Parks"", ""Outdoors"", ""Neighborhoods"", ""Recreational Activities"", ""Street Maintenance"", ""Plan"", ""Fix"", ""Build"", ""Programs & Events"", ""Services"", ""Kids & Teens"", ""eCollection"", ""Police"", ""Fire-Rescue"", ""Lifeguards"", ""City Officials"", ""City Government""]",[],[],"" -1995,http://www.longbeach.gov/police/press-releases/dui-saturation-patrol-results/,Media Bulletins,Agency-Published Resources,DUI SATURATION PATROL RESULTS,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 1/24/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: LONG BEACH POLICE DUI SATURATION PATROL PROVES EFFECTIVE Contact: Media Relations Detail (562) 570-5273 On Saturday January 18, 2014, the Long Beach Police Department’s Traffic Section conducted a Driving Under the Influence (DUI) Saturation Patrol from 7:00 p.m. until 3:00 a.m. During the eight-hour operation, motor officers patrolled throughout the city looking for impaired drivers and took the following enforcement actions: Made five (5) DUI arrests Issued two (2) misdemeanor citations for suspended licenses Impounded two (2) vehicles for drivers having a suspended license After falling dramatically for five straight years, figures for 2012 show an increase to 802 deaths because someone failed to designate a sober driver. Over the course of the past three years, DUI collisions have claimed nine lives and resulted in 315 injury crashes, harming 420 of our friends and neighbors. Driving under the influence can impact the economy in addition to the pain and suffering of those immediately affected. Conservatively, a fatality has a $1.4 million impact, an injury $70,000, and a crash that only damages property averages nearly $9,000. Funding for this program is from a California Office of Traffic Safety grant through the National Highway Traffic Safety Administration. Report Drunk Drivers, Call 911! This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -1996,http://www.lafayettepolice.us/2356/photos,Not Criminal Justice Related,Not Criminal Justice Related,"Photos | Lafayette, IN - Official Website","",200,"Police Department | Lafayette, IN - Official Website","[""Photos""]",[],"[""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Government Services Our Community Business & Development How Do I... Transparency CustomLinks_21 Photos Photos Blue Heart - Home Photos Spotlight Employment Utilities Payment Submit a Request Permits & Licensing Agendas & Minutes Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Government Services Our Community Business & Development How Do I... Transparency CustomLinks_21 Photos Photos Blue Heart - Home Photos Spotlight Employment Utilities Payment Submit a Request Permits & Licensing Agendas & Minutes Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Government Services Our Community Business & Development How Do I... Transparency CustomLinks_21 Photos Photos Blue Heart - Home Photos Spotlight Employment Utilities Payment Submit a Request Permits & Licensing Agendas & Minutes Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate Search Government Services Our Community Business & Development How Do I... Transparency CustomLinks_21 Photos Photos Blue Heart - Home Photos Spotlight Employment Utilities Payment Submit a Request Permits & Licensing Agendas & Minutes Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate Search Government Services Our Community Business & Development How Do I... Transparency Search Search Search Search Search Search Search Search " -1997,https://wyomingohio.gov/departments/police-department-2/coyote-information/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -1998,http://www.longbeach.gov/police/press-releases/l-b-p-d--seeks-public-s-help-in-robbery-being-investigated-as-hate-crime/,Media Bulletins,Agency-Published Resources,L.B.P.D. SEEKS PUBLIC'S HELP IN ROBBERY BEING INVESTIGATED AS HATE CRIME,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -1999,https://alpha.austin.gov/es/police-oversight/formal-complaint-acts-bringing-discredit-upon-the-department/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -2000,https://www.roundrocktexas.gov/news/police-looking-witnesses-fatal-collision/,Media Bulletins,Agency-Published Resources,Police looking for witnesses to fatal collision - City of Round Rock,"",200,403 Forbidden,[],[],"[""Police looking for witnesses to fatal collision""]","[""Site Search"", ""Follow Us""]",[],[],"" -2001,https://champaignil.gov/2015/03/02/champaign-police-investigate-downtown-shooting/,Media Bulletins,Agency-Published Resources,Champaign Police Investigate Downtown Shooting - City of Champaign,"",200,403 Forbidden,"[""Champaign Police Investigate Downtown Shooting""]","[""News Releases"", ""Department News""]",[],[],[],[],"skip to content City of Champaign Main Menu Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs Champaign Police Investigate Downtown Shooting Search Posted on March 2, 2015 On February 28th at 2:33AM, Champaign Police responded to a call for a fight that occurred in a parking lot, north of the High Dive Bar. As officers approached the scene, the crowd began to disperse. At 2:36AM , officers reported hearing a shot. A 22 year-old male victim was located with a gunshot wound and was transported to Carle Hospital for treatment. Several vehicles were seen fleeing the scene and were stopped by the Champaign Police Department for further investigation . There currently is no one in custody for this shooting. Investigators believe that there may have been witnesses to this shooting and ask that anyone with information, photographs or video of this incident contact the Champaign Police at 217-351-4545 . It is critical that our citizens and police work together to ensure we have safer neighborhoods and safer communities. In addition, any information can be provided anonymously through Crime Stoppers at (217) 373-8477 (TIPS). Anonymous tips can also be submitted online to Crime Stoppers at www.373tips.com or by texting the following: CCTIP plus their information to 274637 (CRIMES). Crime Stoppers will pay a reward of up to $1,000 for information leading to the arrest of the person(s) responsible for this crime. Categories: Police Department Press Releases Tags: Champaign , Downtown , High Dive , investigate , police , Shooting Subscribe to City News Read All City News News Releases General Construction Fire Department Police Department Department News City Council City Manager’s Office Equity and Engagement Department Finance Department Fire Department Human Resources Department Information Technologies Department Legal Department Library METCAD 9-1-1 Neighborhood Services Department Planning and Development Department Police Department Public Works Department The Champaign Insider City Newsletter City of Champaign City of Champaign 102 N. Neil St. Champaign, IL 61820 217-403-8700 Site Disclaimer I Privacy Policy Powered by Translate City of Champaign Main Menu Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs City of Champaign Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs " -2002,http://www.longbeach.gov/police/press-releases/murder-6700-block-gardenia/,Media Bulletins,Agency-Published Resources,MURDER 6700 BLOCK GARDENIA,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 9/13/2016 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: MURDER Contact: Media Relations Detail (562) 570-5273 On Monday, September 12, 2016, at approximately 9:50 a.m., Long Beach Police were dispatched to assist Long Beach Fire Department personnel with a deceased individual, at a residence in the 6700 block of Gardenia Avenue. Arriving officers found a female adult who sustained injuries to her upper body. Homicide detectives also responded to begin their investigation. The Los Angeles County Coroner will make positive identification and notify next of kin. A motive is unknown and no suspect information is available at this time. The investigation remains ongoing. Anyone with information regarding this incident is asked to contact Long Beach Police Homicide Detectives Peter Lackovic, Sean Irving, and Oscar Valenzuela at (562) 570-7244. Anonymous tips may be submitted through ""LA Crime Stoppers"" by calling 1-800-222-TIPS (8477), downloading the ""P3 Tips"" app to your smart phone (available at the Apple App store and Google Play), or visiting www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2003,https://alpha.austin.gov/en/police-oversight/notice-of-complaint-related-to-2022-0876/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -2004,http://www.longbeach.gov/police/press-releases/residential-robbery-suspects-charged/,Media Bulletins,Agency-Published Resources,RESIDENTIAL ROBBERY SUSPECTS CHARGED,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 2/2/2016 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: RESIDENTIAL ROBBERY SUSPECTS CHARGED Contact: Media Relations Detail 562-570-5273 On January 28, 2016 at approximately 2:30 pm officers were dispatched to an apartment in the 500 block of Ximeno Avenue regarding an unknown trouble call. The calling party advised dispatch that he was talking to his roommate on the phone and was told there were subjects in their apartment he did not recognize. The calling party said he could hear yelling and some sort of argument in the background and then the phone was hung-up. He then immediately called the police. Officers arrived at the location within 4 minutes and when they got to the apartment they encountered a residential robbery in progress. Two suspects were immediately arrested without incident. Officers subsequently found the victim in a bedroom, tied up and appeared to have been physically assaulted. The Victim’s loss was recovered and the suspects were booked at the Long Beach jail. The suspects have been identified as 25 year old Louis Wade II and 26 year old Courtney Griffin, both residents of Long Beach. On February 1, 2016 the LA County District Attorney’s office filed three felony counts on each of them; Residential Robbery, Kidnapping to Commit Robbery, and Assault with a Deadly Weapon. They are being held on $1,130,000.00 bail respectively. Anyone with information regarding this incident is encouraged to call the Long Beach Robbery Detail at (562)570-7464. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2005,https://mukilteowa.gov/departments/police/gun-safety-class-scholarship-program/,Resources,Agency-Published Resources,"City of Mukilteo - | Gun Safety Class Scholarship Program - City of Mukilteo","",200,403 Forbidden,"[""Gun Safety Class Scholarship Program""]","[""Sign up for notifications""]","[""Gun Safety Scholarship Program Application""]",[],[],[],COVID-19 Alert - City of Mukilteo Response COVID-19 Alert - City of Mukilteo Response -2006,https://police.birminghamal.gov/command-staff/captain-raymond-hollis-crutchfield/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -2007,https://www.arlingtontx.gov/city_hall/departments/police/community/crime_prevention,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -2008,http://www.longbeach.gov/police/press-releases/automotive-business-compliance-checks-conducted/,Media Bulletins,Agency-Published Resources,AUTOMOTIVE BUSINESS COMPLIANCE CHECKS CONDUCTED,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 8/1/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: AUTOMOTIVE BUSINESS COMPLIANCE CHECKS CONDUCTED Contact: Media Relations Detail (562) 570-5273 The Long Beach Police Department’s Detective Division, in cooperation with City of Long Beach’s Business Licensing Division, Code Enforcement Division and Fire inspectors conducted a two day compliance check of businesses that are involved in the selling, storing or repairing of motor vehicles in the Long Beach area. Also assisting with this operation were members of the Los Angeles County Task Force for Regional Auto Theft Prevention (TRAP), National Insurance Crime Bureau (NICB), California Department of Labor, California of Bureau of Automotive Repair (BAR), California Board of Equalization, California Department of Insurance, and California Employment Development Department (EDD). On July 28 and August 1, 2014, detectives inspected nine locations and over 400 vehicles and vehicle components. The purpose of the operation was to locate stolen vehicles and vehicle parts; ensure businesses were in compliance with State and local laws and regulations, as well as operating in a safe manner. During the course of the operation, nine citations were issued for violations that included employee compensation, child labor laws, fire codes, unpermitted construction, operating outside the permitted license, and failure to abide by California State overtime regulations. In addition to the citations, over 18 notices of violations were issued, which require follow-up compliance checks over the next several weeks. In some cases, payroll audits will be conducted by the California State Board of Equalization. In other cases, major Long Beach municipal code violations were discovered, which will require a massive clean up effort for unlicensed businesses operating within residential neighborhoods. The community should be aware that properly licensed businesses that operate within the City of Long Beach will have the appropriate licenses and permits posted in public view at their location. Anyone wishing to report unlawful business practices involving automotive-related businesses should contact the LBPD Auto Theft Detail at (562)570-7362. Unlawful practices may include any business dealings with stolen vehicles or parts, unfair labor practices, operating outside the scope of their permits or operating without licenses in an area not zoned for such use. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2009,https://alpha.austin.gov/es/police-oversight/2020-09-17-7/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -2010,https://www.ci.san-bernardino.ca.us/city_hall/police_department/online_services,Resources,Agency-Published Resources,Online Services - City of San Bernardino,"",200,Just a moment...,"[""City of San Bernardino California""]","[""Online Services""]",[],[],[],[],Skip to Content -2011,https://www.foxcrossingwi.gov/departments/police-department/history/30712442_10155740250625958_5846323570807930880_n/,Poor Data Source,Poor Data Source,30712442_10155740250625958_5846323570807930880_n - Fox Crossing Fox Crossing,"",200,Fox Crossing - Bridging the Fox Cities Fox Crossing,[],"[""History » 30712442_10155740250625958_5846323570807930880_n""]",[],[],[],[],"Home Government Board of Review Bond Schedule Commissions & Boards Application for Appointment Village Board Elections and Voting Incorporation Information Fee Schedule Licenses & Permit Applications Minutes and Agendas Municipal Code Departments Administration Assessor Clerk Community Development Finance/Treasurer Fire Municipal Court Parks and Recreation Police Street Utilities Calendar Resources Elderly Transportation Program Employment Garbage & Recycling Individual & Business of Year Information for Vendors Local Links Pet Licensing Permits Building Permits Planning Permits Street Permits Population History Public Records Real Estate Inquiry Maps/GIS Property Information Tax & Parcel Information Tax Rate Information (TID IN) The Bridge Calendar Valley Transit Village History Weights & Measures Online Services Municipal Court Payments Parking Ticket Payments Rec Program Registration Utility Online Services Village General Payments Village Notifications Contact How Are We Doing History » 30712442_10155740250625958_5846323570807930880_n This entry was posted on Thursday, September 10th, 2020 at 8:20 am and is filed under . - You can follow any responses to this entry through the RSS 2.0 feed. - - Both comments and pings are currently closed. Comments are closed. Copyright © 2010 - 2024 Fox Crossing, All Rights Reserved. Professional Web Site Design by Sandstone Digital. Disclaimer Home Government Board of Review Bond Schedule Commissions & Boards Application for Appointment Village Board Elections and Voting Incorporation Information Fee Schedule Licenses & Permit Applications Minutes and Agendas Municipal Code Departments Administration Assessor Clerk Community Development Finance/Treasurer Fire Municipal Court Parks and Recreation Police Street Utilities Calendar Resources Elderly Transportation Program Employment Garbage & Recycling Individual & Business of Year Information for Vendors Local Links Pet Licensing Permits Building Permits Planning Permits Street Permits Population History Public Records Real Estate Inquiry Maps/GIS Property Information Tax & Parcel Information Tax Rate Information (TID IN) The Bridge Calendar Valley Transit Village History Weights & Measures Online Services Municipal Court Payments Parking Ticket Payments Rec Program Registration Utility Online Services Village General Payments Village Notifications Contact How Are We Doing History » 30712442_10155740250625958_5846323570807930880_n This entry was posted on Thursday, September 10th, 2020 at 8:20 am and is filed under . - You can follow any responses to this entry through the RSS 2.0 feed. - - Both comments and pings are currently closed. Comments are closed. Copyright © 2010 - 2024 Fox Crossing, All Rights Reserved. Professional Web Site Design by Sandstone Digital. Disclaimer " -2012,https://www.mass.gov/doc/riva-albert-v-boston-police-department-related-superior-court-decision-21210/download,Court Cases,Jails & Courts Specific,"","",200,"","","","","","","","" -2013,https://police.crystalmn.gov/our_city/boards_and_commissions/parks___recreation_commission,Not Criminal Justice Related,Not Criminal Justice Related,Parks and Recreation Commission - City of Crystal,Information related to the City of Crystal Parks & Recreation Commission.,200,Just a moment...,"[""Parks and Recreation Commission""]","[""Recreation Director""]","[""Sign up for a city newsletter or notification."", ""City Hall"", ""Regular Hours:""]","[""Monday - Friday""]",[],[],"" -2014,https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0871/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -2016,http://lafayettepolice.us/faq.aspx?qid=131,Not Criminal Justice Related,Not Criminal Justice Related,FAQs • Are there any districts already in Lafayette?,"",200,"Police Department | Lafayette, IN - Official Website",[],"[""▼ Historic Preservation Commission""]","[""Categories"", ""Live Edit"", ""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -2017,https://www.mass.gov/doc/berrios-crystal-v-boston-police-department-3316/download,Court Cases,Jails & Courts Specific,"","",200,"","","","","","","","" -2018,https://www.stmatthewsky.gov/public-works/application-for-employment-current-copy/,Training & Hiring Info,Info About Officers,Application for Employment current - Copy - City of St Matthews,"",200,403 Forbidden,"[""Application for Employment current – Copy""]",[],[],[],[],[],"Facebook Search Menu Home Community About St. Matthews Area Organizations Churches History Lodging Points of Interest Schools Shopping Farmers Markets Library Friends of the Library Citizens Group Louisville Metro Free Public Library Main St. Matthews Eline Library Branch Recreation & Parks Amazing Microscopic Park Photos Arthur K. Draut Park Brown Park Community Park Holzheimer Park Pavilions & Ball Fields St. Matthews Baseball Warwick Park Outstanding Neighbor Seasonal City Events Halloween In Brown Park Light Up St. Matthews Potato Festival Rentals / Reservations City Hall Meeting Rooms The Arterburn Event Venue Government Boards Ethics City Map Codes & Ordinances Communications Contact Us Newsletters Reach Alert Notification LENsAlert (Louisville Emergency Notification System) Departments Alcohol Beverage Control Arborist Business License / Tax City Clerk & Treasurer Code Enforcement IT Communications Occupational Tax Planning & Design Police Property Tax / Real Estate Public Works Signs Solicitation Finance Ad Valorem Audit Budget Expenditures Local / State / Federal Offices & Organization Elected Representatives Jefferson County League of Cities Kentucky League of Cities Voter Registration Mayor & Council About the Mayor Agenda, Minutes City Council Members Standing Committees Ethics Complaint Form Open Records Request Staff Directory Services Police About SMPD Provided Services Events Transparency How Do I… Public Works Electronic Speed Signs Graffiti Green Up / Vehicle Pull Off Leaf Collection Sidewalks Snow Treatment Speed Humps Street Damage / Potholes Tree Planting Resources Ambulance (EMS) Animal Control Driver’s Liscenses Fire Protection District First Hour Grief Response Hazardous Waste Disposal Health Department – Louisville Hospitals Prescription Drug Disposal Public Transportation Bus Routes (TARC) St. Matthews Area Ministries (STMAM) Seniors & Disabled Citizens Utilities Drainage – Surface Waters Electric Company (LG&E) Street Lights Metropolitan Sewer District (MSD) Water Service (Louisville Water Co.) Waste Disposal Go Green Junk Disposal Recycle Program Sanitation Yard Waste – Storm Debris Business Forms Alcohol Application for Rentals Alcohol Beverage Control Basic License Alcohol Beverage Temporary License Arterburn Contract Business License Application Employers Annual Reconciliation Employers Quarterly Report Ethics Complaint Form Facility Alcohol for Rentals Golf Cart / ATV Application Grant Application Form Letter of Compliance Occupational Tax Application Occupational Tax Refund Opens Record Request Form Portable Storage Container Request a Tree Right-of-Way Permit Application Sign Permit Application Solicitation Certificate Application Special Events Application Street Party Petition Tent Permit Application Vehicle Pull Off (VPO) Application Permits Building Golf Cart / ATV Portable Storage Sign Special Events Street Party Tents Walk/Run Events Rentals / Reservations Ball Field – Warwick Park City Hall Meeting Rooms Park Pavilions The Arterburn Event Venue Chamber of St. Matthews Contact Us Select Page Application for Employment current – Copy Application for Employment current - Copy Site Map Contact Us Website Designed and Optimized by: 301 Interactive Marketing Facebook Facebook Search Facebook Search Facebook Search " -2019,https://www.austintexas.gov/page/commend-austin-police-officer,Contact Info & Agency Meta,Info About Agencies,Commend an Austin Police Officer | AustinTexas.gov,"If you want to thank, commend or congratulate an APD officer, please use this form and share your story with us. Thanks for your kind words. They mean a lot to the police officers who serve Austin every day.",200,Home | AustinTexas.gov,"[""Commend an Austin Police Officer""]","[""Action Navigation"", ""GTranslate"", ""Main menu"", ""Frequently Viewed Departments"", ""Commend an Austin Police Officer"", ""Tell Us About Yourself"", ""Footer Menu"", ""Second Footer Menu""]","[""Resident"", ""Business"", ""Government"", ""Departments"", ""Connect""]",[],[],[],"austintexas.gov Action Navigation 3-1-1 GTranslate Translate English Arabic Bulgarian Chinese (Simplified) Chinese (Traditional) Croatian Czech Danish Dutch Finnish French German Greek Hindi Italian Japanese Korean Norwegian Polish Portuguese Romanian Russian Spanish Swedish Catalan Filipino Hebrew Indonesian Latvian Lithuanian Serbian Slovak Slovenian Ukrainian Vietnamese Albanian Estonian Galician Hungarian Maltese Thai Turkish Persian Afrikaans Malay Swahili Irish Welsh Belarusian Icelandic Macedonian Yiddish Armenian Azerbaijani Basque Georgian Haitian Creole Urdu Bengali Bosnian Cebuano Esperanto Gujarati Hausa Hmong Igbo Javanese Kannada Khmer Lao Latin Maori Marathi Mongolian Nepali Punjabi Somali Tamil Telugu Yoruba Zulu austintexas . gov Filter Toggle navigation Menu Close Search Main menu Home Resident Resident Open the Resident page Open the Resident page Household Getting a Home Utilities Trash and Recycling Gardening and Home Improvements Home Improvements Pets and Adoption Open the Household page Neighborhoods Education Libraries Families Neighborhood Issues Open the Neighborhoods page Health Animals Public Health Open the Health page Public Safety Crime Courts Fire Safety Emergency Preparedness Public Safety Employment Open the Public Safety page Arts and Leisure Arts, History and Culture Outdoor, Nature and Wildlife Events City Venues and Facilities Film and Music Open the Arts and Leisure page Environmental City Programs and Initiatives Conservation and Recycling Animals and Wildlife Parks Open the Environmental page Transportation Car/Bus Aviation Bicycle/Pedestrian Streets/Maps Open the Transportation page City of Austin About Austin Voting and Elections Get Involved City Jobs Records and Documents Open the City of Austin page Business Business Open the Business page Open the Business page Doing Business Utilities Doing Business with the City Taxes MBE/WBE Program City Code Food Establishments Permits Day Labor Records and Documents Open the Doing Business page Starting Out Starting a Business Relocating a Business Incentives and Grants Open the Starting Out page City Contracts Small Business Centers Small Business Development Incentives and Grants Open the Small Business Centers page Austin Center for Events Nonprofits Grants Open the Nonprofits page Green Resources Government Government Open the Government page Open the Government page City Council City Manager's Office Boards and Commissions City Council meeting information City Hall Jobs Public Records Departments Departments View full directory of departments Frequently Viewed Departments View full directory of departments Visit Airport Visitors Bureau Convention Center Utilities Austin Energy Austin Water Resource Recovery Education & Recreation Library Parks and Recreation Safety Police Other Animal Services Development Services Economic Development Connect Connect Open the Connect page Share ideas online about improving Austin Participate in the City Sign up for email updates City contact information " -2020,http://www.longbeach.gov/police/press-releases/students-returning-to-school-motorists-urged-to-drive-carefully/,Media Bulletins,Agency-Published Resources,STUDENTS RETURNING TO SCHOOL; MOTORISTS URGED TO DRIVE CAREFULLY,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 8/28/2017 FOR IMMEDIATE RELEASE Press Release # Subject: STUDENTS RETURNING TO SCHOOL; MOTORISTS URGED TO DRIVE CAREFULLY Contact: Media Relations Detail (562) 570-5273 The Long Beach Police Department would like to remind everyone that with most schools in the Long Beach Unified School District resuming sessions on Wednesday, August 30th, and with the volume of pedestrian traffic around schools increasing dramatically, all commuters are urged to follow the laws of the road in an effort to prevent avoidable accidents: All drivers are reminded to : - Yield the right of way to pedestrians in marked or unmarked crosswalks - Not overtake and pass a vehicle(s) stopped ahead of you when it has stopped for a pedestrian - Yield the right of way to pedestrians on sidewalks - Obey posted speed limits - Never drive while distracted – (examples: using a cell phone, reading, applying make-up, etc.) - Stop and remain stopped for school buses with “flashing red lights” - opposing traffic must also stop unless a painted or raised divider separates the roadway - Watch and obey Crossing Guards … they are there to protect children! It is equally important for pedestrians and parents to also follow the rules of the road: Pedestrians are reminded to : - Yield to vehicles on the roadway if you are outside the crosswalk - Not cross between intersections controlled by traffic signals (to do so would constitute jaywalking) Parents are reminded to : - Obey all parking signs/curb markings - they are designed to protect children and provide optimum traffic flow - Do not double park; it interrupts the flow of traffic and makes it difficult to for pedestrians to see oncoming traffic - Follow school drop off procedures and always drop your child off on the curbside of the school - Teach your child to always cross the street at a crosswalk The Long Beach Police Department is committed to pedestrian and motorist safety and traffic laws will be strictly enforced at and around our schools! For further information, please contact the Long Beach Police Department’s Traffic Section at (562) 570-7355. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2021,https://coloradosprings.gov/police-department/page/commander-howard,Poor Data Source,Poor Data Source,"","",403,"","","","","","","","" -2022,https://www.minneapolismn.gov/resident-services/public-safety/police-public-safety/police-reports-and-data-requests/sex-offender-community-notification/,Resources,Agency-Published Resources,Sex Offender Community Notification - City of Minneapolis,The City notifies communities when a sex offender moves in. You can search for sex offenders online.,200,City of Minneapolis,"[""Sex offender community notification"", ""Need help? We're here for you.""]","[""A snow emergency is not currently in effect. Normal parking rules apply."", ""Community notification"", ""Sex offender search"", ""Minneapolis Police resources"", ""Community resources"", ""Help from crime prevention specialists"", ""Contact us""]","[""Jamie Kieffer"", """", ""Minneapolis Police Department"", ""Connect with the Minneapolis Police Department""]",[],[],[],"" -2023,https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0003/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -2024,http://www.longbeach.gov/police/press-releases/graduation-and-summer-break-safety-tips2/,Media Bulletins,Agency-Published Resources,GRADUATION AND SUMMER BREAK SAFETY TIPS,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2025,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/arrests/060721arrests.pdf,Arrest Records,Police & Public Interactions,"","",404,"","","","","","","","" -2026,https://norfolkne.gov/assets/site/documentcentral/police/statistical-reports/2021-statistical/mayormonthly050121.pdf,Annual & Monthly Reports,Info About Agencies,"","",200,"","","","","","","","" -2027,https://delcopa.gov/planning/pdf/agendas/2021/agenda202107.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -2028,https://www.lynchburgvapolice.gov/news-updates/update-suspect-sought-in-cornerstone-street-homicide/,Media Bulletins,Agency-Published Resources,[UPDATE] Suspect Sought in Cornerstone Street Homicide - Lynchburg Police Department,"",200,403 Forbidden,"[""[UPDATE] Suspect Sought in Cornerstone Street Homicide""]",[],[],"[""Contact Us"", ""Site Links"", ""Site Links""]",[],[],"" -2029,https://www.coppelltx.gov/1045/connect-with-oncor,Not Criminal Justice Related,Not Criminal Justice Related,"Connect with Oncor | Coppell, TX","Learn how to report power outages, downed power lines, and streetlight outages on Oncor.com. Learn how to receive alerts from Oncor. ",200,"Coppell, TX | Official Website","[""Connect with Oncor""]",[],"[""Oncor Overview"", ""Report Outages or Downed Lines"", ""Receive Alerts from Oncor"", ""What is the difference between Oncor and my electricity service provider?"", ""ERCOT"", ""Loading""]",[],[],[],Skip to Main Content -2030,https://www.mass.gov/info-details/2022-audit-of-the-bridgewater-state-university-objectives-scope-and-methodology,Annual & Monthly Reports,Info About Agencies,"2022 Audit of the Bridgewater State University Objectives, Scope, and Methodology | Mass.gov",An overview of the purpose and process of auditing the Bridgewater State University,200,Mass.gov,"[""2022 Audit of the Bridgewater State University Objectives, Scope, and Methodology""]","[""Table of Contents for the audit, Audit of the Bridgewater State University"", ""Table of Contents"", ""Overview"", ""Data Reliability"", ""Help Us Improve Mass.gov with your feedback""]",[],[],[],[],"" -2031,https://police.birminghamal.gov/command-staff/captain-james-jackson/,Personnel Records,Info About Officers,Captain James Jackson | Birmingham Police Department,"",200,"Home | Police Department - Birmingham, AL","[""Birmingham Police Department Commitment | Excellence | Integrity""]","[""Putting People First"", ""Captain James Jackson""]",[],"[""Hours & Info"", ""Upcoming Events"", ""CRIMESTOPPERS"", ""Police Information"", ""Quick Links"", ""I Need...""]",[],[],Birmingham Police Department Commitment | Excellence | Integrity Putting People First Birmingham Police Department Commitment | Excellence | Integrity Putting People First Birmingham Police Department Commitment | Excellence | Integrity Putting People First Home About Command Staff Bureaus Press Releases Join the Team Crime Stats CALEA IAD Stats Inmate Search Contacts Search Home About Command Staff Bureaus Press Releases Join the Team Crime Stats CALEA IAD Stats Inmate Search Contacts Search Search -2032,https://delcopa.gov/vote/military-overseas.html,Not Criminal Justice Related,Not Criminal Justice Related,"Military & Overseas Resources - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Military & Overseas Resources""]",[],"[""Military and Overseas Voters"", ""Delco Votes!"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Military & Overseas Resources Home / Elections / Military & Overseas Resources Unofficial Notice of Election for Military and Overseas Voters (General Primary - April 23, 2024) Military and Overseas Voters To register to vote and/or apply for an absentee ballot as a military or civilian overseas voter, you can complete the Federal Post Card Application (FPCA). Return the signed form (as an email attachment) to UOCAVA@co.delaware.pa.us or mail the form to: Delaware County Bureau of Elections 2501 Seaport Dr. Suite BH120 Chester, PA 19013 The deadline to register to vote is TWO WEEKS before Election Day, and a ballot request must be received at least one day BEFORE Election Day. For more information, see the Federal Voting Assistance Program guide for Pennsylvania . You may select to receive your absentee ballot by email/online, fax, or mail. Once you receive the ballot, mark it and submit it for delivery by mail no later than 11:59 p.m. on the day BEFORE Election Day. The Bureau of Elections must receive voted military and overseas absentee ballots no later than 5:00 p.m. ONE WEEK after Election Day. If you do not receive your absentee ballot in time to return it to participate in the election, you can use the Federal Write-In Absentee Ballot (FWAB). This is an official backup ballot that is blank, meaning it does not include the names of any candidates. It can only be used if you have already submitted an FPCA request, and a FWAB will only be counted if we do not receive your absentee ballot by the deadline. Federal Post Card Application (FPCA) Guide Federal Post Card Application (FPCA) Form in PDF 2024 Primary Election Unofficial Candidate List PDF Federal Write-In Absentee Ballot (FWAB) Form in PDF Delco Votes! Home Election News & Notices Voter Registration Sample Ballots Election Calendar Voter Resources Poll Worker Resources Candidate Resources Military & Overseas Where to Vote In-Person Ballot Drop Box Locations Vote-by-Mail Ballots Voter Service Centers FAQ Election Hotline Election Results About Us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu " -2033,https://spdblotter.seattle.gov/2014/12/30/police-arrest-christmas-day-bank-burglar/,Media Bulletins,Agency-Published Resources,Police Arrest Christmas Day Bank Burglar - SPD Blotter,"",200,403 Forbidden,"[""Police Arrest Christmas Day Bank Burglar""]","[""Find Posts By Topic"", ""Featured Posts"", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],"Seattle.gov Choose a language: English English Google Translate may not accurately translate all content. Read disclaimer . For general City questions, please call 206-684-2489 . Tell us your requested language in English, and we can connect you with an interpreter. Continue Cancel Español Es posible que Google Translate no traduzca con precisión todo el contenido. Lea el descargo de responsabilidad . Si necesita ayuda en otro idioma, díganos en inglés nombre del idioma que necesita y lo conectaremos con un intérprete: 206-684-2489 Seguir Cancelar 中國語文 Google翻譯可能無法準確翻譯所有內容。 閱讀免責聲明 。 如果您需要翻譯,請用英語説出您所需要的語言,我們將爲你連接口譯員: 206-684-2489 繼續 取消 简体中文 Google翻译可能无法准确翻译所有内容。 阅读免责声明 。 如果您需要翻译,请用英语说出您所需要的语言,我们将为你连接口译员: 206-684-2489 继续 取消 Tiếng Việt Google Dịch có thể không dịch chính xác tất cả nội dung. Đọc tuyên bố từ chối trách nhiệm . Nếu quý vị cần hỗ trợ về ngôn ngữ, xin vui lòng cho chúng tôi biết ngôn ngữ quý vị cần hỗ trợ bằng tiếng Anh (ví dụ “Vietnamese”), chúng tôi sẽ kết nối quý vị với một thông dịch viên: 206-684-2489 Tiếp tục Huỷ bỏ русский язык Google Translate не может точно перевести весь контент. Прочтите отказ от ответственности . Если вам нужна языковая помощь, сообщите нам на английском, какой язык вам нужен, и мы свяжем вас с переводчиком: 206-684-2489 Продолжать Отмена Af-Soomaali Google Translate ayaan si sax ah u turjumi karin dhammaan waxyaabaha ku jira. Akhri afeef . Haddii aad u baahan tahay caawimaad luqadeed, fadlan noogu sheeg Ingiriisiga luqadda aad u baahan tahay, ka dib waxaan kugu xiri doonnaa turjubaan: 206-684-2489 Sii wad Jooji አማርኛ የጉግል ትርጉም ሁሉንም ይዘቶች በትክክል መተርጎም ላይችል ይችላል። ማስተባበያ አንብብ ፡፡ ኣስተርጓሚ ካስፈለግዎ የሚፈልጉትን ቋንቋ በእንግልዝኛ ይንገሩን፣ ከኣስተርጓሚ እናገናኝዎታለን። 206-684-2489 ቀጥል ሰርዝ 한국어 구글은 정확하게 모든 내용을 번역하지 않을 수 있습니다 번역. 읽기 면책 조항 . 언어지원이 필요한 경우, 필요한 언어를 영어로 말씀해 주시면 통역사와 연결해 드리겠습니다: 206-684-2489 계속하다 취소 Tagalog Maaaring hindi tumpak na isalin ng Google Translate ang lahat ng nilalaman. Basahin ang disclaimer . Para sa mga pangkalahatang katanungan sa Lungsod, mangyaring tawagan ang 206-684-2489 . Sabihin sa amin ang hiniling mong wika sa Ingles, at maikokonekta ka namin sa isang interpreter. Magpatuloy Kanselahin ภาษาไทย Google Translate อาจแปลเนื้อหาทั้งหมดไม่ถูกต้อง อ่านข้อจำกัดความรับผิดชอบ สำหรับคำถามทั่วไปเกี่ยวกับเมืองโปรดโทร 206-684-2489 บอกภาษาที่คุณต้องการเป็นภาษาอังกฤษและเราสามารถติดต่อคุณกับล่ามได้ ดำเนินการต่อ ยกเลิก 日本語 Google翻訳は、すべてのコンテンツを正確に翻訳するとは限りません. 免責事項をお読みください 。 市の一般的な質問については 206-684-2489 に電話してください。ご希望の言語を英語で教えていただければ、通訳をご案内いたします。 継続する キャンセル ភាសាខ្មែរ កម្មវិធីបកប្រែហ្គូហ្គោលមិនអាចបកប្រែមាតិកាទាំងអស់បានត្រឹមត្រូវទេ។ អានការបដិសេធ។ សម្រាប់សំណួរទូទៅរបស់ទីក្រុងសូមទូរស័ព្ទមក 206-684-2489 ។ ប្រាប់យើងពីភាសាដែលអ្នកស្នើសុំជាភាសាអង់គ្លេសហើយយើងអាចភ្ជាប់អ្នកជាមួយអ្នកបកប្រែភាសា។ បន្ត បោះបង់ ພາສາລາວ Google Translate ອາດຈະບໍ່ແປເນື້ອຫາທັງ ໝົດ ຢ່າງຖືກຕ້ອງ. ອ່ານປະຕິເສດ . ສຳ ລັບ ຄຳ ຖາມທົ່ວໄປຂອງເມືອງ, ກະລຸນາໂທຫາ 206-684-2489 . ບອກພວກເຮົາເປັນພາສາອັງກິດທີ່ທ່ານຮ້ອງຂໍ, ແລະພວກເຮົາສາມາດເຊື່ອມຕໍ່ທ່ານກັບນາຍແປພາສາ. ສືບຕໍ່ ຍົກເລີກ Українська Перекладач Google може не точно перекласти весь вміст. Прочитайте застереження . За загальними запитаннями про місто, будь ласка, телефонуйте 206-684-2489 . Розкажіть нам про вашу мову англійською мовою, і ми можемо зв’язати вас із перекладачем. Продовжуйте Скасувати Français Google Traduction peut ne pas traduire correctement tout le contenu. Lisez la clause de non-responsabilité . Pour des questions générales sur la ville, veuillez appeler le 206-684-2489 . Dites-nous votre langue souhaitée en anglais, et nous pourrons vous mettre en contact avec un interprète. Continuer Annuler " -2034,https://alpha.austin.gov/es/police-oversight/2020-06-05-1/,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -2035,https://delcopa.gov/courts/pdf/21noticetothebarpublic_boardofmanagers_juveniledetentioncenter.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -2036,http://www.longbeach.gov/police/press-releases/juvenile-held-in-connection-with-robbery-case/,Media Bulletins,Agency-Published Resources,JUVENILE HELD IN CONNECTION WITH ROBBERY CASE,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 7/1/2016 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: JUVENILE HELD IN CONNECTION WITH ROBBERY CASE Contact: Media Relations Detail (562) 570-5273 On June 28, 2016, the District Attorney’s Office filed multiple offenses against a 15-year-old resident of Long Beach for his involvement in an attempt robbery and assault with a deadly weapon incident. On Monday, December 7, 2015, at approximately 10:45 p.m., officers were dispatched to an assault call in the 200 block of St. Joseph Avenue. Arriving officers discovered that two male adults were approached by two male subjects who attempted to rob them, and the victims and suspects became involved in a physical altercation. A witness intervened and the suspects, described as two male Hispanics in their late teens to early 20’s, ran to a nearby vehicle and fled. No property was taken. During the altercation, both victims sustained stab wounds to the torso. Long Beach Fire Department transported the victims, with what appeared to be non-life threatening injuries, to a local hospital. The case was investigated as possibly hate motivated. Detectives were able to identify the subject responsible from preserved evidence left at the scene of the stabbing. On June 24, 2016, West Division patrol officers were dispatched to the area of Pine Avenue and 16th Street regarding a group of male subjects chasing another individual throughout the neighborhood. A juvenile was detained and during the course of the investigation, officers believed him he may be involved in the December 7, 2015 incident. On June 28, 2016, Robbery detectives presented the case to the Los Angeles County District Attorney’s Office, which filed two counts of assault with a deadly weapon with a great bodily injury enhancement, and two counts of attempt robbery against the 15-year-old Petitioner. The juvenile was later transported to Los Padrinos Juvenile Hall. The second suspect remains outstanding and the investigation is ongoing. Anyone with information regarding this investigation is encouraged to call the Long Beach Police Robbery Detective D. Collier at (562) 570-5537. Anyone wishing to remain anonymous may call 1-800-22-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit http://www.lacrimestoppers.org/ This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2038,https://www.pleasantprairiewi.gov/departments/police/news/police_and_fire___rescue_news_archive/2017_news_releases/police_launch_community_camera_partnership_program,Media Bulletins,Agency-Published Resources,Police Launch Community Camera Partnership Program - Village of Pleasant Prairie,"",200,Just a moment...,[],"[""Police Launch Community Camera Partnership Program""]","[""Follow Us on Social Media""]",[],[],[],"" -2039,https://spdblotter.seattle.gov/2017/03/13/suspected-prowler-arrested-after-police-spot-him-peering-into-cars-at-downtown-garage/,Media Bulletins,Agency-Published Resources,Suspected Prowler Arrested After Police Spot Him Peering Into Cars at Downtown Garage - SPD Blotter,"",200,403 Forbidden,"[""Suspected Prowler Arrested After Police Spot Him Peering Into Cars at Downtown Garage""]","[""Find Posts By Topic"", ""Featured Posts"", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],"Seattle.gov Choose a language: English English Google Translate may not accurately translate all content. Read disclaimer . For general City questions, please call 206-684-2489 . Tell us your requested language in English, and we can connect you with an interpreter. Continue Cancel Español Es posible que Google Translate no traduzca con precisión todo el contenido. Lea el descargo de responsabilidad . Si necesita ayuda en otro idioma, díganos en inglés nombre del idioma que necesita y lo conectaremos con un intérprete: 206-684-2489 Seguir Cancelar 中國語文 Google翻譯可能無法準確翻譯所有內容。 閱讀免責聲明 。 如果您需要翻譯,請用英語説出您所需要的語言,我們將爲你連接口譯員: 206-684-2489 繼續 取消 简体中文 Google翻译可能无法准确翻译所有内容。 阅读免责声明 。 如果您需要翻译,请用英语说出您所需要的语言,我们将为你连接口译员: 206-684-2489 继续 取消 Tiếng Việt Google Dịch có thể không dịch chính xác tất cả nội dung. Đọc tuyên bố từ chối trách nhiệm . Nếu quý vị cần hỗ trợ về ngôn ngữ, xin vui lòng cho chúng tôi biết ngôn ngữ quý vị cần hỗ trợ bằng tiếng Anh (ví dụ “Vietnamese”), chúng tôi sẽ kết nối quý vị với một thông dịch viên: 206-684-2489 Tiếp tục Huỷ bỏ русский язык Google Translate не может точно перевести весь контент. Прочтите отказ от ответственности . Если вам нужна языковая помощь, сообщите нам на английском, какой язык вам нужен, и мы свяжем вас с переводчиком: 206-684-2489 Продолжать Отмена Af-Soomaali Google Translate ayaan si sax ah u turjumi karin dhammaan waxyaabaha ku jira. Akhri afeef . Haddii aad u baahan tahay caawimaad luqadeed, fadlan noogu sheeg Ingiriisiga luqadda aad u baahan tahay, ka dib waxaan kugu xiri doonnaa turjubaan: 206-684-2489 Sii wad Jooji አማርኛ የጉግል ትርጉም ሁሉንም ይዘቶች በትክክል መተርጎም ላይችል ይችላል። ማስተባበያ አንብብ ፡፡ ኣስተርጓሚ ካስፈለግዎ የሚፈልጉትን ቋንቋ በእንግልዝኛ ይንገሩን፣ ከኣስተርጓሚ እናገናኝዎታለን። 206-684-2489 ቀጥል ሰርዝ 한국어 구글은 정확하게 모든 내용을 번역하지 않을 수 있습니다 번역. 읽기 면책 조항 . 언어지원이 필요한 경우, 필요한 언어를 영어로 말씀해 주시면 통역사와 연결해 드리겠습니다: 206-684-2489 계속하다 취소 Tagalog Maaaring hindi tumpak na isalin ng Google Translate ang lahat ng nilalaman. Basahin ang disclaimer . Para sa mga pangkalahatang katanungan sa Lungsod, mangyaring tawagan ang 206-684-2489 . Sabihin sa amin ang hiniling mong wika sa Ingles, at maikokonekta ka namin sa isang interpreter. Magpatuloy Kanselahin ภาษาไทย Google Translate อาจแปลเนื้อหาทั้งหมดไม่ถูกต้อง อ่านข้อจำกัดความรับผิดชอบ สำหรับคำถามทั่วไปเกี่ยวกับเมืองโปรดโทร 206-684-2489 บอกภาษาที่คุณต้องการเป็นภาษาอังกฤษและเราสามารถติดต่อคุณกับล่ามได้ ดำเนินการต่อ ยกเลิก 日本語 Google翻訳は、すべてのコンテンツを正確に翻訳するとは限りません. 免責事項をお読みください 。 市の一般的な質問については 206-684-2489 に電話してください。ご希望の言語を英語で教えていただければ、通訳をご案内いたします。 継続する キャンセル ភាសាខ្មែរ កម្មវិធីបកប្រែហ្គូហ្គោលមិនអាចបកប្រែមាតិកាទាំងអស់បានត្រឹមត្រូវទេ។ អានការបដិសេធ។ សម្រាប់សំណួរទូទៅរបស់ទីក្រុងសូមទូរស័ព្ទមក 206-684-2489 ។ ប្រាប់យើងពីភាសាដែលអ្នកស្នើសុំជាភាសាអង់គ្លេសហើយយើងអាចភ្ជាប់អ្នកជាមួយអ្នកបកប្រែភាសា។ បន្ត បោះបង់ ພາສາລາວ Google Translate ອາດຈະບໍ່ແປເນື້ອຫາທັງ ໝົດ ຢ່າງຖືກຕ້ອງ. ອ່ານປະຕິເສດ . ສຳ ລັບ ຄຳ ຖາມທົ່ວໄປຂອງເມືອງ, ກະລຸນາໂທຫາ 206-684-2489 . ບອກພວກເຮົາເປັນພາສາອັງກິດທີ່ທ່ານຮ້ອງຂໍ, ແລະພວກເຮົາສາມາດເຊື່ອມຕໍ່ທ່ານກັບນາຍແປພາສາ. ສືບຕໍ່ ຍົກເລີກ Українська Перекладач Google може не точно перекласти весь вміст. Прочитайте застереження . За загальними запитаннями про місто, будь ласка, телефонуйте 206-684-2489 . Розкажіть нам про вашу мову англійською мовою, і ми можемо зв’язати вас із перекладачем. Продовжуйте Скасувати Français Google Traduction peut ne pas traduire correctement tout le contenu. Lisez la clause de non-responsabilité . Pour des questions générales sur la ville, veuillez appeler le 206-684-2489 . Dites-nous votre langue souhaitée en anglais, et nous pourrons vous mettre en contact avec un interprète. Continuer Annuler " -2040,http://www.norwoodma.gov/departments/police/report_a_tip.php,Resources,Agency-Published Resources,"Welcome to Town of Norwood, Massachusetts","Welcome to Town of Norwood, Massachusetts",200,"Welcome to Town Of Norwood, Massachusetts","[""Report a Tip""]",[],[],[],[],[],"" -2041,http://www.longbeach.gov/police/press-releases/murder-36-/,Media Bulletins,Agency-Published Resources,MURDER(36),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 9/16/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: MURDER Contact: Media Relations (562) 570-5273 UPDATE (1/29/2016): View related news release regarding arrests. Original news release : On Wednesday, September 16, 2015, at approximately 12:49 a.m., Long Beach Police responded to the 1200 block of Chestnut Avenue regarding a shooting. When officers arrived, they discovered a male adult down on the street who had been struck by gunfire. Long Beach Fire Department Paramedics responded and pronounced the victim deceased at the scene. The victim has been identified as 24-year-old Rodrigo Perez Salazar of Long Beach. The motive for the shooting is unclear and the investigation remains ongoing. Anyone with information regarding this incident is urged to contact Long Beach Police Homicide Detectives Donald Goodman and Mark Mattia at (562) 570-7244. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting www.lacrimestoppers.org. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 9/16/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: MURDER Contact: Media Relations (562) 570-5273 UPDATE (1/29/2016): View related news release regarding arrests. Original news release : On Wednesday, September 16, 2015, at approximately 12:49 a.m., Long Beach Police responded to the 1200 block of Chestnut Avenue regarding a shooting. When officers arrived, they discovered a male adult down on the street who had been struck by gunfire. Long Beach Fire Department Paramedics responded and pronounced the victim deceased at the scene. The victim has been identified as 24-year-old Rodrigo Perez Salazar of Long Beach. The motive for the shooting is unclear and the investigation remains ongoing. Anyone with information regarding this incident is urged to contact Long Beach Police Homicide Detectives Donald Goodman and Mark Mattia at (562) 570-7244. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting www.lacrimestoppers.org. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . A- A A+ A- A A+ A- A A+ A- A A+ A- A A+ " -2042,https://delcopa.gov/publicrelations/releases/2020/thankyoufirstresponders.html,Media Bulletins,Agency-Published Resources,"Thank You Citizens Corps of Delaware County - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Thank you Citizens Corps of Delaware County""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]","[""""]",[],[],"" -2044,https://cityofsweetwater.fl.gov/event/sweetwater-police-pension-plan-board-of-trustees-meeting/,Policies & Contracts,Info About Agencies,Agendas & Minutes - City of Sweetwater,"",200,Home - City of Sweetwater,[],"[""Agendas & Minutes""]","[""Contact City Hall"", ""Office Hours""]",[],"[""Search Meeting Minutes, Agendas & Packets""]",[],Today Week Detailed 69°F Today 79°F Thu 81°F Fri 79°F Sat 79°F Sun 79°F Mon 79°F Tue 82°F Today Week Detailed 69°F Today 79°F Thu 81°F Fri 79°F Sat 79°F Sun 79°F Mon 79°F Tue 82°F Today Week Detailed 69°F Today 79°F Thu 81°F Fri 79°F Sat 79°F Sun 79°F Mon 79°F Tue 82°F Today Week Detailed 69°F Today 79°F Thu 81°F Fri 79°F Sat 79°F Sun 79°F Mon 79°F Tue 82°F Today Week Detailed 69°F Today 79°F Thu 81°F Fri 79°F Sat 79°F Sun 79°F Mon 79°F Tue 82°F Today Week Detailed 69°F Today 79°F Thu 81°F Fri 79°F Sat 79°F Sun 79°F Mon 79°F Tue 82°F Today Week Detailed 69°F Today 79°F Thu 81°F Fri 79°F Sat 79°F Sun 79°F Mon 79°F Tue 82°F Today Week Detailed 69°F Today 79°F Thu 81°F Fri 79°F Sat 79°F Sun 79°F Mon 79°F Tue 82°F Today Week Detailed 69°F Today 79°F Thu 81°F Fri 79°F Sat 79°F Sun 79°F Mon 79°F Tue 82°F 69°F Today 79°F Thu 81°F Fri 79°F Sat 79°F Sun 79°F Mon 79°F Tue 82°F 69°F Today 79°F Thu 81°F Fri 79°F Sat 79°F Sun 79°F Mon 79°F Tue 82°F Home About Us Government City Mayor City Commissioners City Code and Charter Agendas & Minutes Administration Calendar Departments Mayor's Office Annual Reports City Budget Building and Zoning Permit & Inspection Utilization Report Permit & Inspection Status Important Forms — Building & Zoning Clerk’s Office Clerks Office Mission Election Information 2021 Election Information 2023 Ordinances & Resolutions Communications News & Notices Newsletter Code Compliance Finance Human Resources Parks and Recreation Parks Programs Police Public Works Engineering Division Community ITB / RFP / RFQ Passport Office Transportation & Transit Schedule Elderly Program Events Calendar Special Projects Department Subscribe to Updates Contact Us Home About Us Government City Mayor City Commissioners City Code and Charter Agendas & Minutes Administration Calendar Departments Mayor's Office Annual Reports City Budget Building and Zoning Permit & Inspection Utilization Report Permit & Inspection Status Important Forms — Building & Zoning Clerk’s Office Clerks Office Mission Election Information 2021 Election Information 2023 Ordinances & Resolutions Communications News & Notices Newsletter Code Compliance Finance Human Resources Parks and Recreation Parks Programs Police Public Works Engineering Division Community ITB / RFP / RFQ Passport Office Transportation & Transit Schedule Elderly Program Events Calendar Special Projects Department Subscribe to Updates Contact Us Home About Us Government City Mayor City Commissioners City Code and Charter Agendas & Minutes Administration Calendar Departments Mayor's Office Annual Reports City Budget Building and Zoning Permit & Inspection Utilization Report Permit & Inspection Status Important Forms — Building & Zoning Clerk’s Office Clerks Office Mission Election Information 2021 Election Information 2023 Ordinances & Resolutions Communications News & Notices Newsletter Code Compliance Finance Human Resources Parks and Recreation Parks Programs Police Public Works Engineering Division Community ITB / RFP / RFQ Passport Office Transportation & Transit Schedule Elderly Program Events Calendar Special Projects Department Subscribe to Updates Contact Us -2045,https://coloradosprings.gov/police-department/article/news/update-homicide-investigation-3125-sinton,Media Bulletins,Agency-Published Resources,Update Homicide Investigation at 3125 Sinton Road | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""Update Homicide Investigation at 3125 Sinton Road""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[],"" -2046,https://hilliardohio.gov/hpd-partners-with-neighboring-police-agencies-for-career-day/,Misc Police Activity,Police & Public Interactions,HPD Partners with Neighboring Police Agencies for Career Day - City of Hilliard,"The Hilliard Division of Police will join other nearby police agencies June 15 for a special Suburban Police Career Day. The event, the first of its kind",200,403 Forbidden,"[""HPD Partners with Neighboring Police Agencies for Career Day""]","[""Residents"", ""It’s a place you can be proud to call home."", ""Government"", ""We exhibit a heart for service, dedication to excellence, and strength in teamwork."", ""Recreation & Parks"", ""We believe in health, wellness, and vibrant quality of life for our community."", ""Police & Courts"", ""Our badge shows we protect and serve. Our approach shows we're part of the community."", ""FAQ"", ""How can we assist you?"", ""Related News"", ""Back-to-Back: Hilliard again named Top21 Smart Community in World"", ""HPD Honors Employees of the Year"", ""No Injuries Reported from Overnight Storm"", ""LET'S CHAT!"", ""City of Hilliard"", ""Hilliard Police"", ""Rec & Parks"", ""Hilliard Newsletter""]",[],[],[],"[""Click the ‘x’ to opt out.""]",About Hilliard Accessing the Last Mile Aging in Place Committee Annual Events Available Properties Boards and Commissions Application Bridging The Digital Divide Building Standards Division Business Card Order Form Business Media Business Permitting Business Resources City Charter City Manager City of Hilliard – Home Collaborations for Technology Community Garden Community Resources Community Services and Programs Comprehensive Plan Contact the City Contact Us Demographics Designated Outdoor Refreshment Area (DORA) Disc Golf Discrimination Form Downtown Hilliard Downtown Hilliard Map Economic Development Electric Aggregation Engineering Division Ephemeral Wildflowers in Hilliard Fall Festival Feral Cats Fiber To The Home File a Report Online Food Waste Composting Program Forms and Applications HiFiO Hilliard City Lab Hilliard Development Corporation Hilliard Express Hilliard Public Arts Commission Hilliard Trails Hilliard’s Parks History Important Documents Incentives & Programs Information Technology Join the HPD Team Leaf Collection Lifestyle Major Employers Mapping Ohio’s Connectivity Mosquitos Neighborhood Crime Mapping Non Discrimination Now Hiring: Seasonal and Part-Time Positions Operations Department Opportunity Hilliard Personnel Review Board Planning Division Police Transparency in Policing Police Public Records Request Program Guide Public Bids Public Records Recreation and Parks – WebTrac RecTrac User Guide Recycling Roundabouts SAFE Sidewalk Program Sanitary Backflow Program Senior Programs Senior Resources Smart Streets Smart911 Social Investment Sponsorship Stationary Order Form Stormwater Management Street Maintenance & Rehabilitation Program Styrofoam Recycling Summer Rec Camp Sustainability Taxes The Well – Hilliard Recreation and Wellness Center Traffic Calming Traffic Enforcement Requests Transportation & Mobility Division Transportation Planning Trees Vacation House Check Victims Rights Videos Volunteer WebTrac Login Winter Weather Yard Waste Your Hilliard Residents Resident Resources Hilliard 311 Thank you Newsletter Signup Trash Rec & Parks Classes & Camps Rentals Master Parks Plan Pools & Passes The Senior Center Senior Citizen Hall of Fame Sports Government Newsroom Boards & Commissions Planning & Zoning Recreation and Parks Advisory Committee Records Commission Shade Tree Commission Environmental Sustainability Commission Keep Hilliard Beautiful Zoning Appeals Agendas & Minutes City Council Mayor’s Court Departments Community Development Finance Human Resources Law Q & A Business Communication Economic Development Emergency Alerts Fire Holidays HR Mayor’s Court Old Hilliard Police Rec & Parks Solicitation Taxes Trash Q&A Trees Q&A Reporting Online Library Norwich Township Schools Visit Hotels Old Hilliard News Privacy & Usage Policy Sitemap Close Font Resize A- A+ Keyboard navigation Readable Font Contrast Choose color black white green blue red orange yellow navi Clear cookies Close Accessibility by WAH Close Font Resize A- A+ Keyboard navigation Readable Font Contrast Choose color black white green blue red orange yellow navi Clear cookies Close Font Resize A- A+ Keyboard navigation Readable Font Contrast Choose color black white green blue red orange yellow navi Clear cookies Close Font Resize A- A+ Font Resize A- A+ Keyboard navigation Keyboard navigation Readable Font Readable Font Contrast Choose color black white green blue red orange yellow navi Contrast Choose color black white green blue red orange yellow navi black white green blue red orange yellow navi Clear cookies Clear cookies Accessibility by WAH Accessibility by WAH -2047,https://alpha.austin.gov/health-safety/accountability-and-transparency-in-policing/police-feedback-and-records/bwc-dmav-data-analysis-data-cleaning-operations/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -2048,https://ridgelandsc.gov/police-department/daily-crime-reports-march-2022,Crime Maps & Reports,Agency-Published Resources,Town of Ridgeland,Town of Ridgeland,200,Town of Ridgeland,"[""Police Department""]","[""Daily Crime Reports - March 2022""]",[],"[""March 31"", ""March 30"", ""March 29"", ""March 28"", ""March 27"", ""March 26"", ""March 25"", ""March 24"", ""March 23"", ""March 22"", ""March 21"", ""March 20"", ""March 19"", ""March 18"", ""March 17"", ""March 16"", ""March 15"", ""March 14"", ""March 13"", ""March 12"", ""March 11"", ""March 10"", ""March 9"", ""March 8"", ""March 7"", ""March 6"", ""March 5"", ""March 4"", ""March 3"", ""March 2"", ""March 1""]",[],[],"HOME GOVERNMENT Government Mayor Town Council Boards & Commissions Board, Commission, & Committee Vacancies Town Council Meeting Agendas Town Council Videos Resources Bid Opportunities Public Meeting Agendas Financial Documents DEPARTMENTS Executive Finance, HR and Risk Management Municipal Court Planning and Community Development Police Department Fire Department Water & Sewer BUSINESS Bid Opportunities Building Permits & Forms Business License Information Economic Development Opening a Business Public Meeting Agendas Resources Zoning Maps COMMUNITY About Ridgeland Battle of Honey Hill Community Events Job Opportunities Maps Gallery News & Information Ordinances Parks & Trails Public Safety/Utilities Schools Services Town of Ridgeland Farmers Market I WANT TO... Contact a Staff Member File a FOIA Request Find Out About Trash Collection Service Find the Police Department Find the Fire Department Find Town Hall Find Zoning Maps Learn About Services Pay a Traffic Fine Pay My Water Bill I Want Water/Sewer Service Rent Lakeside at Blue Heron HOME GOVERNMENT Government Mayor Town Council Boards & Commissions Board, Commission, & Committee Vacancies Town Council Meeting Agendas Town Council Videos Resources Bid Opportunities Public Meeting Agendas Financial Documents DEPARTMENTS Executive Finance, HR and Risk Management Municipal Court Planning and Community Development Police Department Fire Department Water & Sewer BUSINESS Bid Opportunities Building Permits & Forms Business License Information Economic Development Opening a Business Public Meeting Agendas Resources Zoning Maps COMMUNITY About Ridgeland Battle of Honey Hill Community Events Job Opportunities Maps Gallery News & Information Ordinances Parks & Trails Public Safety/Utilities Schools Services Town of Ridgeland Farmers Market I WANT TO... Contact a Staff Member File a FOIA Request Find Out About Trash Collection Service Find the Police Department Find the Fire Department Find Town Hall Find Zoning Maps Learn About Services Pay a Traffic Fine Pay My Water Bill I Want Water/Sewer Service Rent Lakeside at Blue Heron HOME GOVERNMENT Government Mayor Town Council Boards & Commissions Board, Commission, & Committee Vacancies Town Council Meeting Agendas Town Council Videos Resources Bid Opportunities Public Meeting Agendas Financial Documents DEPARTMENTS Executive Finance, HR and Risk Management Municipal Court Planning and Community Development Police Department Fire Department Water & Sewer BUSINESS Bid Opportunities Building Permits & Forms Business License Information Economic Development Opening a Business Public Meeting Agendas Resources Zoning Maps COMMUNITY About Ridgeland Battle of Honey Hill Community Events Job Opportunities Maps Gallery News & Information Ordinances Parks & Trails Public Safety/Utilities Schools Services Town of Ridgeland Farmers Market I WANT TO... Contact a Staff Member File a FOIA Request Find Out About Trash Collection Service Find the Police Department Find the Fire Department Find Town Hall Find Zoning Maps Learn About Services Pay a Traffic Fine Pay My Water Bill I Want Water/Sewer Service Rent Lakeside at Blue Heron " -2049,http://www.longbeach.gov/police/press-releases/motorcycle-safety-operation-results/,Media Bulletins,Agency-Published Resources,MOTORCYCLE SAFETY OPERATION RESULTS,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 4/28/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: MOTORCYCLE SAFETY OPERATION RESULTS Contact: Media Relations Detail (562) 570-5273 On Sunday April 26, 2015, the Long Beach Police Department's Traffic Section conducted a Motorcycle Safety Operation. During the five-hour operation, motor officers patrolled throughout the city looking for unsafe driving by motorcyclists, as well as drivers who were operating vehicles unsafely around motorcycle riders. Officers took the following enforcement actions: Cited forty-four (44) motorcyclists for unsafe driving and/or non DOT approved helmet Cited five (5) drivers for unsafe driving Cited one (1) motorcyclist for a suspended license Motorcycle fatalities saw a phenomenal drop of 37% from 2008 to 2010, but then rose 23% by 2012. Operations like this are aimed at curbing a further rise in motorcycle deaths, and sending the numbers back downward. Over the course of the past three years, motorcycle involved collisions have resulted in 15 fatal and approximately 277 injury crashes in the City of Long Beach. California collision data reveals that primary causes of motorcycle-involved crashes include speeding, unsafe turning and impairment due to alcohol and other drugs by both riders and drivers alike. Safety tips for riders – See and Be Seen: Ride with lights on during daylight hours Use your lane position to increase visibility; change lanes only when there is ample room Match your speed to surrounding traffic Always wear a DOT compliant helmet and brightly colored, protective clothing Safety tips for drivers – Share the Road: Look twice for motorcyclists, especially when entering roadway, turning or changing lanes Motorcyclist are allowed in HOV lanes unless prohibited by signage Riders are urged to get training through the California Motorcyclist Safety Program. Information and training locations are available online or 1-877 RIDE 411 (1-877-743-3411) Funding for this program is provided by a grant from the California Office of Traffic Safety through the National Highway Traffic Safety Administration. The message to all drivers and motorcyclists is: share in the responsibility and do your part by safely ""sharing the road."" This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2050,https://spdblotter.seattle.gov/2022/06/30/police-arrest-woman-for-shooting-outside-capitol-hill-apartment/,Media Bulletins,Agency-Published Resources,Police Arrest Woman for Shooting Outside Capitol Hill Apartment - SPD Blotter,"",200,403 Forbidden,"[""Police Arrest Woman for Shooting Outside Capitol Hill Apartment""]","[""Find Posts By Topic"", ""Featured Posts"", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],"Seattle.gov Choose a language: English English Google Translate may not accurately translate all content. Read disclaimer . For general City questions, please call 206-684-2489 . Tell us your requested language in English, and we can connect you with an interpreter. Continue Cancel Español Es posible que Google Translate no traduzca con precisión todo el contenido. Lea el descargo de responsabilidad . Si necesita ayuda en otro idioma, díganos en inglés nombre del idioma que necesita y lo conectaremos con un intérprete: 206-684-2489 Seguir Cancelar 中國語文 Google翻譯可能無法準確翻譯所有內容。 閱讀免責聲明 。 如果您需要翻譯,請用英語説出您所需要的語言,我們將爲你連接口譯員: 206-684-2489 繼續 取消 简体中文 Google翻译可能无法准确翻译所有内容。 阅读免责声明 。 如果您需要翻译,请用英语说出您所需要的语言,我们将为你连接口译员: 206-684-2489 继续 取消 Tiếng Việt Google Dịch có thể không dịch chính xác tất cả nội dung. Đọc tuyên bố từ chối trách nhiệm . Nếu quý vị cần hỗ trợ về ngôn ngữ, xin vui lòng cho chúng tôi biết ngôn ngữ quý vị cần hỗ trợ bằng tiếng Anh (ví dụ “Vietnamese”), chúng tôi sẽ kết nối quý vị với một thông dịch viên: 206-684-2489 Tiếp tục Huỷ bỏ русский язык Google Translate не может точно перевести весь контент. Прочтите отказ от ответственности . Если вам нужна языковая помощь, сообщите нам на английском, какой язык вам нужен, и мы свяжем вас с переводчиком: 206-684-2489 Продолжать Отмена Af-Soomaali Google Translate ayaan si sax ah u turjumi karin dhammaan waxyaabaha ku jira. Akhri afeef . Haddii aad u baahan tahay caawimaad luqadeed, fadlan noogu sheeg Ingiriisiga luqadda aad u baahan tahay, ka dib waxaan kugu xiri doonnaa turjubaan: 206-684-2489 Sii wad Jooji አማርኛ የጉግል ትርጉም ሁሉንም ይዘቶች በትክክል መተርጎም ላይችል ይችላል። ማስተባበያ አንብብ ፡፡ ኣስተርጓሚ ካስፈለግዎ የሚፈልጉትን ቋንቋ በእንግልዝኛ ይንገሩን፣ ከኣስተርጓሚ እናገናኝዎታለን። 206-684-2489 ቀጥል ሰርዝ 한국어 구글은 정확하게 모든 내용을 번역하지 않을 수 있습니다 번역. 읽기 면책 조항 . 언어지원이 필요한 경우, 필요한 언어를 영어로 말씀해 주시면 통역사와 연결해 드리겠습니다: 206-684-2489 계속하다 취소 Tagalog Maaaring hindi tumpak na isalin ng Google Translate ang lahat ng nilalaman. Basahin ang disclaimer . Para sa mga pangkalahatang katanungan sa Lungsod, mangyaring tawagan ang 206-684-2489 . Sabihin sa amin ang hiniling mong wika sa Ingles, at maikokonekta ka namin sa isang interpreter. Magpatuloy Kanselahin ภาษาไทย Google Translate อาจแปลเนื้อหาทั้งหมดไม่ถูกต้อง อ่านข้อจำกัดความรับผิดชอบ สำหรับคำถามทั่วไปเกี่ยวกับเมืองโปรดโทร 206-684-2489 บอกภาษาที่คุณต้องการเป็นภาษาอังกฤษและเราสามารถติดต่อคุณกับล่ามได้ ดำเนินการต่อ ยกเลิก 日本語 Google翻訳は、すべてのコンテンツを正確に翻訳するとは限りません. 免責事項をお読みください 。 市の一般的な質問については 206-684-2489 に電話してください。ご希望の言語を英語で教えていただければ、通訳をご案内いたします。 継続する キャンセル ភាសាខ្មែរ កម្មវិធីបកប្រែហ្គូហ្គោលមិនអាចបកប្រែមាតិកាទាំងអស់បានត្រឹមត្រូវទេ។ អានការបដិសេធ។ សម្រាប់សំណួរទូទៅរបស់ទីក្រុងសូមទូរស័ព្ទមក 206-684-2489 ។ ប្រាប់យើងពីភាសាដែលអ្នកស្នើសុំជាភាសាអង់គ្លេសហើយយើងអាចភ្ជាប់អ្នកជាមួយអ្នកបកប្រែភាសា។ បន្ត បោះបង់ ພາສາລາວ Google Translate ອາດຈະບໍ່ແປເນື້ອຫາທັງ ໝົດ ຢ່າງຖືກຕ້ອງ. ອ່ານປະຕິເສດ . ສຳ ລັບ ຄຳ ຖາມທົ່ວໄປຂອງເມືອງ, ກະລຸນາໂທຫາ 206-684-2489 . ບອກພວກເຮົາເປັນພາສາອັງກິດທີ່ທ່ານຮ້ອງຂໍ, ແລະພວກເຮົາສາມາດເຊື່ອມຕໍ່ທ່ານກັບນາຍແປພາສາ. ສືບຕໍ່ ຍົກເລີກ Українська Перекладач Google може не точно перекласти весь вміст. Прочитайте застереження . За загальними запитаннями про місто, будь ласка, телефонуйте 206-684-2489 . Розкажіть нам про вашу мову англійською мовою, і ми можемо зв’язати вас із перекладачем. Продовжуйте Скасувати Français Google Traduction peut ne pas traduire correctement tout le contenu. Lisez la clause de non-responsabilité . Pour des questions générales sur la ville, veuillez appeler le 206-684-2489 . Dites-nous votre langue souhaitée en anglais, et nous pourrons vous mettre en contact avec un interprète. Continuer Annuler " -2051,https://www.mass.gov/info-details/audit-of-the-office-of-the-commissioner-of-probation-objectives-scope-and-methodology,Not Criminal Justice Related,Not Criminal Justice Related,"Audit of the Office of the Commissioner of Probation Objectives, Scope, and Methodology | Mass.gov",An overview of the purpose and process of auditing the Office of the Commissioner of Probation.,200,Mass.gov,"[""Audit of the Office of the Commissioner of Probation Objectives, Scope, and Methodology""]","[""Table of Contents for the audit, Audit of the Office of the Commissioner of Probation (OCP)"", ""Appendix"", ""Table of Contents"", ""Overview"", ""Enrollment of GPS and SCRAM Participants"", ""Monitoring of GPS Alerts"", ""Monitoring of SCRAM Alerts"", ""Review of Juvenile Record Requests"", ""Data Reliability"", ""Help Us Improve Mass.gov with your feedback""]",[],[],[],[],"" -2052,https://www.mass.gov/doc/national-environmental-policy-act-review-scoping-summary-report-i-90-allston-multimodal-project/download,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -2053,https://www.pleasantprairiewi.gov/departments/police/news/police_and_fire___rescue_news_archive/2020_news_releases/police_continue_manhunt,Media Bulletins,Agency-Published Resources,Police Continue Manhunt - Village of Pleasant Prairie,"",200,Just a moment...,[],"[""Police Continue Manhunt""]","[""Follow Us on Social Media""]",[],[],[],"" -2054,http://www.longbeach.gov/police/press-releases/felony-suspect-arrested/,Media Bulletins,Agency-Published Resources,FELONY SUSPECT ARRESTED,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 2/26/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: FELONY SUSPECT ARRESTED Contact: Media Relations Detail (562) 570-7097 On February 24, 2014, felony charges were filed against a 21-year-old Long Beach man after he shot at a taxi cab driver over a disagreement. On February 3, 2014, a taxi cab driver picked up a single passenger in the 1100 block of East 21st Street. While enroute to the customer's destination, the cab driver and the passenger began arguing over the amount of the fare. When the argument became heated, the cab driver pulled over in the 2300 block of Locust Avenue. As the passenger exited the taxi, he withdrew a firearm and discharged one round towards the cab driver before fleeing the area. The taxi cab driver was grazed by the bullet, treated at the scene for his injury, and released. The Robbery detail began their investigation to identify the suspect, and on Thursday, February 20, 2014, they were able to locate and arrest 21-year-old Enrique Cervantes of Long Beach. Shortly after his arrest, detectives from the Robbery Detail and the Career Criminal Apprehension Team served a search warrant at Cervantes' residence where they recovered evidence believed to be related to the shooting. The case was presented to the Los Angeles County District Attorney’s Office and the following charges were filed against Cervantes: one count of assault with a deadly weapon, one count of attempted armed robbery, in addition to weapons related enhancements. If anyone has additional information which could assist detectives in the investigation, they are encouraged to call Long Beach Police Robbery Detective F. Gonzalez at (562) 570-7068. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting www.lacrimestoppers.org This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2055,https://southamptontownnypolice.gov/1543/policies-for-the-zba,Policies & Contracts,Info About Agencies,"Policies for the ZBA | Southampton, NY - Official Website","",200,"Police | Southampton, NY - Official Website","[""Policies for the ZBA""]",[],"[""Site Tools"", ""Contact Us"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Government Town Services Community Info How Do I Translate Page Site Tools Home My Account Printer Friendly Email Page Contact Us RSS Site Map Translate Page Notifications Documents Search Home Government Departments Land Management - Building & Zoning Zoning Applications & Forms Policies for the ZBA Policies for the ZBA 2020 Policies 12.17.20 2019 Policies Modifications Amendments 06.20.19 2017 Policies for the ZBA (Adopted March 16, 2017) (PDF) Policies for the ZBA Town Clerk Meetings, Agendas & Minutes Pay Your Taxes Online Services Applications, Forms & Fees Notify Me® FOIL Requests Contact Us Town of Southampton 116 Hampton Road Southampton, NY 11968 Phone: 631-283-6000 Banner photo credit: robertseifertphotography.com Site Links Contact Us Site Map Accessibility Copyright Notices Intranet Job Opportunities Title VI Non-discrimination Policy /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Government Town Services Community Info How Do I Translate Page Site Tools Home My Account Printer Friendly Email Page Contact Us RSS Site Map Translate Page Notifications Documents Search Home Government Departments Land Management - Building & Zoning Zoning Applications & Forms Policies for the ZBA Policies for the ZBA 2020 Policies 12.17.20 2019 Policies Modifications Amendments 06.20.19 2017 Policies for the ZBA (Adopted March 16, 2017) (PDF) Policies for the ZBA Town Clerk Meetings, Agendas & Minutes Pay Your Taxes Online Services Applications, Forms & Fees Notify Me® FOIL Requests Contact Us Town of Southampton 116 Hampton Road Southampton, NY 11968 Phone: 631-283-6000 Banner photo credit: robertseifertphotography.com Site Links Contact Us Site Map Accessibility Copyright Notices Intranet Job Opportunities Title VI Non-discrimination Policy /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In " -2056,https://whitestown.in.gov/news/christmas-with-a-cop/,Media Bulletins,Agency-Published Resources,Christmas with a Cop - Town of Whitestown,"",200,403 Forbidden,"[""Recent News"", ""Christmas with a Cop""]","[""Recent News Articles"", ""Whitestown Annual Easter Egg Hunt Returns"", ""Tips to Prepare for the Total Solar Eclipse in Whitestown"", ""Visit Us"", ""Contact Us"", ""Stay Connected"", ""How can we help?""]",[],[],[],[],"" -2057,http://www.longbeach.gov/police/press-releases/identity-theft-suspect-charged-with-11-felony-counts/,Media Bulletins,Agency-Published Resources,IDENTITY THEFT SUSPECT CHARGED WITH 11 FELONY COUNTS,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 5/27/2016 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: IDENTITY THEFT SUSPECT CHARGED WITH 11 FELONY COUNTS Contact: Media Relations Detail (562) 570-5273 In December 2015, Detectives from the Long Beach Police Department Financial Crimes Detail began conducting a lengthy identity theft investigation. Through their investigation, Detectives learned that a suspect used the personal identifying information of multiple victims to open credit cards. They identified three fraudulent credit card accounts, with balances owed of over $100,000.00. The suspect used the credit cards to buy expensive sports memorabilia and make lease payments for 3 Lexus vehicles. The suspect also used the fraudulently obtained credit cards to dine at high-end restaurants, and make large purchases at various clothing and electronic retail stores. The suspect was identified as Jason Allen Sorenson, a 38 year old resident of Covina California. On May 5, 2016, detectives served a search warrant at Sorenson’s residence in Covina, California. Detectives recovered multiple key items of evidence related to identity theft, impounded two Lexus vehicles, and recovered multiple items of sports memorabilia. Sorenson was subsequently arrested on multiple charges of identity theft, grand theft, as well as ex-felon in possession of ammunition, ex-felon in possession of a stun gun, and possession of narcotics. Sorenson posted bail the same day and was scheduled to appear in court on May 26, 2016. Detectives presented their case to the Los Angeles County District Attorney’s Office for filing consideration and they filed 11 felony counts against Sorenson. He was charged with 6 counts of Identity Theft, 3 counts of Grand Theft, 1 count of Possession of Narcotics for Sales, and 1 count of Ex-Felon in Possession of Ammunition. His bail was set at $255,000.00 and he was arraigned in Long Beach court on May 26, 2016. After the arraignment he was not remanded into custody and remains out on bond. Anyone with information in this case is urged to call Financial Crimes Detectives at (562) 570-7330. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2058,https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0718/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -2059,http://www.longbeach.gov/police/press-releases/murder-13-/,Media Bulletins,Agency-Published Resources,MURDER(13),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 3/7/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: MURDER Contact: Media Relations Detail (562) 570-5273 On Thursday, March 6, 2014, at approximately 3:30 p.m., Long Beach Police responded to an unknown trouble call at a residence in the 5800 block of Rose Avenue and discovered two deceased individuals. Due to the circumstances, Homicide detectives were called to the scene. The preliminary investigation indicates a murder-suicide occurred. Forty-seven-year-old Javier Perez appeared to have sustained a self-inflicted gunshot wound to the upper torso. Forty-three-year-old Kristie Michelle Perez appeared to have sustained two gunshot wounds to the torso. The two were married and resided in Long Beach. Anyone with information regarding this incident is asked to contact Long Beach Police Homicide Detectives Todd Johnson and Roger Zottneck at (562) 570-7244. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 3/7/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: MURDER Contact: Media Relations Detail (562) 570-5273 On Thursday, March 6, 2014, at approximately 3:30 p.m., Long Beach Police responded to an unknown trouble call at a residence in the 5800 block of Rose Avenue and discovered two deceased individuals. Due to the circumstances, Homicide detectives were called to the scene. The preliminary investigation indicates a murder-suicide occurred. Forty-seven-year-old Javier Perez appeared to have sustained a self-inflicted gunshot wound to the upper torso. Forty-three-year-old Kristie Michelle Perez appeared to have sustained two gunshot wounds to the torso. The two were married and resided in Long Beach. Anyone with information regarding this incident is asked to contact Long Beach Police Homicide Detectives Todd Johnson and Roger Zottneck at (562) 570-7244. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . A- A A+ A- A A+ A- A A+ A- A A+ A- A A+ " -2061,https://www.roseville.ca.us/government/departments/police_department/crime_log/crime_log_feb_18_-_march_3__2019,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -2062,https://www.lehi-ut.gov/departments/police/,Contact Info & Agency Meta,Info About Agencies,Police - Lehi City,"",200,Sucuri WebSite Firewall - Access Denied,"[""Police""]","[""Lehi City Police Records Request Form"", ""incident reporting system"", ""Lehi City Police Department Bicycle Registration"", ""More Information"", ""Related Pages""]","["""", ""To report an incident CLICK HERE"", ""Lehi Police Department"", ""Office Hours""]",[],[],[],"Contact Us Pay Utility Bill Search Community About Lehi Arts and Culture City Calendar Events & Celebrations Lehi Family Week Lehi Round-Up Week Special Event Permit Get Involved Info Guide Newsletter Regional Resources Parks & Recreation Reservations Legacy Recreation Center Sports Programs Recreation Programs Outdoor Pool Parks & Trails Senior Center Services & Information Information Center Utility Services Passports Business Licensing Report an Issue Building & Inspections Lehi City Library Rippy Literacy Center Cemetery Emergency Management Environmental Sustainability Parks, Arts, Recreation, and Culture (PARC) Tax RFP’s & Bid Solicitations Government Administration Citywide Goals and Objectives Elected Officials Election Information Youth Council Justice Court Municipal Code Public Meetings & Notices Records & Elections Transparency Privacy Policy Departments Building & Inspections Contact Us Economic Development Finance Fire Department Calendar Request a Fire Station Tour Human Resources Employment Opportunities Employee Benefits Summary Legal Services Planning & Zoning Police Animal Control Services Calendar Request a Police Station Tour Power Public Relations Public Works Lehi Fiber Police The Police Department will provide a safe and secure community by delivering professional and courteous services as determined in partnership with Lehi residents. The Police Department’s function is to serve and protect all people and property within the City limits. This is done through the coordinated efforts of patrol officers, detectives, code enforcement officers, and animal control officers. Lehi City Police Records Request Form Police GRAMA Request Form incident reporting system The incident reporting system provides residents with a convenient and effective way to report various concerns and incidents within the community. In just a few easy steps, individuals can contribute to maintaining a safe and orderly environment. If this is an Emergency, please call 911. To report an incident CLICK HERE Lehi City Police Department Bicycle Registration Bicycle Registration Form More Information Lehi Police Department 128 North 100 East Lehi, UT 84043 385.201.1005 Office Hours Monday thru Thursday 7 a.m. to 6 p.m. Friday 7 a.m. to 4 p.m. Report an Incident Hire An Off Duty Police Officer Officer Involved Incident Protocol Officer Involved Shootings Policy Policy Manual Tow Rotation Application Bicycle Registration Form Related Pages Animal Control Services Citizen Reporting and Records Request Forms Code Enforcement Departments Grants Hire An Off Duty Police Officer Lehi Cares Coalition Lehi Police Ride-Along Neighborhood Watch Police Annual Report Police Department Events Report an Issue Tip Line Victim Services Volunteers In Police Service (V.I.P.S.) Upcoming Events Employment Opportunities Contact Us LEHI CITY 153 N 100 E Lehi, Utah 84043 Phone: (385) 201.1000 Fax: (385) 201.1001 CONNECT WITH US Legacy Center Development Map © 2024 Lehi City · All Rights Reserved · An ADA 508 Compliant Website " -2063,https://spdblotter.seattle.gov/2020/07/25/police-make-dozens-of-arrests-after-explosion-damages-east-precinct-and-march-turns-to-riot/,Media Bulletins,Agency-Published Resources,Police Make Dozens of Arrests After Explosion Damages East Precinct and March Turns to Riot - SPD Blotter,"",200,403 Forbidden,"[""Police Make Dozens of Arrests After Explosion Damages East Precinct and March Turns to Riot""]","[""Find Posts By Topic"", ""Featured Posts"", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],"Seattle.gov Choose a language: English English Google Translate may not accurately translate all content. Read disclaimer . For general City questions, please call 206-684-2489 . Tell us your requested language in English, and we can connect you with an interpreter. Continue Cancel Español Es posible que Google Translate no traduzca con precisión todo el contenido. Lea el descargo de responsabilidad . Si necesita ayuda en otro idioma, díganos en inglés nombre del idioma que necesita y lo conectaremos con un intérprete: 206-684-2489 Seguir Cancelar 中國語文 Google翻譯可能無法準確翻譯所有內容。 閱讀免責聲明 。 如果您需要翻譯,請用英語説出您所需要的語言,我們將爲你連接口譯員: 206-684-2489 繼續 取消 简体中文 Google翻译可能无法准确翻译所有内容。 阅读免责声明 。 如果您需要翻译,请用英语说出您所需要的语言,我们将为你连接口译员: 206-684-2489 继续 取消 Tiếng Việt Google Dịch có thể không dịch chính xác tất cả nội dung. Đọc tuyên bố từ chối trách nhiệm . Nếu quý vị cần hỗ trợ về ngôn ngữ, xin vui lòng cho chúng tôi biết ngôn ngữ quý vị cần hỗ trợ bằng tiếng Anh (ví dụ “Vietnamese”), chúng tôi sẽ kết nối quý vị với một thông dịch viên: 206-684-2489 Tiếp tục Huỷ bỏ русский язык Google Translate не может точно перевести весь контент. Прочтите отказ от ответственности . Если вам нужна языковая помощь, сообщите нам на английском, какой язык вам нужен, и мы свяжем вас с переводчиком: 206-684-2489 Продолжать Отмена Af-Soomaali Google Translate ayaan si sax ah u turjumi karin dhammaan waxyaabaha ku jira. Akhri afeef . Haddii aad u baahan tahay caawimaad luqadeed, fadlan noogu sheeg Ingiriisiga luqadda aad u baahan tahay, ka dib waxaan kugu xiri doonnaa turjubaan: 206-684-2489 Sii wad Jooji አማርኛ የጉግል ትርጉም ሁሉንም ይዘቶች በትክክል መተርጎም ላይችል ይችላል። ማስተባበያ አንብብ ፡፡ ኣስተርጓሚ ካስፈለግዎ የሚፈልጉትን ቋንቋ በእንግልዝኛ ይንገሩን፣ ከኣስተርጓሚ እናገናኝዎታለን። 206-684-2489 ቀጥል ሰርዝ 한국어 구글은 정확하게 모든 내용을 번역하지 않을 수 있습니다 번역. 읽기 면책 조항 . 언어지원이 필요한 경우, 필요한 언어를 영어로 말씀해 주시면 통역사와 연결해 드리겠습니다: 206-684-2489 계속하다 취소 Tagalog Maaaring hindi tumpak na isalin ng Google Translate ang lahat ng nilalaman. Basahin ang disclaimer . Para sa mga pangkalahatang katanungan sa Lungsod, mangyaring tawagan ang 206-684-2489 . Sabihin sa amin ang hiniling mong wika sa Ingles, at maikokonekta ka namin sa isang interpreter. Magpatuloy Kanselahin ภาษาไทย Google Translate อาจแปลเนื้อหาทั้งหมดไม่ถูกต้อง อ่านข้อจำกัดความรับผิดชอบ สำหรับคำถามทั่วไปเกี่ยวกับเมืองโปรดโทร 206-684-2489 บอกภาษาที่คุณต้องการเป็นภาษาอังกฤษและเราสามารถติดต่อคุณกับล่ามได้ ดำเนินการต่อ ยกเลิก 日本語 Google翻訳は、すべてのコンテンツを正確に翻訳するとは限りません. 免責事項をお読みください 。 市の一般的な質問については 206-684-2489 に電話してください。ご希望の言語を英語で教えていただければ、通訳をご案内いたします。 継続する キャンセル ភាសាខ្មែរ កម្មវិធីបកប្រែហ្គូហ្គោលមិនអាចបកប្រែមាតិកាទាំងអស់បានត្រឹមត្រូវទេ។ អានការបដិសេធ។ សម្រាប់សំណួរទូទៅរបស់ទីក្រុងសូមទូរស័ព្ទមក 206-684-2489 ។ ប្រាប់យើងពីភាសាដែលអ្នកស្នើសុំជាភាសាអង់គ្លេសហើយយើងអាចភ្ជាប់អ្នកជាមួយអ្នកបកប្រែភាសា។ បន្ត បោះបង់ ພາສາລາວ Google Translate ອາດຈະບໍ່ແປເນື້ອຫາທັງ ໝົດ ຢ່າງຖືກຕ້ອງ. ອ່ານປະຕິເສດ . ສຳ ລັບ ຄຳ ຖາມທົ່ວໄປຂອງເມືອງ, ກະລຸນາໂທຫາ 206-684-2489 . ບອກພວກເຮົາເປັນພາສາອັງກິດທີ່ທ່ານຮ້ອງຂໍ, ແລະພວກເຮົາສາມາດເຊື່ອມຕໍ່ທ່ານກັບນາຍແປພາສາ. ສືບຕໍ່ ຍົກເລີກ Українська Перекладач Google може не точно перекласти весь вміст. Прочитайте застереження . За загальними запитаннями про місто, будь ласка, телефонуйте 206-684-2489 . Розкажіть нам про вашу мову англійською мовою, і ми можемо зв’язати вас із перекладачем. Продовжуйте Скасувати Français Google Traduction peut ne pas traduire correctement tout le contenu. Lisez la clause de non-responsabilité . Pour des questions générales sur la ville, veuillez appeler le 206-684-2489 . Dites-nous votre langue souhaitée en anglais, et nous pourrons vous mettre en contact avec un interprète. Continuer Annuler " -2064,https://www.almaarkansas.gov/downloads/alma-police-car/,Poor Data Source,Poor Data Source,"alma-police-car | City of Alma, Arkansas","",200,"The City of Alma, Arkansas | Official Website","[""alma-police-car""]",[],[],[],"[""Helpful Numbers"", ""Community Links""]","[""Sitemap / Privacy / Arkansas Web Design""]","Explore Alma Resident Resources Government Contact Explore Alma Resident Resources Government Contact Explore Alma Community Calendar Map & Directions Alma Aquatic Center Performing Arts Center Parks & Recreation Trails System Public Library School District City Directory Economic Development The Alma Advantage Ongoing Projects Government Mayor’s Office City Council City Directory City Attorney Planning Commission A&P Commission City Clerk District Court Financial Report Fire Department Police Department Parks & Recreation Public Works Planning, Building & Zoning Voting Information Minutes, Ordinances & Recordings Resident Resources Public Records Archive News & Announcements City Directory Water & Trash Service Facility Reservations Fire Department Report a Concern Minutes, Ordinances & Recordings Paying Fines Permits & Licenses Police Department Public Works School District Voting Information Trash & Recycling Street Maintenance Stormwater Water & Wastewater Alma Cemetery Planning, Building & Zoning Contact Map & Directions City Directory Send a Message Report a Concern Close Explore Alma Community Calendar Map & Directions Alma Aquatic Center Performing Arts Center Parks & Recreation Trails System Public Library School District City Directory Economic Development The Alma Advantage Ongoing Projects Government Mayor’s Office City Council City Directory City Attorney Planning Commission A&P Commission City Clerk District Court Financial Report Fire Department Police Department Parks & Recreation Public Works Planning, Building & Zoning Voting Information Minutes, Ordinances & Recordings Resident Resources Public Records Archive News & Announcements City Directory Water & Trash Service Facility Reservations Fire Department Report a Concern Minutes, Ordinances & Recordings Paying Fines Permits & Licenses Police Department Public Works School District Voting Information Trash & Recycling Street Maintenance Stormwater Water & Wastewater Alma Cemetery Planning, Building & Zoning Contact Map & Directions City Directory Send a Message Report a Concern Close Explore Alma Community Calendar Map & Directions Alma Aquatic Center Performing Arts Center Parks & Recreation Trails System Public Library School District City Directory Economic Development The Alma Advantage Ongoing Projects Government Mayor’s Office City Council City Directory City Attorney Planning Commission A&P Commission City Clerk District Court Financial Report Fire Department Police Department Parks & Recreation Public Works Planning, Building & Zoning Voting Information Minutes, Ordinances & Recordings Resident Resources Public Records Archive News & Announcements City Directory Water & Trash Service Facility Reservations Fire Department Report a Concern Minutes, Ordinances & Recordings Paying Fines Permits & Licenses Police Department Public Works School District Voting Information Trash & Recycling Street Maintenance Stormwater Water & Wastewater Alma Cemetery Planning, Building & Zoning Contact Map & Directions City Directory Send a Message Report a Concern alma-police-car Home Public Records Archive alma-police-car alma-police-car Home Public Records Archive alma-police-car alma-police-car Home Public Records Archive alma-police-car alma-police-car Home Public Records Archive alma-police-car Home Public Records Archive alma-police-car Helpful Numbers Emergency / Fire: 911 Police Dept: 479.632.3333 Utility Dept: 479.632.2254 Court Clerk: 479.632.4170 Community Links Alma Chamber of Commerce Alma School District Alma Performing Arts Center Fort Smith Regional Airport " -2065,http://www.ryepolice.us/logs/police-logs-for-4-3-19-4-9-19,Daily Activity Logs,Info About Officers,Rye Police Department Police Logs for 4/3/19-4/9/19 - Rye Police Department,"",200,Rye Police Department Welcome to the Rye Police Department - Rye Police Department,"[""Police Logs for 4/3/19-4/9/19""]","[""Police Logs for 4/3/19-4/9/19""]","[""Navigation"", ""Follow Us"", ""Facebook"", ""Email Updates"", ""Storm Preparedness Guide""]",[],[],[], -2066,https://www.coppelltx.gov/555/nancy-monroe,Not Criminal Justice Related,Not Criminal Justice Related,"","",404,"","","","","","","","" -2067,http://www.ryepolice.us/wp-content/uploads/wallis-sands-half-marathon-route.jpg,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -2068,http://www.longbeach.gov/police/press-releases/murder-orange-and-washington/,Media Bulletins,Agency-Published Resources,MURDER-Orange and Washington,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 12/14/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: MURDER (AREA OF ORANGE AVE & WASHINGTON ST) Contact: Media Relations Detail (562) 570-5273 On Thursday, December 10, 2015, at approximately 2:20 p.m., Long Beach Police were dispatched to an assault with a deadly weapon call, in the area of Orange Avenue and Washington Street. Officers located a male adult who had been struck in the upper body by gunfire. Long Beach Fire Department paramedics responded and transported him, in serious condition, to a local hospital. The preliminary investigation indicated a male subject approached the victim, fired at him, and fled before officers arrived. On December 11, 2015, the victim succumbed to his injuries and was pronounced deceased at the hospital. The victim has been identified as 34-year-old Roosevelt Keondrae Newton of Long Beach. A motive for the shooting is unknown and the suspect is outstanding. The incident is being investigated as possibly gang-related. The investigation remains ongoing. Anyone with information is urged to contact Long Beach Police Homicide Detectives Scott Lasch, Michael Hubbard, and Robert Gonzales at (562) 570-7244. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2069,https://www.arlingtontx.gov/news/my_arlington_t_x/news_archive/2014_archived_news/october_2014/uta_spotlight_arlington_police_students_celebrate,Media Bulletins,Agency-Published Resources,"UTA Spotlight: Arlington Police, Students Celebrate National Night Out - City of Arlington","",200,Just a moment...,"[""YOUR COMMUNITY NEWS AND EVENTS"", ""City of Arlington""]","[""UTA Spotlight: Arlington Police, Students Celebrate National Night Out""]",[],[],[],[],Skip to Content Skip to Content -2070,https://police.greenvillesc.gov/faq.aspx?qid=222,Complaints & Misconduct,Info About Officers,FAQs • How can I file a complaint about an officer?,"",200,"Police Department | Greenville, SC - Official Website",[],"[""▼ Police Department""]","[""Categories"", ""Live Edit"", ""Loading""]",[],[],[],Skip to Main Content -2071,https://beaumonttexas.gov/police-investigating-aggravated-assault-4600-block-detroit/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -2072,https://rexburg.us/police-identify-man-killed-in-motorcycle-crash-in-logan-canyon/,Poor Data Source,Poor Data Source,"","",522,"","","","","","","","" -2073,https://champaignil.gov/tag/copper-road/,List of Data Sources,Info About Agencies,Copper Road Archives - City of Champaign,"",200,403 Forbidden,"[""Items tagged: Copper Road""]","[""Copper Ridge Road Lane Closure (between Mullikin Drive and Copper Road)"", ""2023 Concrete Street Improvements Project"", ""2023 Concrete Street Improvements Project"", ""Copper Ridge Road Closure (between Copper Road and Mullikin Drive)"", ""News Releases"", ""Department News""]",[],[],[],[],"" -2074,https://www.police.wallingfordct.gov/about-us/history/,Not Criminal Justice Related,Not Criminal Justice Related,"Our History | Wallingford, CT Police Department","The Wallingford Police Department (WPD) formed in 1913, when it consisted of a single officer serving approximately 11,000 people.",200,"Wallingford, CT Police Department","[""Our History""]","[""Wallingford Police Department Through the Years""]",[],[],[],[],"‹ Close Menu About Us Our Team Who We Serve Our History Police Station Project Divisions Records Division Traffic Division Investigative Services Division Professional Standards & Training Division Patrol Division Community Impact Unit Public Safety Communications Center Emergency Response Team Field Training & Evaluation Program How Do I? Pistol Permits Fingerprinting Accident Reports Case Reports Traffic Violations Pay a Parking Ticket Hire a Cop Alarm Registration Careers Current Employment Opportunities Forms & Resources Bingo, Bazaar & Raffle Documents Precious Metal Application Secondhand Application Pawnbroker Application Vending Application News & Events Road Closures & Detours Agency Events & Programs Press Releases Photo Gallery Video Gallery Wallingford PBA Contact Our History Our History The men and women of the Wallingford Police Department (WPD) have been proudly serving and protecting the citizens of our community since 1913, when the Department consisted of 1 officer serving a population of approximately 11,000 people. Wallingford Police Department Through the Years Our Team Who We Serve Our History Police Station Project The men and women of the Wallingford Police Department (WPD) have been proudly serving and protecting the citizens of our community since 1913, when the Department consisted of 1 officer serving a population of approximately 11,000 people. Wallingford Police Department Through the Years Location: 135 North Main Street Wallingford, CT 06492 Tel: (203) 294-2800 Fax: (203) 294-2882 Administrative Office: Monday through Friday 8 am – 4 pm Site Map Privacy Policy Accessibility Statement Anonymous Tip Form Town of Wallingford Location: 135 North Main Street Wallingford, CT 06492 Tel: (203) 294-2800 Fax: (203) 294-2882 Administrative Office: Monday through Friday 8 am – 4 pm Site Map Privacy Policy Accessibility Statement Anonymous Tip Form Town of Wallingford Web Solutions © 2022 – 2024 Wallingford Police Department. All rights reserved. Web Solutions © 2022 – 2024 Wallingford Police Department. All rights reserved. " -2075,http://www.longbeach.gov/police/press-releases/traffic-fatality---willow-st.-and-golden-ave/,Media Bulletins,Agency-Published Resources,TRAFFIC FATALITY - WILLOW ST. AND GOLDEN AVE.,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 1/4/2019 FOR IMMEDIATE RELEASE Press Release # Subject: TRAFFIC FATALITY - WILLOW ST. AND GOLDEN AVE. Contact: Media Relations Detail (562) 570-5273 LBPDMediaRelations@longbeach.gov On January 3, 2019, at approximately 6:00 p.m., officers were patrolling the area of Willow Street and Golden Avenue when they discovered an injury traffic collision between a vehicle and a bicycle had just occurred. Officers located a 64-year-old female resident of Long Beach lying on the northwest corner of the intersection. The female was identified as the bicyclist involved in the collision. The Long Beach Fire Department transported the injured bicyclist to the hospital where she was later pronounced deceased. The bicyclist's identification is being withheld pending notification of next of kin by the Los Angeles County Coroner’s Office. Officers also contacted a 50-year-old male resident of Long Beach who was identified as the driver of a 1993 Ford Explorer involved in the collision. The preliminary investigation revealed the collision occurred when the driver of the Ford Explorer was traveling west on Willow Street approaching Golden Avenue. As the driver approached the intersection, the signal for westbound traffic phased to green. The collision occurred when the driver entered the intersection without realizing the bicyclist was already crossing the intersection northbound on Golden Avenue. The driver stayed at the scene and cooperated with the investigation. Detectives do not believe the driver of the vehicle was under the influence of alcohol or drugs at the time of the collision. Anyone with information regarding this incident is asked to call Detective David Lauro of the Long Beach Police Department’s Collision Investigation Detail at (562) 570-7355. Anonymous tips may be submitted through ""LA Crime Stoppers"" by calling 1-800-222-TIPS (8477), downloading the ""P3 Tips"" app to your smart phone (available at the Apple App store and Google Play), or visiting www.lacrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2076,https://www.townofnewhartfordny.gov/police-commission-minutes,Poor Data Source,Poor Data Source,Official Website for the Town of New Hartford New York - Police Commission Minutes,Warren New Hampshire,200,Official Website for the Town of New Hartford New York - Home New,[],"[""Town of New Hartford at \""The Orchards\""""]","[""Contact Us"", ""Social Media"", ""Quick Links"", ""Site Links""]",[],[],[],"Departments Government Services Community Government / Police Commission / Police Commission Minutes Police Commission Minutes Town of New Hartford at ""The Orchards"" Contact Us 8635 Clinton Street New Hartford, NY 13413 315-733-7500 Monday through Friday 8:00 a.m. to 4:00 p.m. Social Media Quick Links Site Links Website By EvoGov Departments Government Services Community Departments Government Services Community Departments Government Services Community Departments Government Services Community Departments Government Services Community Government / Police Commission / Police Commission Minutes Police Commission Minutes Government / Police Commission / Police Commission Minutes Police Commission Minutes Government / Police Commission / Police Commission Minutes Police Commission Minutes Government / Police Commission / Police Commission Minutes Government / Police Commission / Police Commission Minutes Police Commission Minutes Town of New Hartford at ""The Orchards"" Contact Us 8635 Clinton Street New Hartford, NY 13413 315-733-7500 Monday through Friday 8:00 a.m. to 4:00 p.m. Social Media Quick Links Site Links Website By EvoGov Town of New Hartford at ""The Orchards"" Contact Us 8635 Clinton Street New Hartford, NY 13413 315-733-7500 Monday through Friday 8:00 a.m. to 4:00 p.m. Social Media Quick Links Site Links Town of New Hartford at ""The Orchards"" Contact Us 8635 Clinton Street New Hartford, NY 13413 315-733-7500 Monday through Friday 8:00 a.m. to 4:00 p.m. Social Media Quick Links Site Links Town of New Hartford at ""The Orchards"" Contact Us 8635 Clinton Street New Hartford, NY 13413 315-733-7500 Monday through Friday 8:00 a.m. to 4:00 p.m. Social Media Quick Links Site Links Website By EvoGov " -2077,https://barnegatpolice.us/six-arrested-drug-charges/,Media Bulletins,Agency-Published Resources,Six Arrested on Drug Charges - Barnegat Township Police Department,"",200,Barnegat Township Police Department - Barnegat Township Police Department,"[""Six Arrested on Drug Charges""]","[""Six Arrested on Drug Charges""]","[""About the Author: BTPD"", ""Related Posts""]","[""Share This Story, Choose Your Platform!"", ""Robbery Arrest"", ""DWI Arrest"", ""DWI Arrest"", ""Robbery Investigation Leads to Multiple Arrests, Recovery of Handgun"", ""DWI Arrests"", ""Resources"", ""Directions"", ""Quick Links""]",[],[],"" -2078,https://chandlerazpd.gov/2014/09/chandler-police-looking-for-g-a-i-n-participants-4/,Media Bulletins,Agency-Published Resources,Chandler Police Looking for G.A.I.N. Participants – Chandler Police Department,"",200,Chandler Police Department,"[""Chandler Police Looking for G.A.I.N. Participants""]",[],"[""Quick Links"", ""News Archives"", """", """", """", """"]","[""September 2, 2014"", ""Contact"", ""About the Department"", ""Latest News"", ""Courage, Pride, Dedication © 2024 Chandler Police Department""]",[],[],"The Chandler Police Department main lobby will be closed for renovations. Please see below for further. The Chandler Police Department main lobby will be closed for renovations. Please see below for further. Toggle navigation City of Chandler Mayor’s Office City Council Fire Department Residents Business Employee Info Toggle navigation City of Chandler Mayor’s Office City Council Fire Department Residents Business Employee Info Toggle navigation Menu Chandler Police About the Department Careers Community Contact Data News Toggle navigation Menu Chandler Police About the Department Careers Community Contact Data News Home News Chandler Police Looking for G.A.I.N. Participants Home News Chandler Police Looking for G.A.I.N. Participants Search for: Chandler Police Looking for G.A.I.N. Participants September 2, 2014 By Sergeant J. Favazzo The Chandler Police Department is seeking out neighborhood groups interested in this year’s annual G.A.I.N. event. G.A.I.N. (Getting Arizona Involved in Neighborhoods) is a day to celebrate the success of crime prevention through community involvement. This event also provides members of the Department an opportunity to express their appreciation to the community for its support. This year’s G.A.I.N. event is scheduled for Saturday, October 25, 2014 from 2:00 p.m. to 8:00 p.m. The Chandler Police Department is encouraging all neighborhood groups to participate. Groups may participate through a block party or other type of neighborhood gathering. Groups can then register their block party for a visit by members of the Department’s many units. Visiting member units include Patrol, Motors, K-9’s, S.A.U., and Community Services, just to name a few. The kick-off for the G.A.I.N. event is September 27, 2014 from 10:00 a.m. to 12:00 p.m. at our Main Police Station, 250 E. Chicago St. Registration is mandatory and will be followed by a lottery to ensure all groups are afforded an opportunity to request the police specialty units they want to visit their block party. For more information about the program contact the Chandler Police Department Community Resources Unit at (480) 782-4967. Search for: Quick Links About the Department Office of the Chief Interim Chief Of Police Melissa Deanda Assistant Chief Of Police Dave Ramer Department Events My Precinct Fingerprinting Services Request a Police Report Bicycle Registration General Orders/Accreditation Alarm Information Registered Sex Offenders Citizen Observer (Ride-Along) Vehicle Impounds Barking Dog Police Open Data Public Demonstration Guidelines News Archives August 2022 September 2021 July 2021 September 2020 August 2020 June 2020 May 2020 April 2020 March 2020 February 2020 January 2020 December 2019 " -2079,https://wrightstown.us/police-community-information/driving-in-school-zones/,Resources,Agency-Published Resources,Driving in School Zones - Village of Wrightstown,"",200,"Village of Wrightstown, Wisconsin ~ Official Website","[""Driving in School Zones""]","[""ALWAYS DRIVE SAFELY IN SCHOOL ZONES"", ""Recent News"", ""Upcoming Events""]","[""Good Friday"", ""Easter"", ""April Fool’s Day"", ""Easter Monday"", ""Earth Day""]","[""Village Hall"", ""Public Works"", ""Police Department"", ""Fire Department"", ""Join Us on Social Media""]",[],[],"" -2080,https://delcopa.gov/planning/pubs/index.html,Poor Data Source,Poor Data Source,"404 - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert " -2081,http://www.cityofpataskalaohio.gov/cop_folder/2015-legislation-under-public-notices/advertisement-of-legislation-passed-december-1-2014-2/,Not Criminal Justice Related,Not Criminal Justice Related,"Advertisement of Legislation passed December 1, 2014 - City Of Pataskala",Official Website,200,Home - City Of Pataskala,"[""City Of Pataskala"", ""Advertisement of Legislation passed December 1, 2014""]","[""Official Website"", ""Categories""]",[],[],[],[],Document Library Calendar Public Services Pay Court Ticket Online City Of Pataskala Official Website Blog Community Police Obtain Fingerprints Solicitor’s Permit Citizens Police Academy Important Links/Resources Prescription Drug Drop Off Police Officer Job Application History of the Pataskala Police Department Curfew Vacation House Check Form Fire School Districts Residents Taxes in Pataskala RITA Tax Local Animal Shelter/Lost Pets Dog License BMV Info Licking County Health Department Register to Vote Report a Gas Emergency New to Pataskala? Good Neighbor Guidelines Outdoor Activities Attractions City Departments Mayor Administration Garage Sale Permit Adopt-A-Street Program Rent a Park Shelter Current Bids and RFQ’s Outdoor Activity/Event Permit Parade-Assembly Form Parks and Recreation Economic Development Human Resources Utilities Utility Rates Water and Sewer Billing/ E-Billing Interesting Facts and Information Storm Water Management Program Report a Water Leak Finance Pataskala’s Income Tax Budget Financial Reports Popular Annual Financial Report (PAFR) Annual Comprehensive Financial Reports Financial Condition Reports 2023 Financial Condition Reports 2022 Financial Condition Reports 2021 Financial Condition Reports 2020 Financial Condition Reports 2019 Financial Condition Reports 2018 Financial Condition Reports 2017 Financial Condition Reports 2016 Financial Condition Reports 2015 Financial Condition Reports 2014 Financial Condition Reports 2013 Financial Condition Reports 2012 Financial Condition Reports Audited Financial Reports Pataskala Open Checkbook Mayor’s Court Important Traffic Violation Info Pay Fines or Search Case Files How to Pay Fines Traffic and General Offense Codes Plea Descriptions Court Appearance Times Your Rights in the Pataskala’s Mayor’s Court Downloadable Forms Sealing a Record Informational Court Links Mayor’s Court Prosecutor Pataskala’s Mayors Court Magistrate Mayor’s Court Rules Criminal/Traffic Diversion Bond Schedule Fine Schedule Legal Public Service/Streets Pothole Repair Report a Pothole Right of Way Snow Removal Traffic Signals & Street Lights Drainage/Ditches Issues Planning & Zoning Permit Questions Planning & Zoning Fee Schedule Discharge Map Zoning Maps Permits Comprehensive Plan Properties With Posted Code Violations Government City Council Ward Map Tom H. Lee – Ward 1 Mary Hite – Ward 2 Deborah Kohman – Ward 3 Brandon Galik – Ward 4 Dustin Epperson – At-Large Jude Hampshire – At-Large Andy Walther – At Large Clerk of Council Council Packet Public Notices Agendas Meeting Minutes Audio/Video Recordings Legislation Approved Ordinances & Resolutions 2024 Resolutions 2024 Ordinances 2023 Resolutions 2023 Ordinances 2022 Resolutions 2022 Ordinances 2021 Resolutions 2021 Ordinances 2020 Resolutions 2020 Ordinances 2019 Resolutions 2019 Ordinances 2018 Resolutions 2018 Ordinances 2017 Resolutions 2017 Ordinances 2016 Resolutions 2016 Ordinances 2015 Resolutions 2015 Ordinances Codified Ordinances Charter Public Records Request Information Boards and Commissions Personnel Board of Review Planning and Zoning Commission Board of Zoning Appeals Parks and Recreation Advisory Board Planning & Zoning Commission Board of Zoning Appeals Document Library Calendar Public Services Pay Court Ticket Online -2082,http://www.longbeach.gov/police/press-releases/weapon-crusher/,Media Bulletins,Agency-Published Resources,Weapon Crusher,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 9/30/2015 FOR IMMEDIATE RELEASE Press Release # Subject: LBPD PARTNERS WITH LB RESIDENT & LB POLICE FOUNDATION TO ACQUIRE WEAPON DESTRUCTION MACHINE Contact: Media Relations Detail (562) 570-5273 The Long Beach Police Department is pleased to announce the procurement of a new piece of equipment for our Evidence Control Section called “The Crusher.” The Crusher will allow for increased efficiency and productivity in the area of gun and weapons destruction, and it was all made possible by Al Brunella, a Long Beach resident and owner of “Hi Flo Corporation,” a manufacturing business, in partnership with the Long Beach Police Foundation (LBPF). Per the California Penal Code, firearms that are no longer needed as evidence, or have been surrendered for safekeeping, shall be destroyed so they can no longer be used as a weapon. Prior to obtaining The Crusher, all firearms and weapons ready for destruction had to be transported by armed escort to the Los Angeles County Sheriff’s Department. This process required extensive planning, coordination, and several personnel hours to ensure a safe delivery. Sergeant Dan Barkwill, who supervises the Evidence Control Section, met Al Burnella through a mutual friend. The two discussed the need for L.B.P.D. to have its own weapon destruction machine and they partnered to plan, design and build The Crusher. Al donated all the materials, labor and time to build the machine, which has an estimated value of approximately $20,000. This new equipment will give the department the ability to process more weapon disposals annually, and will also allow us to redirect resources used for the armed escort, conduct on-site audits, and potentially increase salvage revenue back to the department for the scrap metal incurred. The Long Beach Police Department is incredibly grateful for the time and generosity Al donated, and to the Long Beach Police Foundation who made this donation possible. The LBPF is a 501(c)(3) registered nonprofit and is the only charitable organization that provides private, direct funding for the Long Beach Police Department. The LBPF actively seeks donations from private businesses and individuals, and facilitates direct, designated donations that support our community safety mission. For more information visit www.lbpolicefoundation.org. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2083,https://alpha.austin.gov/en/police-oversight/policy-review-and-recommendations-8-cant-wait/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -2084,https://dps.iowa.gov/marshalltown-police-department-makes-arrest-part-death-investigation,Media Bulletins,Agency-Published Resources,Marshalltown Police Department Makes Arrest as Part of Death Investigation | Iowa Department of Public Safety,"January 24, 2022 Marshalltown, Iowa - This is not a press release from the Iowa Department of Public Safety. It is being shared as a result of the Division of Criminal Investigation's assistance with this investigation.",200,Iowa Department of Public Safety | Iowa Department of Public Safety,"[""Iowa Department of Public Safety"", ""Marshalltown Police Department Makes Arrest as Part of Death Investigation""]",[],[],[],[],[],"Skip to main content Iowa Department of Public Safety Marshalltown Police Department Makes Arrest as Part of Death Investigation Chief Michael Tupper Chief of Police 641.754.5771 mtupper@marshalltown-ia.gov January 24, 2022 Marshalltown, Iowa - This is not a press release from the Iowa Department of Public Safety. It is being shared as a result of the Division of Criminal Investigation's assistance with this investigation. ABOUT THE IOWA DEPARTMENT OF PUBLIC SAFETY The Iowa Department of Public Safety (DPS) is the largest law enforcement agency in the state. It includes six divisions and several bureaus, all working together with local, state and federal government agencies and the private sector, to keep Iowa a safe place by following our core values: leadership, integrity, professionalism, courtesy, service and protection. Divisions within the Iowa DPS: Iowa Division of Criminal Investigation, Iowa Division of Narcotics Enforcement, Iowa State Patrol, Iowa State Fire Marshal Division, Iowa Division of Intelligence and Fusion Center, and Administrative Services Division. The Department of Public Safety is led by the Commissioner who is appointed by the Governor. Iowa Department of Public Safety 215 E 7th St Des Moines IA 50319 https://dps.iowa.gov Iowa Department of Public Safety Marshalltown Police Department Makes Arrest as Part of Death Investigation Chief Michael Tupper Chief of Police 641.754.5771 mtupper@marshalltown-ia.gov January 24, 2022 Marshalltown, Iowa - This is not a press release from the Iowa Department of Public Safety. It is being shared as a result of the Division of Criminal Investigation's assistance with this investigation. ABOUT THE IOWA DEPARTMENT OF PUBLIC SAFETY The Iowa Department of Public Safety (DPS) is the largest law enforcement agency in the state. It includes six divisions and several bureaus, all working together with local, state and federal government agencies and the private sector, to keep Iowa a safe place by following our core values: leadership, integrity, professionalism, courtesy, service and protection. Divisions within the Iowa DPS: Iowa Division of Criminal Investigation, Iowa Division of Narcotics Enforcement, Iowa State Patrol, Iowa State Fire Marshal Division, Iowa Division of Intelligence and Fusion Center, and Administrative Services Division. The Department of Public Safety is led by the Commissioner who is appointed by the Governor. Iowa Department of Public Safety 215 E 7th St Des Moines IA 50319 https://dps.iowa.gov " -2085,https://www.mass.gov/news/reminders-being-issued-by-massdot-eopss-massachusetts-state-police-and-transportation-partners,Media Bulletins,Agency-Published Resources,"Reminders being issued by MassDOT, EOPSS, Massachusetts State Police and Transportation Partners | Mass.gov","Drive Slower, Drive Hands-Free, ""Look Twice to save a Life"", Wear A Seatbelt",200,Mass.gov,"[""News Reminders being issued by MassDOT, EOPSS, Massachusetts State Police and Transportation Partners""]","[""Media Contact for Reminders being issued by MassDOT, EOPSS, Massachusetts State Police and Transportation Partners"", ""Media Contact for Reminders being issued by MassDOT, EOPSS, Massachusetts State Police and Transportation Partners"", ""Massachusetts Department of Transportation"", ""Media Contact for Reminders being issued by MassDOT, EOPSS, Massachusetts State Police and Transportation Partners"", ""Help Us Improve Mass.gov with your feedback""]","[""MassDOT Communications Office"", ""MassDOT Communications Office"", ""MassDOT Communications Office""]","[""Phone"", ""Phone"", ""Phone""]",[],[],"" -2086,https://southamptontownnypolice.gov/1034/2017-adopted-budget---capital,Annual & Monthly Reports,Info About Agencies,"2017 Adopted Budget - Capital | Southampton, NY - Official Website","",200,"Police | Southampton, NY - Official Website","[""2017 Adopted Budget - Capital""]",[],"[""Site Tools"", ""2017 Adopted Budget - Capital"", ""Contact Us"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Government Town Services Community Info How Do I Translate Page Site Tools Home My Account Printer Friendly Email Page Contact Us RSS Site Map Translate Page Notifications Documents Search Home Government Departments Finance (Comptroller) 2017 Budgets 2017 Adopted Budget - Capital 2017 Adopted Budget - Capital 2017 Adopted Budget - Capital 2017 Capital Budget Adopted (PDF) 2017 Capital Project Summary (PDF) 2017 Adopted Budget - Operating 2017 Adopted Budget - Capital Town Clerk Meetings, Agendas & Minutes Pay Your Taxes Online Services Applications, Forms & Fees Notify Me® FOIL Requests Contact Us Town of Southampton 116 Hampton Road Southampton, NY 11968 Phone: 631-283-6000 Banner photo credit: robertseifertphotography.com Site Links Contact Us Site Map Accessibility Copyright Notices Intranet Job Opportunities Title VI Non-discrimination Policy /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Government Town Services Community Info How Do I Translate Page Site Tools Home My Account Printer Friendly Email Page Contact Us RSS Site Map Translate Page Notifications Documents Search Home Government Departments Finance (Comptroller) 2017 Budgets 2017 Adopted Budget - Capital 2017 Adopted Budget - Capital 2017 Adopted Budget - Capital 2017 Capital Budget Adopted (PDF) 2017 Capital Project Summary (PDF) 2017 Adopted Budget - Operating 2017 Adopted Budget - Capital Town Clerk Meetings, Agendas & Minutes Pay Your Taxes Online Services Applications, Forms & Fees Notify Me® FOIL Requests Contact Us Town of Southampton 116 Hampton Road Southampton, NY 11968 Phone: 631-283-6000 Banner photo credit: robertseifertphotography.com Site Links Contact Us Site Map Accessibility Copyright Notices Intranet Job Opportunities Title VI Non-discrimination Policy /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In " -2087,https://www.foxcrossingwi.gov/departments/police-department/history/,Misc Police Activity,Police & Public Interactions,History - Fox Crossing Fox Crossing,"",200,Fox Crossing - Bridging the Fox Cities Fox Crossing,"[""""]",[],"[""History""]",[],[],"["""", ""Evolution of our patch"", """", """", ""Evolution of our badge""]","" -2088,https://rocklandmaine.gov/events/police-review-committee/,Poor Data Source,Poor Data Source,"Police Review Committee | The City of Rockland, Maine","",200,403 Forbidden,"[""Police Review Committee"", ""Police Review Committee""]",[],"[""All Current Alerts & Announcements"", ""Current Weather"", ""Date"", ""Time"", ""Location"", ""Leave a Comment Cancel reply"", ""City of Rockland""]",[],[],[],"All Current Alerts & Announcements Please note that the first phase of the City of Rockland’s revaluation has begun, with workers from Vision Government Solutions visiting properties for data collection. The data collector will have identification, be wearing a reflective vest, have a letter of verification from the City Assessor, and will have their car registered with the Police Department. You may also see the City Assessor, Molli Bennett, visiting properties as well! Current Weather Now loading... All Current Alerts & Announcements Please note that the first phase of the City of Rockland’s revaluation has begun, with workers from Vision Government Solutions visiting properties for data collection. The data collector will have identification, be wearing a reflective vest, have a letter of verification from the City Assessor, and will have their car registered with the Police Department. You may also see the City Assessor, Molli Bennett, visiting properties as well! Current Weather Now loading... All Current Alerts & Announcements Please note that the first phase of the City of Rockland’s revaluation has begun, with workers from Vision Government Solutions visiting properties for data collection. The data collector will have identification, be wearing a reflective vest, have a letter of verification from the City Assessor, and will have their car registered with the Police Department. You may also see the City Assessor, Molli Bennett, visiting properties as well! Current Weather Now loading... All Current Alerts & Announcements Please note that the first phase of the City of Rockland’s revaluation has begun, with workers from Vision Government Solutions visiting properties for data collection. The data collector will have identification, be wearing a reflective vest, have a letter of verification from the City Assessor, and will have their car registered with the Police Department. You may also see the City Assessor, Molli Bennett, visiting properties as well! All Current Alerts & Announcements Please note that the first phase of the City of Rockland’s revaluation has begun, with workers from Vision Government Solutions visiting properties for data collection. The data collector will have identification, be wearing a reflective vest, have a letter of verification from the City Assessor, and will have their car registered with the Police Department. You may also see the City Assessor, Molli Bennett, visiting properties as well! Please note that the first phase of the City of Rockland’s revaluation has begun, with workers from Vision Government Solutions visiting properties for data collection. The data collector will have identification, be wearing a reflective vest, have a letter of verification from the City Assessor, and will have their car registered with the Police Department. You may also see the City Assessor, Molli Bennett, visiting properties as well! " -2089,http://www.longbeach.gov/police/press-releases/murder-1300-block-11th/,Media Bulletins,Agency-Published Resources,murder 1300 block 11th,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 4/1/2016 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: MURDER Contact: Media Relations Detail (562) 570-5273 On Thursday, March 31, 2016, at approximately 11:48 p.m., Long Beach Police responded to the 1300 block of East 11th Street to investigate a possible shooting. Arriving officers located a male who had been struck by gunfire in the upper torso. Long Beach Fire Department paramedics responded and transported the victim, in critical condition, to a local hospital where he subsequently succumbed to his injuries. The victim has been identified as 17-year-old Chad Sokhan Hang, a resident of Long Beach. No one is in custody and no suspect information is available. A motive for the shooting is unknown and the investigation remains ongoing. Anyone with information regarding this incident is urged to contact Long Beach Police Homicide Detectives Donald Goodman and Mark Mattia at (562) 570-7244. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2090,https://coloradosprings.gov/police-department/page/metro-crime-lab,Misc Police Activity,Police & Public Interactions,Metro Crime Lab | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""Metro Crime Lab""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]","[""Chemistry"", ""Chemistry"", ""Crime Scene Investigations"", ""Crime Scene Investigations"", ""DNA"", ""DNA"", ""Firearms"", ""Firearms"", ""Latent Fingerprint Examinations"", ""Latent Fingerprint Examinations""]",[],"[""REPORT ONLINE""]",[],"" -2091,http://www.longbeach.gov/police/press-releases/dui-saturation-patrols-planned-this-weekend/,Media Bulletins,Agency-Published Resources,DUI SATURATION PATROLS PLANNED THIS WEEKEND,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2092,https://delcopa.gov/publicrelations/releases/2020/covidtesting_lansdowneaug.html,Not Criminal Justice Related,Not Criminal Justice Related,"Delaware County Announces COVID-19 Public Testing Site in Lansdowne - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Delaware County Announces COVID-19 Public Testing Site in Lansdowne""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]","[""Drive-thru and walk-up testing available for Delaware County residents on August 11, 12 and 13""]",[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Delaware County Announces COVID-19 Public Testing Site in Lansdowne Home / Departments / Public Relations Releases / Delaware County Announces COVID-19 Public Testing Site in Lansdowne Released: August 5, 2020 Drive-thru and walk-up testing available for Delaware County residents on August 11, 12 and 13 Delaware County will be offering drive-thru and walk-up COVID-19 testing for residents on August 11, 12 and 13 in Lansdowne. Residents 12 years of age and older are eligible to be tested. Critical and essential workforce—including first responders, healthcare system employees, grocery workers—and those at higher risk, including residents over the age of 65 and those with pre-existing health conditions, will be given priority. Testing will be conducted by trained medical staff utilizing a nasal swab (PCR) test kit. Testing is free of charge for residents without health insurance. There are no out-of-pocket fees or co-pays for residents with private or public health insurance. Please bring your insurance card to the testing site. Upon arrival, residents will need to complete a registration form and a consent form. Test results will take up to 5-7 business days and will be sent by mail. Residents who test positive will also receive a call from the Chester County Health Department. Residents are asked to wear a mask/face covering. Testing Information: Lansdowne Fire Company 26 N. Highland Avenue, Lansdowne, PA 19050 August 11: 10:00 AM – 4:00 PM August 12: 12:00 PM – 5:30 PM August 13: 10:00 AM – 4:00 PM Residents are asked to pre-register online at www.chesco.org/4562/delco-testing or by phone at (610) 891-6129; walk-up testing will also be available. Please note that in the event of inclement weather, testing may be canceled. For more information on testing and an interactive map with dozens of COVID-19 test sites in Delaware County, visit www.delcopa.gov/testing . Additional COVID-19 public testing sites in Delaware County will be added and announced in the coming weeks. More information on COVID-19 testing, symptoms, and resources can be found on the Delaware County website at www.delcopa.gov/ich/resources/coronavirus.html . Public Relations Navigation Press Releases County Newsletter Use of County Facility Form Questions about COVID-19 vaccines? Please call the COVID-19 Call Center: 484-276-2100. Adrienne Marofsky, Director Government Center, 226A 201 W. Front St. Media, PA 19063 Phone: 610-891-4943 delcopr@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play " -2093,https://balharbourfl.gov/departments/police/request-crash-report/,Accident Reports,Police & Public Interactions,Request Crash Report - Bal Harbour Residents,"",200,403 Forbidden,"[""Request Crash Report""]",[],[],[],[],[],Use the up and down arrows to select a result. Press enter to go to the selected search result. Touch device users can use touch and swipe gestures. Close Search Use the up and down arrows to select a result. Press enter to go to the selected search result. Touch device users can use touch and swipe gestures. Close Search Use the up and down arrows to select a result. Press enter to go to the selected search result. Touch device users can use touch and swipe gestures. Close Search -2094,https://spdblotter.seattle.gov/2015/04/30/barefoot-felon-ditches-stolen-car-gun-at-mcdonalds-leads-police-on-chase/,Media Bulletins,Agency-Published Resources,"Barefoot Felon Ditches Stolen Car, Gun at McDonald's, Leads Police On Chase - SPD Blotter","",200,403 Forbidden,"[""Barefoot Felon Ditches Stolen Car, Gun at McDonald’s, Leads Police On Chase""]","[""Find Posts By Topic"", ""Featured Posts"", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],"Seattle.gov Choose a language: English English Google Translate may not accurately translate all content. Read disclaimer . For general City questions, please call 206-684-2489 . Tell us your requested language in English, and we can connect you with an interpreter. Continue Cancel Español Es posible que Google Translate no traduzca con precisión todo el contenido. Lea el descargo de responsabilidad . Si necesita ayuda en otro idioma, díganos en inglés nombre del idioma que necesita y lo conectaremos con un intérprete: 206-684-2489 Seguir Cancelar 中國語文 Google翻譯可能無法準確翻譯所有內容。 閱讀免責聲明 。 如果您需要翻譯,請用英語説出您所需要的語言,我們將爲你連接口譯員: 206-684-2489 繼續 取消 简体中文 Google翻译可能无法准确翻译所有内容。 阅读免责声明 。 如果您需要翻译,请用英语说出您所需要的语言,我们将为你连接口译员: 206-684-2489 继续 取消 Tiếng Việt Google Dịch có thể không dịch chính xác tất cả nội dung. Đọc tuyên bố từ chối trách nhiệm . Nếu quý vị cần hỗ trợ về ngôn ngữ, xin vui lòng cho chúng tôi biết ngôn ngữ quý vị cần hỗ trợ bằng tiếng Anh (ví dụ “Vietnamese”), chúng tôi sẽ kết nối quý vị với một thông dịch viên: 206-684-2489 Tiếp tục Huỷ bỏ русский язык Google Translate не может точно перевести весь контент. Прочтите отказ от ответственности . Если вам нужна языковая помощь, сообщите нам на английском, какой язык вам нужен, и мы свяжем вас с переводчиком: 206-684-2489 Продолжать Отмена Af-Soomaali Google Translate ayaan si sax ah u turjumi karin dhammaan waxyaabaha ku jira. Akhri afeef . Haddii aad u baahan tahay caawimaad luqadeed, fadlan noogu sheeg Ingiriisiga luqadda aad u baahan tahay, ka dib waxaan kugu xiri doonnaa turjubaan: 206-684-2489 Sii wad Jooji አማርኛ የጉግል ትርጉም ሁሉንም ይዘቶች በትክክል መተርጎም ላይችል ይችላል። ማስተባበያ አንብብ ፡፡ ኣስተርጓሚ ካስፈለግዎ የሚፈልጉትን ቋንቋ በእንግልዝኛ ይንገሩን፣ ከኣስተርጓሚ እናገናኝዎታለን። 206-684-2489 ቀጥል ሰርዝ 한국어 구글은 정확하게 모든 내용을 번역하지 않을 수 있습니다 번역. 읽기 면책 조항 . 언어지원이 필요한 경우, 필요한 언어를 영어로 말씀해 주시면 통역사와 연결해 드리겠습니다: 206-684-2489 계속하다 취소 Tagalog Maaaring hindi tumpak na isalin ng Google Translate ang lahat ng nilalaman. Basahin ang disclaimer . Para sa mga pangkalahatang katanungan sa Lungsod, mangyaring tawagan ang 206-684-2489 . Sabihin sa amin ang hiniling mong wika sa Ingles, at maikokonekta ka namin sa isang interpreter. Magpatuloy Kanselahin ภาษาไทย Google Translate อาจแปลเนื้อหาทั้งหมดไม่ถูกต้อง อ่านข้อจำกัดความรับผิดชอบ สำหรับคำถามทั่วไปเกี่ยวกับเมืองโปรดโทร 206-684-2489 บอกภาษาที่คุณต้องการเป็นภาษาอังกฤษและเราสามารถติดต่อคุณกับล่ามได้ ดำเนินการต่อ ยกเลิก 日本語 Google翻訳は、すべてのコンテンツを正確に翻訳するとは限りません. 免責事項をお読みください 。 市の一般的な質問については 206-684-2489 に電話してください。ご希望の言語を英語で教えていただければ、通訳をご案内いたします。 継続する キャンセル ភាសាខ្មែរ កម្មវិធីបកប្រែហ្គូហ្គោលមិនអាចបកប្រែមាតិកាទាំងអស់បានត្រឹមត្រូវទេ។ អានការបដិសេធ។ សម្រាប់សំណួរទូទៅរបស់ទីក្រុងសូមទូរស័ព្ទមក 206-684-2489 ។ ប្រាប់យើងពីភាសាដែលអ្នកស្នើសុំជាភាសាអង់គ្លេសហើយយើងអាចភ្ជាប់អ្នកជាមួយអ្នកបកប្រែភាសា។ បន្ត បោះបង់ ພາສາລາວ Google Translate ອາດຈະບໍ່ແປເນື້ອຫາທັງ ໝົດ ຢ່າງຖືກຕ້ອງ. ອ່ານປະຕິເສດ . ສຳ ລັບ ຄຳ ຖາມທົ່ວໄປຂອງເມືອງ, ກະລຸນາໂທຫາ 206-684-2489 . ບອກພວກເຮົາເປັນພາສາອັງກິດທີ່ທ່ານຮ້ອງຂໍ, ແລະພວກເຮົາສາມາດເຊື່ອມຕໍ່ທ່ານກັບນາຍແປພາສາ. ສືບຕໍ່ ຍົກເລີກ Українська Перекладач Google може не точно перекласти весь вміст. Прочитайте застереження . За загальними запитаннями про місто, будь ласка, телефонуйте 206-684-2489 . Розкажіть нам про вашу мову англійською мовою, і ми можемо зв’язати вас із перекладачем. Продовжуйте Скасувати Français Google Traduction peut ne pas traduire correctement tout le contenu. Lisez la clause de non-responsabilité . Pour des questions générales sur la ville, veuillez appeler le 206-684-2489 . Dites-nous votre langue souhaitée en anglais, et nous pourrons vous mettre en contact avec un interprète. Continuer Annuler " -2095,http://www.longbeach.gov/police/press-releases/dui-drivers-license-checkpoint-planned-this-weekend-2147438636/,Media Bulletins,Agency-Published Resources,DUI-DRIVERS LICENSE CHECKPOINT PLANNED THIS WEEKEND,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2096,http://www.longbeach.gov/police/press-releases/assault-investigation-leads-to-firearm-discharge/,Media Bulletins,Agency-Published Resources,ASSAULT INVESTIGATION LEADS TO FIREARM DISCHARGE,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 8/30/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: ASSAULT INVESTIGATION LEADS TO FIREARM DISCHARGE Contact: Media Relations Detail (562) 570-5273 On August 29, 2014, at approximately 10:35 p.m., Long Beach Police responded to the San Gabriel Riverbed near Pacific Coast Highway to investigate a report of a sexual assault that occurred to a 40-year-old female from Seal Beach, which resulted in the arrest of a male adult. Officers arrived at the scene and contacted the person who reported the incident, who led officers to the area where the suspect was last seen. Two officers began chasing one possible suspect, while a third officer stayed with the reporting party. When the reporting party saw the actual suspect, he pointed him out to the third officer. The suspect, who had a large pit bull, said something to the dog and then released it. The dog began approaching the officer, and the officer ordered the suspect to recall his dog numerous times; however, the suspect refused. During the confrontation, the officer discharged his firearm at the dog to protect himself and the reporting party, striking the dog. The dog then retreated, and the suspect was safely taken into custody without further incident. Animal Care Services was called and the dog was taken to a local animal hospital for treatment. The suspect has been identified as a 38-year-old Long Beach resident. He was transported and booked for a sexual related offense and is being held at the Long Beach City Jail on $100,000 bail. The incident remains under investigation by Long Beach Police Homicide Detail and Sex Crimes Unit detectives. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2097,https://alpha.austin.gov/police-oversight/2020-06-12-5/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -2098,https://www.memphistn.gov/news/wpfd_file/police-services-18/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -2099,http://www.longbeach.gov/police/press-releases/robbery-suspect-arrested-2-/,Media Bulletins,Agency-Published Resources,ROBBERY SUSPECT ARRESTED(2),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 3/31/2016 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: ROBBERY SUSPECT ARRESTED; CHARGES FILED Contact: Media Relations Detail (562) 570-5273 On March 31, 2016, felony charges were filed against a 25-year-old Long Beach man in connection with a robbery to a taxi cab driver. On March 24, 2016, at approximately 9:00 p.m., Long Beach Police were dispatched to an armed robbery in the 2300 block of East Anaheim Street. The preliminary investigation indicated that a taxi cab driver was driving in the area when the suspect, armed with a handgun, entered the taxicab and demanded the driver’s property. The suspect grabbed the driver’s cell phone, wallet and keys to the taxi, and fled on foot. Fortunately, the driver was not injured during the altercation. Through their investigation, detectives learned the incident might have been recorded via the vehicle’s onboard video system. Detectives reviewed the video and identified the suspect. On March 29, 2016, detectives arrested 25-year-old Burrell Andre Gaither in the 1000 block of Raymond Avenue. The suspect was found to be in possession of a loaded firearm. Today, the case was presented to the Los Angeles County District Attorney’s Office, which filed one count of robbery and one count of possession of a firearm against Gaither. He is being held in Long Beach City Jail without bail due to a violation of his parole conditions. An arraignment is scheduled at the Long Beach Superior Court on April 1, 2016, in Department 1. Anyone with information regarding this investigation is encouraged to call Robbery Detective Don Collier at (562) 570-5537. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . The Robbery Detail would like to remind everyone to remain aware of their surroundings at all times and report suspicious activity by calling 9-1-1. For weekly crime prevention tips, follow @LBPDrobbery on Twitter. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2100,https://delcopa.gov/sustainability/pdf/raise/ihpinterprativesignageguidelinesvoliidesignhandbook_2013.pdf,Poor Data Source,Poor Data Source,"404 - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert " -2101,https://directory.arkansas.gov/agency/secretary-of-state/state-capitol-police/employees/john-watt/,List of Data Sources,Info About Agencies,State Directory – Arkansas.gov,"",200,State Directory – Arkansas.gov,"[""Flag Status""]","[""Discover More"", ""Discover More"", ""Discover More"", ""Discover More"", ""What can we help you find?"", ""Search the Directories"", ""Flag Status"", """"]","[""Government Resources"", ""Business Resources"", ""Residents Resources"", ""Visiting Resources"", ""State Directory"", ""Agencies"", ""Services"", ""Employees"", ""Your Arkansas.gov"", ""Top Online Services"", ""helpful information""]","[""Was the information on this page helpful?""]",[],[],"" -2102,https://delcopa.gov/planning/pdf/programsandinitiatives/implementingenforcingfloodplainordinance.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -2103,http://www.longbeach.gov/police/press-releases/traffic-fatality4/,Media Bulletins,Agency-Published Resources,TRAFFIC FATALITY,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 1/21/2018 FOR IMMEDIATE RELEASE Press Release # 2018 Subject: TRAFFIC FATALITY Contact: Media Relations Detail (562) 570-5273 On January 19, 2018, at approximately 10:33 PM, officers were dispatched to the intersection of Long Beach Boulevard and Spring Street regarding an injury traffic collision involving two vehicles, which resulted in the death of a female adult. Officers arrived on scene and discovered a 2000 Ford Mustang, occupied by three males, and a 2015 Honda Civic, occupied by a male and a female, both at rest with major collision damage on Long Beach Boulevard south of the intersection. The preliminary investigation determined the Ford, being driven by a 21-year-old male resident of Compton, was traveling southbound on Long Beach Boulevard in excess of 60 MPH when it broadsided a 2015 Honda Civic, being driven by an unidentified male, turning west onto Spring Street from northbound Long Beach Boulevard. Both occupants of the Honda Civic were injured. The female passenger, identified as a 20-year-old female from Long Beach, succumbed to her injuries and was determined deceased at the scene by Long Beach Fire Department personnel. Her identity is being withheld pending notification of next of kin. The male driver was transported to a local area hospital with critical injuries. All the occupants of the Ford Mustang were transported to area hospitals with non-life threatening injuries. Alcohol and drug intoxication is being investigated as a contributing factor in the collision. The investigation is ongoing. Anyone who may have information regarding this collision is asked to call Long Beach Police Collision Investigation Detective David Whelan at (562) 570-7355. Anonymous tips may be submitted through ""LA Crime Stoppers"" by calling 1-800-222-TIPS (8477), downloading the ""P3 Tips"" app to your smart phone (available at the Apple App store and Google Play), or visiting www.lacrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2104,https://www.southamptontownnypolice.gov/agendacenter,Not Criminal Justice Related,Not Criminal Justice Related,"Agenda Center • Southampton, NY • CivicEngage","",200,"Police | Southampton, NY - Official Website","[""Agenda Center""]","[""▼ Conservation Board"", ""▼ Hampton Bays CAC"", ""▼ Landmarks & Historic Districts Board"", ""▼ LRB - Licensing Review Board Agenda"", ""▼ North Sea CAC"", ""▼ Road Review Committee"", ""▼ Trustees"", ""▼ Water Mill CAC"", ""▼ Zoning Board of Appeals""]","[""Site Tools"", ""Tools"", ""Search Agendas by:"", ""Contact Us"", ""Site Links"", ""Loading""]","[""Mar 27, 2024 — Posted Mar 27, 2024 7:00 PM"", ""Mar 13, 2024 — Amended Mar 13, 2024 10:50 AM"", ""Feb 21, 2024 — Posted Feb 21, 2024 7:00 PM"", ""Feb 7, 2024 — Posted Feb 7, 2024 7:00 PM"", ""Jan 24, 2024 — Amended Jan 23, 2024 9:45 AM"", ""Jan 10, 2024 — Amended Jan 9, 2024 3:13 PM"", ""Sep 23, 2021 — Amended Sep 22, 2021 7:41 AM"", ""Mar 19, 2024 — Posted Mar 19, 2024 8:01 AM"", ""Feb 20, 2024 — Posted Feb 12, 2024 4:48 PM"", ""Jan 16, 2024 — Posted Jan 10, 2024 12:38 PM"", ""Jun 8, 2022 — Posted Jun 15, 2022 11:58 AM"", ""May 11, 2022 — Posted May 11, 2022 12:21 PM"", ""Apr 13, 2022 — Posted Apr 13, 2022 3:39 PM"", ""Mar 9, 2022 — Posted Mar 9, 2022 11:54 AM"", ""Feb 9, 2022 — Posted Feb 9, 2022 11:54 AM"", ""Jan 12, 2022 — Amended Jan 19, 2022 12:12 PM"", ""Dec 17, 2021 — Posted Dec 9, 2021 11:33 AM"", ""Feb 14, 2023 — Posted Feb 13, 2023 3:20 PM"", ""Jan 10, 2023 — Posted Jan 9, 2023 9:35 AM"", ""Mar 18, 2024 — Posted Mar 25, 2024 12:57 PM"", ""Mar 18, 2024 — Posted Mar 25, 2024 12:57 PM"", ""Mar 4, 2024 — Posted Mar 25, 2024 12:55 PM"", ""Mar 4, 2024 — Posted Mar 25, 2024 12:56 PM"", ""Feb 12, 2024 — Posted Mar 25, 2024 12:53 PM"", ""Feb 12, 2024 — Posted Mar 25, 2024 12:54 PM"", ""Jan 22, 2024 — Posted Jan 18, 2024 4:15 PM"", ""Jan 22, 2024 — Posted Jan 18, 2024 4:16 PM"", ""Jan 8, 2024 — Posted Jan 5, 2024 7:58 AM"", ""Apr 10, 2023 — Posted Mar 27, 2023 12:17 PM"", ""Mar 21, 2024 — Posted Mar 14, 2024 12:50 PM"", ""Mar 7, 2024 — Posted Mar 7, 2024 1:57 PM"", ""Feb 15, 2024 — Posted Feb 12, 2024 3:54 PM"", ""Feb 1, 2024 — Posted Jan 30, 2024 11:31 AM"", ""Jan 18, 2024 — Posted Jan 12, 2024 4:02 PM"", ""Jan 4, 2024 — Posted Jan 3, 2024 2:42 PM""]",[],[],Skip to Main Content -2105,http://police.portlandmaine.gov/499/cemeteries,Not Criminal Justice Related,Not Criminal Justice Related,"Cemeteries | Portland, ME - Official Website",The history of a town or city can be traced through their cemeteries - Portland's cemeteries are a fine example of this.,200,"Portland, ME - Official Website | Official Website","[""Cemeteries""]",[],[],[],[],[],"Skip to Main Content Places Programs Venues About Us Home Your Government Departments Parks, Recreation & Facilities Places Cemeteries Cemeteries Evergreen Cemetery Evergreen Cemetery Interactive Map Forest City Cemetery Historic Cemeteries Wilde Memorial Chapel Government Websites by CivicPlus® Places Programs Venues About Us Home Your Government Departments Parks, Recreation & Facilities Places Cemeteries Cemeteries Evergreen Cemetery Evergreen Cemetery Interactive Map Forest City Cemetery Historic Cemeteries Wilde Memorial Chapel Government Websites by CivicPlus® Places Programs Venues About Us Home Your Government Departments Parks, Recreation & Facilities Places Cemeteries Cemeteries Evergreen Cemetery Evergreen Cemetery Interactive Map Forest City Cemetery Historic Cemeteries Wilde Memorial Chapel Government Websites by CivicPlus® Places Programs Venues About Us Home Your Government Departments Parks, Recreation & Facilities Places Cemeteries Cemeteries Evergreen Cemetery Evergreen Cemetery Interactive Map Forest City Cemetery Historic Cemeteries Wilde Memorial Chapel Government Websites by CivicPlus® Places Programs Venues About Us Home Your Government Departments Parks, Recreation & Facilities Places Cemeteries Cemeteries Evergreen Cemetery Evergreen Cemetery Interactive Map Forest City Cemetery Historic Cemeteries Wilde Memorial Chapel Home Your Government Departments Parks, Recreation & Facilities Places Cemeteries Cemeteries Evergreen Cemetery Evergreen Cemetery Interactive Map Forest City Cemetery Historic Cemeteries Wilde Memorial Chapel Home Your Government Departments Parks, Recreation & Facilities Places Cemeteries Cemeteries Evergreen Cemetery Evergreen Cemetery Interactive Map Forest City Cemetery Historic Cemeteries Wilde Memorial Chapel Home Your Government Departments Parks, Recreation & Facilities Places Cemeteries Cemeteries Home Your Government Departments Parks, Recreation & Facilities Places Cemeteries Cemeteries Home Your Government Departments Parks, Recreation & Facilities Places Cemeteries Cemeteries Cemeteries Evergreen Cemetery Evergreen Cemetery Interactive Map Forest City Cemetery Historic Cemeteries Wilde Memorial Chapel Evergreen Cemetery Evergreen Cemetery Interactive Map Forest City Cemetery Historic Cemeteries Wilde Memorial Chapel Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® Government Websites by CivicPlus® " -2106,http://www.longbeach.gov/police/press-releases/dui-checkpoint-nets-three-arrests2/,Media Bulletins,Agency-Published Resources,DUI Checkpoint Nets Three Arrests(2),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 8/22/2017 FOR IMMEDIATE RELEASE Press Release # Subject: DUI CHECKPOINT NETS THREE ARRESTS Contact: Media Relations Detail (562) 570-5273 The L.B.P.D.’s Traffic Section conducted a DUI/Driver’s License checkpoint on Friday, August 18th on Pacific Coast Highway south of 2nd Street between the hours of 6:00 p.m. and 2:00 a.m. Checkpoints are placed in locations that have the greatest opportunity for achieving drunk and drugged driving deterrence and provide the greatest safety for officers and the public. In recent years, California has seen a disturbing increase in drug-impaired driving crashes. The L.B.P.D. supports the new effort from the Office of Traffic Safety that aims to educate all drivers that “DUI Doesn’t Just Mean Booze.” If you take prescription drugs, particularly those with a driving or operating machinery warning on the label, you might be impaired enough to get a DUI. Marijuana can also be impairing, especially in combination with alcohol or other drugs, and can result in a DUI. Studies of California drivers have shown that 30 percent of drivers in fatal crashes had one or more drugs in their systems. A study of active drivers showed more tested positive for drugs that may impair driving (14 percent) than did for alcohol (7.3 percent). Of the drugs, marijuana was most prevalent, at 7.4 percent, slightly more than alcohol. Below are statistics related to Saturday’s checkpoint: 324 vehicles screened 2 DUI-alcohol arrests 1 outstanding warrant arrest 4 drivers cited for unlicensed driving 11 traffic citations issued Drivers are encouraged to download the Designated Driver VIP, or “DDVIP,” free mobile app for Android or iPhone. The DDVIP app helps find nearby bars and restaurants that feature free incentives for the designated sober driver, from free non-alcoholic drinks to free appetizers and more. The feature-packed app even has social media tie-ins and even a tab for the non-DD to call Uber, Lyft or Curb. Drivers caught driving impaired can expect the impact of a DUI arrest to include jail time, fines, fees, DUI classes, license suspension, and other expenses that can exceed $10,000 not to mention the embarrassment when friends and family find out. The L.B.P.D. will be conducting another DUI/Driver’s License Checkpoint on Friday, September 15th in our ongoing commitment to lower deaths and injuries upon our streets and highways. The checkpoint was funded by a grant from the California Office of Traffic Safety, through the National Highway Traffic Safety Administration, reminding everyone to ‘Report Drunk Driver – Call 9-1-1’. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2107,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/summary/052721summary.pdf,Dispatch Logs,Police & Public Interactions,"","",404,"","","","","","","","" -2108,https://bolivar.mo.us/shop-with-a-copr/p1018068/,Not Criminal Justice Related,Not Criminal Justice Related,"P1018068 - City of Bolivar, Missouri","",200,"Welcome to Bolivar - Where Liberty Flows - City of Bolivar, Missouri","[""P1018068""]",[],[],[],[],[],"Skip to content DEPARTMENTS ADMINISTRATION MUNICIPAL COURT PARKS & RECREATION New Parks & Recreation registration site COMMUNITY DEVELOPMENT BUILDING DEPARTMENT CODE ENFORCEMENT DEPARTMENT PLANNING & ZONING DEVELOPER FORMS MS4: Municipal Separate Storm Sewer System FINANCIAL, BUDGET & CURRENT BIDS HUMAN RESOURCES CAREER OPPORTUNITIES UTILITIES FIRE DEPARTMENT PERSONNEL FIRE STATIONS APPARATUS FIRE DEPARTMENT FORMS POLICE DEPARTMENT EMERGENCY MANAGEMENT ANIMAL POUND PUBLIC WORKS ECONOMIC DEVELOPMENT PARTNERSHIP COVID-19 FINANCIAL RELIEF ECONOMIC DEVELOPMENT LINKS BOARD OF ALDERMEN AGENDAS/PACKETS/MINUTES REQUEST TO ADDRESS COUNCIL ORDINANCES HOW DO I.. RESERVE PARK PAVILIONS/ ROOMS MUNICIPAL COURT Contact Us P1018068 Home Departments Police Shop with a Cop® P1018068 12 Dec 2014 by City Administrator WordPress Theme - Total by HashThemes DEPARTMENTS ADMINISTRATION MUNICIPAL COURT PARKS & RECREATION New Parks & Recreation registration site COMMUNITY DEVELOPMENT BUILDING DEPARTMENT CODE ENFORCEMENT DEPARTMENT PLANNING & ZONING DEVELOPER FORMS MS4: Municipal Separate Storm Sewer System FINANCIAL, BUDGET & CURRENT BIDS HUMAN RESOURCES CAREER OPPORTUNITIES UTILITIES FIRE DEPARTMENT PERSONNEL FIRE STATIONS APPARATUS FIRE DEPARTMENT FORMS POLICE DEPARTMENT EMERGENCY MANAGEMENT ANIMAL POUND PUBLIC WORKS ECONOMIC DEVELOPMENT PARTNERSHIP COVID-19 FINANCIAL RELIEF ECONOMIC DEVELOPMENT LINKS BOARD OF ALDERMEN AGENDAS/PACKETS/MINUTES REQUEST TO ADDRESS COUNCIL ORDINANCES HOW DO I.. RESERVE PARK PAVILIONS/ ROOMS MUNICIPAL COURT Contact Us DEPARTMENTS ADMINISTRATION MUNICIPAL COURT PARKS & RECREATION New Parks & Recreation registration site COMMUNITY DEVELOPMENT BUILDING DEPARTMENT CODE ENFORCEMENT DEPARTMENT PLANNING & ZONING DEVELOPER FORMS MS4: Municipal Separate Storm Sewer System FINANCIAL, BUDGET & CURRENT BIDS HUMAN RESOURCES CAREER OPPORTUNITIES UTILITIES FIRE DEPARTMENT PERSONNEL FIRE STATIONS APPARATUS FIRE DEPARTMENT FORMS POLICE DEPARTMENT EMERGENCY MANAGEMENT ANIMAL POUND PUBLIC WORKS ECONOMIC DEVELOPMENT PARTNERSHIP COVID-19 FINANCIAL RELIEF ECONOMIC DEVELOPMENT LINKS BOARD OF ALDERMEN AGENDAS/PACKETS/MINUTES REQUEST TO ADDRESS COUNCIL ORDINANCES HOW DO I.. RESERVE PARK PAVILIONS/ ROOMS MUNICIPAL COURT Contact Us DEPARTMENTS ADMINISTRATION MUNICIPAL COURT PARKS & RECREATION New Parks & Recreation registration site COMMUNITY DEVELOPMENT BUILDING DEPARTMENT CODE ENFORCEMENT DEPARTMENT PLANNING & ZONING DEVELOPER FORMS MS4: Municipal Separate Storm Sewer System FINANCIAL, BUDGET & CURRENT BIDS HUMAN RESOURCES CAREER OPPORTUNITIES UTILITIES FIRE DEPARTMENT PERSONNEL FIRE STATIONS APPARATUS FIRE DEPARTMENT FORMS POLICE DEPARTMENT EMERGENCY MANAGEMENT ANIMAL POUND PUBLIC WORKS ECONOMIC DEVELOPMENT PARTNERSHIP COVID-19 FINANCIAL RELIEF ECONOMIC DEVELOPMENT LINKS BOARD OF ALDERMEN AGENDAS/PACKETS/MINUTES REQUEST TO ADDRESS COUNCIL ORDINANCES HOW DO I.. RESERVE PARK PAVILIONS/ ROOMS MUNICIPAL COURT Contact Us P1018068 Home Departments Police Shop with a Cop® P1018068 12 Dec 2014 by City Administrator P1018068 Home Departments Police Shop with a Cop® P1018068 P1018068 Home Departments Police Shop with a Cop® P1018068 12 Dec 2014 by City Administrator 12 Dec 2014 by City Administrator 12 Dec 2014 by City Administrator 12 Dec 2014 by City Administrator WordPress Theme - Total by HashThemes WordPress Theme - Total by HashThemes WordPress Theme - Total by HashThemes " -2109,http://www.longbeach.gov/police/press-releases/murder-investigation---atlantic-ave.-and-south-st/,Media Bulletins,Agency-Published Resources,*UPDATE* MURDER INVESTIGATION - ATLANTIC AVE. AND SOUTH ST.,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2110,https://www.antioch.il.gov/wpfb_file_category/commissions-police-pension-fund-agendas-2011-commissions-police-pension-fund-agendas-commissions-police-pension-fund-commissions-commissions-police-pension-fund/,List of Data Sources,Info About Agencies,"2011 - Antioch, IL","",200,"Home - Antioch, IL","[""Archives: 2011""]",[],"[""12-13-11 Police Pension Fund Agenda"", ""12-13-11 Police Pension Fund Agenda"", ""06-29-11 Police Pension Fund Agenda"", ""06-29-11 Police Pension Fund Agenda"", ""04-12-11 Police Pension Fund Agenda"", ""04-12-11 Police Pension Fund Agenda"", ""09-09-11 Police Pension Fund Agenda""]",[],[],[],Open toolbar Accessibility Tools Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset -2111,https://delcopa.gov/planning/mapping/custommaprequests.html,Poor Data Source,Poor Data Source,"404 - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert " -2112,http://www.longbeach.gov/police/press-releases/second-warrant-clearing-event/,Media Bulletins,Agency-Published Resources,SECOND WARRANT CLEARING EVENT,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 11/8/2018 FOR IMMEDIATE RELEASE Press Release # Subject: SECOND WARRANT CLEARING EVENT Contact: Media Relations Detail (562) 570-5273 In an effort to address the numerous misdemeanor warrants currently in the system, the Long Beach Police Department will be holding a second warrant clearing event next week for non-violent offenses. Anyone with an outstanding traffic or non-violent misdemeanor warrant, issued by the Long Beach Police Department, is encouraged to come to the event. Individuals will be issued a notice to appear document with a new court date, so they can take care of their original violation, without fear of arrest. The outstanding arrest warrant for the original charge will be removed from the warrant system. During the September 15th event, 132 individuals showed up to handle their outstanding warrants. Of the 132 individuals, 73 had traffic or eligible nonviolent misdemeanor warrants and were issued a new notice to appear. Several of those individuals had multiple warrants, clearing a total of 99 warrants from the system. The remaining 59 individuals either did not have warrants, or had warrants issued from other agencies. No one was arrested during the event. “We were very encouraged by the turnout at the first warrant clearing event, which confirmed for us the need to hold more,” stated Detective Division Commander Paul LeBaron. “It became apparent that many residents are willing to resolve their warrants, and we are pleased we are able to provide them another opportunity to do so.” The event will be held as follows: Date: Wednesday, November 14, 2018 Time: 1:00 – 6:00 p.m. Location: Scherer Park - parking lot on the north side (near Del Amo Boulevard & Atlantic Avenue) Please note, the following warrants are NOT eligible for a citation release: Felonies The misdemeanor cited in the warrant involves violence (including domestic), a firearm, or resisting arrest The misdemeanor cited in the warrant involves a violation of a restraining, protective, or stay-away order This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2113,https://delcopa.gov/publicrelations/releases/2020/earthday.html,Not Criminal Justice Related,Not Criminal Justice Related,"Celebrating the 50th Anniversary of Earth Day in Delco - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Celebrating the 50th Anniversary of Earth Day in Delco""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]","[""Ways to celebrate and participate in Earth Day amid the COVID-19 Pandemic""]",[],[],"" -2114,https://www.antiochca.gov/police/oes/,Resources,Agency-Published Resources,"Disaster Preparedness – City of Antioch, California","",200,"City of Antioch, California",[],"[""Contact Info""]","[""Office of Emergency Services (OES)""]","[""Send Message"", ""Disaster Preparedness"", """"]","[""Brian Addington"", ""Acting Chief of Police"", ""Captain Morefield"", ""Field Services"", ""Lt. Mellone"", ""Professional Standards"", ""Cert: Citizens Emergency Response Team""]",[],"" -2115,https://www.naperville.il.us/services/naperville-police-department/programs-and-services/internship-program/,Training & Hiring Info,Info About Officers,Internship Program | The City of Naperville,"The NPD Internship Program provides an inclusive, high-quality, safe and advanced educational experience for qualified individuals considering a career in the field of law enforcement.",200,Home | The City of Naperville,"[""Internship Program""]","[""Programs and Services"", ""Mission Statement"", ""Intern Testimonials"", ""Naperville Police Department""]","[""Explore""]",[],"[""Helping Residents Build a Better Community"", ""Resources for Doing Business in Naperville""]",[],"Menu Search Menu Search Search Main Menu Navigation About Naperville + An Award-Winning Community Demographics and Key Facts Education Historic Preservation in Naperville Projects in Naperville Transportation and Parking Townships Government + Boards and Commissions City Leadership Team City Finances Annual Budget and Financial Reports Purchasing and Bids Taxes and Financial Forms Utility Services and Billing General Billing Water Street TIF District Coronavirus Resources Diversity, Equity and Inclusion A Community of Belonging DEI Defined DEI Timeline Youth Involvement Embracing Community Environmental Sustainability in Naperville Grants Meetings and Agendas Legislative Priorities Meeting Room Reservations Meet Your City Council Mayor Scott A. Wehrli Councilman Ian Holzhauer Councilman Patrick Kelly Councilman Paul Leong Councilwoman Allison Longenbaugh Councilman Josh McBroom Councilwoman Jennifer Bruzan Taylor Councilman Dr. Benjamin M. White Councilman Nate Wilson Municipal Center Municipal Code Open Data Proclamations Strategic Plan Task Forces Voting and Voter Registration Services + Brush, Leaf & Yard Waste Curbside Bulk Brush Collection Leaf Collection Yard Waste Collection Electric Utility Your Electric Service Electrical Safety Powering Our Community for the Future FOIA Request Garbage and Recycling Residential Garbage Collection Garbage Carts Curbside Recycling Program Recycling Carts Recycling Drop-Off Center Household Hazardous Waste Facility Electronics Recycling Holiday Lights Recycling Naperville Fire Department About the Fire Department Emergency Preparedness Inspections and Permits Programs and Services Safety and Public Education Naperville Police Department About the Police Department Programs and Services Community Education and Crime Prevention Office of the Chief of Police Investigations Division Patrol Division Join NPD Permits and Licenses Senior Services and Resources Services and Resources for People with Disabilities Snow and Ice Removal Snow Plowing and Salting Mailboxes and Parkway Sod Winter Updates Water/Wastewater Utility Your Water Service Maintaining Our System Common Water Issues Residents + Helping Residents Build a Better Community You can find a collection of city information relevant to everyone in Naperville, from new residents to long-time community members. Go to this section Businesses + Resources for Doing Business in Naperville Whether you're starting, running or visiting a Naperville business - find resources to help you. Go to this section Enjoy Naperville + Biking Maps, Guides and Plans Commander Dan Shanower September 11 Memorial Explore the Community Festivals and Parades Millennium Wall Naperville Community Concert Center Naperville Riverwalk Naper Settlement & Homestead Von Oven Scout Reservation Walks and Runs + + + + Helping Residents Build a Better Community You can find a collection of city information relevant to everyone in Naperville, from new residents to long-time community members. Go to this section + Resources for Doing Business in Naperville Whether you're starting, running or visiting a Naperville business - find resources to help you. Go to this section + " -2116,https://www.antioch.il.gov/wpfb-file/11-02-16-police-pension-agenda-pdf-3/,Poor Data Source,Poor Data Source,"11-02-16 Police Pension Agenda - Antioch, IL",10564 11 02 16 police pension agenda pdf commissions fund agendas 2016 1477667300 c4564de1e4399e021859da3cf353db29 213x300 _yl6booqzxldd thumb jpg 10 28 08 20 0 pdf application trustees mary c dominiak ed macek jerry t johnson scott a pierce jay jozwiak ted p poulos lawrence m hanson mayor lori k romine village clerk agenda of antioch lake,200,"Home - Antioch, IL","[""11-02-16 Police Pension Agenda""]",[],[],[],[],[],Open toolbar Accessibility Tools Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset -2117,https://police.crystalmn.gov/how_do_i_/report_an_issue/street_light_outage,Not Criminal Justice Related,Not Criminal Justice Related,Xcel Energy,"",200,Just a moment...,[],[],[],[],[],[],"Loading × Sorry to interrupt This page has an error. You might just need to refresh it. -Uncaught error in $A.run() [Unexpected token .] Refresh × Sorry to interrupt This page has an error. You might just need to refresh it. -Uncaught error in $A.run() [Unexpected token .] Refresh This page has an error. You might just need to refresh it. -Uncaught error in $A.run() [Unexpected token .] Refresh " -2118,https://www.gurnee.il.us/government/departments/police-department/community-involvement/gurnee-citizen-police-academy/gurnee-citizen-police-academy/week-12,Training & Hiring Info,Info About Officers,Gurnee Citizen Police Academy,"",200," - Village of Gurnee -","[""Police Department""]","[""Gurnee Citizen Police Academy"", ""Youth Citizen Police Academy""]","[""Now accepting applications for the Spring 2024 session!"", ""Click here to register for the Gurnee Citizen Police Academy"", ""Village Hall""]",[],[],[],search edit file-word file-empty angle-left angle-right angle-up angle-down dollar calendar-check-o printer search2 briefcase circle-up circle-right circle-down circle-left share2 mail4 facebook twitter youtube file-pdf search edit file-word file-empty angle-left angle-right angle-up angle-down dollar calendar-check-o printer search2 briefcase circle-up circle-right circle-down circle-left share2 mail4 facebook twitter youtube file-pdf -2119,https://biloxi.ms.us/police-fire-showcase-is-saturday-at-point-cadet/,Not Criminal Justice Related,Not Criminal Justice Related,"Police, fire showcase is Saturday at Point Cadet","",200,City of Biloxi | The Official Website of the City of Biloxi,"[""Police, fire showcase is Saturday at Point Cadet""]",[],[],[],[],[],"" -2120,https://www.southamptontownnypolice.gov/faq.aspx?qid=413,Resources,Agency-Published Resources,FAQs • How will you alert the public on updates on beach dri,"",200,"Police | Southampton, NY - Official Website",[],"[""▼ Trustees - Endangered Species""]","[""Site Tools"", ""Categories"", ""Live Edit"", ""Contact Us"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -2121,http://www.longbeach.gov/police/press-releases/traffic-fatality-3-/,Media Bulletins,Agency-Published Resources,TRAFFIC FATALITY(3),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 6/20/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: TRAFFIC FATALITY Contact: Media Relations (562) 570-5273 On Friday, June 20, 2014, at approximately 9:25 a.m., Long Beach Police responded to the intersection of Willow Street and Webster Avenue regarding an injury traffic collision. Arriving officers discovered a 2009 Mini Cooper on it’s side, a 2003 Acura TL with major front-end damage and a parked 1995 Honda Civic with major rear-end damage. The Mini Cooper was occupied by the driver and one passenger who both sustained injuries. Long Beach Fire Department personnel transported the driver and passenger to a local hospital. The driver, a 62-year-old resident of Carson, is in stable condition. The passenger, identified as 60-year-old long beach resident Chanpisey Meas, was pronounced deceased at the hospital. The Acura TL was occupied by only the driver, a 22-year-old resident of Carson, who sustained minor injuries. The parked Honda Civic was unoccupied. The preliminary investigation revealed that the Acura TL was traveling eastbound on Willow Street. The Mini Cooper was traveling westbound on Willow Street and attempted to make a left turn onto southbound Webster Avenue. The Mini Cooper was broadsided by the Acura TL, causing the Mini Cooper to turn on it's side, sliding into a light pole and then into the parked Honda Civic. The driver of the Acura TL was interviewed and released at the scene. The driver of the Mini Cooper was interviewed and released. The investigation remains ongoing. Anyone with information regarding this collision is asked to call Long Beach Police Department Collision Investigation Detail Detective Brain Watt at (562) 570-5520. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2122,http://www.longbeach.gov/police/press-releases/---located----critical-missing-person/,Media Bulletins,Agency-Published Resources,---LOCATED--- CRITICAL MISSING PERSON,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 4/25/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: ---LOCATED--- CRITICAL MISSING PERSON Contact: Media Relations (562) 570-5273 (Click on photo to enlarge) April 25, 2014 Update: Mr. Frank Kuborek, who was reported missing yesterday, April 24, 2014, was located at a hospital in the 4800 block of W. Sunset Blvd in Los Angeles and is now safe. The Long Beach Police Department is asking for the public’s help in locating an elderly man who suffers from dementia and walked away from his home located in the 700 block of Alamitos Avenue. The victim was last seen at his home on Thursday, April 24th, 2014, at approximately 4:00 p.m., and was reported missing later in the day. The victim is known to frequent the area around downtown Long Beach and is usually seen wearing a band-aid across his nose. The Victim is described as follows: Name: FRANK KUBOREK Age: 89-YEARS Gender: MALE Race: WHITE Hair/Eyes: GREY/BLUE Height: 5’9” Weight: 150 Clothing: RED BASEBALL HAT WITH ""A,"" BLACK JACKET, YELLOW SHIRT AND PANTS The Long Beach Police Department continues to search for the victim. Local hospitals have been alerted and area law enforcement and public transportation agencies have also been notified. Anyone sees the victim or has information on her whereabouts is asked to call the Long Beach Police Department at (562) 435-6711 or 9-1-1. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2124,https://www.mass.gov/event/police-standards-subcommittee-open-meeting-2022-07-12t090000-0400-2022-07-12t100000-0400,Media Bulletins,Agency-Published Resources,Police Standards Subcommittee Open Meeting | Mass.gov,"",200,Mass.gov,"[""Public Hearing Notice Police Standards Subcommittee Open Meeting""]","[""Address"", ""Overview of Police Standards Subcommittee Open Meeting"", ""Additional Resources for Police Standards Subcommittee Open Meeting"", ""Participating Organizations"", ""Help Us Improve Mass.gov with your feedback""]","[""Agenda""]",[],[],[],"" -2125,https://www.hayward-ca.gov/discover/news/jul22/police-blotter-july-10-16-2022,Media Bulletins,Agency-Published Resources,"Police Blotter - July 10-16, 2022 | City of Hayward - Official website","STATISTICAL HIGHLIGHTSJuly 10-16, 2022 Weekly Arrests (Includes cite/released):66 Homicide 0Weekly Calls for Service: 1,968 Assault—Great Bodily Injury 5Weekly Reports Taken:230 Burglary— Non Residential 10Weekly Complaints(against HPD):2 Burglary—Residential 1Weekly Calls Received:5,644 Larceny 26This data is subject to change and based on crimes that were re-ported to have",200,City of Hayward - Official website,"[""Police Blotter - July 10-16, 2022""]","[""Look Deeper"", ""Welcome home"", ""Where opportunity lives"", ""Find what you need. Fast."", ""Working for You"", ""Your Hayward Environment"", ""You are here. So is everything else."", ""Search form"", ""Look Deeper"", ""Welcome home"", ""Where opportunity lives"", ""Find what you need. Fast."", ""Working for You"", ""Your Hayward Environment""]",[],"[""STATISTICAL HIGHLIGHTS"", ""July 10-16, 2022"", """", """", """", ""CASE SYNOPSIS"", ""Do you need help paying energy bills? You may qualify for federal aid."", ""Hayward Receives Grant for Safe Routes to Schools Infrastructure and Bicycle Incentives"", ""Hayward Celebrates Earth Day at Weekes Park!"", ""Spring 2024 Compost Giveaway"", ""Sustainable Solutions for Celebrating Easter"", ""City Hall and Nonessential Services Closure: Monday, Apr. 01, 2024"", ""Presidential Primary Election: Tuesday, Mar. 5, 2024"", ""Library Closure: February 12 and February 19, 2024."", ""City Hall and Nonessential Services Closures: Monday, Feb. 19"", ""City Hall and Nonessential Services Closure: Monday, Jan. 15, 2024"", ""YOU ARE HERE. SO IS EVERYTHING ELSE."", ""Related News"", ""Police Blotter - February 25-March 2, 2024"", ""Weekly Blotter - February 18-24, 2024"", ""Police Blotter - February 11-17, 2024"", ""Report Problems"", ""Ask Questions"", ""Make a Suggestion"", ""Translate"", ""Search""]",[],[],Skip to main content -2126,https://dps.iowa.gov/former-pleasantville-police-officer-charged-sexual-abuse-minor,Media Bulletins,Agency-Published Resources,Former Pleasantville Police Officer Charged With Sexual Abuse of Minor | Iowa Department of Public Safety,"November 16, 2021 DES MOINES, Iowa - On November 12, 2021, at the request of the Pleasantville Police Department, Division of Criminal Investigation agents began a criminal investigation into allegations of sexual contact between a then-police officer with the Pleasantville Police Department and a 15-year-old juvenile. ",200,Iowa Department of Public Safety | Iowa Department of Public Safety,"[""Iowa Department of Public Safety"", ""Former Pleasantville Police Officer Charged With Sexual Abuse of Minor""]",[],[],[],[],[],"Skip to main content Iowa Department of Public Safety Former Pleasantville Police Officer Charged With Sexual Abuse of Minor Adam DeCamp Special Agent In Charge 515.250.4912 decamp@dps.state.ia.us November 16, 2021 DES MOINES, Iowa - On November 12, 2021, at the request of the Pleasantville Police Department, Division of Criminal Investigation agents began a criminal investigation into allegations of sexual contact between a then-police officer with the Pleasantville Police Department and a 15-year-old juvenile. On November 15, members of the Department of Public Safety arrested Alec Veatch, 24, at his Norwalk home. Veatch was charged with one count each of Sexual Abuse in the Third Degree, Lascivious Acts with a Minor, and Enticing a Minor. Veatch was transported to the Jasper County Jail on a $17,000 bond. He has since posted bond and has been released. This is an on-going criminal investigation. Additional charges will be filed. Anyone with information concerning this investigation is asked to contact the DCI at 515.725.0030. Code of Iowa: 709.4 – Sexual Abuse in the Third Degree - Class C Felony Code of Iowa: 709.14(4) – Lascivious Acts with a Minor – Aggravated Misdemeanor Code of Iowa: 710.10(2) – Enticing a Minor – Class D Felony A charge is merely an accusation. A defendant is considered innocent unless and until proven guilty by a court of law. Complaint and Affidavit – Sexual Abuse in the Third Degree – Class C Felony Complaint and Affidavit – Lascivious Acts with a Minor – Aggravated Misdemeanor Complaint and Affidavit – Enticing a Minor – Class D Felony PHOTO: Alec Veatch ABOUT THE IOWA DEPARTMENT OF PUBLIC SAFETY The Iowa Department of Public Safety (DPS) is the largest law enforcement agency in the state. It includes six divisions and several bureaus, all working together with local, state and federal government agencies and the private sector, to keep Iowa a safe place by following our core values: leadership, integrity, professionalism, courtesy, service and protection. Divisions within the Iowa DPS: Iowa Division of Criminal Investigation, Iowa Division of Narcotics Enforcement, Iowa State Patrol, Iowa State Fire Marshal Division, Iowa Division of Intelligence and Fusion Center, and Administrative Services Division. The Department of Public Safety is led by the Commissioner who is appointed by the Governor. Iowa Department of Public Safety 215 E 7th St Des Moines IA 50319 https://dps.iowa.gov " -2127,http://www.longbeach.gov/police/press-releases/arrests-made-in-illegal-firework-investigation/,Media Bulletins,Agency-Published Resources,ARRESTS MADE IN ILLEGAL FIREWORK INVESTIGATION,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 6/15/2017 FOR IMMEDIATE RELEASE Press Release # 2017 Subject: ARRESTS MADE IN ILLEGAL FIREWORK INVESTIGATION Contact: Media Relations Detail (562) 570-5273 CLICK PHOTO FOR LARGER IMAGE On Monday, June 12, 2017, South Division Directed Enforcement officers, with the assistance of West Division patrol officers, conducted an investigation into the sale and possession of illegal fireworks in the City of Long Beach, which resulted in the confiscation of approximately $2,500 worth of high powered fireworks and the arrest of three male adults. Officers located an online advertisement regarding illegal fireworks that were available for sale. Through the course of the investigation, officers responded to the 4400 hundred block of Myrtle Avenue, where contact was made with the individuals selling fireworks. The fireworks were confiscated and three adult males were taken into custody. The suspects are identified as: Name: Age: Residence: Charges: Marco Delgado 18 Carson Possession of fireworks Christian Chacon 25 Long Beach Possession of fireworks Sandro Perez 33 Carson Possession of fireworks The Long Beach Police Department encourages those celebrating the 4th of July holiday to do so in a safe and responsible manner. We are reminding residents and visitors that all fireworks, including those marked “Safe and Sane,” are illegal in the City of Long Beach. Violators may be cited and/or arrested and faced with a $1,000 fine, sentenced to jail for six months, or both. The fines and penalties may increase depending on the fireworks’ classification. Fireworks may be voluntarily disposed of at collection bins located at all fire stations, Lifeguard Headquarters from 8:00am-8:00pm (2100 E. Ocean Boulevard, on the West side of the Junipero lot), or any police station. If you or your neighbor would like flyers, posters, or yard signs to post in your home/neighborhood you can pick them up at Fire Headquarters (3205 Lakewood Blvd.) starting June 12, 2017 to July 3, 2017 from 7:30am-4:30pm or at the Neighborhood Resource Center (100 W. Broadway, Suite 550) starting June 12, 2017 to July 3, 2017 from 8:00am-5:00pm. You can also call and reserve them from the Neighborhood Resource Center at (562)570-1010. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2128,http://www.longbeach.gov/police/press-releases/traffic-fatality--cherry-ave---cherry-circle/,Media Bulletins,Agency-Published Resources,Traffic Fatality (Cherry Ave & Cherry Circle,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 7/7/2016 FOR IMMEDIATE RELEASE Press Release # Subject: TRAFFIC FATALITY Contact: Media Relations Detail (562) 570-5273 On Wednesday, July 6, 2016, at approx.10:26 p.m., Long Beach Police were dispatched to the intersection of Cherry Avenue and Market Street regarding an attempt suicide call, where a female was reported to be walking in the middle of the street into traffic. The female was ultimately struck by a vehicle, which resulted in her death. When officers arrived, they discovered a female laying in the northbound # 1 lane of traffic on Cherry Avenue at Cherry Avenue Industrial Circle. A passerby had begun administering life saving measures on the victim, which officers continued until Long Beach Fire Department paramedics arrived. The female sustained serious injuries, was transported to a local hospital by paramedics, and listed in critical condition. This afternoon, July 7, 2016, the L.B.P.D. received notification the victim had been pronounced deceased. The investigation determined the female had run into traffic and was struck by a 2004 Nissan 350Z travelling north on Cherry Avenue. Through further investigation, it was learned the victim had gone to a location in the area to see an acquaintance, was distraught, and made comments about running into traffic. Before the acquaintance could take any action, the victim left the location, ran into the street, and was struck. The victim’s identity will be released by the Los Angeles County Coroner’s Office. The driver of the Nissan was uninjured, interviewed at the scene, and released. Anyone who may have witnessed the incident is asked to contact the L.B.P.D.’s Collison Investigation Detail at (562) 570-7355. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting www.lacrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2129,https://www.hayward-ca.gov/discover/news/jul21/police-blotter-june-27-july-3-2021,Media Bulletins,Agency-Published Resources,"Police Blotter: June 27-July 3, 2021 | City of Hayward - Official website","STATISTICAL HIGHLIGHTSJune 27-July 3, 2021 Weekly Arrests (Includes cite/released):33 Homicide 0Weekly Calls for Service: 2,167 Assault—Great Bodily Injury 1Weekly Reports Taken:195 Burglary— Nonresidential 4Weekly Complaints(against HPD):0 Burglary—Residential 26Weekly Calls Received:6,325 Theft 26This data is subject to change and based on crimes that were reported to have",200,City of Hayward - Official website,"[""Police Blotter: June 27-July 3, 2021""]","[""Look Deeper"", ""Welcome home"", ""Where opportunity lives"", ""Find what you need. Fast."", ""Working for You"", ""Your Hayward Environment"", ""You are here. So is everything else."", ""Search form"", ""Look Deeper"", ""Welcome home"", ""Where opportunity lives"", ""Find what you need. Fast."", ""Working for You"", ""Your Hayward Environment""]",[],"[""STATISTICAL HIGHLIGHTS"", ""June 27-July 3, 2021"", """", """", """", ""Significant Incidents"", ""Do you need help paying energy bills? You may qualify for federal aid."", ""Hayward Receives Grant for Safe Routes to Schools Infrastructure and Bicycle Incentives"", ""Hayward Celebrates Earth Day at Weekes Park!"", ""Spring 2024 Compost Giveaway"", ""Sustainable Solutions for Celebrating Easter"", ""City Hall and Nonessential Services Closure: Monday, Apr. 01, 2024"", ""Presidential Primary Election: Tuesday, Mar. 5, 2024"", ""Library Closure: February 12 and February 19, 2024."", ""City Hall and Nonessential Services Closures: Monday, Feb. 19"", ""City Hall and Nonessential Services Closure: Monday, Jan. 15, 2024"", ""YOU ARE HERE. SO IS EVERYTHING ELSE."", ""Related News"", ""Police Blotter - February 25-March 2, 2024"", ""Weekly Blotter - February 18-24, 2024"", ""Police Blotter - February 11-17, 2024"", ""Report Problems"", ""Ask Questions"", ""Make a Suggestion"", ""Translate"", ""Search""]",[],[],Skip to main content -2130,http://lafayettepolice.us/3404/census-2020,Not Criminal Justice Related,Not Criminal Justice Related,"Census 2020 | Lafayette, IN - Official Website","Everything you need to know about the United States 2020 Census, including why everyone should fill out the census, how to do it, and how the information is used.",200,"Police Department | Lafayette, IN - Official Website","[""Census 2020"", ""The Census: Your Response Matters!"", ""CENSUS IS HIRING IN GREATER LAFAYETTE!""]","[""Health clinics. Fire departments. Schools. Even roads and highways. The census can shape many different aspects of your community."", ""Learn more about the Census and why it’s so important""]","[""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Government Services Our Community Business & Development How Do I... Transparency Home Government Departments A - F City Clerk Census 2020 Census 2020 The Census: Your Response Matters! Health clinics. Fire departments. Schools. Even roads and highways. The census can shape many different aspects of your community. Check back for a link to complete your form online! CENSUS IS HIRING IN GREATER LAFAYETTE! The U.S. Census Bureau is actively recruiting people for a variety of temporary jobs in Tippecanoe County, including census takers, recruiting assistants, and more. Candidates must complete an online job application. The application includes assessment questions about your education, work, and other experience. Qualified candidates must be at least 18 years of age and pass a background check. For more information, please visit: 2020 Census Jobs or call 1-855-JOB-2020. Learn more about the Census and why it’s so important Video: What is the 2020 Census? Video: How Will 2020 Census Data Be Used? Video: How Does the 2020 Census Affect Representation? Video: How Do I Take the 2020 Census? Video: Is My 2020 Census Data Safe? Factsheet: Census Safety and Security Factsheet: Census Confidentiality ACCESS LOCAL DATA Learn about our community, county, state and the U.S. Census 2020 Community Gardens Bid Opportunities / Public Notices Documents Board of Works City Code Environmental Finance Board Forms Joint Purchasing Board Lafayette Flag Notice to Bidders Youth Council Employment Utilities Payment Submit a Request Permits & Licensing Agendas & Minutes Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate " -2131,"https://norfolkne.gov/government/departments/police-division/press-releases/july-11,-2021-press-release.html",Media Bulletins,Agency-Published Resources,"July 19, 2021 Press Release - City of Norfolk, NE","",200,"Welcome to Norfolk, NE - City of Norfolk, NE","[""City of Norfolk, NE"", ""Police Division"", ""July 19, 2021 Press Release"", ""City of Norfolk, NE""]",[],[],[],"[""Still looking for something?""]","[""Contact Us"", ""Pay or Apply..."", ""Government..."", ""Services..."", ""Business..."", ""Amenities...""]","" -2132,https://www.mass.gov/doc/draft-scope-of-work-2016-cd-debris-industry-study/download,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -2133,http://www.longbeach.gov/police/press-releases/shooting-200-block-of-artesia/,Media Bulletins,Agency-Published Resources,Shooting 200 block of Artesia,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 1/2/2017 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: SHOOTING - 200 BLOCK OF E. ARTESIA BLVD. Contact: Media Relations Detail (562) 570-5273 On January 2, 2017 around 5:15 - a.m., officers were dispatched to the 200 Block of East Artesia Boulevard - regarding a shooting that had just occurred. Upon arrival -officers located a male adult subject that was suffering from gunshot wounds - to his upper torso. A resident who was responsible for the shooting remained - at the scene and was being detained by officers while they conducted their -investigation. The incident is preliminarily being investigated as a burglary -that was occurring, that resulted in the resident shooting the subject in -self-defense. The Long Beach Fire Department responded and -transported the subject to a local hospital, where he was later pronounced -deceased. Homicide Detectives responded and they are handling the -investigation. No arrests have been made at this time. The -identity of the decedent is being withheld pending identification by the Los -Angeles County Coroner’s Office. Anyone with information is urged -to call Homicide Detectives Mark Mattia or Donald Goodman at (562) 570-7244. -Anonymous tips may be submitted through ""LA Crime Stoppers"" by calling -1-800-222-TIPS (8477), downloading the ""P3 Tips"" app to your smart phone -(available at the Apple App store and Google Play), or visiting www.lacrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2134,https://coloradosprings.gov/police-department/article/news/traffic-fatality-woodman-road-and-campus,Media Bulletins,Agency-Published Resources,Traffic Fatality Woodman Road and Campus Drive | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""Traffic Fatality Woodman Road and Campus Drive""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[],"" -2135,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/summary/080321summary.pdf,Daily Activity Logs,Info About Officers,"","",404,"","","","","","","","" -2136,http://www.longbeach.gov/police/press-releases/dui---driver-s-license-checkpoint-planned-this-weekend/,Media Bulletins,Agency-Published Resources,DUI - DRIVER'S LICENSE CHECKPOINT PLANNED THIS WEEKEND,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2137,https://alpha.austin.gov/police-oversight/formal-complaint-responsibility-to-know-and-compl-2/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -2138,https://www.gurnee.il.us/government/departments/police-department/community-involvement/gurnee-citizen-police-academy/gurnee-citizen-police-academy/week-4,Media Bulletins,Agency-Published Resources,Gurnee Citizen Police Academy,"",200," - Village of Gurnee -","[""Police Department""]","[""Gurnee Citizen Police Academy"", ""Youth Citizen Police Academy""]","[""Now accepting applications for the Spring 2024 session!"", ""Click here to register for the Gurnee Citizen Police Academy"", ""Village Hall""]",[],[],[],search edit file-word file-empty angle-left angle-right angle-up angle-down dollar calendar-check-o printer search2 briefcase circle-up circle-right circle-down circle-left share2 mail4 facebook twitter youtube file-pdf search edit file-word file-empty angle-left angle-right angle-up angle-down dollar calendar-check-o printer search2 briefcase circle-up circle-right circle-down circle-left share2 mail4 facebook twitter youtube file-pdf -2139,https://www.roundrocktexas.gov/wp-content/uploads/2019/12/coffee_cop.png,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -2140,http://www.longbeach.gov/police/press-releases/robbery-suspect-arrested-and-charged-1-/,Media Bulletins,Agency-Published Resources,ROBBERY SUSPECT ARRESTED AND CHARGED(1),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 12/20/2016 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: ROBBERY SUSPECT ARRESTED & CHARGED Contact: Media Relations Detail (562) 570-5273 Multiple felony charges were filed today, December 20, 2016, against 22-year-old Long Beach resident Dylan Derrick Watson for his involvement in multiple armed robberies throughout Los Angeles County and the Inland Empire. Fortunately, none of the victims were injured during three robberies in Long Beach: On November 29, 2016, a suspect entered an electronics store in the 2100 block of South Street, brandished a handgun, and demanded cell phones and cash from the employee. The suspect fled with the items. On December 5, 2016, a suspect entered an electronics store in the 1400 block of W. Willow Street, brandished a handgun, and demanded cellphones and cash from the employee. The suspect fled with the items. The following day, it appears the same suspect entered an eatery in the 3400 block of Cherry Avenue, brandished a handgun, and demanded cash from the clerk. The suspect fled with cash. While Long Beach Robbery detectives were investigating the incidents, they learned of similar robberies in Montclair and the Inland Empire, and contacted with those agencies. Based on the suspect’s physical description and the manner in which the robberies were carried out, investigators believed that the same person was responsible for these crimes. Long Beach detectives, with the assistance of Hemet Police Department and other police agencies in the Inland Empire, identified Dylan Watson as the suspect wanted in connection with the robberies. On December 16, 2016, Long Beach detectives located Mr. Watson in the 5100 block of West Century Boulevard in Inglewood and arrested him. Pursuant to the arrest, detectives served a search warrant, towed the suspect’s vehicle, and recovered evidence related to the robberies. On December 20, 2016, the case was presented to the Los Angeles County District Attorney’s Office for filing consideration. Defendant Watson was charged with six counts of robbery and four counts of possession of a deadly weapon. He is currently being held at the Long Beach City Jail with a bail set at $2.012 million dollars. Anyone with information regarding this investigation is encouraged to call Long Beach Robbery Detective N. Mora at (562) 570-5536. Anonymous tips may be submitted through ""LA Crime Stoppers"" by calling 1-800-222-TIPS (8477), downloading the ""P3 Tips"" app to your smart phone (available at the Apple App store and Google Play), or visiting www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2141,https://wyomingohio.gov/departments/police-department-2/commend-an-officer/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -2143,https://police.birminghamal.gov/bureaus/support-operations/records/,Resources,Agency-Published Resources,Services | Birmingham Police Department,"",200,"Home | Police Department - Birmingham, AL","[""Birmingham Police Department Commitment | Excellence | Integrity""]","[""Putting People First"", ""Services""]",[],"[""Hours & Info"", ""Upcoming Events"", ""CRIMESTOPPERS"", ""Police Information"", ""Quick Links"", ""I Need...""]",[],[],"Birmingham Police Department Commitment | Excellence | Integrity Putting People First Birmingham Police Department Commitment | Excellence | Integrity Putting People First Birmingham Police Department Commitment | Excellence | Integrity Putting People First Home About Command Staff Bureaus Press Releases Join the Team Crime Stats CALEA IAD Stats Inmate Search Contacts Search Home About Command Staff Bureaus Press Releases Join the Team Crime Stats CALEA IAD Stats Inmate Search Contacts Search Search Services In This Section Office of Administration Patrol North Precinct South Precinct East Precinct West Precinct Community Outreach and Public Education Investigations Tactical Operations Precinct The Records Division is part of the Administration Bureau. The Records Division provides essential support services to the Patrol and Investigative Bureaus, the public, and other criminal justice agencies. Incident/Offense reports may only be released to authorized parties in person. Reports involving certain types of crime (i.e., juvenile cases) may not be released. Most releasable reports are available within 5-7 working days. To determine if a report is available for release, please contact the Records Department at (205) 254-6308. Make sure you have your case number readily available when calling. Accident Reports may be purchased online or in person. Alabama Code 32-10-7 governs who is eligible to purchase accident reports. Hours of Operation Monday-Friday, 8am – 4:30pm No reports are sold after 4:30pm. Criminal Background Checks will be available between the hours of 8:00 am – 3:00 pm Excluding Holidays AVAILABILITY OF REPORTS IS SUBJECT TO CITY HALL CLOSURES, INCLEMENT WEATHER, AND OTHER EXIGENT CIRCUMSTANCES . Archived reports – $25.00 (Incident/Offense Reports prior to January 2013 or Accident Reports prior to January 2015, 3-5 business days) Accident Reports – $10.00 Incident/Offense Reports – $10.00 Criminal Background Checks – Birmingham City only – $10.00 (1-3 business days) Fingerprints -$10.00 Fingerprint Cards – $10.00 Please note: For payments made online with Allpaid , a separate transaction is required for each request. For Public Records Requests, visit the City of Birmingham Office of Public Information: Public Records Request WE ACCEPT CASH, DEBIT CARDS, CREDIT CARDS, MONEY ORDERS and COMPANY CHECKS ONLY. NO PERSONAL CHECKS WILL BE ACCEPTED. Note: Incident/Offense reports must be picked up in person, with proper identification. You MUST be listed as the reporting person or the victim on the report to obtain a copy. If you are listed as the offender, you CANNOT receive a copy of the report. Only parents or legal guardians may purchase juvenile reports. The following items are required to pick up a report: original copy of the child’s birth certificate or court documentation showing guardianship (photocopies will not be accepted), and your State ID. You cannot purchase the report if your child is listed as a suspect on the report, unless you are the person who made the report- no exceptions. Contact Us 1710 1st Avenue North Birmingham, AL 35203 (205) 254-6308 BPDReports@birminghamal.gov " -2144,https://norfolkne.gov/government/departments/police-division/press-releases/october-3rd-press-release-2022.html,Media Bulletins,Agency-Published Resources,"October 3rd Press Release 2022 - City of Norfolk, NE","",200,"Welcome to Norfolk, NE - City of Norfolk, NE","[""City of Norfolk, NE"", ""Police Division"", ""October 3rd Press Release 2022"", ""City of Norfolk, NE""]",[],[],[],"[""Still looking for something?""]","[""Contact Us"", ""Pay or Apply..."", ""Government..."", ""Services..."", ""Business..."", ""Amenities...""]","" -2145,https://alpha.austin.gov/es/police-oversight/formal-complaint-impartial-attitude-and-courtesy-53/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -2146,http://www.longbeach.gov/police/press-releases/dui-driver-s-license-checkpoint-planned-this-weekend-5-/,Media Bulletins,Agency-Published Resources,DUI-DRIVER'S LICENSE CHECKPOINT PLANNED THIS WEEKEND(5),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2147,http://www.longbeach.gov/police/press-releases/robberymurder-investigation---1900-block-of-pacific-ave/,Media Bulletins,Agency-Published Resources,ROBBERY/MURDER INVESTIGATION - 1900 BLOCK OF PACIFIC AVE,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2148,https://delcopa.gov/courts/familycourtadvisory.html,Resources,Agency-Published Resources,Family Law Advisory Council,"",200,"Delaware County, Pennsylvania","[""Family Law Advisory Council""]",[],"[""Contact Us"", ""Courts Quick Links"", ""Government Center Quick Links"", ""About Delaware County""]",[],[],[],"Menu A to Z Court Departments Local Rules FAQ Government Center Family Law Advisory Council Home / Court Departments / Family Law Advisory Council Family Law Advisory Council Under the chairmanship of the Honorable William C. Mackrides, the Family Law Advisory Council is a consortium of core systematic stakeholders who meet regularly to ensure that the various departments and agencies charged with the responsibilities of providing services to and through the court’s family section coordinate such efforts to best meet the needs of the Delaware County community in cases of divorce, child custody, equitable distribution, child support, child protective services, spousal support and/or protection from abuse. The council’s participants include: Judges, Family Section Masters; Law Clerks; the Domestic Relations Office; the Delaware County Judicial Support Office; the Office of the District Attorney; the Public Defender’s Office; the Sheriff’s Office; Children and Youth Services; and the Family Court Administrator’s Office. The council’s mission is to continually improve the effective and efficient administration of justice in all types of family matters coming before the court through an overarching and coordinated strategic planning and management paradigm. This goal is realized by a unique collaboration of individual representatives from the varied departments and agencies routinely sharing their respective areas of knowledge, professional experiences and expertise. Systematic problems are identified, discussed and through the exercise of reflective management administration successfully addressed with flexible solutions recognizing the interdependent impacts of the involved departments and agencies on each other’s operations, while yet appreciating the individual departments’ and agencies’ autonomy. This all-inclusive approach of an ongoing, collaborative partnership promotes systematic protocols which benefit those community members seeking the court’s assistance, as well as that of the numerous other departments and agencies, all charged with the varied responsibilities attendant to family law cases. Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 delcocourts@co.delaware.pa.us Courts Quick Links Juror eResponse PA Law Help Self Help - Custody Self Help - Divorce Juror Handbook Language Access Family Court Self Represented Litigant Guide Government Center Quick Links Marriage Licenses Crisis Connection Certified Recovery Specialist Public Access Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu A to Z Court Departments Local Rules FAQ Government Center Menu A to Z Court Departments Local Rules FAQ Government Center Menu A to Z Court Departments Local Rules FAQ Government Center Menu A to Z Court Departments Local Rules FAQ Government Center Menu A to Z Court Departments Local Rules FAQ Government Center Family Law Advisory Council Home / Court Departments / Family Law Advisory Council Family Law Advisory Council Home / Court Departments / Family Law Advisory Council Family Law Advisory Council Home / Court Departments / Family Law Advisory Council " -2149,https://delcopa.gov/publicrelations/releases/18pdfs/18efilingprogramoct11.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -2150,http://www.longbeach.gov/police/press-releases/traffic-fatality-7th-and-olive/,Media Bulletins,Agency-Published Resources,TRAFFIC FATALITY 7TH AND OLIVE,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 3/5/2017 FOR IMMEDIATE RELEASE Press Release # 2017 Subject: TRAFFIC FATALITY 7TH AND OLIVE Contact: Media Relations Detail (562) 570-5273 On March 4, 2017 at approximately 5:52 PM, Long Beach Police Officers were dispatched to a vehicle versus pedestrian traffic collision at 7th Street and Olive Avenue. Upon arrival officers found that Long Beach Fire was transporting an elderly male pedestrian to a local hospital in critical condition after a gray 2011 Nissan Versa collided with him. The driver of the Nissan is a 28-year-old male resident of Santa Rosa and remained at the scene during this investigation. The pedestrian has not been identified at this time. Long Beach Police found that the male pedestrian, for an unknown reason, ran off the southwest corner of 7th Street and Olive into the path of the 2011 Nissan that was traveling eastbound on 7th Street and had a green traffic light to continue through the intersection of Olive Avenue. The driver of the Nissan had no time to stop prior to colliding with the pedestrian. The pedestrian was later pronounced deceased at a Long Beach Hospital. Anyone who may have information regarding this incident is asked to call Long Beach Police Department Collision Investigation Detail Detective David Lauro at (562) 570-7355. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2151,https://www.antioch.il.gov/wpfb-file/11-07-16-police-and-fire-agenda-pdf-5/,Poor Data Source,Poor Data Source,"11-07-16 Police And Fire Agenda - Antioch, IL",11 07 16 police and fire agenda pdf commissions commission agendas 2016 2017 05 17 08 41 32 0000,200,"Home - Antioch, IL","[""11-07-16 Police And Fire Agenda""]",[],[],[],[],[],Open toolbar Accessibility Tools Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset -2152,https://sanramon.ca.gov/policenews,List of Data Sources,Info About Agencies,Police News - City of San Ramon,"",200,Just a moment...,"[""Police News""]","[""Contact Us"", ""Useful Links""]","["">>> Read Archived Police News""]",[],[],[],"" -2153,https://spdblotter.seattle.gov/2015/06/19/police-sting-blackmailer-after-she-tries-to-extort-woman-over-lurid-cellphone-pics/,Media Bulletins,Agency-Published Resources,Police Sting Blackmailer After She Tries to Extort Woman Over Lurid Cellphone Pics - SPD Blotter,"",200,403 Forbidden,"[""Police Sting Blackmailer After She Tries to Extort Woman Over Lurid Cellphone Pics""]","[""Find Posts By Topic"", ""You might also like..."", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],SPD Blotter Seattle Police Department (SPD) Home Topics SPD Blotter Seattle Police Department (SPD) Home Topics SPD Blotter Seattle Police Department (SPD) Home Topics Search Search Search Search Find Posts By Topic Police Precincts East Precinct North Precinct Southwest Precinct South Precinct West Precinct Data and Crime Trends Investigations 2018 Homicides 2019 Homicides 2020 Homicides Statements and News Releases Chief of Police News Releases Events Alerts Community Outreach Traffic and Collisions Significant Incident Reports Find Posts By Topic Police Precincts East Precinct North Precinct Southwest Precinct South Precinct West Precinct Data and Crime Trends Investigations 2018 Homicides 2019 Homicides 2020 Homicides Statements and News Releases Chief of Police News Releases Events Alerts Community Outreach Traffic and Collisions Significant Incident Reports Police Precincts East Precinct North Precinct Southwest Precinct South Precinct West Precinct Data and Crime Trends Investigations 2018 Homicides 2019 Homicides 2020 Homicides Statements and News Releases Chief of Police News Releases Events Alerts Community Outreach Traffic and Collisions Significant Incident Reports -2154,https://www.dps.arkansas.gov/law-enforcement/arkansas-state-police/divisions/highway-patrol/troop-j-commander/,Personnel Records,Info About Officers,Troop J Commander - Arkansas Department of Public Safety,"",200,Home - Arkansas Department of Public Safety,"[""Flag Status""]","[""Troop J Commander"", ""Contact ASP"", ""Helpful ASP links"", ""Connect with ASP"", ""Respect. Integrity. CUSTOMER SERVICE. TEAMWORK. SERVANT LEADERSHIP. CONTINUOUS IMPROVEMENT"", """", ""© 2024 All rights Reserved. Arkansas.gov""]","[""Captain Kyle Drown""]",[],"[""About DPS"", ""DPS Links"", ""DPS Address"", ""Your Arkansas.gov"", ""Top Online Services"", ""Helpful Information""]",[],"" -2155,http://www.longbeach.gov/police/press-releases/click-it-or-ticket-campaign-starts-may-22/,Media Bulletins,Agency-Published Resources,CLICK IT OR TICKET CAMPAIGN STARTS MAY 22,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2156,http://lafayettepolice.us/735/youth-fire-setter-program,Not Criminal Justice Related,Not Criminal Justice Related,"Youth Fire Setter Program | Lafayette, IN - Official Website","The Youth Firesetting Program is a program designed to teach children and parents that matches and lighters are tools, not toys.",200,"Police Department | Lafayette, IN - Official Website","[""Youth Fire Setter Program""]",[],"[""Contact Us"", ""Todd Trent"", ""Lafayette Fire Department"", ""Hours"", ""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -2157,http://www.longbeach.gov/police/press-releases/murder-and-weapons-charges-filed-in-january-homicide/,Media Bulletins,Agency-Published Resources,MURDER AND WEAPONS CHARGES FILED IN JANUARY HOMICIDE,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 2/26/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: MURDER AND WEAPONS CHARGES FILED IN JANUARY HOMICIDE Contact: Media Relations (562) 570-5273 On February 21, 2014, detectives arrested 26 year-old Thearath Sam at his residence in Pomona for the murder of Sambo Chhoy. Sambo was gunned down in the 1100 block of New York Street in Long Beach on January 21, 2014. Although both Thearath Sam and Sambo Chhoy are suspected gang members it is not believed that gang rivalry was the motivation for the murder, rather a personal dispute between the two men. On February 25, 2014, the Los Angeles County District Attorney's Office filed murder and weapons charges against Thearath Sam. Anyone with information regarding this murder is urged to contact Long Beach Police Homicide Detectives Hugo Cortez and Peter Lackovic at (562) 570-7244. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 2/26/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: MURDER AND WEAPONS CHARGES FILED IN JANUARY HOMICIDE Contact: Media Relations (562) 570-5273 On February 21, 2014, detectives arrested 26 year-old Thearath Sam at his residence in Pomona for the murder of Sambo Chhoy. Sambo was gunned down in the 1100 block of New York Street in Long Beach on January 21, 2014. Although both Thearath Sam and Sambo Chhoy are suspected gang members it is not believed that gang rivalry was the motivation for the murder, rather a personal dispute between the two men. On February 25, 2014, the Los Angeles County District Attorney's Office filed murder and weapons charges against Thearath Sam. Anyone with information regarding this murder is urged to contact Long Beach Police Homicide Detectives Hugo Cortez and Peter Lackovic at (562) 570-7244. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2158,https://estespark.colorado.gov/departments/police/support-services/auxiliary-unit,Training & Hiring Info,Info About Officers,Auxiliary Unit | Town of Estes Park,"",200,Home | Town of Estes Park,"[""Auxiliary Unit""]",[],"[""Estes Park Police Department Auxiliary Unit"", ""Language Translation""]",[],"[""Outstanding volunteers who contribute to a wonderful Town""]",[],"" -2159,http://www.longbeach.gov/police/press-releases/traffic-fatality--lb-blvd----market-street-/,Media Bulletins,Agency-Published Resources,Traffic Fatality (LB Blvd. & Market Street),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 4/5/2016 FOR IMMEDIATE RELEASE Press Release # Subject: TRAFFIC FATALITY Contact: Media Relations Detail (562) 570-5273 On Monday, April 4, 2016, at approx. 6:06 a.m., officers were dispatched to the area of Long Beach Boulevard and Market Street regarding a vehicle vs. pedestrian injury traffic collision, which later resulted in the death of the male adult pedestrian. When officers arrived, they located a critically injured unconscious male pedestrian on Long Beach Boulevard between Market Street and Plymouth Street. Long Beach Fire Department personnel arrived on scene and transported the pedestrian to a local hospital. Based on the preliminary investigation, the pedestrian was crossing eastbound on Long Beach Boulevard mid-block, between Market Street and Plymouth Street, when he was struck by a 2008 Chevy Equinox. The Chevy was traveling northbound on Long Beach Boulevard in the #1 lane from Plymouth Street at the time of the collision, and being driven by a 24-year-old female resident of Hawthorne. The driver remained at the scene, and was questioned and released. The investigation remains ongoing. Today, April 5, 2016, the LBPD received notification from the hospital that the pedestrian, only being identified as a 78-year-old resident of Long Beach pending notification of next of kin, had died from his injuries. Anyone who may have information regarding this incident is asked to call Long Beach Police Collision Investigation Detective David Lauro at (562) 570-7355. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting www.lacrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2160,http://www.paloshillspolice.us/wp-content/uploads/2017/02/bozen_17.jpg,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -2161,http://www.longbeach.gov/police/press-releases/officerinvolvedshooting/,Media Bulletins,Agency-Published Resources,officerinvolvedshooting,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2162,https://champaignil.gov/tag/champaign-police-department-releases-holiday-traffic-enforcement-numbers/,Media Bulletins,Agency-Published Resources,Champaign Police Department releases holiday traffic enforcement numbers Archives - City of Champaign,"",200,403 Forbidden,"[""Items tagged: Champaign Police Department releases holiday traffic enforcement numbers""]","[""Champaign Police Department releases holiday traffic enforcement numbers"", ""News Releases"", ""Department News""]",[],[],[],[],"skip to content City of Champaign Main Menu Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs Items tagged: Champaign Police Department releases holiday traffic enforcement numbers Search Champaign Police Department releases holiday traffic enforcement numbers Posted: January 8, 2019 The Champaign Police Department conducted additional traffic enforcement over the holidays from Dec. 17 to Jan. 2., reminding motorists to drive sober and buckle up as part of the Illinois Drive Sober or Get Pulled Over enforcement effort. The Champaign Police joined the Illinois State Police and local law enforcement agencies across Illinois to reduce […] Categories: Police Department Press Releases | Tags: Champaign Police Department releases holiday traffic enforcement numbers , Click It or Ticket , Drive Sober or Get Pulled Over Subscribe to City News Read All City News News Releases General Construction Fire Department Police Department Department News City Council City Manager’s Office Equity and Engagement Department Finance Department Fire Department Human Resources Department Information Technologies Department Legal Department Library METCAD 9-1-1 Neighborhood Services Department Planning and Development Department Police Department Public Works Department The Champaign Insider City Newsletter City of Champaign City of Champaign 102 N. Neil St. Champaign, IL 61820 217-403-8700 Site Disclaimer I Privacy Policy Powered by Translate City of Champaign Main Menu Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs City of Champaign Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs Home About City Council Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions City Departments Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works Contact Us Online Services Jobs Meeting Documents Vision, Guiding Principles, and Goals Council Videos Boards and Commissions Building Safety Division City Manager’s Office Equity and Engagement Finance Fire Human Resources Information Technologies Legal Library Liquor Commissioner Neighborhood Services Parking Programs Planning and Development Police Public Works " -2163,http://police.portlandmaine.gov/805/orders-as-passed-fiscal-year-2017-to-201,List of Data Sources,Info About Agencies,"Orders as Passed Fiscal Year 2017 to 2018 | Portland, ME - Official Website",View Orders as Passed in the Fiscal Year 2017 to 2018.,200,"Portland, ME - Official Website | Official Website","[""Orders as Passed Fiscal Year 2017 to 2018""]",[],[],[],[],[],Skip to Main Content Pay & Apply Your Government Services Business Community Home Your Government City Council Council Orders as Passed Orders as Passed Fiscal Year 2017 to 2018 Orders as Passed Fiscal Year 2017 to 2018 Orders as Passed Fiscal Year 2022 to 2023 Orders as Passed Fiscal Year 2021 to 2022 Orders As Passed Fiscal Year 2020 to 2021 Orders As Passed Fiscal Year 2019 to 2020 Orders as Passed Fiscal Year 2018 to 2019 Orders as Passed Fiscal Year 2017 to 2018 Orders as Passed Fiscal Year 2016 to 2017 Orders as Passed Fiscal Year 2015 to 2016 Orders as Passed Fiscal Year 2014 to 2015 Orders as Passed Fiscal Year 2013 to 2014 Orders as Passed Fiscal Year 2012 to 2013 Government Websites by CivicPlus® Pay & Apply Your Government Services Business Community Home Your Government City Council Council Orders as Passed Orders as Passed Fiscal Year 2017 to 2018 Orders as Passed Fiscal Year 2017 to 2018 Orders as Passed Fiscal Year 2022 to 2023 Orders as Passed Fiscal Year 2021 to 2022 Orders As Passed Fiscal Year 2020 to 2021 Orders As Passed Fiscal Year 2019 to 2020 Orders as Passed Fiscal Year 2018 to 2019 Orders as Passed Fiscal Year 2017 to 2018 Orders as Passed Fiscal Year 2016 to 2017 Orders as Passed Fiscal Year 2015 to 2016 Orders as Passed Fiscal Year 2014 to 2015 Orders as Passed Fiscal Year 2013 to 2014 Orders as Passed Fiscal Year 2012 to 2013 Government Websites by CivicPlus® Pay & Apply Your Government Services Business Community Home Your Government City Council Council Orders as Passed Orders as Passed Fiscal Year 2017 to 2018 Orders as Passed Fiscal Year 2017 to 2018 Orders as Passed Fiscal Year 2022 to 2023 Orders as Passed Fiscal Year 2021 to 2022 Orders As Passed Fiscal Year 2020 to 2021 Orders As Passed Fiscal Year 2019 to 2020 Orders as Passed Fiscal Year 2018 to 2019 Orders as Passed Fiscal Year 2017 to 2018 Orders as Passed Fiscal Year 2016 to 2017 Orders as Passed Fiscal Year 2015 to 2016 Orders as Passed Fiscal Year 2014 to 2015 Orders as Passed Fiscal Year 2013 to 2014 Orders as Passed Fiscal Year 2012 to 2013 Government Websites by CivicPlus® -2164,https://www.southamptontownnypolice.gov/faq.aspx?qid=452,Not Criminal Justice Related,Not Criminal Justice Related,FAQs • I am experiencing ePermitting problems such as upload,"",200,"Police | Southampton, NY - Official Website",[],"[""▼ Trustees""]","[""Site Tools"", ""Categories"", ""Live Edit"", ""Contact Us"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -2165,https://www.milpitas.gov/milpitas/departments/police/investigations/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -2166,https://police.birminghamal.gov/aboutfuture/,Contact Info & Agency Meta,Info About Agencies,About | Birmingham Police Department,"",200,"Home | Police Department - Birmingham, AL","[""Birmingham Police Department Commitment | Excellence | Integrity""]","[""Putting People First"", ""About""]",[],"[""Hours & Info"", ""Upcoming Events"", ""CRIMESTOPPERS"", ""Police Information"", ""Quick Links"", ""I Need...""]",[],[],"Birmingham Police Department Commitment | Excellence | Integrity Putting People First Birmingham Police Department Commitment | Excellence | Integrity Putting People First Birmingham Police Department Commitment | Excellence | Integrity Putting People First Home About Command Staff Bureaus Press Releases Join the Team Crime Stats CALEA IAD Stats Inmate Search Contacts Search Home About Command Staff Bureaus Press Releases Join the Team Crime Stats CALEA IAD Stats Inmate Search Contacts Search Search About In This Section Motto: Commitment.Excellence.Integrity Mission: It is the mission of the Birmingham Police Department to provide the highest quality police services to impact crime, build community, trust, and improve the quality of life for all. Vision: The Birmingham Police Department strives to provide a safe and sustainable community that fosters relationships, trust, and reduced crime provided by the highest level of police services. BUREAUS The City of Birmingham, founded on December 19th, 1871, is the largest municipal government in the State of Alabama. Our city encompasses over 146 square miles and is located in Jefferson and Shelby counties. Our police department, also the largest in the state, is comprised of 912 sworn officers and 325 professional staff. We serve a population of over 212,000 citizens in a metro area of over 1.1 million. The Birmingham Police Department is a progressive law enforcement agency that has embraced modern technology along with forming a strong partnership with our citizens and businesses to provide a more safe community environment and promote robust business growth. The Birmingham Police Department is comprised of three major bureaus; the Administrative Bureau , Field Operations Bureau and Investigative Bureau . These three bureaus work together in a highly professional collaboration to provide our citizens with many of the preeminent modern police services available in the nation. We are also honored to be a partner in the 2015 National Initiative for Building Community Trust and Justice with the U.S. Department of Justice. COMMAND STAFF The command staff forms the core administration of the Birmingham Police Department. The Chief of Police is the head of administration. He is responsible for managing and directing the overall operations of the department. The chief’s executive staff includes the Assistant Chief, Deputy Chief of Investigative Operations and Deputy Chief of Patrol Operations. In this section you will find more information on the Chief of Police, Scott Thurmond and the Birmingham Police Department’s Executive Staff, as well as, Unit, Division and Shift Commanders. Captains Captain Frank Alexander II Custody Services Division Commander Captain Cochran Tactical Operations Commander Captain Harry Greenberg Crimes Against Property Commander Captain Edmond Hanks North Precinct Commander Captain James Jackson Executive Assistant to the Assistant Chief of Police Captain Torry Mack Special Enforcement Division Commander Captain Curtis Mitchell Jr. West Precinct Commander Captain Michelle Pruitt Internal Affairs Division Commander Captain Julie Quigley-Vining East Precinct Captain Joe Roberts South Precinct Commander Captain David Rockett Forensic Science/Science Center Captain Michael Sellers Crimes Against Person Division Commander " -2167,https://coloradosprings.gov/police-department/page/police-blotter,Media Bulletins,Agency-Published Resources,Police Blotter | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""Police Blotter""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[],"" -2168,https://www.pinevillenc.gov/organizer/pineville-police-2/,Poor Data Source,Poor Data Source,"pineville police – Town of Pineville, NC","",200,403 Forbidden,"[""Upcoming Events"", ""pineville police"", ""Town of Pineville Updates""]","[""Town of Pineville Contacts"", ""Important News & Updates"", ""Special Meeting Notice"", ""Early Voting in Pineville"", ""Advisory Board Openings for Pineville Residents"", ""Follow Pineville on Facebook""]","[""Emergency: Police, Fire & Rescue"", ""Non-Emergency:"", ""Town Hall Mailing Address:"", ""Town Hall Physical Address:"", ""Town Hall Office Hours:""]",[],[],[],"" -2169,http://www.longbeach.gov/police/press-releases/dui-driver-s-license-checkpoint-planned-this-weekend-7-/,Media Bulletins,Agency-Published Resources,DUI-DRIVER'S LICENSE CHECKPOINT PLANNED THIS WEEKEND(7),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2170,http://police.byram-ms.us/bradford-place-auto-burglary/,Media Bulletins,Agency-Published Resources,Bradford Place Auto Burglary | Byram Police Department,"",200,Byram Police Department | Byram Police Department,"[""Bradford Place Auto Burglary""]","[""Byram Weather""]","[""Post navigation"", ""Byram Police Department""]",[],[],[],"Byram Police Department Home COVID-19 Resources I received a letter about my stolen item – NCIC Validation Search for: Main Menu ≡ × Home About Us Partners With Police Victim Services Center for Violence Preventon MS Coalition Against Domestic Violence Mississippi Coalition Against Sexual Assault The Tower – Specialized Services for Human Trafficking Victims Mississippi Sex Offender Registry Search MDOC Victim Notifications House Watch Alarm Registration Employment Contact Us Pass it On Police Records Request Commend an Officer/Employee File a Complaint FAQs News Police Records Police Records Request NCIC Validation Byram, Mississippi Sites > Byram Police Department > News > News Posts & Releases > Bradford Place Auto Burglary Bradford Place Auto Burglary On June 26, an auto burglary was reported near Building 53 at Bradford Place Apartments. Another similar burglary has since been reported. If you know the identity of the individual shown here, please contact Byram Police Detectives at (601) 372-2327 or Metro CrimeStoppers at (601) 355-TIPS Video Player http://police.byram-ms.us/wp-content/uploads/sites/2/2020/06/cars_2020-06-26T13_01_54-0500.mp4 Media error: Format(s) not supported or source(s) not found Download File: http://police.byram-ms.us/wp-content/uploads/sites/2/2020/06/cars_2020-06-26T13_01_54-0500.mp4?_=1 00:00 00:00 00:00 Use Up/Down Arrow keys to increase or decrease volume. Ref: Inc. 20-193 This entry was posted in News Posts & Releases on June 30, 2020 by David Errington . Post navigation ← Arrest Made in Holiday Inn Express Shooting Arrest Made in Byram Armed Robberies → Byram Police Department 141 Southpointe Dr. Byram, MS 39272 For general questions, please call: (601) 372-2327 Social Media facebook linkedin instagram Byram Weather Home About Us Partners With Police Employment Contact Us FAQs News Police Records Copyright © 2024 Byram Police Department . Back to top Byram Police Department Home COVID-19 Resources I received a letter about my stolen item – NCIC Validation Search for: Main Menu ≡ × Home About Us Partners With Police Victim Services Center for Violence Preventon MS Coalition Against Domestic Violence Mississippi Coalition Against Sexual Assault The Tower – Specialized Services for Human Trafficking Victims Mississippi Sex Offender Registry Search MDOC Victim Notifications House Watch Alarm Registration Employment Contact Us Pass it On Police Records Request Commend an Officer/Employee File a Complaint FAQs News Police Records Police Records Request NCIC Validation Byram Police Department Home COVID-19 Resources I received a letter about my stolen item – NCIC Validation Search for: Byram Police Department Main Menu ≡ × " -2171,https://delcopa.gov/publicrelations/releases/2022/pacareerlinkdelcohostsfreecareerworkshopthroughjune.html,Not Criminal Justice Related,Not Criminal Justice Related,"PA CareerLink® Delaware County Hosts Free Career Workshops April Through June - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""PA CareerLink® Delaware County Hosts Free Career Workshops April Through June""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play PA CareerLink® Delaware County Hosts Free Career Workshops April Through June Home / Departments / Public Relations Releases / PA CareerLink® Delaware County Hosts Free Career Workshops April Through June Released: March 31, 2022 During its March 2 meeting, County Council approved a project created by the County’s Workforce Development Board that would offer live, online workshops for County residents who are unemployed, underemployed, or in search of a career change. The Delaware County Workforce Development Board’s PA CareerLink® Delaware County offers over two dozen workshops per month April through June. A full list of PA CareerLink® Delaware workshops can be found here: https://pacareerlinkdelco.org/events/ Public Relations Navigation Press Releases County Newsletter Use of County Facility Form Questions about COVID-19 vaccines? Please call the Delaware County Health Department Wellness Line: 484-276-2100. Adrienne Marofsky, Director Government Center, 226A 201 W. Front St. Media, PA 19063 Phone: 610-891-4943 delcopr@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play PA CareerLink® Delaware County Hosts Free Career Workshops April Through June Home / Departments / Public Relations Releases / PA CareerLink® Delaware County Hosts Free Career Workshops April Through June PA CareerLink® Delaware County Hosts Free Career Workshops April Through June Home / Departments / Public Relations Releases / PA CareerLink® Delaware County Hosts Free Career Workshops April Through June PA CareerLink® Delaware County Hosts Free Career Workshops April Through June Home / Departments / Public Relations Releases / PA CareerLink® Delaware County Hosts Free Career Workshops April Through June " -2172,http://www.longbeach.gov/police/press-releases/reward-issued-in-2014-case/,Media Bulletins,Agency-Published Resources,REWARD ISSUED IN 2014 CASE,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 12/16/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: $10,000 REWARD ISSUED IN MURDER INVESTIGATION; POLICE SEEK PUBLIC’S HELP TO IDENTIFY SUSPECT/VEHICLE Contact: Media Relations Detail (562) 570-5273 Click on above photos to view enlarged images View video of vehicle fleeing the area The Los Angeles County Board of Supervisors, at the recommendation of Supervisor Don Knabe, has issued a $10,000 reward for information leading to the arrest and conviction of the person(s) responsible for the 2014 murder of 33-year-old Charles Bell of Compton. On March 23, 2014, around 2:55 a.m., Long Beach Police responded to a shots fired call in the area of 6th Street and Long Beach Boulevard. Officers discovered four male adults who appeared to have been struck by gunfire. Mr. Bell, who sustained a gunshot wound to the torso, was lying in the parking lot of a restaurant and was determined deceased at the scene. Long Beach Fire Department paramedics transported the three other victims to local hospitals. The three survived. The preliminary investigation indicated that the suspect attempted to instigate a fight with individuals who were leaving the restaurant and it escalated to a shooting. The suspect fled with multiple people in a dark colored SUV. The suspect is described as an African-African male, approximately 25 years old. He remains outstanding. Detectives are releasing surveillance video of the suspect vehicle fleeing westbound on 6th Street (the wrong way on a one-way street). Detectives are hopeful the reward may prompt reluctant witnesses to come forward and provide additional information. The investigation remains ongoing. Anyone with information regarding the murder is urged to contact Long Beach Police Homicide Detectives S. Lasch and D. Goodman at (562) 570-7244. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2173,https://www.hayward-ca.gov/discover/news/may21/police-blotter-may-2-8-2021,Media Bulletins,Agency-Published Resources,"Police Blotter: May 2-8, 2021 | City of Hayward - Official website","STATISTICAL HIGHLIGHTSMay 2-8, 2021 Weekly Arrests (Includes cite/released):37 Homicide 0Weekly Calls for Service: 2,101 Assault—Great Bodily Injury 2Weekly Reports Taken:193 Burglary— Nonresidential 4Weekly Complaints(against HPD):0 Burglary—Residential 1Weekly Calls Received:5,541 Theft 18This data is subject to change and based on crimes that were reported to have occurred",200,City of Hayward - Official website,"[""Police Blotter: May 2-8, 2021""]","[""Look Deeper"", ""Welcome home"", ""Where opportunity lives"", ""Find what you need. Fast."", ""Working for You"", ""Your Hayward Environment"", ""You are here. So is everything else."", ""Search form"", ""Look Deeper"", ""Welcome home"", ""Where opportunity lives"", ""Find what you need. Fast."", ""Working for You"", ""Your Hayward Environment""]",[],"[""STATISTICAL HIGHLIGHTS"", ""May 2-8, 2021"", """", """", """", ""Significant Incidents"", ""Do you need help paying energy bills? You may qualify for federal aid."", ""Hayward Receives Grant for Safe Routes to Schools Infrastructure and Bicycle Incentives"", ""Hayward Celebrates Earth Day at Weekes Park!"", ""Spring 2024 Compost Giveaway"", ""Sustainable Solutions for Celebrating Easter"", ""City Hall and Nonessential Services Closure: Monday, Apr. 01, 2024"", ""Presidential Primary Election: Tuesday, Mar. 5, 2024"", ""Library Closure: February 12 and February 19, 2024."", ""City Hall and Nonessential Services Closures: Monday, Feb. 19"", ""City Hall and Nonessential Services Closure: Monday, Jan. 15, 2024"", ""YOU ARE HERE. SO IS EVERYTHING ELSE."", ""Related News"", ""Police Blotter - February 25-March 2, 2024"", ""Weekly Blotter - February 18-24, 2024"", ""Police Blotter - February 11-17, 2024"", ""Report Problems"", ""Ask Questions"", ""Make a Suggestion"", ""Translate"", ""Search""]",[],[],Skip to main content -2174,https://www.knoxvilletn.gov/government/city_departments_offices/police_department/investigations_bureau/special_crimes_unit/domestic_violence_help,Resources,Agency-Published Resources,Domestic Violence Help - City of Knoxville,police*,200,Just a moment...,"[""Domestic Violence Help"", ""Police Chief""]",[],[],[],[],[],Skip navigation {1} ##LOC[OK]## {1} ##LOC[OK]## {1} ##LOC[OK]## {1} ##LOC[OK]## -2175,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/042021blotter.pdf,Media Bulletins,Agency-Published Resources,"","",404,"","","","","","","","" -2176,https://www.pleasantprairiewi.gov/departments/police/news/police_and_fire___rescue_news_archive/2021_news_releases/police_announce_promotions,Media Bulletins,Agency-Published Resources,Police Announce Promotions - Village of Pleasant Prairie,"",200,Just a moment...,[],"[""Police Announce Promotions""]","[""Follow Us on Social Media""]",[],[],[],"" -2178,https://www.knoxvilletn.gov/government/city_departments_offices/civil_service_department/how_to_apply_for_police,Training & Hiring Info,Info About Officers,How to Apply for Police Officer - City of Knoxville,civil*,200,Just a moment...,"[""How to Apply for Police Officer"", ""Civil Service Director""]","[""Civil Service is currently accepting applications for Police Officer Recruit, Lateral Entry Recruit, and Cadet! Click HERE to apply!""]","[""HERE""]",[],[],[],Skip navigation {1} ##LOC[OK]## {1} ##LOC[OK]## {1} ##LOC[OK]## {1} ##LOC[OK]## -2179,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/020921blotter.pdf,Media Bulletins,Agency-Published Resources,"","",404,"","","","","","","","" -2180,https://delcopa.gov/planning/developmentreview.html,Not Criminal Justice Related,Not Criminal Justice Related,Development Review,"",200,"Delaware County, Pennsylvania","[""Development Review""]",[],"[""I’m interested in…"", ""Planning Department Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Development Review Home / Departments / Planning Department / Development Review Delaware County planners provide advisory PA Act 247 reviews of proposed development, zoning amendments, and ordinances for County municipalities. The Planning Department (DCPD) strives to improve the quality of development throughout the County by conducting advisory reviews of all land developments, subdivisions, and ordinances proposed in Delaware County. Staff planners present their reviews to the Delaware County Planning Commission at its monthly meetings, where official recommendations are made. In addition, Development Review staff provide technical assistance to municipalities and developers on site planning and ordinance compliance issues. I’m interested in… Knowing more about the Delaware County Planning Commission Viewing what’s on the Planning Commission’s Meeting Agenda or the Prior Month Applications Submitting a Proposed Subdivision and/or Land Development Plan or Ordinance for review Submitting a Sewage Module for review Recording an Approved Subdivision and/or Land Development Plan Finding Parcel/Site Information Viewing the 2022 Year in Review: Subdivision and Land Development Reviews Viewing the Proposed Subdivision and Land Development Mapping Application * and Dashboard* to see plans reviewed by the Delaware County Planning Commission Viewing the Countywide Zoning Application* and Dashboard* Viewing a Municipal Zoning or Subdivision and Land Development Ordinance or Comprehensive Plan Viewing Delaware County's Subdivision and Land Development Ordinance (SALDO) Learning more about the William H. Bates Outstanding Land Development Awards * Browsers other than Internet Explorer or Microsoft Edge are recommended for optimal performance. Questions about Development Review? Contact the Planning Department at 610-891-5200 or Planning_Department@co.delaware.pa.us . For questions about building permits, please contact your municipality’s code enforcement officials to obtain information concerning requirements and specific permit application status for your town. Planning Department Navigation Access the Data and Mapping Innovation Hub About Planning Calendar Current Projects Delaware County 2035 Demographic Data Development Review Forms Funding Green Space and Trails Project Mapping Municipal Programs & Initiatives Planning Education Publications Gina Burritt, Director Planning Department 2 W. Baltimore Avenue Suite 202 Media, PA 19063 Phone: 610-891-5200 Fax: 610-891-5203 Email: Planning_Department@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2023 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu " -2181,http://www.longbeach.gov/police/press-releases/murder-investigation---1400-blk-pacific-ave/,Media Bulletins,Agency-Published Resources,MURDER INVESTIGATION - 1400 BLK PACIFIC AVE,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 7/29/2018 FOR IMMEDIATE RELEASE Press Release # Subject: MURDER INVESTIGATION - 1400 BLK PACIFIC AVE Contact: Media Relations Detail (562) 570-5273 On Friday, July 27, 2018 at approximately 9:40 p.m., officers were dispatched to the 1400 Block of Pacific Avenue, regarding a vehicle versus pedestrian injury traffic collision, that resulted in the death of a male adult. Upon arrival, officers located the critically injured pedestrian laying in the street. The Long Beach Fire Department responded and transported the pedestrian to a local hospital, where he was later pronounced deceased. The driver of the vehicle fled the scene. Due to the suspicious circumstances, the Long Beach Police Department's Homicide Detectives responded to the scene. This incident is being investigated as an intentional act. The motive for the collision is unknown and the investigation remains ongoing. The identity of the victim is unknown at this time and will be determined by the Los Angeles County Coroner’s Office. Anyone who witnessed or has information regarding this incident is urged to call Long Beach Police Homicide Detectives M. Mattia and D. Goodman at (562) 570-7244. Anonymous tips may be submitted through “LA Crime Stoppers” by calling 1-800-222-TIPS (8477), downloading the “P3 Tips” app to your smart phone (available at the Apple App Store and Google Play), or visiting www.lacrimestoppers.org. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2182,https://www.ashevillenc.gov/news/asheville-police-urge-motorcycle-caution-on-town-mountain-road/,Media Bulletins,Agency-Published Resources,ERROR: The request could not be satisfied,"",200,The City of Asheville - Your Asheville,"[""403 ERROR""]","[""The request could not be satisfied.""]",[],[],[],[],"" -2183,https://delcopa.gov/controller/pdf/unclaimed/unclaimedfundslist.pdf,Resources,Agency-Published Resources,"","",200,"","","","","","","","" -2184,https://www.southamptontownnypolice.gov/faq.aspx?qid=288,Resources,Agency-Published Resources,FAQs • How do I contact the Bay Constable,"",200,"Police | Southampton, NY - Official Website",[],"[""▼ Town Police""]","[""Site Tools"", ""Categories"", ""Live Edit"", ""Contact Us"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -2185,http://www.longbeach.gov/police/press-releases/national-pharmaceutical-take-back-event/,Media Bulletins,Agency-Published Resources,NATIONAL PHARMACEUTICAL TAKE-BACK EVENT,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 10/20/2016 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: NATIONAL PHARMACEUTICAL TAKE-BACK EVENT Contact: Media Relations Detail (562) 570-5273 The Long Beach Police Department is once again joining forces with Long Beach Memorial Medical Center to participate in the Drug Enforcement Administration’s (DEA) National Pharmaceutical Take-Back initiative, along with several other law enforcement agencies around the nation. This initiative seeks to prevent increased pill abuse and theft through the collection of potentially dangerous expired, unused and unwanted prescription drugs. Previous events the department hosted yielded hundreds of pounds of pharmaceuticals and we are hoping this event will be just as successful. The event will offer a drive-thru service that is free and anonymous. Drivers never have to get out of their vehicles and can simply drive up to a disposal bin. The driver of the 25th, 50th, 75th, and 100th participating vehicles will be awarded a pair of Aquarium of the Pacific tickets. The event will be held as follows: Date: Saturday, October 22, 2016 Time: 10:00 a.m. – 2:00 p.m. Location: Long Beach Memorial Medical Center (enter main parking lot entrance off of Atlantic Ave. and exit onto Long Beach Blvd.) This initiative addresses a vital public safety and public health issue. Many Americans are not aware that medications that languish in home cabinets are highly susceptible to diversion, misuse and abuse. Prescription drug abuse in the United States is increasing at alarming rates, as are the number of accidental poisonings and overdoses due to their availability. Studies show that a majority of abused prescription drugs are obtained from family and friends, including from home medicine cabinets. In addition, many Americans do not know how to properly dispose of their unused medications, often flushing them down the toilet or throwing them away … both potential safety and health hazards. Once collected, the unwanted pharmaceuticals will be turned over to the DEA who will safely destroy the drugs. For more information regarding the National Take Back Initiative, visit www.dea.gov or contact the Long Beach Police Department’s Drug Investigations Section at (562) 570-7221. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2186,http://www.longbeach.gov/police/press-releases/police-seek-public-s-help-with-july-2014-murder-case--sketches-of-persons-of-interest-released/,Media Bulletins,Agency-Published Resources,POLICE SEEK PUBLIC'S HELP WITH JULY 2014 MURDER CASE; SKETCHES OF PERSONS OF INTEREST RELEASED,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 1/30/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: POLICE SEEK PUBLIC'S HELP WITH JULY 2014 MURDER CASE; SKETCHES OF PERSONS OF INTEREST RELEASED Contact: Media Relations Detail (562) 570-5273 Sketch #1 Sketch #2 Sketch #3 Sketch #4 (Click on a photo to enlarge) Long Beach Police are asking for the public’s help with the investigation of the gang-related murder of Kayon Dafney, which occurred around 12:33 p.m., on July 4, 2014, in North Long Beach. Homicide Detectives recently received tips describing a white 2-door convertible, which was seen in the area of the 6500 block of Gardenia around the time that the shooting occurred. Detectives reviewed several surveillance videos from the area of the murder and were successful in locating two vehicles that matched the description. Snapshots of the vehicles were disseminated through the media and several witnesses came forward. One witness was able to provide descriptions of several subjects who were seen in vehicles at the crime scene around the time the murder occurred. Detectives are hopeful the descriptions and sketches will encourage additional witnesses to come forward. The persons of interest are described as follows: Male, Black, mid 20’s, 5’5” - 5’8”, 155-170 pounds, wearing a white or gray colored t-shirt, seen exiting the passenger side of a small white 2-door convertible Male, Black, late 40’s - early 50’s, dark skinned, driving a small white 2-door convertible Male, Black, 20’s, thin faced, dark skinned wearing an unknown colored t-shirt Male, Black, early 20’s, light skinned, possible goatee and curly hair Tips also led detectives to believe this murder and the June 27, 2014 murder of Marcel Johns are related. Johns sustained multiple gunshot wounds and was pronounced deceased at the scene in the 5500 block of Dairy Avenue. Anyone with information regarding either murder is urged to contact Long Beach Homicide Detectives Teryl Hubert, Scott Lasch, or Michael Hubbard at (562) 570-7244. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2187,https://pittsburghpa.gov/police/police-contacts,Poor Data Source,Poor Data Source,"","",200,"City of Pittsburgh - Announcements, Special Events, Press Releases, City Permits, Careers, Pay your taxes, view Burgh's Eye View and more!","[""CAREERS"", ""CONTACT US"", ""FOLLOW US"", ""GUÍA DE RESIDENTES"", """", ""City-County Building Lighting - What Do Tonight's Colors Represent?""]",[],[],[],[],[],"PITTSBURGH REGISTER TO VOTE GUÍA DE RESIDENTES 311 COVID-19 UPDATES BUILDING ACCESSIBILITY CONTACT US FOLLOW US RESIDENTS 311 Citiparks Citizen Police Review Board City Planning Commission On Human Relations Engage PGH Ethics Hearing Board Finance Financial Empowerment Center Innovation & Performance Human Resources and Civil Service Job Opportunities Mobility & Infrastructure Office of Community Health & Safety Office of Film & Event Management Permits, Licenses, & Inspections Public Safety Public Works Schenley Skating Rink Special Events Voting Districts & Polling Places Winter Resource Center VISITORS Citiparks Engage PGH Explore Pittsburgh Next Pittsburgh Office of Film & Event Management Schenley Skating Rink Special Events VisitPittsburgh Welcoming Pittsburgh BUSINESS Bid Opportunities City Planning Finance Innovation & Performance Legislative Information Center Mobility & Infrastructure PGH Lab Permits, Licenses, & Inspections CITY HALL Boards, Authorities, Commissions City Clerk's Office City Council City Council Meetings, Agendas Community Development Block Grant Program Comprehensive Municipal Pension Trust Fund Controller's Office Human Resources and Civil Service Law Mayor's Cabinet Mayor's Office Municipal Pension Fund Office of Management & Budget Office of Municipal Investigations Public Safety City Hall History - Public Tours ONLINE APPS OneStopPGH Bid Opportunities CivicCentral Burgh's Eye View Dashburgh Engage PGH Facility Reservations Fiscal Focus Live Website Traffic Online Alarm Registration Open Book PGH Pay Parking Tickets PPA GoMobile PGH Pay PPAP Parking Lease Pay Real Estate Taxes PGH Watchdog Snow Angels Snow Plow Tracker Film & Event Permits Trash Schedule App CITY INFO About Pittsburgh City Directory Policies Press Releases Public Safety Blotter Refuse & Recycling Collection Tax Forms Council Meetings & Hearings Website Release Notes City Careers Women's Suffrage Centennial City Internships Citywide Event Schedule " -2188,http://www.longbeach.gov/police/about-the-lbpd/employment/join-lbpd/step-8/,Training & Hiring Info,Info About Officers,Step 8: Medical Screening,"",200,City of Long Beach,"[""Police Department""]","[""Step 8: Medical Screening""]","[""Mayor"", ""City Council"", ""Rex Richardson"", ""Mary Zendejas"", ""Cindy Allen"", ""Kristina Duggan"", ""Daryl Supernaw"", ""Megan Kerr"", ""Suely Saro"", ""Roberto Uranga"", ""Al Austin"", ""Dr. Joni Ricks-Oddie"", ""Dawn McIntosh"", ""Laura L. Doud"", ""Doug Haubert"", ""Tom Modica"", ""Monique DeLaGarza"", ""City-Wide Elected Officials"", ""Appointed Officials"", ""Online Payments"", ""Online Services"", ""In-Person Services"", ""Opening a Business"", ""Doing Business With The City"", ""Resources"", ""Most Popular"", ""Online Resources"", ""Attractions"", ""Business Associations"", ""Travel Resources"", ""Departments"", ""Job Opportunities"", ""Information"", ""LBPD"", ""Employment"", ""Bureaus"", ""News & Events"", ""Crime Info"", ""How Do I"", ""How Do I"", ""Contact Us"", ""Contact Info:"", ""Do."", ""Discover."", ""Connect."", ""Ask.""]","["""", ""1st District"", ""2nd District"", ""3rd District"", ""4th District"", ""5th District"", ""6th District"", ""7th District"", ""8th District"", ""9th District"", ""City Attorney"", ""City Auditor"", ""City Prosecutor"", ""City Manager"", ""City Clerk""]",[],[],"" -2190,https://controller.phila.gov/office-of-the-city-controller-announces-community-council-members-to-support-review-of-the-philadelphia-police-department/,Media Bulletins,Agency-Published Resources,Office of the City Controller Announces Community Council Members to Support Review of the Philadelphia Police Department - Office of the Controller,"",200,403 Forbidden,"[""Press Releases"", ""Press Releases: Office of the City Controller Announces Community Council Members to Support Review of the Philadelphia Police Department""]","[""Main Navigation"", ""Post Metadata"", ""Press Releases Pagination"", ""Footer""]","[""Post Categories:"", ""Post Tags:"", ""Contact Information"", ""Quick Links"", ""Newsletter Signup"", ""Copyright Information"", ""Legal Links""]","[""Address""]",[],[],"Skip to Main Content Office of the Controller Christy Brady, City Controller Main Navigation About Christy Brady Role & Function Divisions Staff Contact Us Job Opportunities Employee Rights Language Access Plan Audits, Reviews & Investigations Fraud Reporting Policy Analysis Reports Suggest a Data Release Media Request the Controller Press Releases Quick Guides Office of the Controller Christy Brady, City Controller Office of the Controller Christy Brady, City Controller Office of the Controller Christy Brady, City Controller Office of the Controller Christy Brady, City Controller " -2191,https://alpha.austin.gov/police-oversight/formal-complaint-arrest-requirement-for-assaultive-offenses-and-responsibility-to-know-and-comply/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -2192,http://www.longbeach.gov/police/press-releases/police-seek-additional-indecent-exposure-victims/,Media Bulletins,Agency-Published Resources,POLICE SEEK ADDITIONAL INDECENT EXPOSURE VICTIMS,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 2/20/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: POLICE SEEK ADDITIONAL INDECENT EXPOSURE VICTIMS Contact: Media Relations Detail (562) 570-5273 VIEW PHOTO On February 19, 2015, the Long Beach Police Department arrested a suspect on an indecent exposure warrant, and hope that additional victims they believe may exist will come forward. From June 2014 through December 2014, the police department received several calls from residents in the Bixby Knolls area regarding a male subject who drove a black vehicle who was seen masturbating in public. The suspect would expose himself to females as they were walking down the street. L.B.P.D. Sex Crimes detectives began investigating the case and interviewed several victims and witnesses within the community. Through their investigation, detectives were able to identify the suspect as 21-year-old Guadalupe Perez Jr. of Long Beach. Detectives presented their case to the City Prosecutor's Office for filing consideration. The City Prosecutor’s Office filed the case and issued a warrant for Perez’s arrest. Detectives from the Violent Sexual Predator Unit located Perez on February 19th and took him into custody on the outstanding indecent exposure warrant in the area of 6th Street and Golden Avenue in Long Beach. He is currently being held at the Long Beach City Jail on $50,000 bail, pending arraignment. The investigation is ongoing and detectives are attempting to identify additional victims. Anyone who has been a victim and has not reported the incident to police, or has information regarding this case, is encouraged to contact Long Beach Police Sex Crimes Detective Stacey Holdredge at (562) 570-7368. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2193,https://www.prospertx.gov/residents/police/police-department/about-the-department/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -2194,https://www.antioch.il.gov/wpfb-file/04-10-12-police-pension-agenda-pdf-5/,Poor Data Source,Poor Data Source,"04-10-12 Police Pension Agenda - Antioch, IL",04 10 12 police pension agenda pdf commissions fund agendas 2012 2017 05 17 08 41 32 0000,200,"Home - Antioch, IL","[""04-10-12 Police Pension Agenda""]",[],[],[],[],[],Open toolbar Accessibility Tools Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset -2195,https://cheswold.delaware.gov/cheswold-police-department-yearly-traffic-statistics/march-2021-traffic-stop-report/,Annual & Monthly Reports,Info About Agencies,March 2021 - Traffic Stop Report - Town of Cheswold,"",200,"Home - Town of Cheswold - Kent County, Delaware","[""Cheswold""]","[""Delaware"", ""March 2021 – Traffic Stop Report""]","[""Menu""]","[""Address:"", ""Call Us:"", ""Reach Out:""]",[],[],"Skip to Content Skip to Footer Toggle navigation Menu Government Mayor Town Council Boards & Commissions Departments Elections Meetings & Events Public Notices Past Minutes & Agendas Info Public Hearings Comprehensive Plan Ordinances Taxes & Fees Delinquent Tax List Forms Town Charter Flag Status Past Minutes & Agendas Resolutions Community About Our Town Cheswold Welcome Packet Cheswold’s Airport Cheswold Newsletter Churches & Houses of Worship Colleges & Universities Libraries Local Developments Public Schools News Police About the Cheswold Police Department Police Reports Chief’s Page Cheswold Police Officers Cheswold Police Department Policy Manual Civilian Complaint Packet Crime Statistics Cheswold Police Department – Yearly Traffic Statistics Informational Pamphlets and Forms Law Enforcement Links Most Wanted Police Contact Form Police Employment Police News Ride-A-Long Program Sex Offender List Vacation Check Requests Photo Galleries Contact Contact Us FOIA Form Skip to Content Skip to Footer Toggle navigation Menu Government Mayor Town Council Boards & Commissions Departments Elections Meetings & Events Public Notices Past Minutes & Agendas Info Public Hearings Comprehensive Plan Ordinances Taxes & Fees Delinquent Tax List Forms Town Charter Flag Status Past Minutes & Agendas Resolutions Community About Our Town Cheswold Welcome Packet Cheswold’s Airport Cheswold Newsletter Churches & Houses of Worship Colleges & Universities Libraries Local Developments Public Schools News Police About the Cheswold Police Department Police Reports Chief’s Page Cheswold Police Officers Cheswold Police Department Policy Manual Civilian Complaint Packet Crime Statistics Cheswold Police Department – Yearly Traffic Statistics Informational Pamphlets and Forms Law Enforcement Links Most Wanted Police Contact Form Police Employment Police News Ride-A-Long Program Sex Offender List Vacation Check Requests Photo Galleries Contact Contact Us FOIA Form Skip to Content Skip to Footer Toggle navigation Menu Government Mayor Town Council Boards & Commissions Departments Elections Meetings & Events Public Notices Past Minutes & Agendas Info Public Hearings Comprehensive Plan Ordinances Taxes & Fees Delinquent Tax List Forms Town Charter Flag Status Past Minutes & Agendas Resolutions Community About Our Town Cheswold Welcome Packet Cheswold’s Airport Cheswold Newsletter Churches & Houses of Worship Colleges & Universities Libraries Local Developments Public Schools News Police About the Cheswold Police Department Police Reports Chief’s Page Cheswold Police Officers Cheswold Police Department Policy Manual Civilian Complaint Packet Crime Statistics Cheswold Police Department – Yearly Traffic Statistics Informational Pamphlets and Forms Law Enforcement Links Most Wanted Police Contact Form Police Employment Police News Ride-A-Long Program Sex Offender List Vacation Check Requests Photo Galleries Contact Contact Us FOIA Form Cheswold Delaware Listen March 2021 – Traffic Stop Report March 2021 - Traffic Stop Report Cheswold Delaware Listen March 2021 – Traffic Stop Report March 2021 - Traffic Stop Report Listen March 2021 – Traffic Stop Report March 2021 - Traffic Stop Report Listen March 2021 – Traffic Stop Report March 2021 - Traffic Stop Report Listen March 2021 – Traffic Stop Report March 2021 - Traffic Stop Report Listen Address: 691 Main Street Cheswold, DE 19936 Call Us: (302) 734-6991 Reach Out: Contact Form FOIA Form " -2196,https://police.greenvillesc.gov/1719/internships,Resources,Agency-Published Resources,"Academic Internship and Research Program | Greenville, SC - Official Website",GPD offers internships to qualified students.,200,"Police Department | Greenville, SC - Official Website","[""Academic Internship and Research Program""]","[""Internships""]","[""Internship FAQs"", ""Contacts"", ""Internships"", ""Loading""]",[],[],[],Skip to Main Content -2198,https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0714/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -2199,https://coloradosprings.gov/police-department/article/news/update-officer-involved-shooting-hwy-115,Officer Involved Shootings,Police & Public Interactions,Update Officer Involved Shooting Hwy 115 and Fort Carson gate 2 | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""Update Officer Involved Shooting Hwy 115 and Fort Carson gate 2""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[],"" -2200,http://www.longbeach.gov/police/press-releases/pedestrian-safety-operation-a-success/,Media Bulletins,Agency-Published Resources,PEDESTRIAN SAFETY OPERATION A SUCCESS,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 9/16/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: PEDESTRIAN SAFETY OPERATION A SUCCESS Contact: Media Relations (562) 570-5273 The Long Beach Police Department conducted a pedestrian safety and education operation on Wednesday, September 16, 2015, from 7:00 am to 12:00 pm. Officers assigned to the Department’s Traffic Section deployed in areas with a high volume of pedestrian traffic. Officers conducted eighty-six (86) traffic stops on both drivers and pedestrians who violated the vehicle code. Instead of issuing citations, officers explained to people how they violated the law and provided a leaflet on pedestrian traffic safety. The postcard size leaflets were the result of a partnership between WalkLongBeach.org and the Long Beach Police Department. “Many citizens are unaware of the laws regarding pedestrians in the roadway,” said Lieutenant Kris Klein who is assigned to the Long Beach Police Department’s Traffic Section. “This operation was designed as an educational tool, and the leaflets were a great way to visually get the message out to the public” Walk Long Beach is a collaboration between community organizations and local government agencies to promote walking in Long Beach by making it more walkable for residents, workers, students and visitors, one step at a time. The expansive program includes promoting pedestrian safety, stakeholder training, walk auditing, promoting walking clubs and tourism throughout the city with specific focus on supporting disadvantaged communities. Walk Long Beach educates residents and stakeholders on how the character of their physical environment affects their ability and willingness to walk in their community. Funding for this program is provided by a grant from the California Office of Traffic Safety through the National Highway Traffic Safety Administration. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2201,http://www.longbeach.gov/police/press-releases/l.b.p.d.-promotes-assistant-chief/,Media Bulletins,Agency-Published Resources,L.B.P.D. PROMOTES NEW ASSISTANT CHIEF,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2202,https://delcopa.gov/departments/parks/pdf/dogparkapplication.pdf,Resources,Agency-Published Resources,"","",200,"","","","","","","","" -2203,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/010122blotter.pdf,Daily Activity Logs,Info About Officers,"","",404,"","","","","","","","" -2204,http://www.ryepolice.us/pressrelease/press-release-burglary-suspect,Media Bulletins,Agency-Published Resources,Rye Police Department Press Release - Burglary Suspect - Rye Police Department,"",200,Rye Police Department Welcome to the Rye Police Department - Rye Police Department,"[""Press Release - Burglary Suspect""]","[""Press Release – Burglary Suspect""]","[""Navigation"", ""Follow Us"", ""Facebook"", ""Email Updates"", ""Storm Preparedness Guide""]",[],[],[]," Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Chief’s Message Crime Prevention Victim Services Domestic Violence Computer Crime Identity Theft Press Releases Police Logs Events Event Permits Beach Permits FAQ Contact Us Navigate... Chief’s Message Crime Prevention - Victim Services - Domestic Violence - Computer Crime - Identity Theft Press Releases Police Logs Events - Event Permits - Beach Permits FAQ Contact Us Search Press Release - Burglary Suspect Home Press Releases Press Release – Burglary Suspect Press Release – Burglary Suspect June 18, 2019 In Press Releases Date of Release: June 18, 2019 Reference: Burglary Suspect On 06/18/19 at approximately 12:40 PM Rye Police were dispatched for a burglary in progress at 211 Brackett Rd. Home owners gave officers a description of a person who forced entry into their home. Gender: Male Race: White Build: Medium Height: approximately 6’ 0” Age: 20 to 30 years old Dark colored hair, dark colored beard Black shorts, white socks, grey sneakers, black hooded sweat shirt, black baseball style cap Olive green back pack, looks like a Ruck Sack military style, water bottle on side The bicycle was recovered by Rye Police. It is a Haro Mountain bicycle, color black, black seat with orange markings on seat. The burglary suspect attempted to steal a car from a driveway on Central Road. The person in the vehicle pulled the door closed and told the person NO. The suspect fled the scene. The suspect was seen by a Rye Police Officer. The suspect rode his bicycle behind private homes on Central Road. The Officer lost the suspect. Home owner at 146 Perkins Road reported the same description burglary suspect was in their home. The suspect stole a wallet and car keys. The home owner at 146 Perkins Road witnessed the burglary suspect steal their vehicle. A Rye Highway Department employee took a photo of the suspect described by the home owner’s and Rye Police Officer. Anyone with information is asked to please call Rye Police at 603-964-5522, Seacoast Crime Stoppers at 603-431-1199, Facebook @SeacoastCrimeStoppers. The Rye Police Department would like to thank the North Hampton Police, the dispatchers and deputies of the Rockingham County Sheriff Department, Greenland Police, and Portsmouth Police Departments for assisting at the scene. Thanks to the Rye Highway Department employees and citizens for noticing suspicious activity and forwarding the information to Rye Police officers. See attached photo of burglary suspect. Navigation About Rye Animal Control Announcements Beach Information Careers Chief’s Message Computer Crime Contact Us Coronavirus Crime Prevention Directions Domestic Violence FAQ Firearms Safety Fireworks Forms Identity Theft Mission Statement Parking Payments Personnel Police Logs Prescription Drug Disposal Press Releases Report Request Town Ordinances Victim Services West Nile / EEE Follow Us Facebook Email Updates Subscribe to our newsletter. We promise you won't get flooded with junk! Email * Storm Preparedness Guide Developed by ThemeMakers " -2205,https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/summary/092722summary.pdf,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -2206,https://www.coppelltx.gov/644/pay-bills-fines,Resources,Agency-Published Resources,"Pay Bills & Fines | Coppell, TX",Learn how to pay for utility bills and pay fines and citations.,200,"Coppell, TX | Official Website","[""Pay Bills & Fines""]",[],"[""Loading""]","[""Pay Citation"", ""Pay Tax Bill"", ""Pay Water Bill""]",[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Government Residents Business Engage I Want To... Visitors Home Residents Pay Bills & Fines Pay Bills & Fines 9 1 1 2 Pay Citation There are a variety of ways that you can make payments to the Coppell Municipal Court. Pay Tax Bill This program is designed to help you access property tax information and pay your property taxes online. Pay Water Bill Pay your water bill online. Pay Citation Pay Tax Bill Pay Water Bill Agendas & Minutes Alert Sign-Up Citizen Report E-News Pay Water Bill Permits 255 E. Parkway Blvd., P.O. Box 9478, Coppell, TX 75019 Phone: 972-462-0022 | Email us Site Map Contact Us Accessibility Copyright Notices Privacy Policy Employee Login /QuickLinks.aspx Government Websites by CivicPlus® Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Government Residents Business Engage I Want To... Visitors Home Residents Pay Bills & Fines Pay Bills & Fines 9 1 1 2 Pay Citation There are a variety of ways that you can make payments to the Coppell Municipal Court. Pay Tax Bill This program is designed to help you access property tax information and pay your property taxes online. Pay Water Bill Pay your water bill online. Pay Citation Pay Tax Bill Pay Water Bill Agendas & Minutes Alert Sign-Up Citizen Report E-News Pay Water Bill Permits 255 E. Parkway Blvd., P.O. Box 9478, Coppell, TX 75019 Phone: 972-462-0022 | Email us Site Map Contact Us Accessibility Copyright Notices Privacy Policy Employee Login /QuickLinks.aspx Government Websites by CivicPlus® Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Government Residents Business Engage I Want To... Visitors Home Residents Pay Bills & Fines Pay Bills & Fines 9 1 1 2 Pay Citation There are a variety of ways that you can make payments to the Coppell Municipal Court. Pay Tax Bill This program is designed to help you access property tax information and pay your property taxes online. Pay Water Bill Pay your water bill online. Pay Citation Pay Tax Bill Pay Water Bill Agendas & Minutes Alert Sign-Up Citizen Report E-News Pay Water Bill Permits 255 E. Parkway Blvd., P.O. Box 9478, Coppell, TX 75019 Phone: 972-462-0022 | Email us Site Map Contact Us Accessibility Copyright Notices Privacy Policy Employee Login /QuickLinks.aspx Government Websites by CivicPlus® " -2207,https://police.greenvillesc.gov/1865/credit-union,Not Criminal Justice Related,Not Criminal Justice Related,"My Account • Greenville, SC • CivicEngage","Engage your community – connect to news, events and information you care about.",200,"Police Department | Greenville, SC - Official Website","[""Website Sign In""]","[""Sign In""]","[""Loading""]",[],[],[],"Skip to Main Content Government Departments Business Visitors Residents Search Home My Account Website Sign In For a more interactive experience please sign in. Sign In When using an existing account, you will be redirected to the CivicPlus sign in page. Existing Account Create An Account Sign In with SSO Facebook Downtown Special Events Parking unity park falls park Bus & Trolley AFFORDABLE HOUSING Agendas & Minutes Home Contact Us Accessibility Site Map Web Policy and Copyright Webmail /QuickLinks.aspx 206 S Main Street, Greenville, SC 29601 Police Non-Emergency: 864-271-5333 Greenville Cares Information Center 864-232-2273 Back to Top Enable Google Translate Government Departments Business Visitors Residents Search Home My Account Website Sign In For a more interactive experience please sign in. Sign In When using an existing account, you will be redirected to the CivicPlus sign in page. Existing Account Create An Account Sign In with SSO Facebook Downtown Special Events Parking unity park falls park Bus & Trolley AFFORDABLE HOUSING Agendas & Minutes Home Contact Us Accessibility Site Map Web Policy and Copyright Webmail /QuickLinks.aspx 206 S Main Street, Greenville, SC 29601 Police Non-Emergency: 864-271-5333 Greenville Cares Information Center 864-232-2273 Back to Top Enable Google Translate Government Departments Business Visitors Residents Search Home My Account Website Sign In For a more interactive experience please sign in. Sign In When using an existing account, you will be redirected to the CivicPlus sign in page. Existing Account Create An Account Sign In with SSO Facebook Downtown Special Events Parking unity park falls park Bus & Trolley AFFORDABLE HOUSING Agendas & Minutes Home Contact Us Accessibility Site Map Web Policy and Copyright Webmail /QuickLinks.aspx 206 S Main Street, Greenville, SC 29601 Police Non-Emergency: 864-271-5333 Greenville Cares Information Center 864-232-2273 Back to Top Enable Google Translate Government Departments Business Visitors Residents Search Home My Account Website Sign In For a more interactive experience please sign in. Sign In When using an existing account, you will be redirected to the CivicPlus sign in page. Existing Account Create An Account Sign In with SSO Facebook Downtown Special Events Parking unity park falls park Bus & Trolley AFFORDABLE HOUSING Agendas & Minutes Home Contact Us Accessibility Site Map Web Policy and Copyright Webmail /QuickLinks.aspx 206 S Main Street, Greenville, SC 29601 Police Non-Emergency: 864-271-5333 Greenville Cares Information Center 864-232-2273 Back to Top Enable Google Translate Government Departments Business Visitors Residents Search Government Departments Business Visitors Residents Search Government Departments Business Visitors Residents Search Search Search Search Search Search Search Search Search Home My Account Website Sign In For a more interactive experience please sign in. Sign In When using an existing account, you will be redirected to the CivicPlus sign in page. Existing Account Create An Account Sign In with SSO Facebook Home My Account Website Sign In For a more interactive experience please sign in. Sign In When using an existing account, you will be redirected to the CivicPlus sign in page. Existing Account Create An Account Sign In with SSO Facebook " -2208,http://www.lafayettepolice.us/826/fire-blocking,Not Criminal Justice Related,Not Criminal Justice Related,"Fire Blocking | Lafayette, IN - Official Website","In combustible construction, fire blocking shall be installed to cut off concealed draft openings (both vertical and horizontal) and shall form an effective barrier between floors, between a top story and a roof or attic space.",200,"Police Department | Lafayette, IN - Official Website","[""Fire Blocking""]",[],"[""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search About Us Operations Prevention Recruitment How Do I... Home Government Departments A - F Fire Department Prevention Contractors & Designers Resources & Inspections Fire Blocking Fire Blocking Fire blocking is not synonymous with fire stopping. In combustible construction, fire blocking shall be installed to cut off concealed draft openings (both vertical and horizontal) and shall form an effective barrier between floors, between a top story and a roof or attic space. Fire blocking shall be installed in the locations specified in Sections 717.2.2 through 717.2.7 of the Indiana Building Code. Fire blocking is found in non fire-rated wood construction assemblies. Where to Install Fire blocking shall be installed at openings around vents, pipes, ducts, chimneys and fireplaces at ceiling and floor levels, with an approved material to resist the free passage of flame and the products of combustion. Factory-built chimneys and fireplaces shall be fire blocked in accordance with UL 103 and UL 127. In wood-frame construction, fire blocking should be provided in the following locations: Penetrations in the stud walls and partitions at the top plate and floor level (multilevel); Horizontal communication, within a wall, at 10 foot intervals Interconnections between concealed spaces that occur at soffits, drop or cove ceilings; Concealed spaces between stair stringers at the top and bottom of run; Penetrations Penetrations of fire blocking - refer to the Indiana Building Code, Penetrations - 712.4.2 Non-fire-resistance-rated assemblies When a fire block is penetrated for the trades to run their wires, pipes, and other mechanical penetrating items, the integrity of the wood fire blocks is compromised and they must be protected with a material that is equal to or greater than the burn time of the blocking material. The integrity of fire blocks shall be maintained. Material Needed Using a material that meets ASTM-E 136 test criteria fulfills the code requirements for fire blocking penetrations because the material is tested and is equivalent in performance to the fire blocking material. Material tested in accordance with ASTM-E 84 and ASTM-E 814 may also maintain the integrity of the fire blocking. (Fire caulk used as a fire blocking material is acceptable) Verification of the material should been done prior to installation. Review with the AHJ. Spray-Foam Insulation Community Outreach Fire Stations Submit a Request History Photo Gallery Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate " -2209,https://dccouncil.gov/donation-disclosures/copy-of-april-2019-donation-disclosures-2/,Policies & Contracts,Info About Agencies,Copy of April 2019 Donation Disclosures • Council of the District of Columbia,"",200,Home • Council of the District of Columbia,"[""Copy of April 2019 Donation Disclosures""]",[],[],[],[],[],"Federal Tax Counter: $1,298,573,271 What is this? Get Updates RSS Press Center facebook twitter youtube Council of the District of Columbia Hearings Calendar Legislation & Laws The Council Federal Tax Counter: $1,298,573,271 What is this? Get Updates RSS Press Center facebook twitter youtube Federal Tax Counter: $1,298,573,271 What is this? Get Updates RSS Press Center facebook twitter youtube Council of the District of Columbia Hearings Calendar Legislation & Laws The Council Council of the District of Columbia Copy of April 2019 Donation Disclosures May 14, 2019 Loading... Copy of April 2019 Donation Disclosures May 14, 2019 Loading... Loading... Loading... DC Council seal About the Council Open Government Register to Vote Council Updates Jobs Council Directory Privacy Policy Commemorative D.C. Flag Program Ethics Visit the Wilson Building facebook twitter youtube Council of the District of Columbia 1350 Pennsylvania Avenue, NW, Washington, D.C. 20004 © Copyright 2016, The Council of the District of Columbia. All rights reserved Council of the District of Columbia 1350 Pennsylvania Avenue, NW, Washington, D.C. 20004 © Copyright 2016, The Council of the District of Columbia. All rights reserved Search facebook twitter youtube Original text Rate this translation Your feedback will be used to help improve Google Translate Original text Rate this translation Your feedback will be used to help improve Google Translate Original text Original text Rate this translation Your feedback will be used to help improve Google Translate Rate this translation Your feedback will be used to help improve Google Translate Rate this translation Your feedback will be used to help improve Google Translate " -2210,https://alpha.austin.gov/es/police-oversight/2020-06-4-15/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -2211,https://www.lynchburgvapolice.gov/wp-content/uploads/2022/01/veh-3.jpg,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -2212,https://www.cityofladue-mo.gov/departments/police-department/community/maps-167,Not Criminal Justice Related,Not Criminal Justice Related,"","",404,"","","","","","","","" -2213,https://www.antioch.il.gov/wpfb-file/12-09-14-police-pension-agenda-pdf/,Poor Data Source,Poor Data Source,"12-09-14 Police Pension Agenda - Antioch, IL",8436 12 09 14 police pension agenda pdf commissions fund agendas 2014 1417450543 2a9c5dc94f4b22a9f99a6d66b140c03a 219x300 _cvau8geaxfzv thumb jpg 01 11 15 43 0 pdf application trustees dennis b crosby jay jozwiak mary c dominiak scott a pierce jerry t johnson ted p poulos lawrence m hanson mayor lori k folbrick village clerk agenda of antioch,200,"Home - Antioch, IL","[""12-09-14 Police Pension Agenda""]",[],[],[],[],[],Open toolbar Accessibility Tools Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset -2214,https://www.coppelltx.gov/592/hotel-occupancy-tax,Not Criminal Justice Related,Not Criminal Justice Related,"Hotel Occupancy Tax | Coppell, TX",The City of Coppell levies a tax rate of 7% on the cost of occupancy of any sleeping room furnished by any hotel where the cost of occupancy is at the rate of two dollars or more per day.,200,"Coppell, TX | Official Website","[""Hotel Occupancy Tax""]","[""People Who Must File a Hotel Occupancy Report"", ""When to File""]","[""Holidays & Weekends"", ""Documents"", ""Contact Us"", ""Quick Links"", ""Loading""]","[""Hotel Occupancy Tax""]",[],[],Skip to Main Content -2215,https://www.montgomeryohio.gov/meet-steve-coppel-a-diversity-inclusion-committee-member/steve-coppel/,Not Criminal Justice Related,Not Criminal Justice Related,"- Montgomery, Ohio","",200,"Welcome - Montgomery, Ohio","[""""]","[""Primary menu links"", ""Action toolbar"", ""Recent news"", ""Welcome"", ""Engage"", ""Help"", ""Mental Health Resource""]","[""Montgomery Street Sign Sale"", ""Montgomery Monument and Landscape Enhancement Project"", ""Welcome Montgomery’s Newest Firefighters"", ""Join the Annual Independence Day Parade!"", ""Spring is Coming to Montgomery""]",[],[],[],"Montgomery, Ohio Primary menu links Services Community Government Events News Contact Action toolbar Answers Report Issue Translate Translate language select Select language Afrikaans Albanian Amharic Arabic Armenian Azerbaijani Basque Belarusian Bengali Bosnian Bulgarian Catalan Cebuano Chichewa Chinese (Simplified) Chinese (Traditional) Corsican Croatian Czech Danish Dutch English Esperanto Estonian Filipino Finnish French Frisian Galician Georgian German Greek Gujarati Haitian Creole Hausa Hawaiian Hebrew Hindi Hmong Hungarian Icelandic Igbo Indonesian Irish Italian Japanese Javanese Kannada Kazakh Khmer Korean Kurdish (Kurmanji) Kyrgyz Lao Latin Latvian Lithuanian Luxembourgish Macedonian Malagasy Malay Malayalam Maltese Maori Marathi Mongolian Myanmar (Burmese) Nepali Norwegian Pashto Persian Polish Portuguese Punjabi Romanian Russian Samoan Scottish Gaelic Serbian Sesotho Shona Sindhi Sinhala Slovak Slovenian Somali Spanish Sundanese Swahili Swedish Tajik Tamil Telugu Thai Turkish Ukrainian Urdu Uzbek Vietnamese Welsh Xhosa Yiddish Yoruba Zulu Search Primary menu links Services Community Government Events News Contact Action toolbar Answers Report Issue Translate Translate language select Select language Afrikaans Albanian Amharic Arabic Armenian Azerbaijani Basque Belarusian Bengali Bosnian Bulgarian Catalan Cebuano Chichewa Chinese (Simplified) Chinese (Traditional) Corsican Croatian Czech Danish Dutch English Esperanto Estonian Filipino Finnish French Frisian Galician Georgian German Greek Gujarati Haitian Creole Hausa Hawaiian Hebrew Hindi Hmong Hungarian Icelandic Igbo Indonesian Irish Italian Japanese Javanese Kannada Kazakh Khmer Korean Kurdish (Kurmanji) Kyrgyz Lao Latin Latvian Lithuanian Luxembourgish Macedonian Malagasy Malay Malayalam Maltese Maori Marathi Mongolian Myanmar (Burmese) Nepali Norwegian Pashto Persian Polish Portuguese Punjabi Romanian Russian Samoan Scottish Gaelic Serbian Sesotho Shona Sindhi Sinhala Slovak Slovenian Somali Spanish Sundanese Swahili Swedish Tajik Tamil Telugu Thai Turkish Ukrainian Urdu Uzbek Vietnamese Welsh Xhosa Yiddish Yoruba Zulu Search Select language Afrikaans Albanian Amharic Arabic Armenian Azerbaijani Basque Belarusian Bengali Bosnian Bulgarian Catalan Cebuano Chichewa Chinese (Simplified) Chinese (Traditional) Corsican Croatian Czech Danish Dutch English Esperanto Estonian Filipino Finnish French Frisian Galician Georgian German Greek Gujarati Haitian Creole Hausa Hawaiian Hebrew Hindi Hmong Hungarian Icelandic Igbo Indonesian Irish Italian Japanese Javanese Kannada Kazakh Khmer Korean Kurdish (Kurmanji) Kyrgyz Lao Latin Latvian Lithuanian Luxembourgish Macedonian Malagasy Malay Malayalam Maltese Maori Marathi Mongolian Myanmar (Burmese) Nepali Norwegian Pashto Persian Polish Portuguese Punjabi Romanian Russian Samoan Scottish Gaelic Serbian Sesotho Shona Sindhi Sinhala Slovak Slovenian Somali Spanish Sundanese Swahili Swedish Tajik Tamil Telugu Thai Turkish Ukrainian Urdu Uzbek Vietnamese Welsh Xhosa Yiddish Yoruba Zulu Montgomery, Ohio Montgomery, Ohio Montgomery, Ohio Posted on November 4, 2020 Recent news Montgomery Street Sign Sale Posted on March 22, 2024 Montgomery Monument and Landscape Enhancement Project Posted on March 19, 2024 Welcome Montgomery’s Newest Firefighters Posted on March 3, 2024 Join the Annual Independence Day Parade! Posted on March 1, 2024 Spring is Coming to Montgomery Posted on March 1, 2024 All news » " -2216,https://ci.guadalupe.ca.us/documents/police-officer/,Training & Hiring Info,Info About Officers,"Police Officer – The City of Guadalupe, California","",200,"The City of Guadalupe, California – Gateway to the Dunes","[""Police Officer""]","[""Document Links"", ""Leaving our website"", ""Exiting our website""]",[],[],[],[],Skip to content Home Residents Obtain New Utility Services New Utility Account – Eng New Utility Account – Esp Pay Utility Bills Online Transportation Recycling Community Programs Guadalupe Bulldogs Football Guadalupe Gladiators Service Clubs & Organizations Kiwanis Club of Guadalupe Lions Club of Guadalupe Masonic Lodge – Central Coast #237 Businesses Business Resources Starting a Business Commercial Property Government Mayor and City Council All Notices Building City Administration City Council Agendas City Council Minutes City Administrator City Clerk Documents Archive Finance Finance Department Staff Human Resources Planning Public Safety Office of Emergency Preparedness Fire Department Fire Department History Fire Suppression Fire Stations Fire Fighting Equipment Emergency Medical Services Hazardous Materials Response Rescue Services Education / Outreach Programs Fire Special Events Fire Prevention Programs Police Department Municipal Code Municipal Code Amendments Public Safety Incident Logs Public Works Frequently Asked Questions Stormwater Management Water Services Recreation Recreation & Parks Commission Visitors Things to Do Places to Eat Places to Stay Media In the News Photos Video FAQs Contact Us Toggle website search Menu Close Home Residents Obtain New Utility Services New Utility Account – Eng New Utility Account – Esp Pay Utility Bills Online Transportation Recycling Community Programs Guadalupe Bulldogs Football Guadalupe Gladiators Service Clubs & Organizations Kiwanis Club of Guadalupe Lions Club of Guadalupe Masonic Lodge – Central Coast #237 Businesses Business Resources Starting a Business Commercial Property Government Mayor and City Council All Notices Building City Administration City Council Agendas City Council Minutes City Administrator City Clerk Documents Archive Finance Finance Department Staff Human Resources Planning Public Safety Office of Emergency Preparedness Fire Department Fire Department History Fire Suppression Fire Stations Fire Fighting Equipment Emergency Medical Services Hazardous Materials Response Rescue Services Education / Outreach Programs Fire Special Events Fire Prevention Programs Police Department Municipal Code Municipal Code Amendments Public Safety Incident Logs Public Works Frequently Asked Questions Stormwater Management Water Services Recreation Recreation & Parks Commission Visitors Things to Do Places to Eat Places to Stay Media In the News Photos Video FAQs Contact Us Toggle website search Police Officer Home > Documents > Police Officer Document Links Police-Officer.pdf Copyright 2024 - City of Guadalupe. All Rights Reserved. Terms of Use | Accessibility Statement Home Page Photos Credit: Malcolm H Ross. -2217,http://www.longbeach.gov/police/press-releases/undetermined-death-investigation3/,Media Bulletins,Agency-Published Resources,UNDETERMINED DEATH INVESTIGATION,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 5/16/2018 FOR IMMEDIATE RELEASE Press Release # Subject: UNDETERMINED DEATH INVESTIGATION Contact: Media Relations (562) 570-5273 On Monday, May 14, 2018, at approximately 11:30 p.m., officers were dispatched to the area of Granada Avenue and Ocean Boulevard for a call regarding a person screaming. Upon arrival, officers observed a bystander detaining who they believed was a possible suspect. An officer with the help of Marine Patrol Special Services Officers proceeded to handcuff the suspect without any physical resistance, but they quickly realized he was in medical distress, and immediately removed the handcuffs. Officers subsequently started rendering life saving measures. The Long Beach Fire Department responded and determined the subject deceased at the scene. Preliminary investigation and witness statements indicates the suspect, a male adult, approached the victim and took her cell phone. The victim, a female adult, screamed for help when the suspect attempted to flee the scene. Bystanders came to her aid and made attempts to detain the suspect, which resulted in a physical altercation until officers arrived. As with any in custody death incidents, the Los Angeles County District Attorney’s Office was notified and respond to the scene and will be conducting a separate death investigation. The identity of the deceased is being withheld pending notification of next of kin. Cause of death will be determined by the Los Angeles Corner’s Office. Anyone with information regarding this this incident is urged to contact Homicide Detectives Malcom Evans and Robert Gonzales at (562) 570-7244. Anonymous tips may be submitted through “LA Crime Stoppers” by calling 1-800-222-TIPS (8477), downloading the “P3 Tips” app to your smart phone (available at the Apple App store and Google Play), or visiting www.lacrimestoppers.org . About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2218,https://barnegatpolice.us/download/field-check/,Field Contacts,Police & Public Interactions,"","",404,"","","","","","","","" -2219,https://www.cityofpinebluff-ar.gov/copycred,Not Criminal Justice Related,Not Criminal Justice Related,"Accessibility, Copyrights, Credits & Privacy - City Of Pine Bluff","",200,"Error retrieving title: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))",[],"[""Accessibility, Copyrights, Credits & Privacy""]",[],[],[],[],Skip to Main Content Web Accessibility -2220,https://delcopa.gov/publicrelations/releases/2021/whatvoterscanexpect.html,Not Criminal Justice Related,Not Criminal Justice Related,"What Delaware County Voters Can Expect on Election Day - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""What Delaware County Voters Can Expect on Election Day""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"" -2221,http://www.longbeach.gov/police/press-releases/five-cited-during-undercover-vice-operation/,Media Bulletins,Agency-Published Resources,FIVE CITED DURING UNDERCOVER VICE OPERATION,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 1/8/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: FIVE CITED DURING UNDERCOVER VICE OPERATION Contact: Media Relations Detail (562) 570-5273 On January 5, 2015, the Long Beach Police Department's Vice -Investigations Section, in cooperation with investigators from the Department of -Alcoholic Beverage Control (ABC), participated in a Shoulder Tap Operation in -the City of Long Beach. The operation focused on individuals who -knowingly purchased alcohol for minors. Minors under the age of 21, under the -supervision of the L.B.P.D, approached customers outside the business. The -minors told the individuals they were too young to buy alcohol and requested -alcohol be purchased on their behalf. Five customers who purchased alcohol for a -minor were identified and subsequently issued a misdemeanor citation for -unlawfully furnishing alcohol to a minor. The businesses were unaware that an -undercover operation was underway. These operations are conducted with -the community's safety in mind. The L.B.P.D. will continue to enforce ABC laws -at all establishments throughout the city and wants to remind everyone that -there are consequences for contributing to the delinquency of a minor. Anyone wishing to report illegal behavior relating to the unlawful sale of -alcohol should contact the Vice Investigations Section at (562) 570-7219. Anyone -wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus -your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2222,https://www.foxcrossingwi.gov/departments/police-department/resources/83-07_use-of-force/,Poor Data Source,Poor Data Source,83-07_Use of Force - Fox Crossing Fox Crossing,"",200,Fox Crossing - Bridging the Fox Cities Fox Crossing,"["""", """", ""83-07_Use of Force""]",[],[],[],[],[],"Home Government Board of Review Bond Schedule Commissions & Boards Application for Appointment Village Board Elections and Voting Incorporation Information Fee Schedule Licenses & Permit Applications Minutes and Agendas Municipal Code Departments Administration Assessor Clerk Community Development Finance/Treasurer Fire Municipal Court Parks and Recreation Police Street Utilities Calendar Resources Elderly Transportation Program Employment Garbage & Recycling Individual & Business of Year Information for Vendors Local Links Pet Licensing Permits Building Permits Planning Permits Street Permits Population History Public Records Real Estate Inquiry Maps/GIS Property Information Tax & Parcel Information Tax Rate Information (TID IN) The Bridge Calendar Valley Transit Village History Weights & Measures Online Services Municipal Court Payments Parking Ticket Payments Rec Program Registration Utility Online Services Village General Payments Village Notifications Contact How Are We Doing Spring Recycling Event April 27th Informational Announcement – Outstanding Absentee Ballots for the April 2, 2024 Presidential Preference Primary & Spring Election Deadlines for April 2nd Spring Election & Presidential Preference Primary Spring/Summer Recreation Programs Signup for Village Notifications Current Job Opportunities Fox Crossing 2000 Municipal Drive Neenah, WI 54956 920-720-7100 . 83-07_Use of Force Copyright © 2010 - 2024 Fox Crossing, All Rights Reserved. Professional Web Site Design by Sandstone Digital. Disclaimer Home Government Board of Review Bond Schedule Commissions & Boards Application for Appointment Village Board Elections and Voting Incorporation Information Fee Schedule Licenses & Permit Applications Minutes and Agendas Municipal Code Departments Administration Assessor Clerk Community Development Finance/Treasurer Fire Municipal Court Parks and Recreation Police Street Utilities Calendar Resources Elderly Transportation Program Employment Garbage & Recycling Individual & Business of Year Information for Vendors Local Links Pet Licensing Permits Building Permits Planning Permits Street Permits Population History Public Records Real Estate Inquiry Maps/GIS Property Information Tax & Parcel Information Tax Rate Information (TID IN) The Bridge Calendar Valley Transit Village History Weights & Measures Online Services Municipal Court Payments Parking Ticket Payments Rec Program Registration Utility Online Services Village General Payments Village Notifications Contact How Are We Doing Spring Recycling Event April 27th Informational Announcement – Outstanding Absentee Ballots for the April 2, 2024 Presidential Preference Primary & Spring Election Deadlines for April 2nd Spring Election & Presidential Preference Primary Spring/Summer Recreation Programs Signup for Village Notifications Current Job Opportunities Fox Crossing 2000 Municipal Drive Neenah, WI 54956 920-720-7100 . 83-07_Use of Force " -2223,http://www.longbeach.gov/police/press-releases/two-arrested--drugs--cash-and-guns-seized-in-connection-with-drug-trafficking/,Media Bulletins,Agency-Published Resources,"TWO ARRESTED; DRUGS, CASH AND GUNS SEIZED IN CONNECTION WITH DRUG TRAFFICKING","",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 2/6/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: TWO ARRESTED DRUGS CASH AND GUNS SEIZED IN CONNECTION WITH DRUG TRAFFICKING Contact: Media Relations Detail (562) 570-5273 Downey Location Long Beach Location (Click on a photo to enlarge) On March 3, 2014, an investigation into cocaine trafficking led Long Beach Police to a residence in the 9300 block of Telegraph Road in Downey. At that location, Carlos Mendoza Osuna, 34 years, of Downey, and Mario Coadras Chavez, 31 years, of Downey, were arrested for possession of cocaine for sale. Both are currently being held at Los Angeles County Jail. Approximately 32 kilos (70.4 pounds) of cocaine and approximately $14,000 cash were recovered. Further investigation, led detectives to the 200 block of W. Del Amo, Long Beach, where a search warrant was served on March 4, 2014. Approximately 22 kilos (48.4 pounds) of cocaine, $80,000 cash, a rifle, and a handgun were recovered. No one was arrested and the investigation continues. Anyone with information regarding narcotics activity is urged to contact the Long Beach Police Department Drug Investigations Section at (562) 570-7221. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2224,http://www.ryepolice.us/announcements/holiday-parade,Not Criminal Justice Related,Not Criminal Justice Related,Rye Police Department HoLiDaY PaRaDe!!!!!!! - Rye Police Department,"",200,Rye Police Department Welcome to the Rye Police Department - Rye Police Department,"[""HoLiDaY PaRaDe!!!!!!!""]","[""HoLiDaY PaRaDe!!!!!!!""]","[""Navigation"", ""Follow Us"", ""Facebook"", ""Email Updates"", ""Storm Preparedness Guide""]",[],[],[]," Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Chief’s Message Crime Prevention Victim Services Domestic Violence Computer Crime Identity Theft Press Releases Police Logs Events Event Permits Beach Permits FAQ Contact Us Navigate... Chief’s Message Crime Prevention - Victim Services - Domestic Violence - Computer Crime - Identity Theft Press Releases Police Logs Events - Event Permits - Beach Permits FAQ Contact Us Search HoLiDaY PaRaDe!!!!!!! Home Announcements HoLiDaY PaRaDe!!!!!!! HoLiDaY PaRaDe!!!!!!! November 28, 2016 In Announcements It's that time again!!! Grab your jackets and mittens and come out to watch the Rye Holiday Parade! Sunday, December 4, at 1 PM. Parade will start at Webster at Rye (795 Washington Rd) and will travel Washington Rd to the Rye Junior High School (501 Washington Rd). Traffic will be slightly delayed during this time, so please seek an alternate route if necessary. Photo credit to seacoastonline.com Navigation About Rye Animal Control Announcements Beach Information Careers Chief’s Message Computer Crime Contact Us Coronavirus Crime Prevention Directions Domestic Violence FAQ Firearms Safety Fireworks Forms Identity Theft Mission Statement Parking Payments Personnel Police Logs Prescription Drug Disposal Press Releases Report Request Town Ordinances Victim Services West Nile / EEE Follow Us Facebook Email Updates Subscribe to our newsletter. We promise you won't get flooded with junk! Email * Storm Preparedness Guide Developed by ThemeMakers Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Chief’s Message Crime Prevention Victim Services Domestic Violence Computer Crime Identity Theft Press Releases Police Logs Events Event Permits Beach Permits FAQ Contact Us Navigate... Chief’s Message Crime Prevention - Victim Services - Domestic Violence - Computer Crime - Identity Theft Press Releases Police Logs Events - Event Permits - Beach Permits FAQ Contact Us Search Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Chief’s Message Crime Prevention Victim Services Domestic Violence Computer Crime Identity Theft Press Releases Police Logs Events Event Permits Beach Permits FAQ Contact Us Navigate... Chief’s Message Crime Prevention - Victim Services - Domestic Violence - Computer Crime - Identity Theft Press Releases Police Logs Events - Event Permits - Beach Permits FAQ Contact Us Search Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Emergency: 911 Non-Emergency: (603) 964-5522 Business: (603) 964-7450 Fax: (603) 964-7458 Chief’s Message Crime Prevention Victim Services Domestic Violence Computer Crime Identity Theft Press Releases Police Logs Events Event Permits Beach Permits FAQ Contact Us Navigate... Chief’s Message Crime Prevention - Victim Services - Domestic Violence - Computer Crime - Identity Theft Press Releases Police Logs Events - Event Permits - Beach Permits FAQ Contact Us Search " -2225,https://www.coronadelmar.us/gambler-left-puppy-in-hot-car-with-mouth-taped-shut-at-vegas-casino-police-say/,Media Bulletins,Agency-Published Resources,"Gambler left puppy in hot car with mouth taped shut at Vegas casino, police say | Corona del Mar California","",200,Corona del Mar California,"[""Gambler left puppy in hot car with mouth taped shut at Vegas casino, police say""]","[""Menu"", ""Be First to Comment"", ""Subscribe"", """", """"]","[""Share this:"", ""Like this:"", ""Related"", ""Leave a Reply Cancel reply"", """"]",[],[],[],"" -2226,https://delcopa.gov/vote/pdf/latecontributions_24hourreport.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -2227,https://police.greenvillesc.gov/232/jury-duty,Not Criminal Justice Related,Not Criminal Justice Related,"Jury Duty | Greenville, SC - Official Website",Jurors for Greenville Municipal Court are randomly selected from a database that contains information from the South Carolina Election Commission and the South Carolina Highway Department. ,200,"Police Department | Greenville, SC - Official Website","[""Jury Duty""]","[""Jury Selection"", ""Reporting for Jury Duty"", ""For More Information""]","[""Contacts"", ""Loading""]","[""Pam Larson"", ""Municipal Court""]",[],[],"Skip to Main Content Government Departments Business Visitors Residents Search Home Departments Municipal Court Jury Duty Jury Duty Jury Selection Jurors for Greenville Municipal Court are randomly selected from a database that contains information from the South Carolina Election Commission and the South Carolina Highway Department. If you are selected for a specific jury trial term, you will receive a Municipal Court Juror Response Form (PDF) and a self-addressed envelope in the mail. The Juror Response Form must be completed and returned to Municipal Court. Reporting for Jury Duty Please arrive promptly and please do not bring beverages, children, relatives, or friends with you on the day you report for jury duty. Upon arrival you will be shown to a courtroom separate from all other case parties attending jury trials. It is important that you do not speak with any case party, even if it is a relative. When the clerk calls your name, you should be prepared to stand and state your name and occupation. At that time, the judge may ask questions to determine your qualification to serve. If you are dismissed or told to report the following day, be sure to you know when and where you are to report. Each morning, roll will be taken to record your presence. For More Information If you need more information or wish to discuss your status for jury service, please call the Deputy Clerk at 864-467-6638. Each summoned juror will receive a Juror's Handbook (PDF) during roll call on his or her 1st day of service. Contacts Pam Larson Clerk of Court plarson@greenvillesc.gov Municipal Court Physical Address 426 N Main Street Greenville , SC 29601 Phone: 864-232-CARE (2273) Fax: 864-467-6651 Notice of Jury Trial Request (PDF) Directory Court Security Juror Criteria Parking & Court Access Terms of Service Downtown Special Events Parking unity park falls park Bus & Trolley AFFORDABLE HOUSING Agendas & Minutes Home Contact Us Accessibility /QuickLinks.aspx 206 S Main Street, Greenville, SC 29601 Police Non-Emergency: 864-271-5333 Greenville Cares Information Center 864-232-2273 Back to Top Enable Google Translate " -2228,https://brookfieldil.gov/publication/fire-and-police-commission-special-meeting-december-17-2015/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -2229,https://www.mass.gov/doc/2016-deputy-police-chief-employmentexperience-form-for-attleboro-examination-0/download,Training & Hiring Info,Info About Officers,"","",200,Mass.gov,[],[],[],[],[],[],"" -2230,https://www.warracres-ok.gov/police-department-history/warr-acres-old4/,Poor Data Source,Poor Data Source,Warr Acres OLD4 - City of Warr Acres,"",200,Home - City of Warr Acres,"[""Warr Acres OLD4""]","[""Primary menu links"", ""Action toolbar"", ""Contact""]",[],[],"[""How does the City calculate sewer rates?""]",[],City of Warr Acres Primary menu links Home Businesses Commercial Property Available Economic Development Residents Helpful Numbers Online Forms News City Newsletter City Maps City Parks Contact your city History of Warr Acres Recycling Report an Issue Sanitation & Sewer Newsletter Contact Employees Employee Email Job Listings Staff Only AFLAC BlueCross BlueShield Deferred Comp Action toolbar Answers Payments Report Issue Search Primary menu links Home Businesses Commercial Property Available Economic Development Residents Helpful Numbers Online Forms News City Newsletter City Maps City Parks Contact your city History of Warr Acres Recycling Report an Issue Sanitation & Sewer Newsletter Contact Employees Employee Email Job Listings Staff Only AFLAC BlueCross BlueShield Deferred Comp Action toolbar Answers Payments Report Issue Search City of Warr Acres City of Warr Acres City of Warr Acres Warr Acres OLD4 Warr Acres OLD4 Warr Acres OLD4 Share Facebook Twitter Email Size + Reset a − Translate Translate language select Select language Afrikaans Albanian Amharic Arabic Armenian Azerbaijani Basque Belarusian Bengali Bosnian Bulgarian Catalan Cebuano Chichewa Chinese (Simplified) Chinese (Traditional) Corsican Croatian Czech Danish Dutch English Esperanto Estonian Filipino Finnish French Frisian Galician Georgian German Greek Gujarati Haitian Creole Hausa Hawaiian Hebrew Hindi Hmong Hungarian Icelandic Igbo Indonesian Irish Italian Japanese Javanese Kannada Kazakh Khmer Korean Kurdish (Kurmanji) Kyrgyz Lao Latin Latvian Lithuanian Luxembourgish Macedonian Malagasy Malay Malayalam Maltese Maori Marathi Mongolian Myanmar (Burmese) Nepali Norwegian Pashto Persian Polish Portuguese Punjabi Romanian Russian Samoan Scottish Gaelic Serbian Sesotho Shona Sindhi Sinhala Slovak Slovenian Somali Spanish Sundanese Swahili Swedish Tajik Tamil Telugu Thai Turkish Ukrainian Urdu Uzbek Vietnamese Welsh Xhosa Yiddish Yoruba Zulu Select language Afrikaans Albanian Amharic Arabic Armenian Azerbaijani Basque Belarusian Bengali Bosnian Bulgarian Catalan Cebuano Chichewa Chinese (Simplified) Chinese (Traditional) Corsican Croatian Czech Danish Dutch English Esperanto Estonian Filipino Finnish French Frisian Galician Georgian German Greek Gujarati Haitian Creole Hausa Hawaiian Hebrew Hindi Hmong Hungarian Icelandic Igbo Indonesian Irish Italian Japanese Javanese Kannada Kazakh Khmer Korean Kurdish (Kurmanji) Kyrgyz Lao Latin Latvian Lithuanian Luxembourgish Macedonian Malagasy Malay Malayalam Maltese Maori Marathi Mongolian Myanmar (Burmese) Nepali Norwegian Pashto Persian Polish Portuguese Punjabi Romanian Russian Samoan Scottish Gaelic Serbian Sesotho Shona Sindhi Sinhala Slovak Slovenian Somali Spanish Sundanese Swahili Swedish Tajik Tamil Telugu Thai Turkish Ukrainian Urdu Uzbek Vietnamese Welsh Xhosa Yiddish Yoruba Zulu -2231,https://www.sandiego.gov/police/recruiting/contact/dispatch,Training & Hiring Info,Info About Officers,Contact Police Dispatch | City of San Diego Official Website,"If you are interested in an application packet, or have questions about becoming a dispatcher, please complete the following contact form. This form is for Police Dispatch only. See Contact the SDPD Recruiting Unit for officer recruiting information and contact form. This form must be completed by a person eighteen years old or older.",200,City of San Diego Official Website,"[""City of San Diego Official Website"", ""Contact Police Dispatch""]","[""Main navigation"", ""Leisure"", ""Resident Resources"", ""Doing Business"", ""Library"", ""Public Safety"", ""City Hall"", """", ""Footer"", ""Accessibility Tools""]",[],"[""Parks"", ""Outdoors"", ""Neighborhoods"", ""Recreational Activities"", ""Street Maintenance"", ""Plan"", ""Fix"", ""Build"", ""Programs & Events"", ""Services"", ""Kids & Teens"", ""eCollection"", ""Police"", ""Fire-Rescue"", ""Lifeguards"", ""City Officials"", ""City Government""]",[],[],"" -2232,https://www.eutawal.gov/news/national-police-week-2022/,Poor Data Source,Poor Data Source,National Police Week 2022 – The City of Eutaw Alabama,"",200,"Error retrieving title: HTTPSConnectionPool(host='www.eutawal.gov', port=443): Max retries exceeded with url: / (Caused by SSLError(CertificateError(""hostname 'www.eutawal.gov' doesn't match 'eutawal.gov'"")))","[""National Police Week 2022""]","[""Recent Posts"", ""Recent Comments"", ""Our Links"", ""Green County Links"", ""More Links..."", ""Gateway to the Black Belt ®""]",[],"[""The City of Eutaw Alabama""]",[],[],"Skip to content Menu Home Mayor, Council, and Administration City Departments Vendors & Bids Online Citizen Services Join #TeamEutaw Contact Us Facebook Open Search Window Home City News , Police Department News National Police Week 2022 National Police Week 2022 May 20, 2022 | City News , Police Department News | Bowman May 18th, 2022, Eutaw Alabama TS Police Support League, Mayor Johnson, and Chief Johnson Celebrate National Police Week We are very appreciative of our police officers, their hard work and dedication to the community! We appreciate Ms. Shelia Hann and Billy McFarland with the TS Police Support league who do so much for our police department and our community. In celebration of Police Officer Week they stopped by and brought lunch for the Police Department and City Hall employees. #teameutaw 2022 Moving Eutaw Forward News Last modified: May 20, 2022 Previous: April/May 2022 Water and Street Department News Next: May 2022 Updates Comments are closed. Search Search Recent Posts Hello world! RFP – Grant Writing and Grant Administration RFQ – Professional Engineering and Architectural Services RFQ – Debris and Storm Damage Clean Up RFP – Professional Tank Maintenance Service Recent Comments A WordPress Commenter on Hello world! The City of Eutaw Alabama Mayor Latasha Johnson City Hall • 116 Main St • Eutaw, AL 35462 Phone: (205) 372-4212 • Monday – Friday, 8:00 am - 4:00 pm Email: cityhall@eutawal.gov Search Search Our Links Mayor's Office City Clerk's Office Municipal Court Police Department Water & Sanitation Online Services Contact Us Green County Links County Commission Industrial Development Authority County Hospital Chamber of Commerce County Courthouse Probate Court Health Department Sheriff's Office Department of Human Resources More Links... Alabama.gov Alabama 811 Alabama Power Black Warrior EMC Greene County Water Arrow Disposal West Alabama CSP Alabama Works West Alabama Works Facebook Open Search Window Gateway to the Black Belt ® Announcements Privacy & Terms Employee Login Support © 2023 - the City of Eutaw Alabama - All Rights Reserved Search for: Search Close Search Window ↑ Skip to content Menu Home Mayor, Council, and Administration City Departments Vendors & Bids Online Citizen Services Join #TeamEutaw Contact Us Facebook Open Search Window Skip to content Menu Home Mayor, Council, and Administration City Departments Vendors & Bids Online Citizen Services Join #TeamEutaw Contact Us Facebook Open Search Window Menu Home Mayor, Council, and Administration City Departments Vendors & Bids Online Citizen Services Join #TeamEutaw Contact Us Facebook Open Search Window Facebook Open Search Window " -2233,https://www.coppelltx.gov/929/earthfest,Not Criminal Justice Related,Not Criminal Justice Related,"Earthfest | Coppell, TX",Celebrate EarthFest at the Biodiversity Education Center! EarthFest is a celebration of Coppell's commitment to the environment - an entertaining and educational experience! Visit environmental education booths to learn how you can lead a more sustainable lifestyle and explore Coppell Nature Park. ,200,"Coppell, TX | Official Website","[""Earthfest""]",[],"[""Saturday, April 20 • 11 a.m. – 1 p.m."", ""Activities"", ""Parking Information"", ""Loading""]",[],[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search About Us Parks & Trails Facilities Rentals Activities Home Government City Departments Community Experiences Activities Special Events Earthfest Earthfest Saturday, April 20 • 11 a.m. – 1 p.m. Biodiversity Education Center, 367 Freeport Parkway Come celebrate Coppell’s commitment to the environment with an entertaining and educational experience for all ages! Hosted at the Biodiversity Education Center (BEC), Earthfest highlights environmental, sustainable, and nature-themed projects and initiatives within the community. This event is sponsored in part by CityVet Coppell. Activities Attendees can chat with local Coppell ISD and community groups, browse vendor booths, meet and learn about a variety of exciting animals with Creature Teacher, and explore Coppell Nature Park. Along with the beautiful nature scenery, a monarch butterfly stilt walker will “flutter” through the event site, making for a perfect photo opportunity! Waffle O’licious food truck will also be available to purchase brunch eats and sweets. In addition to all the Earthfest excitement, the Biodiversity Education Center celebrates its 10-year anniversary! Be sure to check out the BEC birthday festivities recognizing 10 years of sharing nature education and exploration with the community. Document Shredding will be available for Coppell residents at the Coppell Service Center (816 S. Coppell Rd.) from 8am – 12pm. Email us to learn more about Earthfest! Parking Information Parking will be available at Wagon Wheel Park, located at 345 Freeport Parkway. The Biodiversity Education Center is located in the northwest corner of the parking lot. Wagon Wheel Park is located on Freeport Parkway, south of Sandy Lake Road and north of Bethel Road. Sunset Socials Gobble Wobble 5K & Fun Run Earthfest Old Town Anniversary Celebrate Coppell Parade Down Parkway Party in the Park Frequently Asked Questions Holidays Flick or Treat Total Eclipse of the Park Agendas & Minutes Alert Sign-Up Citizen Report E-News Pay Water Bill Permits 255 E. Parkway Blvd., P.O. Box 9478, Coppell, TX 75019 Phone: 972-462-0022 | Email us Site Map Contact Us Accessibility Copyright Notices Privacy Policy Employee Login /QuickLinks.aspx Government Websites by CivicPlus® " -2234,https://police.greenvillesc.gov/427/minoritywoman-owned-business-enterprise-,Not Criminal Justice Related,Not Criminal Justice Related,"Minority/Woman-Owned Business Enterprise Program | Greenville, SC - Official Website","To promote free competition and equal opportunity, the City of Greenville is committed to assisting small, minority-owned and woman-owned businesses in becoming active vendors with the City of Greenville.",200,"Police Department | Greenville, SC - Official Website","[""Minority/Woman-Owned Business Enterprise Program""]","[""About the Program"", ""City Policies"", ""Intent"", ""Definitions"", ""Preference in Scoring Proposals""]","[""Contacts"", ""Quick Link"", ""Loading""]","[""Rod Gray"", ""Purchasing Division""]",[],[],"Skip to Main Content Government Departments Business Visitors Residents Search Home Departments Purchasing Minority/Woman-Owned Business Enterprise Program Minority/Woman-Owned Business Enterprise Program About the Program To promote free competition and equal opportunity, the City of Greenville, through its Purchasing Division, is committed to assisting small, minority-owned and woman-owned businesses in becoming active vendors with the City of Greenville. The City of Greenville encourages and invites small, woman, and/or minority owned businesses located inside and outside the city limits to participate in the City's procurement process. City Policies View a summary of program policies to further understand preference opportunities and eligibility requirements. Intent Definitions Preference in Scoring Intent Intent Business firms owned and operated by minority and women persons, in general, have been historically restricted from full participation in the nation's free enterprise system to a degree disproportionate to other businesses. The City believes it is in the community's best interest to assist woman- and minority-owned businesses to develop fully, in furtherance of City's policies and programs which are designed to promote balanced economic and community growth. The City, therefore, wishes to ensure that woman- and minority-owned businesses (M/WBEs) are afforded the opportunity to fully participate in the City's procurement process. Definitions Definitions The term minority, as used in this document, means any group of individuals that are recognized, by state or federal law, as being socially-disadvantaged or economically-disadvantaged group. A minority/woman owned business enterprise means any business concern which: The business is at least 51% owned by one or more women or minority citizens. The corporation is owned by minority or women citizens who hold at least 51% of all classes of voting stock of the corporation. The partnership is owned by minority or women citizens who hold at least 51% of the partnership interests. Such individuals must be involved in the daily management and operations of the business concerned. Preference in Scoring Preference in Scoring Proposals In making procurement decisions which require written evaluations using weighted factors on a 100 point scale, M/WBEs submitting bids or proposals shall receive 5 additional points in the evaluation. There is no monetary advantage or set-aside included in this policy. Contacts Rod Gray rgray@greenvillesc.gov Minority Business Liaison Officer Purchasing Division Physical Address 206 S Main Street 7th Floor Greenville , SC 29601 Mailing Address Purchasing Division P.O. Box 2207 Greenville , SC 29602 Phone: 864-232-CARE (2273) Fax: 864-467-4597 Hours (Except Holidays) Monday through Friday 8 a.m. to 5 p.m. Directory Quick Link SC Small & Minority Business Assistance 2020 Capital Improvement Plan View Bids and RFPs /QuickLinks.aspx Bids & Requests For Proposals Minority/Woman-Owned Business Enterprise Program Downtown Special Events Parking unity park falls park Bus & Trolley AFFORDABLE HOUSING Agendas & Minutes Home Contact Us Accessibility /QuickLinks.aspx 206 S Main Street, Greenville, SC 29601 Police Non-Emergency: 864-271-5333 Greenville Cares Information Center 864-232-2273 Back to Top Enable Google Translate " -2235,https://police.bixbyok.gov/256/find-laws-pertaining-to-the-city-of-bixb,Not Criminal Justice Related,Not Criminal Justice Related,"Find Laws pertaining to the City of Bixby | Bixby Police Department, OK","",200,"Bixby Police Department, OK | Official Website","[""Find Laws pertaining to the City of Bixby""]",[],"[""Helpful Links"", ""FAQs"", ""Site Links"", ""Loading""]","[""Bixby City Code"", ""Oklahoma State Statute""]",[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Police Services Community Services Emergency Management How Do I... Home How Do I... Find Laws pertaining to the City of Bixby Find Laws pertaining to the City of Bixby 9 1 1 1 Bixby City Code Link to page Oklahoma State Statute Link to page Safety Tips Recruitment File a Report Community Relations City of Bixby offender lookup Records Request Bixby City Codes Submit a Tip Nixle Alerts FAQs Helpful Links Animal Control Car Seat Checks Forms Records /QuickLinks.aspx FAQs Does the City of Bixby have any Curfew Laws? How can I get Traffic enforcement or the speed trailer in my area? Will Bixby Fire or Police Department assist me in the installation of my child car seat? /FAQ.aspx Site Links Home Site Map Accessibility Disclaimer Copyright Notices /QuickLinks.aspx 116 W Needles, P.O. Box 70 Bixby, OK 74008 Phone: 918-366-8294 Fax: 918-366-2050 Government Websites by CivicPlus® Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Police Services Community Services Emergency Management How Do I... Home How Do I... Find Laws pertaining to the City of Bixby Find Laws pertaining to the City of Bixby 9 1 1 1 Bixby City Code Link to page Oklahoma State Statute Link to page Safety Tips Recruitment File a Report Community Relations City of Bixby offender lookup Records Request Bixby City Codes Submit a Tip Nixle Alerts FAQs Helpful Links Animal Control Car Seat Checks Forms Records /QuickLinks.aspx FAQs Does the City of Bixby have any Curfew Laws? How can I get Traffic enforcement or the speed trailer in my area? Will Bixby Fire or Police Department assist me in the installation of my child car seat? /FAQ.aspx Site Links Home Site Map Accessibility Disclaimer Copyright Notices /QuickLinks.aspx 116 W Needles, P.O. Box 70 Bixby, OK 74008 Phone: 918-366-8294 Fax: 918-366-2050 Government Websites by CivicPlus® Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In " -2236,https://coloradosprings.gov/police-department/webform/chiefs-youth-advisory-council-application,Resources,Agency-Published Resources,Chief's Youth Advisory Council Application | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""Chief's Youth Advisory Council Application""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[],"" -2237,https://coloradosprings.gov/police-department/article/news/traffic-fatality-marksheffel-road-and-0,Media Bulletins,Agency-Published Resources,Traffic Fatality: Marksheffel Road and Drennan Road | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""Traffic Fatality: Marksheffel Road and Drennan Road""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[],"" -2238,https://springfield-or.gov/event/springfield-police-advisory-committee-spac-13/,Not Criminal Justice Related,Not Criminal Justice Related,Springfield Police Advisory Committee (SPAC) – City of Springfield Oregon,"",200,City of Springfield Oregon,[],"[""Springfield Police Advisory Committee (SPAC)""]","[""May 5, 2022 @ 6:00 pm - 7:30 pm"", ""Event Navigation""]","[""Share This Story, Choose Your Platform!"", ""Details"", ""Venue"", ""Organizer""]",[],[],"" -2239,http://www.longbeach.gov/police/press-releases/fumigation-burglaries/,Media Bulletins,Agency-Published Resources,FUMIGATION BURGLARIES,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 6/19/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: FUMIGATION BURGLARIES Contact: Media Relations Detail (562) 570-5273 The Long Beach Police Department would like to -alert the community to an increase in a specific type of burglary -that is occurring, both locally and regionally, to houses and -apartment complexes that are in the process of being fumigated for -pest control. During these burglaries, suspects enter the tented structures that -are vacated, and take valuables such as electronics and -jewelry. The L.B.P.D. would like to offer the community a few tips which -could prevent you from becoming a victim: If your residence is being -fumigated, be sure to notify your immediate neighbors to be alert -and to report suspicious activity immediately by calling 9-1-1 Remove valuables from your home -prior to the fumigation process beginning Consider hiring private security to -watch over your home Contact L.B.P.D. and request extra -patrol in your area (District Car Check) by calling (562) -570-7260 It should also be noted that while a building is -being fumigated, it is infused with toxic chemicals, which could be -fatal if inhaled. Anyone with information regarding fumigation burglaries is asked to -contact the Long Beach Police Department's Burglary Detail at (562) -570-7351. Anonymous tips may be submitted by calling -1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES -(274637), or visiting www.lacrimestoppers.org. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2240,https://delcopa.gov/planning/pubs/openspaceplanvoliii.html,Not Criminal Justice Related,Not Criminal Justice Related,"Delaware County 2035 Open Space, Recreation, and Greenway Plan","",200,"Delaware County, Pennsylvania","[""Volume III: CountyParks and Recreation Plan""]",[],"[""Planning Department Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Volume III: CountyParks and Recreation Plan Home / Departments / Planning Department / Publications / Open Space, Recreation, and Greenway Plan Volume III: County Parks and Recreation Plan Delaware County Open Space, Recreation, and Greenway Plan Date Published: April 2015 Due to the size of this volume, it is separated into the following files for convenient download: Cover, Acknowledgements, Table of Contents, and Chapter 1: Overview and Needs Analysis of County Parks and Recreation [1.8 mb] Chapter 2: Clayton County Park [13 mb] Chapter 3: Glen Providence County Park [13 mb] Chapter 4: Kent County Park [11.7 mb] Chapter 5: Rose Tree County Park [13.4 mb] Chapter 6: Smedley County Park [15.4 mb] Chapter 7: Upland County Park [13.4 mb] Appendices [1.8 mb] Abstract: The Open Space, Recreation, and Greenway Plan serves as a guide and resource for countywide, multi-municipal, and municipal open space planning efforts. It examines the policies and trends identified in the Delaware County 2035 Land Use Framework Plan with particular regard to open space, recreation, and greenway needs and opportunities specific to the County. Volume III specifically examines the Delaware County Parks and Recreation system, and includes long range site development drawings and accompanying narratives for several of the major County parks. Geographic Area: Countywide For more information or to order this report, contact the Department at 610-891-5200 or Planning_Department@co.delaware.pa.us . Planning Department Navigation Access the Data and Mapping Innovation Hub About Planning Calendar Current Projects Delaware County 2035 Demographic Data Development Review Forms Funding Green Space and Trails Project Mapping Municipal Programs & Initiatives Planning Education Publications Gina Burritt, Director Planning Department 2 W. Baltimore Avenue Suite 202 Media, PA 19063 Phone: 610-891-5200 Fax: 610-891-5203 Email: Planning_Department@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2023 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Volume III: CountyParks and Recreation Plan Home / Departments / Planning Department / Publications / Open Space, Recreation, and Greenway Plan Volume III: CountyParks and Recreation Plan Home / Departments / Planning Department / Publications / Open Space, Recreation, and Greenway Plan " -2241,http://www.longbeach.gov/press-releases/city-manager-announces-potential-recruitment-process-for-police-chief/,Media Bulletins,Agency-Published Resources,City Manager Announces Potential Recruitment Process for Police Chief,"",200,City of Long Beach,"[""PRESS RELEASE""]",[],[],[],[],[],"A- A A+ PRESS RELEASE City of Long Beach Public Information Office 411 W. Ocean Blvd, Long Beach, CA 90802 10/28/2014 FOR IMMEDIATE RELEASE Press Release # CM: 102814 Subject: City Manager Announces Potential Recruitment Process for Police Chief Contact: Debbie Mills, Director of Human Resources 562.570.6140 Debbie.Mills@longbeach.gov City Manager Pat West today announced the process for selecting a new Police Chief, should a vacancy occur as a result of the November 4, 2014 election. The City Manager plans to conduct an expedited recruitment process of internal candidates. All Long Beach Deputy Chiefs and Commanders will be eligible to apply for the position, and all interested candidates will be reviewed and interviewed. ""We have such strong internal candidates within our Police Department,"" said City Manager West. “Each and every member of our Police Command Staff are ready today to be Chief, giving Long Beach a strong, diverse pool of candidates to pick from.” The process will begin immediately following the November election, should it be necessary, and an announcement of a final decision is expected by mid-November to ensure a smooth transition. There is no expectation that an Interim Chief would be necessary. For more news, pictures, videos and announcements of what’s happening in Long Beach, follow us on Facebook , Twitter , Instagram and YouTube . A- A A+ PRESS RELEASE City of Long Beach Public Information Office 411 W. Ocean Blvd, Long Beach, CA 90802 10/28/2014 FOR IMMEDIATE RELEASE Press Release # CM: 102814 Subject: City Manager Announces Potential Recruitment Process for Police Chief Contact: Debbie Mills, Director of Human Resources 562.570.6140 Debbie.Mills@longbeach.gov City Manager Pat West today announced the process for selecting a new Police Chief, should a vacancy occur as a result of the November 4, 2014 election. The City Manager plans to conduct an expedited recruitment process of internal candidates. All Long Beach Deputy Chiefs and Commanders will be eligible to apply for the position, and all interested candidates will be reviewed and interviewed. ""We have such strong internal candidates within our Police Department,"" said City Manager West. “Each and every member of our Police Command Staff are ready today to be Chief, giving Long Beach a strong, diverse pool of candidates to pick from.” The process will begin immediately following the November election, should it be necessary, and an announcement of a final decision is expected by mid-November to ensure a smooth transition. There is no expectation that an Interim Chief would be necessary. For more news, pictures, videos and announcements of what’s happening in Long Beach, follow us on Facebook , Twitter , Instagram and YouTube . A- A A+ A- A A+ A- A A+ A- A A+ A- A A+ PRESS RELEASE City of Long Beach Public Information Office 411 W. Ocean Blvd, Long Beach, CA 90802 City of Long Beach Public Information Office 411 W. Ocean Blvd, Long Beach, CA 90802 " -2242,http://www.longbeach.gov/police/press-releases/warrant--expungement-servicing-event/,Media Bulletins,Agency-Published Resources,WARRANT & EXPUNGEMENT SERVICING EVENT,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 4/18/2019 FOR IMMEDIATE RELEASE Press Release # Subject: WARRANT & EXPUNGEMENT SERVICING EVENT Contact: Media Relations Detail (562) 570-5273 LBPDMediaRelations@longbeach.gov Click on flyer to enlarge The Long Beach Police Department (LBPD) and the Long Beach City Prosecutor’s Office have teamed up for another Warrant and Expungement Servicing Event , in an effort to continue to help our community with non-violent offenses. The LBPD’s Warrant Detail currently has a multitude of misdemeanor and traffic warrants in the system that need to be addressed. Any person with outstanding traffic or non-violent misdemeanor warrant, issued by LBPD (only), is encouraged to participate in this event. All individuals who qualify will be issued a new citation and court date for their outstanding warrant in order to handle the warrant violation in court. During the first two warrant clearing events last year, over 130 individuals were assisted with LBPD warrants. It is apparent from the turnout of these events that our community is willing to partner with LBPD to get a fresh start by taking care of their outstanding warrants. If it’s not a warrant holding you back from future opportunities, maybe it’s an old misdemeanor conviction. Any person with a misdemeanor conviction is also encouraged to participate in this event. This event will be an opportunity to sit down with licensed attorneys and paralegals to help you expunge your criminal conviction from your record. “We couldn’t be happier to give our community an opportunity in achieving their goals and accomplishments by making it possible to expunge old misdemeanor convictions and help clear warrants,” said LBPD Vice Investigations Lieutenant, Dina Zapalski. The event will be held as follows: Date: Saturday, April 27, 2019 Time: 1:00 - 6:00 p.m. Location: Long Beach City College - Pacific Coast Campus 1305 E. Pacific Coast Highway (Parking Lot #1) Please note, the following warrants are NOT eligible for a citation release: Any Felony Crime A misdemeanor warrant involving violence (Domestic Violence, Crime involving a Firearm or Resisting Arrest) The misdemeanor warrant involved a violation of a restraining, protective, or stay away order This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2243,http://www.longbeach.gov/police/press-releases/police-seeking-the-public-s-help-with-identifying-armed-robbery-suspect-from-video/,Media Bulletins,Agency-Published Resources,POLICE SEEKING THE PUBLIC'S HELP WITH IDENTIFYING ARMED ROBBERY SUSPECT FROM VIDEO,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 5/22/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: POLICE SEEKING THE PUBLIC'S HELP WITH IDENTIFYING ARMED ROBBERY SUSPECT FROM VIDEO Contact: Media Relations (562) 570-5273 VIEW VIDEO OF SUSPECT The Long Beach Police Department is seeking the public’s help with identifying a suspect who committed an armed robbery to a local business. On March 22, 2014, at approximately 12:20 a.m., the suspect entered a local business in the 3400 block of Long Beach Boulevard. The suspect approached an employee and engaged them in conversation. During the conversation, the suspect pulled a handgun from his waistband and demanded money from the employee. The suspect fled the location on foot, getting away with the cash. He was last seen southbound on Long Beach Boulevard crossing Wardlow Street. While investigating, detectives located videotape evidence of the suspect entering and exiting the business. The suspect is described as a Male White or Male Hispanic, 30 – 40 years old, wearing a black cap with “Security” inscribed on the front, a multi-colored blue and white jacket, blue jeans and tan colored work boots. Anyone with information on the suspect or his whereabouts is urged to contact Long Beach Police Robbery Detective Fermin Gonzalez at (562) 570-7464. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting www.lacrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2244,http://www.longbeach.gov/police/press-releases/click-it-or-ticket-campaign-starts-may-21st/,Media Bulletins,Agency-Published Resources,CLICK IT OR TICKET CAMPAIGN STARTS MAY 21ST,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2245,http://www.longbeach.gov/police/press-releases/dui-checkpoint-proves-effective-2-/,Media Bulletins,Agency-Published Resources,DUI CHECKPOINT PROVES EFFECTIVE(2),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 11/17/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: DUI CHECKPOINT PROVES EFFECTIVE Contact: Media Relations Detail (562) 570-5273 On Saturday, November 15, 2014, the Long Beach Police Department’s Traffic Section conducted a Driving Under the Influence/Driver License Checkpoint on 7th Street, west of Junipero Avenue, from 7 p.m. until 3 a.m. Officers were aided by Long Beach Police Reserves, Long Beach Police Explorers, and Long Beach Search and Rescue. During the eight-hour operation, 1508 vehicles passed through the checkpoint with 535 drivers being screened, and the following results: Seven (7) Standardized Field Sobriety Tests were conducted Six (6) drivers were arrested for DUI One (1) driver was cited for driving on a suspended license Five (5) drivers were cited for unlicensed driving Six (6) drivers were cited for unsafe driving One (1) vehicle was impounded Driving Under the Influence (DUI) checkpoints are a vital component in the fight against both impaired and unlicensed driving. Nationally, impaired driving caused by alcohol and/or drugs causes one death every 33 minutes. The average American has a 30% chance of being killed or injured by a driver under the influence. Sobriety checkpoints have been proven to reduce these types of driving-related collisions by removing such drivers from our streets. Funding for this program was provided by a grant from the California Office of Traffic Safety, through the National Highway Safety Administration. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2246,http://www.longbeach.gov/police/press-releases/murder-200-block-of-liberty-court/,Media Bulletins,Agency-Published Resources,MURDER 200 BLOCK OF LIBERTY COURT,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 4/5/2017 FOR IMMEDIATE RELEASE Press Release # 2017 Subject: MURDER 200 BLOCK OF LIBERTY COURT Contact: Media Relations Detail (562) 570-5273 UPDATE: On April 4, 2017 detectives from the Long Beach Police Department made an arrest in the murder of Trevor McCrainey, which occurred on March 7, 2017 in the 200 block of Liberty Court. The suspect arrested is Joseph Jeremy Bronson, a 25 year-old resident of Long Beach. He was booked into the Long Beach Jail for murder and attempt murder charges. He is being held on $2 million bail. On March 7, 2017, at approximately 4:12 p.m., officers were dispatched to the 200 block of Liberty Court regarding a shots call. Upon arrival officers found 2 victims with apparent gunshot wounds. The first victim a male adult was determined deceased at the scene with a gunshot wound to the upper torso. The second victim a female adult had gunshot wounds to her upper and lower torso. She was transported to a local hospital by Long Beach Fire where she is listed in serious but stable condition. The deceased victim has been identified as Trevor McCrainey, a 22 year-old resident of Long Beach. The motive for this case is still under investigation but may be an incident of road-rage, after the victims and suspect/s got in an argument at a different location just prior to the shooting. Anyone with information regarding the incident is asked to contact Homicide Detectives Malcolm Evans and Robert Gonzales at (562) 570-7244. Anyone wishing to remain anonymous may submit a tip through “LA Crime Stoppers” by calling 1-800-222-TIPS (8477), downloading the “P3 Tips” app to your smart phone (available at the Apple App store and Google Play), or visiting http://www.lacrimestoppers.org/ This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2247,http://www.longbeach.gov/police/press-releases/super-bowl-driving-impaired-enforcement/,Media Bulletins,Agency-Published Resources,SUPER BOWL IMPAIRED DRIVER ENFORCEMENT,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 2/1/2019 FOR IMMEDIATE RELEASE Press Release # Subject: SUPER BOWL IMPAIRED DRIVER ENFORCEMENT Contact: Media Relations Detail (562) 570-5273 LBPDMediaRelations@longbeach.gov CLICK TO ENLARGE IMAGE The Long Beach Police Department is encouraging all football fans to celebrate Super Bowl LIII responsibly by not driving impaired, or letting other fans get behind the wheel when they shouldn’t. “Millions of people will be watching the Super Bowl at parties and bars across the country. Don’t put others at risk because you chose to break the law and drive impaired,” stated Lieutenant Kris Klein. “Have a game plan for the big game by making sure you have a safe way to get home. Your best defense against impaired driving is to use a designated sober driver.” In an effort to flag those who choose to drive impaired, Long Beach Police Department will increase patrols Super Bowl Sunday (Feb. 3) Additional officers will be on the lookout for drivers suspected of driving under the influence of alcohol and/or drugs. Residents are also encouraged to report drunk drivers by calling 911. The Long Beach Police Department also reminds drivers that “DUI Doesn’t Just Mean Booze.” Prescription drugs, particularly those with a driving or operating machinery warning on the label, and marijuana can also be impairing and result in a DUI, especially when used in combination with alcohol or other drugs. If you’re hosting a party, be a team player and have plenty of snacks and non-alcoholic drinks available for designated sober drivers. Be sure to monitor who is drinking and how they are getting home. If you plan to drink, don’t plan to drive, even one drink can be one too many. So be this year’s “MVP” by being the sober driver to help others get home or if you choose to drink, use ride-shares or take public transportation. No matter who you are rooting for on Super Bowl Sunday, we are all on the same team when the game ends so remember to go safely. Funding for Super Bowl Sunday enforcement is provided by a grant from the California Office of Traffic Safety, through the National Highway Traffic Safety Administration. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2248,http://www.longbeach.gov/police/press-releases/murder-14-/,Media Bulletins,Agency-Published Resources,MURDER(14),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 4/9/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: MURDER Contact: Media Relations Detail (562) 570-5273 On Saturday, April 5, 2014, around 9:07 p.m., Long Beach Police were dispatched to a report of shots heard in the 2300 block of Eucalyptus Avenue, which resulted in the death of a male adult. Arriving officers discovered two male adult victims with apparent gunshot wounds to the lower body. Long Beach Fire Department paramedics transported both victims to a local hospital. One victim appeared to be in critical condition and the other in stable condition with a non-life threatening injury. On Tuesday, April 8, 2014, Long Beach Police were notified one of the victims succumbed to his injuries. He has been identified as 51-year-old Herbert Shephard of Los Angeles. The surviving victim's identity will not be released. No suspect information is available and a motive for the shooting is unknown. Anyone with information regarding this incident is urged to contact Long Beach Police Homicide Detectives Todd Johnson and Roger Zottneck at (562) 570-7244. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2249,http://www.longbeach.gov/police/press-releases/duidrivers-license-checkpoint-planned-tomorrow/,Media Bulletins,Agency-Published Resources,DUI/DRIVERS LICENSE CHECKPOINT PLANNED TOMORROW,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2250,http://www.longbeach.gov/police/press-releases/click-it-or-ticket-campaign-begins-may-18th/,Media Bulletins,Agency-Published Resources,CLICK IT OR TICKET CAMPAIGN BEGINS MAY 18TH,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 5/13/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: ""CLICK IT OR TICKET"" CAMPAIGN BEGINS MAY 18TH Contact: Media Relations (562) 570-5273 Once again, the Long Beach Police Department is reminding motorists to Click It or Ticket. As part of the national seat belt enforcement campaign, law enforcement agencies around the country will be stepping up enforcement May 18-31, which includes one of the busiest travel weekends of the year. ""Every day, unbuckled motorists are losing their lives in motor vehicle crashes,"" said Traffic Enforcement Lieutenant Kris Klein of the Long Beach Police Department. “As we approach Memorial Day weekend and the summer vacation season, we want to make sure people are doing the one best thing that can save them in a crash, buckling up.” According to the National Highway Traffic Safety Administration, nearly half of the 21,132 passenger vehicle occupants killed in crashes in 2013 were unrestrained. At night from 6:00 p.m. to 5:59 a.m., that number soared to 59 percent of those killed, which is why one focus of the Click It or Ticket campaign is nighttime enforcement. Participating law enforcement agencies will be taking a no-excuse approach to seat belt law enforcement, issuing citations day and night. In California, the minimum penalty for a seat belt violation is $161. Officers will conduct four nighttime seat belt enforcement operations during the two week Click It Or Ticket mobilization, to help lower California’s traffic deaths. In addition to these special patrols, officers on routine patrol will also be looking for unrestrained drivers and passengers to stop and cite. California statistics reveal that 500 unrestrained vehicle occupants died in 2013. Almost twice as many males were killed in crashes as compared to females, with lower belt use rates too. Of the males killed in crashes in 2013, more than half (54%) were unrestrained. For females killed in crashes, 41 percent were not buckled-up. “If you ask the family members of those unrestrained people who were killed in crashes, they’ll tell you - they wish their loved ones had buckled up,” added Lieutenant Klein. “The bottom line is that seat belts save lives. If these enforcement crackdowns get people’s attention and get them to buckle up, then we’ve done our job.” Funding for these operations is provided by a grant from the California Office of Traffic Safety, through the National Highway Traffic Safety Administration. For more information on the Click It or Ticket mobilization, please visit www.nhtsa.gov/ciot . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2252,http://www.longbeach.gov/police/press-releases/traffic-fatality--ocean-blvd----710-transition-/,Media Bulletins,Agency-Published Resources,Traffic Fatality (Ocean Blvd. & 710 Transition),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 12/23/2016 FOR IMMEDIATE RELEASE Press Release # Subject: TRAFFIC FATALITY Contact: Media Relations Detail (562) 570-5273 On Thursday, December 22, 2016, at approximately 9:24 p.m., Long Beach Police responded to Ocean Boulevard at the northbound 710 Freeway regarding a traffic collision between a vehicle and a pedestrian, which resulted in the death of the pedestrian. When officers arrived, they discovered a 2011 Freightliner semi-tractor stopped in the #1 lane of eastbound Ocean Boulevard, just east of the northbound 710 Freeway transition. Officers located a male subject with serious injuries, in the gore point area of Ocean Boulevard between the eastbound and westbound lanes of Ocean Boulevard. LBFD paramedics responded and transported the victim to a local hospital, where he was later pronounced deceased. The investigation revealed the semi-tractor was traveling eastbound in the #1 lane of Ocean Boulevard, when the pedestrian attempted to cross southbound Ocean Boulevard. The driver of the semi-tractor attempted to swerve, but was unable to avoid striking the pedestrian, and then crashed into the guardrail and eventually came to rest in the #1 lane of eastbound Ocean Boulevard. The semi-tractor was not pulling a trailer at the time of the collision. The driver of the semi-tractor was identified as a 36-year-old resident of La Puente. He had a valid driver’s license and insurance, and was interviewed at the scene and released. The pedestrian had no identification on his person, and appeared to be possibly homeless. The Los Angeles County Coroner’s office will attempt to identify the victim and make notification to next of kin. Anyone who may have witnessed the incident is asked to contact Long Beach Police Collision Investigation Detective Brian Watt at (562) 570-7355. Anonymous tips may be submitted through “LA Crime Stoppers” by calling 1-800-222-TIPS (8477), downloading the “P3 Tips” app to your smart phone (available at the Apple App store and Google Play), or visiting www.lacrimestoppers.org. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2253,http://www.longbeach.gov/police/press-releases/traffic-fatality---obispo-ave-and-broadway/,Media Bulletins,Agency-Published Resources,TRAFFIC FATALITY - OBISPO AVE AND BROADWAY,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 1/13/2019 FOR IMMEDIATE RELEASE Press Release # Subject: TRAFFIC FATALITY - OBISPO AVE AND BROADWAY Contact: Media Relations Detail (562) 570-5273 LBPDMediaRelations@longbeach.gov On January 11, 2019, at approximately 8:36 p.m., officers responded to the area of Obispo Avenue and Broadway regarding a head on traffic collision between two vehicles, which resulted in the death of a male adult. The preliminary investigation revealed the collision occurred when the driver of a Kia Soul was traveling south on Obispo Avenue south of Broadway when a Chevrolet Silverado was stopped facing north on the northbound side of the roadway, with his headlamps and flashers on, to pick up a co-worker. The driver of the Kia Soul then collided with the stopped Chevrolet Silverado. The collision caused the Kia Soul to also collide with an unoccupied Honda Civic that was parked along the west curb of the street. The driver of the Kia Soul, a 36-year-old male adult resident of Long Beach was transported to a local hospital in critical condition where he was later pronounced deceased. Identity is being withheld at this time pending notification to next of kin. Officers also contacted a 54-year-old male resident of Bullhead City, AZ who was identified as the driver of a 2014 Chevrolet Silverado involved in the collision. He had a valid license, stayed at the scene and cooperated with the investigation. There was no indication drugs or alcohol were a factor in the collision. The investigation remains ongoing. Anyone who may information regarding this incident is asked to call Long Beach Police Department Collision Investigation Detail Detective David Whelan at (562) 570-7355. Anonymous tips may be submitted through “LA Crime Stoppers” by calling 1-800-222-TIPS (8477), downloading the “P3 Tips” app to your smart phone (available at the Apple App store and Google Play), or visiting www.lacrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2254,http://www.longbeach.gov/police/press-releases/duidrivers-license-checkpoint-planned-this-weekend7/,Media Bulletins,Agency-Published Resources,DUI/DRIVER'S LICENSE CHECKPOINT PLANNED THIS WEEKEND,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2255,http://www.longbeach.gov/police/press-releases/dui-enforcement-operations-planned-this-weekend-6-/,Media Bulletins,Agency-Published Resources,DUI ENFORCEMENT OPERATIONS PLANNED THIS WEEKEND(6),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 1/29/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: DUI ENFORCEMENT OPERATIONS PLANNED THIS WEEKEND Contact: Media Relations Detail (562) 570-5273 Officers from the Long Beach Police Department’s DUI Enforcement Team will deploy this weekend to stop and arrest alcohol and drug-impaired drivers in the Department’s ongoing traffic safety campaign. DUI Saturation Patrols will deploy on January 30, 2015 between the hours of 7:00 p.m. and 3:00 a.m., in areas with high frequencies of DUI collisions and/or arrests. After falling dramatically for five straight years, figures for 2012 show an increase to 802 deaths in California because someone failed to designate a sober driver. Over the course of the past three years in Long Beach, DUI collisions have claimed nine lives and resulted in 315 injury crashes, harming 420 of our friends and neighbors. Driving under the influence can impact the economy in addition to the pain and suffering of those immediately affected. Conservatively, a fatality has a $1.4 million impact, an injury $70,000, and a crash that only damages property averages nearly $9000. If you’re drinking and driving, law enforcement will find and arrest you. No warnings, no excuses. The only way to truly avoid a DUI is to drive sober. There are many ways to get home safely after drinking, and driving isn’t one of them. Designate a sober driver ahead of time, or call a friend or family member. You could also use public transportation, or call a taxi. The cost of cab fare is nothing compared to a $10,000 DUI or the cost of someone’s life, and the ‘inconvenience’ of not driving your own car home is nothing compared to the inconvenience of spending time behind bars. Funding for this program is from a grant from the California Office of Traffic Safety, through the National Highway Traffic Safety Administration. Report Drunk Drivers, Call 9-1-1! This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2256,http://www.longbeach.gov/police/press-releases/checkpoint/,Media Bulletins,Agency-Published Resources,CHECKPOINT,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2257,http://www.longbeach.gov/police/press-releases/dui-saturation-patrol-nets-four-arrests/,Media Bulletins,Agency-Published Resources,DUI SATURATION PATROL NETS FOUR ARRESTS,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 12/14/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: DUI SATURATION PATROL NETS FOUR ARRESTS Contact: Media Relations Detail (562) 570-5273 The Long Beach Police Department Traffic Section conducted a DUI Saturation Patrol on December 12, 2015, between the hours of 7:00 p.m. and 3:00 a.m. High visibility DUI enforcement efforts have a deterrent effect reducing the incidents of impaired driving and will continue thanks to special funding for extra officers to patrol for this deadly crime. The operation resulted in the following: 49 vehicle enforcement stops were conducted 13 field sobriety tests were conducted 4 DUI-alcohol suspects were arrested 1 driver was arrested for an outstanding DUI warrant 11 citations were issued Law enforcement emphasizes the preventable nature of drunk driving, reminding everyone that all it takes is a little planning ahead. Designate a sober driver or call a cab. But whatever you do, don’t drink and drive. The California Office of Traffic Safety DDVIP (Designated Driver VIP) mobile app is now available for free download on iOS and Android devices. Launched last year, the DDVIP app offers enhanced features, allowing users to “Map a Spot” with their current location to find DDVIP partnering establishments in their area or a “List of Spots” to search all participating bars and restaurants throughout California. Users will be offered free incentives at each bar to celebrate their life saving role. They can stay up-to-date with the latest from DDVIP and see what other users are saying via its social tab. Also through the app, for those who want to imbibe but also make it a point to plan ahead, users can easily order a sober ride from one of several ride sharing services – all from one screen. Drivers caught driving impaired can expect the impact of their DUI arrest to include jail time, fines, fees, DUI classes, and other expenses that can exceed $10,000, not to mention the embarrassment when friends and family find out. The Long Beach Police Department will conduct a DUI/Drivers License Checkpoint on Saturday, December 19, 2015, in the Department’s ongoing commitment to lowering deaths and injuries upon the city’s streets and highways. The DUI Saturation Patrol was funded by a grant from the California Office of Traffic Safety, through the National Highway Traffic Safety Administration, reminding everyone to ‘Report Drunk Driver – Call 9-1-1’. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2258,http://www.longbeach.gov/police/press-releases/dui-saturation-patrol-proves-effective-6-/,Media Bulletins,Agency-Published Resources,DUI SATURATION PATROL PROVES EFFECTIVE(6),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 3/3/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: DUI SATURATION PATROL PROVES EFFECTIVE Contact: Media Relations Detail (562) 570-5273 On Saturday, February 28, 2015, the Long Beach Police Department’s Traffic Section conducted a Driving Under the Influence (DUI) Saturation Patrol from 7:00p.m. until 3:00a.m. During the eight-hour operation, motor officers patrolled throughout the city looking for impaired drivers and took the following enforcement actions: Conducted fifty-four (54) enforcement stops Conducted ten (10) Standardized Field Sobriety Tests Made four (4) DUI arrests Issued one (1) citation to an unlicensed driver Impounded one (1) vehicle for driver being unlicensed Issued eight (8) traffic citations for unsafe driving After falling dramatically for five straight years, figures for 2012 show an increase to 802 deaths in California because someone failed to designate a sober driver. Over the course of the past three years in Long Beach, DUI collisions claimed nine lives and resulted in 315 injury crashes, harming 420 of our friends and neighbors. Driving under the influence can impact the economy in addition to the pain and suffering of those immediately affected. Conservatively, a fatality has a $1.4 million impact, an injury $70,000, and a crash that only damages property averages nearly $9000. Funding for this program is from a grant from the California Office of Traffic Safety, through the National Highway Traffic Safety Administration. Report Drunk Drivers, Call 9-1-1! This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2260,http://www.longbeach.gov/police/press-releases/charges-filed-against-three-suspects-for-brutal-crime/,Media Bulletins,Agency-Published Resources,CHARGES FILED AGAINST THREE SUSPECTS FOR BRUTAL CRIME,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2261,http://www.longbeach.gov/police/press-releases/distracting-driving-will-be-enforced/,Media Bulletins,Agency-Published Resources,Distracting Driving Will be Enforced,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2263,http://www.longbeach.gov/police/press-releases/arrest-made-and-charges-filed-in-human-trafficking-of-a-minor-case/,Media Bulletins,Agency-Published Resources,ARREST MADE AND CHARGES FILED IN HUMAN TRAFFICKING OF A MINOR CASE,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 10/23/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: ARREST MADE AND CHARGES FILED IN HUMAN TRAFFICKING OF A MINOR CASE Contact: Media Relations (562) 570-5273 On Wednesday, October 21, 2015, detectives from the Long Beach Police Department Vice Investigations Section arrested 38-year-old Long Beach resident Jeff Floyd Beadle for trafficking a 17-year-old girl and today charges were filed. Detectives initiated an investigation after seeing an advertisement for prostitution on the Internet. During their investigation detectives learned the victim had been forced to provide sex for money and was working out of an old dilapidated motor home where she was living with the suspect. Beadle, who is currently on active parole for committing a lewd and lascivious act, was identified as the suspect and was subsequently arrested. The victim was rescued and will be provided services through the Los Angeles County First Responder Protocol For Sexually Exploited Children. Today, detectives presented the case to the Los Angeles County District Attorney's office. Beadle was charged with human trafficking of a minor and pimping and pandering a minor. Beadle will be arraigned on Monday, October 26, 2015 at Long Beach Superior Court and is currently being held at the Los Angeles County Men’s Jail without bail. The Long Beach Police Department is a proud member of the Commercially Sexually Exploited Child Task Force formed in 2013 by the Los Angeles Board of Supervisors. The protocol, designed by the task force, provides immediate victim centered services to minors who have been sexually exploited. Long Beach Vice Detectives have used the protocol seventeen (17) times this year for minor victims they have recovered and it has been a success. Anyone with information regarding this investigation, or anyone who is or has been a victim of human trafficking is urged to call the Long Beach Police Vice Investigations Detail for help at (562) 570-7219. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2264,http://www.longbeach.gov/police/press-releases/duidrivers-license-checkpoint-planned-this-weekend4/,Media Bulletins,Agency-Published Resources,DUI/DRIVER'S LICENSE CHECKPOINT PLANNED THIS WEEKEND,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2265,http://www.longbeach.gov/police/press-releases/traffic-fatality-2-/,Media Bulletins,Agency-Published Resources,TRAFFIC FATALITY(2),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 5/27/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: TRAFFIC FATALITY Contact: Media Relations (562) 570-5273 On Monday, May 26, 2014, at approximately 1:27 p.m., Long Beach Police were dispatched to the area of Long Beach Boulevard and 16th Street regarding an injury traffic collision. Arriving officers discovered an unconscious male adult bicyclist lying in the roadway after being struck by a 2006 Ford Econoline medical transport van. Long Beach Fire Department personnel responded and pronounced the bicyclist deceased at the scene. The bicyclist was identified as 80-year-old Long Beach resident Mariano Carasaquit Libron. The preliminary investigation revealed Mr. Libron rode his bicycle eastbound on 16th Street in a crosswalk at the intersection of Long Beach Boulevard, and failed to stop for a red traffic signal. The Ford Econoline, driven by a 24-year-old Long Beach resident, was traveling southbound on Long Beach Boulevard on a solid green traffic signal and struck Mr. Libron. The driver of the van and one passenger, a patient being transported in the van, were uninjured. The passenger was interviewed and released at the scene. The driver was positively identified and was properly licensed. The driver was interviewed and released at the scene. The investigation remains ongoing. Anyone with information regarding this collision is asked to call Long Beach Police Department Collision Investigation Detail Detective Steve Fox at (562) 570-7355. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2266,http://www.longbeach.gov/police/press-releases/traffic-fatality-marina-dr---studebaker/,Media Bulletins,Agency-Published Resources,TRAFFIC FATALITY,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 4/10/2017 FOR IMMEDIATE RELEASE Press Release # 2017 Subject: TRAFFIC FATALITY Contact: Media Relations Detail (562) 570-5273 On Sunday, April 10, 2017, at approx. 7:55 p.m., Long Beach Police responded to a vehicle versus a motorcycle traffic collision on Marina Drive, just west of Studebaker Road, which resulted in the death of the motorcyclist. Upon arrival, officers discovered a 2006 Buick Terraza with major damage to the rear right side area, and a 2016 Harley Davidson motorcycle that had split in two pieces. The driver of the motorcycle was found lying in the street and had sustained major injuries. He was transported to a local hospital by L.B.F.D. paramedics and pronounced deceased a few hours later. The investigation revealed the Buick was traveling south/east on Marina Drive and was attempting to make a left hand turn into a shopping center, when it was struck by the motorcycle, which was traveling north/west on Marina Drive in the #1 lane, at a high rate of speed. The force of the impact caused the handlebars, front forks, and front wheel of the motorcycle to break apart from the rest of the motorcycle. The driver of the motorcycle is only being identified as a 25-year-old male resident of Long Beach, pending notification of next of kin. He was believed to be driving under the influence of alcohol and did not have a valid motorcycle endorsement on his California driver’s license. The driver of the Buick was a 39-year-old female resident of Long Beach. She and her 12-year-old passenger had only minor pain and were not transported. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2267,http://www.longbeach.gov/police/press-releases/bird-theft-suspect-arrested--two-others-remain-outstanding/,Media Bulletins,Agency-Published Resources,BIRD THEFT SUSPECT ARRESTED; TWO OTHERS REMAIN OUTSTANDING,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 9/9/2015 FOR IMMEDIATE RELEASE Press Release # Subject: BIRD THEFT SUSPECT ARRESTED; TWO OTHERS REMAIN OUTSTANDING Contact: Media Relations Detail (562) 570-5273 In May of 2015, Long Beach Police asked for the public’s help in locating a named suspect wanted in connection with the theft of exotic birds from a Long Beach home, and identifying two other suspects also involved who were all caught on video surveillance. One of the three suspects has been arrested and police are still asking for the public’s help regarding the two other suspects. Through their investigation, detectives identified 42-year-old Jose Jesus Zermeno as the suspect who entered the backyard of a residence in the 6700 block of Harbor Avenue and stole five exotic birds from separate birdcages. Zermeno was observed on video climbing over the fence into the backyard, opening cages, removing the birds, and handing them over the fence to a second suspect. Suspect Zermeno remains outstanding. Through continued efforts, detectives were able to identify the second suspect as 31-year-old Gerardo Jose Victoria of Long Beach, who was taken into custody on June 10, 2015 in the 800 block of E. Pacific Coast Highway. Victoria was booked for grand theft and possession for sales, and was held on $40,000 bail at the Long Beach City Jail. He was arraigned in Long Beach Superior Court on Tuesday, September 8, 2015, and held to answer on the above charges. He is due back in court on November 3, 2015, for trial proceedings. A third unidentified suspect who drove a red Ford Ranger truck, the means of transportation the suspects used to commit the crime and flee, also remains outstanding. Suspect Zermeno is a male Hispanic, approximately 5’ 3” with a medium build. Anyone who may have information regarding his whereabouts, or the identity/whereabouts of the third suspect who drove the truck, is asked to contact the Long Beach Police Department’s Burglary Detail at (562) 570-7351. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting www.lacrimestoppers.org. To view the original News Release, (which includes a photo of Suspect Zermeno and links to the video surveillance footage initially released), click on the below link: Bird Theft Suspect Identified; Suspect's Help Sought This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2268,http://www.longbeach.gov/police/press-releases/murder-1100-block-locust/,Media Bulletins,Agency-Published Resources,murder 1100 block locust,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 5/22/2016 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: MURDER Contact: Media Relations Detail (562) 570-5273 On Saturday, May 21, 2016, at approximately 12:49 p.m., Long Beach Police were dispatched to assist Long Beach Fire Department personnel with a deceased individual inside a residence, in the 1100 block of Locust Avenue. Arriving officers found a female adult who sustained a stab wound to the torso. Homicide detectives responded to begin their investigation. The victim has been identified as 68-year-old Margarita Valdez Castro, a resident of Long Beach. Luis Antonio Jimenezmolina, 32 years old and a resident of Long Beach, has been booked murder. He is being held in Long Beach City Jail with bail set at $2,000,000.00. The incident does not appear to be random. A motive for the stabbing is unknown and the investigation remains ongoing. Anyone with information regarding this incident is urged to contact Long Beach Police Homicide Detectives Todd Johnson and Shea Robertson at (562) 570-7244. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2269,http://www.longbeach.gov/police/press-releases/dui-saturation-patrol-nets-five-arrests/,Media Bulletins,Agency-Published Resources,DUI SATURATION PATROL NETS FIVE ARRESTS,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 5/8/2017 FOR IMMEDIATE RELEASE Press Release # 2017 Subject: DUI SATURATION PATROL NETS FIVE ARRESTS Contact: Media Relations Detail (562) 570-5273 The Long Beach Police Department Traffic Unit conducted a DUI Saturation Patrol on Friday, May 5, 2017, between the hours of 6:00 p.m. and 2:00 a.m. High Visibility Enforcement efforts like this have a deterrent effect, lowering the incidents of impaired driving. Results included: · 35 vehicle enforcement stops · 7 Standardized Field Sobriety Tests (SFST) completed · 5 DUI-Alcohol suspects arrested · 10 citations issued for unsafe driving Drivers caught driving impaired can expect the impact of a DUI arrest to include jail time, fines, fees, DUI classes, license suspension and other expenses that can exceed $10,000, not to mention the embarrassment when friends and family find out. Drivers are encouraged to download the Designated Driver VIP (DDVIP) free mobile app for Android or iPhone. The DDVIP app helps find nearby bars and restaurants that feature free incentives for the designated sober driver, from free non-alcoholic drinks to free appetizers and more. The feature-packed app even has social media tie-ins and a tab for the non-DD to call a commercial ride-sharing service. Studies of California drivers have shown that 30 percent of drivers in fatal crashes had one or more drugs in their systems. A study of active drivers showed more tested positive for drugs that may impair driving (14 percent) than did for alcohol (7.3 percent). Of the drugs, marijuana was most prevalent, at 7.4 percent, slightly more than alcohol. Long Beach Police Department will conduct another DUI Saturation Patrol on Saturday, June 3, 2017, in its ongoing commitment to lower deaths and injuries upon our streets and highways. The DUI Saturation Patrol was funded by a grant from the California Office of Traffic Safety through the National Highway Traffic Safety Administration reminding everyone to 'Report Drunk Drivers: Call 9-1-1.' This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2270,http://www.longbeach.gov/police/press-releases/frequently-requested-lbpd-policies-available-on-website/,Media Bulletins,Agency-Published Resources,Frequently Requested LBPD Policies Available on Website,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2272,http://www.longbeach.gov/press-releases/long-beach-police-lieutenant-reunites-with-resident-he-helped/,Media Bulletins,Agency-Published Resources,Long Beach Police Lieutenant Reunites With Resident He Helped,"",200,City of Long Beach,"[""PRESS RELEASE""]",[],[],[],[],[],"" -2273,http://www.longbeach.gov/police/press-releases/three-suspects-arrested-for-2013-murder/,Media Bulletins,Agency-Published Resources,THREE SUSPECTS ARRESTED FOR 2013 MURDER,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 4/17/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: THREE SUSPECTS ARRESTED FOR 2013 MURDER Contact: Media Relations Detail (562) 570-5273 Three suspects have been arrested and charged in connection to a 2013 murder. On April 28, 2013, at approximately 3:00 a.m., Long Beach Police were dispatched to a report of gunshots heard in the area of Spaulding Street and Junipero Avenue. Officers arrived and discovered a male adult victim, lying in the roadway in the 1400 block of Junipero Avenue. The victim had an apparent gunshot wound to his upper body and died at the scene before the officers arrived. The Los Angeles County Coroner’s Office later identified the victim as Enrique Casique, 39 years old and a resident of Long Beach. On Tuesday, June 4, 2013, detectives arrested Miguel Medina, a 32-year-old resident of Long Beach. On Thursday, January 23, 2014, detectives arrested Jose Torres, a 30-year-old resident of Long Beach. On April 4, 2014, a warrant was issued for Marcial Rios, a 32-year-old resident of Long Beach, in connection with the murder. On April 12, 2014, Rios was taken into custody by United States Customs Agents at the United States-Mexico border in San Ysidro, California, and was returned to the United States. Rios was arraigned today, April 17, 2014. The Los Angeles County District Attorney’s Office filed murder charges on all three in connection with the murder of Enrique Casique. All three individuals are being held at Los Angeles County Jail. The investigation remains on going. Anyone with information regarding this incident is urged to contact the Long Beach Police Homicide Detective Hugo Cortes at (562) 570-7244. Anyone wishing to remain anonymous may call Anyone with information regarding this incident is encouraged to call Long Beach Police Homicide 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2274,https://www.coppelltx.gov/524/state-of-the-city,Not Criminal Justice Related,Not Criminal Justice Related,"State of the City | Coppell, TX",Check out the most recent Coppell State of the City address.,200,"Coppell, TX | Official Website","[""State of the City""]","[""2024 State of the City""]","[""Loading""]",[],[],[],Skip to Main Content -2275,http://www.longbeach.gov/police/press-releases/motorcycle-safety-operation/,Media Bulletins,Agency-Published Resources,IMPROVING MOTORCYCLE SAFETY AIM OF LONG BEACH POLICE DEPARTMENT OPERATION,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 3/24/2017 FOR IMMEDIATE RELEASE Press Release # 2017 Subject: IMPROVING MOTORCYCLE SAFETY AIM OF LONG BEACH POLICE DEPARTMENT OPERATION Careless motorists as well as riders get special scrutiny Contact: Media Relations Detail (562) 570-5273 The Long Beach Police Department will conduct a specialized Motorcycle Safety Enforcement Operation on Sunday, March 26, 2017, in an effort to lower deaths and injuries. Extra officers will be on duty patrolling areas frequented by motorcyclists and where motorcycle crashes occur. Officers will be looking for violations made by drivers and riders alike that can lead to motorcycle crashes. They will be cracking down on both those operating regular vehicles and motorcycles who are violating traffic safety laws. Motorcycle fatalities jumped dramatically in California by over 28 percent from a decade low of 352 in 2010. In 2013, 453 motorcyclists lost their lives, which is at a five-year high. California collision data reveals that primary causes of motorcycle-involved crashes include speeding, unsafe turning and impairment due to alcohol and other drugs by both riders and drivers alike. Operations like this are aimed at curbing any more increases in motorcycle deaths and sending the numbers back downward. Over the course of the past three years, motorcycle-involved collisions have resulted in 315 fatal and injury crashes. Safety tips for riders – See and Be Seen: · Use your lane position to increase visibility; change lanes only when there is ample room · Match your speed to surrounding traffic · Always wear a DOT compliant helmet and brightly colored, protective clothing · Ride with lights on during daylight hours Safety tips for drivers – Share the Road: · Look twice for motorcyclists, especially when entering the roadway, turning or changing lanes · Motorcyclist are allowed in HOV lanes unless prohibited by signage Riders are urged to obtain training through the California Motorcyclist Safety Program. Information and training locations are available at http://www.californiamotorcyclist.com/ or 1-877 RIDE 411 (1-877-743-3411). Funding for this program is provided by a grant from the California Office of Traffic Safety through the National Highway Traffic Safety Administration. The message to all drivers and motorcyclists is: share in the responsibility and do your part by safely “sharing the road.” This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2276,https://southamptontownnypolice.gov/faq.aspx?qid=299,Contact Info & Agency Meta,Info About Agencies,"FAQs • I want to build a dock off my property, what do I nee","",200,"Police | Southampton, NY - Official Website",[],"[""▼ Trustees""]","[""Site Tools"", ""Categories"", ""Live Edit"", ""Contact Us"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -2277,https://coloradosprings.gov/police-department/article/news/suspect-multiple-armed-robberies-arrested,Media Bulletins,Agency-Published Resources,Suspect in multiple armed robberies arrested | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""Suspect in multiple armed robberies arrested""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[],"" -2278,https://alpha.austin.gov/en/police-oversight/formal-complaints-opo-processed-on-june-5-purpose-and-scopecommunity-policing-and-other-policy-violations/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -2279,http://www.longbeach.gov/police/press-releases/murder-investigation---1200-block-of-chestnut/,Media Bulletins,Agency-Published Resources,MURDER INVESTIGATION - 1200 BLOCK OF CHESTNUT,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 10/5/2018 FOR IMMEDIATE RELEASE Press Release # Subject: *UPDATE* MURDER SUSPECTS ARRESTED AND CHARGED Contact: Media Relations Detail (562) 570-5273 On Thursday, October 4, 2018, Long Beach Police Homicide Detectives presented their case to the Los Angeles District Attorney's Office, which filed charges against Raymond Moreno and Travis Cockrell for a murder that occurred in the 1200 block of Chestnut Avenue on Friday, September 14, 2018. The victim has been identified as 24-year-old Joshua Harris of Long Beach. On Wednesday, September 26, 2018, officers arrested 34-year-old Raymond Moreno of Long Beach. Moreno was charged with murder, ex-felon in possession of a gun, ex-felon in possession of ammunition and a gang enhancement. On Monday, August 20, 2018, at approximately 8:00 p.m., officers responded to the 1500 Block of Daisy Avenue regarding a shooting that just occurred. Through their investigation, detectives found evidence linking 22-year-old Travis Cockrell of Long Beach to the shooting. On Friday, September 28, 2018, officers arrested Cockrell in Long Beach. Cockrell was charged with murder, assault with a deadly weapon, accessory after the fact, and a gang enhancement. During their investigation, Homicide Detectives identified Moreno and Cockrell responsible for the murder of Joshua Harris. Moreno and Cockrell are being held at the Los Angeles County Jail. Original News Release 9/15/18: MURDER INVESTIGATION - 1200 BLOCK OF CHESTNUT On Friday, September 14, 2018, at approx. 11:40 p.m., officers were dispatched to the 1200 block of Chestnut Avenue regarding a shooting, which resulted in the death of a male adult. When officers arrived, they located the victim on the sidewalk, who had been struck in the upper torso by gunfire. The victim was determined deceased at the scene Long Beach Fire. The Los Angeles County Coroner’s Office will determine the identity of the victim, and make notifications to next of kin. The incident is being investigated as possibly gang-related, however, a motive has not yet been determined. Anyone with information is asked to contact the LBPD Homicide Detectives Sean Irving or Ben Vargas at (562) 570-7244. Anonymous tips may be submitted through “LA Crime Stoppers” by calling 1-800-222-TIPS (8477), downloading the “P3 Tips” app to your smart phone (available at the Apple App store and Google Play), or visiting www.lacrimestoppers.org. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2280,https://www.desmoineswa.gov/departments/police/online_crime_reporting/spanish_online_police_reporting,Poor Data Source,Poor Data Source,"Spanish Online Police Reporting - City of Des Moines, WA","",200,Just a moment...,"[""City of Des Moines, WA""]","[""Spanish Online Police Reporting""]",[],[],[],[],Skip to Content -2281,https://www.trinidad.co.gov/police-department,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -2282,https://www.newcarrolltonmd.gov/government/departments/police_department/ncpd_news,List of Data Sources,Info About Agencies,"","",404,"","","","","","","","" -2283,http://lafayettepolice.us/616/commercial-kitchen-operations,Not Criminal Justice Related,Not Criminal Justice Related,"Commercial Kitchen Operations | Lafayette, IN - Official Website","If your business operates a commercial kitchen, you'll want to know these rules and regulations for equipment and facilities. ",200,"Police Department | Lafayette, IN - Official Website","[""Commercial Kitchen Operations""]","[""Commercial Kitchen Ventilation"", ""Exhaust Air"", ""Replacement Air"", ""Capture and Containment Of Vapors & Heat"", ""Exhaust System Components"", ""Capture & Containment"", ""Ventilation Performance Test"", ""Performance Evaluation"", ""Test Conditions"", ""Pre-Engineered Fire Suppression System""]","["""", ""Basic Commercial Kitchen"", ""New Construction"", ""Existing Systems"", ""Verification"", ""Final Report"", ""Standard"", ""Testing"", ""Contact Us"", ""Brian Alkire"", ""Fire Department"", ""Hours"", ""Quick Links"", ""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -2284,http://www.longbeach.gov/police/press-releases/2014-robbery-victim-dies--reward-renewed/,Media Bulletins,Agency-Published Resources,2014 Robbery Victim Dies; Reward Renewed,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 5/27/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: 2014 ROBBERY VICTIM DIES; REWARD RENEWED Contact: Media Relations Detail (562) 570 -5273 VIEW VIDEO Last night, May 26, 2015, the Los Angeles County Board of Supervisors, at the recommendation of Supervisor Don Knabe, re-issued a $10,000 reward for information leading to the arrest and conviction of the person(s) responsible for the death of 54-year-old Felix Avelar Duran of Long Beach, a mini-market owner who was shot during a robbery in March of 2014. On May 19, 2015, Long Beach Police were notified by the Los Angeles County Coroner’s Office that victim Duran had succumbed to injuries caused by the shooting. He had remained hospitalized and on life support since the incident. On Monday, March 24, 2014, at approximately 7:50 p.m., Long Beach Police were dispatched to the area of 7th Street and Cerritos Avenue regarding an unknown trouble call, possibly involving an assault with a deadly weapon. Arriving officers determined a robbery to a liquor store in the 1100 block of E. 7th Street occurred, and the store owner who was 53-years-old at the time, sustained a gunshot wound to the upper torso. Long Beach Fire Department paramedics transported Victim Duran to a local hospital where he was listed in critical condition. Due to the extent of his injuries, Homicide detectives responded to the scene. Officers worked diligently throughout the night to collect evidence, review witness statements, and seek out any video surveillance that may have captured useful information. In May of 2014, a reward was established by the L.A. County Board of Supervisors, and investigators released surveillance video footage depicting the suspect entering the store, shooting the victim, and taking the cash register before fleeing on foot. The suspect was described as a male Black, late teens or early 20’s with an average build, and wearing a black hoodie-style sweatshirt with the word “Cali” across the front chest area. Investigators are still hopeful the reward may prompt someone with information to come forward. Anyone with information regarding the suspect’s identity or whereabouts is urged to contact L.B.P.D. Homicide Detectives Scott Lasch and Donald Goodman at (562) 570-7244. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting www.lacrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2285,http://www.longbeach.gov/police/press-releases/motorcycle-safety-is-aim-of-l-b-p-d--operation/,Media Bulletins,Agency-Published Resources,MOTORCYCLE SAFETY IS AIM OF L.B.P.D. OPERATION,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 4/24/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: MOTORCYCLE SAFETY IS AIM OF L.B.P.D. OPERATION Careless motorists as well as riders get special scrutiny Contact: Media Relations Detail (562) 570-5273 The Long Beach Police Department will be conducting a specialized Motorcycle Safety Enforcement Operation on Sunday, April 26, 2015, in an effort to lower deaths and injuries. Extra officers will be on duty patrolling areas frequented by motorcyclists and where motorcycle crashes occur. Officers will be looking for violations made by drivers and riders alike that can lead to motorcycle crashes. They will be cracking down on both those operating regular vehicles and motorcycles who are under the influence of drugs or alcohol, speeding, making illegal turns, or any other dangerous violation. Motorcycle fatalities saw a phenomenal drop of 37 percent from 2008 to 2010, but then rose 23 percent by 2012. Operations like this are aimed at curbing any more rises in motorcycle deaths and sending the numbers back downward. Over the course of the past 2 years, motorcycle involved collisions have resulted in 12 fatalities and 184 injuries in the City of Long Beach. California collision data reveals that primary causes of motorcycle-involved crashes include speeding, unsafe turning and impairment due to alcohol and other drugs by both riders and drivers alike. Safety tips for riders – See and Be Seen: Ride with lights on during daylight hours Use your lane position to increase visibility; change lanes only when there is ample room Match your speed to surrounding traffic Always wear a DOT compliant helmet and brightly colored, protective clothing Safety tips for drivers – Share the Road: Look twice for motorcyclists, especially when entering the roadway, turning or changing lanes Motorcyclist are allowed in HOV lanes unless prohibited by signage Riders are urged to get training through the California Motorcyclist Safety Program. Information and training locations are available online or 1-877 RIDE 411 (1-877-743-3411). Funding for this program is provided by a grant from the California Office of Traffic Safety through the National Highway Traffic Safety Administration. The message to all drivers and motorcyclists is: share in the responsibility and do your part by safely “sharing the road.” This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2286,http://www.longbeach.gov/police/press-releases/human-sex-trafficking-task-force-operation/,Media Bulletins,Agency-Published Resources,HUMAN SEX TRAFFICKING TASK FORCE OPERATION,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2287,http://www.longbeach.gov/police/press-releases/traffic-fatality-10-/,Media Bulletins,Agency-Published Resources,TRAFFIC FATALITY(10),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 2/17/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: TRAFFIC FATALITY Contact: Media Relations (562) 570-5273 On Friday, February 13, 2015, at approximately 9:48 P.M., officers from the Long Beach Police Department responded to Santa Fe Avenue and Lincoln Street regarding a hit-and-run traffic collision involving a vehicle and pedestrian in a wheelchair. Upon arrival, officers located a male adult pedestrian north of the intersection suffering from trauma to the head and body. Long Beach Fire Department personnel responded and transported the victim to a local hospital where he remained in critical condition. The preliminary investigation revealed the pedestrian, identified as 55-year-old Jose Guevarra, was in his wheelchair crossing eastbound on Santa Fe Avenue at Lincoln Street in an unmarked crosswalk. The suspect vehicle was traveling northbound on Santa Fe Avenue when it failed to yield to the pedestrian and collided with him. Mr. Guevara was thrown from his wheelchair and came to rest in the street north of the intersection. The suspect vehicle fled from the collision northbound on Santa Fe Avenue towards Wardlow Road, dragging the wheelchair. Upon reaching Wardlow Road, the suspect vehicle turned eastbound on Wardlow Road where the wheelchair dislodged from the vehicle. The suspect vehicle was last seen traveling eastbound on Wardlow Road. The suspect vehicle was described as a green sedan, possibly a BMW. On Sunday, February 15, 2015, at approximately 3:18 P.M., Mr. Guevarra succumbed to his injuries and was pronounced deceased at the hospital. Anyone who may have information regarding this incident is urged to contact the Long Beach Police Department Collision Investigation Detail, Detective Sirilo Garcia at (562) 570-7355. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2288,http://www.longbeach.gov/police/press-releases/charges-filed-against-former-police-officer/,Media Bulletins,Agency-Published Resources,Charges Filed Against Former Police Officer,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 10/31/2016 FOR IMMEDIATE RELEASE Press Release # Subject: CHARGES FILED AGAINST FORMER POLICE OFFICER Contact: Media Relations Detail (562) 570-5273 On Monday, October 31, 2016, a former Long Beach police officer was arrested by the Orange County Sheriff’s Department in connection with an assault with a deadly weapon investigation. On October 28, 2015, the Long Beach Police Department became aware of an off-duty incident that occurred the day prior, October 27, 2015, involving a Long Beach police officer, which stemmed from a domestic situation that occurred in Long Beach. Upon learning of the potential misconduct, the Long Beach Police Department immediately launched an internal administrative investigation. Due to the seriousness and nature of the allegations, the officer was placed on administrative leave, and his duties as a police officer were discontinued. A criminal investigation was also initiated by the Long Beach Police Department, which was conducted independently of the administrative investigation. On June 20, 2016, after conducting an extensive and thorough investigation, the officer, identified as 34-year-old Toby Benskin, a 14-year employee who had been assigned to the Investigations Bureau, was terminated. The case was presented to the Los Angeles County District Attorney’s Justice System Integrity Division, who reviewed it and filed criminal charges. The complaint included nine felony counts, which included burglary, assault with a firearm, criminal threats, and false imprisonment charges. The District Attorney’s Office subsequently issued an arrest warrant for Benskin. This morning, Benskin was arrested in the City of Orange, was booked, and is being held on $200,000 bail. “When we take our oath of office, we assume a tremendous responsibility which includes upholding the values and maintaining the integrity of our police department and profession,” stated Long Beach Police Chief Robert Luna. “When an officer betrays the public trust we have worked so hard to cultivate, they must be held accountable.” The Long Beach Police Department will not be releasing anything further regarding this investigation. For additional information, please contact the Los Angeles County District Attorney’s Office. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2289,http://www.longbeach.gov/police/press-releases/critical-missing---beltran-carmelo/,Media Bulletins,Agency-Published Resources,"LOCATED: CRITICAL MISSING PERSON - BELTRAN, CARMELO","",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 12/21/2017 FOR IMMEDIATE RELEASE Press Release # Subject: LOCATED: CRITICAL MISSING PERSON - BELTRAN, CARMELO Contact: Media Relations Details (562) 570-5273 UPDATE (12/21/17): Carmelo Beltran who was reported missing on December 14, 2017, was located alive in a neighboring county earlier today. The Long Beach Police Department is asking for the public’s help in locating a missing adult. The missing person, 86-year-old Carmelo “Ricky” Beltran, was last seen in the evening of December 14, 2017, at his residence in the 800 block of Gardenia Avenue by a family member. This is the first time he’s ever walked away without returning home. The victim does not know his name and only speaks Spanish. The victim is described as follows: Name: Carmelo “Ricky” Beltran Age: 83 years Gender: Male Race/Ethnicity: Hispanic Height: 5’5” Weight: 130 lbs. Hair: Brown Eyes: Brown Clothing: Brown pants, Navy Blue Shirt, Black Shoes, Grey Cap Scars/Marks/Tattoos: None Medical Alert: None The Long Beach Police Department continues to search for the victim. Local hospitals and area law enforcement agencies have also been alerted. Anyone who sees the victim or has information on his whereabouts is asked to call the Long Beach Police Department at (562) 435-6711 or 9-1-1. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2290,http://www.longbeach.gov/police/press-releases/update--excavation-to-be-conducted-in-missing-person-cold-case-investigation/,Media Bulletins,Agency-Published Resources,UPDATE: EXCAVATION TO BE CONDUCTED IN MISSING PERSON COLD CASE INVESTIGATION,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2291,http://www.longbeach.gov/police/press-releases/murder-1900-block-chestnut-ave/,Media Bulletins,Agency-Published Resources,MURDER 1900 block Chestnut Ave,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 12/22/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: MURDER Contact: Media Relations Detail (562) 570-5273 On Tuesday, December 22, 2015, around 8:30 a.m., Long Beach Police were dispatched to the area of the 1900 block of Chestnut Avenue regarding a possible domestic violence incident in progress, which resulted in the death of a female adult. Officers located the victim, with multiple gunshot injuries to the upper torso, down in an alley. Long Beach Fire Department paramedics responded and determined the victim deceased at the scene. The preliminary investigation indicated a male suspect shot the victim and fled the scene with a toddler, before officers arrived. A responding officer saw a subject who matched the suspect description, at an apartment building in the 1800 block of Chestnut Avenue, and a containment perimeter was established. Believing the child may be in further danger, officers forced entry into an apartment unit and rescued him. Long Beach Fire Department paramedics checked the child at the scene and he appeared to be unharmed. The child is in the custody of the Los Angeles County Department of Children & Family Services. Two male adults with the child were detained at the location. Any relationship between the child, the men, or the victim is yet to be determined. One of the men, Eric Jerome Williams, Jr., 29 years old and a resident of Long Beach, was booked for murder. He is being held at Long Beach City Jail on $1,000,000.00 bail. A motive is unknown and the investigation remains ongoing. Anyone with information regarding this incident is urged to call Long Beach Homicide Detectives T. Hubert, S. Irving, and O. Valenzuela at (562) 570-7244. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2292,http://www.longbeach.gov/police/press-releases/tailgates-being-targeted--community-encouraged-to-take-precautions/,Media Bulletins,Agency-Published Resources,TAILGATES BEING TARGETED; COMMUNITY ENCOURAGED TO TAKE PRECAUTIONS,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 2/10/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: TAILGATES BEING TARGETED; COMMUNITY ENCOURAGED TO TAKE PRECAUTIONS Contact: Media Relations Detail (562) 570-5273 Hose Clamp Tailgate Lock (Click on a photo to enlarge) The Long Beach Police Department has seen an increase in truck tailgate thefts since the beginning of the year and is hoping that by increasing the community's awareness, it may help prevent additional loss. Tailgates are being stolen at an alarming rate throughout the United States. The reason for the thefts is that a tailgate replacement can cost up to $3,000.00, creating a high demand for tailgates on the black market. Tailgates are designed to be removed easily by the owner, making it just as easy for thieves to remove them. The most popular trucks being targeted are Fords, Toyotas, Dodges and Chevrolets, and those equipped with rear back-up cameras are especially being targeted due to their value. Most tailgates are not labeled with identification numbers, making it almost impossible to determine the owner if recovered by police. The Long Beach Police Department’s Auto Theft Detail suggests practicing the following safety tips to help secure your tailgate, or assist in its return to you if found: attaching a simple hose clamp or tailgate lock around the pivot point of the tailgate, which may protect the tailgate from theft or serve as a deterrent (available for purchase at some auto part stores or online) secure your vehicle in your garage if possible when able, park your truck in a position that prevents the tailgate from being opened mark the tailgate with the owner's driver's license number or vehicle license plate number, which will help law enforcement identify the owner if the gate is recovered during a police investigation If you have had a tailgate stolen that you have not reported to police, please contact our Business Desk at (562) 570-7260 and a report can be taken over the phone. Anyone with information regarding the thefts should contact the Auto Theft Detail at (562) 570-7272. To see just how easily and quickly a tailgate can be removed, view the news clip video: https://www.youtube.com/watch?v=fG9CSVyaMhk This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2293,http://www.longbeach.gov/police/press-releases/dui-driver-s-license-checkpoint-planned-this-weekend-14-/,Media Bulletins,Agency-Published Resources,DUI-Driver's License Checkpoint Planned this Weekend(14),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2294,http://www.longbeach.gov/police/press-releases/donut-boy-visits-l.b.p2.d/,Media Bulletins,Agency-Published Resources,DONUT BOY VISITS L.B.P.D,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 10/26/2017 FOR IMMEDIATE RELEASE Press Release # Subject: DONUT BOY VISITS L.B.P.D Contact: Media Relations Detail (562) 570-5273 On Thursday, October 26, 2017, the Long Beach Police Department hosted an event with 9-year-old Tyler Carach from Alabama, also known as “Donut Boy.” During the past 13 months, Tyler and his mom Sheena (a former police officer), have travelled to over 20 states and delivered 28,000+ donuts to law enforcement officers to thank them for the work they do. Tyler is honored to be doing his part to make the world a better place and inspire others to do the same. In honor of his 10th birthday, Tyler and his mom are traveling to 10 states in 10 days to continue his mission to thank even more officers with donuts and thank you cards. Long Beach was the only stop in California on Tyler’s journey, making our City the 22nd state he has visited. The event featured a dunk tank and Tyler was given the opportunity to “Dunk a Cop, not a Donut.” We also had a demonstration with K9 “AJ” who is new to the department. Tyler was able to meet officers, shake hands, and offer them donuts from various law enforcement agencies from throughout the region who attended the event. We would like to thank the sponsors who helped us make this event possible. The Long Beach Police Officers Association and the Long Beach Police Foundation were the primary event sponsors. Dunkin’ Donuts provided donuts for all officers to enjoy. Rossmoor Pastries provided an incredible California state-themed birthday cake for Tyler. Lastly, the Long Beach Convention and Visitor’s Bureau secured a one-night hotel stay for Tyler and his mom courtesy of the Long Beach Airport Marriott. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2295,http://www.longbeach.gov/police/press-releases/dui-saturation-patrol-proves-effective-10-/,Media Bulletins,Agency-Published Resources,DUI SATURATION PATROL PROVES EFFECTIVE(10),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 12/21/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: DUI SATURATION PATROL PROVES EFFECTIVE Contact: Media Relations Patrol (562) 570-5273 On December 19, 2015, the Long Beach Police Department’s Traffic Section conducted a Driving Under the Influence (DUI) Saturation Patrol from 7:00 p.m. until 3:00 a.m., in place of the scheduled DUI Checkpoint. During the eight-hour operation, motor officers patrolled throughout the city looking for impaired drivers and took the following enforcement actions: Conducted sixty-two (62) enforcement stops Conducted fifteen (15) Standardized Field Sobriety Tests Made four (4) DUI arrests Towed/Stored two (2) vehicles for DUI Issued ten (10) traffic citations for unsafe driving In California, this deadly crime led to 867 deaths and over 23,000 serious injuries in 2013 because someone failed to designate a sober driver. Nationally, the latest data shows over 10,000 were killed by an impaired driver. Over the course of the past three years, the Long Beach Police have investigated 1,032 DUI collisions, which have claimed seven lives and resulted in another 370 injuries. Driving under the influence can impact the economy in addition to the pain and suffering of those immediately affected. Conservatively, a fatality has a $1.4 million impact, an injury $70,000, and a crash that only damages property averages nearly $9000. Funding for this program is from a grant from the California Office of Traffic Safety through the National Highway Traffic Safety Administration. Report Drunk Drivers, Call 9-1-1. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2296,http://www.longbeach.gov/police/press-releases/traffic-fatality---pacific-avenue-and-burnett-street/,Media Bulletins,Agency-Published Resources,TRAFFIC FATALITY - PACIFIC AVENUE AND BURNETT STREET,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 6/26/2019 FOR IMMEDIATE RELEASE Press Release # Subject: TRAFFIC FATALITY - PACIFIC AVENUE AND BURNETT STREET Contact: Media Relations Detail (562) 570-5273 LBPDMediaRelations@longbeach.gov On June 25, 2019, at approximately 11:55 p.m., officers responded to the intersection of Pacific Avenue and Burnett Street regarding an injury hit-and-run traffic collision involving a vehicle and two pedestrians, which resulted in the death of a female adult. Upon arrival, officers located a non-responsive female adult and critically injured male adult lying in the intersection. The Long Beach Fire Department responded and transported both victims to a local hospital in critical condition. The male victim, identified as a 35-year-old resident of Wilmington, remains in critical condition. The female victim succumbed to her injuries and was pronounced deceased at the hospital. The Los Angeles County Coroner’s Office will be identifying the female victim. The preliminary investigation revealed the collision occurred when two pedestrians crossed Pacific Avenue in a marked crosswalk on the north side of the intersection. The pedestrians were struck by a white, possibly four-door, unknown model vehicle that was driving southbound on Pacific Avenue at Burnett Street. The vehicle fled the scene and was last seen heading south on Pacific Avenue. Anyone who may have information regarding this incident is asked to call the Long Beach Police Department’s Collision Investigation Detail Detective David Whelan at (562) 570-7355. Anonymous tips may be submitted through “LA Crime Stoppers” by calling 1-800-222-TIPS (8477), downloading the “P3 Tips” app to your smart phone (available at the Apple App store and Google Play), or visiting www.lacrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2297,http://www.longbeach.gov/police/press-releases/long-beach-police-dui-checkpoint-proves-effective-2-/,Media Bulletins,Agency-Published Resources,LONG BEACH POLICE DUI CHECKPOINT PROVES EFFECTIVE(2),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 1/28/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: LONG BEACH POLICE DUI CHECKPOINT PROVES EFFECTIVE Contact: Media Relations (562) 570-5273 On Saturday January 25, 2014, the Long Beach Police Department’s Field Support Section conducted a Driving Under the Influence/Driver License Checkpoint on Shoreline Drive at Cedar Avenue from 7 p.m. until 3 a.m. During the eight-hour operation, which was aided by Long Beach Police Explorers and Long Beach Search and Rescue, 1,354 vehicles passed through the checkpoint with 454 being screened, resulting in the following statistics: Five (5) DUI arrests Four (4) Cited for unlicensed driving Two (2) Cited for suspended license DUI checkpoints are a vital component in the fight against both impaired and unlicensed driving. Nationally, impaired driving caused by alcohol and/or drugs causes one death every 33 minutes. The average American has a 30% chance of being killed or injured by a driver under the influence. Sobriety checkpoints have been proven to reduce these types of driving-related collisions by removing such drivers from our streets. Funding for this program was provided by a grant from the California Office of Traffic Safety, through the National Highway Safety Administration. For further information contact Traffic Section Lieutenant Kris Klein at (562) 570-7292. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2298,http://www.longbeach.gov/police/press-releases/human-trafficking-suspect-arrested/,Media Bulletins,Agency-Published Resources,HUMAN TRAFFICKING SUSPECT ARRESTED,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 2/12/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: HUMAN TRAFFICKING SUSPECT ARRESTED Contact: Media Relations Detail (562) 570-5273 The Long Beach Police Department has conducted an investigation, which resulted in the arrest of a male adult for a variety of charges related to human sex trafficking. On February 3, 2014, at approximately 4:30 p.m., patrol officers responded to a call of a male chasing a female with a hammer in the area of 60th Street and Atlantic Avenue. Officers found the distraught adult female victim in a nearby parking lot, and began their investigation. The officers learned that the 24-year-old victim had been assaulted by her assailant, and was an apparent victim of human trafficking under his control. The victim stated to officers that the suspect had befriended her six months prior, and initially treated her like a girlfriend. However, he later forced her into prostitution against her will, and verbally and physically abused her, repeatedly. Vice detectives responded and continued with the investigation and arrested the suspect, identified as 33-year-old Edward Watson of Compton, the following day, February 4, 2014, in the area of 60th Street and Atlantic Avenue. At the time of his arrest, he was accompanied by another adult female. Evidence collected suggests the second female was voluntarily working as a prostitute for suspect Watson. On February 6, 2014, the Los Angeles County District Attorney’s Office filed the following counts against Defendant Watson: one count of human trafficking, one count of assault with a deadly weapon, one count of pandering, and two counts of pimping. He is expected to appear in court tomorrow, Thursday, February 13th, and could face a maximum of 46 years and 8 months in prison if convicted. This joint effort between patrol officers and vice detectives to rescue young girls and women from being forced into a life of prostitution is another example of the Long Beach Police Department’s commitment toward the eradication of human trafficking. Anyone who is, or has been a victim of human trafficking is urged to come forward by contacting the Long Beach Police Department’s Vice Investigations Detail at (562) 570-7219. Any victim in need of resources is also encouraged to contact detectives. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting www.lacrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2299,http://www.longbeach.gov/police/press-releases/halloween-safety-tips-2-/,Media Bulletins,Agency-Published Resources,HALLOWEEN SAFETY TIPS(2),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 10/28/2016 FOR IMMEDIATE RELEASE Press Release # Subject: HALLOWEEN SAFETY TIPS Contact: Media Relations Detail (562) 570-5273 As Halloween approaches, the Long Beach Police Department would like to encourage the community to practice the following safety tips for a safer and fun-filled Halloween: • Be sure your child’s activities are age-appropriate • All children should be accompanied by an adult • Only visit homes that are well-lighted and never go into a stranger’s house • Stay on the sidewalk and only cross at corners • Stay in well populated areas and never cut through alleys or parks after dark • Apply reflective tape to your child’s costume or use glow sticks for better visibility • Use face paint rather than masks that may block your child’s vision • Map out your route ahead of time and carry a flashlight with you • Ensure props (pitchforks, swords, etc.) do not have sharp edges • Be cautious of dogs on the loose and keep your pet(s) indoors • Inspect your child’s candy before allowing them to eat it • Report any suspicious or illegal activity by calling 9-1-1 immediately • Motorists are advised to be extra cautious on Halloween night and to drive slowly • Do not drink and drive; plan ahead and designate a driver or call for a ride Reminder: The curfew law in Long Beach prohibits anyone 17-years-old or younger from being out past 10:00 p.m. without a parent/guardian, unless going to or returning home from work or an organized event supervised by an adult, without any detour or stop. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2301,http://www.longbeach.gov/police/press-releases/publics-help-needed-to-identify-hit-and-run-suspects/,Media Bulletins,Agency-Published Resources,PUBLIC’S HELP SOUGHT IN IDENTIFYING HIT AND RUN SUSPECTS,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 6/4/2019 FOR IMMEDIATE RELEASE Press Release # Subject: PUBLIC’S HELP SOUGHT IN IDENTIFYING HIT AND RUN SUSPECTS Contact: Media Relations Detail (562) 570-5273 LBPDMediaRelations@longbeach.gov Actual photos of suspects and vehicles. CLICK IMAGES TO ENLARGE The Long Beach Police Department’s Collision Investigation Detail is seeking the public’s help in identifying the drivers of a gray Dodge Challenger and a red Ford Mustang who are believed to be involved in an exhibition of speed and hit and run injury traffic collision on Cowles Street between Seabright Avenue and Hayes Avenue, which resulted in the critical injury of an adult male pedestrian. The incident occurred on May 26, 2019, at approximately 8:10 p.m. and resulted in the pedestrian being struck by the gray Dodge Challenger. The pedestrian, a 32-year-old male resident of Long Beach, was transported by Long Beach Fire Department personnel to a local hospital in critical condition. Anyone who may have information regarding this incident is asked to call Long Beach Police Department Collision Investigation Detail Detective David Lauro at (562) 570-7355. Anonymous tips may be submitted through “LA Crime Stoppers” by calling 1-800-222-TIPS (8477), downloading the “P3 Tips” app to your smart phone (available at the Apple App store and Google Play), or visiting www.lacrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2302,http://www.longbeach.gov/police/press-releases/traffic-fatality-15-/,Media Bulletins,Agency-Published Resources,Traffic Fatality(15),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 10/26/2015 FOR IMMEDIATE RELEASE Press Release # Subject: TRAFFIC FATALITY Contact: Media Relations Detail (562) 570-5273 On Saturday, October 24, 2015, a 52-year-old Long Beach man succumbed to injuries sustained when he was struck by a vehicle as he attempted to cross the street three days earlier. On Wednesday October 21, 2015, at approximately 11:45 p.m., LBPD officers were dispatched to the area of Pacific Coast Highway and Orange Avenue regarding a vehicle versus pedestrian injury traffic collision. Long Beach Fire Department personnel responded and transported the pedestrian, who sustained major head trauma, to a local hospital where he remained in critical condition until the time of his death. The preliminary investigation revealed the pedestrian, identified as 52-year-old Earl Wilson of Long Beach, was walking southbound in the west crosswalk of Pacific Coast Highway at Orange Avenue on a green light. As victim Wilson attempted to cross, he was struck by a 2014 Toyota Prius taxicab that was attempting to make a left turn from northbound Orange Avenue to westbound Pacific Coast Highway on a green light. The taxicab driver, a 67-year-old resident of Long Beach, remained at the scene and was interviewed and released pending further investigation. Anyone who may have information regarding this incident is asked to call Long Beach Police Collision Investigation Detail Detective Sirilo Garcia at (562) 570-7355. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting www.lacrimestoppers.org. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2304,http://www.longbeach.gov/police/press-releases/arrest-made---charges-filed-in-2013-shooting-case/,Media Bulletins,Agency-Published Resources,ARREST MADE & CHARGES FILED IN 2013 SHOOTING CASE,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 5/21/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: ARREST MADE & CHARGES FILED IN 2013 SHOOTING CASE Contact: Media Relations Detail (562) 570-5273 Today, the Los Angeles County District Attorney’s Office filed multiple charges in a 2013 shooting case. On March 22, 2013, around 8:00 p.m., a shooting occurred near a gas station in the area of Long Beach Boulevard and Del Amo. Long Beach Police officers transported a 10-year-old victim from the North Police Substation to a local hospital. A second victim transported himself to a local hospital. On May 18, 2014, Long Beach Gang Investigation detectives arrested 23-year-old Raymond Rene Rodriguez of Long Beach on an outstanding warrant. Through the course of their investigation, Detectives Jess Fragoso and Robert Gonzales learned of Rodriguez’ connection to the March 2013 shooting. Detectives believe the incident originated on a Long Beach Transit bus with a dispute between Rodriquez, a minor companion, and another male adult. All three individuals exited the bus and a physical fight ensued between the three. During the altercation, a fourth male adult came to assist in fighting with Rodriguez and the minor companion. Rodriguez produced a firearm and fired two rounds at the second male. The victim sustained a gunshot wound to the lower body and transported himself to a local hospital. A second victim was also injured. During the gunfight, a round entered a family’s vehicle which was parked at the gas station, striking a 10-year-old boy who was seated in the back seat. Once the father realized his son had been wounded, he rushed the family to the nearby police station to summon help. Long Beach Police officers then transported the child in critical condition to the hospital. On Wednesday, May 21, 2014, detectives presented the case to the Los Angeles County District Attorney’s Office who filed charges of attempted murder, gang allegations, and weapon violations against Rodriguez, a documented Long Beach gang member. Rodriguez is currently being held at the Long Beach City Jail on $2,210,00.00 bail. Anyone with information regarding this investigation should contact Long Beach Gang Investigations Section Detectives Jess Fragoso at (562) 570-7370. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2305,http://www.longbeach.gov/police/press-releases/winter-break-safety-tips-for-youth/,Media Bulletins,Agency-Published Resources,Winter Break Safety Tips for Youth,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2306,http://www.longbeach.gov/police/press-releases/police---fire-memorial-ceremony/,Media Bulletins,Agency-Published Resources,POLICE & FIRE MEMORIAL CEREMONY,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 5/1/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: POLICE & FIRE MEMORIAL CEREMONY Contact: Media Relations (562) 570-7523 On Tuesday, May 6, 2014, at 9:00 A.M., the Long Beach Police and Fire Departments will pay tribute to members of their department who made the ultimate sacrifice in the line of duty, and the community is invited to attend. Members of both departments, along with City dignitaries and staff, will honor those individuals who made the ultimate sacrifice while serving the Long Beach community. The service will take place at City Council Chambers, located inside Long Beach City Hall at 333 W. Ocean Boulevard. The memorial service will include the Pledge of Allegiance, a posting of the colors presentation by Long Beach Police & Fire Honor Guard, an invocation, individual recognition of fallen officers and firefighters, a bagpiper who will perform Amazing Grace, a 21-Gun Salute, a bugler who will perform Taps, as well as remarks by Mayor Bob Foster, Police Chief Jim McDonnell and Fire Chief Mike Duree. Please join us in honoring these fallen heroes. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2307,http://www.longbeach.gov/police/press-releases/murder-charges-filed/,Media Bulletins,Agency-Published Resources,MURDER CHARGES FILED,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 2/22/2016 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: MURDER CHARGES FILED Contact: Media Relations Detail (562) 570-5273 Today detectives presented a case to the Los Angeles County District Attorney’s Office for filing consideration in the murder of Alicia Faith Todd. On June 24, 2015, at approximately 1:13 a.m., victim Todd was found deceased in an alley in the 1100 block of E. 21st Street. As patrol officers and homicide detectives worked the crime scene, they found little evidence and no witnesses to the murder. Through the course of their investigation, detectives contacted family and friends to recreate the last few days of Todd’s life for any clues or leads that may assist them in finding the person(s) responsible for her death. They determined she was in a domestic relationship with the defendant and they were together the night of the murder. The defendant is identified as Tremaine Lewis, a 24 year old, resident of Long Beach. He was arrested on Thursday February 18, 2016. The Los Angeles County District Attorney's Office filed one count of murder with a gun enhancement against Lewis and he is being held on $2,000,000.00 bail at the Long Beach City Jail. He will be arraigned today at 1:30 p.m. in Long Beach Superior Court. The investigation remains ongoing. Anyone with information regarding the murder is urged to call Homicide Detectives Teryl Hubert, Scott Lasch, and Michael Hubbard at (562) 570-7244. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit http://www.lacrimestoppers.org/ . To view original News Release click on below link: http://longbeach.gov/police/press-releases/murder(26)/ This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2308,http://www.longbeach.gov/police/press-releases/robbery-suspects-arrested-and-charged/,Media Bulletins,Agency-Published Resources,ROBBERY SUSPECTS ARRESTED AND CHARGED,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 1/15/2018 FOR IMMEDIATE RELEASE Press Release # Subject: ROBBERY SUSPECTS ARRESTED AND CHARGED Contact: Media Relations Detail (562) 570-5273 On January 12, 2018, felony charges were filed against two men in connection with multiple robberies at local businesses. On Wednesday, January 10, 2018, detectives arrested 34-year-old Cody Joel Ibershoff of Long Beach and 51-year-old Jesus Cortez of Compton for their involvement in the commercial robberies. Pursuant to their arrests, detectives served a search warrant at their respective residences and recovered three replica firearms, one shotgun and other evidence related to the robberies. Between November 24, 2017 and January 3, 2018, the suspects armed with handguns entered several businesses between the hours of 8:00 p.m. and 11:30 p.m., demanded money from employees, and fled the scene with cash before officers arrived. No employees or victims were injured during the robberies. The dates and locations where the incidents occurred are provided below: • November 24, 2017 - 1400 block of East Pacific Coast Highway • December 16, 2017 – 3400 block of Long Beach Blvd. • December 18, 2017 – 3100 block of East Broadway • January 3, 2018 – 2600 block of Bellflower Blvd. • January 3, 2018 – 4400 block of East Broadway Throughout the investigation detectives uncovered similarities in each of the robberies that lead them to identify the suspects. On January 12, 2018, the case was presented to the Los Angeles County District Attorney’s Office, which filed 11 felony counts of robbery against Cody Joel Ibershoff and Jesus Cortez. Ibershoff is being held on $635,000 bail and Cortez is being held on $1.650 million bail, both defendants are currently being held at the Los Angeles County Jail. The investigation remains ongoing. Detectives urge any commercial business employee who was a victim of a robbery, but has yet to report it, to call L.B.P.D. Lead Robbery Detective Mora at (562) 570-5536. Anonymous tips may be submitted through ""LA Crime Stoppers"" by calling 1-800-222-TIPS (8477), downloading the ""P3 Tips"" app to your smart phone (available at the Apple App store and Google Play), or visiting www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2310,http://www.longbeach.gov/police/press-releases/traffic-fatality---cherry-and-carson/,Media Bulletins,Agency-Published Resources,TRAFFIC FATALITY - CHERRY and CARSON,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 10/5/2017 FOR IMMEDIATE RELEASE Press Release # 2017 Subject: TRAFFIC FATALITY - CHERRY AVENUE & CARSON STREET Contact: Media Relations Detail (562)570-5273 On Monday, September 11, 2017, at approximately 12:34 p.m., officers were dispatched to Cherry Avenue and Carson Street regarding an injury traffic collision between two vehicles. When officers arrived on scene, Long Beach Fire and Department was already on scene and were using the ""jaws of life"" to extricate the driver of a 2001 Saturn that sustained major damage. Officers also discovered a 2004 Hyundai with major damage with the driver still seated inside the vehicle. Long Beach Fire Department Paramedics transported the driver of the 2001 Saturn to a local hospital with a fractured hip and pelvic. It should be noted that the driver was alert and made statement to the officers about the accident. The preliminary investigation revealed that the 2004 Hyundai was traveling northbound Cherry Avenue in the #2 lane of traffic. As the 2004 Hyundai passed Carson Avenue, the 2001 Saturn made an unsafe right turn, directly in the path of 2004 Hyundai, from the east parking lot, to go northbound Cherry. The Hyundai was unable to avoid the Saturn and struck the Saturn on the driver’s side of the vehicle. The driver, of the Hyundai is Guillermo Fajardo-Soto, a 19-yr-old resident of Gardena. The driver was not transported and was treated at the scene and released. The driver of the Saturn is Timothy Johnson, a 20-yr-old resident of Lakewood. On October 4, 2017, Long Beach Collision investigation was notified by the Los Angeles County Coroner's office that Timothy Johnson had passed away on September 24, 2017. At this time we are waiting for the Coroner’s full report for final determination of the cause of death. Anyone who may have information regarding this incident is asked to call Long Beach Police Department Collision Investigation Detail Detective Brian Watt at (562) 570-7355. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2312,https://www.elburn.il.us/police-department/vacation-watch/,Poor Data Source,Poor Data Source,"Vacation Watch | Village of Elburn, Illinois","",200,"Home | Village of Elburn, Illinois","[""Vacation Watch""]",[],[],"[""Vacation Watch""]","[""Links"", ""Main Contact Info"", ""Follow Us""]",[],"" -2313,https://www.foxcrossingwi.gov/departments/police-department/resources/vine/,Poor Data Source,Poor Data Source,vine - Fox Crossing Fox Crossing,"",200,Fox Crossing - Bridging the Fox Cities Fox Crossing,[],"[""Resources » vine""]",[],[],[],[],"Home Government Board of Review Bond Schedule Commissions & Boards Application for Appointment Village Board Elections and Voting Incorporation Information Fee Schedule Licenses & Permit Applications Minutes and Agendas Municipal Code Departments Administration Assessor Clerk Community Development Finance/Treasurer Fire Municipal Court Parks and Recreation Police Street Utilities Calendar Resources Elderly Transportation Program Employment Garbage & Recycling Individual & Business of Year Information for Vendors Local Links Pet Licensing Permits Building Permits Planning Permits Street Permits Population History Public Records Real Estate Inquiry Maps/GIS Property Information Tax & Parcel Information Tax Rate Information (TID IN) The Bridge Calendar Valley Transit Village History Weights & Measures Online Services Municipal Court Payments Parking Ticket Payments Rec Program Registration Utility Online Services Village General Payments Village Notifications Contact How Are We Doing Resources » vine This entry was posted on Tuesday, March 20th, 2012 at 4:20 pm and is filed under . - You can follow any responses to this entry through the RSS 2.0 feed. - - Responses are currently closed, but you can trackback from your own site. Comments are closed. Copyright © 2010 - 2024 Fox Crossing, All Rights Reserved. Professional Web Site Design by Sandstone Digital. Disclaimer Home Government Board of Review Bond Schedule Commissions & Boards Application for Appointment Village Board Elections and Voting Incorporation Information Fee Schedule Licenses & Permit Applications Minutes and Agendas Municipal Code Departments Administration Assessor Clerk Community Development Finance/Treasurer Fire Municipal Court Parks and Recreation Police Street Utilities Calendar Resources Elderly Transportation Program Employment Garbage & Recycling Individual & Business of Year Information for Vendors Local Links Pet Licensing Permits Building Permits Planning Permits Street Permits Population History Public Records Real Estate Inquiry Maps/GIS Property Information Tax & Parcel Information Tax Rate Information (TID IN) The Bridge Calendar Valley Transit Village History Weights & Measures Online Services Municipal Court Payments Parking Ticket Payments Rec Program Registration Utility Online Services Village General Payments Village Notifications Contact How Are We Doing Resources » vine This entry was posted on Tuesday, March 20th, 2012 at 4:20 pm and is filed under . - You can follow any responses to this entry through the RSS 2.0 feed. - - Responses are currently closed, but you can trackback from your own site. Comments are closed. Copyright © 2010 - 2024 Fox Crossing, All Rights Reserved. Professional Web Site Design by Sandstone Digital. Disclaimer " -2314,https://spdblotter.seattle.gov/2021/10/03/driver-of-stolen-vehicle-arrested-after-ramming-police-cars-gas-station/,Media Bulletins,Agency-Published Resources,"Driver of Stolen Vehicle Arrested After Ramming Police Cars, Gas Station - SPD Blotter","",200,403 Forbidden,"[""Driver of Stolen Vehicle Arrested After Ramming Police Cars, Gas Station""]","[""Find Posts By Topic"", ""You might also like..."", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],SPD Blotter Seattle Police Department (SPD) Home Topics SPD Blotter Seattle Police Department (SPD) Home Topics SPD Blotter Seattle Police Department (SPD) Home Topics Search Search Search Search Find Posts By Topic Police Precincts East Precinct North Precinct Southwest Precinct South Precinct West Precinct Data and Crime Trends Investigations 2018 Homicides 2019 Homicides 2020 Homicides Statements and News Releases Chief of Police News Releases Events Alerts Community Outreach Traffic and Collisions Significant Incident Reports Find Posts By Topic Police Precincts East Precinct North Precinct Southwest Precinct South Precinct West Precinct Data and Crime Trends Investigations 2018 Homicides 2019 Homicides 2020 Homicides Statements and News Releases Chief of Police News Releases Events Alerts Community Outreach Traffic and Collisions Significant Incident Reports Police Precincts East Precinct North Precinct Southwest Precinct South Precinct West Precinct Data and Crime Trends Investigations 2018 Homicides 2019 Homicides 2020 Homicides Statements and News Releases Chief of Police News Releases Events Alerts Community Outreach Traffic and Collisions Significant Incident Reports -2315,https://spdblotter.seattle.gov/2011/06/14/anti-police-graffiti-incident/,Media Bulletins,Agency-Published Resources,Anti-Police Graffiti incident - SPD Blotter,"",200,403 Forbidden,"[""Anti-Police Graffiti incident""]","[""Find Posts By Topic"", ""You might also like..."", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],SPD Blotter Seattle Police Department (SPD) Home Topics SPD Blotter Seattle Police Department (SPD) Home Topics SPD Blotter Seattle Police Department (SPD) Home Topics Search Search Search Search Find Posts By Topic Police Precincts East Precinct North Precinct Southwest Precinct South Precinct West Precinct Data and Crime Trends Investigations 2018 Homicides 2019 Homicides 2020 Homicides Statements and News Releases Chief of Police News Releases Events Alerts Community Outreach Traffic and Collisions Significant Incident Reports Find Posts By Topic Police Precincts East Precinct North Precinct Southwest Precinct South Precinct West Precinct Data and Crime Trends Investigations 2018 Homicides 2019 Homicides 2020 Homicides Statements and News Releases Chief of Police News Releases Events Alerts Community Outreach Traffic and Collisions Significant Incident Reports Police Precincts East Precinct North Precinct Southwest Precinct South Precinct West Precinct Data and Crime Trends Investigations 2018 Homicides 2019 Homicides 2020 Homicides Statements and News Releases Chief of Police News Releases Events Alerts Community Outreach Traffic and Collisions Significant Incident Reports -2316,http://www.longbeach.gov/police/press-releases/arrests-made-in-the-kidnapping-murder-of-3-week-old-eliza-delacruz/,Media Bulletins,Agency-Published Resources,ARRESTS MADE IN THE KIDNAPPING-MURDER OF 3-WEEK-OLD ELIZA DELACRUZ,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],"[""POSSIBLE MOTIVE FOR THE KIDNAPPING"", ""RECAP OF THE JANUARY 3, 2015 EVENTS"", ""CONNECTION TO AN EL SEGUNDO ASSAULT CASE"", ""RELEASE OF SKETCHES AND VIDEO LED TO TIPS"", ""PUBLIC’S HELP SOUGHT"", ""THANK YOU""]",[],[],[],"" -2317,http://www.longbeach.gov/police/press-releases/don-t-be-a-victim-of-fraud-this-holiday-season/,Media Bulletins,Agency-Published Resources,DON'T BE A VICTIM OF FRAUD THIS HOLIDAY SEASON,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 12/11/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: DON'T BE A VICTIM OF FRAUD THIS HOLIDAY SEASON Contact: Media Relations (562) 570-5273 The Long Beach Police Department would like to remind consumers to take precautions and not become a fraud statistic this holiday season. During this time of the year, credit and debit cards are certain to be one of the most commonly used forms of payment. With the surge of reported domestic and international fraud schemes, which have flourished in the City of Long Beach and throughout the southern California region, consumers are urged to take extra precautions to secure their personal information. Here are a few prevention tips to help minimize your risk of becoming a victim this holiday season: Monitor your ATM/Debit card transactions. Card ""Skimming"", which is a device used to capture account and personal information encoded on magnetic stripes, has become pervasive throughout the country. When entering your “PIN” number, shield the keypad with your other hand to prevent exposure to others or recordable devices Make certain the ATM card reader is securely attached to the machine, if unsecured, alert the financial institution Be vigilant in monitoring your account(s) online or by telephone Track and review all of your bank and credit card statements for irregular activity Use the credit card feature at the gas pumps; your zip code, not PIN, is required Never provide over the telephone your social security number, bank account numbers or date of birth Do not wire money to anyone you do not know Do not respond to e-mails requesting you to “Confirm, Update, or Provide” account information Do not imprint social security or driver licenses on your personal checks Request annually from the credit reporting agencies a copy of your “Consumer Credit Profile Report” and review for unusual activity Use a cross-shredder to destroy sensitive documents including bank records and promotional “pre-approved” credit card applications For further information contact the Long Beach Police Department Financial Crimes Section at (562) 570-7330. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2319,http://www.longbeach.gov/police/press-releases/students-return-to-school-motorists-urged-to-drive-carefully/,Media Bulletins,Agency-Published Resources,STUDENTS RETURN TO SCHOOL; MOTORISTS URGED TO DRIVE CAREFULLY,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 8/24/2018 FOR IMMEDIATE RELEASE Press Release # Subject: STUDENTS RETURN TO SCHOOL; MOTORISTS URGED TO DRIVE CAREFULLY Contact: Media Relations Detail (562) 570-5273 The Long Beach Police Department would like to remind everyone that most schools in the Long Beach Unified School District will be resuming sessions on Wednesday, August 29th, and with the volume of pedestrian traffic around schools increasing dramatically, all commuters are urged to follow the laws of the road in an effort to prevent avoidable accidents. All drivers are reminded of the following: Yield the right of way to pedestrians in marked or unmarked crosswalks Do not overtake and pass a vehicle(s) stopped ahead of you when it has stopped for a pedestrian Yield the right of way to pedestrians on sidewalks Obey posted speed limits Never drive while distracted – (examples: using a cell phone, reading, applying make-up, etc.) Stop and remain stopped for school buses with “flashing red lights” - opposing traffic must also stop unless a painted or raised divider separates the roadway Watch and obey Crossing Guards … they are there to protect children! It is equally important for pedestrians and parents to also follow the rules of the road! Pedestrians are reminded to: Yield to vehicles on the roadway if you are outside the crosswalk Never cross between intersections controlled by traffic signals (to do so would constitute jaywalking) Parents are reminded to: Obey all parking signs/curb markings - they are designed to protect children and provide optimum traffic flow Do not double park; it interrupts the flow of traffic and makes it difficult to for pedestrians to see oncoming traffic Follow school drop-off procedures and always drop your child off on the curbside of the school Teach your child to always cross the street at a crosswalk, and always pay attention to what is going on around them The Long Beach Police Department is committed to pedestrian and motorist safety, and traffic laws will be strictly enforced at and around our schools. For further information, please contact the Long Beach Police Department’s Traffic Section at (562) 570-7209. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2320,http://www.longbeach.gov/press-releases/city-of-long-beach-initiates-outside-review-of-police-department-direct-messaging-application/,Media Bulletins,Agency-Published Resources,City of Long Beach Initiates Outside Review of Police Department Direct Messaging Application,"",200,City of Long Beach,"[""PRESS RELEASE""]",[],[],[],[],[],"" -2323,http://www.longbeach.gov/police/press-releases/critical-missing-person/,Media Bulletins,Agency-Published Resources,CRITICAL MISSING PERSON,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 12/1/2016 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: **UPDATED* CRITICAL MISSING PERSON Contact: Media Relations Detail (562) 570-5273 Lloyd Thompson (Click on photo to enlarge image) UPDATE: (12/02/16): On November 30, 2016, 81 year-old Lloyd Thompson was reported missing by his family. Missing Person Detectives reached out to the San Bernardino County Sheriff’s Department for assistance in locating Mr. Thompson. On December 2, 2016, Long Beach Police were notified by the San Bernardino County Sheriff Coroner that Mr. Thompson was found deceased. He was found in the late evening of December 1, 2016 by San Bernardino County Sheriff Search and Rescue, in an unincorporated area of San Bernardino near Interstate 15 and Glen Helen Parkway. His death appears to be of natural causes. The Sheriff’s Department is to be commended for their commitment of resources in this case and we are thankful for their assistance. Original News Release (12/1/16): The Long Beach Police Department is asking for the public’s help in locating a missing adult. The missing person, 81-year-old Lloyd Thompson, was last seen on the morning of November 28, 2016, at his residence in the 2100 block of Lime Avenue. He is diabetic and if not monitored, may become delusional. His family reported him missing on November 30, 2016. That evening, his vehicle was found abandoned in a rural area near the Interstate Freeway 15 and Glen Helen Parkway. The Victim is described as follows: Name: Lloyd Thompson Age: 81 years Gender: Male Race/Ethnicity: African American Height: 6’2” Weight: 180 lbs. Hair: Black Eyes: Brown Clothing: Unknown Scars/Marks/Tattoos: None Medical Alert: Diabetic The Long Beach Police Department continues to search for the victim. Local hospitals and area law enforcement agencies have also been alerted. Anyone who sees the victim or has information on his whereabouts is asked to call the Long Beach Police Department at (562) 435-6711 or 9-1-1. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2324,http://www.longbeach.gov/police/press-releases/homicide-investigation/,Media Bulletins,Agency-Published Resources,HOMICIDE INVESTIGATION,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 12/8/2016 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: HOMICIDE INVESTIGATION Contact: Media Relations Detail (562) 570-5273 On December 8, 2016, at approximately 6:30 a.m., officers were dispatched to the 4900 block of Ferro Court regarding a stabbing that just occurred. Upon arrival officers located a male adult with a stab wound to his upper torso. The subject who was responsible for the stabbing also a male adult remained at the scene and has been detained by officers while they conducted their investigation. Long Beach Fire Department responded and transported the victim to local Hospital in critical condition, where he was later pronounced deceased. Homicide Detectives responded and are handling the investigation, and no arrest has been made at this time. The victim has been identified as Aaron Whatley a 43 year-old resident of Long Beach. Anyone with information is urged to call Homicide Detectives Shea Robertson and Oscar Valenzuela at (562) 570-7244. Anonymous tips may be submitted through ""LA Crime Stoppers"" by calling 1-800-222-TIPS (8477), downloading the ""P3 Tips"" app to your smart phone (available at the Apple App store and Google Play), or visiting http://www.lacrimestoppers.org/ This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2325,http://www.longbeach.gov/police/press-releases/long-beach-police-investigate-attempt-murder-of-chp-officer-following-pursuit/,Media Bulletins,Agency-Published Resources,LONG BEACH POLICE INVESTIGATE ATTEMPT MURDER OF CHP OFFICER FOLLOWING PURSUIT,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 11/5/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: LONG BEACH POLICE INVESTIGATE ATTEMPT MURDER OF CHP OFFICER FOLLOWING PURSUIT Contact: Media Relations Detail (562) 570-5273 On Thursday, November 5, 2015, about 1:00 p.m., Long Beach Police were requested to assist California Highway Patrol (CHP) with a search of an armed suspect in the area of South Street and Cherry Avenue. The preliminary investigation indicates a CHP motorcycle officer was eastbound on the 91 Freeway, west of Long Beach Boulevard, when he attempted to conduct a traffic stop for a carpool violation. The gold Ford Taurus exited the freeway at Long Beach Boulevard, and proceeded through a red light, initially at a slow rate of speed, then suddenly accelerated and drove away. A vehicle pursuit ensued for approximately three to four minutes and terminated at South Street and Cherry Avenue when the suspect vehicle collided into a cinder block wall. The suspect exited the vehicle and ran eastbound on South Street. When the CHP officer attempted to contact the suspect, the suspect turned and fired at the officer who took cover behind his motorcycle. The officer did not return fire. The suspect fled southbound between businesses on South Street and out of the officer’s line of sight. Long Beach Police received calls from businesses in the area regarding a male adult suspect attempting to rob employees at gunpoint and carjack a vehicle. A short time later, during a search of the area, Long Beach Police found a male adult lying near the railroad tracks north of Market Street, with a handgun nearby. The man matched the description of the suspect involved in the attempt murder of the CHP officer and the attempt robberies. Long Beach Fire Department responded and determined the suspect deceased at the scene. It appeared that the suspect sustained a self-inflicted gunshot injury. The name of the suspect is not being released at this time. The Los Angeles County Coroner’s Office will make positive identification and notify next of kin. The investigation remains ongoing. Anyone with information regarding this incident is asked to call Long Beach Police Homicide Detail at (562) 570-7244. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2326,http://www.longbeach.gov/police/press-releases/annual-police-and-fire-memorial-ceremony-will-include-addition-of-officer-william-h--waggoner/,Media Bulletins,Agency-Published Resources,ANNUAL POLICE AND FIRE MEMORIAL CEREMONY WILL INCLUDE ADDITION OF OFFICER WILLIAM H. WAGGONER,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 4/29/2016 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: ANNUAL POLICE AND FIRE MEMORIAL CEREMONY Contact: Media Relations Detail (562) 570-5273 Community members are invited to attend the annual Police and Fire Memorial Ceremony on Tuesday, May 3, 2016, at 9:00 a.m. The ceremony will take place at the foot of Chestnut Avenue, south of Broadway, near Long Beach City Hall. Historical research deemed appropriate that Patrolman William Homer Waggoner be added to the list of fallen police officers. Officer Waggoner passed away in 1954 as a result of injuries sustained in a gun battle nearly 24 years earlier. He will also be enrolled the California Peace Officer’s Memorial and National Law Enforcement Officers’ Memorial. At Tuesday’s event, Long Beach Police and Fire Department personnel, along with city dignitaries and staff, will honor those individuals who made the ultimate sacrifice with their lives while serving the Long Beach community. The memorial ceremony will include the Pledge of Allegiance led by a Long Beach Police explorer, posting of the colors, an invocation, a 21-gun salute and Taps by the Long Beach Police Honor Guard, individual recognition of fallen officers and firefighters, and a bagpipe performance of Amazing Grace, as well as remarks by Police Chief Robert Luna and Fire Chief Mike Duree. *This year’s ceremony will be the last to be held at this site due to the Civic Center renovation. Related news release regarding Officer Waggoner: http://longbeach.gov/police/press-releases/patrolman-waggoner/ This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2327,http://www.longbeach.gov/police/press-releases/traffic-fatality---lakewood-blvd-and-sb-405-fwy/,Media Bulletins,Agency-Published Resources,TRAFFIC FATALITY - LAKEWOOD BLVD AND SB 405 FWY,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 1/7/2019 FOR IMMEDIATE RELEASE Press Release # Subject: TRAFFIC FATALITY - LAKEWOOD BLVD AND SB 405 FWY Contact: Media Relations Detail (562) 570-5273 LBPDMediaRelations@longbeach.gov On Monday, January 7, 2019, at approximately 12:08 p.m., officers were dispatched to southbound Lakewood Boulevard north of Willow Street regarding an injury traffic collision, which resulted in the death of a male adult. When officers arrived on scene they discovered a motorcyclist, identified as 25-year-old Corey Haggerty of Lakewood, had collided with an SUV and was lying in the middle of southbound Lakewood Boulevard near his 2012 Honda CBR 600 motorcycle. The 2018 Ford Explorer SUV he collided with was stopped about 80 feet beyond. The Long Beach Fire Department responded and determined victim Haggerty deceased at the scene. The driver of the SUV, along with her passenger, were uninjured as a result of the collision. The preliminary investigation revealed victim Haggerty was riding south on Lakewood Boulevard in the number two lane at a high rate of speed. As he neared the Willow Street intersection he came in contact with the SUV being driven by a 49-year-old female resident of Torrance, as she was changing lanes to make a left turn onto Willow Street. The SUV had just exited from southbound 405 Freeway onto Lakewood Boulevard. After the collision, the driver of the SUV stopped to render aid, had a valid driver's license and proof of insurance. Detectives do not believe the driver of the SUV was under the influence of alcohol or drugs at the time of the collision. The motorcyclist had an expired driver’s license, which did not have a motorcycle endorsement. Anyone with information regarding the collision is asked to contact Detective Steve Fox of the Long Beach Police Department Collision Investigation Detail at (562) 570-7110. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting www.lacrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2328,http://www.longbeach.gov/police/press-releases/murder-600-block-burnett/,Media Bulletins,Agency-Published Resources,Murder 600 block Burnett,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 2/7/2017 FOR IMMEDIATE RELEASE Press Release # 2017 Subject: MURDER Contact: Media Relations Detail (562) 570-5273 On Tuesday, January 17, 2017, at approximately 8:09 p.m., Long Beach Police were dispatched to investigate a possible shooting in the 600 block of East Burnett Street. Arriving officers found a male adult who had been struck by gunfire in the upper body. Long Beach Fire Department personnel transported the victim, in critical condition, to a local hospital. The victim succumbed to his injuries on January 18, 2017. The victim has been identified as 31-year-old Mercredi Khourn, a resident of Long Beach. The suspect fled the scene before officers arrived. No further suspect description is available. A motive is yet to be determined and the investigation remains ongoing. Anyone with information regarding this incident is urged to call Homicide Detectives Donald Goodman and Mark Mattia at (562) 570-7244. Anonymous tips may be submitted through ""LA Crime Stoppers"" by calling 1-800-222-TIPS (8477), downloading the ""P3 Tips"" app to your smart phone (available at the Apple App store and Google Play), or www.LACrimeStopppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2329,http://www.longbeach.gov/police/press-releases/l.b.p.d.-announces-appointment-of-new-commanders--changes-in-command-staff-assignments/,Media Bulletins,Agency-Published Resources,L.B.P.D. ANNOUNCES APPOINTMENT OF NEW COMMANDERS & CHANGES IN COMMAND STAFF ASSIGNMENTS,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 3/1/2019 FOR IMMEDIATE RELEASE Press Release # Subject: L.B.P.D. ANNOUNCES APPOINTMENT OF NEW COMMANDERS & CHANGES IN COMMAND STAFF ASSIGNMENTS Contact: Media Relations Detail (562) 570-5273 LBPDMediaRelations@longbeach.gov (Right: Lt. Mauk, Left: Lt. McGuire) Long Beach Police Chief Robert Luna has selected Lieutenant Donald Mauk, a 25-year veteran of the Police Department, and Lieutenant Melvin McGuire, a 22-year veteran of the Police Department, for promotion to the rank of Commander. Lieutenant Donald Mauk began his career with the Long Beach Police Department (LBPD) as a police officer in 1994. He then promoted to sergeant in 2008 and to lieutenant in 2015. Lieutenant Mauk has worked a variety of assignments including Patrol, Field Training Officer, Directed Enforcement, Hostage Negotiation Team, Support Bureau Office, Interim Jail Administrator. As a Lieutenant, he worked Patrol, Gang and Violent Crimes, and most recently in Robbery/Homicide. He holds a Bachelor of Science Degree in Business from California State University, Fullerton, and is a graduate of the Sherman Block Leadership Institute. Lieutenant Mauk serves on the Long Beach Police Historical Society and is a board member for the California Police Officers Association, Region X. Lieutenant Melvin McGuire began his career with the LBPD in 1997. He moved to Youth Services as a detective in 2001, serving as the School Resource Officer at Poly High School. He promoted to Sergeant in 2010 and Lieutenant in 2016. Lieutenant McGuire has worked assignments that include Juvenile Gang Detective, Background Investigator, Administrative Sergeant for the Patrol Bureau, Internal Affairs, and most recently as a South Division Patrol Lieutenant. Lieutenant McGuire is a member of the Command Officers Association and is an honor graduate of the Delinquency Control Institute, Sherman Block Supervisory Leadership Institute, and the POST Management Course. As a result of these recent promotions, there will be a limited commander rotation. Effective March 9, 2019 commander assignments will be as follows. OFFICE OF THE CHIEF OF POLICE Chief of Staff—Commander Erik Herzog Internal Affairs Division—Commander Lloyd Cox INVESTIGATIONS BUREAU Detective Division—Commander Don Wood Special Investigations Division—Commander Robert Smith* *Formerly known as Gang & Violent Crimes Division PATROL BUREAU East Division—Commander Patrick O’Dowd North Division—Commander Steve Lauricella West Division—Commander Melvin McGuire South Division—Commander Michael Lewis Field Support Division—Commander Rudy Komisza SUPPORT BUREAU Port Police Division—Commander Paul LeBaron Security Services Division—Commander Jeffrey Liberman Training Division—Commander Jeffrey Berkenkamp Jail Division—Commander Donald Mauk This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2331,http://www.longbeach.gov/police/press-releases/traffic-fatality---woodruff-avenue--conant-street/,Media Bulletins,Agency-Published Resources,TRAFFIC FATALITY - WOODRUFF AVENUE & CONANT STREET,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 11/10/2017 FOR IMMEDIATE RELEASE Press Release # Subject: TRAFFIC FATALITY - WOODRUFF AVENUE & CONANT STREET Contact: Media Relations Detail (562) 570-5273 On Thursday, November 9, 2017 at approx. 3:55 p.m., officers were dispatched to the area of Woodruff Avenue and Conant Street regarding an injury traffic collision between a vehicle and two juvenile bicyclists, which resulted in the death of one of the bicyclists. When officers arrived on scene, they discovered a 12-year-old male victim resident of Lakewood, lying in the southbound #1 lane of Woodruff Avenue, just south of Conant Street. They also discovered a 13-year-old female victim resident of Lakewood, seated on the west curb of Woodruff Avenue. Officers also observed a 2001 Chevy Suburban stopped in the #1 lane of Woodruff Avenue. The preliminary investigation revealed that the two bicyclists were on the sidewalk on the southwest corner waiting to cross Woodruff Avenue. when the light turned green they attempted to cross in the south crosswalk, when the 2001 Chevrolet, who was traveling westbound on Conant Street, attempted to make a left-hand turn onto southbound Woodruff Avenue on a green light, struck the bicyclists in the cross walk. Long Beach Fire Department paramedics responded and transported both bicyclists to a local area hospital. The juvenile male victim was later determined deceased. The juvenile female victim was treated and later released from the hospital. The driver of the Chevrolet Suburban was identified as a 39- year-old resident of Lakewood. The driver had his juvenile son in the vehicle at the time of the accident, but was not injured. The driver had a valid drivers license and insurance. The driver remained at the scene and cooperated with the preliminary investigation. Anyone who may have information regarding this incident is asked to call Long Beach Police Department Collision Investigation Detail Detective Brian Watt at (562) 570-7355. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2332,http://www.longbeach.gov/police/press-releases/murder-25-/,Media Bulletins,Agency-Published Resources,MURDER(25),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 6/23/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: MURDER Contact: Media Relations Detail (562) 570-5273 Press Release: Arrest Made 8-3-15 On Monday, June 22, 2015, about 8:45 a.m., Long Beach Police were dispatched to the area of the 800 block Cedar Avenue regarding a shooting call, which resulted in the death of a male adult. Upon arrival, officers located a victim who had sustained multiple gunshot wounds to the upper torso. Long Beach Fire Department personnel responded and determined him deceased at the scene. The victim has been identified as 37-year-old Douglas Wilson of Long Beach. The SWAT team responded to assist with the search of a nearby residence. As a precautionary measure, nearby residents voluntarily evacuated during the tactical operation. A suspect was not located in the residence. No one is in custody and no suspect information is available. A motive for the shooting is unknown and the investigation remains ongoing. Anyone with information regarding this incident is urged to contact Long Beach Police Homicide Detectives Hugo Cortes and Oscar Valenzuela at (562) 570-7244. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2333,http://www.longbeach.gov/police/press-releases/long-beach-police-announce-appointment-of-new-commander-and-assignment-of-next-west-division-commander/,Media Bulletins,Agency-Published Resources,LONG BEACH POLICE ANNOUNCE APPOINTMENT OF NEW COMMANDER AND ASSIGNMENT OF NEXT WEST DIVISION COMMANDER,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 1/6/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: LONG BEACH POLICE ANNOUNCE APPOINTMENT OF NEW COMMANDER AND ASSIGNMENT OF NEXT WEST DIVISION COMMANDER Contact: Media Relations Detail (562) 570-5273 Commander Conant Commander Smith Long Beach Police Chief Robert Luna has selected Richard Conant for the position of police commander and will be assigned to lead the Internal Affairs Division. Robert Smith, who is currently the Commander of the Internal Affairs Division, will begin a new assignment in the West Division. PROMOTION TO COMMANDER Commander Richard Conant, a 24-year veteran, began his career with the L.B.P.D. in February 1991. In 2006, he was promoted to sergeant and to lieutenant in 2011. Commander Conant has a diverse work history, including Patrol, Homicide, Gang Enforcement, the Office of the Chief of Police, and the S.W.A.T. team. His most recent assignment has been the Lieutenant in the Internal Affairs Division. Commander Conant has a Bachelor Degree in Criminal Justice from California State University, Long Beach, and completed the Sherman Block Supervisory Leadership Institute and FBI Crisis Negotiation Team Leadership training. He is a current member of the Leadership Long Beach Institute Class of 2015. ASSIGNMENT OF WEST DIVISION COMMANDER Robert Smith, who is currently the Commander of the Internal Affairs Division, will begin a new assignment in the West Division on January 10, 2015. Commander Robert Smith began his career as a police officer with the Long Beach Police Department in 1990. His assignments have included working as a Patrol Officer, Field Training Officer, Community Policing Officer, Special Enforcement Section, and Drug Enforcement Detective. He has extensive experience in community policing and at one point lead the Department's Community Oriented Public Safety (COPS) Office. Commander Smith holds a Bachelor of Arts Degree in Criminal Justice from California State University, Fullerton, and an Associate of Arts Degree from Golden West College. He is a graduate of the University of Southern California's Delinquency Control Institute and the Federal Bureau of Investigations (FBI) National Academy, 234th Session. The Long Beach Police Department congratulates Commander Conant and Commander Smith and wishes them continued success throughout their careers. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2334,http://www.longbeach.gov/police/press-releases/murder-investigation----1000-block-of-east-11th-street/,Media Bulletins,Agency-Published Resources,MURDER INVESTIGATION - 1000 BLOCK OF EAST 11TH STREET,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 3/1/2019 FOR IMMEDIATE RELEASE Press Release # Subject: MURDER INVESTIGATION - 1000 BLOCK OF EAST 11TH STREET Contact: Media Relations Detail (562) 570-5273 lbpdmediarelations@longbeach.gov Updated 11:17 a.m: On February 28, 2019, at approximately 5:15 p.m., officers were dispatched to the 1000 block of East 11th street regarding a hit shooting, which resulted in the death of a male juvenile and a non-life threatening injury to a female adult. When officers arrived, they located the juvenile victim, a 17-year-old resident of Long Beach, in the alley who had a gunshot wound to his upper torso. The female victim, a 34-year-old resident of Long Beach. was located inside a residence with a gunshot wound to the leg. The Long Beach Fire Department responded and transported both victims to a local hospital, where the juvenile victim was pronounced deceased. The preliminary investigation indicates the victims were in a garage that faces the alley in the rear of a residence. An unknown number of suspects driving a light-colored four-door sedan drove eastbound in the alley and fired multiple rounds at the victims. The motive for the shooting is unknown at this time. The investigation is on-going. Anyone with information regarding the incident is urged to contact LBPD Homicide Detectives Malcolm Evans and Robert Gonzales at (562) 570-7244. Anonymous tips may be submitted through “LA Crime Stoppers” by calling 1-800-222-TIPS (8477), downloading the “P3 Tips” app to your smart phone (available at the Apple App store and Google Play), or visiting www.lacrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2337,http://www.longbeach.gov/police/press-releases/officer-involved-shooting---2500-lb-blvd/,Media Bulletins,Agency-Published Resources,Officer Involved Shooting - 2500 LB Blvd,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 12/15/2015 FOR IMMEDIATE RELEASE Press Release # Subject: OFFICER INVOLVED SHOOTING Contact: Media Relations Detail (562) 570-5273 On Monday, December 14, 2015, at approximately 10:08 p.m., Long Beach police were dispatched to a business in the 2500 block of Long Beach Boulevard regarding a suspect inside armed with a knife, which resulted in an officer involved shooting. The preliminary investigation has determined the following: • While officers were responding to the location, they received an update the suspect was now waiving the knife around inside the business, and some customers left in fear of their safety. • The first officers arrived on scene minutes after they were dispatched and encountered the suspect who was seated in a chair and still armed with a knife • They gave the suspect verbal commands to drop the knife and the suspect failed to comply with any of the officers orders • Officers then deployed less lethal options, which included an electronic control device and baton • The less lethal options were ineffective, and an officer involved shooting occurred • Officers immediately started life saving measures on the suspect • Long Beach Fire Department responded, rendered aid, and subsequently pronounced the suspect deceased at the scene • No officers or citizens in the business were injured • The knife was recovered at the scene • Limited portions of the incident were captured on video, which will be reviewed by Homicide detectives, in addition to the L.A. County District Attorney’s Office The Los Angeles County Coroner’s Office will determine the suspect’s identity and notify next of kin. The Police Department thoroughly reviews all use of force incidents through a rigorous multi-step process that evaluates legal, policy, tactical, and equipment issues. Additionally, the Los Angeles County District Attorney’s Office is conducting an independent investigation of the shooting, as they do with all officer involved shootings that occur in Los Angeles County that result in injury of death. The L.A. County Coroner’s Office also conducts an independent investigation of officer involved shootings that result in death. Anyone who may have witnessed this incident, or has information is encouraged to call the Long Beach Police Departments Homicide Detail at (562) 570-7244. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2339,http://www.longbeach.gov/police/press-releases/critical-missing-person--douglas-grant/,Media Bulletins,Agency-Published Resources,CRITICAL MISSING PERSON- DOUGLAS GRANT,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 8/21/2018 FOR IMMEDIATE RELEASE Press Release # Subject: *UPDATE* CRITICAL MISSING PERSON- DOUGLAS GRANT Contact: Media Relations Detail (562) 570-5273 Douglas Clifford Grant (Click on photo to enlarge image) UPDATE - 8/21/18 at 4:30 PM: On Tuesday, August 7, 2018 the remains of missing person Douglas Clifford Grant were recovered in the Barstow Desert by the San Bernardino Sheriff’s Coroner. The Long Beach Police Department was notified on Saturday, August 18, 2018 that the remains were identified as those of Mr. Grant, who left his residence on July 18, 2018 to an unknown destination. Official cause of death will be determined by the San Bernardino Sheriff’s Coroner Office, who can be reached at (909) 387-2978. ORIGINAL NEWS RELEASE - 8/8/18: The Long Beach Police Department is asking for the public's help in locating a male adult who may be at risk. The missing person, 79-year-old Douglas Clifford Grant, was last seen by family members on July 19, 2018 at approximately 7:00 a.m., in the 3000 block of Golden Avenue. On July 24, 2018 family members received a tow notification from the California Highway Patrol indicating Mr. Grant's vehicle a Tan, 2008 Toyota pick-up was towed for being abandoned on the westbound I-40 FWY between mile markers 42 and 43. There has been no activity with any of his bank cards nor his cell phone since he left his residence. The victim is described as follows: Name: Douglas Clifford Grant Age: 79 years Gender: Male Race/Ethnicity: White Height: 6’0 Weight: 185 lbs. Hair: White Eyes: Blue Clothing: Unknown Scars/Marks/Tattoos: Fish tattoo on left arm Anyone who sees the victim or has information on his whereabouts is asked to call the Long Beach Police Department at (562) 435-6711 or 9-1-1. Anonymous tips may be submitted through “LA Crime Stoppers” by calling 1-800-222-TIPS (8477), downloading the “P3 Tips” app to your smart phone (available at the Apple App store and Google Play), or visiting www.lacrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2340,http://www.longbeach.gov/police/press-releases/murder-investigation-market-st--orange-ave/,Media Bulletins,Agency-Published Resources,MURDER INVESTIGATION (MARKET ST & ORANGE AVE),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 9/9/2018 FOR IMMEDIATE RELEASE Press Release # 2018 Subject: MURDER INVESTIGATION (MARKET ST. & ORANGE AVE.) Contact: Media Relations Detail (562) 570-5273 On September 8, 2018, at approx. 11:00 p.m., officers were dispatched to Market Street and Orange Avenue regarding a hit and run injury collision, which resulted in the death of a male adult. When officers arrived, they learned the victim was walking in the area of Market Street and Orange Avenue, when he got into an argument with the male driver of a red sedan. The argument continued and while the victim was standing in the center median area of the roadway, the suspect ran him over and fled westbound on Market Street. The victim was transported to a local hospital where he was later pronounced deceased. The victim has been identified as 40-year-old Victor Salvador Herrera of Long Beach. Shortly thereafter, in the area of Temple Avenue and Willow Street, officers observed what appeared to be an intoxicated driver, and attempted to conduct a traffic stop. When the vehicle collided into a parked car at 10th Street and Obispo Avenue, the suspect was taken into custody. Upon further investigation, it was determined this to be the same vehicle involved in the earlier hit and run. The suspect has been identified as 29-year-old Sokhorn Hor of Long Beach. He has been booked for murder and is being held at the Long Beach City Jail on $2,000,000 bail. Anyone who witnessed or has information regarding the incident is asked to call Long Beach Police Homicide Detectives Malcolm Evans and Robert Gonzales at (562) 570-7244. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting www.lacrimestoppers.org. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2342,http://www.longbeach.gov/police/press-releases/improving-motorcycle-safety-aim-of-l-b-p-d--operation/,Media Bulletins,Agency-Published Resources,IMPROVING MOTORCYCLE SAFETY AIM OF L.B.P.D. OPERATION,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 1/7/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: IMPROVING MOTORCYCLE SAFETY AIM OF L.B.P.D. OPERATION Contact: Media Relations Detail (562) 570-5273 The Long Beach Police Department will be conducting a specialized Motorcycle Safety Enforcement Operation on Saturday, January 10, 2015, in an effort to lower deaths and injuries. Extra officers will be on duty patrolling areas frequented by motorcyclists and where motorcycle crashes occur. Officers will be looking for violations made by drivers and riders alike that can lead to motorcycle crashes. They will be cracking down on both those driving regular vehicles and motorcycle riders that are under the influence of drugs or alcohol, speeding, making illegal turns, or committing other dangerous violations. Motorcycle fatalities saw a phenomenal drop of 37 percent from 2008 to 2010, but then rose 23 percent by 2012. Operations like this are aimed at curbing any increases in motorcycle deaths and sending the numbers back downward. In the City of Long Beach, there were 295 motorcyclists injured and 19 motorcycle fatalities during a three-year period spanning from January of 2011 to December of 2013. California collision data reveals that primary causes of motorcycle-involved crashes include speeding, unsafe turning and impairment due to alcohol and other drugs by both riders and drivers alike. The Long Beach Police Department would like to remind all motorists to always be alert and watch out for motorcycles, especially when turning and changing lanes. Drivers should be aware that motorcycle lane splitting is not illegal if done in a safe and prudent manner. Motorcycle riders should consult the Lane Splitting General Guidelines to learn more – www.ots.ca.gov/lanesplittinggeneralguidelines.pdf. Riders can get training through the California Motorcyclist Safety Program. Information and training locations are available at www.CA-msp.org or 1-877 RIDE 411 or 1-877-743-3411. Funding for this program is provided by a grant from the California Office of Traffic Safety through the National Highway Traffic Safety Administration. The message to all drivers and motorcyclists is: share in the responsibility and do your part by safely ""sharing the road."" This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2343,http://www.longbeach.gov/police/press-releases/improving-motorcycle-safety-aim-of-operation/,Media Bulletins,Agency-Published Resources,IMPROVING MOTORCYCLE SAFETY AIM OF OPERATION,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 2/20/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: IMPROVING MOTORCYCLE SAFETY AIM OF OPERATION Careless motorists as well as riders get special scrutiny Contact: Media Relations (562) 570-5273 The Long Beach Police Department will conduct a specialized Motorcycle Safety Enforcement Operation on February 22, 2015, in an effort to lower deaths and injuries. Extra officers will be on duty to patrol areas frequented by motorcyclists and where motorcycle crashes occurred. Officers will look for violations made by drivers and riders alike that can lead to motorcycle crashes. Officers will be cracking down on both those operating regular vehicles and motorcycles, who are under the influence of drugs or alcohol, speeding, making illegal turns, or any other dangerous violation. Motorcycle fatalities saw a phenomenal drop of 37% from 2008 to 2010, but then rose 23% by 2012. Operations like this are aimed at curbing any more raises in motorcycle deaths and sending the numbers back downward. Over the course of the past three years, motorcycle involved collisions have resulted in 15 fatal and approximately 277 injury crashes. California collision data reveals that primary causes of motorcycle-involved crashes include speeding, unsafe turning, and impairment due to alcohol and other drugs by both riders and drivers. Long Beach Police encourage you to practice the following: Safety tips for drivers – Share the Road: Look twice for motorcyclists, especially when entering the roadway, turning, or changing lanes Motorcyclists are allowed in HOV lanes unless prohibited by signage Safety tips for riders – See and Be Seen: Ride with lights on during daylight hour Use your lane position to increase visibility; change lanes only when there is ample room Match your speed to surrounding traffic Always wear a DOT compliant helmet and brightly colored protective clothing Riders are urged to obtain training through the California Motorcyclist Safety Program. Information and training locations are available online or 1-877 RIDE 411 (1-877-743-3411). Funding for this program is provided by a grant from the California Office of Traffic Safety through the National Highway Traffic Safety Administration. The message to all drivers and motorcyclists is: Share in the responsibility and do your part by safely “sharing the road.” This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2344,http://www.longbeach.gov/police/press-releases/lbpd-academy-graduation-ceremony/,Media Bulletins,Agency-Published Resources,LBPD ACADEMY GRADUATION CEREMONY,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 11/5/2015 FOR IMMEDIATE RELEASE Press Release # Subject: LBPD ACADEMY GRADUATION CEREMONY HELD TODAY Contact: Media Relations Detail (562) 570-5273 CLICK PHOTO FOR LARGER VERSION The Long Beach Police Department is pleased to announce the graduation of Academy Class #88. The graduation ceremony was held today, November 5, 2015, at the Long Beach Performing Arts, Terrace Theater. Thirty-three Long Beach Police Department and two Gardena Police Department recruits successfully completed 27 ½ weeks of intense academic, physical and practical training in the areas such as: Patrol Procedures and Law Enforcement Tactics, Firearms Training, Weaponless Defense, Criminal Law, Vehicle Operations, Community Oriented Public Safety, and Cultural Diversity/Human Relations. Class #88 is diverse group who bring to the department a wide range of talents from a variety of backgrounds. The demographics for the class (33 LBPD recruits only) are as follows: Gender Male: 23 (69.7%) Female: 10 (30.3%) Race White: 18 (54.5%) Hispanic: 11 (33.3%) Black: 2 (6.1%) Other: 2 (6.1%) Asian: 0 Sex/Race Male/White: 14 (42.4%) Female/Hispanic: 6 (18.2%) Male/Hispanic: 5 (15.2%) Female/White: 4 (12.1%) Male Black: 2 (6.1%) Male/Other: 2 (6.1%) Education HS: 16 (48.5%) BA/BS: 10 (30.3%) AA: 6 (18.2%) MA: 1 (3%) The graduating class included the following officers: Officer Amanda Aknin Officer Tiffany Forster Officer Matthew Pech* Officer Monica Augustine Officer Ivan Garcia Officer Charles Pruiet Officer Matthew Calub Officer Genoveva Gonzales Officer Ivone Sanchez Officer Jose Castro Officer Craig Hazlewood Officer Manuel Sandoval Officer Benjamin Cobb Officer Benjamin Hearst Officer Troy Schaefer Officer James Connell Officer Nathan Kane Officer Hunter Schneider Officer Krizty Contreras Officer Michael Leraas Officer Timothy Stover Officer Marc Cooks Officer Melissa Martinez Officer Juan Urrieta Officer Kristina Cortes Officer Kevin Matter Officer Brian Weber Officer Alma Davila Officer Kevin Moreno Officer Daniel Wollenberg Officer Holden Deaton Officer Michelle Mounts Officer Mayda Zelaya* Officer Elieser Domingo Officer Bradley Muhlenkamp *Gardena Police Department The Long Beach Police Department congratulates the graduates and wishes them continued success in their future careers as law enforcement officers. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2345,http://www.longbeach.gov/police/press-releases/traffic-fatality-1900-block-pch/,Media Bulletins,Agency-Published Resources,TRAFFIC FATALITY,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 5/5/2017 FOR IMMEDIATE RELEASE Press Release # 2017 Subject: TRAFFIC FATALITY Contact: Media Relations Detail (562) 570-5273 On Thursday, May 4, 2017, at approximately 3:35 p.m., Long Beach Police were dispatched to the 1900 block of East Pacific Coast Highway regarding an injury traffic collision involving a vehicle and multiple pedestrians. Arriving officers found a vehicle collided into the covered patio area of a restaurant that was open for business. The preliminary investigation indicated a gray 2006 Dodge Durango was traveling westbound on East Pacific Coast Highway, when it is believed the driver experienced a medical emergency and lost control of the vehicle. The vehicle drifted to the right, off the roadway, colliding with the raised curb on Pacific Coast Highway, crossed the sidewalk, and collided into the patio area, striking three patrons. A female patron was trapped under the vehicle and was initially aided by community members and subsequently extricated by Long Beach Fire Department personnel. Long Beach Fire Department (LBFD) personnel transported the male adult driver, in critical condition, to a local hospital. They also transported the three patrons, the female adult and two male adults, to local hospitals. Their injuries appeared to be non-life threatening. The driver was later transported to a hospital in Los Angeles and on May 5, 2017, Long Beach Police were notified that the driver, a 53-year-old resident of Seal Beach, was later pronounced deceased at the hospital. The Los Angeles County Coroner will determine cause of death and notify next of kin. Anyone who may have information regarding this incident is asked to call Long Beach Police Department Collision Investigation Detail Detective David Lauro at (562) 570-7355. Anonymous tips may be submitted through ""LA Crime Stoppers"" by calling 1-800-222-TIPS (8477), downloading the ""P3 Tips"" app to your smart phone (available at the Apple App store and Google Play), or visiting www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2346,http://www.longbeach.gov/press-releases/long-beach-police-department-south-division-to-host-open-house/,Media Bulletins,Agency-Published Resources,Long Beach Police Department South Division to Host Open House,"",200,City of Long Beach,"[""PRESS RELEASE""]",[],[],[],[],[],"A- A A+ PRESS RELEASE City of Long Beach Public Information Office 411 W. Ocean Blvd, Long Beach, CA 90802 12/13/2017 FOR IMMEDIATE RELEASE Press Release # CM:121317 Subject: Long Beach Police Department South Division to Host Open House Contact: Arantxa Chavarria, Public Information Officer Long Beach Police Department 562.570.5273 LBPDMediaRelations@longbeach.gov The City of Long Beach will celebrate the reestablishment of the Police Department’s South Patrol Division, 400 W. Broadway, with a free community Open House event on Saturday, December 16, 2017, from 11:30 am until 2:30 pm. “Restoring the South Patrol Division will improve the safety of our community and demonstrates the City’s commitment to use Measure A funds to enhance public safety as promised,” said Mayor Robert Garcia. The Open House will feature tours of the facility, meet and greet with officers, equipment displays, refreshments, and welcoming remarks at noon. “We are very pleased to be able to restore the South Patrol Division Operations to the Public Safety Building,” said Police Chief Robert Luna. “We’re extremely grateful to our residents for supporting Measure A, which is allowing us to provide enhanced community oriented policing in the downtown area.” Measure A funds have reestablished the Long Beach Police Department’s South Patrol Division with eight sworn police positions and two civilian positions. South Division started deploying out of the Public Safety Building on Saturday, November 18, 2017. To contact the South Patrol Division, email LBPDSouth@longbeach.gov or call (562) 570-7555. About Measure A In 2016, Long Beach voters recognized a pressing need to maintain and enhance public safety services and invest in City infrastructure. Thanks to the passage of Measure A, Fire Engine 8, Paramedic Rescue 12, Police South Division, and Police Academy operations have been restored, enhancing public safety citywide. The City is also making a historic investment in revitalizing heavily utilized public spaces such as streets, libraries, community centers, and parks. Anticipated to raise $384 million over ten years for the City of Long Beach, Measure A is collected as a one percent sales tax for the first six years, and then reduces to half a percent in the four years before it sunsets. For more information, visit: www.longbeach.gov/MeasureA For more news, pictures, videos and announcements of what’s happening in Long Beach, follow us on Facebook , Twitter , Instagram and YouTube . " -2347,http://www.longbeach.gov/police/press-releases/murder-investigation2/,Media Bulletins,Agency-Published Resources,MURDER INVESTIGATION,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 4/5/2018 FOR IMMEDIATE RELEASE Press Release # Subject: MURDER INVESTIGATION Contact: Media Relations (562) 570-5273 On Wednesday, April 4, 2018, at approx. 12:00 a.m., officers were dispatched to the 5300 hundred block of Orange Avenue regarding a shooting, which resulted in the death of two male adults, and the injury of a third. When officers arrived, they discovered a deceased male, identified as 52-year-old Suy Phavong of Long Beach, who had sustained a gunshot wound to the torso. A second male subject, identified as 35-year-old Panha Nhean of Long Beach, had also been struck in the torso. He was transported to a local hospital by Long Beach Fire Department paramedics, where he was pronounced deceased. A third male subject, only being identified as a 47-year-old resident of Long Beach, was also transported to a local hospital with a non-life threatening injury. The preliminary investigation determined that all the victims were in a converted detached garage when an unknown suspect opened fire on the group. A motive for the shooting is unknown, no suspect information is available at this time, and the investigation remains ongoing. Anyone who may have information regarding this incident should contact Long Beach Police Homicide Detectives Teryl Hubert and Scott Lasch at (562) 570-7244. Anonymous tips may be submitted through “LA Crime Stoppers” by calling 1-800-222-TIPS (8477), downloading the “P3 Tips” app to your smart phone (available at the Apple App store and Google Play), or visiting www.lacrimestoppers.org. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2348,http://www.longbeach.gov/police/press-releases/traffic-fatality-artesia-and-myrtle/,Media Bulletins,Agency-Published Resources,TRAFFIC FATALITY ARTESIA AND MYRTLE,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 9/30/2016 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: TRAFFIC FATALITY Contact: Media Relations Detail (562) 570-5273 On Thursday, September 29, 2016, at approximately 7:06 p.m., Long Beach Police Department responded to a vehicle versus a pedestrian injury traffic collision at the intersection of Artesia Boulevard and Myrtle Street. Upon arrival, officers discovered a 2009 Ford Flex in the intersection and a male victim laying in the roadway next to the vehicle. Long Beach Fire Department Paramedics responded to the scene and transported the victim to a local Hospital. The Investigation revealed that the 2009 Ford Flex was traveling westbound Artesia Boulevard when three male juveniles attempted to run diagnolly across Artesia Boulevard at Myrtle Avenue. Two of the male pedestrians successfully ran across Artesia Boulevard in front of the vehicle, but the victim did not and was struck by the Ford Flex. The driver of the 2009 Ford Flex, a 43-year-old male resident of Compton, stopped at the scene and called 911. He and his passenger did not suffer any injuries. The driver had a valid drivers license and insurance and was not cited. The victim is a 17 year-old resident of Long Beach and suffered major head trauma. On September 30, 2016, he died from his injuries at a local hospital. Any witnesses are asked to call Detective Brian Watt at (562) 570-5520. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2350,http://www.longbeach.gov/police/press-releases/traffic-fatality-8-/,Media Bulletins,Agency-Published Resources,TRAFFIC FATALITY(8),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 3/2/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: TRAFFIC FATALITY Contact: Media Relations Detail (562) 570-5273 On February 17, 2015, at approximately 6:06 p.m., Long Beach Police were dispatched to Bellflower Boulevard and Atherton Street regarding an injury traffic collision involving a vehicle and a pedestrian, which resulted in the death of a male adult. Arriving officers found Long Beach Fire Department paramedics attending to a male pedestrian who sustained major head and body trauma. The pedestrian was transported to a local hospital in critical condition. The preliminary investigation revealed the 60- to 70-years-old unidentified pedestrian was walking westbound across Bellflower Boulevard, south of Atherton Street, when he was struck by a 2013 Mazda. The Mazda, being driven by a 26-year-old Long Beach resident, was traveling southbound Bellflower Boulevard. The pedestrian was not carrying any identification and is currently listed as a John Doe. The Mazda driver remained at the scene, was interviewed, and later released. Long Beach Police were notified that on February 27, 2015, the pedestrian succumbed to his injuries. The Los Angeles County Coroner’s Office will make positive identification and notify next-of-kin. Anyone with information regarding this incident is asked to call Collision Investigations Detective Sirilo Garcia at (562) 570-7355. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2351,http://www.longbeach.gov/police/press-releases/murder-44-/,Media Bulletins,Agency-Published Resources,Murder(44),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 12/7/2015 FOR IMMEDIATE RELEASE Press Release # Subject: MURDER Contact: Media Relations Detail (562) 570-5273 UPDATE: On 2/10/2016, 33-year-old Justin Michael St. George was arrested in connection with this murder. See link to related news release Original news release : On Sunday, December 6, 2015, at approximately 10:40 a.m., Long Beach Police responded to a parking lot in the 1700 block of Ximeno Avenue regarding the body of a deceased male adult. The victim was found inside an RV with a fatal injury to the torso and was determined deceased at the scene. Additional information regarding the nature of the injury is not being released at this time. The preliminary investigation determined the RV had parked at that location sometime between late Friday night or early Saturday morning. The victim is only being identified as a 62-year-old male pending notification of next of kin. Detectives believe the victim had only resided in Long Beach a short time. A motive for the assault is unknown and remains under investigation. Anyone with information regarding the incident is urged to contact Long Beach Police Homicide Detectives Mark Bigel Guarino and Shea Robertson at (562) 570-7244. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting www.lacrimestoppers.org. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2352,http://www.longbeach.gov/police/press-releases/charges-filed-in-murder-investigation/,Media Bulletins,Agency-Published Resources,CHARGES FILED IN MURDER INVESTIGATION,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 12/19/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: CHARGES FILED IN MURDER INVESTIGATION Contact: Media Relations Detail (562) 570-5273 The Long Beach Police Department is pleased to announce that charges have been filed against two male juveniles who were arrested in connection with the October 31, 2014 murder of 19-year-old Enrique Avila of Long Beach. Long Beach Police Homicide detectives presented the case to the Los Angeles County District Attorney's office, and one count of murder, in addition to gang enhancements, were filed against the two 17-year-olds, one from Long Beach, and the other from Compton. One suspect was taken into custody on December 12th, and the other turned himself in on December 17th, after a warrant was issued for his arrest. Both are awaiting their preliminary hearing; unknown date. On October 31, 2014, at approximately 11:30 p.m., Long Beach Police responded to the 200 block of E. 68th street regarding a stabbing that just occurred. Upon arrival officers found Victim Avila who had sustained serious injuries as a result of the stabbing. He was transported by Long Beach Fire to a local hospital where he was pronounced deceased. Anyone with information regarding this incident should contact Long Beach Police Homicide Detectives Donald Goodman and Mark Mattia at (562) 570-7244. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2353,http://www.longbeach.gov/police/press-releases/murder-investigation---600-block-of-cedar-ave/,Media Bulletins,Agency-Published Resources,MURDER INVESTIGATION - 600 BLOCK OF CEDAR AVE,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 8/13/2018 FOR IMMEDIATE RELEASE Press Release # Subject: MURDER INVESTIGATION - 600 BLOCK OF CEDAR AVE Contact: Media Relations Detail (562) 570-5273 On August 12, 2018, at approximately 8:30 p.m., officers were dispatched to the 600 block Cedar Avenue regarding a possible shooting, that resulted in the death of a male adult. Once on scene, officers gathered information indicating the victim and the suspect were involved in an altercation and located evidence a shooting had occurred. Both suspect and victim fled the scene prior to officer arrival. Shortly after, officers located a male adult in the immediate area who had been struck in the upper body by gunfire. Long Beach Fire Department paramedics responded and determined the victim deceased on scene. Possible suspect description is male adult Hispanic, a motive for the shooting is unknown. The investigation remains ongoing. The victim’s identity is being withheld pending notification to next of kin. Anyone with information regarding this incident is asked to call Homicide Detectives Mark Mattia or Donald Goodman at (562) 570-7244. Anonymous tips may be submitted through ""LA CRIME STOPPERS"" by calling 1-800-222-TIPS (8477), downloading the ""P3 Tips"" app to your smart phone (available at the Apple store and Google Play), or by visiting www.lacrimestoppers.org. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2354,http://www.longbeach.gov/police/press-releases/parents-arrested-for-murder-in-2013-suspicious-death-of-1-month-old-infant/,Media Bulletins,Agency-Published Resources,PARENTS ARRESTED FOR MURDER IN 2013 SUSPICIOUS DEATH OF 1-MONTH-OLD-INFANT,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 4/2/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: PARENTS ARRESTED FOR MURDER IN 2013 SUSPICIOUS DEATH OF 1-MONTH-OLD-INFANT Contact: Media Relations (562) 570-5273 On May 30, 2013, Long Beach police officers responded to the 200 block of South Pine Avenue in regards to a 1-month-old infant that was not breathing. The infant was transported to a local hospital and pronounced deceased. The Los Angeles County Coroner's Office investigated the case as a suspicious death. The results of the coroner’s investigation revealed the parents were responsible for the death of the infant. After a thorough investigation by Long Beach Homicide detectives, the case was presented to the Los Angeles County District Attorney’s Office. On March 27, 2014, The Los Angeles County District Attorney’s Office issued arrest warrants for both parents of the infant. On March 31, 2014, Long Beach Homicide Detectives learned the parents were at an apartment in the City of Fresno, California. With the assistance of the Fresno Police Department, 32 year-old Nereyda Licon of Fresno and 28 year-old Joshua Licon of Fresno were arrested for murder and booked into the Fresno County Jail. On April 1, 2014, Long Beach Detectives transported the Licons to the Long Beach Jail where they are both being held on $1,000,000 bail. Anyone with information regarding this incident is urged to contact the Long Beach Police Homicide Detectives Hugo Cortes and Peter Lackovic at (562) 570-7244. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting www.lacrimestoppers.org. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2355,http://www.longbeach.gov/police/press-releases/operation-results-in-multiple-arrests--confiscation-of-numerous-firearms/,Media Bulletins,Agency-Published Resources,OPERATION RESULTS IN MULTIPLE ARRESTS & CONFISCATION OF NUMEROUS FIREARMS,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2356,http://www.longbeach.gov/police/press-releases/duidrivers-license-checkpoint-planned-this-weekend3/,Media Bulletins,Agency-Published Resources,DUI/DRIVERS LICENSE CHECKPOINT PLANNED THIS WEEKEND,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2358,http://www.longbeach.gov/police/press-releases/traffic-fatality-shoreline-dr-and-710-fwy/,Media Bulletins,Agency-Published Resources,TRAFFIC FATALITY: SHORELINE DR AND 710 FWY,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 2/16/2018 FOR IMMEDIATE RELEASE Press Release # Subject: TRAFFIC FATALITY: SHORELINE DR AND 710 FWY Contact: Media Relations Detail (562) 570-5273 On February 16, 2018, at approximately 2:35 a.m., officers responded to the area of westbound Shoreline Drive east of the North I-710 Freeway regarding a single vehicle traffic collision, which resulted in the death of a male adult. Officers arrived on scene and discovered a 2016 Hyundai Veloster at the bottom of the embankment below Shoreline Drive. The vehicle was occupied by one male. The preliminary investigation determined the Hyundai, driven by a 21-year old male from Ontario, was traveling west on Shoreline Drive. The driver lost control of the vehicle hitting the guard rail on the north side of the roadway. The vehicle left the roadway and came to rest in a vacant dirt lot below Shoreline Drive. Long Beach Fire Department responded and attempted lifesaving measures. However, the driver succumbed to his injuries and was determined deceased at the scene. Identification of the driver is being withheld pending the notification of the next of kin. Alcohol/Drug intoxication are not believed to be involved. The investigation is ongoing. Any witnesses to this incident are asked to contact Long Beach Police Department Collision Investigation’s Detail at (562) 570-7355. Anonymous tips may be submitted through “LA Crime Stoppers” by calling 1-800-222-TIPS (8477), downloading the “P3 TIPS” app to your smart phone (available at the Apple App store and Google Play), or visiting www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2359,http://www.longbeach.gov/police/press-releases/in-custody-death/,Media Bulletins,Agency-Published Resources,IN-CUSTODY DEATH,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 5/30/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: IN-CUSTODY DEATH Contact: Media Relations (562) 570-5273 On Tuesday, May 27, 2014, at approximately 2:00 a.m., Long Beach Police stopped a vehicle for traffic violations in the area of Carson Street and the 605 freeway. During the course of the traffic stop the officer discovered a passenger in the vehicle, 53-year-old Deborah Lynn Day, had an outstanding felony warrant for her arrest. Mrs. Day was placed under arrest and transported to the Long Beach Police Department Jail Booking Facility. During the booking process, jail medical personnel examined Mrs. Day. Mrs. Day had no apparent medical issues, however she appeared to be under the influence of drugs and therefore closely monitored. Mrs. Day became agitated during the booking process, which led medical staff and booking personnel to request paramedics transport her to a hospital for further examination. Long Beach Fire Department Paramedics responded and transported Mrs. Day to a local hospital. Shortly after her arrival, Mrs. Day went into medical distress and was resuscitated by hospital staff. Mrs. Day remained at the hospital in critical condition. At approximately 5:10 p.m. on May 27th, Mrs. Day again went into medical distress. Hospital staff was unable to revive her and she was pronounced deceased. Detectives from the Long Beach Police Homicide Detail responded to investigate due to Mrs. Day’s medical issues becoming apparent while in-custody, which is standard practice in all cases of in-custody deaths. The investigation remains ongoing. The Los Angeles County Coroner’s Office is also conducting an independent investigation to determine the cause of death. Anyone with information regarding this incident should contact Long Beach Homicide Detectives Teryl Hubert and Sean Irving at (562) 570-7244. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2360,http://www.longbeach.gov/police/press-releases/publics-help-sought-in-indecent-exposure/,Media Bulletins,Agency-Published Resources,PUBLIC'S HELP SOUGHT IN INDECENT EXPOSURE,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 11/1/2018 FOR IMMEDIATE RELEASE Press Release # Subject: PUBLIC'S HELP SOUGHT IN IDENTIFYING INDECENT EXPOSURE SUSPECT Contact: Media Relations Detail (562) 570-5273 On Thursday, November 1, 2018, at approx. 9:20 a.m., officers were dispatched to investigate an indecent exposure incident that occurred in the area of 68th Street and Orange Avenue. A 13- year-old female was walking in that area when a male subject in a vehicle called her over and exposed himself to her. The victim fled the location and the police were called. The suspect was described as male white or Hispanic, 20 to 30-years-old, with longer brown hair on top, shorter hair on the sides, and a neatly trimmed beard. He was wearing a dark t-shirt and driving a newer white 2-door vehicle. It is unknown if the incident is related to a similar incident that occurred on October 30, 2018, in the 5200 block of Greenmeadow Road, but the investigation is ongoing (see link below). Anyone who has information regarding the suspect or vehicle is urged to contact Long Beach Police Sex Crimes Detectives at (562) 570-7368. Anonymous tips may be submitted through “LA Crime Stoppers” by calling 1-800-222-TIPS (8477), downloading the “P3 Tips” app to your smart phone (available at the Apple App store and Google Play), or visiting www.lacrimestoppers.org . October 30, 2018 Incident: http://www.longbeach.gov/police/press-releases/publics-help-sought-in-identifying-indecent-exposure-suspect/ This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2361,https://delcopa.gov/treasurer/pdf/2021reassessmentvalues/36.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"404 - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert " -2362,https://www.mass.gov/doc/2017-police-officer-and-state-trooper-exam-poster/download,Training & Hiring Info,Info About Officers,"","",200,"","","","","","","","" -2363,https://coloradosprings.gov/mayors-office/article/news/mayor-and-police-statements-about-bailey-civil,Media Bulletins,Agency-Published Resources,Mayor and police statements about Bailey civil settlement | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""Mayor and police statements about Bailey civil settlement""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[],"" -2364,http://www.lafayettepolice.us/493/sports-programs,Not Criminal Justice Related,Not Criminal Justice Related,"Sports Programs | Lafayette, IN - Official Website",Young people can choose from several different sports programs for fun and fitness. ,200,"Police Department | Lafayette, IN - Official Website","[""Sports Programs""]","[""Youth Basketball"", ""Flag Football"", ""Sporties For Shorties"", ""Street Hockey"", ""Summer and Fall Tennis""]","[""Fall Session 2024"", ""Winter Session (2025)"", ""2024 Information"", ""Basketball"", ""T-Ball"", ""Soccer"", ""Flag Football"", ""More Information"", ""Contact Us"", ""McAllister Recreation Center"", ""Hours"", ""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -2365,https://www.newarknj.gov/resources/instructions-for-crane-or-helicopter-lift,Not Criminal Justice Related,Not Criminal Justice Related,Resources: Instructions for Crane or Helicopter Lift,"Official Page of Newark, NJ Resources: Instructions for Crane or Helicopter Lift",200,City of Newark,"[""City of"", ""NEWARK"", ""City of"", ""NEWARK""]","[""Instructions for Crane or Helicopter Lift"", ""Mayor Ras j baraka""]",[],[],[],[],"City of NEWARK DEPARTMENTS Administration Communications Economic & Housing Development Engineering Finance Health & Community Wellness Law Municipal Court Newark Office of Film+Television Office of Violence Prevention & Trauma Recovery Office of the City Clerk Office of the Mayor & Agencies Public Safety Public Works Recreation, Cultural Affairs and Senior Services Water & Sewer Utilities News Events Forms mayor City Mayor Council Members Contact Knowledge Contact us City of NEWARK DEPARTMENTS Administration Communications Economic & Housing Development Engineering Finance Health & Community Wellness Law Municipal Court Newark Office of Film+Television Office of Violence Prevention & Trauma Recovery Office of the City Clerk Office of the Mayor & Agencies Public Safety Public Works Recreation, Cultural Affairs and Senior Services Water & Sewer Utilities News Events Forms mayor City Mayor Council Members Contact Knowledge Contact us City of NEWARK DEPARTMENTS Administration Communications Economic & Housing Development Engineering Finance Health & Community Wellness Law Municipal Court Newark Office of Film+Television Office of Violence Prevention & Trauma Recovery Office of the City Clerk Office of the Mayor & Agencies Public Safety Public Works Recreation, Cultural Affairs and Senior Services Water & Sewer Utilities DEPARTMENTS DEPARTMENTS Administration Communications Economic & Housing Development Engineering Finance Health & Community Wellness Law Municipal Court Newark Office of Film+Television Office of Violence Prevention & Trauma Recovery Office of the City Clerk Office of the Mayor & Agencies Public Safety Public Works Recreation, Cultural Affairs and Senior Services Water & Sewer Utilities Administration Communications Economic & Housing Development Engineering Finance Health & Community Wellness Law Municipal Court Newark Office of Film+Television Office of Violence Prevention & Trauma Recovery Office of the City Clerk Office of the Mayor & Agencies Public Safety Public Works Recreation, Cultural Affairs and Senior Services Water & Sewer Utilities Administration Communications Economic & Housing Development Engineering Finance Health & Community Wellness Law Municipal Court Newark Office of Film+Television Office of Violence Prevention & Trauma Recovery Office of the City Clerk Office of the Mayor & Agencies Public Safety Public Works Recreation, Cultural Affairs and Senior Services Water & Sewer Utilities mayor City Mayor Council Members mayor mayor Contact Knowledge Contact us Contact Contact Instructions for Crane or Helicopter Lift Click to View the Resource Instructions for Crane or Helicopter Lift Instructions for Crane or Helicopter Lift Click to View the Resource Click to View the Resource Click to View the Resource Click to View the Resource Contact Information City Hall 920 Broad Street Newark, NJ 07102 (973) 733-4311 (973) 928-1238 4311newark@ci.newark.nj.us Helpful Links Community Departments News Events City Council Employee Directory Newark 4311 contact us Quick Links business registration Payments knowledge base Jobs Phone Numbers Departments Administration Communications Economic & Housing Development Engineering Finance → View all Departments innovation Newark Nextdoor NewarkConnect App iPhone NewarkConnect App Android Data Dashboard Newark Fiber Open Data City of NEWARK Mayor Ras j baraka Privacy Policy Report an Issue Website Feedback Powered by SeamlessGov " -2366,https://www.sandiego.gov/police/news-center/cold-cases/maria-cortes,Crime Maps & Reports,Agency-Published Resources,Maria Cortes | City of San Diego Official Website,"Maria Cortes was a Mexican national who worked as a housekeeper and child care provider. She had a two-year-old daughter named Briana. Those close to Cortes described her as a devoted mother and a hard worker, dedicated to making a better life for Briana and becoming a legal citizen herself. Cortes had no car and used buses for transportation, often riding two or more buses in one trip and sometimes walking alone at night to get home from work.",200,City of San Diego Official Website,"[""City of San Diego Official Website"", ""Cold Case: Maria Cortes""]","[""Main navigation"", ""Leisure"", ""Resident Resources"", ""Doing Business"", ""Library"", ""Public Safety"", ""City Hall"", ""News Center"", ""Footer"", ""Accessibility Tools""]",[],"[""Parks"", ""Outdoors"", ""Neighborhoods"", ""Recreational Activities"", ""Street Maintenance"", ""Plan"", ""Fix"", ""Build"", ""Programs & Events"", ""Services"", ""Kids & Teens"", ""eCollection"", ""Police"", ""Fire-Rescue"", ""Lifeguards"", ""City Officials"", ""City Government""]",[],[],"" -2367,https://delcopa.gov/publicrelations/releases/2018/18redribbonweek.html,Not Criminal Justice Related,Not Criminal Justice Related,"Public Relations - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Public Relations Releases""]",[],"[""Recognizing October 23-31 as Red Ribbon Week"", """", ""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"" -2368,https://www.coppelltx.gov/953/lifelong-learning,Not Criminal Justice Related,Not Criminal Justice Related,"Lifelong Learning | Coppell, TX","Whether you want to learn a new hobby, start a career, or learn a new language, Lifelong Learning Databases are the best way to continue your education.",200,"Coppell, TX | Official Website","[""Lifelong Learning""]","[""Database Password""]","[""Loading""]",[],[],[],Skip to Main Content -2369,https://wildwoodpolice-fl.gov/wpd-history/,Poor Data Source,Poor Data Source,WPD History - Wildwood Police,"",200,Home - Wildwood Police,"[""Wildwood PD History""]","[""Contact Information:""]",[],[],[],[],"Home Online Services Submit A Tip Attempt to Identify Bias Based Profiling Commend an Officer Crime Statistics NEW – Public Records Request Traffic Crash Report Buy a Crash Report Report a Traffic Crash Florida Crash Report Citizens Services Victim Outreach Community Outreach Department of Motor Vehicles About About The Chief WPD Administration Our Mission and Vision WPD History Crime Prevention Media Careers Contact Home Online Services Submit A Tip Attempt to Identify Bias Based Profiling Commend an Officer Crime Statistics NEW – Public Records Request Traffic Crash Report Buy a Crash Report Report a Traffic Crash Florida Crash Report Citizens Services Victim Outreach Community Outreach Department of Motor Vehicles About About The Chief WPD Administration Our Mission and Vision WPD History Crime Prevention Media Careers Contact Wildwood PD History The 1st official record of the incorporation of the City of Wildwood is contained in the Acts of the Legislature, Chapter 3968, which indicated that the City’s incorporation was validated by the State. Legislature on May 16, 1889. Photo Gallery Contact Information: (352) 330-1355 3939 County Rd 462E Wildwood, FL 34785 Accessibility Statement The mission of the Wildwood Police Department is to safeguard the lives and property of the citizens of this community, preserve the peace, prevent crime and disorder, while constantly guarding personal liberties as prescribed by law. © 2022 Wildwood, FL Police Dept. X Home Online Services Submit A Tip Attempt to Identify Bias Based Profiling Commend an Officer Crime Statistics NEW – Public Records Request Traffic Crash Report Buy a Crash Report Report a Traffic Crash Florida Crash Report Citizens Services Victim Outreach Community Outreach Department of Motor Vehicles About About The Chief WPD Administration Our Mission and Vision WPD History Crime Prevention Media Careers Contact Home Online Services Submit A Tip Attempt to Identify Bias Based Profiling Commend an Officer Crime Statistics NEW – Public Records Request Traffic Crash Report Buy a Crash Report Report a Traffic Crash Florida Crash Report Citizens Services Victim Outreach Community Outreach Department of Motor Vehicles About About The Chief WPD Administration Our Mission and Vision WPD History Crime Prevention Media Careers Contact Home Online Services Submit A Tip Attempt to Identify Bias Based Profiling Commend an Officer Crime Statistics NEW – Public Records Request Traffic Crash Report Buy a Crash Report Report a Traffic Crash Florida Crash Report Citizens Services Victim Outreach Community Outreach Department of Motor Vehicles About About The Chief WPD Administration Our Mission and Vision WPD History Crime Prevention Media Careers Contact Home Online Services Submit A Tip Attempt to Identify Bias Based Profiling Commend an Officer Crime Statistics NEW – Public Records Request Traffic Crash Report Buy a Crash Report Report a Traffic Crash Florida Crash Report Citizens Services Victim Outreach Community Outreach Department of Motor Vehicles About About The Chief WPD Administration Our Mission and Vision WPD History " -2370,https://cityofsweetwater.fl.gov/event/sweetwater-police-pension-plan-board-of-trustees-meeting-3/,Not Criminal Justice Related,Not Criminal Justice Related,Agendas & Minutes - City of Sweetwater,"",200,Home - City of Sweetwater,[],"[""Agendas & Minutes""]","[""Contact City Hall"", ""Office Hours""]",[],"[""Search Meeting Minutes, Agendas & Packets""]",[],Today Week Detailed 69°F Today 79°F Thu 81°F Fri 79°F Sat 79°F Sun 79°F Mon 79°F Tue 82°F Today Week Detailed 69°F Today 79°F Thu 81°F Fri 79°F Sat 79°F Sun 79°F Mon 79°F Tue 82°F Today Week Detailed 69°F Today 79°F Thu 81°F Fri 79°F Sat 79°F Sun 79°F Mon 79°F Tue 82°F Today Week Detailed 69°F Today 79°F Thu 81°F Fri 79°F Sat 79°F Sun 79°F Mon 79°F Tue 82°F Today Week Detailed 69°F Today 79°F Thu 81°F Fri 79°F Sat 79°F Sun 79°F Mon 79°F Tue 82°F Today Week Detailed 69°F Today 79°F Thu 81°F Fri 79°F Sat 79°F Sun 79°F Mon 79°F Tue 82°F Today Week Detailed 69°F Today 79°F Thu 81°F Fri 79°F Sat 79°F Sun 79°F Mon 79°F Tue 82°F Today Week Detailed 69°F Today 79°F Thu 81°F Fri 79°F Sat 79°F Sun 79°F Mon 79°F Tue 82°F Today Week Detailed 69°F Today 79°F Thu 81°F Fri 79°F Sat 79°F Sun 79°F Mon 79°F Tue 82°F 69°F Today 79°F Thu 81°F Fri 79°F Sat 79°F Sun 79°F Mon 79°F Tue 82°F 69°F Today 79°F Thu 81°F Fri 79°F Sat 79°F Sun 79°F Mon 79°F Tue 82°F Home About Us Government City Mayor City Commissioners City Code and Charter Agendas & Minutes Administration Calendar Departments Mayor's Office Annual Reports City Budget Building and Zoning Permit & Inspection Utilization Report Permit & Inspection Status Important Forms — Building & Zoning Clerk’s Office Clerks Office Mission Election Information 2021 Election Information 2023 Ordinances & Resolutions Communications News & Notices Newsletter Code Compliance Finance Human Resources Parks and Recreation Parks Programs Police Public Works Engineering Division Community ITB / RFP / RFQ Passport Office Transportation & Transit Schedule Elderly Program Events Calendar Special Projects Department Subscribe to Updates Contact Us Home About Us Government City Mayor City Commissioners City Code and Charter Agendas & Minutes Administration Calendar Departments Mayor's Office Annual Reports City Budget Building and Zoning Permit & Inspection Utilization Report Permit & Inspection Status Important Forms — Building & Zoning Clerk’s Office Clerks Office Mission Election Information 2021 Election Information 2023 Ordinances & Resolutions Communications News & Notices Newsletter Code Compliance Finance Human Resources Parks and Recreation Parks Programs Police Public Works Engineering Division Community ITB / RFP / RFQ Passport Office Transportation & Transit Schedule Elderly Program Events Calendar Special Projects Department Subscribe to Updates Contact Us Home About Us Government City Mayor City Commissioners City Code and Charter Agendas & Minutes Administration Calendar Departments Mayor's Office Annual Reports City Budget Building and Zoning Permit & Inspection Utilization Report Permit & Inspection Status Important Forms — Building & Zoning Clerk’s Office Clerks Office Mission Election Information 2021 Election Information 2023 Ordinances & Resolutions Communications News & Notices Newsletter Code Compliance Finance Human Resources Parks and Recreation Parks Programs Police Public Works Engineering Division Community ITB / RFP / RFQ Passport Office Transportation & Transit Schedule Elderly Program Events Calendar Special Projects Department Subscribe to Updates Contact Us -2371,https://www.mass.gov/doc/cancer-cervical-chicopee/download,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -2372,https://dccouncil.gov/donation-disclosures/copy-of-august-2018-donation-disclosures-5/,Not Criminal Justice Related,Not Criminal Justice Related,Copy of August 2018 Donation Disclosures • Council of the District of Columbia,"",200,Home • Council of the District of Columbia,"[""Copy of August 2018 Donation Disclosures""]",[],[],[],[],[],"Federal Tax Counter: $1,298,612,070 What is this? Get Updates RSS Press Center facebook twitter youtube Council of the District of Columbia Hearings Calendar Legislation & Laws The Council Federal Tax Counter: $1,298,612,070 What is this? Get Updates RSS Press Center facebook twitter youtube Federal Tax Counter: $1,298,612,070 What is this? Get Updates RSS Press Center facebook twitter youtube Council of the District of Columbia Hearings Calendar Legislation & Laws The Council Council of the District of Columbia Copy of August 2018 Donation Disclosures May 14, 2019 Copy of August 2018 Donation Disclosures Copy of August 2018 Donation Disclosures May 14, 2019 Copy of August 2018 Donation Disclosures DC Council seal About the Council Open Government Register to Vote Council Updates Jobs Council Directory Privacy Policy Commemorative D.C. Flag Program Ethics Visit the Wilson Building facebook twitter youtube Council of the District of Columbia 1350 Pennsylvania Avenue, NW, Washington, D.C. 20004 © Copyright 2016, The Council of the District of Columbia. All rights reserved Council of the District of Columbia 1350 Pennsylvania Avenue, NW, Washington, D.C. 20004 © Copyright 2016, The Council of the District of Columbia. All rights reserved Search facebook twitter youtube Original text Rate this translation Your feedback will be used to help improve Google Translate Original text Rate this translation Your feedback will be used to help improve Google Translate Original text Original text Rate this translation Your feedback will be used to help improve Google Translate Rate this translation Your feedback will be used to help improve Google Translate Rate this translation Your feedback will be used to help improve Google Translate " -2373,https://ose.louisiana.gov/event/police-lieutenant/,Poor Data Source,Poor Data Source,Police Lieutenant | Louisiana Office of State Examiner,"",200,403 Forbidden,"["""", ""Police Lieutenant""]",[],"[""Promotional Level""]",[],[],"[""Recent Posts"", ""Archives"", ""Categories"", ""Meta""]","Search Search Search Search Personnel Action Form About Testing & Employment Eligibility Lists Jurisdictions Resources Contact ADA Testing Accommodations Statewide Testing This event has passed. Police Lieutenant Promotional Level Application Deadline TBD Jurisdiction Shreveport Application Search Recent Posts Holiday Closures Archives June 2023 Categories Uncategorized Meta Log in Entries feed Comments feed WordPress.org Sign Up for Updates Δ 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Privacy Policy Facebook Copyright © 2024 Office of State Examiner Site by Gatorworks. Search Personnel Action Form About Testing & Employment Eligibility Lists Jurisdictions Resources Contact ADA Testing Accommodations Statewide Testing Search Personnel Action Form Search Search Search Personnel Action Form This event has passed. Police Lieutenant Promotional Level Application Deadline TBD Jurisdiction Shreveport Application Search Recent Posts Holiday Closures Archives June 2023 Categories Uncategorized Meta Log in Entries feed Comments feed WordPress.org This event has passed. Police Lieutenant Promotional Level Application Deadline TBD Jurisdiction Shreveport Application Search Recent Posts Holiday Closures Archives June 2023 Categories Uncategorized Meta Log in Entries feed Comments feed WordPress.org This event has passed. Police Lieutenant Promotional Level Application Deadline TBD Jurisdiction Shreveport Application This event has passed. Police Lieutenant Promotional Level Application Deadline TBD Jurisdiction Shreveport Application This event has passed. Police Lieutenant Promotional Level Application Deadline TBD Jurisdiction Shreveport Application This event has passed. Police Lieutenant Promotional Level Promotional Level Promotional Level Application Deadline TBD Jurisdiction Shreveport Application Deadline TBD Jurisdiction Shreveport Application Deadline TBD Jurisdiction Shreveport Application Deadline TBD Application Deadline Jurisdiction Shreveport Jurisdiction Application Search Search Sign Up for Updates Δ Sign Up for Updates Δ Sign Up for Updates 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Privacy Policy Facebook 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Privacy Policy 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Phone: (225) 925-4400 Privacy Policy Facebook Facebook Facebook Copyright © 2024 Office of State Examiner Site by Gatorworks. Copyright © 2024 Office of State Examiner Site by Gatorworks. " -2374,https://delcopa.gov/departments/pdfs/2020adoptedbudget.pdf,Annual & Monthly Reports,Info About Agencies,"","",200,"","","","","","","","" -2375,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/arrests/082321arrests.pdf,Arrest Records,Police & Public Interactions,"","",404,"","","","","","","","" -2376,https://www.mass.gov/letter-ruling/letter-ruling-81-13-printing-and-photocopying-equipment,Not Criminal Justice Related,Not Criminal Justice Related,Letter Ruling 81-13: Printing and Photocopying Equipment | Mass.gov,"Sales and Use Tax February 2, 1981 ********** (**********""Center"") is a small printing and photocopying business. You inquire whether the ********** Center's purchase of the following equipment used in its printing operations is subject to the sales tax: (1) offset printing presses; (2) padding presses that bind cardboard or other backing to pads of paper; (3) folding machines; (4) machines used to staple booklets, brochures and the like; (5) collating machines; (6) paper-cutting machines; (7) paper drills; (8) joggers used to align sheets of paper into compact piles; (9) cameras used in plate-making; (10) light tables used for layout work and setting out printing jobs; and (11) typesetting machines. Massachusetts General Laws Chapter 64H, Section 6(r) exempts from sales taxation sales of materials, tools and fuel, or any substitute therefor, which are consumed and used directly and exclusively in an industrial plant in the actual manufacture of tangible personal property to be sold. Chapter 64H, Section 6(s) exempts from sales taxation sales of machinery or replacement parts thereof used directly and exclusively in an industrial plant in the actual manufacture, conversion or processing of tangible personal property to be sold. To be exempt, machinery must be (a) used solely during a manufacturing, conversion or processing operation 1. to effect a direct and immediate physical change upon tangible personal property to be sold; 2. to guide or measure a direct and immediate physical change upon such property where the guiding or measuring is an integral and essential part of tuning, verifying or aligning the parts of such property; or 3. to test or measure such property where the testing or measuring is an integral part of the production flow or function; or (b) used solely to 1. store; 2. transport or convey; or 3. handle such property during the operations listed in (a) above; or (c) used solely to place such property in the container, package or wrapping in which it is normally sold to the ultimate consumer. If machinery does not satisfy the above criteria, it is not exempt even if its operation, function or purpose is an integral or essential part of a continuous production flow or manufacturing process. Based on the foregoing, it is ruled that: (1) sales to the ********** Center of items (1) through (8) (the printing presses, padding presses, folding, stapling, collating and paper-cutting machines, paper drills and joggers) are exempt from tax; and (2) sales to the ********** Center of items (9) through (11) (the cameras used in platemaking, light tables and typesetting machines) are subject to tax. I am enclosing a copy of Regulation 830 CMR 64H.04. Very truly yours, /s/L. Joyce Hampers L. Joyce Hampers Commissioner of Revenue LJH:JXD:mf Enclosure LR 81-13",200,Mass.gov,"[""Letter Ruling Letter Ruling 81-13: Printing and Photocopying Equipment""]","[""Notices & Alerts Hide Expand"", ""Table of Contents"", ""Help Us Improve Mass.gov with your feedback""]","[""notice Get important updates from DOR. Updated Feb. 5, 2024, 03:00 pm""]",[],[],[],"" -2377,https://www.mass.gov/doc/case-study-city-of-chicopee/download,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -2378,http://www.longbeach.gov/police/press-releases/dui-checkpoint-nets-arrests/,Media Bulletins,Agency-Published Resources,DUI CHECKPOINT NETS ARRESTS,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2379,http://www.longbeach.gov/police/press-releases/murder-100-block-48th/,Media Bulletins,Agency-Published Resources,MURDER,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 3/2/2017 FOR IMMEDIATE RELEASE Press Release # 2017 Subject: MURDER Contact: Media Relations Detail (562) 570-5273 On Tuesday, March 1, 2017, at approximately 7:04 p.m., Long Beach Police were dispatched to an unknown trouble call in the area of Long Beach Boulevard and 48th Street, which resulted in the death of a male adult. Arriving officers located two victims who sustained gunshot injuries. Long Beach Fire Department personnel transported a male adult victim, in stable condition, to a local hospital. Fire Department personnel also determined a male adult victim deceased at the scene. The Los Angeles County Coroner will make positive identification and notify next of kin. A motive for the shooting is unknown and the investigation remains ongoing. Anyone with information regarding this incident is asked to contact the Long Beach Police Homicide Detail at (562) 570-7244. Anonymous tips may be submitted through ""LA Crime Stoppers"" by calling 1-800-222-TIPS (8477), downloading the ""P3 Tips"" app to your smart phone (available at the Apple App store and Google Play), or visiting www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2380,http://www.longbeach.gov/police/press-releases/undetermined-death-investigation-1-/,Media Bulletins,Agency-Published Resources,UNDETERMINED DEATH INVESTIGATION(1),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 7/8/2016 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: UNDETERMINED DEATH INVESTIGATION Contact: Media Relations Detail (562) 570-5273 VIEW RELATED NEWS RELEASE On Friday, July 8, 2016, at approximately 4:05 a.m., Long Beach Police were dispatched to assist Long Beach Fire Department personnel with a fire involving a recreational vehicle, in the 900 block of Loma Vista Drive. Upon arrival, Fire Department personnel found an adult victim inside the vehicle and determined the individual deceased at the scene. Long Beach Homicide detectives and Arson investigators also responded. Their investigation is active and ongoing. The Los Angeles County Coroner will determine cause of death and make positive identification. Anyone with information regarding this incident is urged to call Homicide Detectives Mark Mattia and Shea Robertson at (562) 570-7244. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 7/8/2016 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: UNDETERMINED DEATH INVESTIGATION Contact: Media Relations Detail (562) 570-5273 VIEW RELATED NEWS RELEASE On Friday, July 8, 2016, at approximately 4:05 a.m., Long Beach Police were dispatched to assist Long Beach Fire Department personnel with a fire involving a recreational vehicle, in the 900 block of Loma Vista Drive. Upon arrival, Fire Department personnel found an adult victim inside the vehicle and determined the individual deceased at the scene. Long Beach Homicide detectives and Arson investigators also responded. Their investigation is active and ongoing. The Los Angeles County Coroner will determine cause of death and make positive identification. Anyone with information regarding this incident is urged to call Homicide Detectives Mark Mattia and Shea Robertson at (562) 570-7244. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . A- A A+ A- A A+ A- A A+ A- A A+ A- A A+ " -2381,http://www.longbeach.gov/police/press-releases/traffic-fatality-clark-and-eagle/,Media Bulletins,Agency-Published Resources,TRAFFIC FATALITY CLARK AND EAGLE,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 5/21/2017 FOR IMMEDIATE RELEASE Press Release # 2017 Subject: TRAFFIC FATALITY CLARK AND EAGLE Contact: Media Relations Detail (562) 570-5273 On Saturday, May 20, 2017, at approximately 2:40 am, officers were dispatched to Clark Avenue and Eagle Street regarding a traffic collision between a vehicle and a utility pole, which resulted in the death of one of the passengers. When officers arrived on scene, they discovered two passengers inside the vehicle. One of the passengers was unconscious and officers pulled the passenger out of the vehicle and administered CPR until paramedics arrived. Long Beach Fire Department Paramedics responded and determined the passenger deceased. The other passenger was injured and was transported to Memorial Hospital. The preliminary investigation revealed that the 2000 Toyota Avalon was traveling north on Clark Avenue when it veered off the roadway and hit a utility pole just north of Eagle Street. A male subject was found walking away from the scene a few blocks north of the accident. The male subject was detained and a witness was able to identify him as the driver. One of the passengers, a 24-year old resident of Long Beach, suffered a broken leg and Long Beach Paramedics transported him to a local hospital. The deceased passenger was identified as a 31-year old male resident of Seal Beach. The identity of the decedent is being withheld until the next of kin has been notified by the Los Angeles Coroner’s Office. The driver a 24-year-old resident of Lakewood, was transported to a local hospital with serious injuries. The driver was also found to be under the influence and was admitted to the hospital. The driver faces multiple charges, including vehicular manslaughter while intoxicated, felony hit and run and felony driving under the influence. Anyone who may have information regarding this incident is asked to call Long Beach Police Department Collision Investigation Detail Detective Brian Watt at (562) 570-7355. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2382,http://www.longbeach.gov/police/press-releases/murder-5400-block-atlantic/,Media Bulletins,Agency-Published Resources,MURDER 5400 BLOCK ATLANTIC,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 9/15/2016 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: MURDER Contact: Media Relations Detail (562) 570-5273 On Wednesday, September 14, 2016, at approximately 4:35 p.m., Long Beach Police were dispatched to shots heard in the area of the 5400 block of Atlantic Avenue, which resulted in the death of a male adult. Arriving officers located two victims who sustained gunshot injuries. Long Beach Fire Department personnel transported a female adult victim, with what appeared to be non-life threatening injuries, to a local hospital. Fire Department personnel also determined a male adult victim deceased at the scene. The Los Angeles County Coroner will make positive identification and notify next of kin. About 7:45 p.m., through the combined efforts of detectives, patrol officers, and communications operators, the suspect was located in the area of Lime Avenue and South Street. The suspect was confronted by detectives, complied with lawful orders, and was taken into custody without incident. Sotero Monteon, 61 years old and a resident of Long Beach, was booked for murder, felon in possession of a firearm, and outstanding warrants. He is being held at Long Beach City Jail with bail set at over $2,000,000. A motive for the shooting is unknown and the investigation remains ongoing. Anyone with information regarding this incident is asked to contact Long Beach Police Homicide Detectives Peter Lackovic, Sean Irving, and Oscar Valenzuela at (562) 570-7244. Anonymous tips may be submitted through ""LA Crime Stoppers"" by calling 1-800-222-TIPS (8477), downloading the ""P3 Tips"" app to your smart phone (available at the Apple App store and Google Play), or visiting www.LACrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2384,http://www.longbeach.gov/police/press-releases/undetermined-deaths-do-not-appear-related/,Media Bulletins,Agency-Published Resources,Undetermined Deaths Do Not Appear Related,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 12/5/2016 FOR IMMEDIATE RELEASE Press Release # Subject: UNDETERMINED DEATHS DO NOT APPEAR RELATED Contact: Media Relations Detail (562) 570-5273 On Monday, December 5, 2016, at approximately 5:50 a.m., officers were dispatched to the 5400 block of E. Ocean Boulevard regarding the deceased body of a male adult, which led to the finding of a deceased female adult in a vehicle nearby. When officers arrived, they located the body of a 43-year-old male on the sand near the shoreline, who had sustained a gunshot wound to his upper body. As officers were investigating this incident, they located the body of a 49-year-old female inside a blue Ford Explorer, which was parked at the south curb of Ocean Boulevard. Not knowing if the incidents were related, two independent investigations were launched, and the Los Angeles County Coroner’s Office responded to assist Homicide detectives with both cases. Based on the preliminary findings, the investigators do not believe there is any connection between these two cases, however, the investigations continue. It appears the male subject may have died from a self-inflicted gunshot wound. Long Beach Search & Rescue responded and conducted a land search of the area around where the body was found. Due to his body being found close to the shoreline, the LBPD Port Police Dive Team also responded and conducted a grid search of the nearby water, however, no firearm was located by either team. In relation to the female, it appears she may have died of natural causes. There were no obvious signs of trauma to her body, and she was in an extreme state of poor health. Detectives believe she may have been homeless and living out of her vehicle. The LA County Coroner’s Office will release the victims’ identities pending notification of next of kin, and will also determine official causes of death. Anyone with information regarding the male subject should contact L.B.P.D. Homicide Detectives Scott Lasch and Michael Hubbard. Anyone with information regarding the female subject should contact Detectives Teryl Hubert and Benjamin Vargas. The detectives can be reached at (562) 570-7244. Anonymous tips may be submitted through “LA Crime Stoppers” by calling 1-800-222-TIPS (8477), downloading the “P3 Tips” app to your smart phone (available at the Apple App store and Google Play), or visiting www.lacrimestoppers.org. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2385,http://www.longbeach.gov/police/press-releases/murder-investigation---800-block-of-alamitos-avenue/,Media Bulletins,Agency-Published Resources,MURDER INVESTIGATION - 800 BLOCK OF ALAMITOS AVENUE,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 4/19/2019 FOR IMMEDIATE RELEASE Press Release # Subject: *UPDATE* MURDER SUSPECT ARRESTED Contact: Media Relations Details (562) 570-5273 LBPDMediaRelations@longbeach.gov Update 4/19/19: On February 19, 2019, homicide detectives presented their case for filing consideration to the Los Angeles County District Attorney’s Office. After reviewing the case, a murder charge was filed and an arrest warrant was issued for 46-year-old Cleveland Rogers of Compton. Detectives believe Rogers was involved in a dispute with Haller, which escalated to the violent physical assault on Haller. On April 18, 2019, members of the United States Marshals Service Fugitive Task Force located and arrested Rogers in the 3300 block of Atlantic Avenue. Rogers was booked for murder and various outstanding warrants. He is currently being held on $2,062,461 bail. Original News Release Published on 2/12/19: On February 5, 2019, at approximately 9:00 p.m., patrol officers were dispatched to the 800 block of Alamitos Avenue regarding a battery incident where the victim reported being physically attacked by a male adult. When officers arrived, they located 66-year-old Lewis Haller of Long Beach, with injuries to his upper torso. Long Beach Fire Department personnel responded and treated the victim on scene. On February 6, 2019, officers were dispatched to a local hospital regarding a victim of an assault with a deadly weapon who had self-transported to the hospital. Officers identified him as victim Haller from the battery incident from the previous night. Due to the severity of the injuries, homicide detectives were called out to initiate an investigation. Further investigation found that Haller was attacked when he confronted the suspect who was trespassing his residence . The suspect then fled the scene prior to officer’s arrival. On February 12, 2019, the Long Beach Police Department received notification that victim Haller was pronounced deceased due to the injuries sustained on February 5th. Witnesses described the suspect as a male black in his 40’s, approximately 6’0, large build, and wearing a light-colored top, with dark jeans and shoes. The investigation remains on-going. Anyone with information regarding this incident is urged to contact Long Beach Police Homicide Detectives Michael Hubbard and Adrian Garcia at (562) 570-7244. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting www.lacrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2386,http://www.longbeach.gov/globalassets/police/media-library/images/press-releases/2016/thumb_halloween---kids-in-costume.png,Poor Data Source,Poor Data Source,City of Long Beach,"",200,City of Long Beach,[],"[""Page Not Found""]","[""Mayor"", ""City Council"", ""Rex Richardson"", ""Mary Zendejas"", ""Cindy Allen"", ""Kristina Duggan"", ""Daryl Supernaw"", ""Megan Kerr"", ""Suely Saro"", ""Roberto Uranga"", ""Al Austin"", ""Dr. Joni Ricks-Oddie"", ""Dawn McIntosh"", ""Laura L. Doud"", ""Doug Haubert"", ""Tom Modica"", ""Monique DeLaGarza"", ""City-Wide Elected Officials"", ""Appointed Officials"", ""Online Payments"", ""Online Services"", ""In-Person Services"", ""Opening a Business"", ""Doing Business With The City"", ""Resources"", ""Most Popular"", ""Online Resources"", ""Attractions"", ""Business Associations"", ""Travel Resources"", ""Departments"", ""Job Opportunities"", ""Information"", ""Do."", ""Discover."", ""Connect."", ""Ask.""]","["""", ""1st District"", ""2nd District"", ""3rd District"", ""4th District"", ""5th District"", ""6th District"", ""7th District"", ""8th District"", ""9th District"", ""City Attorney"", ""City Auditor"", ""City Prosecutor"", ""City Manager"", ""City Clerk""]",[],[],"" -2387,http://www.longbeach.gov/police/press-releases/missing-person---kylexia-newman/,Media Bulletins,Agency-Published Resources,MISSING PERSON - KYLEXIA NEWMAN,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 7/2/2019 FOR IMMEDIATE RELEASE Press Release # Subject: *UPDATE* LOCATED MISSING PERSON- KYLEXIA NEWMAN Contact: LBPD Media Relations (562) 570-5273 LBPDMediaRelations@longbeach.gov Update: On Monday, July 1, 2019, at approximately 2:00 p.m., critical missing person Kylexia Newman was located by her family in the City of Los Angeles. Original News Relase 6/21/19: CLICK ON IMAGE TO ENLARGE The Long Beach Police Department (LBPD) is seeking the public’s help with locating missing person Kylexia Newman, who was last seen the morning of June 16, 2019 when she left her residence without notifying anyone. It is believed that Newman was in the area of 2100 N. Long Beach Boulevard in Compton as of June 18, 2019. The Missing Person is described as follows: Age: 16-years-old Gender: Female Race: Black Height: 5’7” Weight: 244 lbs Hair: Brown Eyes: Brown Clothing: Gold shirt with black stripes and black pants Scars/Marks/Tattoos: Four burn marks on left forearm Jewelry: None Visible Dental Work: None Medical Alerts: Suffers from medical condition(s) and may become disoriented Anyone with information regarding this missing person is urged to call the LBPD Missing Persons Detail at (562) 570-7246 or Police Dispatch at (562) 435-6711. Anyone wishing to remain anonymous may submit a tip through “LA Crime Stoppers” by calling 1-800-222-TIPS (8477), downloading the “P3 Tips” app to your smart phone (available at the Apple App store and Google Play), or visiting www.lacrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2388,http://www.longbeach.gov/police/press-releases/dui-checkpoint-proves-effective-1-/,Media Bulletins,Agency-Published Resources,DUI CHECKPOINT PROVES EFFECTIVE(1),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 9/8/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: DUI CHECKPOINT PROVES EFFECTIVE Contact: Media Relations Detail (562) 570-5273 On Saturday, September 6, 2014, the Long Beach Police Department’s Traffic Section conducted a Driving Under the Influence/Driver License Checkpoint on Artesia Boulevard east of Cherry Avenue, from 7 p.m. until 3 a.m. During the eight-hour operation, which was aided by Long Beach Police Reserves, Long Beach Police Explorers, and Long Beach Search and Rescue, 475 vehicles passed through the checkpoint with 296 drivers being screened, and resulted in the following statistics: Five (5) Standardized Field Sobriety Tests conducted Two (2) drivers arrested for DUI One (1) driver arrested for a misdemeanor warrant Nine (9) drivers cited for unlicensed driving Four (4) drivers cited for suspended license Six (6) drivers cited for unsafe driving Driving Under the Influence checkpoints are a vital component in the fight against both impaired and unlicensed driving. Nationally, impaired driving caused by alcohol and/or drugs causes one death every 33 minutes. The average American has a 30% chance of being killed or injured by a driver under the influence. Sobriety checkpoints have been proven to reduce these types of driving-related collisions by removing such drivers from our streets. Funding for this program was provided by a grant from the California Office of Traffic Safety, through the National Highway Safety Administration. For further information, contact Traffic Section Lieutenant Kris Klein at (562) 570-7292. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2390,http://www.longbeach.gov/police/press-releases/felony-robbery-suspect-arrested/,Media Bulletins,Agency-Published Resources,FELONY ROBBERY SUSPECT ARRESTED,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 5/7/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: FELONY ROBBERY SUSPECT ARRESTED Contact: Media Relations Detail (562) 570-5273 The Long Beach Police Department has arrested a suspect in connection with two robberies in the Cities of Long Beach and Arcadia On April 20, 2015, a male suspect armed with a handgun entered a hotel lobby in the 4100 block of East Willow Avenue in Long Beach and demanded money from the hotel clerk. Approximately an hour and a half later, a male suspect entered a hotel in the 100 block of North Second Avenue, in the City of Arcadia, and also demanded money from the hotel clerk. The suspect, in both incidents, was seen fleeing the location in a silver colored passenger vehicle. Cash was taken in both instances, but fortunately no employees were injured in either incident. When L.B.P.D. Robbery detectives investigating the Long Beach incident learned of the similarities of the Arcadia robbery, they made contact with the Arcadia Police Department. Based on the suspect's physical description, the vehicle description, and the manner in which the crimes were carried out, it was believed the same person was responsible for both robberies. During the course of the investigation, L.B.P.D. detectives, with the assistance of Arcadia Police detectives, identified 22-year-old Joseph Casey of Los Angeles, as the suspect wanted in connection with the robberies. The Los Angeles County District Attorney’s Office filed one count of robbery against Joseph Casey for the Arcadia incident, and issued a warrant for his arrest. On May 4, 2015, L.B.P.D. Robbery detectives served a search warrant at Casey’s Los Angeles residence and arrested him. A vehicle and additional evidence believed to be connected to both robberies was located at his home. Suspect Casey was booked for the robbery warrant and for a parole violation. He is currently being held at Los Angeles County’s Men’s Central Jail without bail, and pending his next court date. L.B.P.D. detectives will be presenting the Long Beach robbery case to the Los Angeles County District Attorney’s Office for formal filing next week. Anyone who may have information regarding these incidents is asked to contact Long Beach Police Robbery Detective Fermin Gonzalez at (562) 570-7068. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting www.lacrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2391,http://www.longbeach.gov/police/press-releases/two-arrested---charged-in-two-shootings/,Media Bulletins,Agency-Published Resources,Two Arrested & Charged in Two Shootings,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2392,http://www.longbeach.gov/police/press-releases/---located---missing-3-week-old-infant-found-deceased-in-san-diego-county/,Media Bulletins,Agency-Published Resources,---LOCATED---MISSING 3-WEEK-OLD INFANT FOUND DECEASED IN SAN DIEGO COUNTY,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2393,http://www.longbeach.gov/police/press-releases/murder-1300-block-wesley-dr/,Media Bulletins,Agency-Published Resources,Murder 1300 block Wesley Dr,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 1/25/2017 FOR IMMEDIATE RELEASE Press Release # 2017 Subject: MURDER Contact: Media Relations Detail (562) 570-5273 UPDATE: On January 27, 2017, detectives made an arrest in the January 25th murder of Daniel Sevilla a 21 year-old resident of Long Beach. The incident occurred in the 1300 block of Wesley Drive. The suspect has been identified as 19 year-old Brandon Parker a resident of Compton. On January 31st, Homicide detectives presented their case to the LA County District Attorney for filing consideration. The DA’s office subsequently charged Parker with one count of murder, and one count of robbery, with special circumstances enhancement. Parker is being held in Los Angeles County Jail without bail. On Wednesday, January 25, 2017, at approximately 2:19 a.m., Long Beach Police were dispatched to investigate a possible shooting in the 1300 block of Wesley Drive. Arriving officers found a male adult with apparent gunshot injuries and immediately initiated life-saving measures (CPR). Long Beach Fire Department personnel subsequently determined the victim deceased at the scene. The suspect(s) fled the scene before officers arrived. Homicide detectives responded to begin their investigation. A motive is yet to be determined, however at this point, the incident does not appear to be random. The Los Angeles County Coroner will positively identify the victim and notify next of kin. The investigation remains ongoing. Anyone with information regarding this incident is urged to call Homicide Detectives Sean Irving and Benjamin Vargas at (562) 570-7244. Anonymous tips may be submitted through ""LA Crime Stoppers"" by calling 1-800-222-TIPS (8477), downloading the ""P3 Tips"" app to your smart phone (available at the Apple App store and Google Play), or visiting www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2394,http://www.longbeach.gov/police/press-releases/fatality-7-/,Media Bulletins,Agency-Published Resources,FATALITY(7),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2395,http://www.longbeach.gov/police/press-releases/publics-help-sought-in-locating-hit--run-suspect/,Media Bulletins,Agency-Published Resources,PUBLIC'S HELP SOUGHT IN LOCATING HIT & RUN SUSPECT,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 9/21/2017 FOR IMMEDIATE RELEASE Press Release # Subject: PUBLIC'S HELP SOUGHT IN LOCATING HIT & RUN SUSPECT Contact: Media Relations Detail (562) 570-5273 Suspect Victor Garcia or Gracia CLICK TO VIEW VIDEO The Long Beach Police Department is asking for the public’s help in locating the individual wanted in connection with a hit and run collision, which left the victim in critical condition. On August 30, 2017, at approximately 1:40 p.m., officers were dispatched to the area of Anaheim Street and Oregon Avenue regarding an injury hit and run collision. Officers arrived and discovered that a vehicle, described as a dark colored SUV, was travelling westbound on Anaheim Street when it hit the north curb and lost control, striking the victim. The victim, identified as 23-year-old Luis Enrique Tejeda of Long Beach, was riding his skateboard westbound on Anaheim Street, and was crossing Oregon Avenue in the crosswalk at the time he was struck. According to witness statements, the vehicle immediately fled the scene after the collision, heading westbound on Anaheim Street. One witness followed the SUV and was able to obtain a license plate number. The vehicle, identified as a 2004 black Chevy Tahoe, was located a few blocks from the collision scene shortly thereafter, and impounded. Through the course of the investigation, it was determined the vehicle had been recently purchased, and the suspect has been identified as follows: Victor Garcia or Gracia Possibly from Cudahy or Southgate area Approx. 25-35 years-old, 5’7” to 5’8” tall, 130 lbs., with black hair Victim Tejeda remains hospitalized and in critical condition. Anyone with information regarding the suspect’s whereabouts is urged to contact L.B.P.D. Collision Investigation Detective Sirilo Garcia at (562) 570-7132. Anonymous tips may be submitted through “LA Crime Stoppers” by calling 1-800-222-TIPS (8477), downloading the “P3 Tips” app to your smart phone (available at the Apple App store and Google Play), or visiting www.lacrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2397,http://www.longbeach.gov/police/press-releases/dui-saturation-patrol-proves-effective-1-/,Media Bulletins,Agency-Published Resources,DUI SATURATION PATROL PROVES EFFECTIVE(1),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 6/16/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: DUI SATURATION PATROL PROVES EFFECTIVE Contact: Media Relations Detail (562) 570-5273 On Saturday, June 14, 2014, the Long Beach Police Department’s Traffic Section conducted a Driving Under the Influence (DUI) Saturation Patrol from 7:00 p.m. until 3:00 a.m. During the eight-hour operation, motor officers patrolled throughout the city looking for impaired drivers and took the following enforcement actions: Conducted fifty-three (53) enforcement stops Conducted sixteen (16) Standardized Field Sobriety Tests Made Six (6) DUI arrests Issued three (3) misdemeanor citations to drivers having a suspended license Impounded three (3) vehicles for drivers having a suspended license After falling dramatically for five straight years, figures for 2012 showed an increase to 802 deaths in California because someone failed to designate a sober driver. Over the course of the past three years in Long Beach, DUI collisions have claimed nine lives and resulted in 315 injury crashes, harming 420 of our friends and neighbors. Driving under the influence can impact the economy in addition to the pain and suffering of those immediately affected. Conservatively, a fatality has a $1.4 million impact, an injury $70,000, and a crash that only damages property averages nearly $9000. Funding for this program is from a grant from the California Office of Traffic Safety, through the National Highway Traffic Safety Administration. Report Drunk Drivers, Call 9-1-1! This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2398,http://www.longbeach.gov/police/press-releases/robbery-suspects-arrested-1-/,Media Bulletins,Agency-Published Resources,robbery suspects arrested(1),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 4/22/2016 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: ROBBERY SUSPECTS ARRESTED & CHARGED Contact: Media Relations Detail (562) 570-5273 On April 21, 2016, multiple felony charges were filed against four 19-year-old suspects for their involvement in a street robbery. On Monday, April 18, 2016, about 1:15 p.m., the victim was walking in the 100 block of East Pacific Coast Highway when four suspects approached by him. The four encircled the victim, demanded his property, took his necklace, and immediately fled. Fortunately, the victim was not injured during the robbery. Patrol officers and detectives were in the vicinity and arrested the four suspects. During the investigation, detectives recovered a necklace and handguns. The case was presented to the Los Angeles County District Attorney’s Office for filing consideration. Each of the four was charged with robbery, use of a firearm during the commission of a crime, and participating in a criminal street gang. Three remain in Long Beach City Jail as follows: Joseph Erin Baldwin, 19, of Long Beach, bail set at $165,000 Corey Dayvon Leytham, 19, of Buena Park, bail set at $140,000 Alexander Ortiz Jr., 19, of Long Beach, bail set at $140,000 Casey Willard, 19, of Long Beach, posted bail and was released Arraignment of the three defendants who remain in custody is scheduled at Long Beach Superior Court, Department 1, on April 22, 2016. Arraignment for Defendant Willard is scheduled at Long Beach Superior Court, Department 1, on May 11, 2016. Anyone who may have witnessed this incident is asked to contact Robbery Detective Gonzalez at (562) 570-7068. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . The Robbery Detail would like to remind everyone to remain aware of your surroundings at all times and report suspicious activity by calling 9-1-1. For weekly crime prevention tips, follow @LBPDrobbery on Twitter. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2399,http://www.longbeach.gov/police/press-releases/murder-1300-block-of-pine/,Media Bulletins,Agency-Published Resources,MURDER 1300 BLOCK OF PINE,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 6/12/2018 FOR IMMEDIATE RELEASE Press Release # Subject: ARREST MADE IN MURDER 1300 BLOCK OF PINE Contact: Media Relations Detail (562) 570-5273 UPDATE: On Saturday, June 9, 2018, Detectives arrested 59 year-old Long Beach resident Nestor Guyal Tendido, for the murder of 58 year-old Kelly Paul Miller. Tendido was arrested in the City of Long Beach in the area of Willow and Pacific. The case was presented to the DA’s office and Tendido was charged with one count of murder. The suspect is scheduled to be arraigned this afternoon. On June 3, 2018 at approximately 2:05 AM, officers were dispatched to the 1300 block of Pine Avenue to assist Long Beach Fire who was en route to a call of a male adult suffering from a possible stabbing. Upon arrival officers found that paramedics had determined the victim deceased at the scene. Officers initial investigation found the victim was involved in a physical altercation and received a traumatic wound to the upper torso, but the cause of that injury is still to be determined. Homicide detectives responded and are handling the investigation. No arrests have been made. The Los Angeles County Coroner’s Office responded and will determine the victim's cause of death and make a positive identification. Anyone with information regarding this incident is urged to call homicide Detectives Oscar Valenzuela and Shea Robertson at (562) 570-7244. Anonymous tips may be submitted through “LA Crime Stoppers” by calling 1-800-222-TIPS (8477), downloading the “P3 TIPS” app to your smart phone (available at the Apple App store and Google Play), or visiting www.LACrimeStoppers.org. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2400,http://www.longbeach.gov/police/press-releases/murder-28-/,Media Bulletins,Agency-Published Resources,MURDER(28),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 7/4/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: MURDER Contact: Media Relations Detail (562) 570-5273 On Saturday, July 4, 2015, around 5:27 a.m., Long Beach Police were dispatched to the area of East Anaheim Street and Dawson Avenue to assist Long Beach Fire Department personnel with an unresponsive subject who appeared to have sustained a stab injury. Long Beach paramedics determined the male adult deceased at the scene. At this time, the victim is not being identified pending notification of next of kin by the Los Angeles County Coroner. The preliminary investigation leads investigators to believe the victim is homeless. No suspect information is available, a motive is unknown, and the investigation remains ongoing. Anyone with information regarding this incident is urged to call Long Beach Police Homicide Detectives Scott Lasch and Michael Hubbard at (562) 570-7244. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2401,http://www.longbeach.gov/attorney/press-releases/court-dismisses-lawsuits-by-two-long-beach-police-officers-against-the-city-of-long-beach/,Media Bulletins,Agency-Published Resources,Court Dismisses Lawsuits by Two Long Beach Police Officers Against the City of Long Beach,"",200,City of Long Beach,"[""Charles Parkin Long Beach City Attorney""]",[],[],[],[],[],"A- A A+ Charles Parkin Long Beach City Attorney 411 West Ocean Blvd., 9 th Floor Long Beach, California 90802-4664 cityattorney@longbeach.gov 4/14/2016 FOR IMMEDIATE RELEASE Press Release # 014 Subject: Court Dismisses Lawsuits by Two Long Beach Police Officers Against the City of Long Beach Contact: Haleh R. Jenkins Deputy City Attorney (562) 570-2270 haleh.jenkins@longbeach.gov A Los Angeles Superior Court Judge today dismissed the lawsuits of two Long Beach police officers who alleged that the police department carried on a campaign of retaliation against them. Superior Court Judge Michael P. Linfield granted the City Attorney’s pretrial summary judgment motion, finding that no trial was necessary since no evidence supported any of the Plaintiffs’ claims. The Judge ordered judgment for the City. “We are pleased that the Court, after review of the motions and allegations, agreed with our position that there was no evidence to support their claims,” said Long Beach City Attorney, Charles Parkin. “This ruling at the summary judgment stage will save the City significant costs of trial.” Officers Alberto Vargas and Pablo Orduno filed lawsuits against the City’s police department claiming that the police department discriminated against them because of their ethnicity. After filing their lawsuits, Vargas and Orduno both voluntarily dismissed the discrimination claim, and proceeded on their claim that the police department was actively retaliating against them for, among other reasons, filing the original discrimination lawsuit. In their amended lawsuits, Vargas and Orduno contested an order requiring them to wear a recording device for a period of time, claimed that, at various times, they reported alleged time card fraud, and maintained that the department required each officer to write a specific number of traffic tickets. The Plaintiffs’ also alleged that the department retaliated against them because they were “whistleblowers.” The Long Beach Police Department denied all of these allegations. Specifically, that the Department’s Internal Affairs Division investigated the Plaintiffs’ claims and found no evidence supporting any of their allegations. Similarly, the trial court judge examined all of Vargas and Orduno’s various allegations, and specifically found no evidence supporting any of their claims. The Court rejected each plaintiff’s contention that the police department had acted wrongfully in any regard, and entered judgment in favor of the City of Long Beach and against the officers. Since the City is the prevailing party in this action, California Law requires the Plaintiffs to pay a portion of the City’s costs of suit. For more news, pictures, videos and announcements of what’s happening in Long Beach, ‘Like’ us on Facebook at www.facebook.com/CityofLongBeachCA " -2402,http://www.longbeach.gov/police/press-releases/fatality-3-/,Media Bulletins,Agency-Published Resources,FATALITY(3),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 2/25/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: FATALITY Contact: Media Relations (562) 570-5273 On Tuesday, February 24, 2015, at 6:27 P.M., Long Beach Police responded to the Gerald Desmond Bridge regarding an injury traffic collision. When officers arrived they discovered a 2003 Suzuki GSXR 1000 motorcycle with two riders had collided with the wall on the overpass from eastbound Ocean Boulevard to the northbound 710 Freeway. The investigation revealed the motorcycle driver and passenger were traveling eastbound on Ocean Boulevard over the Gerald Desmond Bridge at a high rate of speed. The driver took the northbound 710 Freeway overpass where he was unable to maintain control of the motorcycle and collided with the wall on their right side. The collision ejected both riders off the motorcycle and over the wall of the overpass onto Ocean Boulevard. The driver came to rest on the shoulder of the westbound lanes of Ocean Boulevard. The passenger fell on the eastbound lanes of Ocean Boulevard and was immediately struck by a 1994 Jeep Grand Cherokee that was traveling eastbound. The motorcycle came to rest on the overpass approximately 620 feet past where the riders were ejected. The driver of the motorcycle was identified as a 20-year-old male resident of Anaheim. The driver was transported to a local hospital where he is in critical condition. The driver had a valid license to drive a motorcycle and current insurance. The female passenger was identified as a 19-year-old female resident of Anaheim. The passenger was pronounced deceased at the scene. Identities are being withheld at this time pending notification of next of kin. The driver of the Jeep Grand Cherokee was identified as a 68-year-old male resident of Long Beach, who did not sustain any injuries. Anyone who may have information regarding this incident is urged to contact the Long Beach Police Department Collision Investigation Detail, Detective Brian Watt at (562) 570-5520. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2403,http://www.longbeach.gov/police/press-releases/police-impersonator/,Media Bulletins,Agency-Published Resources,Police Impersonator,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 2/25/2016 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: SAFETY AWARENESS - POLICE IMPERSONATOR IN SOUTH BAY AREA Contact: Media Relations Detail (562) 570-5273 Similar Vehicles Driven by Suspect Carter On February 23, 2016, at approximately 9:00 a.m., detectives from the Drug Investigations Section with the assistance of the FBI served a search warrant at a Rolling Hills Estates residence looking for a suspect wanted for impersonating a police officer. The suspect was identified as 42 year-old Jayson Paul Carter and he was arrested at the residence. Detectives recovered evidence consisting of false identifications representing state and federal law enforcement agencies. He was booked into the Long Beach Jail for impersonating a police officer and carrying a concealed loaded firearm. His bail was set at $35,000 and he posted bond later that day. Although police are not aware of any individuals the suspect had contact with, detectives believe victims may exist and are urging anyone who may have been detained by Carter, to come forward. Based on the investigation, detectives believe Carter may have contacted individuals within San Diego and Los Angeles Counties, as well as the Northern California area. The attached photographs are of similar vehicles that Carter has been known to drive. Anyone with additional information is urged to call Detective Dylan Lobascio at 562-570-7221. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2404,http://www.longbeach.gov/police/press-releases/publics-help-needed-to-identify-robbery-suspects/,Media Bulletins,Agency-Published Resources,PUBLIC’S HELP NEEDED TO IDENTIFY ROBBERY SUSPECTS,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2405,http://www.longbeach.gov/police/press-releases/traffic-fatality---ocean-blvd-and-ca-47/,Media Bulletins,Agency-Published Resources,TRAFFIC FATALITY - OCEAN BLVD AND CA-47,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 12/14/2018 FOR IMMEDIATE RELEASE Press Release # Subject: TRAFFIC FATALITY - OCEAN BLVD AND CA-47 Contact: Media Relations Detail (562) 570 -5273 On December 13, 2018, at approximately 7:50 p.m., officers were dispatched to Ocean Boulevard east of CA-47 regarding a collision between a motorcycle and a vehicle, which resulted in the death of a male adult. Once officers arrived they located a 58-year-old male resident of Huntington Beach lying in the westbound roadway of Ocean Boulevard. The subject was identified as the motorcyclist involved in the collision who was riding a 2002 Triumph America. Long Beach Fire personnel responded to the scene and determined the motorcyclist deceased. The motorcyclist's identification is being withheld pending notification of the next of kin. The preliminary investigation revealed the collision occurred when the motorcyclist was possibly riding at a high rate of speed east on Ocean Boulevard past CA-47 and collided with the back of the Acura, which was also traveling eastbound. The collision threw the motorcyclist into one of the westbound lanes of traffic where he appeared to be struck by two different westbound motorists. Neither of the westbound motorists remained on scene. Their vehicles are described as a dark-colored possible SUV and a silver pickup truck. Officers also contacted a 33-year-old female resident of Long Beach and was identified as the driver of a 2008 Acura TL involved in the collision. She remained on scene, cooperated with the investigation, and alcohol and drugs are not being considered as factors in the collision for this motorist. The investigation is ongoing and detectives are attempting to get further information regarding the vehicles that fled the scene. Anyone who may information regarding this incident is asked to call Long Beach Police Department Collision Investigation Detail Detective David Whelan at (562) 570-7355. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting www.lacrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2406,http://www.longbeach.gov/police/press-releases/arrest-made-in-sexual-assault-case-1-/,Media Bulletins,Agency-Published Resources,ARREST MADE IN SEXUAL ASSAULT CASE(1),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 9/10/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: ARREST MADE IN SEXUAL ASSAULT CASE Contact: Media Relations Detail (562) 570-5273 Long Beach Police arrested a male suspect in connection with a sexual assault that occurred in the area of Falcon Avenue and East Ocean Boulevard, and charges have been filed. On September 7, 2014, around 5:00 a.m., an adult female victim reported that an intruder entered her residence through an open window and sexually assaulted her. Officers and detectives immediately initiated an investigation and worked together to identify the suspect. On September 10, 2014, detectives located and arrested 28-year-old Detrick Paul Richmond of Hawthorne, at a residence in the City of Hawthorne. LBPD Sexual Assault Investigation Detectives presented the case to the Los Angeles District Attorney's office for filing consideration. The District Attorney’s Office filed 10 counts of sexual assault, assault with a deadly weapon, and burglary related charges. Richmond is currently being held on $5,000,000 bail in Long Beach City Jail. Anyone with information regarding this crime is asked to contact Long Beach Detective Luis Galvan at (562) 570-6407. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . The Long Beach Police Department would like to encourage community members to practice the following safety tips: Keep your doors locked and windows secure at all times, even in warmer weather Meet your neighbors, this makes it easier to recognize a person that doesn’t belong, and neighbors that communicate are more likely to look out for one another Report loiterers – loitering is often a precursor activity for burglars, enabling them to case the area Immediately report suspicious activity by calling 9-1-1, and provide a description of any subjects or vehicles. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2407,http://www.longbeach.gov/police/press-releases/body-found-1000-block-of-w--carson-street/,Media Bulletins,Agency-Published Resources,BODY FOUND 1000 BLOCK OF W. CARSON STREET,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 12/6/2016 FOR IMMEDIATE RELEASE Press Release # Subject: ***UPDATE*** - BODY FOUND 1000 BLOCK OF W. CARSON STREET Contact: Media Relations Detail (562) 570-5273 UPDATE (12/14/16) - SUSPECT ARRESTED; MURDER CHARGES FILED On Wednesday, December 14, 2016, Long Beach Police Homicide detectives filed murder charges against a suspect wanted in connection with the murder of a 29- year-old woman identified as Samantha Lang of Signal Hill. When officers located Victim Lang’s vehicle on December 5, 2016, it had been found abandoned and vandalized at the bottom of the flood control basin near the 1000 block of W. Carson Street. Her body was later located when officers returned to the area and conducted an extensive search. During the course of their investigation, detectives obtained information that led them to the victim’s ex-boyfriend, identified as 41-year-old Justin James Johnson of Signal Hill. Suspect Johnson was arrested by L.B.P.D. detectives on 12/9/16 in the City of Los Angeles. Today, detectives presented their case to the Los Angeles County District Attorney’s Office, who filed one count of murder against Johnson. He was arraigned this afternoon in Long Beach Superior Court, and will be subsequently held at LA County Men’s Jail without bail. ORIGINAL NEWS RELEASE (12/6/16) On December 5, 2016, at approximately 10:35 am, officers were dispatched to the 1000 block of W. Carson St. regarding a suspicious vehicle in a flood control basin adjacent to the LA River. Further investigation by officers led to the incident be handled as a critical missing when the registered owner of the vehicle could not be located. During the critical missing investigation officers returned to the 1000 block of W. Carson St. to conduct a thorough search of the area and at approximately 1:30 am on December 6, 2016, officers found the body of a deceased female adult. Homicide detectives responded, conducted their investigation and believe the deceased may be the registered owner of the vehicle. Positive identification and cause of death will be done by the Los Angeles County Coroner’s Office. Anyone with information regarding this incident is urged to call Homicide Detectives Teryl Hubert, Scott Lasch, Michael Hubbard, or Ben Vargas at (562) 570-7244. Anonymous tips may be submitted through ""LA Crime Stoppers"" by calling 1-800-222-TIPS (8477), downloading the ""P3 Tips"" app to your smart phone (available at the Apple App store and Google Play), or visiting http://www.lacrimestoppers.org/ This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2408,http://www.longbeach.gov/police/press-releases/three-arrested-and-charged-with-murder/,Media Bulletins,Agency-Published Resources,THREE ARRESTED AND CHARGED WITH MURDER,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2409,http://www.longbeach.gov/police/press-releases/l.b.p.d-announces-appointment-of-new-commander/,Media Bulletins,Agency-Published Resources,L.B.P.D ANNOUNCES APPOINTMENT OF NEW COMMANDER & CHANGES IN COMMAND STAFF ASSIGNMENTS,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 7/24/2018 FOR IMMEDIATE RELEASE Press Release # Subject: L.B.P.D ANNOUNCES APPOINTMENT OF NEW COMMANDER & CHANGES IN COMMAND STAFF ASSIGNMENTS Contact: Media Relations Detail (562) 570-5273 Lieutenant Patrick O'Dowd Long Beach Police Chief Robert Luna has selected Lieutenant Patrick O’Dowd, a 25-year veteran of the Police Department, for promotion to the rank of Commander. Lieutenant O’Dowd began his career with the Police Department in January 1993 as a Clerk Typist in the Records Division. He was promoted to Records Supervisor where he worked until being hired as a Police Recruit in 1995. He promoted to Sergeant in January 2011 and to Lieutenant in September 2015. Lieutenant O’Dowd has worked a variety of assignments throughout his career, including Patrol, Special Enforcement Section, Gang Detail, Financial Crimes, Homicide and Internal Affairs. His most recent assignment has been as the Administrative Lieutenant in the Patrol Bureau. Lieutenant O’Dowd holds both a Bachelor of Science and Master of Science Degrees in Business Administration and Finance from California State University, Long Beach. Lt. O’Dowd will be assigned as the Commander of the East Division. Additionally, Chief Luna has announced command staff assignment changes that will become effective on Saturday, August 4, 2018. Commanders typically rotate every few years to provide them with increased opportunities for career development and community engagement. The new commander assignments are as follows: Commander Erik Herzog will be transferring from the East Division to the Office of the Chief of Police, where he will serve as the Chief of Staff. Commander Paul LeBaron will be temporarily assigned to the Investigations Bureau as the Commander of the Detective Division. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2410,http://www.longbeach.gov/police/press-releases/police-seek-public-s-help-to-identify-burglary-suspect/,Media Bulletins,Agency-Published Resources,POLICE SEEK PUBLIC'S HELP TO IDENTIFY BURGLARY SUSPECT,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 1/15/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: POLICE SEEK PUBLIC'S HELP TO IDENTIFY BURGLARY SUSPECT Contact: Media Relations Detail (562) 570-5273 (Click on a Photo to Enlarge) View Video **UPDATE** On 1/20/15, after seeing himself in the news, the suspect wanted in connection with several laundry-room burglaries in Long Beach turned himself in. The suspect, identified as 35-year-old Felipe Felix of Long Beach, walked into the lobby of Long Beach Police Headquarters and surrendered. He was booked for burglary and is being held at the Long Beach City Jail on $50,000 bail. His case will be presented to the Los Angeles County District Attorney's Office this week. Original News Release: The Long Beach Police Department is asking for the public’s help in identifying a suspect wanted in connection with laundry room burglaries where the suspect removed coins from laundry machine coin boxes. Detectives believe, based on similar circumstances, that the suspect was involved in multiple burglaries from November 2013 to January 2015. In the most recent incident, which occurred on January 3, 2015, around 9:00 a.m. in the 300 block of Gladys Avenue, a male suspect entered a multi-family residential laundry room and forced entry into a coin box in an attempt to remove the cash. In this instance, the box was empty, so the suspect left empty handed. The suspect seen on surveillance video is described as: male, Hispanic, 30-40 years old, approximately 5’7” – 5’10”, 190-210 lbs, with short black hair, brown eyes, a mustache, and a long triangular shaped nose. Anyone with information is asked to contact LBPD Burglary Detective Lorri Peck at (562) 570-7351. Anyone wishing to remain anonymous may call 1-800-222-TIP This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2411,http://www.longbeach.gov/police/press-releases/results-of-saturday-s-l-b-p-d--s-driving-under-the-influence-saturation-patrol/,Media Bulletins,Agency-Published Resources,Results of Saturday's L.B.P.D.'s Driving Under the Influence Saturation Patrol,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 8/24/2015 FOR IMMEDIATE RELEASE Press Release # Subject: L.B.P.D.'s DUI SATURATION PATROL PROVES EFFECTIVE Contact: Media Relations Detail (562) 570-5273 On Saturday August 22, 2015, the Long Beach Police Department’s Traffic Section conducted a Driving Under the Influence Saturation Patrol from 7:00 p.m. until 3:00 a.m. During the eight-hour operation, motor officers patrolled throughout the city looking for impaired drivers. During the operation, officers took the following enforcement actions: • Conducted Eighty-two (82) enforcement stops • Conducted Twenty (20) Standardized Field Sobriety Tests • Made Three (3) DUI arrests • Issued One (1) citation to an unlicensed driver • Issued Six (6) traffic citations for unsafe driving After falling dramatically for five straight years, figures for 2012 show an increase to 802 deaths in California because someone failed to designate a sober driver. Over the course of the past three years, DUI collisions have claimed 9 lives and resulted in 315 injury crashes harming 420 of our friends and neighbors. DUI can impact the economy in addition to the pain and suffering of those immediately affected. Conservatively, a fatality has a $1.4 million impact, an injury $70,000, and a crash that only damages property averages nearly $9000. Funding for this program is from a grant from the California Office of Traffic Safety, through the National Highway Traffic Safety Administration. Report Drunk Drivers, Call 911! This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2413,http://www.longbeach.gov/police/press-releases/traffic-fatality-2200-block-of-golden-ave/,Media Bulletins,Agency-Published Resources,Traffic Fatality (2200 block of Golden Ave),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 8/22/2017 FOR IMMEDIATE RELEASE Press Release # Subject: TRAFFIC FATALITY Contact: Media Relations Detail (562) 570-5273 On Monday, August 21, 2017, at 9:35 p.m., officers responded to the 2200 block of Golden Avenue regarding an injury traffic collision, which resulted in the death of a female adult. When officers arrived, they discovered a 2005 Hyundai Elantra resting on its passenger side in the middle of the road. Long Beach Fire Department personnel extricated the victim from the vehicle and transported her to a local hospital where she was pronounced deceased. The preliminary investigation indicated the Hyundai, being driven by a 72-year-old female resident of Long Beach, was traveling northbound on Golden Avenue. The Hyundai struck an unoccupied Toyota Corolla parked on the east curb at slow speed, resulting in minimal vehicular damage. The woman, who was alone in the vehicle, was not seat belted and was lying unconscious inside the vehicle. There were no witnesses to the collision. The victim’s identity is being withheld pending notification of next of kin. Anyone who may have witnessed the incident is urged to contact L.B.P.D.’s Collision Investigation Detective Steve Fox at (562) 570-7110. Anonymous tips may be submitted through “LA Crime Stoppers” by calling 1-800-222-TIPS (8477), downloading the “P3 Tips” app to your smart phone (available at the Apple App store and Google Play), or visiting www.lacrimestoppers.org. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2414,http://www.longbeach.gov/police/press-releases/found---critical-missing-person----1-/,Media Bulletins,Agency-Published Resources,FOUND---CRITICAL MISSING PERSON---(1),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 4/16/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: FOUND---CRITICAL MISSING PERSON--- Contact: Media Relations Detail (562) 570-5273 Victim Rios (Click on photo to enlarge) April 17, 2014 Update: Mr. Gregorio Rios, who was reported missing yesterday, April 16, 2014, returned home on his own accord, around 9:30 p.m. last night. He appeared to be unharmed and is with his family. Original News Release: The Long Beach Police Department is asking for the public’s help in locating a man who suffers from Dementia and undiagnosed Alzheimer’s. The missing man, 79-year-old Gregorio Rios, was last seen this morning, Wednesday, April 16, 2014, at 11:00 a.m. before he walked away from his residence in the 2300 block of Cedar Avenue. The Victim is described as follows: Name: Gregorio Rios Age: 79 years Gender: Male Race/Ethnicity: Hispanic Height: 5’6” Weight: 170 Clothing: Gray pants, Green shirt Scars/Marks: None Visible Dental Work: Missing teeth The Long Beach Police Department continues to search for the victim. Local hospitals have been alerted and area law enforcement and public transportation agencies have also been notified. Anyone who sees the victim or has information on his whereabouts is asked to call the Long Beach Police Department at (562) 435-6711 or 9-1-1. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2415,http://www.longbeach.gov/police/press-releases/traffic-fatality--4th---obispo-/,Media Bulletins,Agency-Published Resources,TRAFFIC FATALITY (4th & Obispo),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 9/11/2017 FOR IMMEDIATE RELEASE Press Release # Subject: TRAFFIC FATALITY Contact: Media Relations Detail (562) 570-5273 On Sunday, September 10, 2017, at approx. 12:16 p.m., officers were dispatched to 4th Street and Obispo Avenue regarding a traffic collision involving a motorcycle, which resulted in the death of the motorcyclist. When officers arrived, they discovered a male adult subject laying in the northeast parking lot at 4th Street and Obispo Avenue, along with a motorcycle lying nearby. Long Beach Fire Department paramedics responded and determined the subject deceased at the scene. The investigation revealed the motorcycle was traveling eastbound on 4th street in the center divider, at a high rate of speed. The driver appeared to lose control of the motorcycle and clipped the back end of a 2007 Jeep Wrangler, traveling westbound on 4th street in the number one lane. It was determined the motorcyclist had recently purchased the motorcycle and did not have a motorcycle license endorsement. He is only being identified as a 47-year-old resident of Long Beach, pending notification of next of kin. The driver of the Jeep, a 20-year-old female resident of Long Beach, remained at the scene and was questioned and released. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2416,http://www.longbeach.gov/press-releases/long-beach-police-department-awarded-blue-line-security-contract/,Media Bulletins,Agency-Published Resources,Long Beach Police Department Awarded Blue Line Security Contract,"",200,City of Long Beach,"[""PRESS RELEASE""]",[],[],[],[],[],"A- A A+ PRESS RELEASE City of Long Beach Public Information Office 411 W. Ocean Blvd, Long Beach, CA 90802 2/23/2017 FOR IMMEDIATE RELEASE Press Release # CM: 022317 Subject: Long Beach Police Department Awarded Blue Line Security Contract Contact: Kerry Gerot Public Affairs Officer 562.570.6811 Kerry.Gerot@longbeach.gov The Long Beach Police Department today was awarded a $30.1 million contract over a 5-year period, to provide law enforcement services for the eight station platforms of the Blue Line that are in the City’s jurisdiction. ""Long Beach will now be able to control its own public safety destiny on the Blue Line and our eight stations,"" said Mayor Robert Garcia. ""Over the next year we will make the Blue Line safer and hire approximately 30 new police personnel to assist in this important effort.” The Los Angeles County Metropolitan Transportation Authority Board approved a New Multi-Agency Law Enforcement Contract to improve safety and security on Los Angeles County’s Metro Bus and Rail System. Mayor Garcia made the motion that passed unanimously. “We are very happy with the MTA Board’s decision to allow LBPD to be a part of the multi-agency security plan. We have a strong and unique knowledge of our community and believe that this is the best option for serving the needs of our City. Through this contract, we will be able to reduce response time to calls for service, increase law enforcement visibility, and deter crime in and around this important transportation corridor,” said Police Chief Robert Luna. “We are very grateful for this opportunity and appreciate the support we have received from our city and community leaders. We thank Sheriff McDonnell and the LASD for the service they have provided to our community and we look forward to working in partnership with them in the future.” The proposal will include a field team and an administration team of approximately 30 employees. Approximately one-third of the Blue Line runs through Long Beach. The Long Beach Police Department is committed to the philosophy of community-oriented policing, and the department is led by our strategic vision of a “Safe City for All People.” The Blue Line is an integral piece infrastructure that defines Long Beach, and the Department is looking forward to the opportunity to provide law enforcement services along the Blue Line. On February 5, 2016, the Los Angeles County Metropolitan Transportation Authority released a Request for Proposal (RFP) for Transit Law Enforcement Services. The Long Beach Police Department submitted a proposal in response to the RFP acknowledging that this contract would enable the Department to increase law enforcement visibility and deter crime, specifically related to surface transportation. The multi-agency contract will take effect July 1, 2017. For more news, pictures, videos and announcements of what’s happening in Long Beach, follow us on Facebook , Twitter , Instagram and YouTube . " -2417,http://www.longbeach.gov/police/press-releases/murder-22-/,Media Bulletins,Agency-Published Resources,Murder(22),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 5/31/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: MURDER Contact: Media Relations Detail (562) 570-5273 On Saturday, May 30, 2015, at approximately 9:05 p.m., Long Beach Police were dispatched to Lincoln Park, 151 Pacific Avenue, regarding a fight call, which resulted in the death of a male adult. Arriving officers located an individual with an apparent stab wound. Long Beach Fire Department paramedics transported the victim to a local hospital where he succumbed to his injuries. At this time, the name of the victim is not being released. The Los Angeles County Coroner’s Office will positively identify the victim and notify next of kin. A motive is unknown; however, the preliminary investigation indicates a physical altercation occurred between two male adults and one was stabbed in the torso. Phillip Lester Vargas, 51 years old and a resident of Long Beach, was booked for murder. He is being held in Long Beach City Jail on $1,000,000.00 bail. The investigation remains ongoing. Anyone with information regarding this incident is urged to call Long Beach Homicide Detectives Malcolm Evans and Mark Bigel Guarino at (562) 570-7244. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2418,http://www.longbeach.gov/police/press-releases/store-clerk-struck-by-gunfire-during-robbery--public-s-help-sought-to-identify-suspect/,Media Bulletins,Agency-Published Resources,STORE CLERK STRUCK BY GUNFIRE DURING ROBBERY; PUBLIC'S HELP SOUGHT TO IDENTIFY SUSPECT,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 3/25/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: STORE CLERK STRUCK BY GUNFIRE DURING ROBBERY; PUBLIC'S HELP SOUGHT TO IDENTIFY SUSPECT Contact: Media Relations Detail (562) 570-5273 On Monday, March 24, 2014, around 7:50 p.m., Long Beach Police were dispatched to the area of 7th Street and Cerritos Avenue regarding an unknown trouble call, possibly involving an assault with a deadly weapon. Arriving officers determined a robbery to a business in the 1100 block of E. 7th Street occurred and the lone employee sustained a gunshot wound to the upper torso. Long Beach Fire Department paramedics transported the male adult victim, in critical condition, to a local hospital. Due to the extent of the victim’s injuries, Homicide detectives responded to the scene. Officers worked diligently throughout the night to collect evidence, review witness statements, and seek out any video surveillance that may have captured useful information. The preliminary investigation indicated a male suspect entered the mini-market, fired a weapon toward the clerk, striking him in the upper torso, and fled with an undetermined amount of cash. The suspect remains outstanding. Detectives continue to review video in an effort to develop a suspect description and the investigation remains ongoing. Anyone with information is urged to contact LBPD Homicide Detectives Scott Lasch and Donald Goodman at (562) 570-7244. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting www.lacrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2419,http://www.longbeach.gov/police/press-releases/officer-involved-shooting-4-/,Media Bulletins,Agency-Published Resources,OFFICER INVOLVED SHOOTING(4),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2420,http://www.longbeach.gov/police/press-releases/dui-enforcement-operation-planned-this-weekend/,Media Bulletins,Agency-Published Resources,DUI ENFORCEMENT OPERATION PLANNED THIS WEEKEND,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 12/24/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: DUI ENFORCEMENT OPERATION PLANNED THIS WEEKEND Contact: Media Relations Detail (562) 570-5273 Long Beach Police Department’s DUI Enforcement Team will deploy this weekend to stop and arrest alcohol and drug-impaired drivers in the Department’s ongoing traffic safety campaign. DUI Saturation Patrols will deploy on Saturday, December 27, 2014, between the hours of 7:00 p.m. and 3:00 a.m. in areas with high frequencies of DUI collisions and/or arrests. After falling dramatically for five straight years, figures for 2012 show an increase to 802 deaths in California because someone failed to designate a sober driver. Over the course of the past three years in Long Beach, DUI collisions have claimed nine lives and resulted in 315 injury crashes, harming 420 of our friends and neighbors. Driving under the influence can impact the economy in addition to the pain and suffering of those immediately affected. Conservatively, a fatality has a $1.4 million impact, an injury $70,000, and a crash that only damages property averages nearly $9000. Funding for this program is from a grant from the California Office of Traffic Safety, through the National Highway Traffic Safety Administration. Report Drunk Drivers, Call 9-1-1 This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2421,http://www.longbeach.gov/police/press-releases/dui-checkpoint-planned-this-weekend-1-/,Media Bulletins,Agency-Published Resources,DUI CHECKPOINT PLANNED THIS WEEKEND(1),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2422,http://www.longbeach.gov/police/press-releases/duidrivers-license-checkpoint-planned-this-weekend6/,Media Bulletins,Agency-Published Resources,DUI/DRIVER'S LICENSE CHECKPOINT PLANNED THIS WEEKEND,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2423,http://www.longbeach.gov/police/press-releases/dui-enforcement-operation-planned-for-long-beach-pride/,Media Bulletins,Agency-Published Resources,DUI ENFORCEMENT OPERATION PLANNED FOR LONG BEACH PRIDE,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 5/15/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: DUI ENFORCEMENT OPERATION PLANNED FOR LONG BEACH PRIDE Contact: Media Relations Detail (562) 570-5273 Long Beach Police Department’s DUI Enforcement Team, along with officers from other local law enforcement agencies, will deploy on Sunday, May 18, 2014, to stop and arrest alcohol and drug-impaired drivers in the Department’s ongoing traffic safety campaign. DUI Saturation Patrols will deploy between 6:00 p.m. and 2:00 a.m. in areas with high frequencies of DUI collisions and/or arrests. “Come enjoy the exciting Pride Parade and Festival activities in Long Beach but please designate a sober driver ahead of time or call a taxi to ensure the safety of not only yourself, but other members of the community,” said Long Beach Police Department’s Traffic Section Lieutenant Kris Klein. “DUI injuries and deaths are completely preventable.” After falling dramatically for five straight years, figures for 2012 show an increase to 802 deaths in California because someone failed to designate a sober driver. Over the course of the past three years in Long Beach, DUI collisions have claimed nine lives and resulted in 315 injury crashes, harming 420 of our friends and neighbors. To prevent these tragedies from occurring, attendees are encouraged to practice the following safety tips: Before the festivities begin, plan a way to safely get home at the end of the night Designate a sober driver before drinking and leave your car keys at home Buzzed driving is impaired driving whether from alcohol, marijuana, prescription or illegal drugs. If impaired, please use a taxi or public transportation, or call a sober friend or family member to return home safely If you know someone who may be about to drive or ride while impaired, take their keys and help them make responsible choices to arrive at their destination safely If you see a drunk driver on the road, Report Them! Call 9-1-1! You could save a life. Funding for this program is from a grant from the California Office of Traffic Safety, through the National Highway Traffic Safety Administration. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2424,http://www.longbeach.gov/police/press-releases/dui-checkpoint-2-/,Media Bulletins,Agency-Published Resources,DUI CHECKPOINT(2),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2425,http://www.longbeach.gov/press-releases/outside-review-of-police-department-direct-messaging-application-complete/,Media Bulletins,Agency-Published Resources,Outside Review of Police Department Direct Messaging Application Complete,"",200,City of Long Beach,"[""PRESS RELEASE""]",[],[],[],[],[],"" -2426,http://www.longbeach.gov/police/press-releases/two-suspects-arrested-for-string-of-commercial-burglaries/,Media Bulletins,Agency-Published Resources,TWO SUSPECTS ARRESTED FOR STRING OF COMMERCIAL BURGLARIES,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2428,http://www.longbeach.gov/police/press-releases/search-warrant-operation/,Media Bulletins,Agency-Published Resources,Search Warrant Operation,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 8/23/2018 FOR IMMEDIATE RELEASE Press Release # Subject: SEARCH WARRANT OPERATION Contact: Media Relations Detail (562) 570-5273 CLICK ON PHOTO TO VIEW LARGER IMAGE On August 22, 2018, the West Division Directed Enforcement Team, with the assistance of the Gangs and Violent Crime Division and the SWAT Team, conducted a search warrant operation, which resulted in the arrest of six individuals, and the confiscation of weapons, drugs and currency. The search warrants were served at six different locations in Long Beach, as follow-up to investigations into gang-related incidents of violent crime, that took place earlier this summer in the West Division area. Collectively, the operation resulted in five felony and one misdemeanor arrests, and the seizure of seven firearms, a quantity of methamphetamine, and $6,000 in cash. Listed below are the locations of the residences where search warrants were served, and those taken into custody: 1900 block of Harbor Avenue 1400 block of Chestnut Avenue 2200 block of Baltic Avenue 1400 block of Parade Street 1000 block of Market Street 2000 Martin Luther King Jr. Avenue Name: Age: Residency: Booking Charge(s): Set Bail: Rogelio Ayala 40 Long Beach Possesion of illegal weapon (non-firearm) $80,000 Edwin Lopez 26 Long Beach Destruction of ID marks on firearms $20,000 Raymond Moreno 34 Long Beach Ex-felon in possesion of firearm; illegal possesion of ammunition $35,000 Jonathan De La Torre 19 Long Beach Assault with a deadly weapon; shooting at occupied dwelling $250,000 Brandon Castillo 19 Long Beach Outstanding warrants (narcotics and domestic battery) $85,000 (minor) 17 Long Beach Possesion of controlled substance while armed n/a These types of operations will continue, to address violent crime taking place in our community, in efforts to keep our neighborhoods safe. The LBPD would like to encourage residents to continue to report crime by calling the non-emergency number at (562) 435-6711 or 9-1-1. Anonymous tips may be submitted through “LA Crime Stoppers” by calling 1-800-222-TIPS (8477), downloading the “P3 Tips” app to your smart phone (available at the Apple App store and Google Play), or visiting www.lacrimestoppers.org . If you see something … say something! This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2429,http://www.longbeach.gov/press-releases/long-beach-city-council-restores-paramedic-rescue-12--reinstates-police-academy-operations-with-measure-a-funding/,Media Bulletins,Agency-Published Resources,"Long Beach City Council Restores Paramedic Rescue 12, Reinstates Police Academy Operations with Measure A Funding","",200,City of Long Beach,"[""PRESS RELEASE""]",[],[],[],[],[],"A- A A+ PRESS RELEASE City of Long Beach Public Information Office 411 W. Ocean Blvd, Long Beach, CA 90802 2/15/2017 FOR IMMEDIATE RELEASE Press Release # CM: 021517 Subject: Long Beach City Council Restores Paramedic Rescue 12, Reinstates Police Academy Operations with Measure A Funding Contact: Kerry Gerot Public Affairs Officer 562.570.6811 Kerry.Gerot@longbeach.gov The Long Beach City Council voted unanimously Tuesday night to restore Paramedic Rescue 12 and to reinstate the Police Academy, using Public Safety funding from Measure A. The restorations will be effective March 1, and will cost $1.5 million for the remainder of the Fiscal Year, and $2.5 million annually starting in Fiscal Year 2018 ($1.1 million for Paramedic Rescue 12; $1.4 million for Police Academy staffing). “I’m proud that Measure A revenue is being spent exactly on what we told voters we would spend the funds on, public safety and infrastructure,"" said Mayor Robert Garcia. ""Measure A is working to keep our City safe."" The restorations approved Tuesday will add six firefighter and nine police officer positions, for a total of 37 public safety positions restored through Measure A since Long Beach voters approved the temporary sales tax in June 2016 to support public safety and infrastructure. “With these restorations, we will have lower paramedic response times across the entire city, and a paramedic stationed at Fire Station 12 to serve North Long Beach, fully capable of advanced life support,” said Vice Mayor Rex Richardson, who introduced the item for City Council approval. Councilmembers Lena Gonzalez, Stacy Mungo and Roberto Uranga co-sponsored the item, which was approved by the entire City Council. Previous public safety restorations funded by Measure A include the restoration of Fire Engine 8 and the re-establishment of Police South Division, both of which had been identified as citywide public safety funding priorities by the Fire and Police Departments. These restorations will cost $3.8 million annually ($2.3 million for Fire Engine 8; $1.5 million for the Police South Division). The Measure A Year One Investment Plan also includes $3.2 million to maintain Police and Fire services in Fiscal Year 2017. For more news, pictures, videos and announcements of what’s happening in Long Beach, follow us on Facebook , Twitter , Instagram and YouTube . " -2430,http://www.longbeach.gov/police/press-releases/st-patricks-day-saturation-patrol/,Media Bulletins,Agency-Published Resources,"THIS ST. PATRICK’S DAY, PLAN BEFORE YOU PARTY!","",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2432,https://www.southamptontownnypolice.gov/1767/liberty-gardens,List of Data Sources,Info About Agencies,"Liberty Gardens | Southampton, NY - Official Website","",200,"Police | Southampton, NY - Official Website","[""Liberty Gardens""]",[],"[""Site Tools"", ""90 day extension"", ""Liberty Gardens (Revised FEIS)"", ""Contact Us"", ""Site Links"", ""Loading""]","[""FEIS Liberty Gardens"", ""Plan"", ""Appendices"", ""DEIS Liberty Gardens"", ""Plan"", ""Appendices""]",[],[],"Skip to Main Content EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Government Town Services Community Info How Do I Translate Page Site Tools Home My Account Printer Friendly Email Page Contact Us RSS Site Map Translate Page Notifications Documents Search Home Government Departments Land Management - Planning (Long Range) Change of Zone Applications/PDD Liberty Gardens – Concern Southampton/Full Gospel Liberty Gardens Liberty Gardens 90 day extension 2024-01-24_Liberty Gardens_90 Day Extension for SEQRA Findings Liberty Gardens (Revised FEIS) Liberty Gardens Revised FEIS - December 2023 FEIS Liberty Gardens 2023_11 FEIS Main Text_Liberty Gardens Plan Attachment 1_ REZONE PLAN REV 11-17-2023 Appendices APPENDIX A - Town Board Resolution_DEIS Hearing Appendix B-1 2022-09-13 First Hearing Transcript APPENDIX B-2 2022-10-25 Hearing Transcript APPENDIX C-1 - Written Comments - Recieved 11-17 APPENDIX C-2 - Town Comments APPENDIX C-3 - N+ P Traffic Engineer Town Comments Response memo APPENDIX D - Traffic Report_Southampton Concern_Revised Oct 2022 APPENDIX E - Hampton Rehabilitation and Nursing Center Engineering Report APPENDIX F PILOT Previous and Proposed APPENDIX G Projected Taxes 50 unit plan APPENDIX H School Setback Ltr 9.16.23 APPENDIX I Sewer Connection Letter DEIS Liberty Gardens DEIS Main Text-Liberty Gardens_June 2022 Figures Plan 18136 RZPP-REZONE PLOT PLAN 3-1-2022 Alt 1_revised 2-17-2022 Alt 2_revised 2-17-2022 Alt 3_revised 2-17-2022 Alt 4_revised 2-17-2022 Alt 5_revised 2-17-2022 Appendices A-1 SCDPW Comments on Scope_11-5-2021 A-10 Photographs of Site-300dpi A-11 Architects Renderings A-12 Photographs of Vicinity-300dpi A-13 Hampton Center Letter of Intent 4.27.22 A-2 Road Access Agreement_12.13.21 A-3 EAF 1 revised 5-14-2020 A-4 EAF Parts 2 and 3_4-6-2021 A-5 Pos Dec Resoluton_7-13-2021 A-6 Final Scope_Town_10-20-2021 A-7 Veteran Preference Letter_10-15-2021 A-8 Community Support Letters A-9 Supporting Housing Needs Studies 1 B Fiscal Impact Summary_2022-3-23 C Unit Details and Floor Plans D-1 SCWA Water Quality Test Results, DA 23_2021 Year D-2 SONIR User Manual 2021-2-16 D-3 SONIR_2022-18-05 Alt 1 D-4 SONIR_2022-17-05 Proposed D-5 SONIR_2022-17-05 Alt 2 D-6 SONIR_2022-17-05 Alt 3 D-7 SONIR_2022-17-05 Alt 4 D-8 SONIR_2022-17-05 Alt 5 D-9 SONIR_2022-17-05 Alt 6 F TIS_March 2022 G-1 Quals G-2 Breeding Bird Atlas G-3 Reptiles and Amphibians H-1 2018 SHPO Review Documents H-2 Tracker Phase 1A and B Report_Feb -022 I Noise Report CONCERN Final 2022-03-17 Liberty Gardens Town Clerk Meetings, Agendas & Minutes Pay Your Taxes Online Services Applications, Forms & Fees Notify Me® FOIL Requests Contact Us Town of Southampton 116 Hampton Road Southampton, NY 11968 Phone: 631-283-6000 Banner photo credit: robertseifertphotography.com Site Links Contact Us Site Map Accessibility Copyright Notices Intranet Job Opportunities Title VI Non-discrimination Policy /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate " -2433,http://www.longbeach.gov/police/press-releases/academy-graduation---class-90/,Media Bulletins,Agency-Published Resources,L.B.P.D. RECRUIT ACADEMY GRADUATION CEREMONY,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 3/23/2017 FOR IMMEDIATE RELEASE Press Release # 2017 Subject: L.B.P.D. RECRUIT ACADEMY GRADUATION CEREMONY Contact: Media Relations Detail (562) 570-5273 RECRUIT CLASS #90 The Long Beach Police Department is pleased to announce the graduation of Recruit Academy Class #90. The graduation ceremony was held today, March 23, 2017, at the Long Beach Performing Arts Terrace Theater. Thirty-eight Long Beach Police Department recruits and two Redondo Beach Police Department recruits successfully completed 25½ weeks of intense academic, physical and practical training in areas such as: Patrol Procedures and Law Enforcement Tactics, Firearms Training, Weaponless Defense, Criminal Law, Vehicle Operations, Community Oriented Public Safety, Persons with Mental Health Disabilities, Cultural Diversity/Human Relations, and Procedural Justice. Class #90 is group who brings to the department a wide range of talents from a variety of backgrounds. The graduating class included the following officers: Officer Steven Baranowski Officer Xavier Brookes Officer Braulio Carbajal Officer Juan De Dios Carreon Officer Maritza Castillo Officer Trevor Costin Officer Yesenia Contreras * Officer Jeffrey Craver Officer Alvin Do Officer Harrison Ernenwein Officer Anton Fischer Officer Eric Gorski Officer Adrian Guzman Officer Daniel Haley * Officer Aaron Henry Officer Stephen Hunt Officer Jessica Jenkin Officer Donovan Joubert Officer Melissa Kiser Officer Hector Lizardo Officer Mary Marschke Officer Adrian Martinez Officer Cesar Najera Officer Aidan Nolasco Officer Daniel Parkhurst Officer Tesha Perales Officer Omar Ponce Officer Grant Potter Officer Brian Prebanda Officer Pedro Ramirez Officer Feliciano Reyes Officer McAdam Richardson Officer Eric Robbins Officer David Salcedo Officer Justin San Juan Officer Roger Santos Officer Brian Seielstad Officer Gordon Stojanovski Officer Manny Tejeda Officer Genaro Vega The graduates will now enter the field training phase where they will develop expertise and knowledge in patrol operations, and apply the skills they learned during their academy experience under the guidance of senior officers. The Long Beach Police Department congratulates the graduates and wishes them continued success in their future careers as law enforcement officers. *Redondo Beach Police Officer This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2435,http://www.longbeach.gov/press-releases/richard-rocchi-appointed-deputy-police-chief/,Media Bulletins,Agency-Published Resources,Richard Rocchi Appointed Deputy Police Chief,"",200,City of Long Beach,"[""PRESS RELEASE""]",[],[],[],[],[],"A- A A+ PRESS RELEASE City of Long Beach Public Information Office 411 W. Ocean Blvd, Long Beach, CA 90802 12/12/2014 FOR IMMEDIATE RELEASE Press Release # CM: 121214 Subject: Richard Rocchi Appointed Deputy Police Chief Contact: Robert Luna, Long Beach Police Chief 562.570.7301 Robert.Luna@longbeach.gov Long Beach City Manager Pat West and Police Chief Robert Luna today -announced the appointment of Commander Richard Rocchi, a 27-year -veteran of the Police Department, as Deputy Chief, effective -December 13, 2014. ""Richard Rocchi displays the highest levels of integrity, service -and community engagement,"" Chief Luna said. “His consistent -dedication and professionalism has earned him the trust and respect -of those within the Police Department and throughout the -community."" Commander Rocchi's most recent assignment has been Commander of the -West Division, the busiest patrol operation in the City. He began -his career as a police officer with the Long Beach Police -Department in 1987. He has worked many diverse assignments, -including Patrol, Field Training Officer, Special Enforcement -Section, SWAT, Gang Enforcement, Community Policing, Internal -Affairs, Crimes Against Persons Section, and Academy Director. In -addition, he has worked as an Academy and Department instructor and -has served on a variety of committees and working groups. “I am honored to be named Deputy Chief, and I will continue -to dedicate myself to providing the best service possible to our -committed employees and the entire community,” Commander -Rocchi said. Commander Rocchi grew up in Long Beach and is a graduate of -Polytechnic High School. He holds an Associate of Arts Degree in -Administration of Justice from Long Beach City College, a Bachelors -of Science in Occupational Studies and a Masters of Public -Administration from California State University, Long Beach. He is -also a graduate of Sherman Block Supervisory Leadership Institute -and the 221st session of the FBI National Academy. Commander Rocchi is a member and past president of the Long Beach -Police Command Officers Association and the FBI National Academy -Associates, and he serves as a Council Member of Special Olympics -of Southern California. For more news, pictures, videos and announcements of what’s happening in Long Beach, follow us on Facebook , Twitter , Instagram and YouTube . " -2436,http://www.longbeach.gov/police/press-releases/fatality-2-/,Media Bulletins,Agency-Published Resources,FATALITY(2),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 10/23/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: FATALITY Contact: Media Relations (562) 570-5273 On Wednesday, October 22, 2014 at approximately 1:33 P.M. officers from the Long Beach Police Department responded to Cherry Avenue and 33rd Street regarding an injury traffic collision. Upon arrival officers discovered a four vehicle collision with two adult individuals trapped inside one of the vehicles. Long Beach Fire Department personnel responded and extricated the trapped individuals and transported them to a local hospital. The preliminary investigation revealed that a 2002 Honda, driven by a 30-year-old Long Beach Resident, and a 1990 Nissan, driven by a 20-year-old Long Beach Resident, were traveling south on Cherry Avenue from Wardlow Street. The Honda collided with a 2009 Toyota, driven by a 78-year-old resident of Seal Beach, that was making a left turn from northbound Cherry Avenue to westbound 33rd Street. After the collision between the Honda and the Toyota, the Nissan collided with the Honda. The Toyota then collided with a parked unoccupied off road all-terrain (ATV) type vehicle in the parking lot on the southwest corner of Cherry Avenue and 33rd Street. The front right passenger of the Toyota, Kwang Ja Sohn, a 70-year-old resident of Seal Beach, sustained major trauma from the collision and was pronounced deceased at the hospital. The driver of the Toyota sustained minor injuries. All drivers were released and the investigation remains ongoing. Anyone who may have information on this incident is asked to contact Long Beach Police Department Collision Investigation Detail Detective Sirilo Garcia at (562) 570-7355. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2437,http://www.longbeach.gov/police/press-releases/lbpd-promotes-new-leaders/,Media Bulletins,Agency-Published Resources,LBPD PROMOTES NEW LEADERS,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 9/12/2017 FOR IMMEDIATE RELEASE Press Release # 2017 Subject: LBPD PROMOTES NEW LEADERS Contact: Media Relations Detail (562) 570-5273 LBPD PROMOTEES The Long Beach Police Department is proud to announce the promotion of eight employees that took place at a ceremony held today in City Hall Council Chambers. The employees and their ranks are as follows: Promoting to Deputy Chief: Commander Wally Hebeish Promoting to Commander: Lieutenant Erik Herzog Lieutenant Lloyd Cox Promoting to Lieutenant: Sergeant Timothy Olson Promoting to Sergeant: Officer Joshua Brearley Officer Jeremy Boshnack Officer Robert Ryan Promoting to Special Services Officer IV: SSO III Aaron Gilliam-Reed The men and women of the Long Beach Police Department congratulates the newly promoted employees and wishes them continued success in their new assignments. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 9/12/2017 FOR IMMEDIATE RELEASE Press Release # 2017 Subject: LBPD PROMOTES NEW LEADERS Contact: Media Relations Detail (562) 570-5273 LBPD PROMOTEES The Long Beach Police Department is proud to announce the promotion of eight employees that took place at a ceremony held today in City Hall Council Chambers. The employees and their ranks are as follows: Promoting to Deputy Chief: Commander Wally Hebeish Promoting to Commander: Lieutenant Erik Herzog Lieutenant Lloyd Cox Promoting to Lieutenant: Sergeant Timothy Olson Promoting to Sergeant: Officer Joshua Brearley Officer Jeremy Boshnack Officer Robert Ryan Promoting to Special Services Officer IV: SSO III Aaron Gilliam-Reed The men and women of the Long Beach Police Department congratulates the newly promoted employees and wishes them continued success in their new assignments. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . A- A A+ A- A A+ A- A A+ A- A A+ A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 9/12/2017 FOR IMMEDIATE RELEASE Press Release # 2017 Subject: LBPD PROMOTES NEW LEADERS Contact: Media Relations Detail (562) 570-5273 9/12/2017 FOR IMMEDIATE RELEASE Press Release # 2017 " -2439,http://www.longbeach.gov/police/press-releases/police-seek-public-s-help-to-identify-vehicle-theft-suspects/,Media Bulletins,Agency-Published Resources,POLICE SEEK PUBLIC'S HELP TO IDENTIFY VEHICLE THEFT SUSPECTS,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 3/6/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: POLICE SEEK PUBLIC'S HELP TO IDENTIFY VEHICLE THEFT SUSPECTS Contact: Media Relations Detail (562) 570-5273 Photo of Stolen Trailer & Suspect Vehicle Photo of One of the Suspects The Long Beach Police Department is asking for the public’s help in locating a stolen trailer and identifying two suspects. On February 2, 2015, at approximately 5:00 a.m., a trailer was stolen from the property of a local church in the 4700 block of Clark Avenue. The stolen trailer, described as a white/silver 2008 Elite trailer with CA license plate 4LF9838, remains outstanding. Detectives viewed surveillance video and learned that two male suspects who appear to be either White or Hispanic, drove a vehicle onto the property, attached the trailer, and fled the scene. The suspects’ vehicle appears to be a full-sized Chevrolet Suburban with running boards and chrome rims. Anyone with information regarding this incident or who recognizes the suspect/vehicle is urged to contact Detective Thomas Brown at (562) 570-5544. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2441,http://www.longbeach.gov/police/press-releases/police-seek-help/,Media Bulletins,Agency-Published Resources,POLICE SEEK HELP,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 2/4/2016 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: POLICE SEEK PUBLIC’S HELP TO LOCATE ATTEMPT MURDER SUSPECT Contact: Media Relations Detail (562) 570-5273 Suspect Mario Aguilar, Jr. UPDATE (6/1/2016) : Suspect Mario Aguilar Jr. was extradited from Texas by the U.S. Marshals Fugitive Task Force (in which LBPD participates) on May 14, 2016. Aguilar was arraigned on May 17, 2016, and is currently being held in Los Angeles County Jail. He is scheduled to appear in Long Beach Superior Court on June 2, 2016, regarding this attempt murder case. Original News Release (2/4/2016) : Long Beach Police are asking for the public’s help with locating Mario Aguilar Jr., a 31-year-old resident of La Puente, in connection with an attempt murder case. On October 18, 2015, around 6:00 p.m., officers were dispatched to a residence in the area of Santa Fe Avenue and Pacific Coast Highway regarding an assault with a weapon. Arriving officers located a female adult with multiple stab wounds. Long Beach Fire Department paramedics transported the victim, in critical condition, to a local hospital. Domestic Violence detectives also responded to begin their investigation and Aguilar, the father of the victim’s children, was identified as the suspect. On November 4, 2015, the Los Angeles County District Attorney’s Office filed charges of attempt murder and child abuse against Aguilar and a $2,395,000.00 arrest warrant was issued. Mario Aguilar, Jr., violated his conditions of parole and remains outstanding. He should be considered armed and dangerous. He is described as a male Hispanic, 5’8”, 240 lbs., bald, with brown eyes. Anyone with information regarding the whereabouts of Suspect Aguilar is urged to contact Domestic Violence Detective R. Hawkins at (562) 570-7277. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2442,http://www.longbeach.gov/police/press-releases/traffic-fatality-6-/,Media Bulletins,Agency-Published Resources,TRAFFIC FATALITY(6),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 3/10/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: TRAFFIC FATALITY Contact: Media Relations Detail (5620 570-5273 On March 6, 2014, Long Beach Police received notification from the Los Angeles County Coroner’s Office that a pedestrian, identified as Harold Simmons, died as a result of injuries he sustained in a February traffic collision. On February 24, 2014, around 9:20 a.m., officers responded to the 1100 block of New York Street regarding an injury traffic collision involving a vehicle and a pedestrian. Arriving officers discovered a male adult pedestrian lying beneath the tire of a large International Work truck. The driver remained at the scene. The preliminary investigation revealed that after the collision, the male 31-year-old driver, a resident of Winchester, CA, immediately stopped and called emergency personnel for assistance. It appears the pedestrian was attempting to cross New York Street mid-block, outside of a crosswalk, when he was struck. Long Beach Fire Department paramedics transported the pedestrian to a local hospital in stable condition. The driver was interviewed at the scene and found to have a valid drivers license and insurance. The investigation is ongoing. On March 6, 2014, Long Beach Police received notification that 79-year-old Harold Simmons of Long Beach died on February 24, 2014. Anyone with information regarding this incident is asked to call Collision Investigation Detail Detectives David Lauro and Sirilo Garcia at (562) 570-7355. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2444,http://www.longbeach.gov/police/press-releases/suspect-arrested-and-charged-for-1996-murder/,Media Bulletins,Agency-Published Resources,SUSPECT ARRESTED AND CHARGED FOR 1996 MURDER,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 7/8/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: *** REVISED *** SUSPECT CHARGED FOR 1996 MURDER Contact: Media Relations Detail (562) 570-5273 On May 4, 1996, around 10:30 p.m., Long Beach Police were dispatched to a shooting in the 500 block of East 14th Street that resulted in the death of 26-year-old Jorge Martinez of Long Beach, and a suspect has now been identified and charged. The investigation revealed that Mr. Martinez was standing on the sidewalk alone when he was approached by several Samoan gang members. It was recently learned that at the time, 21-year-old Wayne Taufi, aka Big Fassi, shot Martinez, passed the gun to another gang member, and fled in a vehicle. Mr. Martinez was pronounced deceased at the scene. When the new information identifying Taufi as the suspect came to light, detectives re-opened the case. Detectives are also attempting to gather additional Information on four other male subjects who were present at the time of the murder. Those individuals are identified by their street monikers; “Wizard,” “Lil Boy,” “Fuzzy,” and “Whisper.” Wayne Taufi, currently 40-years-old and from Long Beach, was already in custody on unrelated charges. Long Beach Police Homicide detectives presented their case to the Los Angeles County District Attorney’s Office for filing consideration. On July 7, 2015, the District Attorney’s Office filed murder charges against Taufi for the murder of Jorge Martinez. Taufi is currently being held at the Los Angeles County Jail. The investigation remains ongoing. Anyone with information regarding the incident or the individuals identified by their monikers is urged to contact the Long Beach Police Homicide Detectives Todd Johnson and Shea Robertson at (562) 570-7244. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2447,http://www.longbeach.gov/police/press-releases/arrest-made-and-charges-filed-in-july-4th-murder/,Media Bulletins,Agency-Published Resources,ARREST MADE AND CHARGES FILED IN JULY 4TH MURDER,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 7/14/2015 FOR IMMEDIATE RELEASE Press Release # Subject: ARREST MADE AND CHARGES FILED IN JULY 4TH MURDER Contact: Media Relations (562) 570-5273 ViewOriginal News Release On Friday, July 10th, 2015, detectives from the Long Beach Police Department arrested an individual in connection with the July 4th murder of 38-year-old Allen Estes of Long Beach, and charges have been filed. On Saturday, July 4th, 2015, at approximately 5:27 a.m., officers responded to Anaheim Street and Dawson Avenue in regards to an unresponsive subject who sustained injuries from being stabbed, and was subsequently pronounced deceased at the scene. With the assistance of a tip from the public, detectives were able to identify 24-year-old Norman Matthew Perdon of Long Beach as a potential suspect. Detectives investigated this lead and arrested Perdon last Friday in the 1400 block of Walnut Avenue. Perdon and the victim were former roommates and it is believed the motive for the murder is related to an ongoing dispute. This morning, detectives presented the case to the Los Angeles County District Attorney’s Office who filed murder and weapons charges against Perdon. He is currently being held at the Long Beach Jail on $1,020,000 bail. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2449,http://www.longbeach.gov/police/press-releases/officer-involved-shooting--no-injuries-sustained/,Media Bulletins,Agency-Published Resources,OFFICER INVOLVED SHOOTING; NO INJURIES SUSTAINED,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 2/20/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: OFFICER INVOLVED SHOOTING; NO INJURIES SUSTAINED Contact: Media Relations Detail (562) 570-5273 On Thursday, February 19, 2015, at approximately 3:57 p.m., Long Beach Police were dispatched to the 400 block of W. Cowles Street regarding a possible armed robbery to a person that just occurred, where the calling party provided a location and description of the three possible suspects. Officers arrived on scene and saw three possible suspects matching the description given by the calling party. Upon officers making contact with the suspects, one of the suspects brandished a handgun and an officer involved shooting occurred. The suspects ran from officers and two of them were taken into custody a short distance away. Additional responding officers established a perimeter around the incident. The police department obtained information that the third suspect was hiding in a trash can within the perimeter. To ensure the safety of residents, officers conducted evacuations of homes in the immediate area. The suspect was then ordered out of the trash can and taken into custody without incident. A handgun was recovered at the scene of the officer involved shooting. Two of the suspects are 19-years-old and from Long Beach, while the third suspect is 20-years-old and from Compton. Their identities are being withheld at this time due to the ongoing investigation. No officers or suspects were injured during the incident. Anyone with information regarding this incident is urged to contact Long Beach Police Homicide Detectives Mark Bigel and Malcolm Evans at (562)570-7244. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting www.lacrimestoppers.org This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2450,http://www.longbeach.gov/police/press-releases/long-beach-police-inspect-37-businesses-for-alcohol-sales-compliance/,Media Bulletins,Agency-Published Resources,LONG BEACH POLICE INSPECT 37 BUSINESSES FOR ALCOHOL SALES COMPLIANCE,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 5/5/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: LONG BEACH POLICE INSPECT 37 BUSINESSES FOR ALCOHOL SALES COMPLIANCE Contact: Media Relations Detail (562) 570-5273 The Long Beach Police Department's Vice Investigations Section, in cooperation with investigators from the Department of Alcoholic Beverage Control (ABC), conducted an “ABC IMPACT Inspection” operation on Second Street in the Belmont Shore area of Long Beach, on May 4, 2015. “ABC IMPACT Inspection” operations target ABC licensed establishments that sell alcohol, such as restaurants, bars, liquor stores, convenience stores, and grocery stores. The purpose of the inspection is to assess a business’ compliance with current ABC laws and educate employees regarding any non-compliance issues. During the course of the operation, 37 establishments were visited and inspected. Business owners and employees were advised regarding any ABC laws violated. Though several warnings were given for violations such as missing signage, no citations were issued. The Long Beach Police Department was pleased to see so many establishments in compliance with ABC laws and will continue to enforce ABC laws at all establishments throughout the city. Anyone wishing to report illegal behavior related to the unlawful sale of alcohol or ABC law violations, should contact the Vice Investigations Section at (562) 570-7219. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2451,https://coloradosprings.gov/police-department/page/report-traffic-complaint,Calls for Service,Police & Public Interactions,Report a Traffic Complaint | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""Report a Traffic Complaint""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[],"" -2452,http://www.longbeach.gov/press-releases/robert-g-luna-to-be-sworn-in-as-chief-of-police-for-city-of-long-beach-on-saturday-november-22/,Media Bulletins,Agency-Published Resources,Robert G Luna to be Sworn In as Chief of Police for City of Long Beach on Saturday November 22,"",200,City of Long Beach,"[""PRESS RELEASE""]",[],[],[],[],[],"" -2453,http://www.longbeach.gov/police/press-releases/murder---6300-block-of-knight-avenue/,Media Bulletins,Agency-Published Resources,MURDER - 6300 BLOCK OF KNIGHT AVENUE,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 1/11/2017 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: MURDER - 6300 BLOCK OF KNIGHT AVENUE Contact: Media Relations Detail (562) 570-5273 On January 10, 2017, at approximately 7:25 pm, officers responded to the 6300 block of Knight Ave regarding two adult victims who had been shot. Upon arrival officers found a female victim with a gunshot wound to the upper torso. She was determined to be deceased at the scene by LB Fire. An additional victim, male Adult, was transported to a local hospital in critical condition with a gunshot wound to the upper torso. The suspect believed to be responsible for the shooting was detained by witnesses until police officers arrived and was taken into custody. The deceased victim has been identified as Susan Garcia a 33 year-old resident of Long Beach. The relationship between the victims and the suspect is still to be determined. The shooting is not gang related. The Suspect has been identified as 35 year-old John McVoy a resident of Corona. He was booked for murder and attempt murder at the Long Beach Jail, and is being held on $2,000,000.00 bail. Anyone with information is urged to contact Homicide Detectives Oscar Valenzuela and Shea Robertson at (562) 570-7244. Anonymous tips may be submitted through ""LA Crime Stoppers"" by calling 1-800-222-TIPS (8477), downloading the ""P3 Tips"" app to your smart phone (available at the Apple App store and Google Play), or visiting http://www.lacrimestoppers.org/ This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2455,http://www.longbeach.gov/police/press-releases/the-north-patrol-division-directed-enforcement-team-cracks-down-on-criminal-street-gang/,Media Bulletins,Agency-Published Resources,THE NORTH PATROL DIVISION DIRECTED ENFORCEMENT TEAM CRACKS DOWN ON CRIMINAL STREET GANG,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2456,http://www.longbeach.gov/police/press-releases/police-asking-for-public-s-help-in-identifying-person-of-interest-in-sexual-battery/,Media Bulletins,Agency-Published Resources,POLICE ASKING FOR PUBLIC'S HELP IN IDENTIFYING PERSON OF INTEREST IN SEXUAL BATTERY,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 5/16/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: POLICE ASKING FOR PUBLIC'S HELP IN IDENTIFYING PERSON OF INTEREST IN SEXUAL BATTERY Contact: Media Relations (562) 570-5273 (Click on photo to enlarge) The Long Beach Police Department is seeking the public’s assistance with identifying a person of interest who is wanted for questioning in connection with a sexual battery that occurred last week at a local Signal Hill bus stop passenger shelter. On Wednesday, May 7, 2014, at approximately 4:30 P.M., Long Beach Police responded to a call of an assault and battery that occurred to a female in the 900 block of E. Willow Street. During the course of this investigation it was learned the victim, a 26 year-old Long Beach resident, was approached by a male subject who engaged her in brief conversation inside a bus stop passenger shelter. Suddenly, without provocation, the subject attacked the victim. The subject groped the victim’s breast and buttocks. No weapons were observed during this incident. The subject is described as follows: a male African American with a medium skin complexion, 25 - 27 years-old, 5’05"" - 5’08” tall, 130 - 140 lbs, black “fuzzy” hair, brown eyes, wearing a white T-shirt, blue basketball shorts, and black socks. The Long Beach Police Department would like to remind the public to be aware of their surroundings at all times and to report any suspicious persons or activity immediately by calling 9-1-1. Detectives are hoping that someone will recognize the individual depicted in the sketch and come forward. Anyone who recognizes the person in the sketch or has information relating to this investigation is urged to contact Long Beach Police Sex Crimes Detective Patrick Jennings at (562) 570-7354. Anonymous tips may be submitted by calling 1 (800) 222-TIPS, texting TIPLA plus your tip to CRIMES (274637), or visiting www.lacrimestoppers.org. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2457,http://www.longbeach.gov/police/press-releases/students-return-to-school--motorists-urged-to-drive-carefully/,Media Bulletins,Agency-Published Resources,STUDENTS RETURN TO SCHOOL; MOTORISTS URGED TO DRIVE CAREFULLY,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 8/29/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: STUDENTS RETURN TO SCHOOL; MOTORISTS URGED TO DRIVE CAREFULLY Contact: Media Relations Detail (562) 570-5273 The Long Beach Police Department would like to remind everyone that with school beginning on Wednesday, September 3, 2014, and with the volume of pedestrian traffic around schools increasing dramatically, all commuters are encouraged to practice the following safety tips in an effort to prevent avoidable accidents: All drivers are reminded to: - Yield the right of way to pedestrians in marked or unmarked crosswalks - Not overtake and pass a vehicle stopped ahead of you when it has stopped for a pedestrian - Yield the right of way to pedestrians on sidewalks - Obey posted speed limits - Never drive while distracted (examples: using a cell phone, reading, applying make-up, etc.) - Stop and remain stopped for school buses with ""flashing red lights;"" opposing traffic must also stop unless a painted or raised divider separates the roadway - Watch and obey Crossing Guards … they are there to protect children! Pedestrians are reminded to: - Yield to vehicles on the roadway if you are outside the crosswalk - Not cross between intersections controlled by traffic signals (to do so would constitute jaywalking) Parents are reminded to: - Obey all parking signs and curb markings – they are designed to protect children and provide optimum traffic flow - Do not double park; it interrupts the flow of traffic and makes it difficult to for pedestrians to see oncoming traffic - Follow school drop-off procedures - Always drop your child off on the curbside of the school - Teach your child to always cross the street at a crosswalk The Long Beach Police Department's Traffic Section is committed to motorist and pedestrian safety and traffic laws will be strictly enforced at and around our schools! For further information, please contact the Long Beach Police Department’s Traffic Section at (562) 570-7209. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2458,http://www.longbeach.gov/police/press-releases/drug-lab-discovered-at-residence--two-suspects-in-custody/,Media Bulletins,Agency-Published Resources,DRUG LAB DISCOVERED AT RESIDENCE; TWO SUSPECTS IN CUSTODY,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 11/7/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: DRUG LAB DISCOVERED AT RESIDENCE, TWO SUSPECTS IN CUSTODY Contact: Media Relations (562) 570-5273 (Click on photo to enlarge) Today, November 7, 2014, at approximately 1:00 A.M. the Long Beach Police and Fire Departments responded to a residence in the 4300 block of Maury Avenue in regards to a complaint of a strong chemical odor. The initial investigation at the scene led officers and firefighters to believe the smell was related to a possible clandestine laboratory. Officers quickly contained the scene and evacuated residents in the immediate area to ensure their safety during the investigation. The Long Beach Police Department Drug Investigations Section responded along with the Los Angeles Interagency Metropolitan Police Apprehension Crime Task Force (LA IMPACT) Clandestine Laboratory Response Team. Long Beach Detectives wrote a search warrant for the property and upon entering the residence they discovered an active Phencyclidine (PCP) Laboratory. Several large drum containers containing PCP were located on the property. The City of Long Beach Environmental Health Hazardous Materials Emergency Response Team responded for recovery of the chemical waste. Edwin Van, a 48-year-old resident of Long Beach, and Vernon Thomas, a 61-year-old resident of Long Beach, were located at the residence and arrested on charges of manufacturing a controlled substance. Both Van and Thomas were taken to a local hospital to be treated for minor chemical exposure prior to their booking. Van and Thomas are currently being held at the Long Beach City Jail, each with a bail amount of $75,000. This investigation is a collaborative effort by LA IMPACT and the Long Beach Drug Investigations Section. The case will be presented to the Los Angeles County District Attorney's Office. Clandestine laboratories are extremely dangerous and hazardous to your health. If you smell strong chemical odors or suspect there might be a clandestine laboratory in your area, call 9-1-1 immediately. Anyone with information in regards to this incident who has not spoken to authorities is urged to contact Long Beach Drug Investigations Section at (562) 570-7221. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting www.lacrimestoppers.org. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2459,http://www.longbeach.gov/police/press-releases/officer-involved-shooting-1700-block-of-marine-avenu-wilmington/,Media Bulletins,Agency-Published Resources,Officer Involved Shooting 1700 block of Marine Avenu Wilmington,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 10/7/2016 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: **UPDATED** OFFICER INVOLVED SHOOTING Contact: Media Relations Detail (562) 570-5273 SUSPECTS GUN UPDATE (10/10/2016): Suspect Bryan Gallegos, 25 years old and a resident of Carson, was booked for murder, assault with a deadly weapon upon a peace officer, felon in possession of a firearm, and carrying a concealed weapon in a vehicle. Gallegos remains hospitalized . Original News Release: On October 7, 2016, at approximately 11:20 a.m., Long Beach Police Detectives were in the 1700 block of Marine Ave in Wilmington conducting follow up investigation to a Murder. The purpose of the investigation was to arrest an armed and dangerous murder suspect. Detectives located the suspect in a vehicle and when they moved in to affect an arrest he attempted flee in the vehicle, resulting in a collision with a detective’s vehicle. Immediately thereafter an officer involved shooting occurred. Two Long Beach Detectives fired at the male adult suspect and he was hit by their gunfire. Detectives then immediately recovered a loaded firearm and an additional loaded magazine from the suspect and started rendering medical aid until LA City Fire Department personnel arrived. The suspect was subsequently transported to a local hospital and is listed in critical condition. No detectives were injured. Homicide detectives responded and conducted their investigation. The LA County District Attorney's office also responded and will conduct an independent investigation as they do in all officer involved shootings that result in injury. The name of the suspect is not being released at this time for investigative purposes. The murder the suspect was being arrested for was from September 5, 2016 in the 300 block of Hanjin Road in Long Beach. To view that news release click on below link: http://longbeach.gov/police/press-releases/murder---300-block-of-hanjin-road/ Anyone with information regarding the officer involved shooting or the murder from September 5, 2016 is urged to contact Homicide Detectives at (562) 570-7244. Anonymous tips may be submitted by downloading the ""P3 Tips"" app to your smart phone (available at the Apple App store and Google Play ), or visiting https://www.p3tips.com/TipForm.aspx?ID=365#googtrans(en|en) . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2461,http://www.longbeach.gov/police/press-releases/trafficfatality-2-/,Media Bulletins,Agency-Published Resources,TRAFFICFATALITY(2),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 2/13/2016 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: TRAFFIC FATALITY Contact: Media Relations Detail (562) 570-5273 On Saturday, February 13, 2016, at approximately 1:06 a.m., Long Beach Police were dispatched to the area of the Gerald Desmond Bridge and the 710 Freeway regarding a single vehicle traffic collision, which resulted in the death of a male adult. Arriving officers located a motorcyclist lying on eastbound Ocean Boulevard, below the transition road. Long Beach Fire Department personnel determined the driver, a 25-year-old resident of Torrance, deceased at the scene. The preliminary investigation revealed the driver of a 2015 Harley Davidson motorcycle was traveling eastbound on the Gerald Desmond Bridge transition road to the northbound 710 Freeway. As the roadway turned from eastbound to northbound, the motorcyclist, for an unknown reason, collided with the south k-rail and was ejected from his motorcycle onto Ocean Boulevard below. No other vehicles or parties were involved in this incident. The Los Angeles County Coroner will determine positive identification and notify next of kin. Anyone with information regarding this incident is asked to contact Detective Sirilo Garcia of the Collision Investigation Detail at (562) 570-7355. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2463,http://www.longbeach.gov/police/press-releases/search-and-rescue-orientation-meeting/,Media Bulletins,Agency-Published Resources,SEARCH AND RESCUE ORIENTATION MEETING,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 10/2/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: JOIN LONG BEACH SEARCH & RESCUE AND START YOUR FUTURE TODAY Contact: Media Relations Detail (562) 570-5273 The Long Beach Search & Rescue Unit has been in existence since 1962 and provides young adults with an opportunity to serve the public during emergency situations. Applications will be accepted at the annual orientation meeting on Tuesday, October 6, 2015, at 7:00 pm., at 2247 Argonne Avenue, Long Beach, 90815 . This orientation meeting is only held once a year . Motivated young adults, who are interested in public safety careers, and their parents are encouraged to attend this one-hour meeting. Requirements to apply: Be at least 15 and not yet 19 years of age by the start of the academy, Have no felony convictions, demonstrate high moral and citizenship standards, Maintain at least a “C” grade average in school, Be physically fit and be willing to devote a substantial amount of time to training, public events, and emergency call-outs. Training includes: Fire suppression Search patterns Vehicle extrication Firearm safety High-angle rescue Ladder operations Helicopter operations Emergency & Support Activities: Missing person searches Major fire incidents SWAT team incidents Natural disasters Aircraft accidents For more information about Long Beach Search & Rescue, please visit LBSAR.org This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2464,http://www.longbeach.gov/police/press-releases/l-b-p-d--saturation-patrol-proves-effective/,Media Bulletins,Agency-Published Resources,L.B.P.D. SATURATION PATROL PROVES EFFECTIVE,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 11/3/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: L.B.P.D. SATURATION PATROL PROVES EFFECTIVE Contact: Media Relations Detail (562) 570-5273 On Saturday November 1, 2014, the Long Beach Police Department's Traffic Section conducted a Driving Under the Influence Saturation Patrol from 7:00 p.m. until 3:00 a.m. During the eight-hour operation, motor officers patrolled throughout the city looking for impaired drivers. During the operation, officers took the following enforcement actions: Conducted Fifty-five (55) enforcement stops Conducted Nine (9) Standardized Field Sobriety Tests Made Two (2) DUI arrests Issued Twelve (12) traffic citations for unsafe driving After falling dramatically for five straight years, figures for 2012 show an increase to 802 deaths in California because someone failed to designate a sober driver. Over the course of the past three years, DUI collisions have claimed 9 lives and resulted in 315 injury crashes harming 420 of our friends and neighbors. DUI can impact the economy in addition to the pain and suffering of those immediately affected. Conservatively, a fatality has a $1.4 million impact, an injury $70,000, and a crash that only damages property averages nearly $9,000. Funding for this program is from a grant from the California Office of Traffic Safety, through the National Highway Traffic Safety Administration. Report drunk drivers, call 9-1-1. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2465,http://www.longbeach.gov/police/press-releases/dui-drivers-license-checkpoint-planned-this-weekend/,Media Bulletins,Agency-Published Resources,DUI DRIVERS LICENSE CHECKPOINT PLANNED THIS WEEKEND,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 1/22/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: DUI/DRIVERS LICENSE CHECKPOINT PLANNED THIS WEEKEND Contact: Media Relations Detail (562) 570-5273 The Long Beach Police Department’s Traffic Section will conduct a DUI/Drivers License Checkpoint on January 24, 2015, in the North Division, between the hours of 7:00 p.m. Saturday night until 3:00 a.m. Sunday morning. The deterrent effect of DUI checkpoints is a proven resource in reducing the number of persons killed and injured in alcohol or drug involved crashes. Research shows that crashes involving an impaired driver can be reduced by up to 20% when well-publicized DUI checkpoints and proactive DUI patrols are conducted routinely. In California, this deadly crime led to 802 deaths and nearly 24,000 serious injuries in 2012 because someone failed to designate a sober driver. Nationally, the latest data shows nearly 10,000 were killed by impaired drivers. “Over the course of the past three years in Long Beach, DUI collisions have claimed nine lives and resulted in 315 injury crashes, harming 420 of our friends and neighbors,” said Long Beach Police Department Sergeant Aaron Alu. Officers will look for signs of alcohol and/or drug impairment with officers checking drivers for proper licensing, delaying motorists only momentarily. When possible, specially trained officers will be available to evaluate those suspected of drug-impaired driving, which now accounts for a growing number of impaired driving crashes. Drugs, which may impair driving, not only include illegal narcotics, but many prescription drugs, marijuana, and even some over-the-counter medications. Driving under the influence (DUI) checkpoints are placed in locations based on collision statistics and frequency of DUI arrests, affording the greatest opportunity for achieving drunk and drugged driving deterrence. Locations are chosen with safety considerations for the officers and the public. Drivers caught driving impaired can expect the impact of a DUI arrest to include jail time, fines, fees, DUI classes and other expenses that can exceed $10,000, not to mention the embarrassment when friends and family find out. Funding for this checkpoint is provided to the Long Beach Police Department by a grant from the California Office of Traffic Safety, through the National Highway Traffic Safety Administration, reminding everyone to ‘Report Drunk Drivers – Call 9-1-1’. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2467,https://www.arlingtontx.gov/news/my_arlington_t_x/news_archive/2017_archived_news/september_2017/national_night_out_arlington_police_on_oct_3_2017,Media Bulletins,Agency-Published Resources,"Ask Arlington: Enjoy National Night Out with Arlington Police on Oct. 3, 2017 - City of Arlington","",200,Just a moment...,"[""YOUR COMMUNITY NEWS AND EVENTS"", ""City of Arlington""]","[""Ask Arlington: Enjoy National Night Out with Arlington Police on Oct. 3, 2017""]",[],[],[],[],Skip to Content Skip to Content -2468,https://www.columbus.in.gov/event/columbus-police-review-board/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -2469,https://spdblotter.seattle.gov/2012/02/06/the-seattle-police-foundation-thanks-the-seattle-hotel-association-for-hosting-the-evening-of-hope-gala/,Media Bulletins,Agency-Published Resources,The Seattle Police Foundation thanks the Seattle Hotel Association for hosting the Evening of Hope gala - SPD Blotter,"",200,403 Forbidden,"[""The Seattle Police Foundation thanks the Seattle Hotel Association for hosting the Evening of Hope gala""]","[""Find Posts By Topic"", ""You might also like..."", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],SPD Blotter Seattle Police Department (SPD) Home Topics SPD Blotter Seattle Police Department (SPD) Home Topics SPD Blotter Seattle Police Department (SPD) Home Topics Search Search Search Search Find Posts By Topic Police Precincts East Precinct North Precinct Southwest Precinct South Precinct West Precinct Data and Crime Trends Investigations 2018 Homicides 2019 Homicides 2020 Homicides Statements and News Releases Chief of Police News Releases Events Alerts Community Outreach Traffic and Collisions Significant Incident Reports Find Posts By Topic Police Precincts East Precinct North Precinct Southwest Precinct South Precinct West Precinct Data and Crime Trends Investigations 2018 Homicides 2019 Homicides 2020 Homicides Statements and News Releases Chief of Police News Releases Events Alerts Community Outreach Traffic and Collisions Significant Incident Reports Police Precincts East Precinct North Precinct Southwest Precinct South Precinct West Precinct Data and Crime Trends Investigations 2018 Homicides 2019 Homicides 2020 Homicides Statements and News Releases Chief of Police News Releases Events Alerts Community Outreach Traffic and Collisions Significant Incident Reports -2470,https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/arrests/081622arrests.pdf,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -2471,https://alpha.austin.gov/en/police-oversight/oral-reprimand-of-officer-ivan-figueroa/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -2472,https://www.orovalleyaz.gov/government/news/oro-valley-town-council-to-vote-on-police-chief-appointment-february-5,Media Bulletins,Agency-Published Resources,Oro Valley Town Council to vote on police chief appointment February 5 – Oro Valley | it's in our nature,"Today the Town of Oro Valley released its agenda for February 5, 2020, which includes as one of the Town Council’s items for business the appointment of Oro Valley Commander Kara M. Riley as its next police chief.",200,Home – Oro Valley | it's in our nature,"[""Oro Valley Town Council to vote on police chief appointment February 5""]",[],"[""OV 50th Anniversary Announcement"", ""Town of Oro Valley"", ""Connect with us""]",[],[],[],"opens in new tab or window OV 50th Anniversary Announcement On April 15, 2024, the Town of Oro Valley turns 50 years old! Join us as we commemorate a half-century of history, growth, and community in Oro Valley! Our 50th Anniversary landing page has all the information you need about this year of community celebration. Learn more Close this announcement OV 50th Anniversary Announcement On April 15, 2024, the Town of Oro Valley turns 50 years old! Join us as we commemorate a half-century of history, growth, and community in Oro Valley! Our 50th Anniversary landing page has all the information you need about this year of community celebration. Learn more Close this announcement OV 50th Anniversary Announcement On April 15, 2024, the Town of Oro Valley turns 50 years old! Join us as we commemorate a half-century of history, growth, and community in Oro Valley! Our 50th Anniversary landing page has all the information you need about this year of community celebration. Learn more Close this announcement OV 50th Anniversary Announcement On April 15, 2024, the Town of Oro Valley turns 50 years old! Join us as we commemorate a half-century of history, growth, and community in Oro Valley! Our 50th Anniversary landing page has all the information you need about this year of community celebration. Learn more Close this announcement OV 50th Anniversary Announcement On April 15, 2024, the Town of Oro Valley turns 50 years old! Join us as we commemorate a half-century of history, growth, and community in Oro Valley! Our 50th Anniversary landing page has all the information you need about this year of community celebration. Learn more Close this announcement On April 15, 2024, the Town of Oro Valley turns 50 years old! Join us as we commemorate a half-century of history, growth, and community in Oro Valley! Our 50th Anniversary landing page has all the information you need about this year of community celebration. Learn more " -2473,https://www.richmondindiana.gov/docs/current-city-police-districts-map,Geographic,Info About Agencies,Current City Police Districts Map,"",200,Richmond Indiana,"[""Documents, Forms, & Transactions""]","[""Current City Police Districts Map"", ""Stay Connected""]","[""""]","[""Due Date"", ""Contact"", ""City of Richmond""]",[],[],"What's Happening Doing Business Living City Government Office of the Mayor Departments City Clerk City Council Boards & Commissions Job Opportunities Contact Contact Us Directory What's Happening Doing Business Living City Government Office of the Mayor Departments City Clerk City Council Boards & Commissions Job Opportunities Contact Contact Us Directory City Government Office of the Mayor Departments City Clerk City Council Boards & Commissions Job Opportunities City Government City Government Contact Contact Us Directory Contact Contact Documents, Forms, & Transactions Documents, Forms, & Transactions Current City Police Districts Map Download Document Due Date Current City Police Districts Map Download Document Due Date Current City Police Districts Map Download Document Due Date Download Document Due Date Stay Connected Sign up for email updates. Thank you! Your submission has been received! Oops! Something went wrong while submitting the form. Stay Connected Sign up for email updates. Thank you! Your submission has been received! Oops! Something went wrong while submitting the form. Thank you! Your submission has been received! Oops! Something went wrong while submitting the form. Thank you! Your submission has been received! Thank you! Your submission has been received! Oops! Something went wrong while submitting the form. Oops! Something went wrong while submitting the form. Contact Contact Directory Job Opportunities City of Richmond (765) 983-7200 50 North 5th Richmond, Indiana 47374 Contact Contact Directory Job Opportunities City of Richmond (765) 983-7200 50 North 5th Richmond, Indiana 47374 Contact Contact Directory Job Opportunities City of Richmond (765) 983-7200 50 North 5th Richmond, Indiana 47374 Contact Contact Directory Job Opportunities City of Richmond (765) 983-7200 50 North 5th Richmond, Indiana 47374 (765) 983-7200 50 North 5th Richmond, Indiana 47374 " -2474,https://delcopa.gov/publicrelations/releases/2022/delcopollingplacesfinalizedformay17primary.html,Not Criminal Justice Related,Not Criminal Justice Related,"Delaware County Polling Places Finalized for the May 17 Primary Election - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Delaware County Polling Places Finalized for the May 17 Primary Election""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]","[""Only registered Republicans and Democrats may participate at this Primary"", ""Additional Resources: The Election Hotline, Voter Service Center and the Delco Votes! website""]",[],[],"" -2475,https://brookfieldil.gov/publication/42413-april-24-2013-police-pension-board/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -2476,https://ci.san-bernardino.ca.us/city_hall/police_department/crime_statistics/about_ucr_statistics/arson_statistics/arson_statistics-2018,Crime Statistics,Agency-Published Resources,Arson Statistics - 2018 - City of San Bernardino,"",200,Just a moment...,"[""City of San Bernardino California""]","[""Arson Statistics - 2018""]",[],[],[],[],Skip to Content -2477,https://www.roseville.ca.us/news/archive_news/2017_archive_news/police_digest__december_15__2017,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -2478,http://www.greenvillenc.gov/government/police/community-services-and-crime-prevention/cops-and-barbers,Contact Info & Agency Meta,Info About Agencies,"Cops and Barbers | Greenville, NC","",200," - - Greenville, NC | Home - -","[""Greenville, NC"", ""Cops and Barbers""]","[""Jump to subpage..."", ""Related Links""]",[],[],[],[],Please enable JavaScript in your browser for a better user experience. -2479,https://delcopa.gov/publicrelations/releases/2020/courtsgovcenter.html,Not Criminal Justice Related,Not Criminal Justice Related,Government Center Closed to the public on March 16/Limited Court Operations March 16 and 17,"",200,"Delaware County, Pennsylvania","[""Government Center Closed to the public on March 16/Limited Court Operations March 16 and 17""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Government Center Closed to the public on March 16/Limited Court Operations March 16 and 17 Home / Departments / Public Relations Releases / Government Center Closed to the public on March 16/Limited Court Operations March 16 and 17 The Delaware County Government Center will be closed to the public on Monday, March 16. Government Center offices will operate with a reduced and staggered staff to ensure the continuity of government, however the offices will not be open to the public. Residents can call government offices on March 16 but are not able to access the building. The Delaware County Court of Common Pleas will be suspending all judicial operations on Monday, March 16, and Tuesday, March 17. A Common Pleas Court Judge will be available at the County Courthouse during regular business hours to hear temporary protection from abuse applications on March 16 and March 17. The Delaware County Magisterial Courts will be available, but only to conduct preliminary criminal arraignments and review afterhours temporary protection from abuse requests. On March 16, 2020 President Judge Kevin F. Kelly relatedly intends to file with the Pennsylvania Supreme Court an application under the Pennsylvania Rules of Judicial Administration seeking authorization to declare a judicial emergency, which if allowed will access various additional authorities to further address this public health crisis and the court’s ability to continue to provide critically essential judicial services. More details about the operations of the Delaware County Government Center, the Delaware County Court of Common Pleas and Magisterial District Courts will be released in the following days. Public Relations Navigation Press Releases County Newsletter Use of County Facility Form Questions about COVID-19 vaccines? Please call the COVID-19 Call Center: 484-276-2100. Adrienne Marofsky, Director Government Center, 226A 201 W. Front St. Media, PA 19063 Phone: 610-891-4943 delcopr@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play " -2480,https://coloradosprings.gov/police-department/article/news/homicide-investigation-6600-block-bugle-dr,Media Bulletins,Agency-Published Resources,Homicide Investigation: 6600 Block of Bugle Dr. | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""Homicide Investigation: 6600 Block of Bugle Dr.""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[],"" -2481,https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0725/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -2482,https://alpha.austin.gov/police-oversight/formal-complaint-de-escalation-of-potential-force-6/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -2483,https://delcopa.gov/ems/pdfdocs/licensureprogramco/alsambulanceinspchklst.xls,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -2485,https://www.madera.gov/home/departments/police/,Annual & Monthly Reports,Info About Agencies,Police Department - City of Madera,The Heart of California,200,City of Madera - Serving Residents in the Heart of California,"[""City of Madera Police Department""]","[""Department Overview"", ""Contact Information""]","[""Share this:""]",[],[],[],"" -2486,https://brookfieldil.gov/publication/11613-november-6-2013-fire-and-police-commission/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -2487,https://beaverpa.us/a-message-from-the-police-department-2/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -2488,https://delcopa.gov/ojs/ojsforms/15noticeofproposedrelocation.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -2489,http://lafayettepolice.us/2359/brown-street,Not Criminal Justice Related,Not Criminal Justice Related,"Brown Street | Lafayette, IN - Official Website","",200,"Police Department | Lafayette, IN - Official Website","[""Brown Street""]","[""Brown Street Sewer""]","[""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Government Services Our Community Business & Development How Do I... Transparency Home Government Departments H - W Stormwater Programs Green Infrastructure Brown Street Brown Street Brown Street Sewer This new sewer is required under the approved CSO Long Term Control Plan to store and convey wet weather flows to the Pearl River Lift Station. The Brown Street Sewer is located on the northwest side of Lafayette approximately 1,000 feet north of Main Street. It extends from a point just south of the intersection of Erie Street and Union Street and continues southwest along Erie Street, then northwesterly to a point near the intersection of Brown Street and 13 th Street, then along Brown Street to a point just west of the intersection of Brown Street and 3 rd Street. The Brown Street Sewer includes approximately 4,230 linear feet of 72 inch diameter gravity sewer, approximately 390 linear feet of 84 inch gravity sewer, and approximately 25 linear feet of 96 inch gravity sewer. This construction includes new green infrastructure, namely the PaveDrain® system, which has recently been installed along either side of the street. This new system will help reduce the potential for surcharging and flooding due to water on the roads, while also helping to protect and improve our river and streams. Additionally, a new backflow preventer has been installed at the existing CSO 002 outfall structure to prevent backflow from the Wabash River entering the City’s sewer collection system. The sewer also includes modifications to the existing CSO 002 headwall structure to accommodate the backflow preventer. See the PaveDrain® system being tested here ! Durkees Run Stormwater Park Brown Street Employment Utilities Payment Submit a Request Permits & Licensing Agendas & Minutes Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate " -2490,https://www.bedminster.us/police_fire_rescue/pottersville_volunteer_fire_co_,Not Criminal Justice Related,Not Criminal Justice Related,Pottersville Volunteer Fire Co. - Township of Bedminster,"",200,Just a moment...,"[""Bedminster Township""]","[""Pottersville Volunteer Fire Co.""]","[""Bedminster Township""]",[],[],[],"" -2491,https://brookfieldil.gov/publication/043009-april-30-2009-police-pension-board/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -2492,https://www.goldenbeach.us/police-department/k-9-unit/,Contact Info & Agency Meta,Info About Agencies,k-9 Unit – Golden Beach: A Town Unlike Any Other,"",200,Golden Beach: A Town Unlike Any Other – The Town of Golden Beach,"[""k-9 Unit""]",[],"[""Quick Links"", ""Documents"", ""About Golden Beach"", ""Phone Numbers"", ""Town Hall""]","[""Annual Report 2022"", ""Annual Report 2021"", ""Annual Report 2020"", ""Annual report for 2019""]",[],[],Menu Home About Golden Beach History of Golden Beach Message From The Mayor Message from the Town Manager Laws and Ordinances Government Town Council Town Council Meeting & Workshop Video Archive Town Manager Town Clerk Finance Department Building and Zoning New Permit and Contractor Registration Appointments Capital Improvement Projects (CIP) Department Police Department Public Works Resident Services Town Attorney Other Elected Officials Job Opportunities Residents Community Calendar Golden Beach Magazine Galleries Hurricane Guide Recreation Reservation Guide: New Tennis System Reserve West Tennis Court: #1 Reserve East Tennis Court: #2 Beach Pavilion Rules Doing Business Schedule Inspection Building Permitting Appointments Public Record Request Vendor Enrollment Budget Contact Us Town Guide [hmapsprem id=1] Menu Home About Golden Beach History of Golden Beach Message From The Mayor Message from the Town Manager Laws and Ordinances Government Town Council Town Council Meeting & Workshop Video Archive Town Manager Town Clerk Finance Department Building and Zoning New Permit and Contractor Registration Appointments Capital Improvement Projects (CIP) Department Police Department Public Works Resident Services Town Attorney Other Elected Officials Job Opportunities Residents Community Calendar Golden Beach Magazine Galleries Hurricane Guide Recreation Reservation Guide: New Tennis System Reserve West Tennis Court: #1 Reserve East Tennis Court: #2 Beach Pavilion Rules Doing Business Schedule Inspection Building Permitting Appointments Public Record Request Vendor Enrollment Budget Contact Us Town Guide Menu Home About Golden Beach History of Golden Beach Message From The Mayor Message from the Town Manager Laws and Ordinances Government Town Council Town Council Meeting & Workshop Video Archive Town Manager Town Clerk Finance Department Building and Zoning New Permit and Contractor Registration Appointments Capital Improvement Projects (CIP) Department Police Department Public Works Resident Services Town Attorney Other Elected Officials Job Opportunities Residents Community Calendar Golden Beach Magazine Galleries Hurricane Guide Recreation Reservation Guide: New Tennis System Reserve West Tennis Court: #1 Reserve East Tennis Court: #2 Beach Pavilion Rules Doing Business Schedule Inspection Building Permitting Appointments Public Record Request Vendor Enrollment Budget Contact Us Town Guide Menu Home About Golden Beach History of Golden Beach Message From The Mayor Message from the Town Manager Laws and Ordinances Government Town Council Town Council Meeting & Workshop Video Archive Town Manager Town Clerk Finance Department Building and Zoning New Permit and Contractor Registration Appointments Capital Improvement Projects (CIP) Department Police Department Public Works Resident Services Town Attorney Other Elected Officials Job Opportunities Residents Community Calendar Golden Beach Magazine Galleries Hurricane Guide Recreation Reservation Guide: New Tennis System Reserve West Tennis Court: #1 Reserve East Tennis Court: #2 Beach Pavilion Rules Doing Business Schedule Inspection Building Permitting Appointments Public Record Request Vendor Enrollment Budget Contact Us Town Guide Menu -2493,https://www.wakeforestnc.gov/communications/town-news/police-news,Media Bulletins,Agency-Published Resources,"Police News | Town of Wake Forest, NC","",200,"Town of Wake Forest, NC","[""Police News""]","[""joyner_park_1.jpg"", ""Town Hall Closed Friday, March 29"", ""Search form"", ""You are here"", ""Pages""]","[""Raleigh Water repairing sewer line along North White Street"", ""Crash closes eastbound lanes along Dr. Calvin Jones Highway/NC 98 Bypass"", ""Wake Forest Police warn residents (again) about Apple Pay, Venmo & other electronic payment scams"", ""Raleigh Water repairing sewer line along 6th Street"", ""Portion of Brick Street & East Chestnut Avenue closed while crews repair gas line"", ""WFFD battling brush fire off Burlington Mills Road"", ""Raleigh Water repairing water main along South Main Street/US 1A, detour in place"", ""Raleigh Water schedules closure Tuesday along North White Street"", ""Traffic Alert - Front Street"", ""Crash closes eastbound Durham Road/NC 98 near Flemming House Street""]",[],[],[],Skip to main content -2494,https://southbethany.delaware.gov/police-department/instruction-page-for-ticket-or-summons/,Poor Data Source,Poor Data Source,Instruction Page for Ticket or Summons - South Bethany,"",200,Home - South Bethany,"[""South Bethany""]","[""Instruction Page for Ticket or Summons""]","[""Menu""]",[],[],[],"Skip to Content Skip to Footer Toggle navigation Menu Government Administrative Staff Beach Patrol Mayor & Council Police Department Meetings & Events Calendar Ordinances and Resolutions Info About General Information Property Owners Visitors Animals (Wild & Domestic) Election 2024 Employment Emergency & Hurricane Information Flood Protection Information Forms & Fees History Local Links News & Notices Past Meeting Minutes & Agendas Town Code Boards/Committees Town Council Board of Adjustment Budget & Finance Committee (B&F) Canal Water Quality Committee Charter and Code Committee Community Relations Committee Planning Commission Resiliency Committee Ad Hoc Committees Online Payments Connect Meeting Email Notifications Sign-Up Town Inquiry Form Owner Contact Information Form FOIA Request Form Instagram Skip to Content Skip to Footer Toggle navigation Menu Government Administrative Staff Beach Patrol Mayor & Council Police Department Meetings & Events Calendar Ordinances and Resolutions Info About General Information Property Owners Visitors Animals (Wild & Domestic) Election 2024 Employment Emergency & Hurricane Information Flood Protection Information Forms & Fees History Local Links News & Notices Past Meeting Minutes & Agendas Town Code Boards/Committees Town Council Board of Adjustment Budget & Finance Committee (B&F) Canal Water Quality Committee Charter and Code Committee Community Relations Committee Planning Commission Resiliency Committee Ad Hoc Committees Online Payments Connect Meeting Email Notifications Sign-Up Town Inquiry Form Owner Contact Information Form FOIA Request Form Instagram Skip to Content Skip to Footer Toggle navigation Menu Government Administrative Staff Beach Patrol Mayor & Council Police Department Meetings & Events Calendar Ordinances and Resolutions Info About General Information Property Owners Visitors Animals (Wild & Domestic) Election 2024 Employment Emergency & Hurricane Information Flood Protection Information Forms & Fees History Local Links News & Notices Past Meeting Minutes & Agendas Town Code Boards/Committees Town Council Board of Adjustment Budget & Finance Committee (B&F) Canal Water Quality Committee Charter and Code Committee Community Relations Committee Planning Commission Resiliency Committee Ad Hoc Committees Online Payments Connect Meeting Email Notifications Sign-Up Town Inquiry Form Owner Contact Information Form FOIA Request Form Instagram NEW Construction Hours: 8 a.m. - 5 p.m. -No work on observed Federal Holidays year-round. More Info Town of South Bethany Delaware Listen Instruction Page for Ticket or Summons Instruction Page for Ticket or Summons Town of South Bethany Delaware Listen Instruction Page for Ticket or Summons Instruction Page for Ticket or Summons Listen Instruction Page for Ticket or Summons Instruction Page for Ticket or Summons Listen Instruction Page for Ticket or Summons Instruction Page for Ticket or Summons Listen Instruction Page for Ticket or Summons Instruction Page for Ticket or Summons Listen " -2495,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/summary/102521summary1.pdf,Crime Statistics,Agency-Published Resources,"","",404,"","","","","","","","" -2496,https://www.roundrocktexas.gov/city-departments/police/divisions/,Contact Info & Agency Meta,Info About Agencies,Divisions - City of Round Rock,"",200,403 Forbidden,"[""Divisions""]",[],"[""Community Affairs"", ""Office of the Chief"", ""Criminal Investigations Division"", ""Patrol Division"", ""Special Operations Division"", ""Training Division"", ""Support Services"", ""Round Rock Police Department""]","[""Site Search"", ""Follow Us""]",[],[],"Home News Jobs Calendar Menu Home News Jobs Calendar Police About 9-1-1 Divisions Community Affairs Community Events Community Services Open Carry Information Public Outreach Request Round Rock Operation Blue Santa Volunteer Information Criminal Investigations Division Office of the Chief Internal Affairs Reports and Accreditation Officer Oath of Office Patrol Division Special Operations Division Animal Control Graffiti Abatement Towing Information Traffic Victim Assistance Support Services Nuisance Alarm Unit Training Division Recruiting Officer Whites Memorial Contact RRPD Menu Police About 9-1-1 Divisions Community Affairs Community Events Community Services Open Carry Information Public Outreach Request Round Rock Operation Blue Santa Volunteer Information Criminal Investigations Division Office of the Chief Internal Affairs Reports and Accreditation Officer Oath of Office Patrol Division Special Operations Division Animal Control Graffiti Abatement Towing Information Traffic Victim Assistance Support Services Nuisance Alarm Unit Training Division Recruiting Officer Whites Memorial Contact RRPD Divisions Home » Departments » Police » Divisions Facebook Instagram Phone-alt Comment-alt Exclamation Fingerprint For emergencies, call 911 Community Affairs The Community Affairs unit collaborates with a variety of community groups and organizations to meet a wide range of needs. Office of the Chief The Office of the Chief houses our Professional Standards, Internal Affairs, and Community Affairs units. Criminal Investigations Division The Criminal Investigations Division strives to investigate and solve crimes in a timely manner with a positive outcome for the citizens and businesses in Round Rock. Patrol Division We work in cooperation with community members and are proactive in our approach to resolving crime concerns and quality of life issues facing our community. Special Operations Division Special Operations Division is responsible for the School Resource Officer, Motorcycle, DWI, and Animal Control Unit, as well as Victim Services. Training Division The Training Division provides the latest training in law enforcement knowledge and skills, enhance leadership abilities, and promote a solid ethical foundation to our workforce. Support Services The Support Services Division is comprised of civilian personnel who are responsible for all public safety communications for police, fire and animal control. Round Rock Police Department 2701 North Mays Street Round Rock, Texas 78665 Emergencies: 9-1-1 Non-emergency Line: 512-218-5500 File a Report: 512-218-5500 Victim Assistance: 512-341-3124 VIEW POLICE CONTACT INFO Home About Services Departments Businesses Menu Home About Services Departments Businesses Quick Links News Calendar Jobs City Council Sitemap Website Feedback Services Service Request Service Directory Payment Center Development/Permit Tracker Open Records Center Public Notices Stay Connected Staff Directory Mobile Apps Alerts Sign Up E-Subscribe City of Round Rock 221 East Main Street Round Rock, TX 78664 512-218-5400 Site Search Search Search Follow Us Facebook Home Youtube Instagram " -2497,https://delcopa.gov/planning/pdf/agendas/2022/agenda202201.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -2498,https://www.ci.northville.mi.us/services/police_department/police_news/joashua_clines_joins_police_dept_,Media Bulletins,Agency-Published Resources,"Joashua Clines joins Police Dept. - City of Northville, MI",Officer Clines has a degree from Auburn University in his home state of Alabama but his true calling is serving as a police officer.,200,Just a moment...,"[""Joashua Clines joins Police Dept.""]",[],[],[],[],[],Skip to Content -2499,https://southamptontownnypolice.gov/faq.aspx?qid=102,Not Criminal Justice Related,Not Criminal Justice Related,"FAQs • What land can be preserved through the TDR program, a","",200,"Police | Southampton, NY - Official Website",[],"[""▼ Transfer of Development Rights""]","[""Site Tools"", ""Categories"", ""Live Edit"", ""Contact Us"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -2500,https://www.ci.auburn.in.us/wp-content/uploads/2017/11/auburnpolicecar-1000x650.jpg,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -2501,https://delcopa.gov/controller/pdf/retirement/2021/210310minutes.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -2502,https://www.hayward-ca.gov/discover/news/jun22/police-blotter-may-22-28-2022,Crime Statistics,Agency-Published Resources,"Police Blotter: May 22-28, 2022 | City of Hayward - Official website","STATISTICAL HIGHLIGHTSMay 22-28, 2022 Weekly Arrests (Includes cite/released):42 Homicide 0Weekly Calls for Service: 1,981 Assault—Great Bodily Injury 7Weekly Reports Taken:174 Burglary— Nonresidential 10Weekly Complaints(against HPD):1 Burglary—Residential 0Weekly Calls Received:5,537 Theft 19This data is subject to change and based on crimes that were reported to have",200,City of Hayward - Official website,"[""Police Blotter: May 22-28, 2022""]","[""Look Deeper"", ""Welcome home"", ""Where opportunity lives"", ""Find what you need. Fast."", ""Working for You"", ""Your Hayward Environment"", ""You are here. So is everything else."", ""Search form"", ""Look Deeper"", ""Welcome home"", ""Where opportunity lives"", ""Find what you need. Fast."", ""Working for You"", ""Your Hayward Environment""]",[],"[""STATISTICAL HIGHLIGHTS"", ""May 22-28, 2022"", """", """", """", ""Significant Incidents"", ""Do you need help paying energy bills? You may qualify for federal aid."", ""Hayward Receives Grant for Safe Routes to Schools Infrastructure and Bicycle Incentives"", ""Hayward Celebrates Earth Day at Weekes Park!"", ""Spring 2024 Compost Giveaway"", ""Sustainable Solutions for Celebrating Easter"", ""City Hall and Nonessential Services Closure: Monday, Apr. 01, 2024"", ""Presidential Primary Election: Tuesday, Mar. 5, 2024"", ""Library Closure: February 12 and February 19, 2024."", ""City Hall and Nonessential Services Closures: Monday, Feb. 19"", ""City Hall and Nonessential Services Closure: Monday, Jan. 15, 2024"", ""YOU ARE HERE. SO IS EVERYTHING ELSE."", ""Related News"", ""Police Blotter - February 25-March 2, 2024"", ""Weekly Blotter - February 18-24, 2024"", ""Police Blotter - February 11-17, 2024"", ""Report Problems"", ""Ask Questions"", ""Make a Suggestion"", ""Translate"", ""Search""]",[],[],Skip to main content -2503,https://www.mass.gov/doc/camacho-michael-v-mass-environmental-police-1815/download,Court Cases,Jails & Courts Specific,"","",200,"","","","","","","","" -2504,https://camptonhills.illinois.gov/police-pension-fund-board/,Contact Info & Agency Meta,Info About Agencies,Police Pension Fund Board – Village of Campton Hills,"",200,Village of Campton Hills – Village of Campton Hills Website,[],"[""Police Pension Fund Board"", ""Purpose"", ""Board Members"", ""Daniel Hoffman"", ""Thomas L. Clark"", ""Randy Johnson"", ""Tom Blincoe"", ""William Mair"", ""© 2024 All Rights Reserved Village of Campton Hills.""]",[],"[""Police Pension Fund Meeting"", ""Recognition"", ""Follow Us"", ""Important Links"", ""Contact Us""]",[],[],"(630) 584-5700 M-F 9AM - 4PM Report A Concern | CONTACT US MENU MENU Government Committees & Commissions Community Relations Commission Finance Committee Fire & Police Commission IT Adhoc Committee Plan Commission/Zoning Board of Appeals Police Pension Fund Board Public Works Committee Village Board Zoning Commission Departments Administration & Finance Building & Zoning Police Department Codes, Ordinances & Resolutions Village Code Village Ordinances Village Resolutions Transparency Agendas & Meeting Minutes Annual Budgets & Audits Annual Financial Reports Annual Meeting Calendar Bids & Requests for Proposals Compensation & Benefits Contact Directory IMRF Employer Cost and Participation Information Contracts Public Information (FOIA) Lobbying Taxes & Fees Treasurer’s Reports and Warrants Planning Reports Volunteer Committee Volunteer Form Police Department Police Department Home Page Adjudication Hearing Officer & Information Animal Control Chief Of Police Reports Code Red Community Notifications Crash Report Employment Opportunities K9 Unit Meet the Officers Letters of Appreciation Sex Offender Registration & Map Programs & Services Alice Training Citizen Police Academy Community Crisis Center Illinois Premise Alert Program IL Sec. of State’s Emergency Contact Database Project ChildSafe Information Ride-Along Program Ring Neighbors App Too Good For Drugs Forms & Permits Alarm Registration Form Application for Letter of Good Conduct Civil/Ordinance Violation Local Records Search Request Officer Commendation & Complaint Information Overweight/Oversize Permits Public Records Request (FOIA) Vacation Check Form Business & Development Business Directory Forms Liquor License Application Peddlers, Solicitors & Mobile Food Vendor Licenses Resources Zoning Code Update Project 2022 For Residents Campton Community About the Community & Events School Districts, Colleges & Universities Welcome Booklet Forms Building Permit Application Resources Building Permit Info Campton Township Highway District Coronavirus Resources Electricity Aggregation Emergency Preparedness Emergency Volunteers Training Fire Districts Election Information Polling Place Lookup Issued Solicitors Permits Kane County GIS Map Mental Health and Substance Use Resources Utilities & Services How Do I Contact Directory Fire Protection Districts Police Department Utilities & Services Village Board Members Village Hall Find Agendas & Meeting Minutes Bids & Requests for Proposals Document Library Employment Opportunities Peddlers, Solicitors & Mobile Food Vendor Licenses Village Calendar File/Apply Alarm Registration Form Application for Letter of Good Conduct Building Permit Application Civil/Ordinance Violation Local Records Search Request Committee Volunteer Form Public Records Request (FOIA) Officer Commendation & Complaint Report A Concern Form Solicitors Permit Applications Stormwater/Drainage Concern Form Subscribe to Community Counts Newsletter Vacation Check Form Search Search " -2505,https://beaumonttexas.gov/beaumont-police-arrest-a-man-and-woman-after-committing-an-aggravated-robbery-at-6155-eastex/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -2506,https://ci.san-bernardino.ca.us/city_hall/police_department/sb_978/new_patrol_rifle_powerpoint_complete,Policies & Contracts,Info About Agencies,"","",200,"","","","","","","","" -2507,https://alpha.austin.gov/en/police-oversight/formal-complaint-impartial-attitude-and-courtesy-47/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -2508,https://coloradosprings.gov/police-department/page/professional-standards-division,Poor Data Source,Poor Data Source,"","",403,"","","","","","","","" -2509,https://delcopa.gov/courts/admininstration/lap.html,Contact Info & Agency Meta,Info About Agencies,Language Access Plan - Delaware County Court of Common Pleas,"",200,"Delaware County, Pennsylvania","[""Language Access Plan""]",[],"["""", ""Court Administration Navigation"", ""Contact Us"", ""Courts Quick Links"", ""Government Center Quick Links"", ""About Delaware County""]",[],[],[],"" -2510,https://www.foxcrossingwi.gov/event/police-fire-commission/,Poor Data Source,Poor Data Source,Police & Fire Commission - Fox Crossing Fox Crossing,"",200,Fox Crossing - Bridging the Fox Cities Fox Crossing,"["""", """", ""Police & Fire Commission""]","[""mtg05-19-2015pol&fire""]",[],[],[],[],"Home Government Board of Review Bond Schedule Commissions & Boards Application for Appointment Village Board Elections and Voting Incorporation Information Fee Schedule Licenses & Permit Applications Minutes and Agendas Municipal Code Departments Administration Assessor Clerk Community Development Finance/Treasurer Fire Municipal Court Parks and Recreation Police Street Utilities Calendar Resources Elderly Transportation Program Employment Garbage & Recycling Individual & Business of Year Information for Vendors Local Links Pet Licensing Permits Building Permits Planning Permits Street Permits Population History Public Records Real Estate Inquiry Maps/GIS Property Information Tax & Parcel Information Tax Rate Information (TID IN) The Bridge Calendar Valley Transit Village History Weights & Measures Online Services Municipal Court Payments Parking Ticket Payments Rec Program Registration Utility Online Services Village General Payments Village Notifications Contact How Are We Doing Spring Recycling Event April 27th Informational Announcement – Outstanding Absentee Ballots for the April 2, 2024 Presidential Preference Primary & Spring Election Deadlines for April 2nd Spring Election & Presidential Preference Primary Spring/Summer Recreation Programs Signup for Village Notifications Current Job Opportunities Fox Crossing 2000 Municipal Drive Neenah, WI 54956 920-720-7100 Police & Fire Commission Calendar Add to Calendar Add to Timely Calendar Add to Google Add to Outlook Add to Apple Calendar Add to other calendar Export to XML When: May 19, 2015 @ 5:00 pm – 6:00 pm 2015-05-19T17:00:00-05:00 2015-05-19T18:00:00-05:00 Police & Fire Commission mtg05-19-2015pol&fire application/pdf Copyright © 2010 - 2024 Fox Crossing, All Rights Reserved. Professional Web Site Design by Sandstone Digital. Disclaimer Home Government Board of Review Bond Schedule Commissions & Boards Application for Appointment Village Board Elections and Voting Incorporation Information Fee Schedule Licenses & Permit Applications Minutes and Agendas Municipal Code Departments Administration Assessor Clerk Community Development Finance/Treasurer Fire Municipal Court Parks and Recreation Police Street Utilities Calendar Resources Elderly Transportation Program Employment Garbage & Recycling Individual & Business of Year Information for Vendors Local Links Pet Licensing Permits Building Permits Planning Permits Street Permits Population History Public Records Real Estate Inquiry Maps/GIS Property Information Tax & Parcel Information Tax Rate Information (TID IN) The Bridge Calendar Valley Transit Village History Weights & Measures Online Services Municipal Court Payments Parking Ticket Payments Rec Program Registration Utility Online Services Village General Payments Village Notifications Contact How Are We Doing Spring Recycling Event April 27th Informational Announcement – Outstanding Absentee Ballots for the April 2, 2024 Presidential Preference Primary & Spring Election Deadlines for April 2nd Spring Election & Presidential Preference Primary Spring/Summer Recreation Programs Signup for Village Notifications Current Job Opportunities Fox Crossing 2000 Municipal Drive Neenah, WI 54956 920-720-7100 Police & Fire Commission Calendar Add to Calendar Add to Timely Calendar Add to Google Add to Outlook Add to Apple Calendar Add to other calendar Export to XML When: May 19, 2015 @ 5:00 pm – 6:00 pm 2015-05-19T17:00:00-05:00 2015-05-19T18:00:00-05:00 Police & Fire Commission mtg05-19-2015pol&fire application/pdf Copyright © 2010 - 2024 Fox Crossing, All Rights Reserved. Professional Web Site Design by Sandstone Digital. Disclaimer " -2511,https://southamptontownnypolice.gov/1387/final-supplemental-geis,Not Criminal Justice Related,Not Criminal Justice Related,"FINAL Supplemental GEIS | Southampton, NY - Official Website","",200,"Police | Southampton, NY - Official Website","[""FINAL Supplemental GEIS""]",[],"[""Site Tools"", ""Contact Us"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Government Town Services Community Info How Do I Translate Page Site Tools Home My Account Printer Friendly Email Page Contact Us RSS Site Map Translate Page Notifications Documents Search Home Government Master Plans - By Hamlets (Adopted) Hampton Bays Hampton Bays Business District FINAL Supplemental GEIS FINAL Supplemental GEIS Final-SFGEIS-Hampton-Bays-Downtown-Overlay-District--Jan-2020- Downtown Overlay District 11-2-22 Draft Supplemental GEIS / Hampton Bays Downtown FINAL Supplemental GEIS SEQRA Findings STP Engineering Report Hampton Bays Downtown Business District Planning Hampton Bays Conceptual Design Survey Town Clerk Meetings, Agendas & Minutes Pay Your Taxes Online Services Applications, Forms & Fees Notify Me® FOIL Requests Contact Us Town of Southampton 116 Hampton Road Southampton, NY 11968 Phone: 631-283-6000 Banner photo credit: robertseifertphotography.com Site Links Contact Us Site Map Accessibility Copyright Notices Intranet Job Opportunities Title VI Non-discrimination Policy /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Government Town Services Community Info How Do I Translate Page Site Tools Home My Account Printer Friendly Email Page Contact Us RSS Site Map Translate Page Notifications Documents Search Home Government Master Plans - By Hamlets (Adopted) Hampton Bays Hampton Bays Business District FINAL Supplemental GEIS FINAL Supplemental GEIS Final-SFGEIS-Hampton-Bays-Downtown-Overlay-District--Jan-2020- Downtown Overlay District 11-2-22 Draft Supplemental GEIS / Hampton Bays Downtown FINAL Supplemental GEIS SEQRA Findings STP Engineering Report Hampton Bays Downtown Business District Planning Hampton Bays Conceptual Design Survey Town Clerk Meetings, Agendas & Minutes Pay Your Taxes Online Services Applications, Forms & Fees Notify Me® FOIL Requests Contact Us Town of Southampton 116 Hampton Road Southampton, NY 11968 Phone: 631-283-6000 Banner photo credit: robertseifertphotography.com Site Links Contact Us Site Map Accessibility Copyright Notices Intranet Job Opportunities Title VI Non-discrimination Policy /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In " -2512,http://www.lafayettepolice.us/438/online-crime-reporting,Contact Info & Agency Meta,Info About Agencies,"Online Crime Reporting | Lafayette, IN - Official Website",Our goal is to provide you with an easy to use tool for reporting crime in the City of Lafayette.,200,"Police Department | Lafayette, IN - Official Website","[""Online Crime Reporting""]","["""", ""Instructions & Information About Your Online Report""]","[""Reports Not Accepted With This Form"", ""Reporting Categories"", ""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -2513,https://delcopa.gov/publicrelations/releases/2019/newvotingsystem.html,Not Criminal Justice Related,Not Criminal Justice Related,"Delaware County Council Approves purchase of New Voting System - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Delaware County Council Approves purchase of New Voting System""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]","[""Council unanimously votes to purchase Hart Verity 2.3.4 Voting System""]",[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Delaware County Council Approves purchase of New Voting System Home / Departments / Public Relations Releases / Delaware County Council Approves purchase of New Voting System Council unanimously votes to purchase Hart Verity 2.3.4 Voting System Delaware County Council unanimously voted to purchase Hart Verity 2.3.4 Voting System during the Oct. 23 public council meeting. The system, as well as supporting items, will be purchased through the PA COSTARS Cooperative Purchasing Program, at a cost not to exceed $6,080,832 plus consumables such as thermal paper and printer toner cartridges. The County’s Board of Elections, Delaware County Council and the County’s Executive Director began researching new voting systems in 2017 to identify systems that would meet the new federal and state requirements. In Pennsylvania, every voting system and paper ballot must include plain text that voters can read to verify their choices before casting their ballot. Election officials will also use the plain text to perform pre-election testing and post-election audits and recounts. The County held a public forum and demonstration to ascertain the public’s input on five proposed voting systems. After assessing public input and gathering research, the County’s Board of Elections submitted their recommendation of the Hart Verity Voting 2.3.4 Voting System to Council. The system was certified by the PA Department of State on May 1, 2019, and is a paper ballot system that offers security to voters and includes plain text which voters can read to verify their vote before casting their ballot. The new voting machines will be used in the 2020 Primary, as mandated by Governor Wolf. Information on the Hart Verity 2.3.4 Voting System can be found here: www.votespa.com/About-Elections/Pages/Hart-InterCivic-Verity-Voting-234.aspx Previous Next Public Relations Navigation Press Releases County Newsletter Use of County Facility Form Questions about COVID-19 vaccines? Please call the COVID-19 Call Center: 484-276-2100. Adrienne Marofsky, Director Government Center, 226A 201 W. Front St. Media, PA 19063 Phone: 610-891-4943 delcopr@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play " -2514,https://delcopa.gov/purchasing/bidsprops/cadserver_e-102121.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -2515,https://scrantonpa.gov/wpdm-package/police-union-collective-bargaining-agreement-exp-2021/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -2517,https://www.danversma.gov/documents/records-and-billings-clerk-police-department/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -2518,https://beaumonttexas.gov/beaumont-police-detectives-charge-2-in-august-25-2021-homicide-aggravated-robbery/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -2519,https://health.wyo.gov/publichealth/immunization/influenza-flu/stethoscope-3/,Not Criminal Justice Related,Not Criminal Justice Related,"","",404,"","","","","","","","" -2520,https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0348/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -2521,http://lafayettepolice.us/1086/i-want-to,Not Criminal Justice Related,Not Criminal Justice Related,"I Want To... | Lafayette, IN - Official Website","",200,"Police Department | Lafayette, IN - Official Website","[""I Want To...""]",[],"[""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]","[""...book a birthday party"", ""...find out more about camps and classes"", ""...schedule a tour"", ""...find out more about school visits"", ""...become a member"", ""...volunteer at the zoo"", ""...find out about special events"", ""...reserve a picnic shelter"", ""...get information about the water park""]",[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Plan Your Visit About the Zoo Get Involved Education Programs Special Events I Want To... Home Government Departments H - W Parks & Recreation Facilities Columbian Park Zoo I Want To... I Want To... 9 1 1 1 ...book a birthday party Link to page ...find out more about camps and classes Link to page ...schedule a tour Link to page ...find out more about school visits ...find out more about school visits Link to page ...become a member Link to page ...volunteer at the zoo Link to page ...find out about special events Link to page ...reserve a picnic shelter Link to page ...get information about the water park Link to page ...book a birthday party ...find out more about camps and classes ...schedule a tour ...find out more about school visits ...become a member ...volunteer at the zoo ...find out about special events ...reserve a picnic shelter ...get information about the water park Aquatics McAllister Center Rentals Zoo Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Plan Your Visit About the Zoo Get Involved Education Programs Special Events I Want To... Home Government Departments H - W Parks & Recreation Facilities Columbian Park Zoo I Want To... I Want To... 9 1 1 1 ...book a birthday party Link to page ...find out more about camps and classes Link to page ...schedule a tour Link to page ...find out more about school visits ...find out more about school visits Link to page ...become a member Link to page ...volunteer at the zoo Link to page ...find out about special events Link to page ...reserve a picnic shelter Link to page ...get information about the water park Link to page ...book a birthday party ...find out more about camps and classes ...schedule a tour ...find out more about school visits ...become a member ...volunteer at the zoo ...find out about special events ...reserve a picnic shelter ...get information about the water park Aquatics McAllister Center Rentals Zoo Contact Us 20 N 6th Street Lafayette, IN 47901 Phone: 765-807-1000 FAQs How do I navigate the Lafayette website? Do I need to create an account? How do I find something fun and exciting to do in Lafayette? How do I report a pothole or damaged street? /FAQ.aspx Site Links Home Accessibility Contact Us Copyright Notices Site Map /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate " -2522,https://police.bixbyok.gov/224/submit-a-tip,Contact Info & Agency Meta,Info About Agencies,"Submit a Tip | Bixby Police Department, OK",If you observe an emergency or crime in progress please call 911 or contact Bixby Communications Non-Emergency number 918-366-8294.,200,"Bixby Police Department, OK | Official Website","[""Submit a Tip""]","[""Suspicious Activities & Tips"", ""Or""]","[""Metro Crime Stoppers App"", ""National Center for Missing & Exploited Children ( NCMEC )"", ""Federal Bureau of Investigations"", ""Oklahoma Information Fusion Center ( OIFC )"", ""Helpful Links"", ""FAQs"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Search Police Services Community Services Emergency Management How Do I... Home Community Services Submit a Tip Submit a Tip If you observe an emergency or crime in progress please call 911 or contact Bixby Communications Non-Emergency number 918-366-8294. Please, without putting yourself in harms way, be as detailed as possible and give specific names, descriptions, tag information and times of day. Suspicious Activities & Tips Please also assist us by utilizing the following reporting and tips services: Metro Crime Stoppers App Citizens can now at their discretion, download the Tulsa Metro Crime Stoppers App . National Center for Missing & Exploited Children ( NCMEC ) For reporting Cyber Crimes against Children please use the tip line on the NCMEC website . Federal Bureau of Investigations For scams, internet crimes or fraud, use the FBI Tip Form . Oklahoma Information Fusion Center ( OIFC ) Use the Suspicious Activity Report form , used to report any type of suspicious activity to the Oklahoma Information Fusion Center . Or use our Online Tip form . Community Relations Community Events Alive at 25 Business Crime Watch Neighborhood Watch Child ID Kit Car Seat Checks Citizen Police Academy Junior Police Academy Community Emergency Response Team (CERT) Prescription Drug Disposal Box Safety and Security Family Safety Holidays Halloween Winter Holiday Identity Theft Internet Residential Safety Vehicle Safety Shop With a Cop Submit a Tip FAQs Forms Helpful Resources & Links Safety Tips Recruitment File a Report Community Relations City of Bixby offender lookup Records Request Bixby City Codes Submit a Tip Nixle Alerts FAQs Helpful Links Animal Control Car Seat Checks Forms Records /QuickLinks.aspx FAQs Does the City of Bixby have any Curfew Laws? How can I get Traffic enforcement or the speed trailer in my area? Will Bixby Fire or Police Department assist me in the installation of my child car seat? /FAQ.aspx Site Links Home Site Map Accessibility Disclaimer Copyright Notices /QuickLinks.aspx 116 W Needles, P.O. Box 70 Bixby, OK 74008 Phone: 918-366-8294 Fax: 918-366-2050 Government Websites by CivicPlus® " -2523,https://www.deerpark-oh.gov/departments/police-department/police-department-contacts/,Contact Info & Agency Meta,Info About Agencies,Departments - Police Department - Police Department Contacts | City of Deer Park,"",200,Home - City of Deer Park,"[""Police Department Contacts""]",[],"[""E-Mail List""]","[""Police Officers work odd hours and have other obligations such as court appearances or training that can make contacting them difficult.""]",[],[],"Skip to Main Content News Events 513.794.8860 Visit Our Facebook Page × search Custom Search Sort by: Relevance Relevance Date Home About About Deer Park Our Mission History Historical Society Residents FAQs Residents Tax Forms & Filing Information Waste Collection Dump Truck Rental Recycling Building Permits Newsletter Energy Aggregation Sidewalk Program CRA Tax Abatement Program Yard / Garage Sale Regulations Local & Community Groups Polling Places Local & Community Links Public Records Policy Business Business Share The Vision Economic Development Comprehensive Plan Boards and Commissions Zoning Code Departments Administration Police Department Fire Department Maintenance Department Tax Department Park Department Building Permits and Inspections Planning and Zoning Department Government Facility Rental Rental Information & Forms Rental Availability Community Center Photos Contact View Menu About Residents Business Departments Facility Rental News Events Contact Police Department Contacts Categories Administration Administration City Manager Police Department About the Police Department Police Department Contacts Citizens' Block Watch Program Mayors Court Vacation Home Checks Fire Department Maintenance Department Service Department Waste Collection Recycling Brush Chipping Regulations Leaf Collection Program Sidewalk Program Holiday Waste Collection Tax Department Tax Department Resident Tax Forms Business Tax Forms Prior Years Tax Forms JEDZ / JEDD Tax Forms Income Tax Code Due Dates Park Department Parks and Recreation Upcoming Park Events Party in the Park (Summer Music Series) Yoga in the Park Park Board Members Francis R. Healy Community Center Building Permits and Inspections Planning and Zoning Department Government Police Officers work odd hours and have other obligations such as court appearances or training that can make contacting them difficult. The best way to contact a specific officer by phone is to call the non-emergency line at 513-791-8056 and request the Clerk connect you to the Officer's voicemail. You may also contact them via the e-mail list below. E-Mail List Chief David Battin - davidbattin@deerpark-oh.gov LT Robert Miller - robertmiller@deerpark-oh.gov LT Kevin Farmer - kevinfarmer@deerpark-oh.gov LT Jeremy Jordan - jeremyjordan@deerpark-oh.gov PO Robert Voland - robertvoland@deerpark-oh.gov PO Greg Kleeman - gregkleeman@deerpark-oh.gov PO Derek Noland - dereknoland@deerpark-oh.gov PO James Murphy -Boulder, CO
-United States
- -
",200,City of Long Beach,"[""Police Department""]","[""About the LBPD""]","[""Mayor"", ""City Council"", ""Rex Richardson"", ""Mary Zendejas"", ""Cindy Allen"", ""Kristina Duggan"", ""Daryl Supernaw"", ""Megan Kerr"", ""Suely Saro"", ""Roberto Uranga"", ""Al Austin"", ""Dr. Joni Ricks-Oddie"", ""Dawn McIntosh"", ""Laura L. Doud"", ""Doug Haubert"", ""Tom Modica"", ""Monique DeLaGarza"", ""City-Wide Elected Officials"", ""Appointed Officials"", ""Online Payments"", ""Online Services"", ""In-Person Services"", ""Opening a Business"", ""Doing Business With The City"", ""Resources"", ""Most Popular"", ""Online Resources"", ""Attractions"", ""Business Associations"", ""Travel Resources"", ""Departments"", ""Job Opportunities"", ""Information"", ""LBPD"", ""Employment"", ""Bureaus"", ""News & Events"", ""Crime Info"", ""How Do I"", ""How Do I"", ""Contact Us"", """", ""LBPD Year in Review"", ""LBPD COMMAND STAFF"", ""Do."", ""Discover."", ""Connect."", ""Ask.""]","["""", ""1st District"", ""2nd District"", ""3rd District"", ""4th District"", ""5th District"", ""6th District"", ""7th District"", ""8th District"", ""9th District"", ""City Attorney"", ""City Auditor"", ""City Prosecutor"", ""City Manager"", ""City Clerk""]","[""File a Report Online"", ""Submit a Tip"", ""Submit a Commendation"", ""File a Complaint"", ""Ride Along Program"", """", """", """", """", ""Crime Lab Survey"", """"]",[],"" -2647,https://www.wakeforestnc.gov/news/joyner-park-restrooms-destroyed-vandals-police-seek-public%e2%80%99s-help-identifying-culprits,Media Bulletins,Agency-Published Resources,"Joyner Park restrooms destroyed by vandals, police seek public’s help identifying culprits | Town of Wake Forest, NC","The Wake Forest Police Department is asking for the public’s help identifying the person or persons responsible for vandalizing the restrooms at E. Carroll Joyner Park, 701 Harris Road. Sometime late Saturday evening or early Sunday morning, vandals used rocks and other items to shatter glass doors and mirrors, clog toilets, and smash sinks.“I’m disgusted that someone would so",200,"Town of Wake Forest, NC","[""Joyner Park restrooms destroyed by vandals, police seek public’s help identifying culprits""]","[""fnow_may2019-40.jpg"", ""Town Hall Closed Friday, March 29"", ""Search form"", ""You are here""]",[],[],[],[],Skip to main content -2648,https://detroitmi.gov/departments/law-department/submit-foia-request/non-routine-or-complex-police-foia-request,Poor Data Source,Poor Data Source,"","",403,"","","","","","","","" -2649,https://townofeaton.colorado.gov/departments/police-department,Resources,Agency-Published Resources,"","",-1,"","","","","","","","" -2650,https://delcopa.gov/publicrelations/releases/2021/wellnesscenteropening.html,Not Criminal Justice Related,Not Criminal Justice Related,"Delaware County Council Officially Opens the Delaware County Wellness Center - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Delaware County Council Officially Opens the Delaware County Wellness Center""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]","[""Timeline :"", ""Vaccination Efforts:""]",[],[],"" -2651,https://www.antioch.il.gov/wpfb-file/04-09-13-police-pension-agenda-pdf/,Poor Data Source,Poor Data Source,"04-09-13 Police Pension Agenda - Antioch, IL",8444 04 09 13 police pension agenda pdf commissions fund agendas 2013 1365184892 5ac397bb3e0fdc037dd88aca92cea1f3 213x300 _mebhnck4ak6y thumb jpg 05 01 32 0 pdf application trustees dennis b crosby scott a pierce mary c dominiak ted p poulos jay jozwiak george sakas lawrence m hanson mayor lori k folbrick village clerk agenda of antioch lake county,200,"Home - Antioch, IL","[""04-09-13 Police Pension Agenda""]",[],[],[],[],[],Open toolbar Accessibility Tools Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset Accessibility Tools Increase Text Increase Text Decrease Text Decrease Text Grayscale Grayscale High Contrast High Contrast Negative Contrast Negative Contrast Light Background Light Background Links Underline Links Underline Readable Font Readable Font Reset Reset -2652,https://www.jacksonms.gov/meetings/personnel-management-administration-police-and-fire/,Resources,Agency-Published Resources,"Personnel Management, Administration, Police and Fire - Jackson, MS","",200,"City of Jackson - Jackson, MS","[""Personnel Management, Administration, Police and Fire""]","[""Primary menu links"", ""Action toolbar"", ""Contact"", ""Subscribe"", ""Connect""]","[""9:00 am Jackson City Hall""]",[],"[""""]","[""219 S President St, Jackson 39205""]","Jackson, MS Primary menu links Residents Businesses Visitors Government News Contact Action toolbar Answers Payments Report Issue Search Primary menu links Residents Businesses Visitors Government News Contact Action toolbar Answers Payments Report Issue Search Jackson, MS Jackson, MS Jackson, MS Proclamation of Local Emergency ___________________________________________________________________________________________________________________________________ The City of Jackson’s Water and Sewer Business Administration is now JXN Water. Click here . _____________________________________________________________________________________________________________________________________ PEG Network Off-Air Announcement: PEG Network is currently off the air as we undergo a relocation. We appreciate your patience during this transition. In the meantime, you can stay connected with PEG Network here or visit our YouTube channel at www.youtube.com/@JacksonPEGNetwork Personnel Management, Administration, Police and Fire Aug 12 2020 9:00 am Jackson City Hall 219 S President St, Jackson 39205 Share Facebook Twitter Email Agenda Personnel Management Department Administration Department Jackson Police Department Jackson Fire Department Personnel Management, Administration, Police and Fire Aug 12 2020 9:00 am Jackson City Hall 219 S President St, Jackson 39205 Share Facebook Twitter Email Agenda Personnel Management Department Administration Department Jackson Police Department Jackson Fire Department Aug 12 2020 9:00 am Jackson City Hall 219 S President St, Jackson 39205 Share Facebook Twitter Email Aug 12 2020 Aug 12 2020 9:00 am Jackson City Hall 219 S President St, Jackson 39205 Share Facebook Twitter Email Personnel Management Department Administration Department Jackson Police Department Jackson Fire Department Personnel Management Department Administration Department Jackson Police Department Jackson Fire Department Personnel Management Department Administration Department Jackson Police Department Jackson Fire Department Personnel Management Department Administration Department Jackson Police Department Jackson Fire Department Helpful Share Facebook Twitter Email Size + Reset a − Translate Translate language select Select language Afrikaans Albanian Amharic Arabic Armenian Azerbaijani Basque Belarusian Bengali Bosnian Bulgarian Catalan Cebuano Chichewa Chinese (Simplified) Chinese (Traditional) Corsican Croatian Czech Danish Dutch English Esperanto Estonian Filipino Finnish French Frisian Galician Georgian German Greek Gujarati Haitian Creole Hausa Hawaiian Hebrew Hindi Hmong Hungarian Icelandic Igbo Indonesian Irish Italian Japanese Javanese Kannada Kazakh Khmer Korean Kurdish (Kurmanji) Kyrgyz Lao Latin Latvian Lithuanian Luxembourgish Macedonian Malagasy Malay Malayalam Maltese Maori Marathi Mongolian Myanmar (Burmese) Nepali Norwegian Pashto Persian Polish Portuguese Punjabi Romanian Russian Samoan Scottish Gaelic Serbian Sesotho Shona Sindhi Sinhala Slovak Slovenian Somali Spanish Sundanese Swahili Swedish Tajik Tamil Telugu Thai Turkish Ukrainian Urdu Uzbek Vietnamese Welsh Xhosa Yiddish Yoruba Zulu Select language Afrikaans Albanian Amharic Arabic Armenian Azerbaijani Basque Belarusian Bengali Bosnian Bulgarian Catalan Cebuano Chichewa Chinese (Simplified) Chinese (Traditional) Corsican Croatian Czech Danish Dutch English Esperanto Estonian Filipino Finnish French Frisian Galician Georgian German Greek Gujarati Haitian Creole Hausa Hawaiian Hebrew Hindi Hmong Hungarian Icelandic Igbo Indonesian Irish Italian Japanese Javanese Kannada Kazakh Khmer Korean Kurdish (Kurmanji) Kyrgyz Lao Latin Latvian Lithuanian Luxembourgish Macedonian Malagasy Malay Malayalam Maltese Maori Marathi Mongolian Myanmar (Burmese) Nepali Norwegian Pashto Persian Polish Portuguese Punjabi Romanian Russian Samoan Scottish Gaelic Serbian Sesotho Shona Sindhi Sinhala Slovak Slovenian Somali Spanish Sundanese Swahili Swedish Tajik Tamil Telugu Thai Turkish Ukrainian Urdu Uzbek Vietnamese Welsh Xhosa Yiddish Yoruba Zulu " -2653,https://sf.gov/departments/department-police-accountability,Resources,Agency-Published Resources,Department of Police Accountability | San Francisco,We investigate complaints about police officers and recommend policy changes.,200,City and County of San Francisco,"[""Department of Police Accountability""]","[""Meetings"", ""Services"", ""News"", ""Events"", ""Resources"", ""About"", ""Contact"", ""Footer menu"", ""Footer Bottom""]","[""Past meetings"", ""Policing concerns"", ""Volunteering"", ""Department of Police Accountability""]","["""", """"]",[],[],"" -2654,https://alpha.austin.gov/es/police-oversight/formal-complaint-obedience-to-orders/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -2655,https://www.southamptontownnypolice.gov/953/lyzon-hat-shop,Not Criminal Justice Related,Not Criminal Justice Related,"Lyzon Hat Shop | Southampton, NY - Official Website","",200,"Police | Southampton, NY - Official Website","[""Lyzon Hat Shop""]","[""Lyzon Hat Shop"", ""TIME-LINE:""]","[""Site Tools"", ""Contact Us"", ""Maria Z. Moore"", ""Hours:"", ""Contact Us"", ""Site Links"", ""Loading""]",[],[],[],"Skip to Main Content EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Government Town Services Community Info How Do I Translate Page Site Tools Home My Account Printer Friendly Email Page Contact Us RSS Site Map Translate Page Notifications Documents Search Home Community Info Hamlets Hampton Bays Community Projects Lyzon Hat Shop Lyzon Hat Shop COMPLETED 2018 Lyzon Hat Shop Located at 116 Main Street in Hampton Bays, this building dates back to the 1850’s and once served as a shop for one- of- a- kind hats by Walter King! The wealthy and royalty were his customers. Now this historic building will be enjoyed for generations to come. This structure was donated by Anita and Bryan Whalen to the Hampton Bays Historical and Preservation Society about ten years ago and then turned over to the Town of Southampton for preservation. The renovation was supported through the Community Preservation Fund. The ribbon cutting and grand opening was held on June 30, 2018. The Hampton Bays Historical and Preservation Society will now manage the exhibits and the museum. TIME-LINE: 2018 - June 30 , Ribbon Cutting 2018 - Spring , Landscaping completed 2017 - Stewardship, Hampton Bays Historical and Preservation Society will include landscaping work 2017 - April, The Lyzon Hat Shop restoration has been completed. 2016 - Moved onto its new foundation next to the historic Prosper King House. Restoration begins. 2013 - Town acquires ownership of the building from the Hampton Bays Historical Society 2007 - Moved to current location and placed on steel beams to await new foundation 2005 - Town purchases land for relocation of Lyzon Hat Shop Contact Us Maria Z. Moore Supervisor Email Maria Z. Moore, Supervisor Town Hall (Second Floor) 116 Hampton Road Southampton, NY 11968 Ph: 631-283-6055 Hours: Monday-Friday 8:30 am – 4:00 pm Staff Directory Dune Road Resurfacing Good Ground Park Entertainment Application On Stage Lyzon Hat Shop Maritime Park Old Ponquogue Bridge Town Clerk Meetings, Agendas & Minutes Pay Your Taxes Online Services Applications, Forms & Fees Notify Me® FOIL Requests Contact Us Town of Southampton 116 Hampton Road Southampton, NY 11968 Phone: 631-283-6000 Banner photo credit: robertseifertphotography.com Site Links Contact Us Site Map Accessibility Copyright Notices Intranet Job Opportunities Title VI Non-discrimination Policy /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate " -2656,https://alpha.austin.gov/en/police-oversight/formal-complaint-impartial-attitude-and-courtesy-4/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -2657,http://www.longbeach.gov/police/press-releases/murder-37-/,Media Bulletins,Agency-Published Resources,MURDER(37),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 9/24/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: MURDER Contact: Media Relations (562) 570-5273 On Thursday, September 24, 2015, at approximately 4:11 A.M., Long Beach Police responded to the 700 block of east 56th Street regarding a person who had been shot. When officers arrived, they discovered a male adult down on the street who had been struck by gunfire. Long Beach Fire Department paramedics responded and pronounced the victim deceased at the scene. The victim has been identified as 22-year-old Jeremy Cornell McFarland of Bellflower. No suspect information is available at this time. The motive for this crime is unknown and the investigation remains ongoing. Anyone with information regarding this incident is urged to contact Long Beach Police Homicide Detectives Malcolm Evans and Mark Bigel at (562) 570-7244. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting www.lacrimestoppers.org. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 9/24/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: MURDER Contact: Media Relations (562) 570-5273 On Thursday, September 24, 2015, at approximately 4:11 A.M., Long Beach Police responded to the 700 block of east 56th Street regarding a person who had been shot. When officers arrived, they discovered a male adult down on the street who had been struck by gunfire. Long Beach Fire Department paramedics responded and pronounced the victim deceased at the scene. The victim has been identified as 22-year-old Jeremy Cornell McFarland of Bellflower. No suspect information is available at this time. The motive for this crime is unknown and the investigation remains ongoing. Anyone with information regarding this incident is urged to contact Long Beach Police Homicide Detectives Malcolm Evans and Mark Bigel at (562) 570-7244. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting www.lacrimestoppers.org. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . A- A A+ A- A A+ A- A A+ A- A A+ A- A A+ " -2658,https://www.belen-nm.gov/wp-content/uploads/2021/01/120193874_3263039293803054_6835373498020090735_o-copy.jpg,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -2659,https://www.coppelltx.gov/faq.aspx?qid=232,Resources,Agency-Published Resources,FAQs • What can be done about speeding on my residential str,"",200,"Coppell, TX | Official Website",[],"[""Speed Study"", ""Speed Bumps"", ""▼ Traffic"", ""Distance Between Traffic Signals"", ""Time Frame for Installation of a Traffic Signal"", ""Eligibility"", ""Alternate Routes"", ""Reasons to Not Install Speed Bumps"", ""Studies"", ""Amount of Feet Needed on Streets"", ""No Parking Areas"", ""Report a Car"", ""Speed Study"", ""Speed Bumps"", ""Example to Not Install Stop Signs"", ""When Stop Signs Are Installed""]","[""Categories"", ""Live Edit"", ""Loading""]",[],[],[],Skip to Main Content -2660,https://spdblotter.seattle.gov/2017/12/05/police-need-your-help-identifying-man-who-robbed-two-lower-queen-anne-businesses/,Media Bulletins,Agency-Published Resources,Police Need Your Help Identifying Man Who Robbed Two Lower Queen Anne Businesses - SPD Blotter,"",200,403 Forbidden,"[""Police Need Your Help Identifying Man Who Robbed Two Lower Queen Anne Businesses""]","[""Find Posts By Topic"", ""Featured Posts"", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[],"Seattle.gov Choose a language: English English Google Translate may not accurately translate all content. Read disclaimer . For general City questions, please call 206-684-2489 . Tell us your requested language in English, and we can connect you with an interpreter. Continue Cancel Español Es posible que Google Translate no traduzca con precisión todo el contenido. Lea el descargo de responsabilidad . Si necesita ayuda en otro idioma, díganos en inglés nombre del idioma que necesita y lo conectaremos con un intérprete: 206-684-2489 Seguir Cancelar 中國語文 Google翻譯可能無法準確翻譯所有內容。 閱讀免責聲明 。 如果您需要翻譯,請用英語説出您所需要的語言,我們將爲你連接口譯員: 206-684-2489 繼續 取消 简体中文 Google翻译可能无法准确翻译所有内容。 阅读免责声明 。 如果您需要翻译,请用英语说出您所需要的语言,我们将为你连接口译员: 206-684-2489 继续 取消 Tiếng Việt Google Dịch có thể không dịch chính xác tất cả nội dung. Đọc tuyên bố từ chối trách nhiệm . Nếu quý vị cần hỗ trợ về ngôn ngữ, xin vui lòng cho chúng tôi biết ngôn ngữ quý vị cần hỗ trợ bằng tiếng Anh (ví dụ “Vietnamese”), chúng tôi sẽ kết nối quý vị với một thông dịch viên: 206-684-2489 Tiếp tục Huỷ bỏ русский язык Google Translate не может точно перевести весь контент. Прочтите отказ от ответственности . Если вам нужна языковая помощь, сообщите нам на английском, какой язык вам нужен, и мы свяжем вас с переводчиком: 206-684-2489 Продолжать Отмена Af-Soomaali Google Translate ayaan si sax ah u turjumi karin dhammaan waxyaabaha ku jira. Akhri afeef . Haddii aad u baahan tahay caawimaad luqadeed, fadlan noogu sheeg Ingiriisiga luqadda aad u baahan tahay, ka dib waxaan kugu xiri doonnaa turjubaan: 206-684-2489 Sii wad Jooji አማርኛ የጉግል ትርጉም ሁሉንም ይዘቶች በትክክል መተርጎም ላይችል ይችላል። ማስተባበያ አንብብ ፡፡ ኣስተርጓሚ ካስፈለግዎ የሚፈልጉትን ቋንቋ በእንግልዝኛ ይንገሩን፣ ከኣስተርጓሚ እናገናኝዎታለን። 206-684-2489 ቀጥል ሰርዝ 한국어 구글은 정확하게 모든 내용을 번역하지 않을 수 있습니다 번역. 읽기 면책 조항 . 언어지원이 필요한 경우, 필요한 언어를 영어로 말씀해 주시면 통역사와 연결해 드리겠습니다: 206-684-2489 계속하다 취소 Tagalog Maaaring hindi tumpak na isalin ng Google Translate ang lahat ng nilalaman. Basahin ang disclaimer . Para sa mga pangkalahatang katanungan sa Lungsod, mangyaring tawagan ang 206-684-2489 . Sabihin sa amin ang hiniling mong wika sa Ingles, at maikokonekta ka namin sa isang interpreter. Magpatuloy Kanselahin ภาษาไทย Google Translate อาจแปลเนื้อหาทั้งหมดไม่ถูกต้อง อ่านข้อจำกัดความรับผิดชอบ สำหรับคำถามทั่วไปเกี่ยวกับเมืองโปรดโทร 206-684-2489 บอกภาษาที่คุณต้องการเป็นภาษาอังกฤษและเราสามารถติดต่อคุณกับล่ามได้ ดำเนินการต่อ ยกเลิก 日本語 Google翻訳は、すべてのコンテンツを正確に翻訳するとは限りません. 免責事項をお読みください 。 市の一般的な質問については 206-684-2489 に電話してください。ご希望の言語を英語で教えていただければ、通訳をご案内いたします。 継続する キャンセル ភាសាខ្មែរ កម្មវិធីបកប្រែហ្គូហ្គោលមិនអាចបកប្រែមាតិកាទាំងអស់បានត្រឹមត្រូវទេ។ អានការបដិសេធ។ សម្រាប់សំណួរទូទៅរបស់ទីក្រុងសូមទូរស័ព្ទមក 206-684-2489 ។ ប្រាប់យើងពីភាសាដែលអ្នកស្នើសុំជាភាសាអង់គ្លេសហើយយើងអាចភ្ជាប់អ្នកជាមួយអ្នកបកប្រែភាសា។ បន្ត បោះបង់ ພາສາລາວ Google Translate ອາດຈະບໍ່ແປເນື້ອຫາທັງ ໝົດ ຢ່າງຖືກຕ້ອງ. ອ່ານປະຕິເສດ . ສຳ ລັບ ຄຳ ຖາມທົ່ວໄປຂອງເມືອງ, ກະລຸນາໂທຫາ 206-684-2489 . ບອກພວກເຮົາເປັນພາສາອັງກິດທີ່ທ່ານຮ້ອງຂໍ, ແລະພວກເຮົາສາມາດເຊື່ອມຕໍ່ທ່ານກັບນາຍແປພາສາ. ສືບຕໍ່ ຍົກເລີກ Українська Перекладач Google може не точно перекласти весь вміст. Прочитайте застереження . За загальними запитаннями про місто, будь ласка, телефонуйте 206-684-2489 . Розкажіть нам про вашу мову англійською мовою, і ми можемо зв’язати вас із перекладачем. Продовжуйте Скасувати Français Google Traduction peut ne pas traduire correctement tout le contenu. Lisez la clause de non-responsabilité . Pour des questions générales sur la ville, veuillez appeler le 206-684-2489 . Dites-nous votre langue souhaitée en anglais, et nous pourrons vous mettre en contact avec un interprète. Continuer Annuler " -2661,https://www.mass.gov/info-details/oig-annual-report-2019-division-of-state-police-oversight,Annual & Monthly Reports,Info About Agencies,OIG Annual Report 2019: Division of State Police Oversight | Mass.gov,Part VI of the Office of the Inspector General's 2019 Annual Report.,200,Mass.gov,"[""OIG Annual Report 2019: Division of State Police Oversight""]","[""Table of Contents for the report, Office of the Inspector General Annual Report 2019"", ""Table of Contents"", ""Overview"", ""I. Audits, Investigations and Reviews"", ""II. The MSP’s Efforts to Achieve Certification and Accreditation"", ""III. The MSP’s Efforts to Modernize and Centralize"", ""Related"", ""Related"", ""Help Us Improve Mass.gov with your feedback""]","[""The Division of State Police Oversight:"", ""Additional Resources""]",[],[],[],"" -2662,https://www.hayward-ca.gov/police-department/public-services/crisis-intervention,Resources,Agency-Published Resources,Crisis Intervention | City of Hayward - Official website,"Crisis intervention is not a stand-alone “program,” but is a service provided by the entire counseling staff regardless of their assigned program.",200,City of Hayward - Official website,[],"[""Crisis Intervention"", ""You are here. So is everything else."", ""Search form""]",[],"[""Common crisis services include :"", ""Hours of Operation :"", ""Office Location:"", ""Receive crime bulletins and alerts"", ""Report Problems"", ""Ask Questions"", ""Make a Suggestion"", ""Translate"", ""Search""]",[],[],"Skip to main content Search modal button POLICE Mobile Menu button Visit Hayward-ca.gov Discover Hayward Find Departments Look up City Services Make a Payment Access Hayward Translate Search POLICE About HPD Divisions Programs Public Services Public Services Administrative Citations & Hearings Animal Services Identity Theft Youth and Family Services Bureau Crime Prevention Transparency Home Public Services Public Services Crisis Intervention Youth and Family Services Bureau counselors provide crisis intervention and referral services for those experiencing a personal or family crisis. Crisis intervention is not a stand-alone “program,” but is a service provided by the entire counseling staff regardless of their assigned program. Crisis intervention services cover a variety of situations. After the crisis is stabilized, follow up services and individually tailored behavioral “tools” are offered by Youth and Family Services Bureau counselors to help the individual and the family cope successfully with this and future stress. Crisis services are available on a drop-in basis or by telephone. For life threatening emergencies, call 9-1-1. Common crisis services include : Stabilizing family conflict when youth are exhibiting high risk behaviors including running away from home and high conflict relationships with parents; Grief counseling and support in the immediate aftermath of trauma; Safety planning to support those who might be a danger to themselves or others; Assisting police officers during the investigation of suspected child abuse to minimize the re-traumatization of the victim during the investigative process. Hours of Operation : Monday - Thursday: 9:00 a.m. - 7:00 p.m. Friday: 9:00 a.m. - 5:30 p.m. Office Location: Hayward Police Department 300 W. Winton Ave. Hayward CA, 94544 (510) 293-7048 Youth and Fammily Services Bureau For more information contact : Youth and Family Services Bureau Supervisor Dr. Emily Young Hayward Police Department 300 W. Winton Ave. Hayward, CA 94544 (510) 293-7021 Emily.young@hayward-ca.gov Public Services Crisis Intervention File a Police Report Domestic Violence Services Administrative Citations & Hearings Animal Services Identity Theft Youth and Family Services Bureau Search modal button POLICE Mobile Menu button POLICE Visit Hayward-ca.gov Discover Hayward Find Departments Look up City Services Make a Payment Access Hayward Translate Search Visit Hayward-ca.gov Discover Hayward Find Departments Look up City Services Make a Payment Access Hayward Translate Search Visit Hayward-ca.gov Discover Hayward Find Departments Look up City Services Make a Payment Access Hayward Translate Search Visit Hayward-ca.gov Discover Hayward Find Departments Look up City Services Visit Hayward-ca.gov Discover Hayward Find Departments Look up City Services Visit Hayward-ca.gov Discover Hayward Find Departments Look up City Services Visit Hayward-ca.gov Discover Hayward Find Departments Look up City Services Visit Hayward-ca.gov Discover Hayward Find Departments Look up City Services Visit Hayward-ca.gov Discover Hayward Find Departments Look up City Services Visit Hayward-ca.gov Discover Hayward Find Departments Look up City Services Make a Payment Access Hayward Translate Search Make a Payment Access Hayward Translate Search Make a Payment Access Hayward Translate Search Make a Payment Access Hayward Translate Search Make a Payment Access Hayward Translate Search Make a Payment Access Hayward Translate Search Make a Payment Access Hayward Translate Search " -2663,http://www.longbeach.gov/police/press-releases/celebrate-the-4th-of-july-holiday-responsibly/,Media Bulletins,Agency-Published Resources,Celebrate the 4th of July Holiday Responsibly,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 6/10/2016 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: CELEBRATE THE 4TH OF JULY HOLIDAY RESPONSIBLY Contact: Media Relations Detail (562) 570-5273 The 4th of July holiday is a great day to spend with friends and family and celebrate this great countries independence. The Long Beach Police Department encourages those celebrating the holiday to do so in a safe and responsible manner. We are reminding residents and visitors that all fireworks, including those marked “Safe and Sane,” are illegal in the City of Long Beach. The Police Department will be out in force the days leading up to and on July 4th to ensure compliance with the Long Beach City Ordinance that bans fireworks. Anyone found in violation of the city ordinance may be cited or arrested. Those found in violation may be faced with a $1,000 fine, sentenced to jail for six months, or both. The fines and penalties may increase depending on the fireworks’ classification. Police officers will also strictly enforce laws pertaining to drunk driving, drinking in public, public intoxication, underage drinking, and illegal barbecues. The use of personal barbecues in all city parks and beaches is prohibited. Use of permanent city installed barbecues is acceptable. All parks and beaches from Shoreline Drive to the end of the Peninsula will be heavily patrolled. For those who would like to enjoy fireworks, please plan to attend a safe and professionally controlled firework show to ensure the safety of your family, friends, and property. For those looking for a location to dispose of fireworks may voluntarily do so at all fire stations, Lifeguard Headquarters (2100 E. Ocean Boulevard, on the West side of the Junipero lot), or any police station. The Long Beach Police Department encourages responsible parenting and request that parents closely supervise their children, set expectations for proper behavior, and monitor their activities. We also urge everyone to follow the “See Something, Say Something”, philosophy, and report suspicious or illegal activity by calling Long Beach Police Dispatch at (562) 435-6711 or 9-1-1. Together, we can enjoy a safe holiday. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2664,https://www.pinevillenc.gov/government/departments/police/join-ppd/,Training & Hiring Info,Info About Officers,"Join PPD - Town of Pineville, NC","",200,403 Forbidden,"[""Join PPD"", ""Join PPD"", ""Town of Pineville Updates""]","[""Join Pineville Police Department"", ""Town of Pineville Contacts"", ""Important News & Updates"", ""Special Meeting Notice"", ""Early Voting in Pineville"", ""Advisory Board Openings for Pineville Residents"", ""Follow Pineville on Facebook""]","[""Basic Law Enforcement Training Programs"", ""Apply through our Human Resources Department:"", ""Emergency: Police, Fire & Rescue"", ""Non-Emergency:"", ""Town Hall Mailing Address:"", ""Town Hall Physical Address:"", ""Town Hall Office Hours:""]",[],[],[],"" -2665,https://delcopa.gov/sustainability/commission/otherpdfs/sustcommmtg_slidedeck_2021-8-19.pdf,Poor Data Source,Poor Data Source,"404 - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert " -2666,https://coloradosprings.gov/police-department/page/alternate-education-program,Resources,Agency-Published Resources,Alternate Education Program | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""Alternate Education Program""]","[""Search"", ""Educational Program"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]","[""Do you have some college credits?"", ""Do you need to get some college credits?"", ""Do you have military experience?""]","[""Participating Schools with CSPD AEP:""]","[""CSU - Global"", ""Pikes Peak State College"", ""REPORT ONLINE""]",[],"" -2667,https://www.tukwilawa.gov/departments/police/command-staff-bios/pd-boyd-kraig-bio-pic/,Media Bulletins,Agency-Published Resources,"PD-Boyd, Kraig Bio Pic - City of Tukwila","",200,Home - City of Tukwila,"[""City of Tukwila News""]","[""PD-Boyd, Kraig Bio Pic""]",[],"[""City of Tukwila""]","[""I am a..."", ""Online Services"", ""Most Requested Forms""]",[],"" -2668,https://coloradosprings.gov/police-department/article/news/adrian-vasquez-serve-interim-police-chief,Media Bulletins,Agency-Published Resources,Adrian Vasquez to serve as interim police chief following Niski retirement | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""Adrian Vasquez to serve as interim police chief following Niski retirement""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[],"" -2669,https://www.gurnee.il.us/government/departments/police-department/community-involvement/gurnee-citizen-police-academy/gurnee-citizen-police-academy/week-6,Training & Hiring Info,Info About Officers,Gurnee Citizen Police Academy,"",200," - Village of Gurnee -","[""Police Department""]","[""Gurnee Citizen Police Academy"", ""Youth Citizen Police Academy""]","[""Now accepting applications for the Spring 2024 session!"", ""Click here to register for the Gurnee Citizen Police Academy"", ""Village Hall""]",[],[],[],search edit file-word file-empty angle-left angle-right angle-up angle-down dollar calendar-check-o printer search2 briefcase circle-up circle-right circle-down circle-left share2 mail4 facebook twitter youtube file-pdf search edit file-word file-empty angle-left angle-right angle-up angle-down dollar calendar-check-o printer search2 briefcase circle-up circle-right circle-down circle-left share2 mail4 facebook twitter youtube file-pdf -2670,https://delcopa.gov/council/2018minutes/050218minutes.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -2671,https://brookfieldil.gov/brookfields-police-and-fire-chiefs-safety-talk-for-seniors-9-19-19/mtc-2019-poster-3/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -2672,https://alpha.austin.gov/police-oversight/joint-report-analysis-of-apd-racial-profiling-data/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -2673,https://delcopa.gov/publicrelations/releases/2020/delcocares_sept1.html,Not Criminal Justice Related,Not Criminal Justice Related,"Applications for Delco CARES Housing Assistance Program Available September 1 - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Applications for Delco CARES Housing Assistance Program Available September 1""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]","[""Residents affected by the COVID-19 Pandemic may be eligible for mortgage, rent, and utility assistance""]",[],[],"" -2674,https://www.milpitas.gov/milpitas/departments/police/community-relations/citizen-volunteer-and-explorer-applications/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -2675,https://www.mass.gov/news/governor-baker-signs-police-reform-legislation,Poor Data Source,Poor Data Source,"","",403,"","","","","","","","" -2676,https://frederica.delaware.gov/tag/police-officer/,Training & Hiring Info,Info About Officers,police officer Archives - Frederica,"",200,"Home - Frederica - Kent County, Delaware","[""Frederica""]","[""Delaware"", ""Ad for Part-Time Police Officer""]","[""Menu"", ""Online Bill Pay"", ""Connect With Us!""]","[""Posts Tagged With: “police officer”""]",[],[],"Skip to Content Skip to Footer Toggle navigation Menu Home Government Town Hall Town Council & Employees Town Charter Town Code Planning & Zoning Meetings & Events Past Meeting Minutes & Agendas Flag Status Info Additional Resources Finance Fire Company Forms & Reports Police Department Trash & Recycling Water Dept./Public Works Community Places Around Town History Photo Gallery Town Newsletters News & Notices Online Bill Pay Contact Us Contact Form FOIA Form Utility Contact Form Skip to Content Skip to Footer Toggle navigation Menu Home Government Town Hall Town Council & Employees Town Charter Town Code Planning & Zoning Meetings & Events Past Meeting Minutes & Agendas Flag Status Info Additional Resources Finance Fire Company Forms & Reports Police Department Trash & Recycling Water Dept./Public Works Community Places Around Town History Photo Gallery Town Newsletters News & Notices Online Bill Pay Contact Us Contact Form FOIA Form Utility Contact Form Skip to Content Skip to Footer Toggle navigation Menu Home Government Town Hall Town Council & Employees Town Charter Town Code Planning & Zoning Meetings & Events Past Meeting Minutes & Agendas Flag Status Info Additional Resources Finance Fire Company Forms & Reports Police Department Trash & Recycling Water Dept./Public Works Community Places Around Town History Photo Gallery Town Newsletters News & Notices Online Bill Pay Contact Us Contact Form FOIA Form Utility Contact Form Frederica Delaware Frederica Delaware Frederica Delaware Frederica Delaware Posts Tagged With: “police officer” Ad for Part-Time Police Officer The Town of Frederica is seeking a part-time police officer to join our team. The ad is running in the Delaware state news from June 26, 2016 to July 3, 2016. Please have all applications submitted by July 11, 2016. See below link for a copy of the running ad and application details. Ad for Part Time Police Officer Read More... << Mar 2024 >> S M T W T F S 25 26 27 28 29 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 2 3 4 5 6 Sign Up for Emergency Notifications Today! Online Bill Pay Connect With Us! " -2677,https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0250/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -2678,https://alpha.austin.gov/police-oversight/formal-complaint-obedience-to-orders-insubordination/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -2679,http://www.tampa.gov/fire-and-police-pension/info/meeting-notices,List of Data Sources,Info About Agencies,Notices For Upcoming Meetings | City of Tampa, ,200,City of Tampa,"[""Notices For Upcoming Meetings""]","[""Fire And Police Pension"", ""Key Services"", ""Report A Problem"", ""Contact"", ""Connect With Us""]",[],[],[],[],"" -2680,http://www.longbeach.gov/police/contact-us/,Contact Info & Agency Meta,Info About Agencies,Contact Us,Long Beach Police Department - Contact Us,200,City of Long Beach,"[""Police Department""]","[""Police Department Phone List""]","[""Mayor"", ""City Council"", ""Rex Richardson"", ""Mary Zendejas"", ""Cindy Allen"", ""Kristina Duggan"", ""Daryl Supernaw"", ""Megan Kerr"", ""Suely Saro"", ""Roberto Uranga"", ""Al Austin"", ""Dr. Joni Ricks-Oddie"", ""Dawn McIntosh"", ""Laura L. Doud"", ""Doug Haubert"", ""Tom Modica"", ""Monique DeLaGarza"", ""City-Wide Elected Officials"", ""Appointed Officials"", ""Online Payments"", ""Online Services"", ""In-Person Services"", ""Opening a Business"", ""Doing Business With The City"", ""Resources"", ""Most Popular"", ""Online Resources"", ""Attractions"", ""Business Associations"", ""Travel Resources"", ""Departments"", ""Job Opportunities"", ""Information"", ""LBPD"", ""Employment"", ""Bureaus"", ""News & Events"", ""Crime Info"", ""How Do I"", ""How Do I"", ""Contact Us"", ""Do."", ""Discover."", ""Connect."", ""Ask.""]","["""", ""1st District"", ""2nd District"", ""3rd District"", ""4th District"", ""5th District"", ""6th District"", ""7th District"", ""8th District"", ""9th District"", ""City Attorney"", ""City Auditor"", ""City Prosecutor"", ""City Manager"", ""City Clerk""]","[""File a Report Online"", ""Submit a Tip"", ""Submit a Commendation"", ""File a Complaint"", ""Ride Along Program"", """", """", """", """", ""Crime Lab Survey"", """"]",[],"" -2681,http://www.longbeach.gov/police/press-releases/dui-checkpoint-nets-two-arrests-3-/,Media Bulletins,Agency-Published Resources,DUI Checkpoint Nets Two Arrests(3),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2682,https://dagsboro.delaware.gov/police-department/police-department/nick-disciullo-promotion-2019-2/,Poor Data Source,Poor Data Source,Nick Disciullo promotion 2019 - Town of Dagsboro,"",200,Home - Town of Dagsboro - Sussex County Delaware,[],"[""Nick Disciullo promotion 2019""]","[""Menu"", ""Online Payments"", ""Agendas & Minutes"", ""Contact Us"", ""Connect With Us!""]",[],[],[],Skip to Content Skip to Footer Toggle navigation Menu Home Departments Town Hall Police Department Water Department Government Town Council Town Council Members Planning Commission Town Zoning Map Town Code Board of Adjustment Members Budgets Town Elections Community General Town Information History Fire Department Taxes & Utilities Prince George’s Chapel Prince George’s Chapel Cemetery Comprehensive Land Use Plan Houses of Worship Cable Services Hurricane Preparedness Flood Zone Information Christmas Events Forms Contact Us Skip to Content Skip to Footer Toggle navigation Menu Home Departments Town Hall Police Department Water Department Government Town Council Town Council Members Planning Commission Town Zoning Map Town Code Board of Adjustment Members Budgets Town Elections Community General Town Information History Fire Department Taxes & Utilities Prince George’s Chapel Prince George’s Chapel Cemetery Comprehensive Land Use Plan Houses of Worship Cable Services Hurricane Preparedness Flood Zone Information Christmas Events Forms Contact Us Skip to Content Skip to Footer Toggle navigation Menu Home Departments Town Hall Police Department Water Department Government Town Council Town Council Members Planning Commission Town Zoning Map Town Code Board of Adjustment Members Budgets Town Elections Community General Town Information History Fire Department Taxes & Utilities Prince George’s Chapel Prince George’s Chapel Cemetery Comprehensive Land Use Plan Houses of Worship Cable Services Hurricane Preparedness Flood Zone Information Christmas Events Forms Contact Us Listen Nick Disciullo promotion 2019 << Mar 2024 >> S M T W T F S 25 26 27 28 29 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 2 3 4 5 6 Online Payments Agendas & Minutes Contact Us Connect With Us! Listen Nick Disciullo promotion 2019 << Mar 2024 >> S M T W T F S 25 26 27 28 29 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 2 3 4 5 6 Online Payments Agendas & Minutes Contact Us Connect With Us! Listen Nick Disciullo promotion 2019 << Mar 2024 >> S M T W T F S 25 26 27 28 29 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 2 3 4 5 6 Online Payments Agendas & Minutes Contact Us Connect With Us! Listen Nick Disciullo promotion 2019 << Mar 2024 >> S M T W T F S 25 26 27 28 29 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 2 3 4 5 6 Online Payments Agendas & Minutes Contact Us Connect With Us! -2683,https://www.sandiego.gov/department-document/police-arrest-suspect-encanto-homicide,Media Bulletins,Agency-Published Resources,Police Arrest Suspect In Encanto Homicide | City of San Diego Official Website,"",200,City of San Diego Official Website,"[""City of San Diego Official Website""]","[""Main navigation"", ""Leisure"", ""Resident Resources"", ""Doing Business"", ""Library"", ""Public Safety"", ""City Hall"", ""Police Arrest Suspect In Encanto Homicide"", ""Footer"", ""Accessibility Tools""]",[],"[""Parks"", ""Outdoors"", ""Neighborhoods"", ""Recreational Activities"", ""Street Maintenance"", ""Plan"", ""Fix"", ""Build"", ""Programs & Events"", ""Services"", ""Kids & Teens"", ""eCollection"", ""Police"", ""Fire-Rescue"", ""Lifeguards"", ""City Officials"", ""City Government""]",[],[],"" -2684,https://wildwoodpolice-fl.gov/attempt_to_identify_type-sitemap.xml,Poor Data Source,Poor Data Source,XML Sitemap,"",200,Home - Wildwood Police,"[""XML Sitemap""]",[],[],[],[],[],"XML Sitemap Generated by Yoast SEO , this is an XML Sitemap, meant for consumption by search engines. You can find more information about XML sitemaps on sitemaps.org . This XML Sitemap contains 2 URLs. URL Images Last Mod. https://wildwoodpolice-fl.gov/attempt_to_identify_type/burglary/ 0 2022-01-12 20:20 +00:00 https://wildwoodpolice-fl.gov/attempt_to_identify_type/theft/ 0 2022-05-06 13:32 +00:00 " -2685,https://police.greenvillesc.gov/faq.aspx?qid=359,Not Criminal Justice Related,Not Criminal Justice Related,FAQs • Is automated collection safer than manual?,"",200,"Police Department | Greenville, SC - Official Website",[],"[""▼ Recycling""]","[""Categories"", ""Live Edit"", ""Loading""]",[],[],[],Skip to Main Content -2686,http://www.longbeach.gov/police/press-releases/critical-missing-juvenile---michael-veal/,Media Bulletins,Agency-Published Resources,CRITICAL MISSING JUVENILE - MICHAEL VEAL,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 12/6/2018 FOR IMMEDIATE RELEASE Press Release # Subject: *UPDATE* LOCATED - CRITICAL MISSING JUVENILE - MICHAEL VEAL Contact: Media Relations Detail (562) 570-5273 *UPDATE* Officers found missing juvenile unharmed at a shopping center in the City of Lakewood and has been reunited with his family. Original News Release Published 12/5/18: Click on picture to enlarge The Long Beach Police Department is asking for the public’s help in locating a 12-year-old juvenile who suffers from developmental disabilities and was last seen on Wednesday, December 5, 2018. Parent reported last seeing the victim at their residence in the 6100 block of Linden Avenue at approximately 5:00 a.m., when the parent returned home at 9:00 a.m., the juvenile was missing. The juvenile was last seen wearing a yellow and purple “Lakers” sweatshirt, gray pants, and red shoes. Missing Juvenile Veal is described as follows: Name: Michael Veal Age: 12 years old Gender: Male Race: African American Height: 5’03” Weight: 110 lbs Hair: Black Eyes: Brown Clothing: Yellow and purple Lakers sweatshirt, gray pants, Red shoes. Scars/Marks: None Medical Alerts: Developmental Disabilities The Long Beach Police Department continues to search for the victim. Local hospitals have been alerted and area law enforcement and public transportation agencies have also been notified. Anyone who sees this individual or has information on his whereabouts is asked to call the Long Beach Police Department at (562) 435-6711 or 9-1-1. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2687,https://delcopa.gov/vote/votebymail.html,Not Criminal Justice Related,Not Criminal Justice Related,"Vote-by-Mail Ballots - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""Vote-by-Mail Ballots""]",[],"[""About Vote-by-Mail Ballots"", ""Important Vote-by-Mail Dates"", ""APPLYING FOR YOUR VOTE-BY-MAIL BALLOT"", ""RECEIVING AND COMPLETING YOUR MAIL-IN BALLOT OR ABSENTEE BALLOT"", ""VOTE-BY-MAIL ELECTION BALLOT STATUS CHECK"", ""RETURNING YOUR MAIL-IN/ABSENTEE BALLOT"", ""LAST MINUTE EMERGENCIES"", ""MILITARY AND OVERSEAS VOTERS"", ""HOW TO VOTE IN-PERSON IF YOU HAVE RECEIVED A VOTE-BY-MAIL BALLOT"", ""Delco Votes!"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"" -2688,https://www.dps.nm.gov/blog/2021/02/10/update-cancel-amber-alert-albuquerque-police-department/,Media Bulletins,Agency-Published Resources,UPDATE: CANCEL AMBER ALERT-Albuquerque Police Department. - NM Department of Public Safety,"",200,Home - NM Department of Public Safety,"[""UPDATE: CANCEL AMBER ALERT-Albuquerque Police Department.""]",[],"[""Location"", ""Sitemap"", ""Quick Links"", ""Social Media Links""]",[],[],[],"Manage Cookie Consent We use cookies to optimize our website and our service. Functional Functional Always active The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network. Preferences Preferences The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user. Statistics Statistics The technical storage or access that is used exclusively for statistical purposes. The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you. Marketing Marketing The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes. Manage options Manage services Manage {vendor_count} vendors Read more about these purposes Accept Deny Preferences Save preferences Preferences Cookie Policy Privacy Statement {title} Manage Cookie Consent We use cookies to optimize our website and our service. Functional Functional Always active The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network. Preferences Preferences The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user. Statistics Statistics The technical storage or access that is used exclusively for statistical purposes. The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you. Marketing Marketing The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes. Manage options Manage services Manage {vendor_count} vendors Read more about these purposes Accept Deny Preferences Save preferences Preferences Cookie Policy Privacy Statement {title} Manage Cookie Consent Manage Cookie Consent " -2689,https://oceancitymd.gov/oc/ocean-city-police-arrest-two-individuals-after-a-serious-assault/,Media Bulletins,Agency-Published Resources,"Ocean City Police Arrest Two Individuals After a Serious Assault – Town of Ocean City, Maryland","",200,"Town of Ocean City, Maryland – A Vibrant Coastal Resort Community",[],"[""Post navigation""]","[""Related posts""]",[],[],[],"" -2690,https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0674/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -2691,https://delcopa.gov/planning/pdf/agendas/2020/agenda202010.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -2692,http://www.longbeach.gov/police/press-releases/traffic-fatality-pico-and-pier-c/,Media Bulletins,Agency-Published Resources,TRAFFIC FATALITY PICO and PIER C,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 9/22/2016 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: TRAFFIC FATALITY Contact: Media Relations Detail (562) 570-5273 On Thursday, September 22, 2016, at approximately 06:48 a.m., officers from the Long Beach Police Department were dispatched to the intersection of Pico Avenue and Pier C Street regarding a single vehicle injury traffic collision. Upon arrival officers located a 2001 Ford Crown Victoria that had collided with a telephone pole at the southwest corner of the intersection. Long Beach Fire Department personnel arrived shortly thereafter and determined the male driver deceased. The preliminary investigation revealed a 46 year old Long Beach resident was driving southbound Pico Avenue approaching Pier C Street at a high rate of speed when he attempted to conduct an unsafe lane change. As a result of the unsafe lane change, the vehicle collided with a raised median, and lost control and collided with a telephone pole on the southwest corner of Pico Avenue and Pier C Street. Witnesses to this incident are asked to call Detective Sirilo Garcia of the Long Beach Police Department's Collision Investigation Detail at 562-570-7355. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2693,https://townofspringfield.colorado.gov/departments/police-department/winter-vehicle-safety-kits,Poor Data Source,Poor Data Source,Home | Town of Springfield,"",200,Home | Town of Springfield,"[""Town of Springfield""]","[""Events"", ""News"", ""Live Feed"", ""Find Us"", ""Stay Connected""]",[],[],[],[],"Skip to content Town of Springfield Menu Translate Translate Search Skip Gallery End of Gallery Municode contact us! Pay my utility bill pay my court/traffic payment Events See All Events Apr 2 7:00 AM — 7:00 PM Town of Springfield Regular Municipal Election Apr 2 Apr 11 6:00 PM — 8:00 PM Board of Trustees Regular Meeting Apr 11 May 9 6:00 PM — 8:00 PM Board of Trustees Regular Meeting May 9 May 27 All Day TOWN OF SPRINGFIELD CLOSED: MEMORIAL DAY May 27 News 2024 Town of Springfield Municipal Election TOWN OF SPRINGFIELD REGULAR MUNICIPAL ELECTION APRIL 2, 2024 The Town of Springfield Regular Municipal Election will be held on Tuesday, April 2, 2024. The Election will b... New Mobile App! We're thrilled to announce the new app for the Town of -Springfield! It's everything Town of Springfield, in your -pocket. - - With the new app, you can access documents, event... About our Town Springfield is located in the southeastern corner of the State of Colorado, approximately 1,500 miles from either coast, 30 miles from Kansas, 30 miles from Oklahoma, and halfway ... Surveying Town Water Lines You may have noticed markings on the streets throughout town like the ones pictured below. These are a part of the first step of surveying town water lines in the construction of ... See All Posts Live Feed Town of Springfield 2 days ago The Town of Springfield Landfill will be closed today March 23, 2024 due to high winds. Town of Springfield 5 days ago We have been receiving an increase in phone calls requesting contact information for businesses in the Town of Springfield. Cause of this we have come to the realization that we ei... Read More Town of Springfield 11 days ago The Town of Springfield Board of Trustees will hold its Regular Meeting on March 14, 2024 at 6:00 p.m.. The agenda is linked here: ...https://5il.co/2gj... Read More Town of Springfield 26 days ago TOWN OF SPRINGFIELD RESIDENTS: The towns main water well has been repaired and you can resume water usage. Thank you for your cooperation. Town of Springfield 27 days ago UPDATE: The water usage restriction has been extended until the morning of Thursday, February 29, 2024. Please only use water for essential house hold use. NO WATERING LAWNS, TREES... Read More See All Posts Find Us Town of Springfield 748 Main St. Springfield, CO 81073 Phone: (719) 523-4528 Fax: (719) 523-6956 tnewman@springfieldco.gov/srobins@springfieldco.gov Stay Connected New to town? Check out our New Resident Information Page! Copyright © 2024 Town of Springfield. All rights reserved. Powered By Thrillshare " -2694,http://www.longbeach.gov/police/press-releases/traffic-fatality-7-/,Media Bulletins,Agency-Published Resources,TRAFFIC FATALITY(7),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 2/26/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: TRAFFIC FATALITY Contact: Media Relations Detail (562) 570-5273 On Wednesday, February 25, 2015, at approximately 7:16 p.m., Long Beach Police responded to the area of Redondo Avenue and 4th Street regarding an injury traffic collision, which resulted in the death of a male adult. Arriving officers discovered a 2013 Kawasaki Ninja motorcycle had collided with a 2007 Nissan Murano. Based on the preliminary investigation, detectives believe the motorcycle driver, a 33-year-old resident of Temecula, failed to stop for the red light at 4th Street and collided into the Nissan. The motorcyclist was traveling northbound on Redondo Avenue approaching a yellow light at 4th Street at a high rate of speed. Three northbound vehicles stopped in the #1 and #2 lanes, for the signal that had just turned red. The motorcyclist split traffic between the two lanes, entered the intersection on a red light, and struck the Nissan. The Nissan Murano, driven by a 45-year-old resident of Long Beach, was initiating a left turn from southbound Redondo Avenue to eastbound 4th Street when it was struck. After the collision, the motorcycle veered right, slid on the ground, and collided into a traffic light pole. The driver became trapped between the pole and the motorcycle. The Nissan driver, who is an emergency room nurse, immediately stopped, exited the vehicle, and rendered aid to the motorcycle driver. Long Beach Fire Department Paramedics responded and transported the motorcycle driver to a local hospital where he succumbed to his injuries. The identity of the driver is being withheld pending notification of the next of kin. The driver of the Nissan did not sustain any injuries from the collision. Anyone with information regarding this incident is asked to call Collision Investigations Detective Steve Fox at (562) 570-7110. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2695,https://ose.louisiana.gov/event/police-corporal-14/,Poor Data Source,Poor Data Source,Police Corporal | Louisiana Office of State Examiner,"",200,403 Forbidden,"["""", ""Police Corporal""]",[],"[""Promotional Level""]",[],[],"[""Recent Posts"", ""Archives"", ""Categories"", ""Meta""]","Search Search Search Search Personnel Action Form About Testing & Employment Eligibility Lists Jurisdictions Resources Contact ADA Testing Accommodations Statewide Testing This event has passed. Police Corporal Promotional Level Posting Period 05/13/2021 - 06/02/21 Application Deadline 06/02/21 Jurisdiction Lake Charles Application Search Recent Posts Holiday Closures Archives June 2023 Categories Uncategorized Meta Log in Entries feed Comments feed WordPress.org Sign Up for Updates Δ 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Privacy Policy Facebook Copyright © 2024 Office of State Examiner Site by Gatorworks. Search Personnel Action Form About Testing & Employment Eligibility Lists Jurisdictions Resources Contact ADA Testing Accommodations Statewide Testing Search Personnel Action Form Search Search Search Personnel Action Form This event has passed. Police Corporal Promotional Level Posting Period 05/13/2021 - 06/02/21 Application Deadline 06/02/21 Jurisdiction Lake Charles Application Search Recent Posts Holiday Closures Archives June 2023 Categories Uncategorized Meta Log in Entries feed Comments feed WordPress.org This event has passed. Police Corporal Promotional Level Posting Period 05/13/2021 - 06/02/21 Application Deadline 06/02/21 Jurisdiction Lake Charles Application Search Recent Posts Holiday Closures Archives June 2023 Categories Uncategorized Meta Log in Entries feed Comments feed WordPress.org This event has passed. Police Corporal Promotional Level Posting Period 05/13/2021 - 06/02/21 Application Deadline 06/02/21 Jurisdiction Lake Charles Application This event has passed. Police Corporal Promotional Level Posting Period 05/13/2021 - 06/02/21 Application Deadline 06/02/21 Jurisdiction Lake Charles Application This event has passed. Police Corporal Promotional Level Posting Period 05/13/2021 - 06/02/21 Application Deadline 06/02/21 Jurisdiction Lake Charles Application This event has passed. Police Corporal Promotional Level Promotional Level Promotional Level Posting Period 05/13/2021 - 06/02/21 Application Deadline 06/02/21 Jurisdiction Lake Charles Posting Period 05/13/2021 - 06/02/21 Application Deadline 06/02/21 Jurisdiction Lake Charles Posting Period 05/13/2021 - 06/02/21 Application Deadline 06/02/21 Jurisdiction Lake Charles Posting Period 05/13/2021 - 06/02/21 Posting Period Application Deadline 06/02/21 Application Deadline Jurisdiction Lake Charles Jurisdiction Application Search Search Sign Up for Updates Δ Sign Up for Updates Δ Sign Up for Updates 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Privacy Policy Facebook 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Privacy Policy 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Phone: (225) 925-4400 Privacy Policy Facebook Facebook Facebook Copyright © 2024 Office of State Examiner Site by Gatorworks. Copyright © 2024 Office of State Examiner Site by Gatorworks. " -2696,https://delcopa.gov/planning/pdf/currentprojects/rosetreeplayoverallsiteloc.pdf,Not Criminal Justice Related,Not Criminal Justice Related,"","",200,"","","","","","","","" -2697,https://delcopa.gov/publicrelations/releases/2022/www.vaccines.gov,Poor Data Source,Poor Data Source,"404 - Delaware County, Pennsylvania","",200,"Delaware County, Pennsylvania","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[],"Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more © 2024 County of Delaware, PA. All rights reserved. Scroll Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play Menu Elected Officials Courts A to Z Public Access Stay Informed Live, Work, & Play 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page 404 Error Home / 404 Error Page Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Opps, something went wrong...please try again. Want to the report the problem? Please email the web master at webmaster@co.delaware.pa.us Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert About Delaware County Delaware County, presently consisting of over 184 square miles divided into forty-nine municipalities is the oldest settled section of Pennsylvania. Read more Contact Us 201 West Front Street, Media, PA 19063 8:30AM - 4:30PM Monday - Friday 610-891-4000 webmaster@co.delaware.pa.us Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Press Releases What's the latest news from County Council and Delaware County Government...View our Press Releases: Read more Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert Quick Links Juror eResponse Crisis Connection Substance Abuse and Recovery Task Force Delco Alert " -2698,http://www.longbeach.gov/police/press-releases/murder-ruled-self-defense/,Media Bulletins,Agency-Published Resources,MURDER RULED SELF-DEFENSE,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 5/2/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: MURDER RULED SELF-DEFENSE Contact: Media Relations Detail (562) 570-5273 The Los Angeles County District Attorney's Office has ruled the April 23, 2014, stabbing, which resulted in the death of 47-year-old Michael Hess of Long Beach, a case of self defense. The preliminary investigation determined that Hess had been involved in a dispute with a 52-year-old male subject who resided in his apartment complex, located in the 6500 block of Indiana Avenue, prior to the stabbing. That subject was identified and arrested the following day, April 24, 2014. As the investigation progressed, detectives learned that Hess was involved in both a verbal dispute and physical altercation with the male subject in the garage area, over a personal disagreement. The male subject attempted to end the dispute; however, Victim Hess would not let him. Hess repeatedly re-instigated the argument, along with the physical altercation, causing the male subject to eventually retreat into his apartment inside the complex. Victim Hess continued to pursue the male subject and climbed a 6-foot gate to gain access to a secured area of the complex where the male subject’s window could be accessed. Realizing that Hess was attempting to get in the apartment through the bathroom window, the male subject’s roommate called 9-1-1. Hess was successful in pulling a screwed in screen off of the bathroom window, and climbing inside. Knowing that Hess was trained in martial arts, the male subject armed himself with a kitchen knife. When Hess entered the male subject’s bedroom and went after him, the male subject defended himself, which resulted in Hess sustaining multiple stab wounds. Hess was determined deceased at the scene by paramedics. Long Beach Police Homicide detectives concluded their investigation, and presented the case, which included video evidence that corroborated witness statements, to the Los Angeles County District Attorney’s Office on April 28, 2014. The District Attorney’s office reviewed the case and determined that the male subject had acted in self defense and filing charges was not warranted. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2699,http://www.lafayettepolice.us/1/home,Poor Data Source,Poor Data Source,"Lafayette, IN - Official Website | Official Website","",200,"Police Department | Lafayette, IN - Official Website","[""Popular Links"", ""Stay Up to Date""]",[],"[""Quick Links"", ""March 2024"", ""March 2024"", ""Contact Us"", ""FAQs"", ""Site Links"", ""Loading""]","[""Holiday lights at Riehle Plaza"", ""Family on pedal boat in Columbian Park lagoon"", ""America concert at Loeb Stadium"", ""Pickelball courts at McCaw Park"", ""Nick Bostic Marquis de Lafayette presentation at Aviators game"", ""Sunset from inside Loeb Stadium"", ""Goat kids at Columbian Park Zoo Petting Zoo area"", ""Rush Pavilion and the Lagoon"", ""Deputy Chief sworn-in along with 4 other promotions for LFD"", ""Avoid Ticket Scams!"", ""INDOT Teal Road Reconstruction"", ""Mon, Mar. 25"", ""Tue, Mar. 26"", ""Thu, Mar. 28"", ""Mon, Mar. 25"", ""Tue, Mar. 26"", ""Thu, Mar. 28"", ""Most Recent""]",[],[],Skip to Main Content -2700,https://beaumonttexas.gov/beaumont-police-arrest-port-arthur-man-for-murder/,Media Bulletins,Agency-Published Resources,"","",404,"","","","","","","","" -2701,https://alpha.austin.gov/es/police-oversight/formal-complaint-impartial-attitude-and-courtesy-28/,Poor Data Source,Poor Data Source,"","",200,"","","","","","","","" -2702,https://rexburg.us/police-man-sexually-abused-hairstylist-in-ogden-barbershop/,Media Bulletins,Agency-Published Resources,"","",522,"","","","","","","","" -2703,http://www.longbeach.gov/police/press-releases/two-suspects-arrested-in-murder-case/,Media Bulletins,Agency-Published Resources,TWO SUSPECTS ARRESTED IN MURDER CASE,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 11/26/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: TWO SUSPECTS ARRESTED IN MURDER CASE Contact: Media Relations Detail (562) 570-5273 On Friday, November 21, 2014, Long Beach Police arrested 19-year old Ricardo Gonzalez of West Covina and 18-year-old Carlos Alexis Escalante of Long Beach in connection with two shootings in North Long Beach. Officers stopped Gonzalez and Escalante when they were driving in a vehicle together. During a search of the vehicle, officers found a quantity of drugs and a gun, which led to additional drugs and weapons charges. Detectives believe the two are responsible for the May 26, 2014, murder of Enrique Lopez in the 2800 block of E. 65th Street and the attempted murder of four additional individuals who were standing near the victim when the shooting occurred. The suspects were also charged with attempted murder for their involvement in a shooting that occurred on October 23, 2014, in the area of Artesia Boulevard and Atlantic Avenue. Both incidents are believed to be gang related. Long Beach Homicide Detectives in collaboration with Gang Investigations Section Detectives presented their cases to the Los Angeles District Attorney’s Office for filing consideration. On November 25, 2014, the Los Angeles County District Attorney filed the following charges against both suspects: One count of murder Five counts of attempted murder Gang enhancements Weapons violations Possession of drugs with intent to distribute Gonzalez and Escalante are being held at Los Angeles County Jail. The investigation remains on going. Anyone with information regarding these crimes is urged to contact Long Beach Police Homicide Detective Hugo Cortes at (562) 570-7244. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2704,http://www.longbeach.gov/police/press-releases/dui-drivers-license-checkpoint-planned-this-weekend-1-/,Media Bulletins,Agency-Published Resources,DUI DRIVERS LICENSE CHECKPOINT PLANNED THIS WEEKEND(1),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 2/19/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: DUI/DRIVERS LICENSE CHECKPOINT PLANNED THIS WEEKEND Contact: Media Relations Detail (562) 570-5273 The Long Beach Police Department’s Traffic Section will conduct a DUI/Drivers License Checkpoint on February 21, 2015, in the East Division, between the hours of 7:00 p.m. Saturday night until 3:00 a.m. Sunday morning. The deterrent effect of DUI checkpoints is a proven resource in reducing the number of persons killed and injured in alcohol or drug involved crashes. Research shows that crashes involving an impaired driver can be reduced by up to 20% when well-publicized DUI checkpoints and proactive DUI patrols are conducted routinely. In California, this deadly crime led to 802 deaths and nearly 24,000 serious injuries in 2012 because someone failed to designate a sober driver. Nationally, the latest data shows nearly 10,000 were killed by an impaired driver. “Over the course of the past three years in Long Beach, DUI collisions have claimed nine lives and resulted in 315 injury crashes, harming 420 of our friends and neighbors,” said Long Beach Police Department Sergeant Aaron Alu. Officers will look for signs of alcohol and/or drug impairment with officers checking drivers for proper licensing, delaying motorists only momentarily. When possible, specially trained officers will be available to evaluate those suspected of drug-impaired driving, which now accounts for a growing number of impaired driving crashes. Drugs, which may impair driving, not only include illegal narcotics, but many prescription drugs, marijuana, and even some over-the-counter medications. DUI checkpoints are placed in locations based on collision statistics and frequency of DUI arrests, affording the greatest opportunity for achieving drunk and drugged driving deterrence. Locations are chosen with safety considerations for the officers and the public. Drivers caught driving impaired can expect the impact of a DUI arrest to include jail time, fines, fees, DUI classes, other expenses that can exceed $10,000 not to mention the embarrassment when friends and family find out. Funding for this checkpoint is provided to the Long Beach Police Department by a grant from the California Office of Traffic Safety, through the National Highway Traffic Safety Administration, reminding everyone to ‘Report Drunk Drivers – Call 9-1-1.’ This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2705,https://delcopa.gov/arpa/pdf/20220731annualarpareportfiled7-29-22final.pdf,Annual & Monthly Reports,Info About Agencies,"","",200,"","","","","","","","" -2706,https://brookfieldil.gov/publication/072512-july-25-2012-brookfield-police-pension-board/,Poor Data Source,Poor Data Source,"","",404,"","","","","","","","" -2707,https://southamptontownnypolice.gov/1370/2020-budgets,List of Data Sources,Info About Agencies,"2020 Budgets | Southampton, NY - Official Website","",200,"Police | Southampton, NY - Official Website","[""2020 Budgets""]",[],"[""Site Tools"", ""2020 Budget"", ""Contact Us"", ""Site Links"", ""Loading""]","[""2020 Adopted Budget - Capital"", ""2020 Adopted Budget - Operating"", ""2020 Tentative Budget - Operating"", ""2020 Tentative Budget - Capital""]",[],[],"Skip to Main Content EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Government Town Services Community Info How Do I Translate Page Site Tools Home My Account Printer Friendly Email Page Contact Us RSS Site Map Translate Page Notifications Documents Search Home Government Departments Finance (Comptroller) 2020 Budgets 2020 Budgets 9 1 1 1 2020 Budget 2020 Adopted Budget - Capital Link to page 2020 Adopted Budget - Operating Link to page 2020 Tentative Budget - Operating Link to page 2020 Tentative Budget - Capital Link to page 2020 Adopted Budget - Capital 2020 Adopted Budget - Operating 2020 Tentative Budget - Operating 2020 Tentative Budget - Capital Town Clerk Meetings, Agendas & Minutes Pay Your Taxes Online Services Applications, Forms & Fees Notify Me® FOIL Requests Contact Us Town of Southampton 116 Hampton Road Southampton, NY 11968 Phone: 631-283-6000 Banner photo credit: robertseifertphotography.com Site Links Contact Us Site Map Accessibility Copyright Notices Intranet Job Opportunities Title VI Non-discrimination Policy /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Government Town Services Community Info How Do I Translate Page Site Tools Home My Account Printer Friendly Email Page Contact Us RSS Site Map Translate Page Notifications Documents Search Home Government Departments Finance (Comptroller) 2020 Budgets 2020 Budgets 9 1 1 1 2020 Budget 2020 Adopted Budget - Capital Link to page 2020 Adopted Budget - Operating Link to page 2020 Tentative Budget - Operating Link to page 2020 Tentative Budget - Capital Link to page 2020 Adopted Budget - Capital 2020 Adopted Budget - Operating 2020 Tentative Budget - Operating 2020 Tentative Budget - Capital Town Clerk Meetings, Agendas & Minutes Pay Your Taxes Online Services Applications, Forms & Fees Notify Me® FOIL Requests Contact Us Town of Southampton 116 Hampton Road Southampton, NY 11968 Phone: 631-283-6000 Banner photo credit: robertseifertphotography.com Site Links Contact Us Site Map Accessibility Copyright Notices Intranet Job Opportunities Title VI Non-discrimination Policy /QuickLinks.aspx Government Websites by CivicPlus® Enable Google Translate EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... EMERGENCY ALERT Notice of LIRR Service Change and Lewis Road Closing This Weekend Read On... Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In Create a Website Account - Manage notification subscriptions, save form progress and more. Website Sign In " -2708,http://www.longbeach.gov/police/press-releases/protect-yourself-from-fraud-this-holiday-season/,Media Bulletins,Agency-Published Resources,Protect Yourself from Fraud this Holiday Season,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 12/2/2015 FOR IMMEDIATE RELEASE Press Release # Subject: PROTECT YOURSELF FROM FRAUD THIS HOLIDAY SEASON Contact: Media Relations Detail (562) 570-5273 The Long Beach Police Department would like to again remind consumers to take precautions to avoid becoming a fraud statistic this holiday season. During this time of the year, credit and debit cards are certain to be one of the most commonly used forms of payment. With the surge of reported domestic and international fraud schemes, including unsolicited, pervasive telephone calls and scams that have flourished throughout the Southern California region, consumers are urged to take extra precautions to secure their personal information. Here are a few prevention tips to help minimize your risk: • Monitor your ATM/debit card transactions. Card “skimming” is a process where a device is used to capture account and personal information encoded on magnetic strips, which has become pervasive throughout the country. • When entering your “PIN” number, shield the keypad with your other hand to prevent exposure to others or recordable devices • Make certain the ATM card reader is securely attached to the machine. If unsecured, alert the financial institution. • Be vigilant in monitoring your account(s) online or by telephone • Track and review all of your bank and credit card statements for irregular activity • Use the credit card feature at the gas pumps; your zip code, not PIN, is required • Never disclose to anyone over the telephone or online, your social security number, PIN number, bank account numbers or date of birth • Do not wire money to anyone you do not know • Do not respond to e-mails requesting you to “confirm,” “update,” or “provide” account information • Do not imprint social security or driver license numbers on your personal checks • Request from the credit reporting agencies (Trans Union, Equifax, and Experian) a copy of your “Consumer Credit Profile” Report and review for unusual activity. You may obtain a copy at “www.annualcreditreport.com.” • Use a “cross-shredder” to destroy sensitive documents including bank records and promotional “pre-approved” credit card applications To learn more about protecting yourself from fraud, contact the Long Beach Police Department Financial Crimes Section at (562) 570-7330. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2709,https://delcopa.gov/courts/pdf/emergencyjudicialorders/fifthemergencyorderextendingearlyparolereviewandsuchpossiblerelease.pdf,Court Cases,Jails & Courts Specific,"","",200,"","","","","","","","" -2711,https://barnegatpolice.us/barnegat-police-department-2/professional-standards/,Policies & Contracts,Info About Agencies,Professional Standards - Barnegat Township Police Department,"",200,Barnegat Township Police Department - Barnegat Township Police Department,"[""Professional Standards""]",[],[],"[""Directions"", ""Quick Links""]",[],[],"609-698-5000 Facebook Twitter Search for: Home FAQ About Us Accreditation Department Divisions Department History Mission and Values Professional Standards Recruiting Current News Neighborhood Policing Resources Contact Us Crime Reporting Contact Firearms Unit Contact Records Contact Traffic Safety Tip Line Go to... Home FAQ About Us Accreditation Department Divisions Department History Mission and Values Professional Standards Recruiting Current News Neighborhood Policing Resources Contact Us Crime Reporting Contact Firearms Unit Contact Records Contact Traffic Safety Tip Line Professional Standards Home / About Us / Professional Standards Professional Standards BTPD 2024-01-05T19:09:08+00:00 Click here for information and forms for filing a complaint of officer or employee misconduct. Completed forms can be submitted via email to carroll355@barnegatpolice.us, hand delivered t0 the Barnegat Police Department 900 West Bay Avenue or any Barnegat police officer, faxed to 609-698-1092, or mailed to: Barnegat Police Department, Attn: Captain Carroll, 900 West Bay Avenue Barnegat, NJ 08005 The Professional Standards Unit was created in order to further the department’s commitment to providing high-quality, professional service to all members of the community. The Unit oversees citizen complaints and conducts internal and administrative investigations regarding police personnel, firearms discharges, use of force investigations, and employee misconduct. The Unit also conducts annual inspections of functions within the agency to ensure efficient and effective operation as well as compliance with CALEA accreditation standards. Chief Germain sets high standards of conduct and performance for agency employees. Members of the community who feel that an officer or employee has failed to meet these high standards of service and wish to file a formal complaint may do so by calling the department at 609-698-5000 or by speaking with any department employee. Members of the community who feel that an officer has exceeded these high standards or done something exceptional and wishes to recognize or commend an officer may also do so by calling the department or by speaking with any department employee. 2023 Major Discipline 2023 Professional Standards Summary 2022 Major Discipline 2022 Professional Standards Summary 2021 Major Discipline 2021 Professional Standards Summary 2020 Major Discipline 2020 Professional Standards Summary 2019 Professional Standards Summary 2018 Professional Standards Summary 2017 Professional Standards Review 2016 Professional Standards Review 2015 Professional Standards Review 2014 Professional Standards Review Barnegat Township Police Department 900 West Bay Avenue Barnegat, NJ 08005 609-698-5000 Directions Quick Links About Us Crime Reporting Resources Contact Us Tip Line Copyright 2018 Content, Barnegat Township Police Department | All Rights Reserved Copyright 2018 Website Design | Web Alliance International Agency, LLC. | All Rights Reserved Facebook Twitter " -2712,http://www.longbeach.gov/police/press-releases/charges-filed-in-attempt-murder-case/,Media Bulletins,Agency-Published Resources,Charges Filed in Attempt Murder Case,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 6/26/2015 FOR IMMEDIATE RELEASE Press Release # Subject: CHARGES FILED IN ATTEMPT MURDER CASE Contact: Media Relations Detail (562) 570-5273 1/6/2016 UPDATE : Long Beach Police were notified that Victim David Garcia, 39 years old and a resident of Long Beach, succumbed to his injuries on January 3, 2016. Murder charges against Defendant Rangel are pending. He remains in custody. Original News Release: On Wednesday, June 24, 2015, charges were filed against a Long Beach man after he assaulted and critically injured another Long Beach man after involved in a dispute. On June 21, 2015, at approximately 4:50 p.m., Long Beach Police responded to a battery call at an apartment complex in the 1200 block of Ohio Avenue. When officers arrived, they discovered a 39-year-old man who had sustained blunt force injuries to the upper body. The victim was transported to a local hospital, where he remains in critical condition. The suspect, identified as 57-year-old Riccardo Rangel, remained at the scene and was arrested shortly after the incident. Due to the severity of the victim’s injuries, Homicide detectives became involved in the investigation. Through that investigation, detectives learned that the victim and suspect knew one another, and became involved in a dispute which escalated into the assault. Neither the victim nor suspect lived at the location. Detectives presented the case to the Los Angeles County District Attorney’s Office for review. The District Attorney’s office filed one count of attempt murder, and one count of assault with a deadly weapon against Rangel, who is being held on $1,030,000 bail at the L.A. County Men’s Jail. He is expected for his next court appearance on July 9th. Anyone with further information on this case is asked to contact Homicide Detectives Greg Krabbe and Mark Mattia at (562) 570-7244. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting LACrimeStoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2713,http://www.longbeach.gov/police/press-releases/traffic-fatality27/,Media Bulletins,Agency-Published Resources,TRAFFIC FATALITY,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 7/21/2017 FOR IMMEDIATE RELEASE Press Release # 2017 Subject: TRAFFIC FATALITY Contact: MEDIA RELATIONS (562) 570-5273 On Friday, July 21, 2017, at 4:37 a.m., Long Beach Police responded to Studebaker Road and Driscoll Street regarding an injury traffic collision. When officers arrived, they discovered a 2016 Honda Civic collided with a wooden power line pole causing it to collapse. The preliminary investigation indicated that the Honda, being driven by a 48-year-old male resident of Long Beach, was traveling northbound on Studebaker road. There was minimal damage to the vehicle as it impacted the light pole at slow speed south of the intersection with Driscoll Street. The driver didn’t appear to have any injuries from the collision and it appeared that the driver might have suffered a medical emergency at the time of the incident. There were no passengers in the vehicle and no other vehicles were involved. There were no witnesses to the collision. Long Beach Fire Department Paramedics responded and determined the driver deceased at the scene. The victim’s identity is being withheld pending notification of next of kin. The Los Angeles County Coroner will determine the official cause of death. Anyone who may have information regarding this incident is urged to contact the Long Beach Police Department Collision Investigation Detail, Detective Steve Fox at (562) 570-7110. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2714,https://www.ci.neenah.wi.us/departments/police/police-annual-reports/survey-results/,List of Data Sources,Info About Agencies,Survey Results – City of Neenah,"",200,403 Forbidden,"[""Survey Results""]","[""In This Department""]",[],[],[],[],"" -2715,http://www.longbeach.gov/press-releases/robert-g--luna-appointed-police-chief-of-long-beach/,Media Bulletins,Agency-Published Resources,Robert G. Luna Appointed Police Chief of Long Beach,"",200,City of Long Beach,"[""PRESS RELEASE""]",[],[],[],[],[],"" -2716,http://www.longbeach.gov/police/press-releases/long-beach-police-are-asking-for-the-public-s-help/,Media Bulletins,Agency-Published Resources,Long Beach Police are asking for the public’s help,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 1/21/2016 FOR IMMEDIATE RELEASE Press Release # 2016 Subject: L.B.P.D. NEEDS THE PUBLICS HELP TO LOCATE ATTEMPT MURDER SUSPECT Contact: Media Relations Detail 562-570-5273 Suspect Norval Lamount Hartley Long Beach Police are asking for the public’s help with locating Norval Lamount Hartley, a 46 year old resident of Long Beach, in connection with an attempt murder. On December 27, 2015, at about 12:40 a.m., officers responded to the report of gunshots fired in the area of Willow Street and Maine Avenue. On arrival, officers located a female adult who had sustained a gunshot wound to the upper body. The victim was transported to a local and remains hospitalized in stable condition. The investigation revealed the victim left a local business and was walking to her car when she was struck by gunfire. The victim was not the intended victim of the shooting. Homicide detectives responded to the scene and during their investigation, Hartley was identified as the suspect. On January 20, 2016, the Los Angeles County District Attorney’s Office filed charges of attempt murder against Hartley and a $3,100,000.00 arrest warrant was issued. Hartley remains outstanding and should be considered armed and dangerous. He has an extensive criminal history for violent crime and has served time in state prison. He is described as a male African American, 5’-11”, 180 lbs., with a bald head and brown eyes. Anyone with information regarding the whereabouts of Suspect Hartley is urged to contact the Long Beach Police Department Homicide Detail at (562) 570-7244. Anyone wishing to remain anonymous may call 1-800-222-TIPS (8477), or text TIPLA plus your tip to 274637 (CRIMES), or visit www.LACrimeStoppers.org This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2717,http://www.longbeach.gov/police/press-releases/officer-involved-shooting-2800-block-15th/,Media Bulletins,Agency-Published Resources,OFFICER INVOLVED SHOOTING 2800 BLOCK 15TH,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2718,http://www.longbeach.gov/police/press-releases/dui-checkpoint-results/,Media Bulletins,Agency-Published Resources,DUI CHECKPOINT RESULTS,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2721,http://www.longbeach.gov/police/press-releases/dui-saturation-patrol-proves-effective-2-/,Media Bulletins,Agency-Published Resources,DUI SATURATION PATROL PROVES EFFECTIVE(2),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 7/7/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: DUI SATURATION PATROL PROVES EFFECTIVE Contact: Media Relations Detail (562) 570-5273 On Saturday, July 5, 2014, the Long Beach Police Department’s Traffic Section conducted a Driving Under the Influence (DUI) Saturation Patrol from 7:00 p.m. until 3:00 a.m. During the eight-hour operation, motor officers patrolled throughout the city looking for impaired drivers and taking the following enforcement actions: Conducted ninety-four (94) enforcement stops Conducted nineteen (19) Standardized Field Sobriety Tests Arrested four (4) for DUI Arrested one (1) for an outstanding warrant Issued three (3) misdemeanor citations to drivers who were unlicensed Issued one (1) misdemeanor citation to a driver with a suspended license Issued twenty-three (23) citations to drivers for unsafe driving After falling dramatically for five straight years, figures for 2012 show an increase to 802 deaths in California because someone failed to designate a sober driver. Over the course of the past three years, DUI collisions have claimed nine lives and resulted in 315 injury crashes, harming 420 of our friends and neighbors. Driving under the influence can impact the economy in addition to the pain and suffering of those immediately affected. Conservatively, a fatality has a $1.4 million impact, an injury $70,000, and a crash that only damages property averages nearly $9000. Funding for this program is from a grant from the California Office of Traffic Safety, through the National Highway Traffic Safety Administration. Report Drunk Drivers, Call 9-1-1! This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2722,http://www.longbeach.gov/police/press-releases/dui-saturation-patrol-proves-effective-7-/,Media Bulletins,Agency-Published Resources,DUI SATURATION PATROL PROVES EFFECTIVE(7),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 5/18/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: DUI SATURATION PATROL PROVES EFFECTIVE Contact: Media Relations Detail (562) 570-5273 On Saturday, May 16, 2015, the Long Beach Police Department’s Traffic Section conducted a Driving Under the Influence (DUI) Saturation Patrol from 7:00 p.m. until 3:00 a.m. During the eight-hour operation, motor officers patrolled throughout the city looking for impaired drivers. The officers took the following enforcement actions: Conducted forty-four (44) enforcement stops Conducted seventeen (17) Standardized Field Sobriety Tests Made three (3) DUI arrests Made two (2) misdemeanor arrests for drunk in public and assault Impounded two (2) vehicles for suspended license driver and unlicensed driver Issued twelve (12) traffic citations for unsafe driving After falling dramatically for five straight years, figures for 2012 showed an increase to 802 deaths in California because someone failed to designate a sober driver. Over the course of the past three years in Long Beach, DUI collisions have claimed nine lives and resulted in 315 injury crashes, harming 420 of our friends and neighbors. Driving under the influence can impact the economy in addition to the pain and suffering of those immediately affected. Conservatively, a fatality has a $1.4 million impact, an injury $70,000, and a crash that only damages property averages nearly $9000. Funding for this program is from a grant from the California Office of Traffic Safety, through the National Highway Traffic Safety Administration. Report Drunk Drivers, Call 9-1-1! This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2723,https://springfield-or.gov/event/springfield-police-advisory-committee-meeting/,Poor Data Source,Poor Data Source,Springfield Police Advisory Committee Meeting – City of Springfield Oregon,"",200,City of Springfield Oregon,[],"[""Springfield Police Advisory Committee Meeting""]","[""September 3, 2020 @ 6:00 pm - 7:30 pm"", ""Event Navigation""]","[""Share This Story, Choose Your Platform!"", ""Details"", ""Venue""]",[],[],"" -2725,http://www.longbeach.gov/police/press-releases/national-night-out-set-for-august-4th/,Media Bulletins,Agency-Published Resources,NATIONAL NIGHT OUT SET FOR AUGUST 4TH,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 7/23/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: ""NATIONAL NIGHT OUT"" SET FOR AUGUST 4TH Contact: Media Relations Detail (562) 570-5273 The Long Beach Police Department would like to invite neighbors, community groups, and businesses to join them in celebrating in the 32nd Annual National Night Out, on Tuesday, August 4th, 2015. The National Association of Town Watch, a non-profit organization dedicated to the development and promotion of various crime prevention programs devoted to safer communities, sponsors this annual event. Additional information and resources are available at NATW.org National Night Out (NNO) is a community building campaign that provides an opportunity for Long Beach residents to join with their neighbors and police personnel. The goal is to send a message to criminals that neighbors are unified and looking out for one another, and working with police to keep crime out of their neighborhoods. Neighbors who get to know each other and communicate are more likely to look out for one another, notice suspicious persons in the area, and are more apt to call and report suspicious activity and crime. Neighborhood involvement is the main concept of the Long Beach Police Department’s Community Watch Program. Several Community Watch groups are already on board with coordinated activities including: potlucks, barbecues, and ice cream socials. From 6:00 p.m. to 9:00 p.m. on August 4th, residents are asked to lock their doors, turn on outside lights, and spend the evening outside with neighbors and police. If you are hosting a National Night Out event for your neighborhood and would like to request that Police Department representative stop by, please contact your Patrol Division Neighborhood Services Specialist: East Division – NSS Ruth Anne Salau (562) 570-5808 North Division – NSS Erika Moreno (562) 570-9825 West Division – NSS Jose Vasquez (562) 570-3461 Don’t have an organized Community Watch group yet? National Night Out is the perfect time to start. For more information, visit www.longbeach/police The Long Beach Police Department would like to thank community members who plan to participate in National Night Out. It’s through your continued support and partnership with us that together we can solve crime. We look forward to seeing you on August 4th! This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2726,http://www.longbeach.gov/police/press-releases/human-trafficking-charges-filed-and-additional-victims-sought/,Media Bulletins,Agency-Published Resources,Human Trafficking Charges Filed and Additional Victims Sought,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 1/20/2016 FOR IMMEDIATE RELEASE Press Release # Subject: HUMAN TRAFFICKING CHARGES FILED AND ADDITIONAL VICTIMS SOUGHT Contact: Media Relations Detail 562-570-5273 Defendant Reginald Washington A human trafficking investigation has led to the rescue of several female minors, and charges being filed against a male adult, with additional victims being sought. On January 14, 2015, detectives from the Long Beach Police Department’s Vice Investigations Section along with Los Angeles Police Department Operation South Bureau Human Trafficking Task Force detectives, presented a Human Trafficking case to the Los Angeles County District Attorney’s Office for filing considerations against Reginald Washington, an 18yr old resident of Los Angeles. Washington was already in custody on an unrelated charge out of Los Angeles. The District Attorney’s Office filed seven counts of human trafficking, involving seven minor victims. On January 19, 2016, Washington was arraigned in Los Angeles Superior Court and his bail was set at $1,900,000.00. Detectives initiated an investigation after they located a minor in the City of Long Beach who relayed to them that she was being forced to perform acts of prostitution for Washington. This initial investigation led detectives to additional minor victims who relayed similar stories. The Los Angeles Police Department detectives also identified minors who had been victimized by Washington in the city of Los Angeles, and worked together with Long Beach detectives to successfully investigate this case. Investigators believe other victims may exist and strongly encourage them to come forward by contacting the Long Beach Police Department’s Vice Detail at (562) 570-7219. The Long Beach Police Department is a proud member of the Commercially Sexually Exploited Child Task Force formed in 2013 by the Los Angeles County Board of Supervisors. The victims who were identified by detectives will be provided victim centered services through the Los Angeles County First Responder Protocol for Sexually Exploited Children. Anyone with information regarding this investigation is urged to call the Long Beach Police Department’s Vice Investigations Detail at (562) 570-7219. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2727,http://www.longbeach.gov/police/press-releases/police---fire-memorial-ceremony-1-/,Media Bulletins,Agency-Published Resources,POLICE & FIRE MEMORIAL CEREMONY(1),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 5/4/2015 FOR IMMEDIATE RELEASE Press Release # 2015 Subject: POLICE & FIRE MEMORIAL CEREMONY Contact: Media Relations Detail (562) 570-5273 Community members are invited to attend the Annual Police and Fire Memorial Ceremony on Tuesday, May 5, 2015, at 9:00 a.m. The service will take place at the foot of Chestnut Avenue, south of Broadway, near Long Beach City Hall. Long Beach Police and Fire Department personnel, along with city dignitaries and staff, will honor those individuals who made the ultimate sacrifice with their lives while serving the community in Long Beach. The memorial service will include the Pledge of Allegiance led by Long Beach Search and Rescue, a posting of the colors presentation, a 21-gun salute by the Long Beach Police Honor Guard, an invocation, individual recognition of fallen officers and firefighters, a bagpipe performance of Amazing Grace, Taps performed by a Long Beach Police Officer, as well as remarks by Police Chief Robert Luna and Fire Chief Mike Duree. All are welcome to attend. This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2728,http://www.longbeach.gov/police/press-releases/dui-drivers-license-checkpoint-planned/,Media Bulletins,Agency-Published Resources,DUI DRIVERS LICENSE CHECKPOINT PLANNED,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"" -2729,https://coloradosprings.gov/police-department/webform/community-outreach-request,Resources,Agency-Published Resources,Community Outreach Request | City of Colorado Springs,"",200,Home Page | City of Colorado Springs,"[""Community Outreach Request""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[],"" -2730,http://www.longbeach.gov/police/press-releases/traffic-fatality-pch-and-studebaker-rd/,Media Bulletins,Agency-Published Resources,TRAFFIC FATALITY PCH AND STUDEBAKER RD,"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 9/21/2017 FOR IMMEDIATE RELEASE Press Release # 2017 Subject: TRAFFIC FATALITY PCH AND STUDEBAKER RD Contact: Media Relations Detail (562) 570-5273 On Wednesday, September 20, 2017, at approximately 3:53 pm, officers from the Long Beach Police Department were dispatched to the intersection of Studebaker Road and Pacific Coast Highway regarding an injury traffic collision involving two vehicles. Upon arrival, officers located the collision upon the grass parkway of the southwest corner of the intersection. An off-duty fireman rendered emergency medical aid but the driver of the vehicle that was struck succumbed to his injuries and was determined deceased at the scene. Long Beach Fire Personnel arrived and transported the driver of the other vehicle to a local hospital with moderate injuries. The preliminary investigation revealed a 2006 Mitsubishi Eclipse, driven by a 17 year old male resident of Huntington Beach, was traveling southbound Pacific Coast Highway (P.C.H.) in the # 1 lane approaching Studebaker Road and weaving in and out of traffic. One witness stated the Mitsubishi was traveling in excess of 60 miles per hour. Just prior to entering the intersection, the driver of the Mitsubishi swerved his vehicle to the left to avoid a vehicle making a left turn and then swerved back to the right. Upon swerving back to the right, the Mitsubishi traveled into and across the eastbound lanes of Studebaker Road west of P.C.H where it collided with a 2016 Toyota Corolla, driven by a 58 year-old male resident of Los Angeles. The Toyota was in the #3 eastbound lane of Studebaker waiting to make a right turn onto P.C.H. The driver of the Toyota was determined deceased at the scene. The investigation is still ongoing and anyone who may have witnessed the collision is asked to call Detective Sirilo Garcia of the Long Beach Police Department’s Collision Investigation Detail at (562) 570-7355. Anonymous tips may be submitted through ""LA Crime Stoppers"" by calling 1-800-222-TIPS (8477), downloading the ""P3 Tips"" app to your smart phone (available at the Apple App store and Google Play), or visiting http://www.lacrimestoppers.org/ This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2731,http://www.longbeach.gov/police/press-releases/murder-6-/,Media Bulletins,Agency-Published Resources,MURDER(6),"",200,City of Long Beach,"[""Long Beach Police Department""]",[],[],[],[],[],"A- A A+ Long Beach Police Department Media Relations 400 W. Broadway Long Beach, CA 90802 (562) 570-5273 9/29/2014 FOR IMMEDIATE RELEASE Press Release # 2014 Subject: MURDER Contact: Media Relations Detail (562) 570-5273 On Sunday, September 28, 2014, at approximately 1:25 a.m., Long Beach Police responded to a shots fired call in the area of 11th Street and Walnut Avenue, which resulted in the death of a male adult. The preliminary investigation determined that the victim, identified as 26-year-old Guillermo Iturralde of West Covina, was walking down the street when someone in a nearby vehicle fired at him, and then fled the scene. Victim Iturralde was struck in the upper body and pronounced deceased at the scene by LBFD paramedics. The victim was not a gang member and a motive for the shooting is unknown. No suspect information is available at this time and the investigation remains ongoing. Anyone with information regarding this incident is urged to call Long Beach Police Homicide Detectives Donald Goodman and Mark Mattia. Anonymous tips may be submitted by calling 1-800-222-TIPS (8477), texting TIPLA plus your tip to CRIMES (274637), or visiting www.lacrimestoppers.org . This information is preliminary and is intended for early information use rather than being a formal investigative report. About Long Beach Police Department The mission of the Long Beach Police Department is to enhance public safety through partnerships, while providing a safe City for all people. For more information on the Police Department, please visit us at www.longbeach.gov/police . Follow us on social media to stay connected: Facebook , Twitter , and Instagram . " -2732,https://ose.louisiana.gov/event/police-records-clerk-3/,Poor Data Source,Poor Data Source,Police Records Clerk | Louisiana Office of State Examiner,"",200,403 Forbidden,"["""", ""Police Records Clerk""]",[],"[""Competitive Level""]",[],[],"[""Recent Posts"", ""Archives"", ""Categories"", ""Meta""]","Search Search Search Search Personnel Action Form About Testing & Employment Eligibility Lists Jurisdictions Resources Contact ADA Testing Accommodations Statewide Testing This event has passed. Police Records Clerk Competitive Level Application Deadline TBD Jurisdiction Bogalusa Application Search Recent Posts Holiday Closures Archives June 2023 Categories Uncategorized Meta Log in Entries feed Comments feed WordPress.org Sign Up for Updates Δ 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Privacy Policy Facebook Copyright © 2024 Office of State Examiner Site by Gatorworks. Search Personnel Action Form About Testing & Employment Eligibility Lists Jurisdictions Resources Contact ADA Testing Accommodations Statewide Testing Search Personnel Action Form Search Search Search Personnel Action Form This event has passed. Police Records Clerk Competitive Level Application Deadline TBD Jurisdiction Bogalusa Application Search Recent Posts Holiday Closures Archives June 2023 Categories Uncategorized Meta Log in Entries feed Comments feed WordPress.org This event has passed. Police Records Clerk Competitive Level Application Deadline TBD Jurisdiction Bogalusa Application Search Recent Posts Holiday Closures Archives June 2023 Categories Uncategorized Meta Log in Entries feed Comments feed WordPress.org This event has passed. Police Records Clerk Competitive Level Application Deadline TBD Jurisdiction Bogalusa Application This event has passed. Police Records Clerk Competitive Level Application Deadline TBD Jurisdiction Bogalusa Application This event has passed. Police Records Clerk Competitive Level Application Deadline TBD Jurisdiction Bogalusa Application This event has passed. Police Records Clerk Competitive Level Competitive Level Competitive Level Application Deadline TBD Jurisdiction Bogalusa Application Deadline TBD Jurisdiction Bogalusa Application Deadline TBD Jurisdiction Bogalusa Application Deadline TBD Application Deadline Jurisdiction Bogalusa Jurisdiction Application Search Search Sign Up for Updates Δ Sign Up for Updates Δ Sign Up for Updates 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Privacy Policy Facebook 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Privacy Policy 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 7722 Office Park Blvd., Suite 500 Baton Rouge, LA 70809 Phone: (225) 925-4400 Phone: (225) 925-4400 Privacy Policy Facebook Facebook Facebook Copyright © 2024 Office of State Examiner Site by Gatorworks. Copyright © 2024 Office of State Examiner Site by Gatorworks. " -2733,https://bjs.ojp.gov/content/pub/pdf/ccpuf.pdf,Complaints & Misconduct,Info About Officers,"","",200,"","","","","","","","" -2734,https://www.muckrock.com/foi/detroit-314/shotspotter-policies-140369/#file-1067485,Policies & Contracts,Info About Agencies,ShotSpotter policies • MuckRock,MuckRock is a collaborative news site that gives you the tools to hold the government accountable.,200,MuckRock,"[""ShotSpotter policies""]","[""Communications"", ""Files""]","[""FOIA_Police_Records_shotspotter.pdf""]",[],[],[],"" -2735,https://www.documentcloud.org/documents/23741390-allegheny-county-jail-experience-survey-report-and-response,Surveys,Police & Public Interactions,DocumentCloud,"",200,DocumentCloud,[],[],[],[],[],[],"" -2736,https://www.documentcloud.org/documents/23741389-allegheny-county-jail-needs-assessment-2022,Surveys,Police & Public Interactions,DocumentCloud,"",200,DocumentCloud,[],[],[],[],[],[],"" -2737,https://www.alleghenycounty.us/Government/County-Jail/Policies,Policies & Contracts,Info About Agencies,"Policies - Allegheny County, PA",Allegheny County Jail PoliciesSafety PoliciesSanitizing Procedures for Food Utensils and Drinking CupsSanitationInfectious Disease ProceduresWater SupplyFacility and EquipmentSecurity PoliciesManagement of Inmate RecordsImmigration Detainers and WarrantsTransfer of Articles...,200,"Home - Allegheny County, PA","[""Policies""]","[""Allegheny County Jail Policies"", ""Healthcare Policies"", ""Governance & Administration""]","[""Safety Policies"", ""Security Policies"", ""Inmate Care Policies"", ""Programs and Inmate Services Policies"", ""Justice and Order Policies"", ""Administration and Management Policies"", ""Contact Us"", ""Quick Links"", ""Get Social""]",[],[],[],opens in new tab or window -2738,https://pcpa.memberclicks.net/accredited-agencies,Contact Info & Agency Meta,Info About Agencies,Accredited Agencies,"",200,Home,[],"[""Accredited Agencies""]","[""Pennsylvania Chiefs of Police Association""]",[],[],"[""Return to PCPA Home"", ""Return to PCPA Home"", ""Return to PCPA Home""]",Return to PCPA Home Return to PCPA Home Return to PCPA Home Accreditation Home Commission Enrollment Testimonials Gallery Resources FAQ's PPAC Pin Map Accredited Agencies Premier Agencies Active Enrolled Agencies Standards Manual What's New -2739,https://www.ucr.pa.gov/PAUCRSPUBLIC,Crime Statistics,Agency-Published Resources,Home,UCR Repository System,200,Error retrieving title: 'NoneType' object has no attribute 'text',[],[],[],[],"[""Welcome to the Crime in Pennsylvania Dashboard"", ""Crime Dashboard""]",[],Toggle sidebar Crime in Pennsylvania Online Crime in Pennsylvania Online Crime in Pennsylvania Online Toggle sidebar Crime in Pennsylvania Online Crime in Pennsylvania Online Crime in Pennsylvania Online Toggle sidebar Crime in Pennsylvania Online Crime in Pennsylvania Online Crime in Pennsylvania Online Toggle sidebar Crime in Pennsylvania Online Crime in Pennsylvania Online Crime in Pennsylvania Online Crime in Pennsylvania Online Crime in Pennsylvania Online Crime in Pennsylvania Online Toggle sidebar Crime in Pennsylvania Online Crime in Pennsylvania Online Crime in Pennsylvania Online Toggle sidebar Crime in Pennsylvania Online Crime in Pennsylvania Online Crime in Pennsylvania Online Toggle sidebar Crime in Pennsylvania Online Crime in Pennsylvania Online Crime in Pennsylvania Online Toggle sidebar Crime in Pennsylvania Online Crime in Pennsylvania Online Crime in Pennsylvania Online Crime in Pennsylvania Online Crime in Pennsylvania Online Crime in Pennsylvania Online -2740,https://pittsburghpa.gov/police/manual-procedural-orders,Policies & Contracts,Info About Agencies,Pittsburgh Police Policies and Procedural Manual | pittsburghpa.gov,"",200,"City of Pittsburgh - Announcements, Special Events, Press Releases, City Permits, Careers, Pay your taxes, view Burgh's Eye View and more!","[""CAREERS"", ""CONTACT US"", ""FOLLOW US"", ""GUÍA DE RESIDENTES"", ""Manual Of Procedural Orders"", ""City-County Building Lighting - What Do Tonight's Colors Represent?""]","[""Voice Neutrality Respect Trustworthiness""]","[""DEPARTMENT MENU""]","[""About Police"", ""Community Engagement Office"", ""Police Branches"", ""Police Zones"", ""Police Data"", ""Resources"", ""News"", ""Police Links""]",[],[],"PITTSBURGH REGISTER TO VOTE GUÍA DE RESIDENTES 311 COVID-19 UPDATES BUILDING ACCESSIBILITY CONTACT US FOLLOW US RESIDENTS 311 Citiparks Citizen Police Review Board City Planning Commission On Human Relations Engage PGH Ethics Hearing Board Finance Financial Empowerment Center Innovation & Performance Human Resources and Civil Service Job Opportunities Mobility & Infrastructure Office of Community Health & Safety Office of Film & Event Management Permits, Licenses, & Inspections Public Safety Public Works Schenley Skating Rink Special Events Voting Districts & Polling Places Winter Resource Center VISITORS Citiparks Engage PGH Explore Pittsburgh Next Pittsburgh Office of Film & Event Management Schenley Skating Rink Special Events VisitPittsburgh Welcoming Pittsburgh BUSINESS Bid Opportunities City Planning Finance Innovation & Performance Legislative Information Center Mobility & Infrastructure PGH Lab Permits, Licenses, & Inspections CITY HALL Boards, Authorities, Commissions City Clerk's Office City Council City Council Meetings, Agendas Community Development Block Grant Program Comprehensive Municipal Pension Trust Fund Controller's Office Human Resources and Civil Service Law Mayor's Cabinet Mayor's Office Municipal Pension Fund Office of Management & Budget Office of Municipal Investigations Public Safety City Hall History - Public Tours ONLINE APPS OneStopPGH Bid Opportunities CivicCentral Burgh's Eye View Dashburgh Engage PGH Facility Reservations Fiscal Focus Live Website Traffic Online Alarm Registration Open Book PGH Pay Parking Tickets PPA GoMobile PGH Pay PPAP Parking Lease Pay Real Estate Taxes PGH Watchdog Snow Angels Snow Plow Tracker Film & Event Permits Trash Schedule App CITY INFO About Pittsburgh City Directory Policies Press Releases Public Safety Blotter Refuse & Recycling Collection Tax Forms Council Meetings & Hearings Website Release Notes City Careers Women's Suffrage Centennial City Internships Citywide Event Schedule " -2741,https://mappingpoliceviolence.us/,Use of Force Reports,Police & Public Interactions,Mapping Police Violence,"Official home of America's most comprehensive database of police violence. -Get the facts about police brutality and how to address it.",200,Mapping Police Violence,"[""Mapping Police Violence"", ""Mapping Police Violence"", ""Police have killed 236 people so far in 2024. Police killed at least 1,247 people in 2023."", ""Mapping Police Violence""]","[""Learn More""]","[""Police killed at least 1,247 people in 2023. Black people were 27% of those killed by police in 2023 despite being only 13% of the population.""]",[],[],[],"The Official Mapping Police Violence Database The Official Mapping Police Violence Database The Official Mapping Police Violence Database The Official Mapping Police Violence Database Mapping Police Violence Police Violence Map / Compare Places / Cities Compare States National Trends / Police Scorecard / Year-End Police Violence Report / About the Data / Planning Team / Mapping Police Violence Mapping Police Violence is a research collaborative collecting comprehensive data on police killings nationwide to quantify the impact of police violence in communities. Police have killed 236 people so far in 2024. Police killed at least 1,247 people in 2023. Mapping Police Violence Police Violence Map / Compare Places / Cities Compare States National Trends / Police Scorecard / Year-End Police Violence Report / About the Data / Planning Team / Police killed at least 1,247 people in 2023. Black people were 27% of those killed by police in 2023 despite being only 13% of the population. Database updated through 3/18/2024 Download Full Database Read about our methodology. Mapping Police Violence is a 501(c)(3) organization that publishes the most comprehensive and up-to-date data on police violence in America to support transformative change. Our team builds resources for communities and policymakers interested in changing policing outcomes nationwide, including MappingPoliceViolence.us , PoliceScorecard.org , and PoliceViolenceReport.org . 98.1% of killings by police from 2013-2023 have not resulted in officers being charged with a crime. There is no accountability No Criminal Charges Officer(s) Charged Officer(s) Convicted 0 0.25 0.5 0.75 1 Click A Page Below to Learn More Compare Cities Compare States 2023 Police Violence Report National Trends Data 2015 Police Violence Report Learn More Researchers and journalists have utilized Mapping Police Violence data to expand our collective understanding of how police violence impacts communities and how to address it. Click below to read about some of these articles and research studies: Contact Us Volunteer Ⓒ Mapping Police Violence, Inc. No part of this site, Mapping Police Violence, may be reproduced in whole or in part in any manner without the permission of the copyright owner. " -2742,https://pasdc.maps.arcgis.com/apps/webappviewer/index.html?id=70c54a213ef94b659b6b77da88ed43b0,Contact Info & Agency Meta,Info About Agencies,ArcGIS Web Application,"",200,Error retrieving title: 'NoneType' object has no attribute 'text',"[""""]",[],[],[],[],[],"" -2743,http://wwso.co.goodhue.mn.us/cis_reports/jail%20roster%20internet.pdf,Incarceration Records,Jails & Courts Specific,"","",200,"","","","","","","","" -2744,https://www.cannonfallsbeacon.com/search/?q=police+reports&s=start_time&sd=desc&l=10&t=*&nsa=eedition,Incident Reports,Police & Public Interactions,Search results for 'police reports' | cannonfallsbeacon.com,"",200,cannonfallsbeacon.com | Cannon Falls Beacon,[],"[""Search / 250 results found Showing: 1-10 of 250""]","[""This week's Cannon Falls Police , Goodhue County Sheriff reports"", ""This week's Cannon Falls Police , Goodhue County Sheriff reports"", ""This week's Cannon Falls Police , Goodhue County Sheriff reports"", ""Cannon Falls Police , Goodhue County Sheriff reports"", ""Goodhue County Sheriff's reports"", ""This week's Cannon Falls Police , Goodhue County Sheriff reports"", ""This week's Cannon Falls Police , Goodhue County Sheriff reports"", ""Cannon Valley Senior Center: Headed to the Chanhassen Dinner Theater!"", ""This week's Cannon Falls Police , Goodhue County Sheriff reports"", ""Red Wing couple plead not guilty to child abuse charges"", ""Cannon Falls Beacon"", ""About Us""]","["""", """", """", ""Most Popular Stories"", ""Latest e-Edition"", ""Newsletters"", ""Cannon Falls Beacon e-Edition"", ""Headlines from Cannon Falls Beacon"", ""Weather"", ""Submit Your News"", ""Calendar"", ""Browser Compatibility""]","[""This week's Cannon Falls Police, Goodhue County Sheriff reports"", ""Brian Dean Manwarren"", ""Health officials update Mississippi River fish consumption guidelines"", ""Cannon Falls ‘Bomb Botz’ qualifies for international competition"", ""From St. Paul: Reuniting stray animals with their owners""]",[],"" -2745,http://wwso.co.goodhue.mn.us/cis_reports/public%20warrant%20list.rpt.html,Wanted Persons,Agency-Published Resources,"","",200,403 - Forbidden: Access is denied.,[],[],[],[],[],[],"Goodhue County Sheriff ' s Office Active Warrant Listing March 25, 2024 12:30 pm Current as of : Last Name , First , Middle Issue date Reason for warrant - Notes Bond _ Amount Bond _ Remark 07/10/2020 FTA For Arraignment, DAR, Unregistered Vehicle, Receiving Stolen Property Aaby Michael Robert $200.00 Cash Only, Set Crt 1st - 4th Thurs @ 0830 Hours 08/29/2017 Prob Viol / 5th Deg Asslt; Disorderly Conduct Abad Andre Maurice Body Only 07/27/2023 FTA/ Traffic- DAC- IP, DL- Driving Restrictions- Alc/ Controlled Subs, Drive W/O Ifnition Interlock Abbott Michael David $3,000.00 Bond Or 500 Cash And Court Thursday @ 0830 11/03/2022 FTA For Pre-Trial, Harmful Materials Display To Minors, Disorderly Conduct Abbott Michael David Body Only 02/15/2024 FTA For Speed, Limited License Violation, Obstruct Legal Process, No Proof Of Insurance Abdi Mohamed Yusuf $1,000.00 Bond Or $500 Cash And Court 09/16/2021 Fta For Speed Abdinoor Ahmed Arab $500.00 $500 Cash Or $1000 Bond & Crt 1st-4th Thur @ 0830 05/11/2023 FTA For Disorderly Conduct Ackermann Alexander Gerhard $0.00 Body Only 05/11/2023 FTA For Trespass Ackermann Alexander Gerhard $0.00 Body Only 05/11/2023 FTA For Theft-take/drive Motor Vehicle- No Owner Consent, Tamper With Motor Vehicle, No MN DL Ackermann Alexander Gerhard $0.00 Body Only Page 1 of 61 Last Name , First , Middle Issue date Reason for warrant - Notes Bond _ Amount Bond _ Remark 03/24/2022 FTA/ Theft- Take Use Transfer Movable Property No Consent Adams William Kendall $200.00 Cash Only And Court Thursday @ 0830 11/05/2020 FTA/ Traffic- DWI Refuse To Submit To Chemical Test Aguilar - Duran Jose A $0.00 Body Only 03/16/2018 FTA / 5th Deg Drugs; Possess Drug Para; Possess Small Amt Marijuana Ahlers Gregory Victor Body Only 06/21/2021 Probation Violation/ Assault- 2nd Degree Dangerous Weapon Aitkin Shawnaci Denise $0.00 Body Only 06/21/2018 FTA/ DWI- Operate MV Under Influence Of Alc, DWI .08 Within 2 Hours, Driving W/out Valid License Ajtun Sajqui Jevne Abimael $1,000.00 Cash Or Bond And Court Thursday @ 13:00 03/23/2017 FTA / Theft - Gas Drive Off; DAR Akins Quanisha Vashaun $300.00 CASH Only; Set Court For Thurs At 0830 Hrs 12/09/2021 Fta For Speed Alajmi Abdullah $300.00 Cash Only And Crt 1st-4th Thurs @ 0830 01/06/2022 FTA / Speed 65 Zone Non Interstate 96/65 Alazmi Yousiff F R A $1,000.00 BOND Or 400 CASH; Set Court For Thurs At 8:30 AM 08/25/2022 FTA/ Traffic- DWI- Operate MV Under The Influence Of Alcohol Ali Salim Ali Hassan $0.00 Body Only 02/06/2020 Fta For 5th Degree Assault Ali Sayed $1,000.00 Cash Or Bond And Crt 1st-4th Thurs @ 0830 01/15/2015 Fta For Dwi And Open Bottle Allen Aradia Eden Body Only 05/13/2021 Fta Speed Al - mannai Ahmad Ibrahim H E $300.00 Cash Only And Crt Any Thurs @ 0830 Page 2 of 61 Last Name , First , Middle Issue date Reason for warrant - Notes Bond _ Amount Bond _ Remark 11/09/2017 FTA / Speed; No Mn DL Almutairi Sultan A $500.00 " -2746,https://www.muckrock.com/foi/detroit-314/shotspotter-policies-140369/#files,Policies & Contracts,Info About Agencies,ShotSpotter policies • MuckRock,MuckRock is a collaborative news site that gives you the tools to hold the government accountable.,200,MuckRock,"[""ShotSpotter policies""]","[""Communications"", ""Files""]","[""""]",[],[],[],"" -2747,https://data.lacounty.gov/datasets/lacounty::sheriff-all-shooting-incidents-for-deputy-involved-shootings-2010-to-present-deputy-shootings/about,Officer Involved Shootings,Police & Public Interactions,Sheriff All Shooting Incidents for Deputy Involved Shootings 2010 to Present (Deputy Shootings),All Shooting Incident Types for Deputy Involved Shootings 2010 to Present,200,County of Los Angeles Open Data,[],[],[],[],[],[],"" -2748,https://www.alleghenycounty.us/Government/Departments-and-Offices/County-Council/Council-Meetings/Police-Review-Board-Meeting,Policies & Contracts,Info About Agencies,"Police Review Board Meeting - Allegheny County, PA","In 2021, Allegheny County Council passed legislation creating the Independent Police Review Board to receive and review allegations of misconduct filed by members of the public against police officers employed by the Allegheny County Police Department. The nine-member board is...",200,"Home - Allegheny County, PA","[""Police Review Board Meeting""]",[],"[""Contact Us"", ""Quick Links"", ""Get Social""]",[],[],[],opens in new tab or window -2749,https://www.lakesheriff.com/969/Use-of-Force,Use of Force Reports,Police & Public Interactions,"Use of Force | Lake County, CA",Gather information about documented use of force in Officer Involved Shooting and Critical Incidents in Lake County.,200,"Sheriff | Lake County, CA","[""Use of Force""]","[""Officer Involved Shooting ( OIS ) & Critical Incidents"", ""Objectively Reasonable""]","[""Contact Us"", ""Quick Links"", ""Helpful Links"", ""Loading""]","[""Administrative Office"", ""Assessor"", ""Community Development Department"", ""Tax Collector""]",[],[],Skip to Main Content -2750,https://www.cityoflamesa.us/1650/SB1421-Public-Records,Incident Reports,Police & Public Interactions,"SB1421 Public Records | La Mesa, CA - Official Website","",200,"La Mesa, CA - Official Website | Official Website","[""SB1421 Public Records""]","[""Penal Code § 832.7(b)(1)(A)(i): \""A record relating to the report, investigation, or findings of… an incident involving the discharge of a firearm at a person by a peace officer or custodial officer."", ""Penal Code § 832.7(b)(1)(A)(ii): \""A record relating to the report, investigation, or findings of… an incident in which the use of force by a peace officer or custodial officer against a person resulted in death, or in great bodily injury.\"""", ""Penal Code § 832.7(b)(1)(B): \""Any record relating to an incident in which a sustained finding was made by any law enforcement agency or oversight agency that a peace officer or custodial officer engaged in sexual assault involving a member of the public.\"""", ""Penal Code § 832.7(b)(1)(C): \""Any record relating to an incident in which a sustained finding was made by any law enforcement agency or oversight agency of dishonesty by a peace officer or custodial officer directly relating to the reporting, investigation, or prosecution of a crime, or directly relating to the reporting of, or investigation of misconduct by, another peace officer or custodial officer, including, but not limited to, any sustained finding of perjury, false statements, filing false reports, destruction, falsifying, or concealing of evidence.\"""", ""Penal Code 832.7(A) (iii): A sustained finding involving a complaint that alleges unreasonable or excessive force."", ""Penal Code 832.7(A) (iv): A sustained finding that an officer failed to intervene against another officer using force that is clearly unreasonable or excessive."", ""Penal Code 832.7 (D): Any record relating to an incident in which a sustained finding was made by any law enforcement agency or oversight agency that a peace officer or custodial officer engaged in conduct including, but not limited to, verbal statements, writings, online posts, recordings, and gestures, involving prejudice or discrimination against a person on the basis of race, religious creed, color, national origin, ancestry, physical disability, mental disability, medical condition, genetic information, marital status, sex, gender, gender identity, gender expression, age, sexual orientation, or military and veteran status."", ""Penal Code 832.7 (E): A sustained finding made by any law enforcement agency or oversight agency that the peace officer made an unlawful arrest or conducted an unlawful search.""]","[""Contact Us"", ""Site Links"", ""Loading""]","[""No Record""]",[],[],Skip to Main Content -2751,https://data.wprdc.org/dataset/arrest-data,Arrest Records,Police & Public Interactions,Pittsburgh Police Arrest Data - Dataset - CKAN,"",200,Dataset - CKAN,"[""Pittsburgh Police Arrest Data"", ""City of Pittsburgh"", ""Pittsburgh Police Arrest Data"", ""Data Use Agreement""]","[""Organization"", ""Social"", ""License"", ""Data and Resources"", ""Terms of use"", ""🚧 Under Construction""]","[""Additional Info""]",[],[],[],"Skip to main content Log in Register Log in Register Datasets Organizations Topics Search Datasets... Datasets Organizations Topics Search Datasets... Home Organizations City of Pittsburgh Pittsburgh Police Arrest Data Pittsburgh Police Arrest Data Followers 1 Organization City of Pittsburgh The City of Pittsburgh's official web site is https://pittsburghpa.gov/. read more Social Twitter Facebook License Creative Commons Attribution Dataset Groups Pittsburgh Police Arrest Data This data ceased updating with the transition to a new records management system on 11/14/2023. Access to the updated data source will be provided in the future. Arrest data contains information on people taken into custody by City of Pittsburgh police officers. More serious crimes such as felony offenses are more likely to result in an arrest. However, arrests can occur as a result of other offenses, such as parole violations or a failure to appear for trial. All data is reported at the block/intersection level, with the exception of sex crimes, which are reported at the police zone level. This dataset only contains information reported by City of Pittsburgh Police. It does not contain information about incidents that solely involve other police departments operating within the city (for example, campus police or Port Authority police). More documentation is available in our Crime Data Guide . Data and Resources Arrests CSV Explore Preview Download Arrest Data Dictionary XLSX Field definitions for the Arrest dataset Explore Preview Download Burgh's Eye View HTML With Burgh's Eye View you can easily see all kinds of data about Pittsburgh. Explore More information Go to resource Additional Info Field Value Public Access Level Comment This data will be updated to reflect the most recent arrest record. It has been generalized to the block level to protect the privacy of those involved. Sex-based offenses are further generalized to the police zone geography. It will not reflect arrests that have been expunged from public record. Temporal Coverage 1998-03-11/2023-11-14 Geographic Unit Intersection/Street Segment Data Notes Related Document(s) Frequency - Data Change Daily Frequency - Publishing Weekly Data Steward Chris Belasco Data Steward Email Chris Belasco arrest custody failure to appear for trial felony offenses parole violation police public safety " -2752,https://data.wprdc.org/dataset/non-traffic-citations,Citations,Police & Public Interactions,Non-Traffic Citations - Dataset - CKAN,"",200,Dataset - CKAN,"[""Non-Traffic Citations"", ""City of Pittsburgh"", ""Non-Traffic Citations"", ""Data Use Agreement""]","[""Organization"", ""Social"", ""License"", ""Data and Resources"", ""Terms of use"", ""🚧 Under Construction""]","[""Additional Info""]",[],[],[],"Skip to main content Log in Register Log in Register Datasets Organizations Topics Search Datasets... Datasets Organizations Topics Search Datasets... Home Organizations City of Pittsburgh Non-Traffic Citations Non-Traffic Citations Followers 1 Organization City of Pittsburgh The City of Pittsburgh's official web site is https://pittsburghpa.gov/. read more Social Twitter Facebook License Creative Commons Attribution Dataset Groups Non-Traffic Citations This data ceased updating with the transition to a new records management system on 11/14/2023. Access to the updated data source will be provided in the future. Non-traffic citations (NTCs, also known as ""summary offenses"") document low-level criminal offenses where a law enforcement officer or other authorized official issued a citation in lieu of arrest. These citations normally include a fine. In Pennsylvania, NTCs often include a notice to appear before a magistrate if the person does not provide a guilty plea. Offenses that normally result in a citation include disorderly conduct, loitering, harassment and retail theft. This dataset only contains information reported by City of Pittsburgh Police. It does not contain incidents that solely involve other police departments operating within the city (for example, campus police or Port Authority police). Latinos are not included in this data as a race and they will not be reflected in this data. More documentation is available in our Crime Data Guide . Data and Resources Non-Traffic Citations CSV Explore Preview Download Non-Traffic Citations Data Dictionary XLSX Field definitions for Non-Traffic Citations Dataset Explore Preview Download Burgh's Eye View HTML With Burgh's Eye View you can easily see all kinds of data about Pittsburgh. Explore More information Go to resource Additional Info Field Value Public Access Level Comment Data has been generalized to the block level. Temporal Coverage 1992-12-10/2023-10-12 Geographic Unit Intersection/Street Segment Data Notes Related Document(s) Frequency - Data Change Daily Frequency - Publishing Weekly Data Steward Chris Belasco Data Steward Email Chris Belasco NTC citations crimes disorderly conduct harassment justice loitering offenses police retail theft safety summary offenses " -2753,https://www.traviscountytx.gov/district-clerk/case-information-records,Court Cases,Jails & Courts Specific,Case Information & Records,"Welcome to the official website of Travis County, Texas. ",200,Travis County Homepage,"[""Case Information & Records""]","[""On This Page"", ""Online Case Records Search"", ""Official/Certified/Authenticated Document Copies"", ""Administrative Record Copies""]","[""Online"", ""By Mail"", ""In Person""]","[""The Travis County Odyssey portal will be down for maintenance on March 26th 2024, starting at 6 PM through March 27th 2024, at 5 AM.""]","[""Can’t find what you’re looking for?""]",[],"Directory Departments A-Z Maps & GIS Data Org Chart Other Counties and Municipalities Phone Directory Government Commissioners Court Agendas & Minutes Portal Board & Committee Appointments County Code Online Message Board Vision, Mission, and Goals Health & Human Services Human Resources Intergovernmental Relations Open Board Appointments Planning & Budget Tax Office Veterans Services County Auditor County Clerk Corporations District Clerk Elections Emergency Services Office of Emergency Management Fire Marshal STAR Flight Medical Examiner Emergency Services Districts Justice Bail Bond Board Constables County Attorney Courts Civil TCCF Courts Facility Criminal Child Support Court (Title IV-D Courts) Probate Court JP Courts Juvenile Court District Attorney Jury Duty Justice & Public Safety Justices of the Peace Law Library Legal Help Sheriff's Office TCCJS Pretrial Services Drug Diversion Court Adult Probation Business Appraisal District DBA (Assumed Name) Economic Development Expo Center Foreclosures Historically Underutilized Businesses (HUB) PACE Purchasing Office Permits Recording Fees Vendors Resident Animal Control Child Support Jobs Jury Duty Legal Help Marriage Licenses Parks Passports Property Taxes Road Issues Vehicle Registration Online Services Apply for Utility Assistance, Case Management, and Social Work services Court Collections Financial Transparency Portal Inmate Search Job Application Jury Duty Registration Justices of the Peace Online Payments Open Data Portal Open Records Request Pay Your Property Taxes Permitting Center Vehicle Registration Warrant Search View All Services × search Translate Afrikaans Albanian Amharic Arabic Armenian Azerbaijani Basque Belarusian Bengali Bosnian Bulgarian Catalan Cebuano Chichewa Chinese (Simplified) Chinese (Traditional) Corsican Croatian Czech Danish Dutch English Esperanto Estonian Filipino Finnish French Frisian Galician Georgian German Greek Gujarati Haitian Creole Hausa Hawaiian Hebrew Hindi Hmong Hungarian Icelandic Igbo Indonesian Irish Italian Japanese Javanese Kannada Kazakh Khmer Korean Kurdish (Kurmanji) Kyrgyz Lao Latin Latvian Lithuanian Luxembourgish Macedonian Malagasy Malay Malayalam Maltese Maori Marathi Mongolian Myanmar (Burmese) Nepali Norwegian Pashto Persian Polish Portuguese Punjabi Romanian Russian Samoan Scottish Gaelic Serbian Sesotho Shona Sindhi Sinhala Slovak Slovenian Somali Spanish Sundanese Swahili Swedish Tajik Tamil Telugu Thai Turkish Ukrainian Urdu Uzbek Vietnamese Welsh Xhosa Yiddish Yoruba Zulu " -2754,https://www.longbeach.gov/police/about-the-lbpd/lbpd-sb-978/,Policies & Contracts,Info About Agencies,"Policies, Procedures & Training (SB 978)","POLICIES, PROCEDURES & TRAINING SB978",200,City of Long Beach,"[""Police Department""]","[""Policies, Procedures & Training (SB 978)"", ""Basic Academy Training"", ""Field Training Officer Program"", ""Manuals, Orders & In-Service Training"", ""Ongoing Professional Training"", ""Records Retention Schedule""]","[""Mayor"", ""City Council"", ""Rex Richardson"", ""Mary Zendejas"", ""Cindy Allen"", ""Kristina Duggan"", ""Daryl Supernaw"", ""Megan Kerr"", ""Suely Saro"", ""Roberto Uranga"", ""Al Austin"", ""Dr. Joni Ricks-Oddie"", ""Dawn McIntosh"", ""Laura L. Doud"", ""Doug Haubert"", ""Tom Modica"", ""Monique DeLaGarza"", ""City-Wide Elected Officials"", ""Appointed Officials"", ""Online Payments"", ""Online Services"", ""In-Person Services"", ""Opening a Business"", ""Doing Business With The City"", ""Resources"", ""Most Popular"", ""Online Resources"", ""Attractions"", ""Business Associations"", ""Travel Resources"", ""Departments"", ""Job Opportunities"", ""Information"", ""LBPD"", ""Employment"", ""Bureaus"", ""News & Events"", ""Crime Info"", ""How Do I"", ""How Do I"", ""Contact Us"", ""Training Division"", ""Senate Bill 978"", ""Do."", ""Discover."", ""Connect."", ""Ask.""]","["""", ""1st District"", ""2nd District"", ""3rd District"", ""4th District"", ""5th District"", ""6th District"", ""7th District"", ""8th District"", ""9th District"", ""City Attorney"", ""City Auditor"", ""City Prosecutor"", ""City Manager"", ""City Clerk""]","[""LBPD SB 978""]",[],"" -2755,http://beaumontpd.org/1194/Crime-Statistics,Crime Statistics,Agency-Published Resources,"Crime Statistics | Beaumont, CA - Official Website",View crime statistics and check out our community crime map. ,200,"Police Department | Beaumont, CA - Official Website","[""Crime Statistics""]","[""Crime Statistics and Calls for Service in the City of Beaumont"", ""National Incident Based Reporting (NIBRS)"", ""Beaumont Police Department Annual Report"", ""Press Log""]","[""FAQs"", ""Contact Us"", ""Quick Links"", ""Connect With Us"", ""Loading""]",[],[],[],"Skip to Main Content Search Only search Police Department About Us Community Crime Divisions Online Reporting Recruiting Home GOVERNMENT Departments Police Department Crime Crime Statistics Crime Statistics Crime Statistics and Calls for Service in the City of Beaumont Calendar year 2022 National Incident Based Reporting (NIBRS) The National Incident-Based Reporting System, or NIBRS, implemented to improve the overall quality of crime data collected by law enforcement. It captures details on each single crime incident—as well as on separate offenses within the same incident. In 2021, the historic Summary Reporting System (SRS) data collection, which collected more limited information than the more robust NIBRS, was phased out. Beaumont Police Department Annual Report The Beaumont Police Department provides an annual report with information about the department, programs and other information that occurred over the calendar year. Press Log Press Log/Arrest Log/Crime Log FAQs Where does the information about the crimes come from? How can I see the source of the crime data? How does it work? View All /FAQ.aspx NIBRS Annual Report Press Log Records Bureau Dog Licensing Online Reporting Crime Tips Report Traffic And Parking Concerns Crime Stats Contact Us Beaumont Police Department 660 Orange Avenue Beaumont, CA 92223 Phone: 951-769-8500 Hours: Police Services: Available 24/7 Records: Monday through Thursday: 8am to Noon Closed Fridays Quick Links Concealed Weapons Permit Domestic Violence Neighborhood Watch Recruiting Scams /QuickLinks.aspx Connect With Us Facebook X YouTube Instagram Nextdoor Home Accessibility Copyright Notices Contact Us My Account Government Websites by CivicPlus® /QuickLinks.aspx Search Only search Police Department About Us Community Crime Divisions Online Reporting Recruiting Home GOVERNMENT Departments Police Department Crime Crime Statistics Crime Statistics Crime Statistics and Calls for Service in the City of Beaumont Calendar year 2022 National Incident Based Reporting (NIBRS) The National Incident-Based Reporting System, or NIBRS, implemented to improve the overall quality of crime data collected by law enforcement. It captures details on each single crime incident—as well as on separate offenses within the same incident. In 2021, the historic Summary Reporting System (SRS) data collection, which collected more limited information than the more robust NIBRS, was phased out. Beaumont Police Department Annual Report The Beaumont Police Department provides an annual report with information about the department, programs and other information that occurred over the calendar year. Press Log Press Log/Arrest Log/Crime Log FAQs Where does the information about the crimes come from? How can I see the source of the crime data? How does it work? View All /FAQ.aspx NIBRS Annual Report Press Log Records Bureau Dog Licensing Online Reporting Crime Tips Report Traffic And Parking Concerns Crime Stats Contact Us Beaumont Police Department 660 Orange Avenue Beaumont, CA 92223 Phone: 951-769-8500 Hours: Police Services: Available 24/7 Records: Monday through Thursday: 8am to Noon Closed Fridays Quick Links Concealed Weapons Permit Domestic Violence Neighborhood Watch Recruiting Scams /QuickLinks.aspx Connect With Us Facebook X YouTube Instagram Nextdoor Home Accessibility Copyright Notices Contact Us My Account Government Websites by CivicPlus® /QuickLinks.aspx " -2756,https://data.lacity.org,List of Data Sources,Info About Agencies,"DataLA: Information, Insights, and Analysis from the City of Angels | Los Angeles - Open Data Portal","",200,"DataLA: Information, Insights, and Analysis from the City of Angels | Los Angeles - Open Data Portal",[],"[""Menu"", ""Featured Stories"", ""Data Catalog"", ""Resources""]",[],[],[],[],Skip to main content Skip to footer links Sign In Data Catalog Geohub Blog Developer Resources About Menu Menu Close Data Catalog Geohub Blog Developer Resources About Sign In Search LOS ANGELES OPEN DATA Explore the City of Los Angeles' Open Data Featured Stories Is Your Business Registered? Disparities in Mortgage Lending in Los Angeles Neighborhood Crime Statistics Know Your Community LA Cool Spots Emergency Rental Assistance Program Evaluation Data Catalog Administration & Finance Discover data on the city’s finances and administration. COVID-19 Explore COVID-19 data. Public Safety View up to date data on the city’s public safety data. City Infrastructure & Service Requests Find information on services and infrastructure. Housing and Real Estate Data on housing programs and land use in LA. Parks & Recreation Find information on city parks and recreation centers. Sanitation Find data on street cleanings and more. Transportation Find data from the Department of Transportation. Resources DataLA Medium Blog Read about the latest updates from the team! Suggest a data set Didn't find what you were looking for? Suggest a dataset. Public Records Requests Submit and review public records requests Explore the GeoHub Browse our geospatial data Sign In Data Catalog Geohub Blog Developer Resources About Menu Menu Close Data Catalog Geohub Blog Developer Resources About Sign In Search LOS ANGELES OPEN DATA Explore the City of Los Angeles' Open Data Featured Stories Is Your Business Registered? Disparities in Mortgage Lending in Los Angeles Neighborhood Crime Statistics Know Your Community LA Cool Spots Emergency Rental Assistance Program Evaluation Data Catalog Administration & Finance Discover data on the city’s finances and administration. COVID-19 Explore COVID-19 data. Public Safety View up to date data on the city’s public safety data. City Infrastructure & Service Requests Find information on services and infrastructure. Housing and Real Estate Data on housing programs and land use in LA. Parks & Recreation Find information on city parks and recreation centers. Sanitation Find data on street cleanings and more. Transportation Find data from the Department of Transportation. Resources DataLA Medium Blog Read about the latest updates from the team! Suggest a data set Didn't find what you were looking for? Suggest a dataset. Public Records Requests Submit and review public records requests Explore the GeoHub Browse our geospatial data Sign In Data Catalog Geohub Blog Developer Resources About Menu Menu Close Data Catalog Geohub Blog Developer Resources About Sign In Search Sign In Data Catalog Geohub Blog Developer Resources About Menu Sign In Data Catalog Geohub Blog Developer Resources About Menu Sign In Sign In Data Catalog Geohub Blog Developer Resources About Menu Close Data Catalog Geohub Blog Developer Resources About Sign In Search Data Catalog Geohub Blog Developer Resources About Sign In Search Data Catalog Geohub Blog Developer Resources About Sign In Search Search -2757,http://www.holmescountysheriff.org/public-information-request/,Records Request Info,Agency-Published Resources,Public Information Request – Holmes County Sheriff's Office,"",200,Holmes County Sheriff's Office – Serving & Protecting the Citizens of Holmes County.,"[""Public Information Request""]",[],"[""Public Information Request"", ""Links & Downloadable Resources""]","[""Address"", ""Phone"", ""FAX"", ""Email""]",[],"[""The Holmes County Sheriff's Office""]","" -2758,https://webmaster2166.wixsite.com/bartowso/online-forms,List of Data Sources,Info About Agencies,Online Forms | Bartow Co. S.O.,"",200,"",[],[],[],[],[],[],"" -2759,https://rdx.stldata.org/dataset/crime-data-0,Crime Statistics,Agency-Published Resources,Crime Data | St. Louis Regional Data Exchange,"",200,Error retrieving title: dictionary changed size during iteration,[],"[""Primary tabs"", ""License"", ""Other Access"", ""Crime Data""]",[],"[""Data and Resources""]",[],[],Skip to main content Search Search Search Search Toggle navigation About Datasets Organizations Topics COVID-19 (14) Planning & Zoning (59) Geography (78) Public Safety & Justice (53) Housing & Properties (42) Real Estate & Land Records (39) Demographics (29) Transportation (47) Human & Social Services (40) Environment (42) Health (34) Budget & Finance (16) Education (17) Boundaries (41) Business & Economy (24) Election & Politics (28) Infrastructure (15) Taxes (16) Add Data Log in Toggle navigation About Datasets Organizations Topics COVID-19 (14) Planning & Zoning (59) Geography (78) Public Safety & Justice (53) Housing & Properties (42) Real Estate & Land Records (39) Demographics (29) Transportation (47) Human & Social Services (40) Environment (42) Health (34) Budget & Finance (16) Education (17) Boundaries (41) Business & Economy (24) Election & Politics (28) Infrastructure (15) Taxes (16) Add Data Log in Toggle navigation About Datasets Organizations Topics COVID-19 (14) Planning & Zoning (59) Geography (78) Public Safety & Justice (53) Housing & Properties (42) Real Estate & Land Records (39) Demographics (29) Transportation (47) Human & Social Services (40) Environment (42) Health (34) Budget & Finance (16) Education (17) Boundaries (41) Business & Economy (24) Election & Politics (28) Infrastructure (15) Taxes (16) Add Data Log in Log in -2760,https://cityprotect.com/agency/4cdd5d7e-3326-4be1-9958-4b68c0270c91,Crime Maps & Reports,Agency-Published Resources,CityProtect,"",200,CityProtect,[],[],[],[],[],[],"" -2761,https://data.wprdc.org/dataset/police-incident-blotter,Crime Maps & Reports,Agency-Published Resources,Police Incident Blotter (30 Day) - Dataset - CKAN,"",200,Dataset - CKAN,"[""Police Incident Blotter (30 Day)"", ""City of Pittsburgh"", ""Police Incident Blotter (30 Day)"", ""Data Use Agreement""]","[""Organization"", ""Social"", ""License"", ""Data and Resources"", ""Terms of use"", ""🚧 Under Construction""]","[""Additional Info""]",[],[],[],Skip to main content Log in Register Log in Register Datasets Organizations Topics Search Datasets... Datasets Organizations Topics Search Datasets... -2762,https://www.burke.k12.ga.us/apps/pages/index.jsp?uREC_ID=324393&type=d&pREC_ID=733056,List of Data Sources,Info About Agencies,Records Request – Records/Transcripts – Burke County Public Schools,"The Burke County Public School District (BCPS) is located in Waynesboro, Georgia. They serve grades PreK-12. Home of the Burke County Bears!",200,Burke County Public Schools,"[""Records Request""]",[],"[""SELECT THE BUTTON BELOW TO REQUEST STUDENT RECORDS :""]",[],[],[],Skip to main content Burke County Public Schools Main Menu Toggle About Us Board of Education Superintendent Assistant Superintendents Board Office Staff Directory American Rescue Plans (ARP) Burke's B.E.S.T. Campus Map/Directions CCRPI Report Employment Opportunities Mission and Vision Open Records Request Quick Links SWSS/IE2 Partnership Contract Title IX Strategic Plan Departments Athletics Curriculum & Instruction CTAE Federal Programs Finance Department Human Resources Maintenance Nurses/School Health Professional Learning Public Information Records Request School Nutrition Social Services Student Information Student Services Technology Testing Transportation Schools School Profiles Waynesboro Primary SGA Elementary Blakeney Elementary Burke County Middle Burke County High BC Academy of Success BC Life Center Early Head Start Students & Parents Attendance Bus Information Calendar/Dress Code ESOL FERPA Notice Information and Resources Menus PBIS PLAY Cards PowerSchool Parent Portal Reading Support Registration Records & Transcripts Student Information Update Safety & Security Testing The Paw Print Newsletter Tip Line - Your Voice Matters! Wrap Around Services Job Openings Staff Directory Employment: Job Openings Campus Map Contact Form Phone Numbers Open Records Burke County Public Schools Burke County Public Schools Burke County Public Schools Board of Education Superintendent Assistant Superintendents Board Office Staff Directory American Rescue Plans (ARP) Burke's B.E.S.T. Campus Map/Directions CCRPI Report Employment Opportunities Mission and Vision Open Records Request Quick Links SWSS/IE2 Partnership Contract Title IX Strategic Plan Athletics Curriculum & Instruction CTAE Federal Programs Finance Department Human Resources Maintenance Nurses/School Health Professional Learning Public Information Records Request School Nutrition Social Services Student Information Student Services Technology Testing Transportation School Profiles Waynesboro Primary SGA Elementary Blakeney Elementary Burke County Middle Burke County High BC Academy of Success BC Life Center Early Head Start Attendance Bus Information Calendar/Dress Code ESOL FERPA Notice Information and Resources Menus PBIS PLAY Cards PowerSchool Parent Portal Reading Support Registration Records & Transcripts Student Information Update Safety & Security Testing The Paw Print Newsletter Tip Line - Your Voice Matters! Wrap Around Services Staff Directory Employment: Job Openings Campus Map Contact Form Phone Numbers Open Records Useful Links Meetings/Policies Social Media - Header PowerSchool Apple Android Facebook Twitter Search Useful Links Meetings/Policies Social Media - Header PowerSchool Apple Android Facebook Twitter Search Useful Links Social Media - Header -2763,https://collegeparkga.justfoia.com/publicportal/home/search,List of Data Sources,Info About Agencies,JustFOIA Public Portal,"",200,403 Forbidden,[],[],[],[],[],[],"" -2764,http://www.huroncountysheriff.org/contact.html,Contact Info & Agency Meta,Info About Agencies,"","",404,"","","","","","","","" -2765,https://csucpd.crimegraphics.com/2013/default.aspx#CLERYMenu,Crime Maps & Reports,Agency-Published Resources,CrimeGraphics.com,"",200," - CrimeGraphics.com -",[],[],[],[],[],[],CSU Chico Police Department JavaScript is disabled. For customize this text useCRIME STATISTICS - - LBPD MONTHLY CRIME STATISTICS - The following statistical reports contain the LBPD's monthly crime statistic data sorted by 5 year summary, previous year to current year, and reporting district. - - - Reporting district number is a small, geographically designed area (usually several
",200,City of Long Beach,"[""Police Department""]","[""CRIME STATISTICS""]","[""Mayor"", ""City Council"", ""Rex Richardson"", ""Mary Zendejas"", ""Cindy Allen"", ""Kristina Duggan"", ""Daryl Supernaw"", ""Megan Kerr"", ""Suely Saro"", ""Roberto Uranga"", ""Al Austin"", ""Dr. Joni Ricks-Oddie"", ""Dawn McIntosh"", ""Laura L. Doud"", ""Doug Haubert"", ""Tom Modica"", ""Monique DeLaGarza"", ""City-Wide Elected Officials"", ""Appointed Officials"", ""Online Payments"", ""Online Services"", ""In-Person Services"", ""Opening a Business"", ""Doing Business With The City"", ""Resources"", ""Most Popular"", ""Online Resources"", ""Attractions"", ""Business Associations"", ""Travel Resources"", ""Departments"", ""Job Opportunities"", ""Information"", ""LBPD"", ""Employment"", ""Bureaus"", ""News & Events"", ""Crime Info"", ""How Do I"", ""How Do I"", ""Contact Us"", ""National Incident-Based Reporting System"", ""NIBRS Monthly Crime Statistics"", ""CRIME INCIDENT MAPPING APPLICATION"", ""2016-2022 Uniform Crime Reporting (UCR) Crime Statistics"", ""CRIME DATA TOTALS"", ""UNIFORM CRIME REPORTING"", ""PREVIOUS YEAR TO CURRENT YEAR"", ""5 YEAR SUMMARY"", ""MONTHLY REPORTING DISTRICT CRIME STATS"", ""ANNUAL REPORTING DISTRICT CRIME STATS"", ""HISTORICAL CRIME GRAPH"", ""Do."", ""Discover."", ""Connect."", ""Ask.""]","["""", ""1st District"", ""2nd District"", ""3rd District"", ""4th District"", ""5th District"", ""6th District"", ""7th District"", ""8th District"", ""9th District"", ""City Attorney"", ""City Auditor"", ""City Prosecutor"", ""City Manager"", ""City Clerk"", ""Some benefits of NIBRS include:"", ""Why is this important?""]","[""File a Report Online"", ""Submit a Tip"", ""Submit a Commendation"", ""File a Complaint"", ""Ride Along Program"", """", """", """", """", ""Crime Lab Survey"", """"]",[],"" -3337,https://data.littlerock.gov/,List of Data Sources,Info About Agencies,City of Little Rock Open Data and Performance,"",200,City of Little Rock Open Data and Performance,[],"[""Menu""]",[],[],[],[],"Skip to main content Skip to footer links Sign In Home About User Guide Data Apps City Wallet Citizen Connect Mapping Applications Data Catalog Performance Measures Resources Additional Data Sources Performance & Innovation City of Little Rock Website Socrata Knowledge Base Socrata Video Tutorials Socrata Developer Resources Menu Menu Close Home About User Guide Data Apps City Wallet Citizen Connect Mapping Applications Data Catalog Performance Measures Resources Additional Data Sources Performance & Innovation City of Little Rock Website Socrata Knowledge Base Socrata Video Tutorials Socrata Developer Resources Sign In Search Little Rock's Data Hub Welcome to our repository for Open Data & Performance Measures. This site provides easy access to information about your city government. We encourage the use of public data that the City of Little Rock has published to spark innovation, promote public collaboration, increase government transparency, and inform decision making. Previous slide Interactive map with 311, Police, Planning, Business Licenses and Housing data Citizen Connect Citizen Connect allows easy access to day-to-day insights and trends from 311 and Police crime data. Sign up today to start getting alerts for your neighborhood on the things that matter to you. Come Explore Citizen Connect Interactive dashboards showing measures on various data sets Little Rock Performance Measures Little Rock Performance is a centralized dashboard that tracks the City’s performance on six key priority areas that matter most to residents. Explore the Performance Measures Interactive maps with various City information Mapping Applications Interact with City data from Planning & Development, Police, Fire, Public Works and Housing & Neighborhood Programs through this easy to use mapping platform. Explore our GIS Data Story page describing Little Rock's What Works Cities Certification What Works Cities Certification Little Rock is a part of a national movement to use data and evidence learn more about our recent certification Learn more about Little Rock's Silver Certification from What Works Cities Video tour of data sites Video Tour of Data Sites Recorded introduction to the City of Little Rock's Data Hub, Citizen Connect and Mapping Application sites. Watch this video to get a tour of the Data Hub, Citizen Connect and Mapping Application sites Next slide Pause slides 1 2 3 4 5 Safe City Protect the rights of the people, ensure public order and provide public safety through efficient delivery of services. Economic Development Support the local/regional economy and to provide opportunities to retain, form and attract new business. Basic City Services Ensure residents receive quality basic services and provide a system that enables the most efficient and effective support possible. Infrastructure Maintain and improve comprehensive infrastructure system that meets the changing needs of the community. Quality of Life Join with community partners to ensure access to vital and varied recreational, creative and educational experiences. High Performing Government Provide the highest level of service, promote innovation and provide accountability and openness via various methods. " -3338,https://lasd.org/wp-content/uploads/2021/05/Transparency_Crime_Maps_Jan-Apr_051821.pdf,Crime Maps & Reports,Agency-Published Resources,"","",404,"","","","","","","","" -3339,manchesternh.gov/Departments/Police/Administration/Crime-Data/Crime-Statistics,Crime Statistics,Agency-Published Resources,Crime Statistics,"",200,Error retrieving title: No connection adapters were found for '://',"[""Crime Statistics"", ""Police Related Links""]",[],"["""", ""Crime Data Links""]","[""2022"", ""2023"", ""City Hall"", ""City Government"", ""About Manchester"", ""City Services"", ""Mobile App""]","[""2021""]",[],"" -3340,https://www.longbeach.gov/police/about-the-lbpd/lbpd-1421748/ois/,Officer Involved Shootings,Police & Public Interactions,OIS,"",200,City of Long Beach,"[""Police Department""]","[""Officer Involved Shooting (OIS)""]","[""Mayor"", ""City Council"", ""Rex Richardson"", ""Mary Zendejas"", ""Cindy Allen"", ""Kristina Duggan"", ""Daryl Supernaw"", ""Megan Kerr"", ""Suely Saro"", ""Roberto Uranga"", ""Al Austin"", ""Dr. Joni Ricks-Oddie"", ""Dawn McIntosh"", ""Laura L. Doud"", ""Doug Haubert"", ""Tom Modica"", ""Monique DeLaGarza"", ""City-Wide Elected Officials"", ""Appointed Officials"", ""Online Payments"", ""Online Services"", ""In-Person Services"", ""Opening a Business"", ""Doing Business With The City"", ""Resources"", ""Most Popular"", ""Online Resources"", ""Attractions"", ""Business Associations"", ""Travel Resources"", ""Departments"", ""Job Opportunities"", ""Information"", ""LBPD"", ""Employment"", ""Bureaus"", ""News & Events"", ""Crime Info"", ""How Do I"", ""How Do I"", ""Contact Us"", ""2023 OIS 03-05-2023- 5200 block of Atlantic 2022"", ""2021"", ""2020"", ""2019"", ""2018"", ""2016"", ""2015"", ""2014"", ""2013"", ""2012"", ""2010"", ""2009"", ""2007 070074149-Jackson, Jamal"", ""2006"", ""2004"", ""2002 OIS2002-002-Lemos, Danny"", ""2001"", ""2000 OIS2000-010-Baldovinos, Jose 1999"", ""1998"", ""1997"", ""1996"", ""1995"", ""1994"", ""1993"", ""1992"", ""1991"", ""1980"", ""1977"", ""Do."", ""Discover."", ""Connect."", ""Ask.""]","["""", ""1st District"", ""2nd District"", ""3rd District"", ""4th District"", ""5th District"", ""6th District"", ""7th District"", ""8th District"", ""9th District"", ""City Attorney"", ""City Auditor"", ""City Prosecutor"", ""City Manager"", ""City Clerk"", ""OIS2003-003-Tolbert, Rodney""]","[""LBPD SB 1421/AB 748"", ""Public Records Request""]",[],"" -3341,https://www.lapdonline.org/office-of-the-chief-of-police/professional-standards-bureau/disciplinary-penalties/,Complaints & Misconduct,Info About Officers,Disciplinary Penalties - LAPD Online,"",200,Home of the Los Angeles Police Department - LAPD Online,"[""Disciplinary Penalties""]","[""2024"", ""2023"", ""2022"", ""2021"", ""2020""]",[],[],[],[],LOS ANGELES 311 Services City Services Opens https://myla311.lacity.org/ in a new window. LA Directory City Directory Opens https://lacity.gov/directory in a new window. LOS ANGELES 311 Services City Services Opens https://myla311.lacity.org/ in a new window. LA Directory City Directory Opens https://lacity.gov/directory in a new window. LOS ANGELES 311 Services City Services Opens https://myla311.lacity.org/ in a new window. LA Directory City Directory Opens https://lacity.gov/directory in a new window. LOS ANGELES LOS ANGELES 311 Services City Services Opens https://myla311.lacity.org/ in a new window. LA Directory City Directory Opens https://lacity.gov/directory in a new window. -3342,https://www.littlerock.gov/media/5716/lrpd-use-of-force-policy.pdf,Policies & Contracts,Info About Agencies,"","",200,"","","","","","","","" -3343,https://www.crimemapping.com/map/nv/lasvegas,Crime Maps & Reports,Agency-Published Resources,CrimeMapping.com - Helping You Build a Safer Community,"",200,CrimeMapping.com - Helping You Build a Safer Community,"[""My Map Summary"", ""What"", ""Where"", ""When"", ""Display Options"", ""Location Selection"", ""Choose a Search Distance"", ""Timeframe Settings"", ""From:"", ""To:""]",[],[],[],[],[],"Preparing Map Content... Preparing Map Content... Receive Alerts Go 0 Records Date Range: Max record count of 500 reached. Zoom in or adjust filter. Help Zoom in to view records. Help No data provided for this map extent. Why? Help No records found when using the current filter. Help There are missing records. Help | Remove Filter Help Sex Offender Data Available for this Area. | Display or Dismiss Help FILTERS Print Distance: Miles select Streets select Zoom to Receive Alerts Receive Alerts Go 0 Records Date Range: Max record count of 500 reached. Zoom in or adjust filter. Help Zoom in to view records. Help No data provided for this map extent. Why? Help No records found when using the current filter. Help There are missing records. Help | Remove Filter Help Sex Offender Data Available for this Area. | Display or Dismiss Help FILTERS Print Distance: Miles select Streets select Zoom to Distance: Miles select Distance: Miles select Streets select Zoom to Zoom to Zoom to Zoom to Zoom to Zoom to Zoom to Fetching Data. x Close Fetching Data. Fetching Data. Fetching Data. x Close Share This Map My Map Summary The sum of the What, Where, When you’ve chosen. What * Data not provided by agency within map extent Where Broward County Police Boundary Agency Filter: Agency Name Here When Previous 7 Days Friday, May 1 - Friday, May 8 Restore Defaults Display Options What type(s) of records would you like to see? Select All | Deselect All Arson Assault Burglary Disturbing the Peace Drugs / Alcohol Violations DUI Fraud Homicide Motor Vehicle Theft Robbery Sex Crimes Theft / Larceny Vandalism Vehicle Break-In / Theft Weapons Sex Offender Sexual Predator * Data not provided by agency within map extent Location Selection Enter an Address, Feature or Location. Choose a Search Distance 500 feet 1000 feet 1500 feet 1/4 mile 1/2 mile 1 mile 2 miles Apply Remove Location Filter Timeframe Settings From how far back would you like to see records? **Note** This will not apply to Sex Offender data. Yesterday Previous 3 Days Previous Week Previous 4 Weeks Custom Time Range From: To: Apply " -3344,https://data.littlerock.gov/Safe-City/Little-Rock-Police-Department-Statistic-Insights/9iy3-rb7k,Crime Maps & Reports,Agency-Published Resources,City of Little Rock Open Data and Performance,"",200,City of Little Rock Open Data and Performance,"[""Sign In to Tyler Data & Insights""]","[""Menu""]",[],[],[],[],Skip to main content Skip to footer links Sign In Home About User Guide Data Apps City Wallet Citizen Connect Mapping Applications Data Catalog Performance Measures Resources Additional Data Sources Performance & Innovation City of Little Rock Website Socrata Knowledge Base Socrata Video Tutorials Socrata Developer Resources Menu Menu Close Home About User Guide Data Apps City Wallet Citizen Connect Mapping Applications Data Catalog Performance Measures Resources Additional Data Sources Performance & Innovation City of Little Rock Website Socrata Knowledge Base Socrata Video Tutorials Socrata Developer Resources Sign In Search Sign In Home About User Guide Data Apps City Wallet Citizen Connect Mapping Applications Data Catalog Performance Measures Resources Additional Data Sources Performance & Innovation City of Little Rock Website Socrata Knowledge Base Socrata Video Tutorials Socrata Developer Resources Menu Sign In Home About User Guide Data Apps City Wallet Citizen Connect Mapping Applications Data Catalog Performance Measures Resources Additional Data Sources Performance & Innovation City of Little Rock Website Socrata Knowledge Base Socrata Video Tutorials Socrata Developer Resources Menu Sign In Sign In Home About User Guide Data Apps City Wallet Citizen Connect Mapping Applications Data Catalog Performance Measures Resources Additional Data Sources Performance & Innovation City of Little Rock Website Socrata Knowledge Base Socrata Video Tutorials Socrata Developer Resources Data Apps City Wallet Citizen Connect Mapping Applications Data Catalog Performance Measures Data Apps City Wallet Citizen Connect Mapping Applications Data Catalog Performance Measures Resources Additional Data Sources Performance & Innovation City of Little Rock Website Socrata Knowledge Base Socrata Video Tutorials Socrata Developer Resources Resources Additional Data Sources Performance & Innovation City of Little Rock Website Socrata Knowledge Base Socrata Video Tutorials Socrata Developer Resources Menu Close Home About User Guide Data Apps City Wallet Citizen Connect Mapping Applications Data Catalog Performance Measures Resources Additional Data Sources Performance & Innovation City of Little Rock Website Socrata Knowledge Base Socrata Video Tutorials Socrata Developer Resources Sign In Search Home About User Guide Data Apps City Wallet Citizen Connect Mapping Applications Data Catalog Performance Measures Resources Additional Data Sources Performance & Innovation City of Little Rock Website Socrata Knowledge Base Socrata Video Tutorials Socrata Developer Resources Sign In Search Home About User Guide Data Apps City Wallet Citizen Connect Mapping Applications Data Catalog Performance Measures Resources Additional Data Sources Performance & Innovation City of Little Rock Website Socrata Knowledge Base Socrata Video Tutorials Socrata Developer Resources Data Apps City Wallet Citizen Connect Mapping Applications Data Catalog Performance Measures Resources Additional Data Sources Performance & Innovation City of Little Rock Website Socrata Knowledge Base Socrata Video Tutorials Socrata Developer Resources Sign In Search Search Sign In to Tyler Data & Insights SSO Enabled Forgot Password? Sign In Don't have an account yet? Sign Up Sign In to Tyler Data & Insights SSO Enabled Forgot Password? Sign In Don't have an account yet? Sign Up Sign In to Tyler Data & Insights SSO Enabled Forgot Password? Sign In Don't have an account yet? Sign Up SSO Enabled Forgot Password? Sign In -3345,https://data.memphistn.gov/Public-Safety/Memphis-Police-Department-Aggregate-Crime/n7ue-iwew,Crime Statistics,Agency-Published Resources,Memphis Police Department Aggregate Crime | Memphis Data Hub,"",200,Memphis Data Hub,"[""Major Violent Crime Incidents YOY"", ""Major Property Crime Incidents YOY"", ""Reduce Violent Crime"", ""Reduce Property Crime"", ""Manage Featured Content""]","[""Menu"", ""Access this Dataset via OData"", ""Memphis Police Department Aggregate Crime"", ""About this Dataset"", ""What's in this Dataset?"", ""Columns in this Dataset"", ""Dataset Changelog"", ""Memphis Police Department Aggregate Crime"", ""Open this dataset in Carto?"", ""Open this dataset in Plot.ly?"", ""Send a Message to the Owner of this Dataset"", ""Featured Content""]","[""Info"", ""Organization"", ""Temporal Coverage"", ""Update Cadence"", ""Topics"", ""Oops, something isn't right.""]",[],[],"[""OData Endpoint""]",Skip to Main Content Sign In COVID-19 Updates Home About User Guide Resources Memphis Data Hub Guide Additional Data Sources Suggest a Dataset Request a Workshop Contact Us Submit a FOIA Request Socrata Knowledge Base Socrata Video Tutorials Socrata Developer Resources Open Data Apps Performance Public Safety Open 311 Civic Assets Capital Improvement Projects Data Catalog Menu Menu Close COVID-19 Updates Home About User Guide Resources Memphis Data Hub Guide Additional Data Sources Suggest a Dataset Request a Workshop Contact Us Submit a FOIA Request Socrata Knowledge Base Socrata Video Tutorials Socrata Developer Resources Open Data Apps Performance Public Safety Open 311 Civic Assets Capital Improvement Projects Data Catalog Sign In Search Sign In COVID-19 Updates Home About User Guide Resources Memphis Data Hub Guide Additional Data Sources Suggest a Dataset Request a Workshop Contact Us Submit a FOIA Request Socrata Knowledge Base Socrata Video Tutorials Socrata Developer Resources Open Data Apps Performance Public Safety Open 311 Civic Assets Capital Improvement Projects Data Catalog Menu Sign In COVID-19 Updates Home About User Guide Resources Memphis Data Hub Guide Additional Data Sources Suggest a Dataset Request a Workshop Contact Us Submit a FOIA Request Socrata Knowledge Base Socrata Video Tutorials Socrata Developer Resources Open Data Apps Performance Public Safety Open 311 Civic Assets Capital Improvement Projects Data Catalog Menu Sign In Sign In COVID-19 Updates Home About User Guide Resources Memphis Data Hub Guide Additional Data Sources Suggest a Dataset Request a Workshop Contact Us Submit a FOIA Request Socrata Knowledge Base Socrata Video Tutorials Socrata Developer Resources Open Data Apps Performance Public Safety Open 311 Civic Assets Capital Improvement Projects Data Catalog Resources Memphis Data Hub Guide Additional Data Sources Suggest a Dataset Request a Workshop Contact Us Submit a FOIA Request Socrata Knowledge Base Socrata Video Tutorials Socrata Developer Resources Resources Memphis Data Hub Guide Additional Data Sources Suggest a Dataset Request a Workshop Contact Us Submit a FOIA Request Socrata Knowledge Base Socrata Video Tutorials Socrata Developer Resources Open Data Apps Performance Public Safety Open 311 Civic Assets Capital Improvement Projects Data Catalog Open Data Apps Performance Public Safety Open 311 Civic Assets Capital Improvement Projects Data Catalog Menu Close COVID-19 Updates Home About User Guide Resources Memphis Data Hub Guide Additional Data Sources Suggest a Dataset Request a Workshop Contact Us Submit a FOIA Request Socrata Knowledge Base Socrata Video Tutorials Socrata Developer Resources Open Data Apps Performance Public Safety Open 311 Civic Assets Capital Improvement Projects Data Catalog Sign In Search COVID-19 Updates Home About User Guide Resources Memphis Data Hub Guide Additional Data Sources Suggest a Dataset Request a Workshop Contact Us Submit a FOIA Request Socrata Knowledge Base Socrata Video Tutorials Socrata Developer Resources Open Data Apps Performance Public Safety Open 311 Civic Assets Capital Improvement Projects Data Catalog Sign In Search -3346,https://data.lacity.org/browse?Data-Owner_Department=LAPD&limitTo=datasets&tags=cfs&page=1,Calls for Service,Police & Public Interactions,"Results matching type of Datasets, of LAPD, and topic of cfs | Page 1 of 2 | Los Angeles - Open Data Portal","",200,"DataLA: Information, Insights, and Analysis from the City of Angels | Los Angeles - Open Data Portal","[""Categories"", ""Department"", ""Tags""]","[""Menu"", ""View Types > Datasets"", ""Department > LAPD"", ""Tags > cfs"", ""Sort"", ""Sort by Most Relevant"", ""Filter"", ""Categories"", ""View Types"", ""Department"", ""Tags"", ""Federated Domains"", ""LAPD Calls for Service 2020"", ""LAPD Calls for Service 2014"", ""LAPD Calls for Service 2017"", ""LAPD Calls for Service 2016"", ""LAPD Calls for Service 2019"", ""LAPD Calls for Service 2018"", ""LAPD Calls for Service 2015"", ""LAPD Calls for Service 2010"", ""LAPD Calls for Service 2023"", ""LAPD Calls for Service 2022"", ""A-Z"", ""A-Z"", ""A-Z""]",[],[],[],[],Skip to main content Skip to footer links -3347,https://www.doj.nh.gov/criminal/documents/law-enforcement-manual.pdf,Policies & Contracts,Info About Agencies,"","",200,"","","","","","","","" -3348,https://www.lvmpd.com/en-us/Pages/Statistics.aspx,Arrest Records,Police & Public Interactions,"","",-1,"","","","","","","","" -3349,https://longbeachca.maps.arcgis.com/apps/webappviewer/index.html?id=da05d12e09104e598b6ebcace59f2bba,Crime Maps & Reports,Agency-Published Resources,ArcGIS Web Application,"",200,Error retrieving title: 'NoneType' object has no attribute 'text',"[""""]",[],[],[],[],[],"" -3350,https://citydocs.longbeach.gov/LBPDPublicDocs/Browse.aspx?dbid=0&id=131218&row=1&cr=1,Policies & Contracts,Info About Agencies,Error,"",200,Error retrieving title: dictionary changed size during iteration,[],[],[],[],[],[],Cookies are not enabled for this website. Cookies must be enabled in order to sign in to WebLink 10. Sign Out Cookies are not enabled for this website. Cookies must be enabled in order to sign in to WebLink 10. Sign Out Cookies are not enabled for this website. Cookies must be enabled in order to sign in to WebLink 10. Sign Out -3351,https://www.lvmpd.com/en-us/Documents/2018_IAB_Complaint_Summary.pdf,Complaints & Misconduct,Info About Officers,"","",-1,"","","","","","","","" -3352,https://www.lvmpd.com/en-us/Documents/Statistics/Weekly%20Crime%20Report112621_media.pdf,Crime Statistics,Agency-Published Resources,"","",-1,"","","","","","","","" -3353,https://www.lapdonline.org/office-of-the-chief-of-police/constitutional-policing/annual-complaint-report/,Complaints & Misconduct,Info About Officers,Annual Complaint Report - LAPD Online,"",200,Home of the Los Angeles Police Department - LAPD Online,"[""Annual Complaint Report""]","[""2015 - 2019 Annual Complaint Reports""]",[],[],[],[],LOS ANGELES 311 Services City Services Opens https://myla311.lacity.org/ in a new window. LA Directory City Directory Opens https://lacity.gov/directory in a new window. LOS ANGELES 311 Services City Services Opens https://myla311.lacity.org/ in a new window. LA Directory City Directory Opens https://lacity.gov/directory in a new window. LOS ANGELES 311 Services City Services Opens https://myla311.lacity.org/ in a new window. LA Directory City Directory Opens https://lacity.gov/directory in a new window. LOS ANGELES LOS ANGELES 311 Services City Services Opens https://myla311.lacity.org/ in a new window. LA Directory City Directory Opens https://lacity.gov/directory in a new window. -3354,https://clrweb.littlerock.state.ar.us/pub/public_menu.php,Calls for Service,Police & Public Interactions,CLR Dispatches,"",200,City of Little Rock e-goverment Web Page,[],[],"[""Little Rock Dispatches delayed 30 minutes to 8 hours displayed""]",[],[],[],Little Rock Dispatches delayed 30 minutes to 8 hours displayed 1197541552 Report Search By Street Name Search By Call Type Show 5 10 25 50 All entries Call Type Location Dispatch Time Please wait until the data loads..... Showing 0 to 0 of 0 entries Previous Next --- ALL Call Types --- ABNVEH - Abandoned Vehicle Administrative Calls Arson Report Assist Medical Assist Off-Duty Officer Assist Other Agency Assist Parking Battery Breaking or Entering Automobile Burglary Report Check Condition of Subject Citizen Contact Commercial Burglar Alarm Criminal Mischief Report Criminal Trespassing Disturbance Disturbance with Weapon IP - In Progress Driving While Intoxicated Expected Death Fight Fire Run Fireworks Forgery Report Found Property Fraudulent Use of Credit Card Gambling Law Violations Harassing Communications Indecent Exposure Information Report Kidnapping Loitering Lost or Stolen License Plate Loud Music Loud Party Missing Child 0-12 Years Narcotics Law Violations Off w/ Prisoner in cust Officer Emergency Alert PRV PRP - Private Property Tow Parking Violation Police - Accident Police - Active Aggressor Police - Animals Calls Police - Assist Party Police - Attempted Suicide Police - Battery of An Officer Police - Bomb Threat Police - Cutting Report Police - Drowning Police - Hazmat Police - Industrial Accident Police - Overdose Police - Shooting Report Police - Subject Down Police - Suspicious Package Police - Tactical Rescue Jumper Property Check Prostitution Residential Alarm Robbery Alarm Robbery of Business Report Robbery of Individual Report Shoplifting Shot Spotter Activation Shots Fired Stand By to Prevent a Disturbance Subject Pursuit Subject Stop Suspicious Person Terroristic Threatening Theft Report Traffic Pursuit Traffic Stop Traffic Violation Unknown Trouble Wanted Person Show 5 10 25 50 All entries Call Type Location Dispatch Time Please wait until the data loads..... Showing 0 to 0 of 0 entries Previous Next Show 5 10 25 50 All entries Call Type Location Dispatch Time Please wait until the data loads..... Showing 0 to 0 of 0 entries Previous Next Show 5 10 25 50 All entries Call Type Location Dispatch Time Please wait until the data loads..... Showing 0 to 0 of 0 entries Previous Next Show 5 10 25 50 All entries Showing 0 to 0 of 0 entries Previous Next -3355,https://louisville-police.org/237/Important-Phone-Numbers,Contact Info & Agency Meta,Info About Agencies,"Important Phone Numbers | Louisville Metro PD, KY",Review all phone numbers concerned with the Police Department. ,200,"Louisville Metro PD, KY | Official Website","[""Important Phone Numbers""]","[""Give an Anonymous Tip"", ""Criminal Investigations"", ""Division Phone Numbers"", ""Other Numbers"", ""Other Agencies"", ""Parking Tickets"", ""Warrants/Emergency Protective Order (EPO)""]","[""Hours"", ""Contact Us"", ""FAQs"", ""Popular Links"", ""Site Links"", ""Loading""]",[],[],[],Skip to Main Content -3356,https://opendataportal-lasvegas.opendata.arcgis.com/,List of Data Sources,Info About Agencies,City of Las Vegas Open Data,City of Las Vegas Open Data Page,200,City of Las Vegas Open Data,[],[],[],[],[],[],"" -3357,https://www.longbeach.gov/citymanager/cpcc/annual-report/,Complaints & Misconduct,Info About Officers,Annual Report,"- - 761 - false -
",200,City of Long Beach,"[""City Manager""]","[""Annual Report"", ""The CPCC's Annual Reports""]","[""Mayor"", ""City Council"", ""Rex Richardson"", ""Mary Zendejas"", ""Cindy Allen"", ""Kristina Duggan"", ""Daryl Supernaw"", ""Megan Kerr"", ""Suely Saro"", ""Roberto Uranga"", ""Al Austin"", ""Dr. Joni Ricks-Oddie"", ""Dawn McIntosh"", ""Laura L. Doud"", ""Doug Haubert"", ""Tom Modica"", ""Monique DeLaGarza"", ""City-Wide Elected Officials"", ""Appointed Officials"", ""Online Payments"", ""Online Services"", ""In-Person Services"", ""Opening a Business"", ""Doing Business With The City"", ""Resources"", ""Most Popular"", ""Online Resources"", ""Attractions"", ""Business Associations"", ""Travel Resources"", ""Departments"", ""Job Opportunities"", ""Information"", ""Government Affairs"", ""Contact Your..."", ""CPCC"", ""Tidelands CIP Division"", ""Projects"", ""More Projects"", ""Annual Report"", ""Contact Us"", ""Do."", ""Discover."", ""Connect."", ""Ask.""]","["""", ""1st District"", ""2nd District"", ""3rd District"", ""4th District"", ""5th District"", ""6th District"", ""7th District"", ""8th District"", ""9th District"", ""City Attorney"", ""City Auditor"", ""City Prosecutor"", ""City Manager"", ""City Clerk""]",[],[],"" -3358,http://www.lvpmsa.org/Forms/Dept.%20Man%207-14-07.pdf,Policies & Contracts,Info About Agencies,"","",200,"","","","","","","","" -3359,https://www.manchesternh.gov/Portals/2/Departments/police_web/SOP-Authority-Law-Enforcement-Role_06-2020.pdf?ver=2020-06-24-084502-160,Policies & Contracts,Info About Agencies,"","",200,"","","","","","","","" -3360,http://www.manchesternh.gov/Portals/2/Departments/police_blog/Police%20Log.pdf,Arrest Records,Police & Public Interactions,"","",200,"","","","","","","","" -3361,https://www.longbeach.gov/police/about-the-lbpd/lbpd-stop-data ,Stops,Police & Public Interactions,City of Long Beach,"",200,City of Long Beach,[],"[""Page Not Found""]","[""Mayor"", ""City Council"", ""Rex Richardson"", ""Mary Zendejas"", ""Cindy Allen"", ""Kristina Duggan"", ""Daryl Supernaw"", ""Megan Kerr"", ""Suely Saro"", ""Roberto Uranga"", ""Al Austin"", ""Dr. Joni Ricks-Oddie"", ""Dawn McIntosh"", ""Laura L. Doud"", ""Doug Haubert"", ""Tom Modica"", ""Monique DeLaGarza"", ""City-Wide Elected Officials"", ""Appointed Officials"", ""Online Payments"", ""Online Services"", ""In-Person Services"", ""Opening a Business"", ""Doing Business With The City"", ""Resources"", ""Most Popular"", ""Online Resources"", ""Attractions"", ""Business Associations"", ""Travel Resources"", ""Departments"", ""Job Opportunities"", ""Information"", ""Do."", ""Discover."", ""Connect."", ""Ask.""]","["""", ""1st District"", ""2nd District"", ""3rd District"", ""4th District"", ""5th District"", ""6th District"", ""7th District"", ""8th District"", ""9th District"", ""City Attorney"", ""City Auditor"", ""City Prosecutor"", ""City Manager"", ""City Clerk""]",[],[],"" -3362,https://www.littlerock.gov/media/6483/administrative_personnel_policy_and_procedure_feb_20.pdf,Policies & Contracts,Info About Agencies,"","",200,"","","","","","","","" -3363,https://lasd.org/lasd-phone-directory/,Contact Info & Agency Meta,Info About Agencies,LASD Phone Directory | Los Angeles County Sheriff's Department,"",200,Los Angeles County Sheriff's Department | A Tradition of Service,[],"[""LASD Phone Directory""]","[""Station Phone Numbers"", ""Unit Phone Numbers"", ""Organization Phone Numbers""]",[],[],[],"" -3364,https://publicsafety.memphistn.gov/#!/dashboard?places=&restrictedPlaces=&categories=571:66%7C572:66-73%7C573:66-69%7C574:66-68%7C575:66-69%7C576:66%7C577:66-69%7C578:66%7C579:66-67%7C580:66-70%7C581:66-68%7C582:66-80%7C583:66-68%7C584:66-75%7C585:66-67%7C586:66%7C587:66-67&start_date=2020-05-25&end_date=2020-06-08&lat=35.1495&lng=-89.90719999999999&zoom=10&shapeIds=&shapeGroupId=me95-vbw4&showSideBar=false&mapType=Map&listViewTab=overview&overlayLayers=Zip%20Codes&search_field=&search_value=&autoUpdate=false&heatFilters=&statusFilter=&choroplethField=count&searchType=&include_restricted_places=false,Crime Maps & Reports,Agency-Published Resources,Memphis Public Safety,"",200,Memphis Public Safety,[],[],[],[],[],[],"" -3365,https://louisville-police.org/DocumentCenter/View/2386/PSU-INVESTIGATED-CASES-Monthly-Breakdown-2022,Complaints & Misconduct,Info About Officers,"","",200,"","","","","","","","" -3366,https://www.lvmpd.com/en-us/Documents/IAB%20Annual%20Accountability%20Report%202018-2019.pdf,Complaints & Misconduct,Info About Officers,"","",-1,"","","","","","","","" -3368,https://data.lacity.org/Public-Safety/Arrest-Data-from-2020-to-Present/amvf-fr72,Arrest Records,Police & Public Interactions,Arrest Data from 2020 to Present | Los Angeles - Open Data Portal,"",200,"DataLA: Information, Insights, and Analysis from the City of Angels | Los Angeles - Open Data Portal","[""Arrest Data 2020-Present: Reasons for Arrest"", ""Arrest Data 2020-Present: #1"", ""Manage Featured Content""]","[""Menu"", ""Access this Dataset via OData"", ""Arrest Data from 2020 to Present"", ""About this Dataset"", ""What's in this Dataset?"", ""Columns in this Dataset"", ""Dataset Changelog"", ""Arrest Data from 2020 to Present"", ""Open this dataset in Carto?"", ""Open this dataset in Plot.ly?"", ""Send a Message to the Owner of this Dataset"", ""Featured Content""]","[""Committed Update Frequency"", ""Data Owner"", ""Location Specified"", ""Topics"", ""Licensing and Attribution""]",[],[],"[""OData Endpoint""]",Skip to Main Content Sign In Data Catalog Geohub Blog Developer Resources About Menu Menu Close Data Catalog Geohub Blog Developer Resources About Sign In Search Sign In Data Catalog Geohub Blog Developer Resources About Menu Sign In Data Catalog Geohub Blog Developer Resources About Menu Sign In Sign In Data Catalog Geohub Blog Developer Resources About Menu Close Data Catalog Geohub Blog Developer Resources About Sign In Search Data Catalog Geohub Blog Developer Resources About Sign In Search Data Catalog Geohub Blog Developer Resources About Sign In Search Search -3369,https://data.lacity.org/browse?q=crime%20data&sortBy=relevance,Crime Statistics,Agency-Published Resources,"Results for ""crime data"" | Page 1 of 4 | Los Angeles - Open Data Portal","",200,"DataLA: Information, Insights, and Analysis from the City of Angels | Los Angeles - Open Data Portal","[""Categories"", ""Department"", ""Tags""]","[""Menu"", ""Sort"", ""Sort by Most Relevant"", ""Filter"", ""Categories"", ""View Types"", ""Department"", ""Tags"", ""Federated Domains"", ""Crime Data from 2020 to Present"", ""Crime Data from 2010 to 2019"", ""Domestic Violence Calls from 2020 to Present"", ""Traffic Collision Data from 2010 to Present"", ""Arrest Data from 2010 to 2019"", ""Crime in Los Angeles in 2020 Bar Chart"", ""LAPD - Annual High Level Metrics - GOVSTAT - Archived"", ""Number of crimes 2010 - today"", ""Number of Most Serious Crimes (code 110) in LA neighborhoods"", ""Types of Crime and their Amount in Areas within City of Los Angeles, 2020 to Present"", ""A-Z"", ""A-Z"", ""A-Z""]",[],[],[],[],Skip to main content Skip to footer links -3370,https://data.lacity.org/,List of Data Sources,Info About Agencies,"DataLA: Information, Insights, and Analysis from the City of Angels | Los Angeles - Open Data Portal","",200,"DataLA: Information, Insights, and Analysis from the City of Angels | Los Angeles - Open Data Portal",[],"[""Menu"", ""Featured Stories"", ""Data Catalog"", ""Resources""]",[],[],[],[],Skip to main content Skip to footer links Sign In Data Catalog Geohub Blog Developer Resources About Menu Menu Close Data Catalog Geohub Blog Developer Resources About Sign In Search LOS ANGELES OPEN DATA Explore the City of Los Angeles' Open Data Featured Stories Data Catalog Administration & Finance Discover data on the city’s finances and administration. COVID-19 Explore COVID-19 data. Public Safety View up to date data on the city’s public safety data. City Infrastructure & Service Requests Find information on services and infrastructure. Housing and Real Estate Data on housing programs and land use in LA. Parks & Recreation Find information on city parks and recreation centers. Sanitation Find data on street cleanings and more. Transportation Find data from the Department of Transportation. Resources DataLA Medium Blog Read about the latest updates from the team! Suggest a data set Didn't find what you were looking for? Suggest a dataset. Public Records Requests Submit and review public records requests Explore the GeoHub Browse our geospatial data Sign In Data Catalog Geohub Blog Developer Resources About Menu Menu Close Data Catalog Geohub Blog Developer Resources About Sign In Search LOS ANGELES OPEN DATA Explore the City of Los Angeles' Open Data Featured Stories Data Catalog Administration & Finance Discover data on the city’s finances and administration. COVID-19 Explore COVID-19 data. Public Safety View up to date data on the city’s public safety data. City Infrastructure & Service Requests Find information on services and infrastructure. Housing and Real Estate Data on housing programs and land use in LA. Parks & Recreation Find information on city parks and recreation centers. Sanitation Find data on street cleanings and more. Transportation Find data from the Department of Transportation. Resources DataLA Medium Blog Read about the latest updates from the team! Suggest a data set Didn't find what you were looking for? Suggest a dataset. Public Records Requests Submit and review public records requests Explore the GeoHub Browse our geospatial data Sign In Data Catalog Geohub Blog Developer Resources About Menu Menu Close Data Catalog Geohub Blog Developer Resources About Sign In Search Sign In Data Catalog Geohub Blog Developer Resources About Menu Sign In Data Catalog Geohub Blog Developer Resources About Menu Sign In Sign In Data Catalog Geohub Blog Developer Resources About Menu Close Data Catalog Geohub Blog Developer Resources About Sign In Search Data Catalog Geohub Blog Developer Resources About Sign In Search Data Catalog Geohub Blog Developer Resources About Sign In Search Search -3371,https://louisville-police.org/DocumentCenter/View/778/LMPD-Training-Curriculum-Outline-2018,Policies & Contracts,Info About Agencies,"","",200,"","","","","","","","" -3372,https://www.lvmpd.com/en-us/InternalOversightConstitutionalPolicing/Documents/Statistical%20Data%20and%20Reports/2020/Use%20of%20Force%20and%20Vehicle%20Pursuit%20Statistical%20Report%202016-2020%20FINAL.pdf,Use of Force Reports,Police & Public Interactions,"","",-1,"","","","","","","","" -3373,https://data.lacounty.gov/Criminal/All-Shooting-Incidents-for-Deputy-Involved-Shootin/xutq-azb6/data,Officer Involved Shootings,Police & Public Interactions,County of Los Angeles Open Data,"This site represents the County of Los Angeles' commitment to transparency, accountability, and community engagement - and further serve as a centralized data resource for data-driven projects. ",200,County of Los Angeles Open Data,[],[],[],[],[],[],"" -3374,https://www.manchesternh.gov/Departments/Police/Contact-Police,Contact Info & Agency Meta,Info About Agencies,Contact Police,"",200," - City Of Manchester -","[""Email Police"", ""Police Related Links""]",[],[],"[""City Hall"", ""City Government"", ""About Manchester"", ""City Services"", ""Mobile App""]",[],[],"" -3376,https://www.lapdonline.org/contact-us/,Contact Info & Agency Meta,Info About Agencies,Contact Us - LAPD Online,"",200,Home of the Los Angeles Police Department - LAPD Online,"[""Contact Us"", ""Helpful Links and Information""]","[""Phone Numbers"", ""Email the LAPD"", ""Addresses"", ""Non-Emergency Crime Reporting & Hotlines"", ""Get Service"", ""Other Services"", ""Actions & Information"", ""External Resources""]",[],[],[],[],LOS ANGELES 311 Services City Services Opens https://myla311.lacity.org/ in a new window. LA Directory City Directory Opens https://lacity.gov/directory in a new window. LOS ANGELES 311 Services City Services Opens https://myla311.lacity.org/ in a new window. LA Directory City Directory Opens https://lacity.gov/directory in a new window. LOS ANGELES 311 Services City Services Opens https://myla311.lacity.org/ in a new window. LA Directory City Directory Opens https://lacity.gov/directory in a new window. LOS ANGELES LOS ANGELES 311 Services City Services Opens https://myla311.lacity.org/ in a new window. LA Directory City Directory Opens https://lacity.gov/directory in a new window. -3377,https://data.louisvilleky.gov/dataset/crime-reports,Crime Statistics,Agency-Published Resources,Louisville Kentucky Open Data,"Explore our open data and tools, and use it build insights of your own.",200,Louisville Kentucky Open Data,[],[],[],[],[],[],"" -3378,https://www.crimemapping.com/map/nh/manchester,Crime Maps & Reports,Agency-Published Resources,CrimeMapping.com - Helping You Build a Safer Community,"",200,CrimeMapping.com - Helping You Build a Safer Community,"[""My Map Summary"", ""What"", ""Where"", ""When"", ""Display Options"", ""Location Selection"", ""Choose a Search Distance"", ""Timeframe Settings"", ""From:"", ""To:""]",[],[],[],[],[],"Preparing Map Content... Preparing Map Content... Receive Alerts Go 0 Records Date Range: 3-18-2024 to 3-24-2024 (7 Days) Max record count of 500 reached. Zoom in or adjust filter. Help Zoom in to view records. Help No data provided for this map extent. Why? Help No records found when using the current filter. Help There are missing records. Help | Remove Filter Help Sex Offender Data Available for this Area. | Display or Dismiss Help FILTERS Print Distance: Miles select Streets select Esri, HERE, Garmin, INCREMENT P, NGA, USGS | Zoom to Receive Alerts Receive Alerts Go 0 Records Date Range: 3-18-2024 to 3-24-2024 (7 Days) Max record count of 500 reached. Zoom in or adjust filter. Help Zoom in to view records. Help No data provided for this map extent. Why? Help No records found when using the current filter. Help There are missing records. Help | Remove Filter Help Sex Offender Data Available for this Area. | Display or Dismiss Help FILTERS Print Distance: Miles select Streets select Esri, HERE, Garmin, INCREMENT P, NGA, USGS | Zoom to Distance: Miles select Distance: Miles select Streets select Esri, HERE, Garmin, INCREMENT P, NGA, USGS | Zoom to Esri, HERE, Garmin, INCREMENT P, NGA, USGS | Zoom to Esri, HERE, Garmin, INCREMENT P, NGA, USGS | Zoom to Zoom to Zoom to Zoom to Zoom to Fetching Data. x Close Fetching Data. Fetching Data. Fetching Data. x Close Share This Map My Map Summary The sum of the What, Where, When you’ve chosen. What * Data not provided by agency within map extent Where Broward County Police Boundary Agency Filter: Agency Name Here When Previous 7 Days Friday, May 1 - Friday, May 8 Restore Defaults Display Options What type(s) of records would you like to see? Select All | Deselect All Arson Assault Burglary Disturbing the Peace Drugs / Alcohol Violations DUI Fraud Homicide Motor Vehicle Theft Robbery Sex Crimes Theft / Larceny Vandalism Vehicle Break-In / Theft Weapons Sex Offender Sexual Predator * Data not provided by agency within map extent Location Selection Enter an Address, Feature or Location. Choose a Search Distance 500 feet 1000 feet 1500 feet 1/4 mile 1/2 mile 1 mile 2 miles Apply Remove Location Filter Timeframe Settings From how far back would you like to see records? **Note** This will not apply to Sex Offender data. Yesterday Previous 3 Days Previous Week Previous 4 Weeks Custom Time Range From: select Monday, March 18, 2024 To: select Sunday, March 24, 2024 Apply " -3379,https://data.louisvilleky.gov/dataset/lmpd-stops-data,Stops,Police & Public Interactions,Louisville Kentucky Open Data,"Explore our open data and tools, and use it build insights of your own.",200,Louisville Kentucky Open Data,[],[],[],[],[],[],"" -3380,https://lasd.org/transparency/discipline/#discipline_2021,Complaints & Misconduct,Info About Officers,Discipline | Los Angeles County Sheriff's Department,"These reports are based on the Department’s “Letters of Intent” and does not reflect modifications to recommended discipline due to Grievances, Skelly Hearings, Arbitration Hearings, Civil Service Commission Hearings, and/or Court Litigation.",200,Los Angeles County Sheriff's Department | A Tradition of Service,[],"[""Accountability""]","[""Employee Discipline Reports"", ""Inquiries and miscellaneous documents""]","[""2023"", ""2022"", ""2021"", ""2020"", ""2019"", ""2018"", ""2020""]",[],[],"" -3381,https://citydocs.longbeach.gov/LBPDPublicDocs/DocView.aspx?id=162830&dbid=0&repo=LBPD-PUBDOCS,Policies & Contracts,Info About Agencies,Error,"",200,Error retrieving title: dictionary changed size during iteration,[],[],[],[],[],[],Cookies are not enabled for this website. Cookies must be enabled in order to sign in to WebLink 10. Sign Out Cookies are not enabled for this website. Cookies must be enabled in order to sign in to WebLink 10. Sign Out Cookies are not enabled for this website. Cookies must be enabled in order to sign in to WebLink 10. Sign Out -3382,https://data.memphistn.gov/Public-Safety/911-Call-Volume-Average-Answer-Time/mec3-hdce,Calls for Service,Police & Public Interactions,911 Call Volume & Average Answer Time | Memphis Data Hub,This dataset shows the amount of time it takes the City of Memphis to answer calls to 911.,200,Memphis Data Hub,[],"[""Menu""]",[],[],[],[],Skip to Main Content Sign In COVID-19 Updates Home About User Guide Resources Memphis Data Hub Guide Additional Data Sources Suggest a Dataset Request a Workshop Contact Us Submit a FOIA Request Socrata Knowledge Base Socrata Video Tutorials Socrata Developer Resources Open Data Apps Performance Public Safety Open 311 Civic Assets Capital Improvement Projects Data Catalog Menu Menu Close COVID-19 Updates Home About User Guide Resources Memphis Data Hub Guide Additional Data Sources Suggest a Dataset Request a Workshop Contact Us Submit a FOIA Request Socrata Knowledge Base Socrata Video Tutorials Socrata Developer Resources Open Data Apps Performance Public Safety Open 311 Civic Assets Capital Improvement Projects Data Catalog Sign In Search Sign In COVID-19 Updates Home About User Guide Resources Memphis Data Hub Guide Additional Data Sources Suggest a Dataset Request a Workshop Contact Us Submit a FOIA Request Socrata Knowledge Base Socrata Video Tutorials Socrata Developer Resources Open Data Apps Performance Public Safety Open 311 Civic Assets Capital Improvement Projects Data Catalog Menu Sign In COVID-19 Updates Home About User Guide Resources Memphis Data Hub Guide Additional Data Sources Suggest a Dataset Request a Workshop Contact Us Submit a FOIA Request Socrata Knowledge Base Socrata Video Tutorials Socrata Developer Resources Open Data Apps Performance Public Safety Open 311 Civic Assets Capital Improvement Projects Data Catalog Menu Sign In Sign In COVID-19 Updates Home About User Guide Resources Memphis Data Hub Guide Additional Data Sources Suggest a Dataset Request a Workshop Contact Us Submit a FOIA Request Socrata Knowledge Base Socrata Video Tutorials Socrata Developer Resources Open Data Apps Performance Public Safety Open 311 Civic Assets Capital Improvement Projects Data Catalog Resources Memphis Data Hub Guide Additional Data Sources Suggest a Dataset Request a Workshop Contact Us Submit a FOIA Request Socrata Knowledge Base Socrata Video Tutorials Socrata Developer Resources Resources Memphis Data Hub Guide Additional Data Sources Suggest a Dataset Request a Workshop Contact Us Submit a FOIA Request Socrata Knowledge Base Socrata Video Tutorials Socrata Developer Resources Open Data Apps Performance Public Safety Open 311 Civic Assets Capital Improvement Projects Data Catalog Open Data Apps Performance Public Safety Open 311 Civic Assets Capital Improvement Projects Data Catalog Menu Close COVID-19 Updates Home About User Guide Resources Memphis Data Hub Guide Additional Data Sources Suggest a Dataset Request a Workshop Contact Us Submit a FOIA Request Socrata Knowledge Base Socrata Video Tutorials Socrata Developer Resources Open Data Apps Performance Public Safety Open 311 Civic Assets Capital Improvement Projects Data Catalog Sign In Search COVID-19 Updates Home About User Guide Resources Memphis Data Hub Guide Additional Data Sources Suggest a Dataset Request a Workshop Contact Us Submit a FOIA Request Socrata Knowledge Base Socrata Video Tutorials Socrata Developer Resources Open Data Apps Performance Public Safety Open 311 Civic Assets Capital Improvement Projects Data Catalog Sign In Search -3383,https://lasd.org/transparency/useofforce/#uof_2018-2021,Use of Force Reports,Police & Public Interactions,Use of Force | Los Angeles County Sheriff's Department,"",200,Los Angeles County Sheriff's Department | A Tradition of Service,[],"[""Use of Force""]","[""Patrol Divisions"", ""Custody Division"", ""Court Services Division"", ""Countywide Services Division"", ""Special Operations Division"", ""Use of Force - Category 3""]","[""2019-2022 Comparison Reports"", ""2018-2021 Comparison Reports"", ""2017-2020 Comparison Reports"", ""2016-2019 Comparison Reports"", ""2015-2018 Comparison Reports"", ""2023"", ""2022"", ""2021"", ""2020"", ""2019"", ""2018"", ""2017"", ""2021-2023 Reports"", ""2019-2021 Reports"", ""2017-2020 Reports"", ""2016-2019 Reports"", ""2015-2018 Reports"", ""2019-2022 Reports"", ""2018-2021 Reports"", ""2017-2020 Reports"", ""2016-2019 Reports"", ""2015-2018 Reports"", ""2017 (Click to expand)"", ""2023"", ""2022"", ""2021"", ""2020"", ""2019"", ""2018"", ""2017""]",[],[],"" -3384,https://www.littlerock.gov/residents/police-department/contact-us/,Contact Info & Agency Meta,Info About Agencies,Contact Us | City of Little Rock,"",200,"City of Little Rock, Arkansas - Capital City - Pulaski County | City of Little Rock","[""Contact the LRPD""]","[""We'd Love to Hear from You!"", ""E-Mail Us"", ""Call Us"", ""Get Connected with Us""]",[],[],[],[],We use cookies to give you the best online experience. Please review our use of cookies and accept to continue. Learn more Accept Accept Meet the Chief Divisions Headquarters Northwest Patrol Southwest Patrol 12th St/Downtown Patrol Major Crimes Victim Services Special Operations Training Recruiting Special Investigations Cold Case 2018 Unsolved Homicides 2017 Unsolved Homicides 2016 Unsolved Homicides Professional Standards Freedom of Information Act Request LRPD Dispatches LRPD Policies Internal Affairs 21st Century Policing LRPD Social Worker What to Do When Stopped by the Police LGBTQ Liaison Crime Free Multi-Housing Program Explorer Scouts Daily Reports Crime Prevention Neighborhood Watch Memorials Citizens Police Academy Little Rock Citizen Police Academy Candidate Form Crime Stoppers Community Cooking O.K. Program (Our Kids) GEMS Police Youth Camp Search the site Expand Search Trash & Recycling Online Payments City Documents Parks Traffic Court Meet the Chief Divisions Headquarters Northwest Patrol Southwest Patrol 12th St/Downtown Patrol Major Crimes Victim Services Special Operations Training Recruiting Special Investigations Cold Case 2018 Unsolved Homicides 2017 Unsolved Homicides 2016 Unsolved Homicides Professional Standards Freedom of Information Act Request LRPD Dispatches LRPD Policies Internal Affairs 21st Century Policing LRPD Social Worker What to Do When Stopped by the Police LGBTQ Liaison Crime Free Multi-Housing Program Explorer Scouts Daily Reports Crime Prevention Neighborhood Watch Memorials Citizens Police Academy Little Rock Citizen Police Academy Candidate Form Crime Stoppers Community Cooking O.K. Program (Our Kids) GEMS Police Youth Camp Search the site Expand Search Trash & Recycling Online Payments City Documents Parks Traffic Court Headquarters Northwest Patrol Southwest Patrol 12th St/Downtown Patrol Major Crimes Victim Services Special Operations Training Recruiting Special Investigations Cold Case 2018 Unsolved Homicides 2017 Unsolved Homicides 2016 Unsolved Homicides Headquarters Northwest Patrol Southwest Patrol 12th St/Downtown Patrol Major Crimes Victim Services Special Operations Training Recruiting Special Investigations Cold Case 2018 Unsolved Homicides 2017 Unsolved Homicides 2016 Unsolved Homicides Headquarters Northwest Patrol Southwest Patrol 12th St/Downtown Patrol Major Crimes Victim Services Special Operations Training Recruiting Special Investigations Cold Case 2018 Unsolved Homicides 2017 Unsolved Homicides 2016 Unsolved Homicides Freedom of Information Act Request LRPD Dispatches LRPD Policies Internal Affairs Freedom of Information Act Request LRPD Dispatches LRPD Policies Internal Affairs Freedom of Information Act Request LRPD Dispatches LRPD Policies Internal Affairs LRPD Social Worker What to Do When Stopped by the Police LGBTQ Liaison Crime Free Multi-Housing Program Explorer Scouts Daily Reports Crime Prevention Neighborhood Watch Memorials Citizens Police Academy Little Rock Citizen Police Academy Candidate Form Crime Stoppers Community Cooking O.K. Program (Our Kids) GEMS Police Youth Camp LRPD Social Worker What to Do When Stopped by the Police LGBTQ Liaison Crime Free Multi-Housing Program Explorer Scouts Daily Reports Crime Prevention Neighborhood Watch Memorials Citizens Police Academy Little Rock Citizen Police Academy Candidate Form Crime Stoppers Community Cooking O.K. Program (Our Kids) GEMS Police Youth Camp -3385,https://datalb.longbeach.gov/,List of Data Sources,Info About Agencies,MapsLB,"City of Long Beach, CA Hub Site",200,MapsLB,[],[],[],[],[],[],"" -3386,https://www.crimemapping.com/map/agency/211,Crime Maps & Reports,Agency-Published Resources,CrimeMapping.com - Helping You Build a Safer Community,"",200,CrimeMapping.com - Helping You Build a Safer Community,"[""My Map Summary"", ""What"", ""Where"", ""When"", ""Display Options"", ""Location Selection"", ""Choose a Search Distance"", ""Timeframe Settings"", ""From:"", ""To:""]",[],[],[],[],[],"Preparing Map Content... Preparing Map Content... Receive Alerts Go 0 Records Date Range: Max record count of 500 reached. Zoom in or adjust filter. Help Zoom in to view records. Help No data provided for this map extent. Why? Help No records found when using the current filter. Help There are missing records. Help | Remove Filter Help Sex Offender Data Available for this Area. | Display or Dismiss Help FILTERS Print Distance: Miles select Streets select Esri, HERE, Garmin, NGA, USGS, NPS | Zoom to Receive Alerts Receive Alerts Go 0 Records Date Range: Max record count of 500 reached. Zoom in or adjust filter. Help Zoom in to view records. Help No data provided for this map extent. Why? Help No records found when using the current filter. Help There are missing records. Help | Remove Filter Help Sex Offender Data Available for this Area. | Display or Dismiss Help FILTERS Print Distance: Miles select Streets select Esri, HERE, Garmin, NGA, USGS, NPS | Zoom to Distance: Miles select Distance: Miles select Streets select Esri, HERE, Garmin, NGA, USGS, NPS | Zoom to Esri, HERE, Garmin, NGA, USGS, NPS | Zoom to Esri, HERE, Garmin, NGA, USGS, NPS | Zoom to Zoom to Zoom to Zoom to Zoom to Fetching Data. x Close Fetching Data. Fetching Data. Fetching Data. x Close Share This Map My Map Summary The sum of the What, Where, When you’ve chosen. What * Data not provided by agency within map extent Where Broward County Police Boundary Agency Filter: Agency Name Here When Previous 7 Days Friday, May 1 - Friday, May 8 Restore Defaults Display Options What type(s) of records would you like to see? Select All | Deselect All Arson Assault Burglary Disturbing the Peace Drugs / Alcohol Violations DUI Fraud Homicide Motor Vehicle Theft Robbery Sex Crimes Theft / Larceny Vandalism Vehicle Break-In / Theft Weapons Sex Offender Sexual Predator * Data not provided by agency within map extent Location Selection Enter an Address, Feature or Location. Choose a Search Distance 500 feet 1000 feet 1500 feet 1/4 mile 1/2 mile 1 mile 2 miles Apply Remove Location Filter Timeframe Settings From how far back would you like to see records? **Note** This will not apply to Sex Offender data. Yesterday Previous 3 Days Previous Week Previous 4 Weeks Custom Time Range From: To: Apply " -3387,https://louisville-police.org/DocumentCenter/View/2008/Hillard-Heintze-Report?bidId=,Policies & Contracts,Info About Agencies,"","",200,"","","","","","","","" -3389,https://data.lacounty.gov/,List of Data Sources,Info About Agencies,County of Los Angeles Open Data,"This site represents the County of Los Angeles' commitment to transparency, accountability, and community engagement - and further serve as a centralized data resource for data-driven projects. ",200,County of Los Angeles Open Data,[],[],[],[],[],[],"" -3390,https://www.lapdonline.org/police-commission/categorical-use-of-force/,Use of Force Reports,Police & Public Interactions,Categorical Use of Force - LAPD Online,"",200,Home of the Los Angeles Police Department - LAPD Online,"[""Categorical Use of Force""]","[""Abridged Summary Of Categorical Use Of Force Incident Findings By The Los Angeles Board Of Police Commissioners"", ""Categorical Use of Force - 2023"", ""Categorical Use of Force - 2022"", ""Categorical Use of Force - 2021"", ""Categorical Use of Force - 2020"", ""Categorical Use of Force - 2019"", ""Categorical Use of Force - 2018"", ""Categorical Use of Force - 2017"", ""Categorical Use of Force - 2016"", ""Categorical Use of Force - 2015"", ""Categorical Use of Force - 2014"", ""Categorical Use of Force - 2013"", ""Categorical Use of Force - 2012"", ""Categorical Use of Force - 2011"", ""Categorical Use of Force - 2010"", ""Categorical Use of Force - 2009"", ""Categorical Use of Force - 2008"", ""Categorical Use of Force - 2007"", ""Categorical Use of Force - 2006""]",[],[],[],[],LOS ANGELES 311 Services City Services Opens https://myla311.lacity.org/ in a new window. LA Directory City Directory Opens https://lacity.gov/directory in a new window. LOS ANGELES 311 Services City Services Opens https://myla311.lacity.org/ in a new window. LA Directory City Directory Opens https://lacity.gov/directory in a new window. LOS ANGELES 311 Services City Services Opens https://myla311.lacity.org/ in a new window. LA Directory City Directory Opens https://lacity.gov/directory in a new window. LOS ANGELES LOS ANGELES 311 Services City Services Opens https://myla311.lacity.org/ in a new window. LA Directory City Directory Opens https://lacity.gov/directory in a new window. -3392,https://data.louisvilleky.gov/dataset/officer-involved-shooting-and-statistical-analysis,Officer Involved Shootings,Police & Public Interactions,Louisville Kentucky Open Data,"Explore our open data and tools, and use it build insights of your own.",200,Louisville Kentucky Open Data,[],[],[],[],[],[],"" -3393,https://oig.lacounty.gov/,Complaints & Misconduct,Info About Officers,Office of Inspector General,Office of Inspector General,200,Office of Inspector General,"[""Office of Inspector General""]","[""File A Complaint"", ""Latest Publications""]","[""To promote transparency, constitutional policing, and the fair and impartial administration of justice.""]","[""Deputy Gangs"", ""Unlawful Conduct by the former Sheriff/LASD"", ""Probation Department Oversight"", ""Report Back on Inquiry into Investigations of Allegations of Harassment of Families by the Los Angeles County Sheriff's Department"", ""Report Back on Investigating the November 4, 2023 Escape from Los Padrinos Juvenile Hall and Preventing Future Incidents"", ""Quarterly Report on Programming, Grievances and Room Confinement at Barry J. Nidorf and Central Juvenile Halls - July to September 2023"", """", ""Los Angeles County Sheriff’s Department’s Legal Compliance: Deputy Gangs"", ""Report Back on Support for Mental Health Assistants in Furthering the Sustainability and Success of the Forensic In-Patient Stepdown Unit Program"", """", ""Report Card on Sheriff’s Department's Reforms – 2019 to 2023"", ""JOIN OUR EMAILING LIST""]","[""Quick Links"", ""Contact Us"", ""County Information""]",[],"(213) 974-6100 InspectorGeneral@oig.lacounty.gov Search go Office of Inspector General County of Los Angeles Home About Publications File a Complaint Office of Inspector General To promote transparency, constitutional policing, and the fair and impartial administration of justice. FILE A COMPLAINT PUBLICATIONS SUBSCRIBE CONTACT US Deputy Gangs In the past, LASD has acknowledged that deputy subgroups exist. Former Sheriff Alex Villanueva denied the existence of law enforcement gangs within the Sheriff's Department and failed to take meaningful action to eradicate law enforcement gangs and comply with state law. OIG REPORT - Sheriff's Department's Legal Compliance: Deputy Gangs Learn More Unlawful Conduct by the former Sheriff/LASD The Sheriff’s Department, particularly under former Sheriff Alex Villanueva, has gone to great lengths to keep its conduct secret. The unlawful acts and potentially unlawful acts enumerated in our reports show a pattern and practice of the repudiation of oversight by the Office of Inspector General, the Civilian Oversight Commission, the Board of Supervisors, and the public. Learn More Probation Department Oversight On October 1, 2019, the Board of Supervisors created the Probation Oversight Commission and granted the Office of Inspector General an investigatory role to enhance oversight of the Los Angeles County Probation Department. OIG Reports Learn More File A Complaint Do you have a complaint about the Sheriff's Department that you would like to share with us? Please tell us what happened by clicking on the button below or by going to our complaint page. File a Complaint Latest Publications Report Back on Inquiry into Investigations of Allegations of Harassment of Families by the Los Angeles County Sheriff's Department Report Back on Investigating the November 4, 2023 Escape from Los Padrinos Juvenile Hall and Preventing Future Incidents Quarterly Report on Programming, Grievances and Room Confinement at Barry J. Nidorf and Central Juvenile Halls - July to September 2023 Los Angeles County Sheriff’s Department’s Legal Compliance: Deputy Gangs Report Back on Support for Mental Health Assistants in Furthering the Sustainability and Success of the Forensic In-Patient Stepdown Unit Program Report Card on Sheriff’s Department's Reforms – 2019 to 2023 VIEW MORE REPORTS JOIN OUR EMAILING LIST Would you like to receive updates on our latest publications? Subscribe to email notifications by clicking below: SUBSCRIBE TO EMAIL NOTIFICATIONS Quick Links LA County Board of Supervisors Civilian Oversight Commission Probation Oversight Commission Citizens' Commission on Jail Violence Sheriff's Department Probation Department National Association for Civilian Oversight of Law Enforcement (NACOLE) Contact Us Office of Inspector General 500 W. Temple St., Suite 383 Los Angeles, CA 90013 (213) 974-6100 Email Us County Information 211 LA County LA CountyHelps Public Alerts Copyright © 2024 by County of Los Angeles Board of Supervisors Privacy Statement Terms of Use " -3394,https://louisville-police.org/ArchiveCenter/ViewFile/Item/91,Arrest Records,Police & Public Interactions,"","",200,"","","","","","","","" -3395,https://www.lvmpd.com/en-us/ProtectTheCity/Pages/LVMPDPoliceAcademy.aspx,Policies & Contracts,Info About Agencies,"","",-1,"","","","","","","","" -3396,https://www.kckpd.org/8cantwait.html,Policies & Contracts,Info About Agencies,"","",404,"","","","","","","","" -3397,https://www.lapdonline.org/newsroom/policy-on-the-use-of-force-revised/,Policies & Contracts,Info About Agencies,Policy on the Use of Force - Revised - LAPD Online,"",200,Home of the Los Angeles Police Department - LAPD Online,"[""Policy on the Use of Force – Revised""]","[""View Newsroom Articles by Year"", ""Do you have any helpful information regarding this post?""]","[""Wish to remain anonymous?""]",[],[],[],LOS ANGELES 311 Services City Services Opens https://myla311.lacity.org/ in a new window. LA Directory City Directory Opens https://lacity.gov/directory in a new window. LOS ANGELES 311 Services City Services Opens https://myla311.lacity.org/ in a new window. LA Directory City Directory Opens https://lacity.gov/directory in a new window. LOS ANGELES 311 Services City Services Opens https://myla311.lacity.org/ in a new window. LA Directory City Directory Opens https://lacity.gov/directory in a new window. LOS ANGELES LOS ANGELES 311 Services City Services Opens https://myla311.lacity.org/ in a new window. LA Directory City Directory Opens https://lacity.gov/directory in a new window. -3398,https://www.longbeach.gov/police/about-the-lbpd/lbpd-1421748/use-of-force/,Use of Force Reports,Police & Public Interactions,Use of Force,"",200,City of Long Beach,"[""Police Department""]","[""SB 1421 Use of Force""]","[""Mayor"", ""City Council"", ""Rex Richardson"", ""Mary Zendejas"", ""Cindy Allen"", ""Kristina Duggan"", ""Daryl Supernaw"", ""Megan Kerr"", ""Suely Saro"", ""Roberto Uranga"", ""Al Austin"", ""Dr. Joni Ricks-Oddie"", ""Dawn McIntosh"", ""Laura L. Doud"", ""Doug Haubert"", ""Tom Modica"", ""Monique DeLaGarza"", ""City-Wide Elected Officials"", ""Appointed Officials"", ""Online Payments"", ""Online Services"", ""In-Person Services"", ""Opening a Business"", ""Doing Business With The City"", ""Resources"", ""Most Popular"", ""Online Resources"", ""Attractions"", ""Business Associations"", ""Travel Resources"", ""Departments"", ""Job Opportunities"", ""Information"", ""LBPD"", ""Employment"", ""Bureaus"", ""News & Events"", ""Crime Info"", ""How Do I"", ""How Do I"", ""Contact Us"", ""2020"", ""2019"", ""2017"", ""2016"", ""2015"", ""2011"", ""2009"", ""USE OF FORCE"", ""Do."", ""Discover."", ""Connect."", ""Ask.""]","["""", ""1st District"", ""2nd District"", ""3rd District"", ""4th District"", ""5th District"", ""6th District"", ""7th District"", ""8th District"", ""9th District"", ""City Attorney"", ""City Auditor"", ""City Prosecutor"", ""City Manager"", ""City Clerk""]","[""LBPD SB 1421/AB 748"", ""Public Records Request""]",[],"" -3399,https://louisville-police.org/DocumentCenter/View/615/Standard-Operating-Procedures-PDF,Policies & Contracts,Info About Agencies,"","",200,"","","","","","","","" -3400,https://www.lvmpd.com/en-us/Pages/ContactUs.aspx,Contact Info & Agency Meta,Info About Agencies,"","",-1,"","","","","","","","" -3401,http://www.manchesternh.gov/Departments/Police/Police-Log,Calls for Service,Police & Public Interactions,Police Log,"",200," - City Of Manchester -","[""Police Log"", ""Police Related Links""]",[],"[""Dates""]","[""City Hall"", ""City Government"", ""About Manchester"", ""City Services"", ""Mobile App""]",[],[],"" -3402,https://lasd.org/SACR_opendata.html,Stops,Police & Public Interactions,"","",404,"","","","","","","","" -3403,http://shq.lasdnews.net/content/uoa/PSD/force-policy.pdf,Policies & Contracts,Info About Agencies,"","",200,"","","","","","","","" -3404,http://shq.lasdnews.net/pages/pagedetail.aspx?id=2411,Policies & Contracts,Info About Agencies,LASD.org - Information Detail,"",200,Error retrieving title: 'NoneType' object has no attribute 'text',[],[],[],[],[],[],"Crime Information Public Alerts LA County & Justice Community External Links Highlights Home > Prof Standards Division > Event Detail Translation [English] | LASD Home | Contact Us Normal Large Largest Search Sheriff's Website × search Information Detail Manual of Policy and Procedures Use of Force Policy http://shq.lasdnews.net/content/uoa/PSD/force-policy.pdf MANUAL OF POLICY & PROCEDURES VOLUME 1 - Introduction Introduction http://shq.lasdnews.net/content/uoa/PSD/1-01.pdf VOLUME 2 - Organization and Functions Charts http://shq.lasdnews.net/content/uoa/PSD/2-01.pdf The Rank Structure of the Department http://shq.lasdnews.net/content/uoa/PSD/2-02.pdf The Organization of the Department http://shq.lasdnews.net/content/uoa/PSD/2-03.pdf Executive Offices http://shq.lasdnews.net/content/uoa/PSD/2-04.pdf Detective Division http://shq.lasdnews.net/content/uoa/PSD/2-05.pdf Field Operations Regions http://shq.lasdnews.net/content/uoa/PSD/2-06.pdf Administrative Services Division http://shq.lasdnews.net/content/uoa/PSD/2-07.pdf Court Services Division http://shq.lasdnews.net/content/uoa/PSD/2-08.pdf Custody Divisions http://shq.lasdnews.net/content/uoa/PSD/2-09.pdf Technical Services Division http://shq.lasdnews.net/content/uoa/PSD/2-10.pdf Office of Homeland Security http://shq.lasdnews.net/content/uoa/PSD/2-11.pdf VOLUME 3 - Policy and Ethics Policy and Ethics http://shq.lasdnews.net/content/uoa/PSD/3-01.pdf Personnel http://shq.lasdnews.net/content/uoa/PSD/3-02.pdf Uniform and Safety Equipment http://shq.lasdnews.net/content/uoa/PSD/3-03.pdf Special Reviews, Public Complaint Process, and Personnel Investigations http://shq.lasdnews.net/content/uoa/PSD/3-04.pdf Fiscal http://shq.lasdnews.net/content/uoa/PSD/3-05.pdf Equipment, Supply and Maintenance http://shq.lasdnews.net/content/uoa/PSD/3-06.pdf Communications http://shq.lasdnews.net/content/uoa/PSD/3-07.pdf Correspondence http://shq.lasdnews.net/content/uoa/PSD/3-08.pdf Miscellaneous Administrative Procedures http://shq.lasdnews.net/content/uoa/PSD/3-09.pdf Force Policy http://shq.lasdnews.net/content/uoa/PSD/3-10.pdf VOLUME 4 - Case Assignment and Reporting General Information http://shq.lasdnews.net/content/uoa/PSD/4-01.pdf Uniform Report Numbers http://shq.lasdnews.net/content/uoa/PSD/4-02.pdf Catalina Island Procedures http://shq.lasdnews.net/content/uoa/PSD/4-03.pdf Letter ""A"" http://shq.lasdnews.net/content/uoa/PSD/4-04.pdf Letter ""B"" http://shq.lasdnews.net/content/uoa/PSD/4-05.pdf Letter ""C"" http://shq.lasdnews.net/content/uoa/PSD/4-06.pdf Letter ""D"" http://shq.lasdnews.net/content/uoa/PSD/4-07.pdf Letter ""E"" http://shq.lasdnews.net/content/uoa/PSD/4-08.pdf Letter ""F"" http://shq.lasdnews.net/content/uoa/PSD/4-09.pdf Letter ""G"" http://shq.lasdnews.net/content/uoa/PSD/4-10.pdf Letter ""H"" http://shq.lasdnews.net/content/uoa/PSD/4-11.pdf Letter ""I"" http://shq.lasdnews.net/content/uoa/PSD/4-12.pdf Letter ""J"" http://shq.lasdnews.net/content/uoa/PSD/4-13.pdf Letter ""K"" http://shq.lasdnews.net/content/uoa/PSD/4-14.pdf Letter ""L"" http://shq.lasdnews.net/content/uoa/PSD/4-15.pdf Letter ""M"" http://shq.lasdnews.net/content/uoa/PSD/4-16.pdf Letter ""N"" http://shq.lasdnews.net/content/uoa/PSD/4-17.pdf Letter ""O"" http://shq.lasdnews.net/content/uoa/PSD/4-18.pdf Letter ""P"" http://shq.lasdnews.net/content/uoa/PSD/4-19.pdf Letter ""Q"" http://shq.lasdnews.net/content/uoa/PSD/4-20.pdf Letter ""R"" http://shq.lasdnews.net/content/uoa/PSD/4-21.pdf Letter ""S"" http://shq.lasdnews.net/content/uoa/PSD/4-22.pdf Letter ""T"" http://shq.lasdnews.net/content/uoa/PSD/4-23.pdf Letter ""U"" http://shq.lasdnews.net/content/uoa/PSD/4-24.pdf Letter ""V"" http://shq.lasdnews.net/content/uoa/PSD/4-25.pdf Letter ""W"" http://shq.lasdnews.net/content/uoa/PSD/4-26.pdf Form Numbers and Titles http://shq.lasdnews.net/content/uoa/PSD/4-27.pdf Form Numbers and Titles http://shq.lasdnews.net/content/uoa/PSD/4-28.pdf VOLUME 5 - Line Procedures Motor Vehicles http://shq.lasdnews.net/content/uoa/PSD/5-01.pdf Juveniles http://shq.lasdnews.net/content/uoa/PSD/5-02.pdf Prisoners http://shq.lasdnews.net/content/uoa/PSD/5-03.pdf Property and Evidence Procedures http://shq.lasdnews.net/content/uoa/PSD/5-04.pdf Traffic http://shq.lasdnews.net/content/uoa/PSD/5-05.pdf Emergency and Disaster http://shq.lasdnews.net/content/uoa/PSD/5-06.pdf Judicial Process http://shq.lasdnews.net/content/uoa/PSD/5-07.pdf Technical http://shq.lasdnews.net/content/uoa/PSD/5-08.pdf Miscellaneous Line Procedures http://shq.lasdnews.net/content/uoa/PSD/5-09.pdf VOLUME 7 - Samples and Miscellaneous Information Samples http://shq.lasdnews.net/content/uoa/PSD/7-01.pdf Radio Communication Call Numbers http://shq.lasdnews.net/content/uoa/PSD/7-02.pdf Miscellaneous Information http://shq.lasdnews.net/content/uoa/PSD/7-03.pdf The LASD.org® website has made reasonable efforts to provide an accurate translation. However, - no automated or computerized translation is perfect and is not intended to replace human or - " -3405,https://www.longbeach.gov/police/contact-us/ ,Contact Info & Agency Meta,Info About Agencies,City of Long Beach,"",200,City of Long Beach,[],"[""Page Not Found""]","[""Mayor"", ""City Council"", ""Rex Richardson"", ""Mary Zendejas"", ""Cindy Allen"", ""Kristina Duggan"", ""Daryl Supernaw"", ""Megan Kerr"", ""Suely Saro"", ""Roberto Uranga"", ""Al Austin"", ""Dr. Joni Ricks-Oddie"", ""Dawn McIntosh"", ""Laura L. Doud"", ""Doug Haubert"", ""Tom Modica"", ""Monique DeLaGarza"", ""City-Wide Elected Officials"", ""Appointed Officials"", ""Online Payments"", ""Online Services"", ""In-Person Services"", ""Opening a Business"", ""Doing Business With The City"", ""Resources"", ""Most Popular"", ""Online Resources"", ""Attractions"", ""Business Associations"", ""Travel Resources"", ""Departments"", ""Job Opportunities"", ""Information"", ""Do."", ""Discover."", ""Connect."", ""Ask.""]","["""", ""1st District"", ""2nd District"", ""3rd District"", ""4th District"", ""5th District"", ""6th District"", ""7th District"", ""8th District"", ""9th District"", ""City Attorney"", ""City Auditor"", ""City Prosecutor"", ""City Manager"", ""City Clerk""]",[],[],"" -3406,https://www.lvmpd.com/en-us/Pages/CurrentTraffic.aspx,Stops,Police & Public Interactions,"","",-1,"","","","","","","","" -3407,https://www.nashville.gov/departments/police/data-dashboard/vehicle-stops-map,Stops,Police & Public Interactions,Police Data Dashboard: Vehicle Stops Map | Nashville.gov,Official website of the Metropolitan Government of Nashville and Davidson County.,200,Attention Required! | Cloudflare,"[""Police Data Dashboard: Vehicle Stops Map""]","[""Breadcrumb"", ""Related Tags"", ""Mobile Apps"", ""Nashville.gov"", ""Quick Links"", ""Contact"", ""Connect""]","[""Search Metropolitan Nashville Police Department""]",[],[],[],Close Search Metropolitan Nashville Police Department Close Search Metropolitan Nashville Police Department Close Search Metropolitan Nashville Police Department -3408,https://www.nashville.gov/departments/police/data-dashboard/use-force,Use of Force Reports,Police & Public Interactions,Police Data Dashboard: Use of Force | Nashville.gov,Official website of the Metropolitan Government of Nashville and Davidson County.,200,Attention Required! | Cloudflare,"[""Police Data Dashboard: Use of Force""]","[""Breadcrumb"", ""Related Tags"", ""Mobile Apps"", ""Nashville.gov"", ""Quick Links"", ""Contact"", ""Connect""]","[""Search Metropolitan Nashville Police Department""]",[],[],[],Close Search Metropolitan Nashville Police Department Close Search Metropolitan Nashville Police Department Close Search Metropolitan Nashville Police Department -3409,https://data.montgomerycountymd.gov/,List of Data Sources,Info About Agencies,Montgomery County Data | Open Data Portal,"",200,Montgomery County Data | Open Data Portal,[],"[""Menu"", ""Explore Data"", ""Featured Datasets""]",[],[],[],[],"Skip to main content Skip to footer links data.Montgomerycountymd.gov Search Data Catalog Suggest a Dataset Open Budget Operating Budget Publication CIP Budget Publication spendingMontgomery CountyStat Videos and Resources dataMontgomery Overview Filtering a dataset Sorting a dataset Using the visualization tool Video Guides Developer Resources About Open Montgomery Open Government Legislation Open Data Operations Manual Open Data Implementation Plan Sign In Menu Menu Close Data Catalog Suggest a Dataset Open Budget Operating Budget Publication CIP Budget Publication spendingMontgomery CountyStat Videos and Resources dataMontgomery Overview Filtering a dataset Sorting a dataset Using the visualization tool Video Guides Developer Resources About Open Montgomery Open Government Legislation Open Data Operations Manual Open Data Implementation Plan Sign In Search Previous slide Fiscal Year 2024 dataMontgomery Open Data Operations Manual Annual Update View the Report Welcome to dataMontgomery Learn about the Platform Online Residents User Guide Explore the User Guide Next slide Pause slides 1 2 3 Explore Data Business Data on economic development, permitting and certification, and protection of the consumer Community/Recreation Data on use of public facilities, community outreach, and recreation programs and facilities Consumer/Housing Data on Consumer licensing and complaints, housing code enforcement and loans Education Data on Montgomery County colleges and universities, public and private schools Elections Data on election precincts, polling places, calendar of events and election results Environment Data on environment special protection areas, recycling, and waste reduction Finance/Tax/Property Data on County tax rates and credit, county spending, and property tax Government Data on 311, human rights and resources, and budget information Health and Human Services Data on healthcare, insurance, benefits, and restaurant inspections Human Resources Data on County employees and human rights Law/Judicial Data on County executive orders, information on County Attorney Licenses/Permits Data on all County commercial, residential, and environmental permits Public Safety Data on Montgomery County Police, Fire and Rescue, and Corrections and Rehabilitation Technology Data on County Technology including hardware and systems Transportation Data on County Ride on buses, metro rail, and parking Featured Datasets dataMontgomery Dataset Publishing Plan Current and future plans for dataMontgomery data Crash Incidents General information on traffic collisions in the County Construction Activity Check out construction in your area Active Road Closures Active road closures in the County Adoptable Pets Check out the latest pets up for adoption. " -3410,https://data.mesaaz.gov/Police/Police-Incidents/39rt-2rfj`,Crime Statistics,Agency-Published Resources,"","",404,"","","","","","","","" -3411,https://www2.minneapolismn.gov/government/departments/civil-rights/opcr/case-summaries/,Complaints & Misconduct,Info About Officers,Case Summaries - City of Minneapolis,You can view the open and closed case summaries from the Office of Police Conduct Review.,200,City of Minneapolis,"[""Case summaries"", ""Need help? We're here for you.""]","[""Open case reports"", ""Closed case summaries"", ""2022"", ""OPCR Case summaries and synopses"", """", ""2019 through 2021"", """", ""2018"", """", ""2017"", """", ""2016"", """", ""2015"", ""2014"", """", ""2013"", ""Contact us""]","[""Request accessible format"", ""Office of Police Conduct Review""]",[],[],[],"" -3412,https://www.crimemapping.com/map/fl/miami-dadecounty ,Crime Maps & Reports,Agency-Published Resources,"","",200,CrimeMapping.com - Helping You Build a Safer Community,[],[],[],[],[],[],"" -3413,https://data.milwaukee.gov/dataset/wibr,Crime Statistics,Agency-Published Resources,WIBR Crime Data (Current) - Dataset - City of Milwaukee Open Data Portal,"",200,Welcome - City of Milwaukee Open Data Portal ,"[""Milwaukee Open Data"", ""WIBR Crime Data (Current)"", ""Milwaukee Police Department"", ""WIBR Crime Data (Current)""]","[""Organization"", ""Social"", ""License"", ""Data and Resources""]","[""Additional Info""]",[],[],[],"Skip to content Log in Register Contact City of Milwaukee Log in Register Contact City of Milwaukee City of Milwaukee Toggle navigation Milwaukee Open Data City of Milwaukee Open Data Portal Home Datasets Organizations Groups About Help Search Datasets Toggle navigation Milwaukee Open Data City of Milwaukee Open Data Portal Milwaukee Open Data City of Milwaukee Open Data Portal Home Datasets Organizations Groups About Help Search Datasets Search Datasets Home Organizations Milwaukee Police Department WIBR Crime Data (Current) WIBR Crime Data (Current) Followers 8 Organization Milwaukee Police Department VISION -A Milwaukee where all can live safely and without fear, protected by a police department with the highest ethical and professional standards. -MISSION -In partnership with... read more Social Twitter Facebook Linkedin License Creative Commons Attribution Dataset Groups Showcases Activity Stream WIBR Crime Data (Current) Update Frequency: Daily Current year to date. Wisconsin Incident Based Report (WIBR) Group A Offenses. The Crime Data represents incident level data defined by Wisconsin Incident Based Reporting System (WIBRS) codes. WIBRS reporting is a crime reporting standard and can not be compared to any previous UCR report. Therefore, the Crime Data may reflect: Information not yet verified by further investigation Preliminary crime classifications that may be changed at a later date based upon further investigation Information that may include mechanical or human error Neither the City of Milwaukee nor the Milwaukee Police Department guarantee (either express or implied) the accuracy, completeness, timeliness, or correct sequencing of the Crime Data. The City of Milwaukee and the Milwaukee Police Department shall have no liability for any error or omission, or for the use of, or the results obtained from the use of the Crime Data. In addition, the City of Milwaukee and the Milwaukee Police Department caution against using the Crime Data to make decisions/comparisons regarding the safety of or the amount of crime occurring in a particular area. When reviewing the Crime Data, the site user should consider that: The information represents only police services where a report was made and does not include other calls for police service The information does not reflect or certify ""safe"" or ""unsafe"" areas The information will sometimes reflect where the crime was reported versus where the crime occurred This data is not intended to represent a total number/sum of crimes, rather 1 = True and 0 = False. The use of the Crime Data indicates the site user's unconditional acceptance of all risks associated with the use of the Crime Data. Data and Resources CSV CSV Popular Explore Preview Download JSON JSON Popular Explore More information Download XML XML Popular Explore More information Download Top 5 Crimes Recorded in 2017 CSV Popular Top 5 Crimes Reported in 2017 listed by Aldermanic District. Explore Preview Download Incident MPD Police Safety Additional Info Field Value Last Updated March 25, 2024, 5:25 AM (UTC-04:00) Created May 8, 2018, 12:31 PM (UTC-04:00) " -3414,https://gis-mdc.opendata.arcgis.com/datasets/ufc/explore,Complaints & Misconduct,Info About Officers,UFC,A feature layer of Miami-Dade Police Department Professional Compliance Bureau citizen complaint data.,200,Open Data Hub Site,[],[],[],[],[],[],"" -3415,https://www.montgomerycountymd.gov/pol/Resources/Files/PDF/Directives/100/FC%20131%20Response%20Resistance%20and%20Use%20of%20Force_052021.pdf,Policies & Contracts,Info About Agencies,"","",200,"","","","","","","","" -3416,https://mpdtsu.org/tsustatistics/,Stops,Police & Public Interactions,TSU Statistics – Traffic Safety Unit,"",200,Traffic Safety Unit – Milwaukee Police Department,"[""TSU Statistics""]",[],"[""Share this:""]",[],[],[],Skip to content Traffic Safety Unit Milwaukee Police Department Home Be Part of the Solution / Sea parte de la solución Deployments Calendar Towing Facts TSU in the News TSU Statistics TSU Statistics Share this: Click to share on Facebook (Opens in new window) Copyright © 2022 Milwaukee Police Department Traffic Safety Unit Traffic Safety Unit Milwaukee Police Department Home Be Part of the Solution / Sea parte de la solución Deployments Calendar Towing Facts TSU in the News TSU Statistics Traffic Safety Unit Milwaukee Police Department Traffic Safety Unit Milwaukee Police Department Home Be Part of the Solution / Sea parte de la solución Deployments Calendar Towing Facts TSU in the News TSU Statistics Home Be Part of the Solution / Sea parte de la solución Deployments Calendar Towing Facts TSU in the News TSU Statistics TSU Statistics Share this: Click to share on Facebook (Opens in new window) Share this: Click to share on Facebook (Opens in new window) Share this: Click to share on Facebook (Opens in new window) Share this: Click to share on Facebook (Opens in new window) Share this: Click to share on Facebook (Opens in new window) Click to share on Facebook (Opens in new window) Copyright © 2022 Milwaukee Police Department Traffic Safety Unit Copyright © 2022 Milwaukee Police Department Traffic Safety Unit Copyright © 2022 Milwaukee Police Department Traffic Safety Unit Copyright © 2022 Milwaukee Police Department Traffic Safety Unit -3417,https://www.miamidade.gov/global/service.page?Mduid_service=ser1510669357918648,Crime Statistics,Agency-Published Resources,Crime Map,Check out our crime incident map to see if crimes have been committed in your area. Check out our crime incident map to see if crimes have been committed in your area. Check out our crime incident map to see if crimes have been committed in your area. Check out our crime incident map to see if crimes have been committed in your area. Check out our crime incident map to see if crimes have been committed in your area. Check out our crime incident map to see if crimes have been committed in your area. Check out our crime incident map to see if crimes have been committed in your area. Check out our crime incident map to see if crimes have been committed in your area.,200,Untitled Document,"[""Crime Map""]","[""Online Options"", ""Miami-Dade Police Department"", ""Help and Support"", ""Self-Service"", ""Stay Connected"", ""Leaving Miami-Dade County""]","[""Interest Categories"", ""Online Services"", ""News & Social Media"", ""Create a new miamidade.gov account"", ""Elected Officials"", ""County Agencies"", ""Transparency & Open Data"", ""Employee Information"", ""My Employee Portal"", ""Interest Categories"", ""Online Services"", ""News & Social Media"", ""Create a new miamidade.gov account"", ""Elected Officials"", ""County Agencies"", ""Transparency & Open Data"", ""Employee Information"", ""My Employee Portal""]",[],[],[],"" -3418,https://www.miamidade.gov/global/police/contact-police.page,Contact Info & Agency Meta,Info About Agencies,Contact the Miami-Dade Police Department,Contact information for Miami-Dade Police Department.,200,Untitled Document,"[""Contact the Miami-Dade Police Department""]","[""Office of the Director"", ""Compliance and Standards Division"", ""Police Services"", ""Fiscal and Departmental Services"", ""Investigative Services"", ""Public Safety and Emergency Response Services"", ""Office of the Director"", ""Compliance and Standards Division"", ""Police Services"", ""Fiscal and Departmental Services"", ""Investigative Services"", ""Public Safety and Emergency Response Services"", ""Crime Stoppers"", ""Public Records Requests"", ""Accommodations for Persons with Disabilities"", ""Miami-Dade Police Department"", ""Help and Support"", ""Self-Service"", ""Stay Connected"", ""Leaving Miami-Dade County""]","[""Interest Categories"", ""Online Services"", ""News & Social Media"", ""Create a new miamidade.gov account"", ""Elected Officials"", ""County Agencies"", ""Transparency & Open Data"", ""Employee Information"", ""My Employee Portal"", ""Interest Categories"", ""Online Services"", ""News & Social Media"", ""Create a new miamidade.gov account"", ""Elected Officials"", ""County Agencies"", ""Transparency & Open Data"", ""Employee Information"", ""My Employee Portal""]",[],[],[],"" -3419,https://public.powerdms.com/MESAPD/tree,Policies & Contracts,Info About Agencies,Public Documents Directory - undefined - PowerDMS,"",200,PowerDMS,[],[],[],[],[],[],Powered by Powered by Powered by Powered by Powered by -3420,https://city.milwaukee.gov/fpc/Reports/ReportsonMPD/Use-of-Force-Reports.htm#.XtfXuTpKiUk,Use of Force Reports,Police & Public Interactions,"","",403,"","","","","","","","" -3421,https://data.miamigov.com/,List of Data Sources,Info About Agencies,"","",-1,"","","","","","","","" -3422,https://www.mesaaz.gov/home/showdocument?id=22664,Complaints & Misconduct,Info About Officers,"","",-1,"","","","","","","","" -3423,https://www.arcgis.com/apps/dashboards/714e29a27f694137a29f2ee048dfb8a3,Officer Involved Shootings,Police & Public Interactions,ArcGIS Dashboards,ArcGIS Dashboards,200,"",[],[],[],[],[],[],"" -3424,https://data.montgomerycountymd.gov/Public-Safety/Police-Dispatched-Incidents/98cc-bc7d,Calls for Service,Police & Public Interactions,Police Dispatched Incidents | Open Data Portal,"",200,Montgomery County Data | Open Data Portal,"[""MC Police Dispatched Incidents Map"", ""Police Dispatches for Pedestrian Struck"", ""Police Dispatches for Collisions"", ""Manage Featured Content""]","[""Menu"", ""Access this Dataset via OData"", ""Police Dispatched Incidents"", ""About this Dataset"", ""What's in this Dataset?"", ""Columns in this Dataset"", ""Dataset Changelog"", ""Police Dispatched Incidents"", ""Open this dataset in Carto?"", ""Open this dataset in Plot.ly?"", ""Send a Message to the Owner of this Dataset"", ""Featured Content""]","[""Dataset Information"", ""Topics"", ""Licensing and Attribution""]",[],[],"[""OData Endpoint""]",Skip to Main Content data.Montgomerycountymd.gov Search Data Catalog Suggest a Dataset Open Budget Operating Budget Publication CIP Budget Publication spendingMontgomery CountyStat Videos and Resources dataMontgomery Overview Filtering a dataset Sorting a dataset Using the visualization tool Video Guides Developer Resources About Open Montgomery Open Government Legislation Open Data Operations Manual Open Data Implementation Plan Sign In Menu Menu Close Data Catalog Suggest a Dataset Open Budget Operating Budget Publication CIP Budget Publication spendingMontgomery CountyStat Videos and Resources dataMontgomery Overview Filtering a dataset Sorting a dataset Using the visualization tool Video Guides Developer Resources About Open Montgomery Open Government Legislation Open Data Operations Manual Open Data Implementation Plan Sign In Search data.Montgomerycountymd.gov Search Data Catalog Suggest a Dataset Open Budget Operating Budget Publication CIP Budget Publication spendingMontgomery CountyStat Videos and Resources dataMontgomery Overview Filtering a dataset Sorting a dataset Using the visualization tool Video Guides Developer Resources About Open Montgomery Open Government Legislation Open Data Operations Manual Open Data Implementation Plan Sign In Menu data.Montgomerycountymd.gov Search data.Montgomerycountymd.gov Search Search Search Data Catalog Suggest a Dataset Open Budget Operating Budget Publication CIP Budget Publication spendingMontgomery CountyStat Videos and Resources dataMontgomery Overview Filtering a dataset Sorting a dataset Using the visualization tool Video Guides Developer Resources About Open Montgomery Open Government Legislation Open Data Operations Manual Open Data Implementation Plan Sign In Menu Data Catalog Suggest a Dataset Open Budget Operating Budget Publication CIP Budget Publication spendingMontgomery CountyStat Videos and Resources dataMontgomery Overview Filtering a dataset Sorting a dataset Using the visualization tool Video Guides Developer Resources About Open Montgomery Open Government Legislation Open Data Operations Manual Open Data Implementation Plan Sign In Menu Data Catalog Suggest a Dataset Open Budget Operating Budget Publication CIP Budget Publication spendingMontgomery CountyStat Videos and Resources dataMontgomery Overview Filtering a dataset Sorting a dataset Using the visualization tool Video Guides Developer Resources About Open Montgomery Open Government Legislation Open Data Operations Manual Open Data Implementation Plan Data Catalog Suggest a Dataset Open Budget Operating Budget Publication CIP Budget Publication spendingMontgomery CountyStat Videos and Resources dataMontgomery Overview Filtering a dataset Sorting a dataset Using the visualization tool Video Guides Developer Resources About Open Montgomery Open Government Legislation Open Data Operations Manual Open Data Implementation Plan Open Budget Operating Budget Publication CIP Budget Publication Open Budget Operating Budget Publication CIP Budget Publication Videos and Resources dataMontgomery Overview Filtering a dataset Sorting a dataset Using the visualization tool Video Guides Developer Resources Videos and Resources dataMontgomery Overview Filtering a dataset Sorting a dataset Using the visualization tool Video Guides Developer Resources About Open Montgomery Open Government Legislation Open Data Operations Manual Open Data Implementation Plan About Open Montgomery Open Government Legislation Open Data Operations Manual Open Data Implementation Plan Sign In Sign In -3425,https://www.mesaaz.gov/government/contact-us?locale=en,Contact Info & Agency Meta,Info About Agencies,"","",-1,"","","","","","","","" -3426,https://data.milwaukee.gov/,List of Data Sources,Info About Agencies,Welcome - City of Milwaukee Open Data Portal,"",200,Welcome - City of Milwaukee Open Data Portal ,"[""Milwaukee Open Data"", ""City of Milwaukee Open Data Portal""]","[""Groups"", ""Showcases"", ""Popular Datasets"", ""New and Recent Datasets""]","[""Search data"", ""Popular tags"", ""Assessed V.S. Exempt Properties by Ald. District 2018"", ""Service Request Comparisons Between 2016 and 2017"", ""Address Search Application"", ""Map Milwaukee Portal"", ""My Milwaukee Home"", ""Property Assessment Data"", ""Current Milwaukee Fire Dispatched Calls for Service"", ""Current Milwaukee Police Dispatched Calls for Service"", ""Restaurant and Food Service Inspections"", ""Budget Office Visualizations"", ""Assessed V.S. Exempt Properties by Ald. District 2018"", ""Service Request Comparisons Between 2016 and 2017"", ""Address Search Application"", ""Map Milwaukee Portal"", ""Property Sales Data"", ""City Employee Salary Data"", ""Personal Property Assessments"", ""Traffic Accident Data"", ""Master Property File (MPROP)"", ""City of Milwaukee Open Data Dataset Catalog"", ""WIBR Crime Data (Historical)"", ""WIBR Crime Data (Current)"", ""Traffic Accident Data"", ""Master Property File (MPROP)""]",[],[],[],"Skip to content Log in Register Contact City of Milwaukee Log in Register Contact City of Milwaukee City of Milwaukee Toggle navigation Milwaukee Open Data City of Milwaukee Open Data Portal Home Datasets Organizations Groups About Help Search Datasets Toggle navigation Milwaukee Open Data City of Milwaukee Open Data Portal Milwaukee Open Data City of Milwaukee Open Data Portal Home Datasets Organizations Groups About Help Search Datasets Search Datasets City of Milwaukee Open Data Portal Search data Search Popular tags Ballot Vote Election Groups These datasets are organized according to city services-related topics. Elections & Campaign Housing & Property Maps City Services Public Safety External Datasets Showcases These datasets represent the most popular and important information requested by the public. Previous Assessed V.S. Exempt Properties by Ald. District 2018 View Assessed V.S. Exempt Properties by Ald. District 2018 Service Request Comparisons Between 2016 and 2017 View Service Request Comparisons Between 2016 and 2017 Address Search Application View Address Search Application Map Milwaukee Portal View Map Milwaukee Portal My Milwaukee Home View My Milwaukee Home Property Assessment Data View Property Assessment Data Current Milwaukee Fire Dispatched Calls for Service View Current Milwaukee Fire Dispatched Calls for Service Current Milwaukee Police Dispatched Calls for Service View Current Milwaukee Police Dispatched Calls for Service Restaurant and Food Service Inspections View Restaurant and Food Service Inspections Budget Office Visualizations View Budget Office Visualizations Assessed V.S. Exempt Properties by Ald. District 2018 View Assessed V.S. Exempt Properties by Ald. District 2018 Service Request Comparisons Between 2016 and 2017 View Service Request Comparisons Between 2016 and 2017 Address Search Application View Address Search Application Map Milwaukee Portal View Map Milwaukee Portal Next Popular Datasets Browse popular datasets below and see what other citizens find interesting. Property Sales Data 309 recent views CSV City Employee Salary Data 281 recent views CSV Personal Property Assessments 205 recent views CSV Traffic Accident Data 147 recent views CSV JSON XML Master Property File (MPROP) 141 recent views CSV JSON XML PDF New and Recent Datasets Browse new or modified datasets below. Click to view details or explore content. City of Milwaukee Open Data Dataset Catalog Updated on March 25, 2024 CSV WIBR Crime Data (Historical) Updated on March 25, 2024 CSV JSON XML WIBR Crime Data (Current) Updated on March 25, 2024 CSV JSON XML Traffic Accident Data Updated on March 25, 2024 CSV JSON XML Master Property File (MPROP) Updated on March 25, 2024 CSV JSON XML PDF " -3427,https://www.minneapolismn.gov/government/departments/police/mpd-policy-procedure-manual/policy-manual/ ,Policies & Contracts,Info About Agencies,"","",404,"","","","","","","","" -3428,https://gis-mdc.opendata.arcgis.com/datasets/srrr/explore ,Use of Force Reports,Police & Public Interactions,SRRR,A feature layer of Miami-Dade Police Department Professional Compliance Bureau citizen complaint data.,200,Open Data Hub Site,[],[],[],[],[],[],"" -3429,https://www.minneapolismn.gov/media/-www-content-assets/documents/MPD-Policy-and-Procedure-Manual.pdf ,Policies & Contracts,Info About Agencies,300 Multiple Choices,"",300,City of Minneapolis,"[""Multiple Choices""]",[],[],[],[],[],"" -3430,https://opendata.minneapolismn.gov/datasets/cityoflakes::police-stop-data,Stops,Police & Public Interactions,Police Stop Data,Stop Data for the Minneapolis Police Department. Please note that the datetimes shown are in UTC time (not local time).,200,Open Minneapolis,[],[],[],[],[],[],"" -3431,http://archive.miamigov.com/cip/docs/AnnualReport2017.pdf,Complaints & Misconduct,Info About Officers,Civilian Investigative Panel (CIP) - Miami,The Civilian Investigative Panel (CIP) provides for independent and impartial citizens’ oversight of the Miami Police Department.,200,CMS Redirect,"[""Civilian Investigative Panel (CIP)"", ""Top Services"", ""Process""]","[""File a Complaint Against a Miami Police Officer"", ""Join the Community-Police Mediation Program"", ""Department Head"", ""What We Do"", ""Staff"", ""Panel Members"", ""Investigations"", ""Community-Police Mediation Program"", ""Reports and Data"", ""Contact Us"", ""Meetings & Agendas"", ""Filing a Complaint"", ""Apply to be a Member""]","[""Rodney Jacobs"", ""Filing a Complaint"", ""Phone"", ""Email"", ""Location"", ""Contact Us"", ""Share & Connect"", ""Visit Other Miami Sites"", ""Digital Cities""]",[],[],[],opens in new tab or window -3432,https://tableau.minneapolismn.gov/views/MPDMStatArrestData/ArrestDashboard-byDate?:iid=1&:isGuestRedirectFromVizportal=y&:embed=y,Arrest Records,Police & Public Interactions,"","",403,"","","","","","","","" -3433,https://www.miami-police.org/annual_reports.html,Crime Statistics,Agency-Published Resources,Annual Reports - Miami Police Department,Miami Police Department Annual Reports,200,Miami Police Department,[],[],[],[],[],[],"STATIONS DISTRICT MAPS ALLAPATTAH BRICKELL ROADS COCONUT GROVE CORAL WAY DOWNTOWN EDGEWATER FLAGAMI LITTLE HAITI LITTLE HAVANA MODEL CITY OVERTOWN UPPER EAST SIDE WYNWOOD STATIONS DISTRICT MAPS ALLAPATTAH BRICKELL ROADS COCONUT GROVE CORAL WAY DOWNTOWN EDGEWATER FLAGAMI LITTLE HAITI LITTLE HAVANA MODEL CITY OVERTOWN UPPER EAST SIDE WYNWOOD OFFICE of THE CHIEF ADMINISTRATION FIELD OPERATIONS CRIMINAL INVESTIGATIONS INTERNAL AFFAIRS PROFESSIONAL COMPLIANCE LEGAL INFO ANNUAL REPORTS EMPLOYEE AWARDS OFFICE of THE CHIEF ADMINISTRATION FIELD OPERATIONS CRIMINAL INVESTIGATIONS INTERNAL AFFAIRS PROFESSIONAL COMPLIANCE LEGAL INFO ANNUAL REPORTS EMPLOYEE AWARDS PERSONNEL RESOURCE INFORMATION TECHNOLOGY BUSINESS MANAGEMENT COMMUNICATIONS/SUPPORT SERVICES TRAINING & PERSONNEL DEVELOPMENT PROPERTY & EVIDENCE MANAGEMENT PERSONNEL RESOURCE INFORMATION TECHNOLOGY BUSINESS MANAGEMENT COMMUNICATIONS/SUPPORT SERVICES TRAINING & PERSONNEL DEVELOPMENT PROPERTY & EVIDENCE MANAGEMENT NORTH DISTRICT CENTRAL DISTRICT SOUTH DISTRICT SPECIALIZED OPERATIONS SECTION COMMUNITY RELATIONS NORTH DISTRICT CENTRAL DISTRICT SOUTH DISTRICT SPECIALIZED OPERATIONS SECTION COMMUNITY RELATIONS DO THE RIGHT THING POLICE ATHLETIC LEAGUE DO THE RIGHT THING POLICE ATHLETIC LEAGUE CRIMINAL INVESTIGATIONS INVESTIGATIVE SUPPORT SPECIAL INVESTIGATIONS CRIMINAL INVESTIGATIONS INVESTIGATIVE SUPPORT SPECIAL INVESTIGATIONS INTERNAL AFFAIRS SECTION INTERNAL AFFAIRS SECTION RECORDS RECOVER PROPERTY ALARMS UNIT VICTIMS ADVOCATE FRAUD VICTIMS SPECIAL EVENTS UNIT MAKE A COMPLAINT CRIME DATA REQUESTS REPORT GANG ACTIVITY CRIME MAPPING REQUEST CRIME WATCH COMMEND AN OFFICER RECORDS RECOVER PROPERTY ALARMS UNIT VICTIMS ADVOCATE FRAUD VICTIMS SPECIAL EVENTS UNIT MAKE A COMPLAINT CRIME DATA REQUESTS REPORT GANG ACTIVITY CRIME MAPPING REQUEST CRIME WATCH COMMEND AN OFFICER PUBLIC INFO OFFICE NEWS RELEASES COMMUNITY EVENTS VIDEOS SOCIAL MEDIA PUBLIC INFO OFFICE NEWS RELEASES COMMUNITY EVENTS VIDEOS SOCIAL MEDIA CAREERS CAREERS POLICE COLLEGE WEBSITE MAGNET HIGH SCHOOL TRAINING HISTORY ACCOMPLISHMENTS CONTACT POLICE COLLEGE WEBSITE MAGNET HIGH SCHOOL TRAINING HISTORY ACCOMPLISHMENTS CONTACT MIAMI POLICE SHIELD SEXUAL PREDATORS DOMESTIC VIOLENCE SAFETY TIPS KIDS CORNER MIAMI POLICE SHIELD SEXUAL PREDATORS DOMESTIC VIOLENCE SAFETY TIPS KIDS CORNER Search Dial 911 for EMERGENCIES ONLY Miami Police Non-Emergency: - (305) 579-6111 CrimeStoppers: (305) 471-TIPS (8477) Inside MPD > Annual Reports Your browser does not support the video tag. 2022 Annual Report 2021 Annual Report 2020 Annual Report 2019 Annual Report 2018 Annual Report 2017 Annual Report 2016 Annual Report 2015 Annual Report 2014 Annual Report 2013 Annual Report 2012 Annual Report 2011 Annual Report 2010 Annual Report 2009 Annual Report 2008 Annual Report 2007 Annual Report 2006 Annual Report 2004 Annual Report Archive Copyright © 2024 The City of Miami Police Department. All rights reserved. This information is made available to the public and law enforcement in the interest of public safety. Any unauthorized use of this information is forbidden and subject to criminal prosecution. Search Your browser does not support the video tag. 2022 Annual Report 2021 Annual Report 2020 Annual Report 2019 Annual Report 2018 Annual Report 2017 Annual Report 2016 Annual Report 2015 Annual Report 2014 Annual Report 2013 Annual Report 2012 Annual Report 2011 Annual Report 2010 Annual Report 2009 Annual Report 2008 Annual Report 2007 Annual Report 2006 Annual Report 2004 Annual Report " -3434,https://reimagine.memphistn.gov/isb-dashboard/,Complaints & Misconduct,Info About Officers,ISB Dashboard - Reimagine Policing in Memphis,"",200,403 Forbidden,"[""ISB Dashboard""]","[""What is ISB?"", ""Alleged Violations Against Officers"", ""Response to Resistance"", ""Additional Resources""]","[""ISB Annual Reports"", ""Hearing Summary Reports""]","["""", """"]",[],[],Search Reimagine Policing in Memphis Menu Home Eight Can’t Wait 21st Century Policing Pillar One Pillar Two Pillar Three Pillar Four Pillar Five Pillar Six Resources Actions Taken File a Complaint Policies & Reports Hiring Process Training Community Outreach Mayor’s Priorities Join MPD Menu Search Search Reimagine Policing in Memphis Menu Reimagine Policing in Memphis Reimagine Policing in Memphis Home Eight Can’t Wait 21st Century Policing Pillar One Pillar Two Pillar Three Pillar Four Pillar Five Pillar Six Resources Actions Taken File a Complaint Policies & Reports Hiring Process Training Community Outreach Mayor’s Priorities Join MPD Menu Search Menu Search Menu Search Search for: Close search Search for: Close search Search for: Close search Close Menu Home Eight Can’t Wait 21st Century Policing Show sub menu Pillar One Pillar Two Pillar Three Pillar Four Pillar Five Pillar Six Resources Show sub menu Actions Taken File a Complaint Policies & Reports Hiring Process Training Community Outreach Mayor’s Priorities Join MPD English Arabic Chinese (Simplified) Dutch English Filipino French German Haitian Creole Hebrew Indonesian Italian Japanese Korean Portuguese Russian Spanish Vietnamese Select Language Afrikaans Albanian Amharic Arabic Armenian Assamese Aymara Azerbaijani Bambara Basque Belarusian Bengali Bhojpuri Bosnian Bulgarian Catalan Cebuano Chichewa Chinese (Simplified) Chinese (Traditional) Corsican Croatian Czech Danish Dhivehi Dogri Dutch Esperanto Estonian Ewe Filipino Finnish French Frisian Galician Georgian German Greek Guarani Gujarati Haitian Creole Hausa Hawaiian Hebrew Hindi Hmong Hungarian Icelandic Igbo Ilocano Indonesian Irish Italian Japanese Javanese Kannada Kazakh Khmer Kinyarwanda Konkani Korean Krio Kurdish (Kurmanji) Kurdish (Sorani) Kyrgyz Lao Latin Latvian Lingala Lithuanian Luganda Luxembourgish Macedonian Maithili Malagasy Malay Malayalam Maltese Maori Marathi Meiteilon (Manipuri) Mizo Mongolian Myanmar (Burmese) Nepali Norwegian Odia (Oriya) Oromo Pashto Persian Polish Portuguese Punjabi Quechua Romanian Russian Samoan Sanskrit Scots Gaelic Sepedi Serbian Sesotho Shona Sindhi Sinhala Slovak Slovenian Somali Spanish Sundanese Swahili Swedish Tajik Tamil Tatar Telugu Thai Tigrinya Tsonga Turkish Turkmen Twi Ukrainian Urdu Uyghur Uzbek Vietnamese Welsh Xhosa Yiddish Yoruba Zulu Powered by Translate Home Eight Can’t Wait 21st Century Policing Show sub menu Pillar One Pillar Two Pillar Three Pillar Four Pillar Five Pillar Six Resources Show sub menu Actions Taken File a Complaint Policies & Reports Hiring Process Training Community Outreach Mayor’s Priorities Join MPD -3435,https://www.miami-police.org/contact.html,Contact Info & Agency Meta,Info About Agencies,Contact the Miami Police Department - Miami Police Department,"Contact the Miami Police Department, Address: 400 NW 2nd Avenue, Miami, Florida 33128, Phone: (305) 603-6640",200,Miami Police Department,[],[],[],[],[],[],"STATIONS DISTRICT MAPS ALLAPATTAH BRICKELL ROADS COCONUT GROVE CORAL WAY DOWNTOWN EDGEWATER FLAGAMI LITTLE HAITI LITTLE HAVANA MODEL CITY OVERTOWN UPPER EAST SIDE WYNWOOD STATIONS DISTRICT MAPS ALLAPATTAH BRICKELL ROADS COCONUT GROVE CORAL WAY DOWNTOWN EDGEWATER FLAGAMI LITTLE HAITI LITTLE HAVANA MODEL CITY OVERTOWN UPPER EAST SIDE WYNWOOD OFFICE of THE CHIEF ADMINISTRATION FIELD OPERATIONS CRIMINAL INVESTIGATIONS INTERNAL AFFAIRS PROFESSIONAL COMPLIANCE LEGAL INFO ANNUAL REPORTS EMPLOYEE AWARDS OFFICE of THE CHIEF ADMINISTRATION FIELD OPERATIONS CRIMINAL INVESTIGATIONS INTERNAL AFFAIRS PROFESSIONAL COMPLIANCE LEGAL INFO ANNUAL REPORTS EMPLOYEE AWARDS PERSONNEL RESOURCE INFORMATION TECHNOLOGY BUSINESS MANAGEMENT COMMUNICATIONS/SUPPORT SERVICES TRAINING & PERSONNEL DEVELOPMENT PROPERTY & EVIDENCE MANAGEMENT PERSONNEL RESOURCE INFORMATION TECHNOLOGY BUSINESS MANAGEMENT COMMUNICATIONS/SUPPORT SERVICES TRAINING & PERSONNEL DEVELOPMENT PROPERTY & EVIDENCE MANAGEMENT NORTH DISTRICT CENTRAL DISTRICT SOUTH DISTRICT SPECIALIZED OPERATIONS SECTION COMMUNITY RELATIONS NORTH DISTRICT CENTRAL DISTRICT SOUTH DISTRICT SPECIALIZED OPERATIONS SECTION COMMUNITY RELATIONS DO THE RIGHT THING POLICE ATHLETIC LEAGUE DO THE RIGHT THING POLICE ATHLETIC LEAGUE CRIMINAL INVESTIGATIONS INVESTIGATIVE SUPPORT SPECIAL INVESTIGATIONS CRIMINAL INVESTIGATIONS INVESTIGATIVE SUPPORT SPECIAL INVESTIGATIONS INTERNAL AFFAIRS SECTION INTERNAL AFFAIRS SECTION RECORDS RECOVER PROPERTY ALARMS UNIT VICTIMS ADVOCATE FRAUD VICTIMS SPECIAL EVENTS UNIT MAKE A COMPLAINT CRIME DATA REQUESTS REPORT GANG ACTIVITY CRIME MAPPING REQUEST CRIME WATCH COMMEND AN OFFICER RECORDS RECOVER PROPERTY ALARMS UNIT VICTIMS ADVOCATE FRAUD VICTIMS SPECIAL EVENTS UNIT MAKE A COMPLAINT CRIME DATA REQUESTS REPORT GANG ACTIVITY CRIME MAPPING REQUEST CRIME WATCH COMMEND AN OFFICER PUBLIC INFO OFFICE NEWS RELEASES COMMUNITY EVENTS VIDEOS SOCIAL MEDIA PUBLIC INFO OFFICE NEWS RELEASES COMMUNITY EVENTS VIDEOS SOCIAL MEDIA CAREERS CAREERS POLICE COLLEGE WEBSITE MAGNET HIGH SCHOOL TRAINING HISTORY ACCOMPLISHMENTS CONTACT POLICE COLLEGE WEBSITE MAGNET HIGH SCHOOL TRAINING HISTORY ACCOMPLISHMENTS CONTACT MIAMI POLICE SHIELD SEXUAL PREDATORS DOMESTIC VIOLENCE SAFETY TIPS KIDS CORNER MIAMI POLICE SHIELD SEXUAL PREDATORS DOMESTIC VIOLENCE SAFETY TIPS KIDS CORNER Search Dial 911 for EMERGENCIES ONLY Miami Police Non-Emergency: - (305) 579-6111 CrimeStoppers: (305) 471-TIPS (8477) Contact the Miami Police Department By Mail: Miami Police Department 400 NW 2nd Avenue Miami, Florida 33128 Post Office Box 016777, Miami, Florida 33101 By Phone: (305) 603-6640 PROVIDE ANONYMOUS TIPS: Contact Crime Stoppers by phone 305-471-TIPS (8477) Or via Web Click here to submit anonymous details. Copyright © 2024 The City of Miami Police Department. All rights reserved. This information is made available to the public and law enforcement in the interest of public safety. Any unauthorized use of this information is forbidden and subject to criminal prosecution. Search " -3436,https://city.milwaukee.gov/ImageLibrary/Groups/mpdAuthors/SOP/460-USEOFFORCE.pdf,Policies & Contracts,Info About Agencies,"","",403,"","","","","","","","" -3437,https://data.milwaukee.gov/dataset/fpc-citizen-complaints,Complaints & Misconduct,Info About Officers,Citizen Complaints Against Police and Fire Departments - Dataset - City of Milwaukee Open Data Portal,"",200,Welcome - City of Milwaukee Open Data Portal ,"[""Milwaukee Open Data"", ""Citizen Complaints Against Police and Fire Departments"", ""Fire and Police Commission"", ""Citizen Complaints Against Police and Fire Departments""]","[""Organization"", ""Social"", ""License"", ""Data and Resources""]","[""Additional Info""]",[],[],[],"Skip to content Log in Register Contact City of Milwaukee Log in Register Contact City of Milwaukee City of Milwaukee Toggle navigation Milwaukee Open Data City of Milwaukee Open Data Portal Home Datasets Organizations Groups About Help Search Datasets Toggle navigation Milwaukee Open Data City of Milwaukee Open Data Portal Milwaukee Open Data City of Milwaukee Open Data Portal Home Datasets Organizations Groups About Help Search Datasets Search Datasets Home Organizations Fire and Police Commission Citizen Complaints Against Police and Fire Departments Citizen Complaints Against Police and Fire Departments Followers 6 Organization Fire and Police Commission Under Wisconsin law and the Milwaukee City Charter, the Fire and Police Commission oversees all aspects of Fire Department and Police Department operations. The Commission sets... read more Social Twitter Facebook Linkedin License Creative Commons Attribution Dataset Groups Showcases Activity Stream Citizen Complaints Against Police and Fire Departments Update Frequency: Quarterly The Fire and Police Commission (FPC) is the civilian oversight agency of the Milwaukee Fire and Police Departments and has full authority to investigate and discipline department employees for rule violations. Data-sets contain complaints against the City of Milwaukee Fire and Police Department personnel. Beginning with Q3 2019, the data is inclusive of complaints received by the FPC and MPD. Data and Resources FPC Complaint Data Key PDF Popular Detailed information and definitions related to the data-set. Explore Preview Download Combined Complaints, Q3 2019 through Q4 2022 XLSX Popular Citizen complaints made against the Milwaukee Fire and Police Departments. Explore Preview Download Complaint Tabulation SA.XLSX XLSX Explore Preview Download Combined Complaints - Q3 2019 through Q4 2022.csv CSV Explore Preview Download Allegations Civilian Complaint FPC Fire Incident MFD MPD Police Additional Info Field Value Last Updated May 31, 2023, 10:56 AM (UTC-04:00) Created January 18, 2019, 3:50 PM (UTC-05:00) " -3438,https://www.montgomerycountymd.gov/pol/contact.html,Contact Info & Agency Meta,Info About Agencies,"Contact Us page, Department of Police,Montgomery County, MD","",200," - Montgomery County Maryland -",[],"[""Contact us""]","[""How to Report a Crime or Incident"", ""Police Districts"", ""Frequently Used Numbers""]","[""POLICE CONTACTS"", ""FOR CRIME SOLVERS"", ""DISTRICTS"", ""RESOURCES"", ""FOLLOW US"", ""STAY INFORMED""]",[],[],"Skip to main content County Web Accessibility information including Alternative Format Requests for Disabled Users are provided on this page. An official website of Montgomery County, Maryland An official website of Montgomery County, Maryland MC311 Montgomery County Department of Police Search String Search × Translate Site Home About Office of the Chief Districts Bureaus How Do I? Public Safety Data Join Our Team Contact Us Contact us Public Safety Headquarters 100 Edison Park Drive Gaithersburg, MD 20878 How to Report a Crime or Incident Crime in progress or just witnessed an emergency situation: Call 911 Reporting a non-emergency incident in progress: Call 301-279-8000 Submitting an anonymous crime tip: Use Crime Solvers Make the right call: When to call 9-1-1 Send us your Compliments and Complaints MPIA Request : Maryland Public Information Act or Freedom of Information Act requests for the Montgomery County Police Department should be directed to Mary Davison of the Police Records Section. Find out more about the MPIA request process at >> Police Districts 1st District Station / Rockville 1DCommander@montgomerycountymd.gov 240-773-6070 2nd District Station / Bethesda 2DCommander@montgomerycountymd.gov 240-773-6700 3rd District Station / Silver Spring 3DCommander@montgomerycountymd.gov 240-773-6800 4th District Station / Wheaton 4DCommander@montgomerycountymd.gov 240-773-5500 5th District Station / Germantown 5DCommander@montgomerycountymd.gov 240-773-6200 6th District Station / Montgomery Village 6DCommander@montgomerycountymd.gov 240-773-5700 Frequently Used Numbers Office of the Chief 311 or 240-777-0311 (from outside the county) Alcohol Initiatives Unit 240-773-5900 Autism, IDD, and Alzheimer’s Outreach Program 240-773-6525 Automated Traffic Enforcement Unit 240-773-6050 Citizen Academy 240-773-6910 Collision Reconstruction Unit 240-773-6620 Community Engagement Division 240-773-6980 False Alarm Reduction Section 240-773-6300 Financial Crimes Section 240-773-6330 Firearms Investigations Unit 240-773-6400 Fugitive Unit 240-773-5370 Hispanic Community Academy 240-773-6920 Information Management and Technology Division (Records) 240-773-5330 Internal Affairs Division 240-773-6000 Major Crimes Division 240-773-5070 Public Information Office 240-773-5030 Personnel Division 240-773-5310 Police Academy 240-773-6900 Records Section 240-773-5330 Special Victims Investigations Division 240-773-5400 Special Investigations Division 240-773-5959 Special Operations Division 240-773-6500 Traffic Division 240-773-6600 Training and Education Division 240-773-6900 Vehicle Recovery Section 240-773-6411 Victim/Witness Assistance Unit 240-773-5626 Volunteer Resources Section 240-773-5625 Warrant Turn-in Facility 240-773-6990 Montgomery County Police Department Public Safety Headquarters 100 Edison Park Drive · Gaithersburg, MD 20878 Non-emergency: 301-279-8000 POLICE CONTACTS For Emergencies: Call 911 Non-emergency: 301-279-8000 FOR CRIME SOLVERS Anonymous Call: 1-866-411-8477 Submit Crime Tips DISTRICTS 1D Rockville 2D Bethesda 3D Silver Spring 4D Wheaton 5D Germantown 6D Montgomery Village RESOURCES Department Policies MCP Alumni Language Bank FOLLOW US Facebook Twitter YouTube Instagram STAY INFORMED News Releases Performance Stats Community Policing MontgomeryCountyMD.GOV Privacy Policy | User Rights | Accessibility | Social Media Policy | County Code | Language Translations © Copyright 2024. Montgomery County Government. | All Rights Reserved Go Top County Web Accessibility information including Alternative Format Requests for Disabled Users are provided on this page. An official website of Montgomery County, Maryland An official website of Montgomery County, Maryland MC311 Montgomery County Department of Police Search String Search × Translate Site Home About Office of the Chief Districts Bureaus How Do I? Public Safety Data Join Our Team Contact Us " -3439,https://opendata.minneapolismn.gov/datasets/police-incidents-2021/explore,Crime Maps & Reports,Agency-Published Resources,Police Incidents 2021,Police Incidents for 2021,200,Open Minneapolis,[],[],[],[],[],[],"" -3440,https://www.montgomerycountymd.gov/pol/data/iad-reports.html,Complaints & Misconduct,Info About Officers,"IAD reports page, MCPD, Montgomery County,MD","",200," - Montgomery County Maryland -",[],"[""Internal Affairs Division Reports""]",[],"[""POLICE CONTACTS"", ""FOR CRIME SOLVERS"", ""DISTRICTS"", ""RESOURCES"", ""FOLLOW US"", ""STAY INFORMED""]",[],[],"Skip to main content County Web Accessibility information including Alternative Format Requests for Disabled Users are provided on this page. An official website of Montgomery County, Maryland An official website of Montgomery County, Maryland MC311 Montgomery County Department of Police Search String Search × Translate Site Home About Office of the Chief Districts Bureaus How Do I? Public Safety Data Join Our Team Contact Us Internal Affairs Division Reports 2022 Annual Internal Affairs Division Report 2021 Annual Internal Affairs Division Report 2020 Annual Internal Affairs Division Report 2019 Annual Internal Affairs Division Report 2018 Annual Internal Affairs Division Report 2017 Annual Internal Affairs Division Report Montgomery County Police Department Public Safety Headquarters 100 Edison Park Drive · Gaithersburg, MD 20878 Non-emergency: 301-279-8000 POLICE CONTACTS For Emergencies: Call 911 Non-emergency: 301-279-8000 FOR CRIME SOLVERS Anonymous Call: 1-866-411-8477 Submit Crime Tips DISTRICTS 1D Rockville 2D Bethesda 3D Silver Spring 4D Wheaton 5D Germantown 6D Montgomery Village RESOURCES Department Policies MCP Alumni Language Bank FOLLOW US Facebook Twitter YouTube Instagram STAY INFORMED News Releases Performance Stats Community Policing MontgomeryCountyMD.GOV Privacy Policy | User Rights | Accessibility | Social Media Policy | County Code | Language Translations © Copyright 2024. Montgomery County Government. | All Rights Reserved Go Top County Web Accessibility information including Alternative Format Requests for Disabled Users are provided on this page. An official website of Montgomery County, Maryland An official website of Montgomery County, Maryland MC311 Montgomery County Department of Police Search String Search × Translate Site Home About Office of the Chief Districts Bureaus How Do I? Public Safety Data Join Our Team Contact Us An official website of Montgomery County, Maryland An official website of Montgomery County, Maryland MC311 An official website of Montgomery County, Maryland An official website of Montgomery County, Maryland MC311 Montgomery County Department of Police Search String Search Montgomery County Department of Police Search String Search Montgomery County Department of Police Montgomery County Department of Police Search String Search Search String Search Search String Search Search String Search Search String Search × Translate Site Home About Office of the Chief Districts Bureaus How Do I? Public Safety Data Join Our Team Contact Us × Translate Site Home About Office of the Chief Districts Bureaus How Do I? Public Safety Data Join Our Team Contact Us Translate Internal Affairs Division Reports 2022 Annual Internal Affairs Division Report 2021 Annual Internal Affairs Division Report 2020 Annual Internal Affairs Division Report 2019 Annual Internal Affairs Division Report 2018 Annual Internal Affairs Division Report 2017 Annual Internal Affairs Division Report Internal Affairs Division Reports 2022 Annual Internal Affairs Division Report 2021 Annual Internal Affairs Division Report 2020 Annual Internal Affairs Division Report 2019 Annual Internal Affairs Division Report 2018 Annual Internal Affairs Division Report 2017 Annual Internal Affairs Division Report Internal Affairs Division Reports Internal Affairs Division Reports " -3441,https://gis-mdc.opendata.arcgis.com/search?collection=Dataset,List of Data Sources,Info About Agencies,Open Data Hub Site,"Open Data Hub Site from Miami-Dade County, Florida",200,Open Data Hub Site,[],[],[],[],[],[],"" -3442,https://opendata.minneapolismn.gov/datasets/police-officer-involved-shootings/explore ,Officer Involved Shootings,Police & Public Interactions,Police Officer Involved Shootings,Officer Involved Shooting Data for the Minneapolis Police Department,200,Open Minneapolis,[],[],[],[],[],[],"" -3443,https://www.montgomerycountymd.gov/POL/resource/Directives/100.html,Policies & Contracts,Info About Agencies,"Directives -100 - Police Operations, Montgomery County Police, Montgomery County, MD","Police Operations,Neck Restraint, Use of Force",200," - Montgomery County Maryland -","[""100 - Police Operations""]",[],[],"[""POLICE CONTACTS"", ""FOR CRIME SOLVERS"", ""DISTRICTS"", ""RESOURCES"", ""FOLLOW US"", ""STAY INFORMED""]",[],[],"Skip to main content County Web Accessibility information including Alternative Format Requests for Disabled Users are provided on this page. An official website of Montgomery County, Maryland An official website of Montgomery County, Maryland MC311 Montgomery County Department of Police Search String Search × Translate Site Home About Office of the Chief Districts Bureaus How Do I? Public Safety Data Join Our Team Contact Us 100 - Police Operations Number Title FC 131 Use of Force FC 133 Electronic Control Weapons FC 135 Vehicular Pursuits FC 140 Miscellaneous Enforcement Policies FC 145 Structured Roll Call Return to Department Policies Montgomery County Police Department Public Safety Headquarters 100 Edison Park Drive · Gaithersburg, MD 20878 Non-emergency: 301-279-8000 POLICE CONTACTS For Emergencies: Call 911 Non-emergency: 301-279-8000 FOR CRIME SOLVERS Anonymous Call: 1-866-411-8477 Submit Crime Tips DISTRICTS 1D Rockville 2D Bethesda 3D Silver Spring 4D Wheaton 5D Germantown 6D Montgomery Village RESOURCES Department Policies MCP Alumni Language Bank FOLLOW US Facebook Twitter YouTube Instagram STAY INFORMED News Releases Performance Stats Community Policing MontgomeryCountyMD.GOV Privacy Policy | User Rights | Accessibility | Social Media Policy | County Code | Language Translations © Copyright 2024. Montgomery County Government. | All Rights Reserved Go Top County Web Accessibility information including Alternative Format Requests for Disabled Users are provided on this page. An official website of Montgomery County, Maryland An official website of Montgomery County, Maryland MC311 Montgomery County Department of Police Search String Search × Translate Site Home About Office of the Chief Districts Bureaus How Do I? Public Safety Data Join Our Team Contact Us An official website of Montgomery County, Maryland An official website of Montgomery County, Maryland MC311 An official website of Montgomery County, Maryland An official website of Montgomery County, Maryland MC311 Montgomery County Department of Police Search String Search Montgomery County Department of Police Search String Search Montgomery County Department of Police Montgomery County Department of Police Search String Search Search String Search Search String Search Search String Search Search String Search × Translate Site Home About Office of the Chief Districts Bureaus How Do I? Public Safety Data Join Our Team Contact Us × Translate Site Home About Office of the Chief Districts Bureaus How Do I? Public Safety Data Join Our Team Contact Us Translate 100 - Police Operations Number Title FC 131 Use of Force FC 133 Electronic Control Weapons FC 135 Vehicular Pursuits FC 140 Miscellaneous Enforcement Policies FC 145 Structured Roll Call Return to Department Policies 100 - Police Operations Number Title FC 131 Use of Force FC 133 Electronic Control Weapons FC 135 Vehicular Pursuits FC 140 Miscellaneous Enforcement Policies FC 145 Structured Roll Call Return to Department Policies 100 - Police Operations Number Title FC 131 Use of Force FC 133 Electronic Control Weapons FC 135 Vehicular Pursuits FC 140 Miscellaneous Enforcement Policies FC 145 Structured Roll Call Return to Department Policies Return to Department Policies " -3444,https://data.mesaaz.gov/Police/Police-Computer-Aided-Dispatch-Events/ex94-c5ad,Calls for Service,Police & Public Interactions,Police Dispatch Events 2017-2020 | Mesa Data Hub,"",200,Data Portal | Mesa Data Hub,"[""Police Calls for Service - Suicide and Welfare Check"", ""Police Calls for Service by Month by division and event type"", ""Police - Priority 1 Incident Response Time (2017-2020)"", ""Police Calls for Service (Zip Code) - Suicide and Welfare Check"", ""Police Dispatched (CAD) Events by Month"", ""Drug Incidences Police Dispatch"", ""Manage Featured Content""]","[""Menu"", ""Access this Dataset via OData"", ""Police Dispatch Events 2017-2020"", ""Featured Content Using this Data"", ""About this Dataset"", ""What's in this Dataset?"", ""Columns in this Dataset"", ""Dataset Changelog"", ""Police Dispatch Events 2017-2020"", ""Open this dataset in Carto?"", ""Open this dataset in Plot.ly?"", ""Send a Message to the Owner of this Dataset"", ""Featured Content""]","[""PM - Police Emergency Calls Response Time …"", ""Police Calls for Service and Response Times by Month …"", ""PM - Police Priority 1 Calls Response Times …"", ""Terms of Use"", ""Data Quality"", ""Dataset Characteristics"", ""Frequency"", ""Public Access"", ""Topics"", ""Licensing and Attribution"", ""PM - Police Emergency Calls Response Time …"", ""Police Calls for Service and Response Times by Month …"", ""PM - Police Priority 1 Calls Response Times …""]",[],[],"[""OData Endpoint""]",Skip to Main Content Sign In Home Browse Developers Financial Transparency Open Budget Open Expenditures Menu Menu Close Home Browse Developers Financial Transparency Open Budget Open Expenditures Sign In Search Sign In Home Browse Developers Financial Transparency Open Budget Open Expenditures Menu Sign In Home Browse Developers Financial Transparency Open Budget Open Expenditures Menu Sign In Sign In Home Browse Developers Financial Transparency Open Budget Open Expenditures Financial Transparency Open Budget Open Expenditures Financial Transparency Open Budget Open Expenditures Menu Close Home Browse Developers Financial Transparency Open Budget Open Expenditures Sign In Search Home Browse Developers Financial Transparency Open Budget Open Expenditures Sign In Search Home Browse Developers Financial Transparency Open Budget Open Expenditures Financial Transparency Open Budget Open Expenditures Sign In Search Search -3446,https://mesaaz.maps.arcgis.com/apps/dashboards/c38c8c61b10d40fdaaabab2b4f10c984,Use of Force Reports,Police & Public Interactions,ArcGIS Dashboards,ArcGIS Dashboards,200,Error retrieving title: 'NoneType' object has no attribute 'text',[],[],[],[],[],[],"" -3447,https://data.mesaaz.gov/,List of Data Sources,Info About Agencies,Data Portal | Mesa Data Hub,"",200,Data Portal | Mesa Data Hub,"[""Welcome to the City of Mesa Data Portal. A 'Smart City' initiative."", ""Explore Datasets, Charts, Maps and Stories"", ""Featured Stories"", ""Resources""]","[""Menu""]",[],[],[],[],"Skip to main content Skip to footer links Sign In Home Browse Developers Financial Transparency Open Budget Open Expenditures Menu Menu Close Home Browse Developers Financial Transparency Open Budget Open Expenditures Sign In Search Welcome to the City of Mesa Data Portal. A 'Smart City' initiative. City Council Strategic Priorities Financial Transparency Capital Projects Explorer Explore Datasets, Charts, Maps and Stories Permits & Licenses Building permits and licenses Energy & Utilities Water, gas & electric Financials Budgets, revenues, expenditures, vendor payments and sales tax revenues Recreation & Culture Arts, museums, parks and recreation Zoning & Property Vacancy rates, zoning and property Planes, Trains & Automobiles Light rail, bike paths, road construction and transit Neighborhoods Code violations, graffiti and demographics Public Safety Crime and incident City Operations Government related City Council Strategic Priorities Featured Stories Addressing Homelessness City Energy Usage Dashboard Rent & Utilities Assistance (ERAP) American Recovery Plan Act Resources What is Open Data? What does the term ""open data"" mean? Guidance on how you find and request Mesa's data. Using the Data Portal Get started using Mesa's Data Portal. Access to additional resources Suggest a data set Didn’t find what you were looking for? Suggest a dataset. OpenGIS Explore the City's Open GIS Data Site Open Data Network Want access to more data? Check out the national open data network. Open Records Submit a public records request Sign In Home Browse Developers Financial Transparency Open Budget Open Expenditures Menu Menu Close Home Browse Developers Financial Transparency Open Budget Open Expenditures Sign In Search Welcome to the City of Mesa Data Portal. A 'Smart City' initiative. City Council Strategic Priorities Financial Transparency Capital Projects Explorer Explore Datasets, Charts, Maps and Stories Permits & Licenses Building permits and licenses Energy & Utilities Water, gas & electric Financials Budgets, revenues, expenditures, vendor payments and sales tax revenues Recreation & Culture Arts, museums, parks and recreation Zoning & Property Vacancy rates, zoning and property Planes, Trains & Automobiles Light rail, bike paths, road construction and transit Neighborhoods Code violations, graffiti and demographics Public Safety Crime and incident City Operations Government related City Council Strategic Priorities Featured Stories Addressing Homelessness City Energy Usage Dashboard Rent & Utilities Assistance (ERAP) American Recovery Plan Act Resources What is Open Data? What does the term ""open data"" mean? Guidance on how you find and request Mesa's data. Using the Data Portal Get started using Mesa's Data Portal. Access to additional resources Suggest a data set Didn’t find what you were looking for? Suggest a dataset. OpenGIS Explore the City's Open GIS Data Site Open Data Network Want access to more data? Check out the national open data network. Open Records Submit a public records request Sign In Home Browse Developers Financial Transparency Open Budget Open Expenditures Menu Menu Close Home Browse Developers Financial Transparency Open Budget Open Expenditures Sign In Search Sign In Home Browse Developers Financial Transparency Open Budget Open Expenditures Menu Sign In Home Browse Developers Financial Transparency Open Budget Open Expenditures Menu Sign In " -3448,https://www.montgomerycountymd.gov/pol/crime-data.html,Crime Maps & Reports,Agency-Published Resources,"Public Safety Data Page, Montgomery County Police Department , Montgomery County, MD","",200," - Montgomery County Maryland -",[],"[""Public Safety Data""]","[""Annual Reports"", ""Drone as First Responder Program (DFR)"", ""Monthly Hate/Bias Summaries"", ""Weekly Crime Summary Reports"", ""Sex Offender Registry"", ""Extreme Risk Protection Order (ERPO) Information"", ""Other Reports"", ""Crime Incident Map""]","[""POLICE CONTACTS"", ""FOR CRIME SOLVERS"", ""DISTRICTS"", ""RESOURCES"", ""FOLLOW US"", ""STAY INFORMED""]",[],[],"Skip to main content County Web Accessibility information including Alternative Format Requests for Disabled Users are provided on this page. An official website of Montgomery County, Maryland An official website of Montgomery County, Maryland MC311 Montgomery County Department of Police Search String Search × Translate Site Home About Office of the Chief Districts Bureaus How Do I? Public Safety Data Join Our Team Contact Us Public Safety Data For the most up-to-date information (data and maps) on crime in the County, visit dataMontgomery Annual Reports Bias Incidents Reports Community Policing Reports Crime and Safety Reports False Alarm Reduction Section Reports Internal Affairs Division Reports Pursuit Reports Speed Camera & Red Light - Revenue & Expenditure Summary Report Use of Force Reports Drone as First Responder Program (DFR) Drone as First Responder Monthly Hate/Bias Summaries Monthly Hate/Bias Summaries Weekly Crime Summary Reports Weekly Crime Summaries Sex Offender Registry (Maryland Department of Public Safety and Correctional Services) Search Sex Offender Registry Extreme Risk Protection Order (ERPO) Information FAQs State Reporting Data Other Reports Effective Law Enforcement For All (ELE4A) Audit Team Member - Gender and Ethnicity Report Cell Tower 222 and 223 Report Unfounded Call Data CY2022 Crime Incident Map The data presented is derived from reported crimes classified according to the National Incident-Based Reporting System (NIBRS) of the Criminal Justice Information Services (CJIS) Division Uniform Crime Reporting (UCR) Program and documented by approved police incident reports. Search for crime in your area by entering your address in the map search box. Or use Filters on the right-hand top corner of the map to filter the data by Police District, Date and Time, Beat Police Response Area ( PRA ), or City. Additional information about the crime map >> Montgomery County Police Department Public Safety Headquarters 100 Edison Park Drive · Gaithersburg, MD 20878 Non-emergency: 301-279-8000 POLICE CONTACTS For Emergencies: Call 911 Non-emergency: 301-279-8000 FOR CRIME SOLVERS Anonymous Call: 1-866-411-8477 Submit Crime Tips DISTRICTS 1D Rockville 2D Bethesda 3D Silver Spring 4D Wheaton 5D Germantown 6D Montgomery Village RESOURCES Department Policies MCP Alumni Language Bank FOLLOW US Facebook Twitter YouTube Instagram STAY INFORMED News Releases Performance Stats Community Policing MontgomeryCountyMD.GOV Privacy Policy | User Rights | Accessibility | Social Media Policy | County Code | Language Translations © Copyright 2024. Montgomery County Government. | All Rights Reserved Go Top County Web Accessibility information including Alternative Format Requests for Disabled Users are provided on this page. An official website of Montgomery County, Maryland An official website of Montgomery County, Maryland MC311 Montgomery County Department of Police Search String Search × Translate Site Home About Office of the Chief Districts Bureaus How Do I? Public Safety Data Join Our Team Contact Us An official website of Montgomery County, Maryland An official website of Montgomery County, Maryland MC311 An official website of Montgomery County, Maryland An official website of Montgomery County, Maryland MC311 Montgomery County Department of Police Search String Search Montgomery County Department of Police Search String Search Montgomery County Department of Police " -3449,https://reimagine.memphistn.gov/isb-dashboard/response-to-resistance/,Use of Force Reports,Police & Public Interactions,Response to Resistance - Reimagine Policing in Memphis,"",200,403 Forbidden,"[""Response to Resistance""]","[""Response to Resistance"", ""How Do We Compare to Other Agencies?""]","[""What Does This Report Show?"", ""Response to Resistance (all incidents)"", ""Response to Resistance (fatal shootings)""]",[],[],[],Search Reimagine Policing in Memphis Menu Home Eight Can’t Wait 21st Century Policing Pillar One Pillar Two Pillar Three Pillar Four Pillar Five Pillar Six Resources Actions Taken File a Complaint Policies & Reports Hiring Process Training Community Outreach Mayor’s Priorities Join MPD Menu Search Search Reimagine Policing in Memphis Menu Reimagine Policing in Memphis Reimagine Policing in Memphis Home Eight Can’t Wait 21st Century Policing Pillar One Pillar Two Pillar Three Pillar Four Pillar Five Pillar Six Resources Actions Taken File a Complaint Policies & Reports Hiring Process Training Community Outreach Mayor’s Priorities Join MPD Menu Search Menu Search Menu Search Search for: Close search Search for: Close search Search for: Close search Close Menu Home Eight Can’t Wait 21st Century Policing Show sub menu Pillar One Pillar Two Pillar Three Pillar Four Pillar Five Pillar Six Resources Show sub menu Actions Taken File a Complaint Policies & Reports Hiring Process Training Community Outreach Mayor’s Priorities Join MPD English Arabic Chinese (Simplified) Dutch English Filipino French German Haitian Creole Hebrew Indonesian Italian Japanese Korean Portuguese Russian Spanish Vietnamese Powered by Translate Home Eight Can’t Wait 21st Century Policing Show sub menu Pillar One Pillar Two Pillar Three Pillar Four Pillar Five Pillar Six Resources Show sub menu Actions Taken File a Complaint Policies & Reports Hiring Process Training Community Outreach Mayor’s Priorities Join MPD Close Menu Home Eight Can’t Wait 21st Century Policing Show sub menu Pillar One Pillar Two Pillar Three Pillar Four Pillar Five Pillar Six Resources Show sub menu Actions Taken File a Complaint Policies & Reports Hiring Process Training Community Outreach Mayor’s Priorities Join MPD English Arabic Chinese (Simplified) Dutch English Filipino French German Haitian Creole Hebrew Indonesian Italian Japanese Korean Portuguese Russian Spanish Vietnamese Powered by Translate Home Eight Can’t Wait 21st Century Policing Show sub menu Pillar One Pillar Two Pillar Three Pillar Four Pillar Five Pillar Six Resources Show sub menu Actions Taken File a Complaint Policies & Reports Hiring Process Training Community Outreach Mayor’s Priorities Join MPD Close Menu Home Eight Can’t Wait 21st Century Policing Show sub menu Pillar One Pillar Two Pillar Three Pillar Four Pillar Five Pillar Six Resources Show sub menu Actions Taken File a Complaint Policies & Reports Hiring Process Training Community Outreach Mayor’s Priorities Join MPD English Arabic Chinese (Simplified) Dutch English Filipino French German Haitian Creole Hebrew Indonesian Italian Japanese Korean Portuguese Russian Spanish Vietnamese Powered by Translate Home Eight Can’t Wait 21st Century Policing Show sub menu Pillar One Pillar Two Pillar Three Pillar Four Pillar Five Pillar Six Resources Show sub menu Actions Taken File a Complaint Policies & Reports Hiring Process Training Community Outreach Mayor’s Priorities Join MPD -3450,https://www.miami-police.org/SOPs/MPD%20SOPs%20-%20BookMarks%20-%20Copy/2%20ADM/5%20TRAINING/Training%20and%20Personnel%20Development%20Section.pdf,Policies & Contracts,Info About Agencies,"","",404,"","","","","","","","" -3451,https://www.minneapolismn.gov/government/government-data/datasource/office-of-police-conduct-review-dashboard/,Complaints & Misconduct,Info About Officers,Office of Police Conduct Review Data Portal - City of Minneapolis,You can use this dashboard to track police misconduct claims and cases.,200,City of Minneapolis,"[""Office of Police Conduct Review data dashboard"", ""Need help? We're here for you.""]","[""Police conduct review dashboard"", ""How to use the dashboard"", ""Contact us""]","[""Request accessible format"", ""Search the data"", ""Read the Data"", ""Office of Police Conduct Review""]",[],[],[],"" -3452,https://www.mesaazpolice.gov/home/showpublisheddocument/44518/637805421431100000,Officer Involved Shootings,Police & Public Interactions,"","",-1,"","","","","","","","" -3453,https://www.montgomerycountymd.gov/pol/data/weekly-crime-summaries.html,Crime Statistics,Agency-Published Resources,"Weekly Crime Summaries page, Montgomery County Police Department, Montgomery County, MD","",200," - Montgomery County Maryland -",[],"[""Weekly Crime Summaries""]","[""2023-2024 Weekly Crime Summaries"", """"]","[""January"", ""February"", ""March"", ""April"", ""May"", ""June"", ""July"", ""August"", ""September"", ""October"", ""November"", ""December"", ""POLICE CONTACTS"", ""FOR CRIME SOLVERS"", ""DISTRICTS"", ""RESOURCES"", ""FOLLOW US"", ""STAY INFORMED""]",[],[],"Skip to main content County Web Accessibility information including Alternative Format Requests for Disabled Users are provided on this page. An official website of Montgomery County, Maryland An official website of Montgomery County, Maryland MC311 Montgomery County Department of Police Search String Search × Translate Site Home About Office of the Chief Districts Bureaus How Do I? Public Safety Data Join Our Team Contact Us Weekly Crime Summaries A weekly crime summary is provided by the Police Department to serve as an overview of incidents reported in the county. Please note that a summary does not reflect every reported incident in the county. For the most up-to-date information on crime in the County, visit Data Montgomery. Note: For archived weekly summaries please contact the Public Information Office by email at: MCPD_PIO@montgomerycountymd.gov 2023-2024 Weekly Crime Summaries January Crime Summary - 12/31/23 to 01/06/24 Crime Summary - 01/07/24 to 01/13/24 Crime Summary - 01/14/24 to 01/20/24 Crime Summary - 01/21/24 to 01/27/24 Crime Summary - 01/28/24 to 02/03/24 February Crime Summary - 02/04/24 to 02/10/24 Crime Summary - 02/11/24 to 02/17/24 Crime Summary - 02/18/24 to 02/24/24 Crime Summary - 02/25/24 to 03/02/24 March Crime Summary - 03/03/24 to 03/09/24 Crime Summary - 03/10/24 to 03/16/24 April May June July August September October November December Montgomery County Police Department Public Safety Headquarters 100 Edison Park Drive · Gaithersburg, MD 20878 Non-emergency: 301-279-8000 POLICE CONTACTS For Emergencies: Call 911 Non-emergency: 301-279-8000 FOR CRIME SOLVERS Anonymous Call: 1-866-411-8477 Submit Crime Tips DISTRICTS 1D Rockville 2D Bethesda 3D Silver Spring 4D Wheaton 5D Germantown 6D Montgomery Village RESOURCES Department Policies MCP Alumni Language Bank FOLLOW US Facebook Twitter YouTube Instagram STAY INFORMED News Releases Performance Stats Community Policing MontgomeryCountyMD.GOV Privacy Policy | User Rights | Accessibility | Social Media Policy | County Code | Language Translations © Copyright 2024. Montgomery County Government. | All Rights Reserved Go Top County Web Accessibility information including Alternative Format Requests for Disabled Users are provided on this page. An official website of Montgomery County, Maryland An official website of Montgomery County, Maryland MC311 Montgomery County Department of Police Search String Search × Translate Site Home About Office of the Chief Districts Bureaus How Do I? Public Safety Data Join Our Team Contact Us An official website of Montgomery County, Maryland An official website of Montgomery County, Maryland MC311 An official website of Montgomery County, Maryland An official website of Montgomery County, Maryland MC311 Montgomery County Department of Police Search String Search Montgomery County Department of Police Search String Search Montgomery County Department of Police Montgomery County Department of Police Search String Search Search String Search Search String Search Search String Search Search String Search × Translate Site Home About Office of the Chief Districts Bureaus How Do I? Public Safety Data Join Our Team Contact Us × Translate Site Home About Office of the Chief Districts Bureaus How Do I? Public Safety Data Join Our Team Contact Us Translate " -3454,https://city.milwaukee.gov/Directory/police/Crime-Maps-and-Statistics.htm#.Xt6WOzpKhPY,Crime Maps & Reports,Agency-Published Resources,"","",403,"","","","","","","","" -3455,https://www.miamigov.com/My-Government/Departments/Civilian-Investigative-Panel-CIP,Complaints & Misconduct,Info About Officers,Civilian Investigative Panel (CIP) - Miami,The Civilian Investigative Panel (CIP) provides for independent and impartial citizens’ oversight of the Miami Police Department.,200,Home - Miami,"[""Civilian Investigative Panel (CIP)"", ""Top Services"", ""Process""]","[""File a Complaint Against a Miami Police Officer"", ""Join the Community-Police Mediation Program"", ""Department Head"", ""What We Do"", ""Staff"", ""Panel Members"", ""Investigations"", ""Community-Police Mediation Program"", ""Reports and Data"", ""Contact Us"", ""Meetings & Agendas"", ""Filing a Complaint"", ""Apply to be a Member""]","[""Rodney Jacobs"", ""Filing a Complaint"", ""Phone"", ""Email"", ""Location"", ""Contact Us"", ""Share & Connect"", ""Visit Other Miami Sites"", ""Digital Cities""]",[],[],[],opens in new tab or window -3456,https://opendata.minneapolismn.gov/,List of Data Sources,Info About Agencies,Open Minneapolis,Open Minneapolis,200,Open Minneapolis,[],[],[],[],[],[],"" -3457,https://www.minneapolismn.gov/government/departments/police/#contacts-88640,Contact Info & Agency Meta,Info About Agencies,Police - City of Minneapolis,We in the Minneapolis Police Department gain our authority from the community. We recognize that public safety is not just the absence of crime but the presence of justice.,200,City of Minneapolis,"[""Police Department"", ""Need help? We're here for you.""]","[""A snow emergency is not currently in effect. Normal parking rules apply."", ""Join the Minneapolis Police Department"", ""I want to"", ""Explore this section"", ""Staff and volunteers"", ""Bureaus"", ""Related programs and initiatives"", ""Stay Informed"", ""Related links"", ""Access to police services"", ""Report an issue"", ""Contact us""]","[""Read and give feedback on police policies"", ""File an online police report"", ""Apply for a police job"", ""Minneapolis police precincts"", ""Police auctions"", ""Reclaim property"", ""Gun permits"", ""Policy and Procedure Manual"", ""Oath of Office"", ""Police chief and administration"", ""Crime prevention specialists"", ""Chaplains"", ""Police Reserve"", ""Investigations"", ""Patrol"", ""Professional Standards"", ""National Night Out"", ""Police Explorers"", ""U and T visa"", ""Women's Leadership Academy"", ""View data and reports"", ""File online"", ""View resources"", ""Minneapolis Police Department"", ""Connect with the Minneapolis Police Department""]",[],[],[],"" -3458,https://memphispolice.org/MPD-Policy-and-Procedures-Manual-Revised-1-2020.pdf,Policies & Contracts,Info About Agencies,"","",200,"","","","","","","","" -3459,https://data.memphistn.gov/,List of Data Sources,Info About Agencies,Memphis Data Hub,"",200,Memphis Data Hub,"[""""]","[""Menu"", ""Your City At Work"", ""Featured Data Stories"", ""Additional Resources""]",[],[],[],[],Skip to main content Skip to footer links Sign In COVID-19 Updates Home About User Guide Resources Memphis Data Hub Guide Additional Data Sources Suggest a Dataset Request a Workshop Contact Us Submit a FOIA Request Socrata Knowledge Base Socrata Video Tutorials Socrata Developer Resources Open Data Apps Performance Public Safety Open 311 Civic Assets Capital Improvement Projects Data Catalog Menu Menu Close COVID-19 Updates Home About User Guide Resources Memphis Data Hub Guide Additional Data Sources Suggest a Dataset Request a Workshop Contact Us Submit a FOIA Request Socrata Knowledge Base Socrata Video Tutorials Socrata Developer Resources Open Data Apps Performance Public Safety Open 311 Civic Assets Capital Improvement Projects Data Catalog Sign In Search Your City At Work Public Safety Open 311 Civic Assets Capital Projects HCD Investment Featured Data Stories Previous Slide EMS: Proactive Care Response Street Maintenance See All Data Stories Civic Data Hackathon Eliminating Overdue Fines 911 Answer Time Fire Hydrant Maintenance Improving Solid Waste Animal Save Rate EMS: Proactive Care Response Street Maintenance See All Data Stories Civic Data Hackathon Eliminating Overdue Fines 911 Answer Time Fire Hydrant Maintenance Improving Solid Waste Animal Save Rate EMS: Proactive Care Response Street Maintenance See All Data Stories Next Slide go to slide 1 go to slide 2 go to slide 3 Additional Resources Performance Dashboard Data Catalog Contact Us Sign In COVID-19 Updates Home About User Guide Resources Memphis Data Hub Guide Additional Data Sources Suggest a Dataset Request a Workshop Contact Us Submit a FOIA Request Socrata Knowledge Base Socrata Video Tutorials Socrata Developer Resources Open Data Apps Performance Public Safety Open 311 Civic Assets Capital Improvement Projects Data Catalog Menu Menu Close COVID-19 Updates Home About User Guide Resources Memphis Data Hub Guide Additional Data Sources Suggest a Dataset Request a Workshop Contact Us Submit a FOIA Request Socrata Knowledge Base Socrata Video Tutorials Socrata Developer Resources Open Data Apps Performance Public Safety Open 311 Civic Assets Capital Improvement Projects Data Catalog Sign In Search Your City At Work Public Safety Open 311 Civic Assets Capital Projects HCD Investment Featured Data Stories Previous Slide EMS: Proactive Care Response Street Maintenance See All Data Stories Civic Data Hackathon Eliminating Overdue Fines 911 Answer Time Fire Hydrant Maintenance Improving Solid Waste Animal Save Rate EMS: Proactive Care Response Street Maintenance See All Data Stories Civic Data Hackathon Eliminating Overdue Fines 911 Answer Time Fire Hydrant Maintenance Improving Solid Waste Animal Save Rate EMS: Proactive Care Response Street Maintenance See All Data Stories Next Slide go to slide 1 go to slide 2 go to slide 3 Additional Resources Performance Dashboard Data Catalog Contact Us -3460,https://city.milwaukee.gov/police/About-MPD/Code-of-Conduct,Policies & Contracts,Info About Agencies,"","",403,"","","","","","","","" -3461,https://public.powerdms.com/MESAPD/tree/documents/2234408,Policies & Contracts,Info About Agencies,Public Documents Directory - undefined - PowerDMS,"",200,PowerDMS,[],[],[],[],[],[],Powered by Powered by Powered by Powered by Powered by Powered by Powered by Powered by -3463,https://www.memphistn.gov/government/police-department/,Contact Info & Agency Meta,Info About Agencies,"","",404,"","","","","","","","" -3465,https://reimagine.memphistn.gov/wp-content/uploads/sites/70/2020/06/Memphis-Police-Department-Policy-and-Procedure-2020.pdf,Policies & Contracts,Info About Agencies,"","",200,"","","","","","","","" -3466,https://www2.minneapolismn.gov/government/departments/civil-rights/opcr/case-information/,Complaints & Misconduct,Info About Officers,"","",404,"","","","","","","","" -3467,https://joinmpd.com/the-police-academy/,Policies & Contracts,Info About Agencies,"","",404,"","","","","","","","" -3468,https://data.milwaukee.gov/dataset/callcenterdatacurrent/resource/bf2b508a-5bfa-49da-8846-d87ffeee020a,Calls for Service,Police & Public Interactions,Call Center Data (Current) - CSV - City of Milwaukee Open Data Portal,"",200,Welcome - City of Milwaukee Open Data Portal ,"[""Milwaukee Open Data"", ""CSV""]","[""Resources"", ""Social"", ""Data Dictionary"", ""Additional Information""]","[""Dataset description:"", ""Embed resource view""]",[],[],[],"Skip to content Log in Register Contact City of Milwaukee Log in Register Contact City of Milwaukee City of Milwaukee Toggle navigation Milwaukee Open Data City of Milwaukee Open Data Portal Home Datasets Organizations Groups About Help Search Datasets Toggle navigation Milwaukee Open Data City of Milwaukee Open Data Portal Milwaukee Open Data City of Milwaukee Open Data Portal Home Datasets Organizations Groups About Help Search Datasets Search Datasets Home Organizations Information Technology and... Call Center Data (Current) CSV Download CSV TSV JSON XML Data API CSV URL: https://data.milwaukee.gov/dataset/a418ffb4-ce90-4a11-a489-d256a3e68a8b/resource/bf2b508a-5bfa-49da-8846-d87ffeee020a/download/callcenterdatacurrent.csv Dataset description: Update Frequency: Daily -For up to date information on service requests please visit, https://city.milwaukee.gov/ucc . -A log of the Unified Call Center's service requests. -From potholes,... Source: Call Center Data (Current) Data Table Fullscreen Embed Add Filter This resource view is not available at the moment. Click here for more information. Download resource Your browser does not support iframes. Resources CSV JSON XML Social Twitter Facebook Linkedin Data Dictionary Column Type Label Description CREATIONDATE text OBJECTDESC text TITLE text CLOSEDDATETIME text CASECLOSUREREASONDESCRIPTION text Additional Information Field Value Data last updated March 25, 2024 Metadata last updated March 25, 2024 Created September 18, 2018 Format CSV License Creative Commons Attribution Created 6 years ago Media type text/csv Size 63,536,529 Ckan url https://data.milwaukee.gov Datastore active True Datastore contains all records of source file True Has views True Hash 3270ea2e4f8c6240601dd2baa515d9f8 Id bf2b508a-5bfa-49da-8846-d87ffeee020a On same domain True Original url https://data.milwaukee.gov/dataset/a418ffb4-ce90-4a11-a489-d256a3e68a8b/resource/bf2b508a-5bfa-49da-8846-d87ffeee020a/download/callcenterdatacurrent.csv Package id a418ffb4-ce90-4a11-a489-d256a3e68a8b Resource id bf2b508a-5bfa-49da-8846-d87ffeee020a State active Task created 2024-03-25 08:50:18.493124 Url type upload Show more Hide Home Organizations Information Technology and... Call Center Data (Current) CSV Download CSV TSV JSON XML Data API CSV URL: https://data.milwaukee.gov/dataset/a418ffb4-ce90-4a11-a489-d256a3e68a8b/resource/bf2b508a-5bfa-49da-8846-d87ffeee020a/download/callcenterdatacurrent.csv Dataset description: Update Frequency: Daily -For up to date information on service requests please visit, https://city.milwaukee.gov/ucc . -A log of the Unified Call Center's service requests. -From potholes,... Source: Call Center Data (Current) Data Table Fullscreen Embed Add Filter This resource view is not available at the moment. Click here for more information. Download resource Your browser does not support iframes. Resources CSV JSON XML Social Twitter Facebook Linkedin Data Dictionary Column Type Label Description CREATIONDATE text OBJECTDESC text TITLE text CLOSEDDATETIME text CASECLOSUREREASONDESCRIPTION text Additional Information Field Value Data last updated March 25, 2024 Metadata last updated March 25, 2024 Created September 18, 2018 Format CSV License Creative Commons Attribution Created 6 years ago Media type text/csv Size 63,536,529 Ckan url https://data.milwaukee.gov Datastore active True Datastore contains all records of source file True Has views True Hash 3270ea2e4f8c6240601dd2baa515d9f8 Id bf2b508a-5bfa-49da-8846-d87ffeee020a On same domain True Original url https://data.milwaukee.gov/dataset/a418ffb4-ce90-4a11-a489-d256a3e68a8b/resource/bf2b508a-5bfa-49da-8846-d87ffeee020a/download/callcenterdatacurrent.csv Package id a418ffb4-ce90-4a11-a489-d256a3e68a8b Resource id bf2b508a-5bfa-49da-8846-d87ffeee020a State active Task created 2024-03-25 08:50:18.493124 Url type upload Show more Hide Home Organizations Information Technology and... Call Center Data (Current) CSV " -3469,https://opendata.minneapolismn.gov/datasets/police-use-of-force/explore ,Use of Force Reports,Police & Public Interactions,Police Use of Force,Police Use of Force Stats,200,Open Minneapolis,[],[],[],[],[],[],"" -3470,https://city.milwaukee.gov/police/Contact-MPD,Contact Info & Agency Meta,Info About Agencies,"","",403,"","","","","","","","" -3471,https://www.nashville.gov/departments/police/data-dashboard/ucr-incidents-map,Crime Maps & Reports,Agency-Published Resources,Police Data Dashboard: Uniform Crime Reporting Incidents Map | Nashville.gov,Official website of the Metropolitan Government of Nashville and Davidson County.,200,Attention Required! | Cloudflare,"[""Police Data Dashboard: Uniform Crime Reporting Incidents Map""]","[""Breadcrumb"", ""Related Tags"", ""Mobile Apps"", ""Nashville.gov"", ""Quick Links"", ""Contact"", ""Connect""]","[""Search Metropolitan Nashville Police Department""]",[],[],[],Close Search Metropolitan Nashville Police Department Close Search Metropolitan Nashville Police Department Close Search Metropolitan Nashville Police Department -3472,https://data.nashville.gov/Police/Metro-Nashville-Police-Department-Incidents/2u6v-ujjs,Crime Statistics,Agency-Published Resources,Metro Nashville Police Department Incidents | Nashville Open Data Portal,"",200,Nashville | Open Data | Nashville Open Data Portal,"[""Manage Featured Content""]","[""Menu"", ""Access this Dataset via OData"", ""Metro Nashville Police Department Incidents"", ""About this Dataset"", ""What's in this Dataset?"", ""Columns in this Dataset"", ""Dataset Changelog"", ""Metro Nashville Police Department Incidents"", ""Open this dataset in Carto?"", ""Open this dataset in Plot.ly?"", ""Send a Message to the Owner of this Dataset"", ""Featured Content""]","[""Attachments"", ""Topics"", ""Licensing and Attribution""]",[],[],"[""OData Endpoint""]",Skip to Main Content Search Home BETA Open Data Portal Catalog Suggest Datasets Data Policy Developers Help Other Resources Nashville.gov Open Data Documentation About Data.Nashville.gov Sign In Menu Menu Close Home BETA Open Data Portal Catalog Suggest Datasets Data Policy Developers Help Other Resources Nashville.gov Open Data Documentation About Data.Nashville.gov Sign In Search Search Home BETA Open Data Portal Catalog Suggest Datasets Data Policy Developers Help Other Resources Nashville.gov Open Data Documentation About Data.Nashville.gov Sign In Menu Search Search Search Search Home BETA Open Data Portal Catalog Suggest Datasets Data Policy Developers Help Other Resources Nashville.gov Open Data Documentation About Data.Nashville.gov Sign In Menu Home BETA Open Data Portal Catalog Suggest Datasets Data Policy Developers Help Other Resources Nashville.gov Open Data Documentation About Data.Nashville.gov Sign In Menu Home BETA Open Data Portal Catalog Suggest Datasets Data Policy Developers Help Other Resources Nashville.gov Open Data Documentation About Data.Nashville.gov Home BETA Open Data Portal Catalog Suggest Datasets Data Policy Developers Help Other Resources Nashville.gov Open Data Documentation About Data.Nashville.gov Other Resources Nashville.gov Open Data Documentation About Data.Nashville.gov Other Resources Nashville.gov Open Data Documentation About Data.Nashville.gov Sign In Sign In Menu Close Home BETA Open Data Portal Catalog Suggest Datasets Data Policy Developers Help Other Resources Nashville.gov Open Data Documentation About Data.Nashville.gov Sign In Search Home BETA Open Data Portal Catalog Suggest Datasets Data Policy Developers Help Other Resources Nashville.gov Open Data Documentation About Data.Nashville.gov Sign In Search Home BETA Open Data Portal Catalog Suggest Datasets Data Policy Developers Help Other Resources Nashville.gov Open Data Documentation About Data.Nashville.gov Other Resources Nashville.gov Open Data Documentation About Data.Nashville.gov Sign In Search Search -3473,https://city.milwaukee.gov/ImageLibrary/Groups/mpdAuthors/SOP/270-FIELDTRAININGANDEVALUATIONPROGRAM.pdf,Policies & Contracts,Info About Agencies,"","",403,"","","","","","","","" -3474,https://data.montgomerycountymd.gov/Public-Safety/Daily-Arrests/xhwt-7h2h,Arrest Records,Police & Public Interactions,Daily Arrests | Open Data Portal,"",200,Montgomery County Data | Open Data Portal,"[""Daily Arrests - API"", ""Marijuana Arrests Count by City"", ""Test for API Download"", ""Manage Featured Content""]","[""Menu"", ""Access this Dataset via OData"", ""Daily Arrests"", ""About this Dataset"", ""What's in this Dataset?"", ""Columns in this Dataset"", ""Dataset Changelog"", ""Daily Arrests"", ""Open this dataset in Carto?"", ""Open this dataset in Plot.ly?"", ""Send a Message to the Owner of this Dataset"", ""Featured Content""]","[""Dataset Information"", ""Topics"", ""Licensing and Attribution"", ""Oops, something isn't right.""]",[],[],"[""OData Endpoint""]",Skip to Main Content data.Montgomerycountymd.gov Search Data Catalog Suggest a Dataset Open Budget Operating Budget Publication CIP Budget Publication spendingMontgomery CountyStat Videos and Resources dataMontgomery Overview Filtering a dataset Sorting a dataset Using the visualization tool Video Guides Developer Resources About Open Montgomery Open Government Legislation Open Data Operations Manual Open Data Implementation Plan Sign In Menu Menu Close Data Catalog Suggest a Dataset Open Budget Operating Budget Publication CIP Budget Publication spendingMontgomery CountyStat Videos and Resources dataMontgomery Overview Filtering a dataset Sorting a dataset Using the visualization tool Video Guides Developer Resources About Open Montgomery Open Government Legislation Open Data Operations Manual Open Data Implementation Plan Sign In Search data.Montgomerycountymd.gov Search Data Catalog Suggest a Dataset Open Budget Operating Budget Publication CIP Budget Publication spendingMontgomery CountyStat Videos and Resources dataMontgomery Overview Filtering a dataset Sorting a dataset Using the visualization tool Video Guides Developer Resources About Open Montgomery Open Government Legislation Open Data Operations Manual Open Data Implementation Plan Sign In Menu data.Montgomerycountymd.gov Search data.Montgomerycountymd.gov Search Search Search Data Catalog Suggest a Dataset Open Budget Operating Budget Publication CIP Budget Publication spendingMontgomery CountyStat Videos and Resources dataMontgomery Overview Filtering a dataset Sorting a dataset Using the visualization tool Video Guides Developer Resources About Open Montgomery Open Government Legislation Open Data Operations Manual Open Data Implementation Plan Sign In Menu Data Catalog Suggest a Dataset Open Budget Operating Budget Publication CIP Budget Publication spendingMontgomery CountyStat Videos and Resources dataMontgomery Overview Filtering a dataset Sorting a dataset Using the visualization tool Video Guides Developer Resources About Open Montgomery Open Government Legislation Open Data Operations Manual Open Data Implementation Plan Sign In Menu Data Catalog Suggest a Dataset Open Budget Operating Budget Publication CIP Budget Publication spendingMontgomery CountyStat Videos and Resources dataMontgomery Overview Filtering a dataset Sorting a dataset Using the visualization tool Video Guides Developer Resources About Open Montgomery Open Government Legislation Open Data Operations Manual Open Data Implementation Plan Data Catalog Suggest a Dataset Open Budget Operating Budget Publication CIP Budget Publication spendingMontgomery CountyStat Videos and Resources dataMontgomery Overview Filtering a dataset Sorting a dataset Using the visualization tool Video Guides Developer Resources About Open Montgomery Open Government Legislation Open Data Operations Manual Open Data Implementation Plan Open Budget Operating Budget Publication CIP Budget Publication Open Budget Operating Budget Publication CIP Budget Publication Videos and Resources dataMontgomery Overview Filtering a dataset Sorting a dataset Using the visualization tool Video Guides Developer Resources Videos and Resources dataMontgomery Overview Filtering a dataset Sorting a dataset Using the visualization tool Video Guides Developer Resources About Open Montgomery Open Government Legislation Open Data Operations Manual Open Data Implementation Plan About Open Montgomery Open Government Legislation Open Data Operations Manual Open Data Implementation Plan Sign In Sign In -3475,https://public.powerdms.com/MESAPD/tree/documents/266424,Policies & Contracts,Info About Agencies,Public Documents Directory - undefined - PowerDMS,"",200,PowerDMS,[],[],[],[],[],[],Powered by Powered by Powered by Powered by Powered by Powered by Powered by Powered by -3476,https://www.montgomerycountymd.gov/pol/data/use-of-force-report.html,Use of Force Reports,Police & Public Interactions,"Use of force report page, MCPD, Montgomery County, MD","",200," - Montgomery County Maryland -",[],"[""Use of Force Reports""]",[],"[""POLICE CONTACTS"", ""FOR CRIME SOLVERS"", ""DISTRICTS"", ""RESOURCES"", ""FOLLOW US"", ""STAY INFORMED""]",[],[],"Skip to main content County Web Accessibility information including Alternative Format Requests for Disabled Users are provided on this page. An official website of Montgomery County, Maryland An official website of Montgomery County, Maryland MC311 Montgomery County Department of Police Search String Search × Translate Site Home About Office of the Chief Districts Bureaus How Do I? Public Safety Data Join Our Team Contact Us Use of Force Reports 2022 Annual Use of Force Report 2021 Annual Use of Force Report 2020 Annual Use of Force Report 2019 Annual Use of Force Report 2018 Annual Use of Force Report 2017 Annual Use of Force Report 2016 Annual Use of Force Report 2015 Annual Use of Force Report 2014 Annual Use of Force Report Montgomery County Police Department Public Safety Headquarters 100 Edison Park Drive · Gaithersburg, MD 20878 Non-emergency: 301-279-8000 POLICE CONTACTS For Emergencies: Call 911 Non-emergency: 301-279-8000 FOR CRIME SOLVERS Anonymous Call: 1-866-411-8477 Submit Crime Tips DISTRICTS 1D Rockville 2D Bethesda 3D Silver Spring 4D Wheaton 5D Germantown 6D Montgomery Village RESOURCES Department Policies MCP Alumni Language Bank FOLLOW US Facebook Twitter YouTube Instagram STAY INFORMED News Releases Performance Stats Community Policing MontgomeryCountyMD.GOV Privacy Policy | User Rights | Accessibility | Social Media Policy | County Code | Language Translations © Copyright 2024. Montgomery County Government. | All Rights Reserved Go Top County Web Accessibility information including Alternative Format Requests for Disabled Users are provided on this page. An official website of Montgomery County, Maryland An official website of Montgomery County, Maryland MC311 Montgomery County Department of Police Search String Search × Translate Site Home About Office of the Chief Districts Bureaus How Do I? Public Safety Data Join Our Team Contact Us An official website of Montgomery County, Maryland An official website of Montgomery County, Maryland MC311 An official website of Montgomery County, Maryland An official website of Montgomery County, Maryland MC311 Montgomery County Department of Police Search String Search Montgomery County Department of Police Search String Search Montgomery County Department of Police Montgomery County Department of Police Search String Search Search String Search Search String Search Search String Search Search String Search × Translate Site Home About Office of the Chief Districts Bureaus How Do I? Public Safety Data Join Our Team Contact Us × Translate Site Home About Office of the Chief Districts Bureaus How Do I? Public Safety Data Join Our Team Contact Us Translate Use of Force Reports 2022 Annual Use of Force Report 2021 Annual Use of Force Report 2020 Annual Use of Force Report 2019 Annual Use of Force Report 2018 Annual Use of Force Report 2017 Annual Use of Force Report 2016 Annual Use of Force Report 2015 Annual Use of Force Report 2014 Annual Use of Force Report " -3477,https://www.nashville.gov/departments/police,Contact Info & Agency Meta,Info About Agencies,Metropolitan Nashville Police Department | Nashville.gov,Official website of the Metropolitan Government of Nashville and Davidson County.,200,Attention Required! | Cloudflare,"[""Metropolitan Nashville Police Department""]","[""Breadcrumb"", ""Services"", ""Contact"", ""Featured News"", ""Police Events"", ""Highlighted Information"", ""Police Precinct Lookup"", ""Quick Links"", ""I Want To..."", ""Report Information to Police"", ""Mobile Apps"", ""Nashville.gov"", ""Quick Links"", ""Contact"", ""Connect""]","[""Search Metropolitan Nashville Police Department"", ""We're Hiring!"", ""Helpful Information"", ""Domestic Violence Division"", ""In Memoriam"", ""Enter your address"", ""Results""]",[],[],[],Close Search Metropolitan Nashville Police Department Close Search Metropolitan Nashville Police Department Close Search Metropolitan Nashville Police Department -3478,https://www.miami-police.org/DeptOrders/MPD_Departmental_Orders.pdf,Policies & Contracts,Info About Agencies,"","",200,"","","","","","","","" -3479,https://www1.nyc.gov/site/nypd/bureaus/administrative/training.page,Policies & Contracts,Info About Agencies,Training - NYPD,"",200,Welcome to NYC.gov | City of New York,"[""Training""]","[""New York's Finest"", ""NYPD Police Academy"", ""Other Training Sections"", """"]",[],[],[],[],"New York City Police Department 311 Search all NYC.gov websites Menu New York's Finest Text-Size Translate This Page Search New York's Finest Home About Bureaus Services Stats Media Careers Policies Language English Afrikaans Albanian Amharic Arabic Armenian Azerbaijani Basque Belarusian Bengali Bosnian Bulgarian Catalan Cebuano Chichewa Chinese (Simplified) Chinese (Traditional) Corsican Croatian Czech Danish Dutch Esperanto Estonian Filipino Finnish French Frisian Galician Georgian German Greek Gujarati Hausa Haitian Creole Hawaiian Hebrew Hindi Hmong Hungarian Icelandic Igbo Indonesian Irish Italian Japanese Javanese Kannada Kazakh Khmer Korean Kurdish (Kurmanji) Kyrgyz Lao Latin Latvian Lithuanian Luxembourgish Macedonian Malagasy Malay Malayalam Maltese Maori Marathi Mongolian Myanmar (Burmese) Nepali Norwegian Pashto Persian Polish Portuguese Punjabi Romanian Russian Samoan Scots Gaelic Serbian Sesotho Shona Sindhi Sinhala Slovak Slovenian Somali Spanish Sundanese Swahili Swedish Tajik Tamil Telugu Thai Turkish Ukrainian Urdu Uzbek Vietnamese Welsh Xhosa Yiddish Yoruba Zulu Apply Translation Search Search Patrol Transit, Housing & Transportation Investigative Administrative Select Collaborative Policing Community Affairs Employee Relations Equity and Inclusion Information Technology Legal Personnel Public Information Risk Management Strategic Initiatives Support Services Training Trials Collaborative Policing Community Affairs Employee Relations Equity and Inclusion Information Technology Legal Personnel Public Information Risk Management Strategic Initiatives Support Services Training Trials Share Print Training Chief of Training : Olufunmilola Obe Follow @NYPDTraining The NYPD Training Bureau provides recruits, uniformed officers, and civilians with the most up-to-date academic, tactical, and technological information available, transforming them into the best trained, most prepared law enforcement professionals in the nation. From counterterrorism training to training on working with the city's diverse communities, to career development for civilian executives and management-level employees, the bureau provides the highest level of instruction to all members of the service and supports their ability to protect the life, property, and dignity of all New Yorkers, workers, and visitors. The Training Bureau oversees department training and educational programs, mainly through the NYPD Police Academy, located on the 32-acre Queens campus. NYPD Police Academy The Police Academy educates, prepares, and inspires recruits, in-service uniformed members, and civilians, molding top law enforcement professionals. It is an accredited public safety training academy through the Commission on Accreditation for Law Enforcement Agencies, Inc. (CALEA) Other Training Sections The Training Bureau's training section includes: Recruit Training Section Specialized Training Section Firearms and Tactics Section Leadership Training Section School Safety Training Unit Traffic Enforcement Training Unit Police Cadet Corps Directory of City Agencies Contact NYC Government City Employees Notify NYC CityStore Stay Connected NYC Mobile Apps Maps Resident Toolkit NYC Search Search City of New York. 2024 All Rights Reserved, NYC is a trademark and service mark of the City of New York Privacy Policy. Terms of Use. " -3480,https://nola.gov/getattachment/NOPD/Policies/Chapter-12-1-Department-Operations-Manual-EFFECTIVE-1-14-18.pdf/,Policies & Contracts,Info About Agencies,"","",200,"","","","","","","","" -3481,https://www.oaklandca.gov/departments/police#page-contact ,Contact Info & Agency Meta,Info About Agencies,City of Oakland | Police,"The official website of the City of Oakland. Find out about meetings, request City services through OAK 311, or contact the Mayor and City Council.",200,Error retrieving title: dictionary changed size during iteration,"[""Police""]","[""News"", ""Services"", ""Resources"", ""Topics"", ""Leadership"", ""Darren Allison"", ""Contact Us""]","[""Search oaklandca.gov"", ""Popular on oaklandca.gov"", ""Five Arrested in Connection to a Crime Spree"", ""OPD’s Violence Suppression Deemed Fruitful"", ""Public Safety Advisory: OPD Responds to Uptick in Robberies"", ""Address"", ""Phone Numbers""]",[],"[""Your Government"", ""How can we help?"", ""Sign up for updates""]",[],"Official Website for the City of Oakland | Mayor Sheng Thao English Español 中文 Tiếng Việt | Translate اَلْعَرَبِيَّةُ Hmoob Cebuano 日本語 ភាសាខ្មែរ 中文 汉语 한국어 English монгол Filipino Español Tiếng Việt Official Website for the City of Oakland | Mayor Sheng Thao English Español 中文 Tiếng Việt | Translate اَلْعَرَبِيَّةُ Hmoob Cebuano 日本語 ភាសាខ្មែរ 中文 汉语 한국어 English монгол Filipino Español Tiếng Việt Home Services Services Find City Services See All Services Animals Activities & Recreation Building Business City Government Employment & Training Housing Parking, Streets & Sidewalks Public Safety & Emergency Services Social Services Apply for a Permit Report a Problem Departments Departments Frequently Visited Departments See All Departments Animal Services Economic & Workforce Development Fire Housing & Community Development Human Services Public Library Parks, Recreation & Youth Development Planning & Building Police Public Works Transportation (OakDOT) Violence Prevention My Government My Government About Your Government Departments Mayor's Office City Council Boards & Commissions City Jobs Contracting Opportunities Public Meetings Community Events Newsroom Oakland Municipal Code search icon Created with Sketch. Search oaklandca.gov Search? search icon Created with Sketch. Popular on oaklandca.gov Report a Problem Online with Oak311 Apply for a Permit Apply for City Jobs Parking Services Adopt a Pet Apply for or Renew Business Tax Mobile Menu Services Animals Activities & Recreation Building Business City Government Employment & Training Housing Parking, Streets & Sidewalks Public Safety & Emergency Services Social Services Apply for a Permit Report a Problem See All Services Departments My Government Departments Mayor's Office City Council Boards & Commissions City Jobs Contracting Opportunities Public Meetings Community Events Newsroom Oakland Municipal Code Home Services Services Find City Services See All Services Animals Activities & Recreation Building Business City Government Employment & Training Housing Parking, Streets & Sidewalks Public Safety & Emergency Services Social Services Apply for a Permit Report a Problem Departments Departments Frequently Visited Departments See All Departments Animal Services Economic & Workforce Development Fire Housing & Community Development Human Services Public Library Parks, Recreation & Youth Development Planning & Building Police Public Works Transportation (OakDOT) Violence Prevention My Government My Government About Your Government Departments Mayor's Office City Council Boards & Commissions City Jobs Contracting Opportunities Public Meetings Community Events Newsroom Oakland Municipal Code search icon Created with Sketch. Search oaklandca.gov Search? search icon Created with Sketch. Popular on oaklandca.gov Report a Problem Online with Oak311 Apply for a Permit Apply for City Jobs Parking Services Adopt a Pet Apply for or Renew Business Tax Mobile Menu Services Animals Activities & Recreation Building Business City Government Employment & Training Housing Parking, Streets & Sidewalks Public Safety & Emergency Services Social Services Apply for a Permit Report a Problem See All Services Departments My Government Departments Mayor's Office City Council Boards & Commissions City Jobs Contracting Opportunities Public Meetings Community Events Newsroom Oakland Municipal Code " -3482,https://www1.nyc.gov/site/nypd/stats/reports-analysis/firearms-discharge.page,Officer Involved Shootings,Police & Public Interactions,Use of Force/Firearms Discharge Data Tables - NYPD,Annual Use of Force/Firearms Discharge Report Data Tables,200,Welcome to NYC.gov | City of New York,"[""Annual Use of Force/Firearms Discharge Report Data Tables""]","[""New York's Finest"", ""Annual Report Data Tables"", ""Excessive Use of Force Report"", """"]","[""2023"", ""2021"", ""2020"", ""2019"", ""2018"", ""2017"", ""2016"", ""2015"", ""2011-2014""]",[],[],[],"" -3483,https://www.newarkpdmonitor.com/wp-content/uploads/2019/04/Use-of-Force-Policy.pdf,Policies & Contracts,Info About Agencies,"","",200,"","","","","","","","" -3484,https://npd.newarkpublicsafety.org/statistics/transparency,Use of Force Reports,Police & Public Interactions,"","",404,"","","","","","","","" -3485,https://data.nola.gov/Public-Safety-and-Preparedness/NOPD-Misconduct-Complaints/gz2m-ef5u,Complaints & Misconduct,Info About Officers,NOPD Misconduct Complaints | Data.NOLA.gov,"",200,Error retrieving title: dictionary changed size during iteration,"[""Manage Featured Content""]","[""Menu"", ""Access this Dataset via OData"", ""NOPD Misconduct Complaints"", ""About this Dataset"", ""What's in this Dataset?"", ""Columns in this Dataset"", ""Dataset Changelog"", ""NOPD Misconduct Complaints"", ""Open this dataset in Carto?"", ""Open this dataset in Plot.ly?"", ""Send a Message to the Owner of this Dataset"", ""Featured Content""]","[""Common Core"", ""Source Information"", ""Topics"", ""Licensing and Attribution"", ""Oops, something isn't right.""]",[],[],"[""OData Endpoint""]",Skip to Main Content Sign In Home Browse Data Data Products NOLAlytics ResultsNOLA Training Blog Dashboard Menu Menu Close Home Browse Data Data Products NOLAlytics ResultsNOLA Training Blog Dashboard Sign In Search Sign In Home Browse Data Data Products NOLAlytics ResultsNOLA Training Blog Dashboard Menu Sign In Home Browse Data Data Products NOLAlytics ResultsNOLA Training Blog Dashboard Menu Sign In Sign In Home Browse Data Data Products NOLAlytics ResultsNOLA Training Blog Dashboard Menu Close Home Browse Data Data Products NOLAlytics ResultsNOLA Training Blog Dashboard Sign In Search Home Browse Data Data Products NOLAlytics ResultsNOLA Training Blog Dashboard Sign In Search Home Browse Data Data Products NOLAlytics ResultsNOLA Training Blog Dashboard Sign In Search Search -3486,http://gisapps1.mapoakland.com/callsforservice/,Calls for Service,Police & Public Interactions,OPD Calls for Service,"",200,Microsoft Internet Information Services 8,[],[],"[""Filter by Police Beat"", ""DISCLAIMER"", ""About OPD Calls for Service""]",[],[],[],"OPD Closed Calls for Service in the last 24 hrs OPD Closed Calls for Service in the last 24 hrs Find OPD Calls for Service Counts Find OPD Calls for Service Counts Filter by Police Beat Select Police Beat All 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 If you are not sure about your police beat, you can Find Your Police Beat. Total Number of Calls: 1757 Number of Closed Calls: 1564 Number of Active Calls: 63 Number of Pending Calls: 124 Find OPD Calls for Service Counts Filter by Police Beat Select Police Beat All 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 If you are not sure about your police beat, you can Find Your Police Beat. Total Number of Calls: 1757 Number of Closed Calls: 1564 Number of Active Calls: 63 Number of Pending Calls: 124 Filter by Police Beat Select Police Beat All 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 If you are not sure about your police beat, you can Find Your Police Beat. Total Number of Calls: 1757 Number of Closed Calls: 1564 Number of Active Calls: 63 Number of Pending Calls: 124 " -3487,https://www.nola.gov/nopd/contact-us/,Contact Info & Agency Meta,Info About Agencies,NOPD - Contact Us - City of New Orleans,"",200," - Home - City of New Orleans -","[""Contact Us""]","[""General Inquiries"", ""Contact NOPD Districts"", ""Contact NOPD Specialized Units"", ""Call NOLA 311 for Quality of Life concerns"", ""Monthly District Meetings"", ""Where Y'At""]","[""Services & Information"", ""Departments"", ""Government"", ""NOLA 311"", ""News"", ""Event Calendar"", ""Data, Maps & Apps"", ""Translate""]","[""Code Enforcement & Blight"", ""Doing Business with the City"", ""Jobs"", ""Ordinances & Regulations"", ""Parking"", ""Permits & Licenses"", ""Public Records"", ""Public Safety"", ""Report a Problem"", ""Requests to the Mayor and Office"", ""Streets, Catch Basins, Streetlights, & Sidewalks"", ""Taxes"", ""Tickets and Violations"", ""Traffic & Transportation"", ""Trash & Recycling"", ""City Offices"", ""Parish Offices"", ""Boards and Commissions"", ""Request service and information"", ""Suspect Wanted For Home Invasion"", ""Suspects Wanted For Carjacking"", ""NOPD Investigating Homicide in Fifth District"", ""Suspect Wanted For Hotel Thefts"", ""NOFD Recruit Class R-03-23 Graduation"", ""MAYOR CANTRELL ISSUES STATEMENT ON LAND SWAP FOR NEW CITY HALL AND CIVIL DISTRICT COURT"", ""City of New Orleans Reminds Residents of New Area 1 and Area 4 Trash and Recycling Collection Contracts to Begin April 1"", ""Suspect Wanted For Domestic Violence"", ""Suspects Wanted For Theft"", ""Open Data"", ""Dashboards"", ""Maps & GIS"", ""Websites & Apps""]","[""Search and Find Permits"", ""Brake & Bike Tags"", ""Contractor Info For Residents"", ""Permits & Licenses"", ""Permitting Help & Support""]",[],! 2024 Tax Bills are now available! View your tax bill ! 2024 Tax Bills are now available! View your tax bill ! 2024 Tax Bills are now available! View your tax bill ! 2024 Tax Bills are now available! View your tax bill ! 2024 Tax Bills are now available! View your tax bill ! 2024 Tax Bills are now available! View your tax bill -3488,https://www.oaklandca.gov/topics/use-of-force-definitions-and-policies ,Policies & Contracts,Info About Agencies,"","",404,"","","","","","","","" -3489,https://data.nola.gov/Public-Safety-and-Preparedness/Stop-and-Search-Field-Interviews-/kitu-f4uy,Stops,Police & Public Interactions,Stop and Search (Field Interviews) | Data.NOLA.gov,"",200," - Home - DataDriven - City of New Orleans -","[""Manage Featured Content""]","[""Menu"", ""Access this Dataset via OData"", ""Stop and Search (Field Interviews)"", ""About this Dataset"", ""What's in this Dataset?"", ""Columns in this Dataset"", ""Dataset Changelog"", ""Stop and Search (Field Interviews)"", ""Open this dataset in Carto?"", ""Open this dataset in Plot.ly?"", ""Send a Message to the Owner of this Dataset"", ""Featured Content""]","[""Common Core"", ""Source Information"", ""Topics"", ""Licensing and Attribution""]",[],[],"[""OData Endpoint""]",Skip to Main Content Sign In Home Browse Data Data Products NOLAlytics ResultsNOLA Training Blog Dashboard Menu Menu Close Home Browse Data Data Products NOLAlytics ResultsNOLA Training Blog Dashboard Sign In Search Sign In Home Browse Data Data Products NOLAlytics ResultsNOLA Training Blog Dashboard Menu Sign In Home Browse Data Data Products NOLAlytics ResultsNOLA Training Blog Dashboard Menu Sign In Sign In Home Browse Data Data Products NOLAlytics ResultsNOLA Training Blog Dashboard Menu Close Home Browse Data Data Products NOLAlytics ResultsNOLA Training Blog Dashboard Sign In Search Home Browse Data Data Products NOLAlytics ResultsNOLA Training Blog Dashboard Sign In Search Home Browse Data Data Products NOLAlytics ResultsNOLA Training Blog Dashboard Sign In Search Search -3490,https://www.oaklandca.gov/departments/community-police-review-agency,Complaints & Misconduct,Info About Officers,City of Oakland | Community Police Review Agency,"The official website of the City of Oakland. Find out about meetings, request City services through OAK 311, or contact the Mayor and City Council.",200,City of Oakland | Homepage,"[""Community Police Review Agency""]","[""File a Complaint"", ""CPRA Data"", ""News"", ""Documents"", ""Leadership"", ""Mac Muir"", ""Contact Us""]","[""Search oaklandca.gov"", ""Popular on oaklandca.gov"", ""CPRA Hires Roger Smith"", ""New App Allows Oakland Community to File Complaints Against Oakland Police"", ""Oakland Residents Encouraged to Apply for Police Commission"", ""Address"", ""Phone Numbers"", ""Email Address"", ""Open Hours""]","[""Hours of Operation""]","[""Your Government"", ""How can we help?"", ""Sign up for updates""]",[],"Official Website for the City of Oakland | Mayor Sheng Thao English Español 中文 Tiếng Việt | Translate اَلْعَرَبِيَّةُ Hmoob Cebuano 日本語 ភាសាខ្មែរ 中文 汉语 한국어 English монгол Filipino Español Tiếng Việt Official Website for the City of Oakland | Mayor Sheng Thao English Español 中文 Tiếng Việt | Translate اَلْعَرَبِيَّةُ Hmoob Cebuano 日本語 ភាសាខ្មែរ 中文 汉语 한국어 English монгол Filipino Español Tiếng Việt Home Services Services Find City Services See All Services Animals Activities & Recreation Building Business City Government Employment & Training Housing Parking, Streets & Sidewalks Public Safety & Emergency Services Social Services Apply for a Permit Report a Problem Departments Departments Frequently Visited Departments See All Departments Animal Services Economic & Workforce Development Fire Housing & Community Development Human Services Public Library Parks, Recreation & Youth Development Planning & Building Police Public Works Transportation (OakDOT) Violence Prevention My Government My Government About Your Government Departments Mayor's Office City Council Boards & Commissions City Jobs Contracting Opportunities Public Meetings Community Events Newsroom Oakland Municipal Code search icon Created with Sketch. Search oaklandca.gov Search? search icon Created with Sketch. Popular on oaklandca.gov Report a Problem Online with Oak311 Apply for a Permit Apply for City Jobs Parking Services Adopt a Pet Apply for or Renew Business Tax Mobile Menu Services Animals Activities & Recreation Building Business City Government Employment & Training Housing Parking, Streets & Sidewalks Public Safety & Emergency Services Social Services Apply for a Permit Report a Problem See All Services Departments My Government Departments Mayor's Office City Council Boards & Commissions City Jobs Contracting Opportunities Public Meetings Community Events Newsroom Oakland Municipal Code Home Services Services Find City Services See All Services Animals Activities & Recreation Building Business City Government Employment & Training Housing Parking, Streets & Sidewalks Public Safety & Emergency Services Social Services Apply for a Permit Report a Problem Departments Departments Frequently Visited Departments See All Departments Animal Services Economic & Workforce Development Fire Housing & Community Development Human Services Public Library Parks, Recreation & Youth Development Planning & Building Police Public Works Transportation (OakDOT) Violence Prevention My Government My Government About Your Government Departments Mayor's Office City Council Boards & Commissions City Jobs Contracting Opportunities Public Meetings Community Events Newsroom Oakland Municipal Code search icon Created with Sketch. Search oaklandca.gov Search? search icon Created with Sketch. Popular on oaklandca.gov Report a Problem Online with Oak311 Apply for a Permit Apply for City Jobs Parking Services Adopt a Pet Apply for or Renew Business Tax Mobile Menu Services Animals Activities & Recreation Building Business City Government Employment & Training Housing Parking, Streets & Sidewalks Public Safety & Emergency Services Social Services Apply for a Permit Report a Problem See All Services Departments My Government Departments Mayor's Office City Council Boards & Commissions City Jobs Contracting Opportunities Public Meetings Community Events Newsroom Oakland Municipal Code " -3491,https://data.ci.newark.nj.us/,List of Data Sources,Info About Agencies,Welcome - Newark Open Data,"",200,Error retrieving title: dictionary changed size during iteration,"[""Newark Open Data""]","[""Groups"", ""Showcases"", ""Popular Datasets"", ""New and Recent Datasets""]","[""Search data"", ""Popular tags"", ""Newark 4311 Dashboard"", ""Newark Building Footprints Visualization"", ""City of Newark Annual Financial Report"", ""NJ/NY PATH Ridership Visualization"", ""Newark 4311 Dashboard"", ""Newark Building Footprints Visualization"", ""City of Newark Annual Financial Report"", ""NJ/NY PATH Ridership Visualization"", ""Abandoned Properties"", ""Wards"", ""Code Enforcement"", ""Newark Tax Maps"", ""New Jersey ZIP Codes Polygon"", ""Snow Plow Tracks"", ""Abandoned Properties"", ""Newark Data Dashboard"", ""Newark 4311"", ""Parcels""]",[],[],[],"Skip to content Log in Register Log in Register Toggle navigation Datasets Organizations Groups About Search Datasets Toggle navigation Datasets Organizations Groups About Search Datasets Search Datasets Newark Open Data Our mission is to promote the openness, transparency and accountability of government by providing high-value government data in standards compliant, machine readable format. This will serve as the basis for the creation of useful civic applications by third party developers. Search data Search Popular tags Newark New Jersey GIS Groups Infrastructure Government Demographics Business Education Public Safety Showcases Previous Newark 4311 Dashboard View Newark 4311 Dashboard Newark Building Footprints Visualization View Newark Building Footprints Visualization City of Newark Annual Financial Report View City of Newark Annual Financial Report NJ/NY PATH Ridership Visualization View NJ/NY PATH Ridership Visualization Newark 4311 Dashboard View Newark 4311 Dashboard Newark Building Footprints Visualization View Newark Building Footprints Visualization City of Newark Annual Financial Report View City of Newark Annual Financial Report NJ/NY PATH Ridership Visualization View NJ/NY PATH Ridership Visualization Next Popular Datasets Browse popular datasets below and see what other citizens find interesting. Abandoned Properties 36 recent views CSV Wards 35 recent views .zip GeoJSON URL Code Enforcement 34 recent views CSV Newark Tax Maps 31 recent views PDF New Jersey ZIP Codes Polygon 29 recent views GeoJSON New and Recent Datasets Browse new or modified datasets below. Click to view details or explore content. Snow Plow Tracks Updated on July 27, 2021 CSV Abandoned Properties Updated on July 27, 2021 CSV Newark Data Dashboard Updated on November 17, 2020 CSV Newark 4311 Updated on July 15, 2020 CSV Parcels Updated on May 31, 2018 ZIP XLSX .zip CSV " -3492,https://www1.nyc.gov/site/nypd/bureaus/patrol/precincts-landing.page,Contact Info & Agency Meta,Info About Agencies,Precincts - NYPD,"",200,Welcome to NYC.gov | City of New York,"[""Precincts""]","[""New York's Finest"", """"]",[],[],[],[],"" -3493,https://npd.newarkpublicsafety.org/commandstaff,Contact Info & Agency Meta,Info About Agencies,"","",404,"","","","","","","","" -3494,https://app.powerbigov.us/view?r=eyJrIjoiMzZkODc3OWYtOWY2Yy00MWZkLTg4YjEtOGZkNTRjNjYzM2Q2IiwidCI6Ijk4OWEyMTgwLTZmYmMtNDdmMS04MDMyLTFhOWVlOTY5YzU4ZCJ9&pageName=ReportSection0c973751e9159c87efbb,Arrest Records,Police & Public Interactions,Microsoft Power BI,"",200,Power BI,[],[],[],[],[],[],"" -3495,https://data.cityofnewyork.us/Public-Safety/NYPD-Arrest-Data-Year-to-Date-/uip8-fykc,Arrest Records,Police & Public Interactions,NYPD Arrest Data (Year to Date) | NYC Open Data,"",200,Error retrieving title: dictionary changed size during iteration,"[""Manage Featured Content""]","[""Menu"", ""Access this Dataset via OData"", ""NYPD Arrest Data (Year to Date)"", ""About this Dataset"", ""What's in this Dataset?"", ""Columns in this Dataset"", ""Dataset Changelog"", ""NYPD Arrest Data (Year to Date)"", ""Open this dataset in Carto?"", ""Open this dataset in Plot.ly?"", ""Send a Message to the Owner of this Dataset"", ""Featured Content""]","[""Dataset Information"", ""Update"", ""Attachments"", ""Topics""]",[],[],"[""OData Endpoint""]",Skip to Main Content Sign In Home Data About Overview Dashboard Open Data Law Learn How To Join a class Project Gallery Open Data Week Glossary FAQ Contact Us Menu Menu Close Home Data About Overview Dashboard Open Data Law Learn How To Join a class Project Gallery Open Data Week Glossary FAQ Contact Us Sign In Search Sign In Home Data About Overview Dashboard Open Data Law Learn How To Join a class Project Gallery Open Data Week Glossary FAQ Contact Us Menu Sign In Home Data About Overview Dashboard Open Data Law Learn How To Join a class Project Gallery Open Data Week Glossary FAQ Contact Us Menu Sign In Sign In Home Data About Overview Dashboard Open Data Law Learn How To Join a class Project Gallery Open Data Week Glossary FAQ Contact Us About Overview Dashboard Open Data Law About Overview Dashboard Open Data Law Learn How To Join a class Project Gallery Open Data Week Glossary FAQ Learn How To Join a class Project Gallery Open Data Week Glossary FAQ Menu Close Home Data About Overview Dashboard Open Data Law Learn How To Join a class Project Gallery Open Data Week Glossary FAQ Contact Us Sign In Search Home Data About Overview Dashboard Open Data Law Learn How To Join a class Project Gallery Open Data Week Glossary FAQ Contact Us Sign In Search Home Data About Overview Dashboard Open Data Law Learn How To Join a class Project Gallery Open Data Week Glossary FAQ Contact Us About Overview Dashboard Open Data Law Learn How To Join a class Project Gallery Open Data Week Glossary FAQ Sign In Search Search -3496,https://d2f1dfnoetc03v.cloudfront.net/Files/2021/12/ThomasBreen/6.01-Use-of-Force-2021-Final-version.pdf,Policies & Contracts,Info About Agencies,"","",200,"","","","","","","","" -3497,https://opendata.cityofnewyork.us/data/,List of Data Sources,Info About Agencies,NYC Open Data - Data,NYC Open Data helps New Yorkers use and learn about City data,200,403 Forbidden,"[""Data""]","[""New Datasets"", ""Popular Datasets"", ""Datasets by Category"", ""Datasets by Agency""]",[],[],"[""You are leaving the City of New York’s website.""]",[],"" -3498,https://npd.newarkpublicsafety.org/assets/docs/crimestats/cw/20211114.pdf,Crime Statistics,Agency-Published Resources,"","",404,"","","","","","","","" -3499,https://filetransfer.nashville.gov/portals/0/sitecontent/Police/docs/Strategic%20Development/MNPDManual.pdf,Policies & Contracts,Info About Agencies,"","",404,"","","","","","","","" -3500,https://www.newhavenct.gov/gov/depts/nhpd/division/internal_affairs/general_orders.htm,Policies & Contracts,Info About Agencies,"New Haven, CT | Home","New Haven, CT, Yale University, Things to do in New Haven, Restaurants in New Haven, New Haven attractions, Events in New Haven, New Haven nightlife, Wooster Square, Yale New Haven Hospital, East Rock Park, New Haven pizza, New Haven museums, Shopping in New Haven, New Haven history, New Haven parks, New Haven neighborhoods, Arts and Schools",200,"Error retrieving title: HTTPSConnectionPool(host='www.newhavenct.gov', port=443): Max retries exceeded with url: / (Caused by NewConnectionError('GENERAL GUIDELINES FOR RETAIL STORES - - Implementing these safety recommendations will make your business ""crime unfriendly."" Remember, most crimes are crimes of opportunity...don't allow your business to be an easy target! - - Lighting is an important factor to consider when crime-proofing your business
","[""Police Department""]","[""GENERAL GUIDELINES FOR RETAIL STORES""]","[""Mayor"", ""City Council"", ""Rex Richardson"", ""Mary Zendejas"", ""Cindy Allen"", ""Kristina Duggan"", ""Daryl Supernaw"", ""Megan Kerr"", ""Suely Saro"", ""Roberto Uranga"", ""Al Austin"", ""Dr. Joni Ricks-Oddie"", ""Dawn McIntosh"", ""Laura L. Doud"", ""Doug Haubert"", ""Tom Modica"", ""Monique DeLaGarza"", ""City-Wide Elected Officials"", ""Appointed Officials"", ""Online Payments"", ""Online Services"", ""In-Person Services"", ""Opening a Business"", ""Doing Business With The City"", ""Resources"", ""Most Popular"", ""Online Resources"", ""Attractions"", ""Business Associations"", ""Travel Resources"", ""Departments"", ""Job Opportunities"", ""Information"", ""LBPD"", ""Employment"", ""Bureaus"", ""News & Events"", ""Crime Info"", ""How Do I"", ""How Do I"", ""Contact Us"", ""How To Prevent Crime"", ""Do."", ""Discover."", ""Connect."", ""Ask.""]","["""", ""1st District"", ""2nd District"", ""3rd District"", ""4th District"", ""5th District"", ""6th District"", ""7th District"", ""8th District"", ""9th District"", ""City Attorney"", ""City Auditor"", ""City Prosecutor"", ""City Manager"", ""City Clerk""]","[""File a Report Online"", ""Submit a Tip"", ""Submit a Commendation"", ""File a Complaint"", ""Ride Along Program"", ""\u00a0"", ""\u00a0\u00a0"", ""\u00a0"", ""Crime Lab Survey"", ""\u00a0""]",[] -1343,https://alpha.austin.gov/es/police-oversight/2020-06-17-7/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1344,http://www.lafayettepolice.us/faq.aspx?qid=68,Not Criminal Justice Related,200,"FAQs • How do I dispose of large items like carpet, sinks, s","",[],"[""\n\u25bc\r\nSanitation Department\t\t""]","[""Loading"", ""Categories"", ""Live Edit"", ""Contact Us"", ""FAQs"", ""Site Links""]",[],[],[] -1345,https://www.mass.gov/info-details/audit-of-mount-wachusett-community-college-objectives-scope-and-methodology,Not Criminal Justice Related,200,"Audit of Mount Wachusett Community College Objectives, Scope, and Methodology | Mass.gov",An overview of the purpose and process of auditing Mount Wachusett Community College.,"[""\nAudit of Mount Wachusett Community College Objectives, Scope, and Methodology\n""]","[""Table of Contents\n for the audit, Audit of Mount Wachusett Community College"", ""Table of Contents"", ""Overview \n "", ""Data Reliability\n "", ""Practicum Course Registration\n "", ""Auxiliary Services Operations\n "", ""Strategic Plan\n "", ""Help Us Improve Mass.gov with your feedback""]",[],[],[],[] -1346,http://lafayettepolice.us/faq.aspx?qid=80,Resources,200,FAQs • How do I obtain a handgun permit?,"",[],"[""\n\u25bc\r\nPolice\t\t""]","[""Loading"", ""Categories"", ""Live Edit"", ""Contact Us"", ""FAQs"", ""Site Links""]",[],[],[] -1347,https://columbiacitypolice.us/photos/group 2017.jpg,Poor Data Source,200,"","",[],[],[],[],[],[] -1348,https://police.greenvillesc.gov/faq.aspx?qid=140,Resources,200,FAQs • What have I been charged with?,"",[],"[""\n\u25bc\r\nMunicipal Court - General Legal Questions\t\t""]","[""Loading"", ""Categories"", ""Live Edit""]",[],[],[] -1349,https://www.coronadelmar.us/newport-beach-mourns-locals-killed-in-helicopter-crash/,Not Criminal Justice Related,200,Newport Beach Mourns Locals Killed in Helicopter Crash | Corona del Mar California,"","[""Newport Beach Mourns Locals Killed in Helicopter Crash""]","[""Menu"", "" Be First to Comment"", ""Subscribe"", """", """"]","[""Share this:"", ""Like this:"", ""Related"", ""Leave a Reply Cancel reply"", """"]",[],[],[] -1350,https://www.mass.gov/doc/municipal-police-training-committee-meeting-minutes-091521/download,Training & Hiring Info,200,"","",[],[],[],[],[],[] -1351,https://www.madera.gov/tr-accordion/police-programs/,Not Criminal Justice Related,-1,"","",,,,,, -1352,https://mountpocono-pa.gov/question/how-do-i-reach-the-police-department-with-a-non-emergency/,Contact Info & Agency Meta,200,"How do I reach the police department with a non emergency? - Mount Pocono, PA","","[""How do I reach the police department with a non emergency?""]","[""Action toolbar"", ""Primary menu links"", ""Welcome"", ""Engage"", ""Help""]",[],[],[],[] -1353,https://champaignil.gov/2021/04/03/champaign-police-investigating-overnight-shooting-2/,Media Bulletins,200,Champaign Police Investigating Overnight Shooting - City of Champaign,"","[""Champaign Police Investigating Overnight Shooting""]","[""News Releases"", ""Department News""]",[],[],[],[] -1354,https://alpha.austin.gov/en/police-oversight/2020-11-01/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1355,https://southamptontownnypolice.gov/256/town-law-200-procedure,Resources,200,"Town Law 200 Procedure | Southampton, NY - Official Website",Learn about the procedure of the town law 200.,"[""\r\n\r\nTown Law 200 Procedure\t\t""]",[],"[""Loading"", ""Site Tools"", ""Contact Us"", ""Site Links""]",[],[],[] -1356,https://www.somervillema.gov/news/femino-named-interim-acting-chief-police,Personnel Records,200,FEMINO NAMED INTERIM ACTING CHIEF OF POLICE | City of Somerville,"SOMERVILLE - Mayor Joseph A. Curtatone announced today that Somerville Police Captain Charles Femino has agreed to serve as the Interim Acting Chief of Police beginning on Dec. 1, 2013, until a permanent replacement is found for departing Chief Thomas Pasquarello. ","[""\nFEMINO NAMED INTERIM ACTING CHIEF OF POLICE\n""]","[""Captain Charles Femino current Chief of Detectives, with department since 1984""]","[""Feedback"", ""Download Mobile Apps"", ""Sign up for City eNews"", ""Connect With Us""]",[],[],[] -1357,https://police.greenvillesc.gov/faq.aspx,Resources,200,"FAQs • Greenville, SC • CivicEngage","",[],"[""\n\u25bc\r\nAffordable Housing\t\t"", ""\n\u25bc\r\nAnimal Control\t\t"", ""\n\u25bc\r\nBusiness Licenses - Fees\t\t"", ""\n\u25bc\r\nBusiness Licenses - General\t\t"", ""\n\u25bc\r\nBusiness Licenses - Penalties\t\t"", ""\n\u25bc\r\nClemson MBA Fireworks on the Fourth\t\t"", ""\n\u25bc\r\nComposting\t\t"", ""\n\u25bc\r\nCOVID-FAQs-Intranet\t\t"", ""\n\u25bc\r\nCultural Corridor\t\t"", ""\n\u25bc\r\nFlashing Yellow Left-Turn Signals\t\t"", ""\n\u25bc\r\nGreenlink\t\t"", ""\n\u25bc\r\nGreenlink Art Contest\t\t"", ""\n\u25bc\r\nGreenville Development Code\t\t"", ""\n\u25bc\r\nGreenville Jazz Fest\t\t"", ""\n\u25bc\r\nGvl2040 Comprehensive Plan\t\t"", ""\n\u25bc\r\nGVL2040 Comprehensive Plan - Report to the Community FAQs\t\t"", ""\n\u25bc\r\nHistoric Resources Survey\t\t"", ""\n\u25bc\r\nIce on Main\t\t"", ""\n\u25bc\r\nMiguel Rosales Interview\t\t"", ""\n\u25bc\r\nMoonlight Movies\t\t"", ""\n\u25bc\r\nMunicipal Court - Appeals & Records for Reconsideration\t\t"", ""\n\u25bc\r\nMunicipal Court - Community Service\t\t"", ""\n\u25bc\r\nMunicipal Court - Court Appearances\t\t"", ""\n\u25bc\r\nMunicipal Court - Criminal Domestic Violence Program\t\t"", ""\n\u25bc\r\nMunicipal Court - Driver's License Issues\t\t"", ""\n\u25bc\r\nMunicipal Court - Financial, Fines & Fees\t\t"", ""\n\u25bc\r\nMunicipal Court - General\t\t"", ""\n\u25bc\r\nMunicipal Court - General Legal Questions\t\t"", ""\n\u25bc\r\nMunicipal Court - House Arrest\t\t"", ""\n\u25bc\r\nMunicipal Court - Jail\t\t"", ""\n\u25bc\r\nMunicipal Court - Judicial Communications\t\t"", ""\n\u25bc\r\nMunicipal Court - Records & Warrants\t\t"", ""\n\u25bc\r\nMunicipal Court - Restraining Orders, Orders of Protection, Harassment\t\t"", ""\n\u25bc\r\nPlanning & Zoning \t\t"", ""\n\u25bc\r\nPolice Department\t\t"", ""\n\u25bc\r\nPolice Mediation\t\t"", ""\n\u25bc\r\nProject Safe Neighborhoods\t\t"", ""\n\u25bc\r\nRecreation - Pickleball\t\t"", ""\n\u25bc\r\nRecycling\t\t"", ""\n\u25bc\r\nRight of Way & Trees\t\t"", ""\n\u25bc\r\nSanitary Sewer\t\t"", ""\n\u25bc\r\nShort-Term Rentals\t\t"", ""\n\u25bc\r\nSound Check\t\t"", ""\n\u25bc\r\nStorm Water\t\t"", ""\n\u25bc\r\nStreets & Sidewalks\t\t"", ""\n\u25bc\r\nSwamp Rabbit Trail\t\t"", ""\n\u25bc\r\nTuition Reimbursement\t\t"", ""\n\u25bc\r\nUnity Park Open\t\t""]","[""Loading"", ""Categories"", ""Live Edit""]",[],[],[] -1358,"https://norfolkne.gov/government/departments/police-division/press-releases/january-4,-2021-press-release.html",Media Bulletins,200,"January 4, 2021 Press Release - City of Norfolk, NE","","[""City of Norfolk, NE"", ""Police Division"", ""January 4, 2021 Press Release""]",[],[],[],"[""Still looking for something?""]","[""Contact Us"", ""Pay or Apply..."", ""Government..."", ""Services..."", ""Business..."", ""Amenities...""]" -1359,https://www.osc.state.ny.us/state-agencies/payroll-bulletins/state-police/sp-42-permanent-rank-sergeant-payment-employees-represented-nys-police,Media Bulletins,200,State Police Bulletin No. SP-42 | Office of the New York State Comptroller,To notify the Division of State Police of the procedure for processing the 2001-2002 payment,"[""\nState Police Bulletin No. SP-42\n"", "" ""]","[""Main navigation""]","[""How would you rate our website?""]","[""Disclaimer"", ""Purpose"", ""Affected Employees"", ""Payment Date(s)"", ""Contract Provision and Eligibility Criteria"", ""Agency Processing Instructions"", ""Payroll Register and Employees Check/Advice"", ""Questions"", ""Newsletter Sign-Up Confirmation"", ""Thank you for subscribing to the Comptroller's Weekly Newsletter!""]",[],[] -1360,https://www.mass.gov/doc/municipal-police-training-committee-mptc-meeting-agenda-71719/download,Misc Police Activity,200,"","",[],[],[],[],[],[] -1361,http://www.ryepolice.us/logs/police-logs-for-12517-13117,Daily Activity Logs,200,Rye Police Department Police Logs for 1/25/17-1/31/17 - Rye Police Department,"","[""Police Logs for 1/25/17-1/31/17""]","[""Police Logs for 1/25/17-1/31/17""]","[""Navigation"", ""Follow Us"", ""Facebook"", ""Email Updates"", ""Storm Preparedness Guide""]",[],[],[] -1362,https://police.greenvillesc.gov/994/crisis-intervention,Resources,200,"Crisis Intervention Team (CIT) | Greenville, SC - Official Website",Information about the Police Department's Crisis Intervention Team,"[""\r\n\r\nCrisis Intervention Team (CIT)\t\t""]",[],"[""Loading"", ""Officer Participation""]",[],[],[] -1363,https://alvordtx.gov/question/how-can-i-obtain-a-copy-of-the-municipal-codes/,Resources,200,"How can I obtain a copy of the municipal codes? - Alvord, TX","","[""How can I obtain a copy of the municipal codes?""]","[""Primary menu links"", ""Action toolbar"", ""Welcome"", ""Engage"", ""Help""]",[],[],[],[] -1364,http://www.longbeach.gov/police/press-releases/murder-investigation---wardlow--orange/,Media Bulletins,200,*UPDATE* REWARD ISSUED IN MURDER INVESTIGATION,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1365,https://louisvilleky.gov/news/louisville-metro-police-foundation-endorses-louisville-affordable-housing-trust-fund,Not Criminal Justice Related,403,"","",,,,,, -1366,http://www.longbeach.gov/police/press-releases/murder-1600-block-of-pine-avenue/,Media Bulletins,200,Murder (1600 Block of Pine Avenue),"","[""Long BeachPolice Department""]",[],[],[],[],[] -1367,https://alpha.austin.gov/en/police-oversight/notice-of-complaint-related-to-2022-0415/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1368,https://delcopa.gov/publicrelations/releases/18pdfs/18emergencypreparednessmonth.pdf,Media Bulletins,200,"","",[],[],[],[],[],[] -1369,http://lafayettepolice.us/773/foam-systems,Not Criminal Justice Related,200,"Foam Systems | Lafayette, IN - Official Website",Fire fighting foam systems suppress fire by separating the fuel from the air (oxygen).,"[""\r\n\r\nFoam Systems\t\t""]",[],"[""Loading"", ""Contact Us"", ""FAQs"", ""Site Links""]",[],[],[] -1370,https://www.newarknj.gov/news/mayor-ras-j-barakas-statement-on-appointment-of-brian-ohara-as-deputy-mayor-of-strategic-initiatives-for-police-services-public-safety,Personnel Records,200,News: MAYOR RAS J. BARAKA’S STATEMENT ON APPOINTMENT OF BRIAN O’HARA AS DEPUTY MAYOR OF STRATEGIC INITIATIVES FOR POLICE SERVICES/PUBLIC SAFETY,"Official Page of Newark, NJ News: MAYOR RAS J. BARAKA’S STATEMENT ON APPOINTMENT OF BRIAN O’HARA AS DEPUTY MAYOR OF STRATEGIC INITIATIVES FOR POLICE SERVICES/PUBLIC SAFETY","[""City of"", ""NEWARK"", ""June 30, 2022"", ""MAYOR RAS J. BARAKA\u2019S STATEMENT ON APPOINTMENT OF BRIAN O\u2019HARA AS DEPUTY MAYOR OF STRATEGIC INITIATIVES FOR POLICE SERVICES/PUBLIC SAFETY "", ""City of"", ""NEWARK""]","[""News"", ""Mayor Ras j baraka""]",[],[],[],[] -1371,https://mtcb.colorado.gov/departments-services/police,Contact Info & Agency Meta,200,Police | Town of Mt. Crested Butte,"The Mt. Crested Butte Police Department's goal is to create and sustain a safe and relaxed environment within our jurisdiction. Through education, enforcement, investigation, and cooperation with our community Mt. CB PD helps address crime, road safety, and other quality of life issues ensuring a safe and friendly experience for guests and locals alike.","[""\nPolice\n""]",[],"[""\n"", ""\n"", ""\n"", """"]",[],[],[] -1372,http://www.lafayettepolice.us/725/fireworks-safety,Not Criminal Justice Related,200,"Fireworks Safety | Lafayette, IN - Official Website",Find the rules for using fireworks in the City limits of Lafayette.,"[""\r\n\r\nFireworks Safety\t\t""]",[],"[""Loading"", ""Quick Links"", ""Contact Us"", ""FAQs"", ""Site Links""]",[],[],[] -1373,https://www.cityofrc.us/public-safety/police/crime-mapping,Crime Maps & Reports,200,Crime Mapping | City of Rancho Cucamonga,"","[""Crime Mapping\n""]","[""Utility Menu"", ""Breadcrumb"", ""Footer Menu"", ""Main navigation""]",[],[],[],[] -1374,https://delcopa.gov/courts/pdf/jd/2017preareport.pdf,Annual & Monthly Reports,200,"","",[],[],[],[],[],[] -1375,https://delcopa.gov/publicrelations/releases/2020/pdf/govwolf_indoorrestaurants50percent.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -1376,http://www.longbeach.gov/police/press-releases/dui-driver-s-license-checkpoint-planned-this-weekend-8-/,Media Bulletins,200,DUI-DRIVER'S LICENSE CHECKPOINT PLANNED THIS WEEKEND(8),"","[""Long BeachPolice Department""]",[],[],[],[],[] -1377,https://delcopa.gov/prison/pdfs/wardereports/2021/wardensreportmay2021.pdf,Annual & Monthly Reports,200,"","",[],[],[],[],[],[] -1378,https://www.goldenbeach.us/documents/resolution-2219-12-authorizing-the-participation-in-a-lease-agreement-for-two-police-motorcycles/,Policies & Contracts,200,RESO 2219.12 Authorizing the participation in a lease agreement for two police motorcycles – Golden Beach: A Town Unlike Any Other,"",[],[],"[""About Golden Beach"", ""Phone Numbers"", ""Town Hall ""]","[""\n\nRESO 2219.12 Authorizing the participation in a lease agreement for two police motorcycles\n(65 kB)\n""]",[],[] -1379,https://felton.delaware.gov/police/request-for-security-check-form/,Resources,200,Request for Security Check Form - Town of Felton,"","[""Felton""]","[""Delaware"", ""Request for Security Check Form""]","[""Menu"", ""Contact Us"", ""\""A Great Delaware Small Town\""""]",[],[],[] -1380,https://delcopa.gov/publicrelations/releases/2021/covid_jan15update.html,Not Criminal Justice Related,200,"Jan. 15 Update on COVID-19 Vaccinations in Delaware County - Delaware County, Pennsylvania","","[""Jan. 15 Update on COVID-19 Vaccinations in Delaware County""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]","[""Phase 1B now includes residents age 65 years and older""]",[],[] -1381,https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0391/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1382,https://www.southamptontownnypolice.gov/1084/ia-owts-requirements,Not Criminal Justice Related,200,"I/A OWTS Requirements | Southampton, NY - Official Website",Innovative and Alternative On-Site Wastewater Treatment System (I/A OWTS) Requirements ,"[""\r\n\r\nI/A OWTS Requirements\t\t""]","[""Innovative and Alternative On-Site Wastewater Treatment System (I/A OWTS) Requirements""]","[""Loading"", ""Site Tools"", ""Additional Water Quality Information"", ""Contact Us"", ""Site Links""]",[],[],[] -1383,https://brookfieldil.gov/publication/special-fire-police-commission-meeting-august-23-2017/,Poor Data Source,404,"","",,,,,, -1384,https://delcopa.gov/employment/jobpostings/caseworker2_oid.html,Poor Data Source,200,"404 - Delaware County, Pennsylvania","","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -1385,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/022621blotter.pdf,Dispatch Logs,200,"","",[],[],[],[],[],[] -1386,http://police.portlandmaine.gov/660/cdbg-priority-task-force,Not Criminal Justice Related,200,"CDBG Priority Task Force | Portland, ME - Official Website",This group's focus is on reevaluating the Community Development Block Grant priorities.,"[""CDBG Priority Task Force""]",[],[],[],[],[] -1387,https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0756/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1388,https://alpha.austin.gov/es/police-oversight/indefinite-suspension-of-officer-jordan-wagstaff/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1389,https://port-orange.us/2013/08/07/volusia-co-sheriffs-helicopter-makes-emergency-landing-on-beach/,Media Bulletins,-1,"","",,,,,, -1390,https://brookfieldil.gov/calendar/police-pension-fund-board-of-trustees-meeting/,Poor Data Source,404,"","",,,,,, -1391,https://mountpocono-pa.gov/topics/police-courts/,Resources,200,"Police Archives - Mount Pocono, PA","","[""FAQ Topic: Police""]","[""Action toolbar"", ""Primary menu links"", ""Who do I call about police-related non-emergencies?"", ""How do I get a copy of a police report?"", ""How do I file a police report?"", ""Welcome"", ""Engage"", ""Help""]",[],[],[],[] -1392,https://cityofpowell.us/government/employment-opportunities/police-officer-selection-process-6/,Resources,200,"City of Powell, Ohio | Police Officer Selection Process","","[""\n Police Officer Selection Process\n \n ""]","[""CONTACT INFO\n"", ""HELPFUL LINKS"", ""\n LET'S CONNECT\n ""]","[""you're at home in Powell""]","[""614.885.5380"", ""47 Hall Street, Powell, OH 43065"", ""Signup for our newsletter""]",[],[] -1393,https://delcopa.gov/ems/pdfdocs/initialcertificationeducationtesting/2022regionalemslistmap.pdf,Geographic,200,"","",[],[],[],[],[],[] -1394,http://chico.ca.us/police-department-volunteers,Media Bulletins,404,"","",,,,,, -1395,http://www.longbeach.gov/police/press-releases/two-arrested-and-numerous-guns-seized/,Media Bulletins,200,TWO ARRESTED AND NUMEROUS GUNS SEIZED,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1396,http://www.lafayettepolice.us/faq.aspx?qid=208,Not Criminal Justice Related,200,FAQs • Are “floaties” or flotation devices allowed? ,"",[],"[""\n\u25bc\r\nParks and Recreation - Aquatics\t\t""]","[""Loading"", ""Categories"", ""Live Edit"", ""Contact Us"", ""FAQs"", ""Site Links""]",[],[],[] -1397,https://alpha.austin.gov/es/police-oversight/temporary-suspension-of-officer-jeremy-bohannon/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1398,https://alpha.austin.gov/police-oversight/temporary-suspension-of-officer-ryan-seweryn-2/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1399,https://www.ci.san-bernardino.ca.us/city_hall/police_department/crime_statistics/about_ucr_statistics/arrest_statistics/arrest_statistics-2009,Crime Statistics,200," - Arrest Statistics - 2009 - City of San Bernardino -","","[""City of San Bernardino California""]","[""Arrest Statistics - 2009""]",[],[],[],[] -1400,https://www.mass.gov/locations/state-police-millbury-barracks/locations,Geographic,200,Locations | Mass.gov,"","[""\n Other locations related to State Police Millbury Barracks\n ""]","[""Showing 1 - 7 of 7 results for:"", ""\n\nState Police Athol Barracks\u00a0\n\n"", ""\n\nState Police Belchertown Barracks\u00a0\n\n"", ""\n\nState Police Brookfield Barracks\u00a0\n\n"", ""\n\nState Police Devens Barracks\u00a0\n\n"", ""\n\nState Police Holden Barracks\u00a0\n\n"", ""\n\nState Police Leominster Barracks\u00a0\n\n"", ""\n\nState Police Sturbridge Barracks\u00a0\n\n""]",[],[],[],[] -1401,https://www.coppelltx.gov/faq.aspx?qid=309,Not Criminal Justice Related,200,FAQs • Why did the City choose to participate in the program,"",[],"[""\n\u25bc\r\nTexas Power Switch\t\t""]","[""Loading"", ""Categories"", ""Live Edit""]",[],[],[] -1402,https://southcoffeyvilleok.gov/police-department/screen-shot-2016-09-27-at-4-41-47-pm/,Poor Data Source,200," -screen-shot-2016-09-27-at-4-41-47-pm -","",[],"[""\n screen-shot-2016-09-27-at-4-41-47-pm ""]","[""Contact Town of South Coffeyville"", """"]",[],[],[] -1403,http://www.longbeach.gov/police/press-releases/halloween-safety-tips/,Media Bulletins,200,HALLOWEEN SAFETY TIPS,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1404,http://www.ryepolice.us/logs/police-logs-for-21716-22316,Calls for Service,200,Rye Police Department Police Logs for 2/17/16-2/23/16 - Rye Police Department,"","[""Police Logs for 2/17/16-2/23/16""]","[""Police Logs for 2/17/16-2/23/16""]","[""Navigation"", ""Follow Us"", ""Facebook"", ""Email Updates"", ""Storm Preparedness Guide""]",[],[],[] -1405,https://www.southbendin.gov/police/,Contact Info & Agency Meta,200,South Bend Police Department | South Bend Police Department,"","[""South Bend Police Department""]","[""MISSION"", ""VISION"", ""Useful Links"", ""Participate"", ""Meet the Department"", ""REGISTER A CAMERA"", ""South Bend"", ""Social Media""]","[""2024 Spring Citizens Police Academy"", ""NEED TO FILL OUT A SHOPLIFTING FORM?"", ""NEW! File an Online Police Report"", ""View the Public Information Bulletin"", ""Register Your Security Camera with SBPD"", ""Click here to read a message from the Chief"", ""get involved in your community"", ""Police Athletic League"", ""Michiana Crime Stoppers"", ""Cadets and Jr. Cadets"", ""Volunteer with SBPD"", ""Neighborhood Watch"", ""Group Violence Intervention"", ""an introduction to your officers and civilians who serve"", ""Police Crime Reports"", ""stay connected, be informed""]","[""Travis KuklaPatrolman (First Class)Learn More"", ""Sienna SearsPatrolman (First Class)Learn More"", ""Jarveair BournPatrolman (First Class)Learn More"", ""Brianne FentonCrime AnalystLearn More"", ""Tricia DealManager of Property & Evidence RoomLearn More""]",[],[] -1406,https://beaumonttexas.gov/beaumont-police-investigating-officer-involved-shooting-lindbergh-overpass/,Poor Data Source,404,"","",,,,,, -1407,https://police.greenvillesc.gov/324/business-assistance,Not Criminal Justice Related,200,"Business Assistance | Greenville, SC - Official Website",Review links and information on various incentives and programs for business assistance. ,"[""\r\n\r\nBusiness Assistance\t\t""]","[""Business License Incentive"", ""LADDER"", ""State & County Incentives""]","[""Loading""]",[],[],[] -1408,https://www.wakeforestnc.gov/police/about-us/police-jobs/police-officer-employment,Training & Hiring Info,200,"Police Officer Employment | Town of Wake Forest, NC",The following is a general progression of the application process and will indicate where a candidate is in the hiring process:Complete an application of employment for the Town of Wake Forest online through NEOGOV.,"[""Police Officer Employment""]","[""joyner_park_1.jpg"", ""Search form"", ""You are here""]","[""Minimum Qualifications\u00a0"", ""Additional Benefits"", "" Police Officer Starting Salaries Based on Experience"", "" Additions to Salaries"", "" Pay Scale""]",[],[],[] -1409,https://spdblotter.seattle.gov/2019/01/25/police-arrest-man-following-stabbing-in-pioneer-square-neighborhood/,Media Bulletins,200,Police Arrest Man Following Thursday Night Stabbing in Pioneer Square Neighborhood - SPD Blotter,"","[""Police Arrest Man Following Thursday Night Stabbing in Pioneer Square Neighborhood""]","[""Find Posts By Topic"", ""You might also like..."", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[] -1410,https://www.mass.gov/doc/2020-chelmsford-police-lieutenant-sole-assessment-center-examination-in-title-employment/download,Training & Hiring Info,200,"","",[],[],[],[],[],[] -1411,http://www.longbeach.gov/police/press-releases/fatal-traffic-collision/,Media Bulletins,200,FATAL TRAFFIC COLLISION,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1412,https://oceansprings-ms.gov/form-pdf/ospd-police-reserve-application/,Poor Data Source,404,"","",,,,,, -1413,https://www.alamoheightstx.gov/public-safety/police/services/solicitor-information/,Resources,200,Solicitor Information - City of Alamo Heights,"","[""Solicitor Information""]","[""Definitions:""]",[],[],[],[] -1414,https://elkhartlakewi.gov/departments/police/meet-us/,Personnel Records,200,Meet Us - Village of Elkhart Lake,"","[""\nVILLAGE OF ELKHART LAKE POLICE DEPARTMENT STAFF\n""]","[""CONTACT US"", ""MORE ABOUT ELPD"", ""VILLAGE DEPARTMENTS""]","[""\nK-9 Copper\n"", ""\nMichael Meeusen, Chief of Police\n"", ""\nJeremiah Pritzl, Sergeant\n"", ""\nTravis Auch, School Resource Officer\n"", ""\nBrenda Garcia, Police Officer\n"", ""\nK-9 Copper\n"", ""\nBrad Abel, Police Officer\n"", ""\nRobert Toeller, Police Officer\n"", ""\nDylan Ninmer, Police Officer\n"", ""\nThomas Kultgen, Police Officer\n"", ""\nEvan Gilbert, Police Officer\n"", ""\nKelly Sippel, Police Officer\n"", ""\nPhil Schaefer, Police Officer\n"", ""\nTyler Olig, Police Officer\n"", ""\nAmy Gross, Police Officer\n"", ""\nMarcus Anderson, Police Officer\n"", ""\nNoah Bramstedt, Police Officer\n"", ""\nVILLAGE DEPARTMENTS\n"", ""\nVILLAGE SERVICES\n"", ""\nKEY VILLAGE CONTACTS\n""]",[],[],[] -1415,https://www.sanramon.ca.gov/our_city/departments_and_divisions/police/police_news/weekly_arrest_log,Arrest Records,200," - Weekly Arrest Log - City of San Ramon -","","[""Weekly Arrest Log""]","[""Contact Us"", ""Useful Links""]",[],[],[],[] -1416,https://www.dps.nm.gov/blog/2022/10/22/silver-alert-alamogordo-police-department-ralph-magruder/,Resources,200,SILVER ALERT – Otero County Sheriff's Office– Ralph Magruder - NM Department of Public Safety,"","[""SILVER ALERT \u2013 Otero County Sheriff\u2019s Office\u2013 Ralph Magruder""]",[],"[""Location"", ""Sitemap"", ""Quick Links"", ""Social Media Links""]",[],[],[] -1417,https://www.ashevillenc.gov/news/asheville-police-department-to-add-patrol-district-realign-existing-districts-in-2020/,Media Bulletins,200,"Asheville Police Department to add patrol district, realign existing districts in 2020 - The City of Asheville","","[""Asheville Police Department to add patrol district, realign existing districts in 2020""]",[],"[""What are patrol districts?"", ""Why does law enforcement utilize patrol districts and beats?"", ""What will happen to the downtown unit?""]",[],[],[] -1418,https://www.naperville.il.us/services/naperville-police-department/programs-and-services/police-department-tours/,Resources,200,Police Department Tours | The City of Naperville,Facility tours are educational and structured to help residents better understand the workings of a police department.,"[""Police Department Tours""]","[""Programs and Services "", ""Request a Tour"", ""Contact Us"", ""\nNaperville Police Department\n""]","[""Explore"", ""TOUR INFORMATION"", ""TOUR INFORMATION"", ""REQUESTOR INFORMATION"", ""REQUESTOR INFORMATION"", ""GROUP INFORMATION"", ""GROUP INFORMATION""]",[],"[""Helping Residents Build a Better Community"", ""Resources for Doing Business in Naperville""]",[] -1419,https://southamptontownnypolice.gov/faq.aspx?qid=499,Resources,200,FAQs • What beaches are Southampton Town beaches?,"",[],"[""\n\u25bc\r\nParks & Rec\t\t""]","[""Loading"", ""Site Tools"", ""Categories"", ""Live Edit"", ""Contact Us"", ""Site Links""]",[],[],[] -1420,https://spdblotter.seattle.gov/2014/05/16/police-bolstering-patrols-as-detectives-investigate-recent-shootings/,Media Bulletins,200,Police Bolstering Patrols As Detectives Investigate Recent Shootings - SPD Blotter,"","[""Police Bolstering Patrols As Detectives Investigate Recent Shootings""]","[""Find Posts By Topic"", ""You might also like..."", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[] -1421,https://www.newlexingtonohio.gov/resources/forms/police-department-public-records-request-form/,Records Request Info,200,Police Department Public Records Request Form - Village of New Lexington,"New Lexington, Ohio","[""Police Department Records Request Form""]",[],[],[],[],[] -1422,https://champaignil.gov/police/resources/gun-violence-prevention-and-response/,Resources,200,Gun Violence Prevention and Response - City of Champaign,"","[""Gun Violence Prevention and Response""]","[""Police Department"", ""Quick Links"", ""Police Department News"", ""Contact Us""]","["""", ""Jump to the latest shooting incident statistics"", ""What is the City of Champaign Doing to Combat Gun Violence?"", ""Community Resources"", ""Shooting Incident Statistics""]",[],[],[] -1423,https://townofkremmling.colorado.gov/departments/police,Resources,200,Police | Town of Kremmling,"","[""\nPolice\n""]","[""Frequently Asked Questions"", ""Town of Kremmling"", ""We're Social""]","[""\n"", ""\n"", ""\n"", ""\n""]",[],[],[] -1424,http://www.longbeach.gov/police/press-releases/murder-23-/,Media Bulletins,200,MURDER(23),"","[""Long BeachPolice Department""]",[],[],[],[],[] -1425,http://www.longbeach.gov/police/press-releases/murder-pch-and-pacific/,Media Bulletins,200,MURDER PCH AND PACIFIC,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1426,https://champaignil.gov/2014/03/24/police-arrest-one-suspect-in-home-invasion/,Media Bulletins,200,Police Arrest One Suspect in Home Invasion - City of Champaign,"","[""Police Arrest One Suspect in Home Invasion""]","[""News Releases"", ""Department News""]",[],[],[],[] -1427,https://www.mass.gov/doc/rossi-cully-v-duxbury-police-department-related-superior-court-decision-52710/download,Court Cases,200,"","",[],[],[],[],[],[] -1428,https://galenaks.gov/view-more-http-emjophotography-pass-us-galenapolicedepartment2018-8/,Poor Data Source,200,"PO Fleming – City of Galena, Kansas","","[""\n\n\t\t\tPO Fleming\n\t\t""]","[""\n 0 Comments ""]","[""Weather Info"", ""Featured Gallery"", ""Notice Categories"", ""Notices"", ""Interesting Places"", ""About GALENAKS.GOV"", ""Upcoming Events"", ""Important Forms"", ""Quick Contact""]","[""Leave a comment Cancel reply"", ""Local Time"", ""\n\t\t\t\t\t\t\tToday\t\t\t\t\t\t"", ""\n\t\t\t\t\t\t\t\tWednesday\t\t\t\t\t\t\t"", ""\n\t\t\t\t\t\t\t\tThursday\t\t\t\t\t\t\t"", ""\n\t\t\t\t\t\t\t\tFriday\t\t\t\t\t\t\t"", ""\n\n\t\t\t\t\tGalena Police Department 2018\t\t\t\t\n"", ""\n\n \t\t\t\t\tCherokee County Floodplain Mapping Update \u2013 Open House \u2013 AUG 9 \t\t\t\t\n"", ""\n\n \t\t\t\t\tSeasonal Positions Available Now \t\t\t\t\n"", ""\n\n \t\t\t\t\tCode Enforcement Officer \t\t\t\t\n"", ""\n\n \t\t\t\t\tFREE LEAD TESTING AND CLEANUP OPPORTUNITY \t\t\t\t\n"", ""\n\n\t \t\t\t\t\tHuddleston Plumbing LLC\t \t\t\t\t\n"", ""\n\n\t \t\t\t\t\tTimberwolf Custom Creations\t \t\t\t\t\n"", ""\n\n \t\t\t\t\tGame Day and Special Events for Seniors \t\t\t\t\n"", ""\n\n \t\t\t\t\tGalena Senior Citizens Weekly Meal \t\t\t\t\n"", ""\n\n \t\t\t\t\tZoning Map for the City of Galena \t\t\t\t\n"", ""\n\n \t\t\t\t\t2023 COUNCIL MEETING MINUTES \t\t\t\t\n""]","[""\n\t\t\t\t\t\t\tJanuary 23, 2024\t\t\t\t\t\t"", ""\n\t\t\t\t\t\t\t\tJanuary 24, 2024\t\t\t\t\t\t\t"", ""\n\t\t\t\t\t\t\t\tJanuary 25, 2024\t\t\t\t\t\t\t"", ""\n\t\t\t\t\t\t\t\tJanuary 26, 2024\t\t\t\t\t\t\t""]",[] -1429,http://www.longbeach.gov/police/press-releases/significant-crime-reduction-during-first-year-metro-blue-line-contract/,Media Bulletins,200,SIGNIFICANT CRIME REDUCTION DURING FIRST YEAR METRO BLUE LINE CONTRACT,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1430,https://southamptontownnypolice.gov/faq.aspx?qid=297,Resources,200,FAQs • Does the Trustee’s Office handle shellfish permits?,"",[],"[""\n\u25bc\r\nTrustees\t\t""]","[""Loading"", ""Site Tools"", ""Categories"", ""Live Edit"", ""Contact Us"", ""Site Links""]",[],[],[] -1431,https://www.mass.gov/doc/copper-in-drinking-water-faq-english-0/download,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -1432,https://police.beaumonttexas.gov/taxonomy-template/,Poor Data Source,200,"Taxonomy template – City of Beaumont, Texas","","[""Taxonomy template""]",[],[],"[""Quick Links"", ""\u00a0""]",[],[] -1433,http://www.longbeach.gov/police/press-releases/directed-enforcement-patrols-and-bicycle-theft-sting-results-in-arrests/,Media Bulletins,200,DIRECTED ENFORCEMENT PATROLS AND BICYCLE THEFT STING RESULTS IN ARRESTS,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1434,http://www.lafayettepolice.us/354/juvenile-investigations,Resources,200,"Special Victims Unit | Lafayette, IN - Official Website",The mission of the Juvenile Division is to investigate crimes against juveniles and those offenses committed by juveniles.,"[""\r\n\r\nSpecial Victims Unit\t\t""]","[""RESPONSIBILITIES"", ""-----------------------------------------------------------------------------"", ""RESOURCES""]","[""Loading"", ""Contact Us"", ""FAQs"", ""Site Links""]",[],[],[] -1435,https://www.mass.gov/directive/directive-93-7-exempt-sales-of-copying-machines-and-related-items,Not Criminal Justice Related,200,Directive 93-7: Exempt Sales of Copying Machines and Related Items | Mass.gov,"Sales and Use Tax ISSUE: When are retail sales of copying machines, related supplies, photocopies and service contracts exempt from sales tax? DIRECTIVE: Copying Machines. Retail sales of copying machines are subject to sales tax unless the copier is used directly and exclusively in an industrial plant in the actual manufacture of tangible personal property to be sold. See G.L. c. 64H, § 6(s). Supplies. The retail sale of copying machine supplies such as paper, toner and ink are exempt if the photocopies produced from these ingredient or component materials will be sold. See G.L. c. 64H, § 6(r). Retail sales of supplies that do not become an ingredient or component part of tangible personal property to be sold are exempt only if they are consumed and used directly and exclusively in an industrial plant in the actual manufacture of tangible personal property to be sold. See G.L. c. 64H, § 6(s). Photocopies. Retail sales of photocopies are subject to sales tax. Service Contracts. Generally, when the sales price of a service contract is separately stated from the sales price of the equipment and the purchase of the contract is optional, the purchase of the service contract is not subject to sales tax. The cost of a mandatory service contract which the buyer must purchase as part of the sale of the copying machine is included in the taxable sale price of the machine. See 830 CMR 64H.1.1(5)(g), for information regarding taxation of service contracts and replacement parts. Sales to Exempt Purchasers. Retail sales of tangible personal property, including copying machines, supplies and photocopies to government agencies or under certain circumstances to tax exempt organizations qualified under § 501(c)(3) of the Internal Revenue Code, are exempt from tax under G.L. c. 64H, § 6(d) and § 6(e) respectively. DISCUSSION OF LAW: General Laws Chapter 64H, § 2, imposes a tax upon retail sales in the commonwealth by any vendor of tangible personal property or telecommunications services unless specifically exempt. The definition of ""sales"" includes leases and rentals. G.L. c. 64H, § 1. However, the sale of any item of tangible personal property may be exempt if it is sold for an exempt use or if it is sold to an exempt purchaser. 1. Exempt Use a. Copying Machines General Laws Chapter 64H, § 6(s), exempts from taxation sales of machinery, and its replacement parts, used directly and exclusively in an industrial plant in the actual manufacture of tangible personal property to be sold. Machinery is ""used directly and exclusively"" in the manufacture of tangible personal property to be sold only where it is used solely during a manufacturing operation to cause a direct and immediate physical change upon such property. Id. An industrial plant is a factory at a fixed location primarily engaged in the manufacture, conversion or processing of tangible personal property to be sold in the regular course of business. b. Supplies General Laws Chapter 64H, § 6(r), exempts from taxation sales of materials, tools and fuel, or their substitutes, which become an ingredient or component part of tangible personal property to be sold. Materials, tools and fuel which do not become an ingredient or component part of tangible personal property to be sold may be exempt if they are consumed and used directly and exclusively in an industrial plant in the actual manufacture of tangible personal property to be sold. Id. A material, tool or fuel is ""consumed and used directly and exclusively in an industrial plant in the actual manufacture of tangible personal property to be sold"" only if its normal useful life is less than one year, or if its cost is allowable as an ordinary and necessary business expense for federal income tax purposes. Id. 2. Exempt Purchaser General Laws Chapter 64H, § 6(d), exempts from sales tax sales to the United States, the commonwealth, or their respective agencies. Sales to organizations exempt from taxation pursuant to section 501(c)(3) of the Internal Revenue Code (""tax exempt""), are exempt from sales tax provided that the tangible personal property sold is used in the conduct of the organization's exempt enterprise, and the organization obtains a certificate from the Commissioner of Revenue stating it is entitled to the exemption, and the vendor keeps a proper record of the sale. See G.L. c. 64H, § 6(e). EXAMPLES: 1. A company operating a photoprocessing business at a fixed location purchases a copying machine. The company's primary activity is the manufacturing of photographic images to be sold in the regular course of the company's business. The copying machine is used solely to cause a direct and immediate physical change upon the property to be sold during photoprocessing operations. The company also purchases supplies for the copying machine. The company's premises qualifies as a ""factory"" since the primary activity there consists of using mechanical power in photoprocessing manufacturing operations. See Letter Rulings 85-40 and 89-7, and Directive 88-9. The company's premises qualifies as an ""industrial plant"" because it consists of a factory at a fixed location used primarily for the manufacture of tangible personal property to be sold in the regular course of the company's business. The sale of the copying machine is exempt from tax since the machine is used directly and exclusively in an industrial plant in the actual manufacture of tangible personal property to be sold. The sales of supplies used in this machine are exempt if the supplies become an ingredient or component part of tangible personal property to be sold. Supplies that do not become an ingredient or component part of the tangible personal property sold are exempt only if they are consumed and used directly and exclusively in the industrial plant in the actual manufacture of tangible personal property to be sold. Sales of the photocopies are generally taxable. 2. Copying machines are leased for use by various ""tax exempt"" organizations that qualify for exemption under G.L. c. 64H, § 6(e) as discussed above and government entities, such as public universities and public libraries. These organizations and entities also purchase supplies for the copying machines, and make the copying machines availables to the general public. Leases of the copying machines and sales of supplies to qualified ""tax exempt"" organizations are exempt from taxation. Leases of the copying machines and sales of supplies to the federal government and its agencies, and to the commonwealth and its agencies, are exempt from taxation. Sales of tangible personal property by such ""tax exempt"" organizations and government agencies, however, are generally taxable. Thus, sales of photocopies by these institutions are generally subject to tax. See G.L. c. 64H, § 1, (definition of ""retailer""); see also DOR Directive 91-1 and Letter Ruling 92-3. CONCLUSION: Depending on the facts of each transaction, retail sales of copying machines, although generally taxable, may be exempt from taxation pursuant to G.L. c. 64H, § 6(d), § 6(e) or § 6(s). Sales of copying machine supplies, also generally taxable, may be exempt from taxation pursuant to G.L. c. 64H, § 6(d), § 6(e), § 6(r), or § 6(s). Generally, sales of photocopies are subject to tax. Exempt Usage. When claiming an exemption based on use pursuant to G.L. c. 64H, § 6(r) or § 6(s), a properly completed Form ST-12 certifying that the property is being purchased for an exempt use must be presented by the purchaser to the vendor. See 830 CMR 64H.8.1(5). Exempt Purchaser. When claiming an exemption as an exempt purchaser pursuant to G.L. c. 64H, § 6(d) or § 6(e), a properly completed Form ST-5 with an ST-2 copy (required for tax exempt organizations only) certifying that the purchaser is exempt must be presented by the purchaser to the vendor. See 830 CMR 64H.8.1(5). If a government entity claims the exemption but does not offer an Exempt Purchaser Certificate the vendor, to sell tax free, must obtain adequate documentation, generally, a copy of the government check, verifying that the purchaser is a government entity. /s/Mitchell Adams Mitchell Adams Commissioner of Revenue MA:HMP:kt December 21, 1993 DOR-D 93-7","[""\nDirective\u00a0\n Directive 93-7: Exempt Sales of Copying Machines and Related Items\n ""]","[""Table of Contents"", ""Help Us Improve Mass.gov with your feedback""]",[],[],[],[] -1436,http://www.longbeach.gov/police/press-releases/defendant-sentenced-to-45-years-for-charges-relating-to-human-trafficking/,Media Bulletins,200,DEFENDANT SENTENCED TO 45 YEARS FOR CHARGES RELATING TO HUMAN TRAFFICKING,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1437,https://delcopa.gov/publicrelations/releases/2018/2019doglicenses.html,Resources,200,"2019 Dog Licenses now available - Delaware County, Pennsylvania","","[""2019 Dog Licenses now available""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -1438,https://www.knoxvilletn.gov/government/mayors_office/c_o_v_i_d-19___coronavirus_/stress_and_coping/knox_well/kid___parent_resources,Resources,200," - Kid & Parent Resources - City of Knoxville -",nothing*,"[""Kid & Parent Resources""]",[],[],[],[],[] -1439,https://spdblotter.seattle.gov/2016/08/17/police-search-for-leads-on-teen-girls-suspected-in-south-seattle-bleach-attacks/,Media Bulletins,200,Police Search for Leads on Teen Girls Suspected In South Seattle Bleach Attacks - SPD Blotter,"","[""Police Search for Leads on Teen Girls Suspected In South Seattle Bleach Attacks""]","[""Find Posts By Topic"", ""You might also like..."", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[] -1440,https://www.chesterfield.in.gov/departments/police/,Resources,200,Police Department – Town of Chesterfield,"","[""Menu"", ""Town of Chesterfield"", ""Police Department"", ""I Want to\u2026"", ""Recent News"", ""Upcoming Events""]","[""A Progressive Community Est. 1858"", """"]","[""Police and Accident Reports""]",[],[],[] -1441,https://www.mass.gov/doc/fitchburgpolicesergeant7929rtf/download,Training & Hiring Info,200,"","",[],[],[],[],[],[] -1442,http://www.tampa.gov/police/info/honoring-our-heroes/curtis-and-kocab/david-curtis,Personnel Records,200,Officer David Lamar Curtis | City of Tampa,"October 3, 1978 - June 29, 2010","[""Officer David Lamar Curtis \n""]","[""Police Department"", ""Key Services"", ""Report A Problem"", ""Contact"", ""Connect With Us""]",[],[],[],[] -1443,https://www.antioch.il.gov/wpfb-file/08-03-11-police-and-fire-agenda-pdf/,Media Bulletins,200,"08-03-11 Police And Fire Agenda - Antioch, IL",8038 08 03 11 police and fire agenda pdf commissions commission agendas 2011 1311972182 b5a97d493539b841a8655f0d9c16d00b 217x300 _xa4zmw67zhfv thumb jpg 07 29 15 43 02 0 pdf application page_text num_pages analyze pdf_pages pdf_2text timings,"[""08-03-11 Police And Fire Agenda""]",[],[],[],[],[] -1444,https://www.southamptontownnypolice.gov/1782/2023-budgets,Resources,200,"2023 Budgets | Southampton, NY - Official Website","","[""\r\n\r\n2023 Budgets\t\t""]",[],"[""Loading"", ""Site Tools"", ""Contact Us"", ""Site Links""]","[""\r\n\t\t\t\t\t2023 Tentative Budget - Operating\r\n\t\t\t\t"", ""\r\n\t\t\t\t\t2023 Tentative Budget - Capital\r\n\t\t\t\t"", ""\r\n\t\t\t\t\t2023 Adopted Budget - Operating\r\n\t\t\t\t"", ""\r\n\t\t\t\t\t2023 Adopted Budget - Capital\r\n\t\t\t\t""]",[],[] -1445,https://alpha.austin.gov/es/police-oversight/2020-06-30-2/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1446,https://www.coronadelmar.us/procession-honors-newport-beach-police-detective/,Not Criminal Justice Related,200,Procession Honors Newport Beach Police Detective | Corona del Mar California,"","[""Procession Honors Newport Beach Police Detective""]","[""Menu"", "" Be First to Comment"", ""Subscribe"", """", """"]","[""Share this:"", ""Like this:"", ""Related"", ""Leave a Reply Cancel reply"", """"]",[],[],[] -1447,https://coloradosprings.gov/police-department/article/news/las-vegas-street-and-south-tejon-street,Media Bulletins,200,Las Vegas Street and South Tejon Street | City of Colorado Springs,"","[""\nLas Vegas Street and South Tejon Street\n""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[] -1448,https://rocklandmaine.gov/events/police-review-committee-meeting-18/,Poor Data Source,200,"Police Review Committee Meeting | The City of Rockland, Maine","Monday, 25 July 2022 - 430pm Zoom Meeting Link - https://us02web.zoom.us/j/5040315241?pwd=eFhHaWJ4ZmhNakRmQ0VIQko4VmlKUT09 Facilitator: Emily Note Taker: Jan","[""Police Review Committee Meeting"", ""Police Review Committee Meeting""]",[],"[""All Current Alerts & Announcements"", ""Current Weather"", ""Date"", ""Time"", ""Leave a Comment Cancel reply"", ""City of Rockland""]",[],[],[] -1449,https://coloradosprings.gov/police-department/article/news/city-ordinance-area-expanded,Media Bulletins,200,City Ordinance Area Expanded | City of Colorado Springs,"","[""\n City Ordinance Area Expanded\n""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[] -1450,https://delcopa.gov/publicrelations/releases/2022/delcohonoredtoreceivegovernersawardforlocalgovtexcellence.html,Media Bulletins,200,"Delaware County Honored to Receive the Governor’s Award for Local Government Excellence - Delaware County, Pennsylvania","","[""Delaware County Honored to Receive the Governor\u2019s Award for Local Government Excellence""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -1451,https://delcopa.gov/health/pages/animalbites.html,Resources,200,"Animal Bites to Humans - Delaware County, Pennsylvania","","[""Animal Bites to Humans""]",[],"["""", ""Health Dept Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -1452,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/arrests/011321arrests.pdf,Arrest Records,200,"","",[],[],[],[],[],[] -1453,http://www.longbeach.gov/police/press-releases/dui-drivers-license-checkpoint/,Media Bulletins,200,DUI DRIVERS LICENSE CHECKPOINT,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1454,https://www.mass.gov/doc/perry-brian-v-boston-police-department-92012/download,Court Cases,200,"","",[],[],[],[],[],[] -1455,https://www.memphistn.gov/government/police-department/in-memoriam/,Poor Data Source,404,"","",,,,,, -1456,https://www.mass.gov/doc/hamm-brendan-v-boston-police-department-111308/download,Court Cases,200,"","",[],[],[],[],[],[] -1457,https://www.coppelltx.gov/666/sustainability-data,Poor Data Source,404,"","",,,,,, -1458,https://edenny.gov/town-of-eden-police-reform-plan/,Contact Info & Agency Meta,200,"Town of Eden Police Reform Plan | Town of Eden, New York","","[""Town of Eden Police Reform Plan""]",[],[],"[""Contact Information""]",[],[] -1459,https://police.crystalmn.gov/r_e_s_i_d_e_n_t/community_development/permits_and_inspections,Resources,200," - Permits and Inspections - City of Crystal -",Links and information about permits and inspections in the City of Crystal.,"[""Permits and Inspections""]",[],"[""Sign up for a city newsletter or notification."", ""City Hall"", ""Regular Hours:""]","[""Monday - Friday""]",[],[] -1460,https://www.mass.gov/news/police-arrest-juvenile-for-homicide-in-adams-death,Media Bulletins,200,Police Arrest Juvenile For Homicide In Adams Death | Mass.gov,"Authorities arrested a juvenile for homicide in the death of Benjamin Martinez, 34, of Springfield.","[""\nPress Release\u00a0\n Police Arrest Juvenile For Homicide In Adams Death\n ""]","[""Media Contact for Police Arrest Juvenile For Homicide In Adams Death"", ""Media Contact\n for Police Arrest Juvenile For Homicide In Adams Death"", ""\n\nBerkshire District Attorney's Office\u00a0\n\n"", ""Media Contact for Police Arrest Juvenile For Homicide In Adams Death"", ""Help Us Improve Mass.gov with your feedback""]","[""\n Andrew McKeever, Director of Communications\n "", ""\n Andrew McKeever, Director of Communications\n "", ""\n Andrew McKeever, Director of Communications\n ""]","[""\n\nPhone\n"", ""\n\nOnline\n"", ""\n\nPhone\n"", ""\n\nOnline\n"", ""\n\nPhone\n"", ""\n\nOnline\n""]",[],[] -1461,https://www.roseville.ca.us/government/departments/police_department/social_services/shop_with_a_cop,Misc Police Activity,200," - Shop with a cop - City of Roseville -","","[""City of Roseville""]","[""Shop with a cop""]","[""Roseville Police Department ""]",[],[],[] -1462,https://alpha.austin.gov/en/police-oversight/2020-06-12-3/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1463,https://www.mass.gov/regulations/515-cmr-500-standards-of-skill-for-special-state-police-officers,Training & Hiring Info,200,515 CMR 5.00: Standards of skill for special state police officers | Mass.gov,"515 CMR 5.00 ensures proper standards of skill for special state police officers pursuant to the terms and provisions of M.G.L. c. 22C, § 69. Download a PDF copy of the regulation below.","[""\nRegulation\u00a0\n 515 CMR 5.00: Standards of skill for special state police officers\n ""]","[""Table of Contents\n for the law library, 515 CMR"", ""Contact for 515 CMR 5.00: Standards of skill for special state police officers"", ""Table of Contents"", ""Downloads\n for 515 CMR 5.00: Standards of skill for special state police officers"", ""Contact\n for 515 CMR 5.00: Standards of skill for special state police officers"", ""Contact for 515 CMR 5.00: Standards of skill for special state police officers"", ""Help Us Improve Mass.gov with your feedback""]","[""\n Trial Court Law Libraries\n "", ""\n Trial Court Law Libraries\n "", ""\n Trial Court Law Libraries\n ""]","[""\n\nOnline\n"", ""\n\nOnline\n"", ""\n\nOnline\n""]",[],[] -1464,https://www.ci.rohnert-park.ca.us/city_hall/departments/public_safety/police_services/permits___licensing/solicitors_peddlers_permit,Resources,200," - Solicitors/Peddlers Permit - City of Rohnert Park -","","[""City of Rohnert Park""]","[""Rohnert Park""]","[""Solicitors/Peddlers Permit""]","[""\nSolicitors/Peddlers Permit""]",[],[] -1465,https://council.seattle.gov/2011/07/14/seattle-city-council-seeking-candidates-for-police-accountability-review-board/,Media Bulletins,200,Seattle City Council seeking candidates for police accountability review board - Seattle City Council Blog,"","[""Seattle City Council seeking candidates for police accountability review board""]",[],"[""HELPFUL LINKS"", ""Make your voice heard"", ""Councilmembers""]",[],[],[] -1466,https://directory.arkansas.gov/agency/arkansas-fire-and-police-pension-review-board/questions/,Poor Data Source,200,State Directory – Arkansas.gov,"","["" Flag Status""]","[""\n\n\t\t\t\t\t\tDiscover More\t\t\t\t\t\n"", ""\n\n\t\t\t\t\t\tDiscover More\t\t\t\t\t\n"", ""\n\n\t\t\t\t\t\tDiscover More\t\t\t\t\t\n"", ""\n\n\t\t\t\t\t\tDiscover More\t\t\t\t\t\n"", ""What can we help you find?"", ""Search the Directories"", ""Flag Status"", """"]","[""Government Resources"", ""Business Resources"", ""Residents Resources"", ""Visiting Resources"", ""State Directory"", ""Agencies"", ""Services"", ""Employees"", ""Your Arkansas.gov"", ""Top Online Services"", ""helpful information""]","[""Was the information on this page helpful?""]",[],[] -1467,https://www.mass.gov/doc/pdf-copy-of-the-field-auditor-i-performance-audits-chicopee-job-description-2020-05-06/download,Training & Hiring Info,200,"","",[],[],[],[],[],[] -1468,https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0031-2/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1469,https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/blotter/081722blotter.pdf,Poor Data Source,404,"","",,,,,, -1470,https://edmonstonmd.gov/prince-georges-county-news-police-chief-town-hall-beautification/,Not Criminal Justice Related,200,"County News: Police Chief Town Hall, Beautification - Town of Edmonston","Police Chief Town Hall Recording County Executive Angela Alsobrooks and Acting Chief of Police Malik Aziz held a town hall to discuss community policing, police reform, and a new summer crime initiative that is now underway. Residents can watch the town hall below. https://www.youtube.com/watch?v=oyMrHhKoY40 Beautification Survey If you live in…","[""County News: Police Chief Town Hall, Beautification""]","[""Town Hall"", ""Police Department"", ""Town Hall"", ""Police Department"", ""Town Hall"", ""Police Department"", ""Town Hall"", ""Police Department"", ""Police Chief Town Hall Recording"", ""Beautification Survey"", ""Encuesta de embellecimiento del condado"", ""Beautify and Comply!"", ""\u00a1Embellece tu propiedad y ll\u00e9vala al Cumplimiento!"", ""Town of Edmonston"", ""Police Department"", ""Quick Links"", ""Quick Links""]",[],[],[],"[""Town Hall"", ""Office hours"", ""administrative offices"", ""contACT THE POLICE DEPARTMENT""]" -1471,https://www.dps.nm.gov/blog/2022/03/24/new-mexico-state-police-arrest-fugitive-tennessee-murder-suspects/,Media Bulletins,200,New Mexico State Police Arrest Fugitive Tennessee Murder Suspects - NM Department of Public Safety,"","[""New Mexico State Police Arrest Fugitive Tennessee Murder Suspects""]",[],"[""Location"", ""Sitemap"", ""Quick Links"", ""Social Media Links""]",[],[],[] -1472,https://www.southamptontownnypolice.gov/943/the-hills---deis-april-2016,Resources,200,"The Hills - DEIS-April 2016 | Southampton, NY - Official Website","","[""\r\n\r\nThe Hills - DEIS-April 2016\t\t""]",[],"[""Loading"", ""Site Tools"", ""Contact Us"", ""Site Links""]","[""The Hills - DEIS-April 2016 "", ""DEIS Appendices"", ""DEIS Plans""]",[],[] -1473,https://www.florenceaz.gov/police-hosting-a-town-hall-meeting-on-december-9th/,Misc Police Activity,200,Police Hosting a Town Hall Meeting on December 9th – Town of Florence,"","[""Police Hosting a Town Hall Meeting on December 9th""]","[""\n\t\t\t\t\tAbout the Author: \t\t\t\t\t\tShaun Courtney ""]","[""Visitors"", ""Events"", ""Business Information"", ""Services"", ""Town Departments"", ""News Categories"", ""Utilities""]","[""Teen Council Meeting January 24, 2024"", ""Charles Whitlow Rodeo Grounds Advisory Board January 25, 2024"", ""Historic District Advisory Commission January 31, 2024"", ""Planning and Zoning Commission February 1, 2024"", ""Town Council Meeting February 5, 2024"", ""Dive into Summer Opportunities at Florence\u2019s Aquatic Center Job Fair"", ""Major Equipment Upgrades Coming to Florence Fitness Center"", ""Florence\u2019s Western Heritage Comes Alive: The 91st Annual Jr. Parada"", ""Share This Story, Choose Your Platform!"", ""Recent Posts""]",[],[] -1474,https://www.hayward-ca.gov/discover/news/sep21/police-blotter-august-22-28-2021,Media Bulletins,200,"Police Blotter: August 22-28, 2021 | City of Hayward - Official website","STATISTICAL HIGHLIGHTSAugust 22-28, 2021 Weekly Arrests (Includes cite/released):44 Homicide 0Weekly Calls for Service: 2,070 Assault—Great Bodily Injury 2Weekly Reports Taken:194 Burglary— Nonresidential 8Weekly Complaints(against HPD):0 Burglary—Residential 3Weekly Calls Received:5,876 Theft 25This data is subject to change and based on crimes that were reported to have","[""Police Blotter: August 22-28, 2021""]","[""Look Deeper"", ""Welcome home"", ""Where opportunity lives"", ""Find what you need. Fast."", ""Working for You"", ""Your Hayward Environment"", ""You are here. So is everything else."", ""Search form""]",[],"[""STATISTICAL HIGHLIGHTS"", ""August 22-28, 2021"", ""\u00a0"", ""\u00a0"", ""\u00a0 \u00a0\u00a0"", ""Significant Incidents"", ""Re-CAP: Hayward\u2019s Updated Climate Action Plan (CAP)"", ""Try induction cooking for free through Ava Community Energy\u2019s Induction Cooktop Lending Program!"", ""The City of Hayward\u2019s Fight Against Food Waste"", ""Decoding Plastic Recycling In California"", ""Keep Hayward Clean and Green with Adopt-A-Block!"", ""City Hall and Nonessential Services Closures: Monday, Feb 12 and Monday, Feb. 19"", ""City Hall and Nonessential Services Closure: Monday, Jan. 15, 2024"", ""Library Closure January 15, 2024"", ""Library Closure: December 23 2023 - January 1 2024"", ""Library closure: November 23 - November 26, 2023."", ""YOU ARE HERE.SO IS EVERYTHING ELSE."", ""Related News"", ""Police Blotter: December 3-9, 2023"", ""Police Blotter - November 26-December 2, 2023"", ""Police Blotter - November 19-25, 2023"", ""Report\n Problems"", ""Ask\n Questions"", ""Make a\n Suggestion"", ""Translate"", ""Search""]",[],[] -1475,http://police.portlandmaine.gov/552/peaks-island-services,Not Criminal Justice Related,200,"Peaks Island Services | Portland, ME - Official Website",Learn abut services to Peaks Island.,"[""Peaks Island Services""]",[],[],[],[],[] -1476,https://beaumonttexas.gov/beaumont-police-arrest-hike-bike-auto-burglar-6450-folsom/,Poor Data Source,404,"","",,,,,, -1477,http://www.ryepolice.us/logs/police-logs-07-27-2022-08-02-2022,Daily Activity Logs,200,Rye Police Department Police Logs 07/27/2022-08/02/2022 - Rye Police Department,"","[""Police Logs 07/27/2022-08/02/2022""]","[""Police Logs 07/27/2022-08/02/2022""]","[""Navigation"", ""Follow Us"", ""Facebook"", ""Email Updates"", ""Storm Preparedness Guide""]",[],[],[] -1478,https://alpha.austin.gov/health-safety/accountability-and-transparency-in-policing/police-feedback-and-records/office-of-police-oversight-official-reports/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1479,https://coloradosprings.gov/police-department/page/vin-verification-services,Resources,200,VIN Verification Services | City of Colorado Springs,"","[""\nVIN Verification Services\n""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]","[""VIN Verification Services""]",[],"[""REPORT ONLINE""]",[] -1480,https://hollister.ca.gov/government/city-departments/police/join-our-team/,Training & Hiring Info,200,"Join Our Team – City of Hollister, California","",[],[],"[""Follow Us on..."", ""Join Our Team"", ""We are Hiring"", ""Follow Us on....""]",[],[],[] -1481,https://www.mass.gov/doc/fitzgibbon-daniel-v-boston-police-department-related-superior-court-decision-32113/download,Court Cases,200,"","",[],[],[],[],[],[] -1482,https://delcopa.gov/pdf/2021budget.pdf,Policies & Contracts,200,"","",[],[],[],[],[],[] -1483,http://www.longbeach.gov/police/about-the-lbpd/bureaus/investigations-bureau/detective-division/auto-theft-detail-and-t.r.a.p/,Resources,200,Auto Theft Detail and T.R.A.P.,"","[""Police Department""]","[""Auto Theft Detail And T.R.A.P""]","[""Mayor"", ""City Council"", ""Rex Richardson"", ""Mary Zendejas"", ""Cindy Allen"", ""Kristina Duggan"", ""Daryl Supernaw"", ""Megan Kerr"", ""Suely Saro"", ""Roberto Uranga"", ""Al Austin"", ""Dr. Joni Ricks-Oddie"", ""Dawn McIntosh"", ""Laura L. Doud"", ""Doug Haubert"", ""Tom Modica"", ""Monique DeLaGarza"", ""City-Wide Elected Officials"", ""Appointed Officials"", ""Online Payments"", ""Online Services"", ""In-Person Services"", ""Opening a Business"", ""Doing Business With The City"", ""Resources"", ""Most Popular"", ""Online Resources"", ""Attractions"", ""Business Associations"", ""Travel Resources"", ""Departments"", ""Job Opportunities"", ""Information"", ""LBPD"", ""Employment"", ""Bureaus"", ""News & Events"", ""Crime Info"", ""How Do I"", ""How Do I"", ""Contact Us"", ""\u00a0TASK FORCE FOR REGIONAL AUTO THEFT PREVENTION (T.R.A.P.)"", ""Do."", ""Discover."", ""Connect."", ""Ask.""]","["""", ""1st District"", ""2nd District"", ""3rd District"", ""4th District"", ""5th District"", ""6th District"", ""7th District"", ""8th District"", ""9th District"", ""City Attorney"", ""City Auditor"", ""City Prosecutor"", ""City Manager"", ""City Clerk"", ""\u00a0REPORTING AUTO THEFT"", ""\u00a0CHECKING YOUR AUTO THEFT CASE STATUS"", ""\u00a0RENTAL CAR THEFTS AND EMBEZZLEMENT"", ""\u00a0FAILURE TO RETURN A BORROWED CAR"", ""\u00a0LAWS PERTAINING TO AUTO THEFT\u00a0""]","[""Long Beach Police non-emergency (562) 435-6711"", ""Long Beach Police business desks:"", ""File a Report Online"", ""Submit a Tip"", ""Submit a Commendation"", ""File a Complaint"", ""Ride Along Program"", ""\u00a0"", ""\u00a0"", ""\u00a0"", ""\u00a0"", ""Crime Lab Survey"", ""\u00a0""]",[] -1484,https://www.ci.san-ramon.ca.us/our_city/departments_and_divisions/police/srpd-downloads,Poor Data Source,200," - SRPD Downloads - City of San Ramon -","","[""SRPD Downloads""]","[""Contact Us"", ""Useful Links""]",[],[],[],[] -1485,https://www.antioch.il.gov/event/police-fire-commission-special-meeting-4/,Poor Data Source,200,"Police & Fire Commission Special Meeting - Antioch, IL","","[""Police & Fire Commission Special Meeting""]",[],[],[],[],[] -1486,http://www.longbeach.gov/police/press-releases/murder-investigation---2300-block-of-elm-avenue/,Media Bulletins,200,MURDER INVESTIGATION - 2300 BLOCK OF ELM AVENUE,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1487,https://dps.iowa.gov/former-clarksville-police-officer-arrested,Media Bulletins,200,Former Clarksville Police Officer Arrested | Iowa Department of Public Safety,"September 1, 2022 Butler County, Iowa - On March 4, 2022, a minor under the age of 18 reported to the Butler County Sheriff’s Office that Clarksville police officer Mike Tobin had showed the minor sexually explicit images and videos that were evidence in a pending criminal case. Those images included nude images of minors. Tobin’s employment with the City of Clarksville was discontinued on March 5th, 2022. The Iowa Division of Criminal Investigation was asked to assist with the investigation.","[""\n\n Iowa Department of\n \n\n Public Safety\n \n"", ""Former Clarksville Police Officer Arrested \n""]",[],[],[],[],[] -1488,http://www.longbeach.gov/police/press-releases/dui-checkpoint-1-/,Media Bulletins,200,DUI CHECKPOINT(1),"","[""Long BeachPolice Department""]",[],[],[],[],[] -1489,https://alpha.austin.gov/es/police-oversight/formal-complaint-de-escalation-of-potential-force-encounters-and-other-policy-violations-3/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1490,https://www.southamptontownnypolice.gov/faq.aspx?qid=554,Resources,200,FAQs • How do I upload a completed documents?,"",[],"[""\n\u25bc\r\nOnline Service Assistance\t\t""]","[""Loading"", ""Site Tools"", ""Categories"", ""Live Edit"", ""Contact Us"", ""Site Links""]",[],[],[] -1491,https://www.southamptontownnypolice.gov/faq.aspx?qid=78,Resources,200,FAQs • A house in my neighborhood burned down. How long do I,"",[],"[""\n\u25bc\r\nPublic Safety - Code Enforcement\t\t""]","[""Loading"", ""Site Tools"", ""Categories"", ""Live Edit"", ""Contact Us"", ""Site Links""]",[],[],[] -1492,http://www.longbeach.gov/police/press-releases/charges-filed-against-robbery-suspects/,Media Bulletins,200,CHARGES FILED AGAINST ROBBERY SUSPECTS,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1493,http://www.longbeach.gov/police/press-releases/improving-motorcycle-safety-aim-of-l-b-p-d--operation-2-/,Media Bulletins,200,Improving Motorcycle Safety Aim of L.B.P.D. Operation(2),"","[""Long BeachPolice Department""]",[],[],[],[],[] -1494,https://bouldercolorado.gov/events/police-oversight-panel-community-engagement-committee-meeting-0,Misc Police Activity,200,Police Oversight Panel - Community Engagement Committee Meeting | City of Boulder,"","[""Police Oversight Panel - Community Engagement Committee Meeting\n""]","[""Breadcrumb"", ""Details"", ""Police Oversight Panel Meetings"", ""Meeting Details"", ""More Resources""]","[""\nPolice Oversight Panel Subcomittee: Legacy Meeting\n\n"", ""\nPolice Oversight Panel: Meeting with Interim Chief Redfern\n\n"", ""\nPolice Oversight Panel Subcommittee: Community Engagement Meeting\n\n"", ""\nPolice Oversight Panel Subcomittee: Co-Chairs and IPM Meeting\n\n"", ""\nPolice Oversight Panel: All Panel Meeting\n\n"", ""\nPolice Oversight Panel Subcommitee: Co-Chairs and IPM Meeting\n\n""]",[],[],[] -1495,http://police.portlandmaine.gov/650/needle-exchange-program,Resources,200,"Needle Exchange Program | Portland, ME - Official Website",Discover the harm reduction services offered by Portland Public Health including our needle exchange program. ,"[""Needle Exchange Program""]",[],[],[],[],[] -1496,https://delcopa.gov/departments/parks/pdf/redwoodmonthlyschedule.pdf,Poor Data Source,200,"","",[],[],[],[],[],[] -1497,https://delcopa.gov/publicrelations/releases/2018/hopefortheholidays.html,Media Bulletins,200,"Heroin Task Force connects residents with treatment this holiday season - Delaware County, Pennsylvania","","[""Heroin Task Force connects residents with treatment this holiday season""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -1498,https://detroitmi.gov/es/departments/departamento-de-policia/detroit-police-department-shield-program/recursos-de-socios-comunitarios,Poor Data Source,200,Recursos de socios comunitarios | City of Detroit,"¿Por qué unirse a SHIELD? Con el crecimiento de una ciudad próspera y la promesa de un mayor comercio en Detroit, surgen mayores preocupaciones de seguridad para las fuerzas del orden público, los dueños de negocios, los centros de culto y los ciudadanos por igual. Los sectores público y privado son más fuertes trabajando juntos que cada uno solo. Esta asociación es la piedra angular en la defensa de la Ciudad contra el terrorismo. DPD Shield es un destino central para obtener información crítica e involucrar a los recursos del departamento de policía. DPD Shield también busca información de nuestra comunidad y socios del sector privado para ayudar en nuestros esfuerzos para mantener la Ciudad Lo que pedimos El programa DPD SHIELD es una vía de comunicación de dos vías. La clave del éxito es que la información fluya en dos direcciones. Los socios de la comunidad sirven como los ojos y los oídos del DPD SHIELD y sirven para impactar directamente los esfuerzos para prevenir el crimen y los actos de terrorismo al informar sobre comportamientos sospechosos lo antes posible. Además, reconocemos que nuestros socios comunitarios están especialmente calificados para ayudar al personal del Departamento de Policía de Detroit durante un incidente. Sabes lo que pertenece y lo que está fuera de lugar. Compartiendo su perspectiva y trabajando juntos, estamos mejor preparados para enfrentar los desafíos más difíciles.","[""\nRecursos de socios comunitarios\n""]","[""Top Links"", ""Site Menu"", ""\nPreguntas frecuentes sobre el escudo de la polic\u00eda de Detroit\n\n""]",[],"[""CONTACTOS"", ""MEN\u00da DE DEPARTAMENTO""]",[],[] -1499,https://www.normanok.gov/public-safety/police-department/divisions/professional-standards,Complaints & Misconduct,200,"Professional Standards | City of Norman, OK",Information on the Norman Police Department's Professional Standards Division.,"[""City of Norman, OK"", ""City of Norman, OK"", ""Professional Standards\n""]","[""What can we help you find?"", ""Breadcrumb"", ""\n Make A Formal Complaint \n"", ""\n Commend An Officer or NPD Employee\n"", ""Footer menu"", ""Footer Second Column"", ""Connect with Us""]","[""Divisions""]","[""\nNOTICE\n"", ""\nNOTICE\n"", ""\nNOTICE\n""]","[""Winter Weather Information"", ""Business and Citizen Self-Service Portal"", ""Information on City Council and Committee Meetings""]",[] -1500,http://www.longbeach.gov/police/press-releases/traffic-fatality7/,Media Bulletins,200,TRAFFIC FATALITY,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1501,https://alpha.austin.gov/en/health-safety/accountability-and-transparency-in-policing/contribute-to-police-oversight/file-a-complaint-about-an-austin-police-officer/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1502,https://pittsburghpa.gov/police/police-administration,Poor Data Source,200,Administration Branch | pittsburghpa.gov,"","[""CAREERS"", ""CONTACT US"", ""FOLLOW US"", ""GU\u00cdA DE RESIDENTES"", ""Administration Branch"", ""City-County Building Lighting - What Do Tonight's Colors Represent?""]",[],"[""DEPARTMENT MENU""]","[""Police Branches"", ""About Police"", ""Community Engagement Office"", ""Police Zones"", ""Police Data"", ""Resources"", ""News"", ""Police Links""]",[],[] -1503,http://www.longbeach.gov/police/press-releases/dui-enforcement-operations-planned-this-weekend-3-/,Media Bulletins,200,DUI ENFORCEMENT OPERATIONS PLANNED THIS WEEKEND(3),"","[""Long BeachPolice Department""]",[],[],[],[],[] -1504,https://www.mass.gov/event/2022-lowell-police-open-house-2022-01-10t170000-0500-2022-01-10t190000-0500,Poor Data Source,200,2022 Lowell Police Open House | Mass.gov,"","[""\n 2022 Lowell Police Open House\n ""]","[""Overview\n of 2022 Lowell Police Open House"", ""Participating Organizations\n "", ""Help Us Improve Mass.gov with your feedback""]",[],[],[],[] -1505,https://www.lynchburgvapolice.gov/wp-content/uploads/2022/10/suspect-express-lane-76-gas-10.27.2022-e1666893965762.png,Poor Data Source,404,"","",,,,,, -1506,https://southcoffeyvilleok.gov/police-department/contact/,Contact Info & Agency Meta,200," -Contact Police Department -","",[],"[""\n Contact Police Department "", ""South Coffeyville Police Department""]","[""Contact Town of South Coffeyville"", """"]",[],"[""\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tCall Us\t\t\t\t\t\t\t\t\t\t\t\t\t"", ""\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tEmail us at\t\t\t\t\t\t\t\t\t\t\t\t\t"", ""\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tVisit the Police Station\t\t\t\t\t\t\t\t\t\t\t\t\t"", ""\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tJoin the SCPD\t\t\t\t\t\t\t\t\t\t\t\t\t"", ""\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tDonate to SCPD\t\t\t\t\t\t\t\t\t\t\t\t\t"", ""\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tSend Us Mail\t\t\t\t\t\t\t\t\t\t\t\t\t""]",[] -1507,https://www.pleasantprairiewi.gov/departments/police/retail_theft_reporting,Resources,200," - Retail Theft Reporting - Village of Pleasant Prairie -","",[],"[""Retail Theft Reporting""]","[""Follow Us on Social Media""]","[""PLEASANT PRAIRIE POLICE DEPARTMENT RETAIL THEFT REPORTING PROCEDURE"", ""INSTRUCTIONS FOR STORE EMPLOYEES""]","[""Before reporting a Retail Theft, please follow below for proper reporting procedures:"", ""\u2022\u00a0\u00a0Contact the Pleasant Prairie Police Department immediately if:"", ""\u2022 Complete a Retail Theft Packet if any of the below situations apply:"", ""\u2022 Do not call if you do not wish to prosecute or can\u2019t articulate what was taken."", """", ""\n\nPlease call or deliver the completed packet within 7 days of the theft:""]",[] -1508,https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/summary/042622summary.pdf,Poor Data Source,404,"","",,,,,, -1509,https://delcopa.gov/council/2020minutes/05202020minutes.pdf,Poor Data Source,200,"","",[],[],[],[],[],[] -1510,https://www.sandiego.gov/department-document/mayor-glorias-appointment-citizens-advisory-board-policecommunity-relations,Media Bulletins,200,Mayor Gloria's Appointment to the Citizen's Advisory Board on Police/Community Relations | City of San Diego Official Website,"","[""City of San Diego Official Website""]","[""Main navigation"", ""Leisure"", ""Resident Resources"", ""Doing Business"", ""Library"", ""Public Safety"", ""City Hall"", ""Accessibility Tools"", ""Mayor Gloria's Appointment to the Citizen's Advisory Board on Police/Community Relations"", ""Footer""]",[],"[""Parks"", ""Outdoors"", ""Neighborhoods"", ""Recreational Activities"", ""Street Maintenance"", ""Plan"", ""Fix"", ""Build"", ""Programs & Events"", ""Services"", ""Kids & Teens"", ""eCollection"", ""Police"", ""Fire-Rescue"", ""Lifeguards"", ""City Officials"", ""City Government""]",[],[] -1511,https://www.mass.gov/doc/chicopee-district-court/download,Misc Police Activity,200,"","",[],[],[],[],[],[] -1512,https://delcopa.gov/controller/pdf/2022/faq-changetothecustodialbankfordelawarecountyretirementaccounts.pdf,Resources,200,"","",[],[],[],[],[],[] -1513,https://www.troyny.gov/mayor-madden-announces-the-promotion-of-steven-barker-to-the-rank-of-assistant-chief-of-police/,Poor Data Source,404,"","",,,,,, -1514,http://www.longbeach.gov/police/press-releases/traffic-fatality-5-/,Media Bulletins,200,TRAFFIC FATALITY(5),"","[""Long BeachPolice Department""]",[],[],[],[],[] -1515,https://cheswold.delaware.gov/cheswold-police-department-crime-statistics/january-16-activity-report/,Incident Reports,200,January 16 Activity Report - Town of Cheswold,"","[""Cheswold""]","[""Delaware"", ""January 16 Activity Report""]","[""Menu""]","[""Address:"", ""Call Us:"", ""Reach Out:""]",[],[] -1516,https://delcopa.gov/courts/judges/kelly.html,Personnel Records,200,President Judge Kevin F. Kelly - Delaware County Court of Common Pleas,"","[""Judge Kevin F. Kelly""]",[],"[""Contact Us"", ""Courts Quick Links"", ""Government Center Quick Links"", ""About Delaware County""]",[],[],[] -1517,https://www.mass.gov/doc/the-challenging-investment-climate-how-to-cope/download,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -1518,http://www.longbeach.gov/police/press-releases/robbery-suspect-arrested-and-charged-2-/,Media Bulletins,200,ROBBERY SUSPECT ARRESTED AND CHARGED(2),"","[""Long BeachPolice Department""]",[],[],[],[],[] -1519,https://twp.northfield.il.us/coffee-with-a-cop-northbrook/,Poor Data Source,404,"","",,,,,, -1520,https://delcopa.gov/publicrelations/releases/2021/pdf/delcoerainpersonflyer.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -1521,https://www.naperville.il.us/services/naperville-police-department/programs-and-services/false-alarm-reduction-program/,Resources,200,False Alarm Reduction Program | The City of Naperville,Security system false alarms are the Naperville Police Department's third most frequent call for service. This program seeks to reduce the frequency of such calls.,"[""False Alarm Reduction Program""]","[""Programs and Services "", ""What is a false alarm?"", ""Are false alarms a problem in Naperville?"", ""What happens when your burglar alarm system is activated?"", ""Before you activate your alarm system:"", ""What are the most frequent causes of false alarms?"", ""What are the consequences of having a police response for an activated false burglar alarm?"", ""Do I need a permit or to register my burglary alarm system?"", ""Contact"", ""Alarm Statistics for 2020"", ""\nNaperville Police Department\n""]","[""Explore""]","[""\nJulie Smith\n""]","[""Helping Residents Build a Better Community"", ""Resources for Doing Business in Naperville""]",[] -1522,https://alpha.austin.gov/police-oversight/2020-06-4-18/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1523,https://www.va.gov/martinsburg-health-care/stories/martinsburg-vamc-premiers-use-of-disposable-duodenoscopes/,Not Criminal Justice Related,200,Martinsburg VAMC Premiers Use Of Disposable Duodenoscopes | VA Martinsburg Health Care | Veterans Affairs,"A single use duodenoscope eliminates the need for reprocessing and allows physicians to use a new, completely sterile device for every procedure.","[""Martinsburg VAMC premiers use of disposable duodenoscopes""]",[],[],[],[],[] -1524,https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0460/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1525,https://spdblotter.seattle.gov/2012/03/02/south-seattle-residents-police-team-up-to-take-back-rainier-beach/,Misc Police Activity,200,"South Seattle Residents, Police Team Up to ""Take Back"" Rainier Beach - SPD Blotter","","[""South Seattle Residents, Police Team Up to \u201cTake Back\u201d Rainier Beach""]","[""Find Posts By Topic"", ""You might also like..."", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[] -1526,https://delcopa.gov/publicrelations/releases/2019/prisonboardmeetingcancelled.html,Poor Data Source,200,"Oct. 8 Board of Prison Inspectors meeting cancelled - Delaware County, Pennsylvania","","[""Oct. 8 Board of Prison Inspectors meeting cancelled""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -1527,https://delcopa.gov/ojs/efileforms/ojs forms for efile/writofsummons.pdf,Poor Data Source,200,"","",[],[],[],[],[],[] -1528,https://alpha.austin.gov/en/health-safety/accountability-and-transparency-in-policing/police-feedback-and-records/summary-of-overarching-recommendations/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1529,https://delcopa.gov/workshops/,Not Criminal Justice Related,200,Untitled Document,"",[],[],[],[],[],[] -1530,https://alpha.austin.gov/en/police-oversight/formal-complaint-purpose-and-scoperesponsibility-to-the-community-and-other-policy-violations-1/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1531,https://ose.louisiana.gov/event/chief-of-police/,Poor Data Source,200,Chief of Police | Louisiana Office of State Examiner,"","["""", ""Chief of Police""]",[],"[""Competitive Level""]",[],[],"[""Recent Posts"", ""Archives"", ""Categories"", ""Meta""]" -1532,http://www.longbeach.gov/police/press-releases/l-b-p-d--offers-holiday-safety-tips/,Media Bulletins,200,L.B.P.D. Offers Holiday Safety Tips,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1533,https://www.sandiego.gov/department-document/police-identify-emerald-hills-homicide-victim,Media Bulletins,200,Police Identify Emerald Hills Homicide Victim | City of San Diego Official Website,"","[""City of San Diego Official Website""]","[""Main navigation"", ""Leisure"", ""Resident Resources"", ""Doing Business"", ""Library"", ""Public Safety"", ""City Hall"", ""Accessibility Tools"", ""Police Identify Emerald Hills Homicide Victim"", ""Footer""]",[],"[""Parks"", ""Outdoors"", ""Neighborhoods"", ""Recreational Activities"", ""Street Maintenance"", ""Plan"", ""Fix"", ""Build"", ""Programs & Events"", ""Services"", ""Kids & Teens"", ""eCollection"", ""Police"", ""Fire-Rescue"", ""Lifeguards"", ""City Officials"", ""City Government""]",[],[] -1534,https://rocklandmaine.gov/police-department/pedestrian-safety-crosswalk-safety/attachment/crosswalk-enforcement-2/,Poor Data Source,200,"Crosswalk Enforcement | The City of Rockland, Maine","","[""Crosswalk Enforcement""]",[],"[""All Current Alerts & Announcements"", ""Current Weather"", ""City of Rockland""]",[],[],[] -1535,https://alpha.austin.gov/police-oversight/formal-complaint-impartial-attitude-and-courtesy-and-other-policy-violations-6/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1536,https://ci.piedmont.ca.us/services___departments/police/services/request_a_report,Resources,200," - Request a Report - City of Piedmont -","","[""\r\n City of\r\n Piedmont""]",[],"[""\n"", ""How to Obtain a Police Report or Records Release""]",[],[],[] -1537,http://www.longbeach.gov/police/press-releases/dui---driver-s-license-checkpoint-planned-this-weekend-2147407661/,Media Bulletins,200,DUI & Driver's License Checkpoint Planned this Weekend,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1538,http://www.longbeach.gov/police/press-releases/sexual-assault-suspect-arrested--additional-victims-sought/,Media Bulletins,200,SEXUAL ASSAULT SUSPECT ARRESTED; ADDITIONAL VICTIMS SOUGHT,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1539,https://www.southamptontownnypolice.gov/1560/candle-light-vigil,Misc Police Activity,200,"Candle Light Vigil | Southampton, NY - Official Website","","[""\r\n\r\nCandle Light Vigil\t\t""]",[],"[""Loading"", ""Site Tools"", ""Contact Us"", ""Site Links""]",[],[],[] -1540,https://www.southamptontownnypolice.gov/faq.aspx?qid=425,Resources,200,FAQs • Will Cooper’s Beach be open? ,"",[],"[""\n\u25bc\r\nFAQ (COVID-19) | Southampton Town Beaches \t\t""]","[""Loading"", ""Site Tools"", ""Categories"", ""Live Edit"", ""Contact Us"", ""Site Links""]",[],[],[] -1541,http://www.tampa.gov/police/info/honoring-our-heroes/1998/detective-randy-bell,Media Bulletins,200,Detective Randy Bell | City of Tampa,"On May 19, 1998, Detective Randy Bell, age 44 and Detective Ricky Childers, age 46, were assigned to the Homicide Squad. They were conducting an investigation involving the shooting death of a 4-year-old boy with an assault rifle. Detectives Bell and Childers took the father of the boy, Bennett, to Police headquarters for interviewing. Due to Bennett's inconsistent interview, he was taken back to the crime scene to re-enact his statements to the detectives. Unknown to the detectives, Mr. Bennett provided a false name and date of birth. In truth, Mr.","[""Detective Randy Bell\n""]","[""Police Department"", ""Key Services"", ""Report A Problem"", ""Contact"", ""Connect With Us""]",[],[],[],[] -1542,https://alpha.austin.gov/es/police-oversight/formal-complaint-2020-1346/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1543,http://www.longbeach.gov/police/press-releases/officer-involved-shootings-occur-after-suspect-fires-at-officers--leads-police-on-vehicle-pursuit/,Media Bulletins,200,OFFICER INVOLVED SHOOTINGS OCCUR AFTER SUSPECT FIRES AT OFFICERS; LEADS POLICE ON VEHICLE PURSUIT,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1544,https://www.coppelltx.gov/903/coppell-recreation-and-development-corpo,Not Criminal Justice Related,200,"Coppell Recreation and Development Corporation | Coppell, TX",Learn more about this voter authorized sales tax revenue fund.,"[""\r\n\r\nCoppell Recreation and Development Corporation\t\t""]","[""Question or Comment? ""]","[""Loading"", ""Contact Us""]","[""Strategic Financial Engagement""]",[],[] -1545,https://www.sanramon.ca.gov/our_city/departments_and_divisions/police/victims_rights_information/domestic_violence,Resources,200," - Domestic Violence - City of San Ramon -","","[""Domestic Violence""]","[""Contact Us"", ""Contact Us"", ""Useful Links""]","[""RESOURCE INFORMATION FOR VICTIMS OF DOMESTIC VIOLENCE""]",[],[],[] -1546,https://www.mass.gov/doc/cruceta-neysa-v-boston-police-department-4512/download,Court Cases,200,"","",[],[],[],[],[],[] -1547,https://www.montgomeryohio.gov/police-department-2020-annual-report/office-otte-sro/,Poor Data Source,200,"- Montgomery, Ohio","","[""""]","[""Primary menu links"", ""Action toolbar"", ""Welcome"", ""Engage"", ""Help"", ""Mental Health Resource""]",[],[],[],[] -1548,https://dccouncil.gov/donation-disclosures/copy-of-april-2018-donation-disclosure-4/,Media Bulletins,200,Copy of April 2018 Donation Disclosure • Council of the District of Columbia,"","[""Copy of April 2018 Donation Disclosure""]",[],[],[],[],[] -1549,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/arrests/092421arrests.pdf,Arrest Records,200,"","",[],[],[],[],[],[] -1550,https://champaignil.gov/2014/04/23/fire-and-police-memorial-public-dedication-ceremony/,Not Criminal Justice Related,200,Fire and Police Memorial Public Dedication Ceremony - Update - City of Champaign,"","[""Fire and Police Memorial Public Dedication Ceremony \u2013 Update""]","[""News Releases"", ""Department News""]",[],[],[],[] -1551,https://alpha.austin.gov/en/police-oversight/notice-of-complaint-related-to-2022-0976/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1552,https://www.pleasantprairiewi.gov/departments/police/news/police_and_fire___rescue_news_archive/2017_news_releases/police_continue_missing_person_investigation,Media Bulletins,200," - Police Continue Missing Person Investigation - Village of Pleasant Prairie -","",[],"[""Police Continue Missing Person Investigation""]","[""Follow Us on Social Media""]",[],[],[] -1553,https://alpha.austin.gov/en/police-oversight/notice-of-complaint-related-to-2022-0129/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1554,http://www.longbeach.gov/police/press-releases/business-license-operation-conducted/,Media Bulletins,200,BUSINESS LICENSE OPERATION CONDUCTED,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1555,https://www.antioch.il.gov/wpfb-file/08-11-10-police-and-fire-commission-minutes-pdf-2/,Not Criminal Justice Related,200,"08-11-10 Police And Fire Commission Minutes - Antioch, IL",8960 08 11 10 police and fire commission minutes pdf commissions 2010 1284749388 415e95087ff8cdaefd2217d9ff094969 213x300 _zutqomf10kfw thumb jpg 09 17 13 49 48 0 pdf application num_pages pdf_pages timings,"[""08-11-10 Police And Fire Commission Minutes""]",[],[],[],[],[] -1556,https://delcopa.gov/publicrelations/releases/2020/staythecourse.html,Media Bulletins,200,"Governor Urges Residents, Business Owners and Politicians to “Stay the Course” - Delaware County, Pennsylvania","","[""Governor Urges Residents, Business Owners and Politicians to \u201cStay the Course\u201d""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -1557,http://www.longbeach.gov/police/press-releases/robbery-suspects-arrested/,Media Bulletins,200,ROBBERY SUSPECTS ARRESTED,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1558,https://delcopa.gov/jdboard/pdfs/minutes_2021_09_21.pdf,Misc Police Activity,200,"","",[],[],[],[],[],[] -1559,https://police.kingstontn.gov/team/raymond-gold/,Poor Data Source,200,Raymond Gold – Kingston Police Department,"",[],[],[],[],[],[] -1560,https://www.montebelloca.gov/departments/police/news/all_news_articles/national_night_out_2021,Misc Police Activity,200," - National Night Out 2021 - City of Montebello -","","[""City of Montebello""]","[""National Night Out 2021""]",[],[],[],[] -1561,https://www.lynchburgvapolice.gov/wp-content/uploads/2021/05/headlamp-2940-scaled.jpg,Poor Data Source,200,"","",[],[],[],[],[],[] -1562,http://www.ryepolice.us/logs/police-logs-for-4-22-20-4-28-20,Daily Activity Logs,200,Rye Police Department Police Logs for 4/22/20-4/28/20 - Rye Police Department,"","[""Police Logs for 4/22/20-4/28/20""]","[""Police Logs for 4/22/20-4/28/20""]","[""Navigation"", ""Follow Us"", ""Facebook"", ""Email Updates"", ""Storm Preparedness Guide""]",[],[],[] -1563,https://mtcb.colorado.gov/police/animal-regulations-ordinances,Resources,200,Animal Regulations & Ordinances | Town of Mt. Crested Butte,Dog Registration The town of Mt. Crested Butte requires your dog to be registered. Proof of rabies vaccination will be required to register your dog. Fees to register are $10 if the dog has been spayed or neutered or $25 if they have not. Licenses are not transferable and are non-refundable. To renew or pay for a lost tag is $5. To obtain a dog license you have a few options:,"[""\nAnimal Regulations & Ordinances\n""]",[],"[""\n"", """"]",[],[],"[""Dog Registration"", ""Animal Ordinances in Mt. Crested Butte""]" -1564,http://www.ryepolice.us/logs/police-logs-for-52516-53116,Daily Activity Logs,200,Rye Police Department Police Logs for 5/25/16-5/31/16 - Rye Police Department,"","[""Police Logs for 5/25/16-5/31/16""]","[""Police Logs for 5/25/16-5/31/16""]","[""Navigation"", ""Follow Us"", ""Facebook"", ""Email Updates"", ""Storm Preparedness Guide""]",[],[],[] -1565,https://delcopa.gov/ich/resources/covid19/pdf/delcocovid19vaccinationsites.pdf,Poor Data Source,200,"404 - Delaware County, Pennsylvania","","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -1566,https://delcopa.gov/publicrelations/releases/2019/energyefficiency.html,Not Criminal Justice Related,200,"Delaware County Participates in Energy Efficiency Day 2019 - Delaware County, Pennsylvania","","[""Delaware County Participates in Energy Efficiency Day 2019""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]","[""4th annual national event urges citizens to \u201cSave Money. Cut Carbon. Breathe Easier.\u201d""]",[],[] -1567,https://cheswold.delaware.gov/cheswold-police-department-policy-and-procedure-manual/reports/,Policies & Contracts,200,Reports - Town of Cheswold,"","[""Cheswold""]","[""Delaware"", ""Reports""]","[""Menu""]","[""Address:"", ""Call Us:"", ""Reach Out:""]",[],[] -1568,http://police.portlandmaine.gov/400/payments,Resources,200,"Payments | Portland, ME - Official Website",The City of Portland offers four ways to make parking ticket payments so that you can choose the method that is most convenient for you.,"[""Payments""]",[],[],[],[],[] -1569,https://delcopa.gov/courts/pdf/emergencyjudicialorders/sixthemergencyextensionorder_criminalsection.pdf,Court Cases,200,"","",[],[],[],[],[],[] -1570,https://www.mass.gov/doc/cspolicechiefeeinstructions2010doc/download,Poor Data Source,200,"","",[],[],[],[],[],[] -1571,https://www.mass.gov/doc/011718-public-scoping-meeting-commercial-menhaden-management/download,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -1572,https://delcopa.gov/pollingplace/,Not Criminal Justice Related,200,Untitled Document,"",[],[],[],[],[],[] -1573,https://police.greenvillesc.gov/1826/laurens-road-transit-study,Not Criminal Justice Related,404,"","",,,,,, -1574,http://lafayettepolice.us/1099/operations,Poor Data Source,200,"Operations | Lafayette, IN - Official Website","","[""\r\n\r\nOperations\t\t""]",[],"[""Loading"", ""Contact Us"", ""FAQs"", ""Site Links""]","[""\nCommunity Services\n"", ""\nDivisions\n""]",[],[] -1575,https://www.mass.gov/doc/2021-hanover-police-lieutenant-sole-assessment-center-examination-employment-verification-form/download,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -1576,http://www.ryepolice.us/logs/police-logs-for-7-25-18-7-31-18,Daily Activity Logs,200,Rye Police Department Police Logs for 7/25/18-7/31/18 - Rye Police Department,"","[""Police Logs for 7/25/18-7/31/18""]","[""Police Logs for 7/25/18-7/31/18""]","[""Navigation"", ""Follow Us"", ""Facebook"", ""Email Updates"", ""Storm Preparedness Guide""]",[],[],[] -1577,https://hollister.ca.gov/government/city-departments/police/,Media Bulletins,200,"Police – City of Hollister, California","","[""\u00a0San Benito County Opioid Task Force""]",[],"[""Follow Us on..."", ""A Message from Chief Reynoso"", ""San Benito County Public Safety PSA"", ""HPD Values and Vision"", ""Follow Us on....""]",[],[],[] -1578,https://www.foxcrossingwi.gov/departments/police-department/patrol/wreck/,Poor Data Source,200,wreck - Fox Crossing Fox Crossing,"",[],"[""Patrol \u00bb wreck""]",[],[],[],[] -1579,https://www.lakewoodoh.gov/coffee-with-a-cop-set-for-friday-january-12th/,Misc Police Activity,200,"Coffee with a Cop set for Friday, January 12th | The City of Lakewood, Ohio","The Lakewood Police Department will host another ""Coffee With A Cop"" event on Friday, January 12, 2018 from 8:00 a.m. to 10:00 a.m. at McDonald's , 16407","[""Coffee with a Cop set for Friday, January 12th""]",[],"[""Recent News"", ""Upcoming Events"", ""Most Popular Pages""]",[],[],[] -1580,https://www.panynj.gov/police/en/about/leadership.html#main,Personnel Records,200,Leadership,"",[],[],[],[],[],[] -1581,https://gonzalesca.gov/services/police/how-do-i/learn-what-do-if-i-become-victim-crime,Resources,200,Learn what to do if I become the victim of a crime? | City of Gonzales,"Official City of Gonzales, CA website. Find the latest news, events, and information for residents and businesses....","[""The City of Gonzales, California"", ""The City of Gonzales, California""]","[""Top menu"", ""Learn what to do if I become the victim of a crime?""]",[],"[""CITY OF GONZALES""]",[],[] -1582,https://southamptontownnypolice.gov/faq.aspx?qid=323,Not Criminal Justice Related,200,FAQs • Who regulates deer hunting in the Town of Southampton,"",[],"[""\n\u25bc\r\nHunting Season\t\t""]","[""Loading"", ""Site Tools"", ""Categories"", ""Live Edit"", ""Contact Us"", ""Site Links""]",[],[],[] -1583,https://www.hayward-ca.gov/police-department/public-services/youth-family-services-bureau/contact,Resources,200,Contact | City of Hayward - Official website,"We have experienced mental health counselors answering the phone during business hours who can provide information and referrals to meet a range of needs. Sometimes, it can be difficult to reach out for help, but the supportive YFSB counselors can walk you through the process and make sure your family receives the services they need.To find out more about which YFSB counseling",[],"[""Contact"", ""You are here. So is everything else."", ""Search form""]",[],"[""Receive crime bulletins and alerts"", ""Report\n Problems"", ""Ask\n Questions"", ""Make a\n Suggestion"", ""Translate"", ""Search""]",[],[] -1584,http://lafayettepolice.us/3400/enrichment-and-training-programs,Not Criminal Justice Related,200,"Enrichment and Training Programs | Lafayette, IN - Official Website","","[""\r\n\r\nEnrichment and Training Programs\t\t""]","[""About Enrichment"", ""CPZ\u2019s Enrichment Program"", ""How You Can Help""]","[""Loading"", ""Click below to view our Amazon Wishlist"", ""Contact Us"", ""FAQs"", ""Site Links""]",[],[],[] -1585,https://delcopa.gov/vetaffairs/forms/va26-1880-are.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -1586,https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0034/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1587,https://champaignil.gov/tag/police-chief-recruitment/,Media Bulletins,200,Police Chief Recruitment Archives - City of Champaign,"","[""Items tagged: Police Chief Recruitment""]","[""City of Champaign Announces Finalists for Chief of Police Position"", ""City of Champaign Extends Application Deadline for Police Chief Recruitment"", ""Community Meetings Held for Public Works Director and Police Chief Recruitments"", ""News Releases"", ""Department News""]",[],[],[],[] -1588,http://www.longbeach.gov/police/press-releases/dui-driver-s-license-checkpoint-planned-this-weekend-8-/,Media Bulletins,200,DUI-DRIVER'S LICENSE CHECKPOINT PLANNED THIS WEEKEND(8),"","[""Long BeachPolice Department""]",[],[],[],[],[] -1589,https://southamptontownnypolice.gov/faq.aspx?qid=485,Not Criminal Justice Related,200,FAQs • How long does it take to receive my rebate?,"",[],"[""\n\u25bc\r\nSeptic Rebate Program\t\t""]","[""Loading"", ""Site Tools"", ""Categories"", ""Live Edit"", ""Contact Us"", ""Site Links""]",[],[],[] -1590,https://www.antioch.il.gov/2017/09/18/police-department-media-release-2/,Media Bulletins,200,"Police Department Media Release - Antioch, IL","Media Release September 18, 2017 Antioch, IL- On September 14, 2017, an off-duty Antioch Police Officer was returning to Antioch from training while driving a police vehicle. Around 5:00pm he noticed that a silver vehicle appeared to be following him. The driver of the vehicle, later identified as 68 year old David L. Larsen, of","[""Police Department Media Release""]",[],[],[],[],[] -1591,https://www.southamptontownnypolice.gov/faq.aspx?qid=443,Resources,200,FAQs • Can I get a beach permit if I do not own a vehicle?,"",[],"[""\n\u25bc\r\nFAQ (COVID-19) | Southampton Town Beaches \t\t""]","[""Loading"", ""Site Tools"", ""Categories"", ""Live Edit"", ""Contact Us"", ""Site Links""]",[],[],[] -1592,https://delcopa.gov/publicrelations/releases/18pdfs/18opioidmentalsummit.pdf,Misc Police Activity,200,"","",[],[],[],[],[],[] -1593,https://www.huntsvilleal.gov/huntsville-police-department-honors-12-fallen-officers-2/,Media Bulletins,200,Huntsville Police Department honors 12 fallen officers - City of Huntsville,"","[""Huntsville Police Department honors 12 fallen officers""]","[""Top Requests"", ""HSV TV"", ""City News"", ""Contact Us""]",[],[],"[""Browse By Month "", ""Browse By Category "", ""Share & Print"", ""Huntsville Police Department honors 12 fallen officers""]",[] -1594,https://alpha.austin.gov/police-oversight/formal-complaint-purpose-and-scope-10/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1595,https://council.seattle.gov/2016/09/15/our-north-seattle-police-precinct/,Policies & Contracts,200,Our North Seattle Police Precinct - Seattle City Council Blog,"","[""Our North Seattle Police Precinct""]",[],"[""HELPFUL LINKS"", ""Make your voice heard"", ""Councilmembers""]",[],[],[] -1596,https://www.southamptontownnypolice.gov/1629/nitrogen-reducing-biofilter-incarnation-,Not Criminal Justice Related,200,"Nitrogen Reducing Biofilter (Incarnation Lutheran Church, Bridgehampton) | Southampton, NY - Official Website","","[""\r\n\r\nNitrogen Reducing Biofilter (Incarnation Lutheran Church, Bridgehampton) \t\t""]",[],"[""Loading"", ""Site Tools"", ""Contact Us"", ""Site Links""]","[""WQIPP - Fund Application"", ""Summary Sheet""]",[],[] -1597,https://spdblotter.seattle.gov/2011/03/04/one-day-community-police-academy/,Media Bulletins,200,One-day Community Police Academy - SPD Blotter,"","[""One-day Community Police Academy""]","[""Find Posts By Topic"", ""You might also like..."", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[] -1598,https://southamptontownnypolice.gov/faq.aspx?qid=266,Complaints & Misconduct,200,FAQs • How do I report a violation?,"",[],"[""\n\u25bc\r\nPublic Safety - Fire Prevention\t\t""]","[""Loading"", ""Site Tools"", ""Categories"", ""Live Edit"", ""Contact Us"", ""Site Links""]",[],[],[] -1599,https://norfolkne.gov/assets/site/documentcentral/police/archived-arrests/2017-arrests/oct-2017-arrests.pdf,Arrest Records,200,"","",[],[],[],[],[],[] -1600,https://owd.boston.gov/wp-content/uploads/2022/06/davidramos3-1-copy.jpg,Poor Data Source,404,"","",,,,,, -1601,https://delcopa.gov/courts/domesticrelations/forms/directdepositenrollment.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -1602,http://www.longbeach.gov/police/press-releases/traffic-fatality3/,Media Bulletins,200,Traffic Fatality (Carson & California),"","[""Long BeachPolice Department""]",[],[],[],[],[] -1603,https://www.knoxvilletn.gov/government/city_departments_offices/community_empowerment/police_advisory_review_committee,Misc Police Activity,404,"","",,,,,, -1604,https://www.arlingtontx.gov/news/my_arlington_t_x/news_archive/2018_archived_news/september_2018/two_arlington_police_officers_honored_by_governor,Media Bulletins,200," - Two Arlington Police Officers Honored by Governor with Star of Texas Award - City of Arlington -","","[""YOUR COMMUNITY NEWS AND EVENTS"", ""City of Arlington""]","[""Two Arlington Police Officers Honored by Governor with Star of Texas Award""]",[],[],[],[] -1605,https://www.colma.ca.gov/question/how-do-i-get-a-copy-of-a-birth-certificate/,Resources,200,How do I get a copy of a birth certificate? - Town of Colma,"","[""How do I get a copy of a birth certificate?""]","[""Primary menu links"", ""Action toolbar"", ""Contact"", ""Subscribe"", ""Connect""]",[],[],[],[] -1606,https://beaumonttexas.gov/beaumont-police-traffic-division-investigating-a-fatality-crash-eastex-frwy-and-chinn-ln/,Poor Data Source,404,"","",,,,,, -1607,http://www.longbeach.gov/police/press-releases/lbpd-recruit-academy-graduation-ceremony-held-today/,Media Bulletins,200,LBPD RECRUIT ACADEMY GRADUATION CEREMONY HELD TODAY,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1608,http://beaverpolice.us/event/beaver-county-symphonic-wind-ensemble-concert/,Not Criminal Justice Related,200,Beaver County Symphonic Wind Ensemble Concert – Beaver Police Department,"","[""Beaver County Symphonic Wind Ensemble Concert""]","[""\u00a9 2023 Beaver Police Department |"", ""\u00a9 2023 Beaver Police Department |""]","[""Archives"", ""Recent Comments"", ""\r\n Post navigation "", ""Subscribe to our Newsletter"", ""Upcoming Events""]",[],[],[] -1609,https://hilliardohio.gov/tag/police-recruitment/,Poor Data Source,200,police recruitment,"","[""""]",[],"[""Filter News"", ""Archive""]","[""Have any news to share?"", ""There are no news articles under this category."", ""City Hall and Admin"", ""Hilliard Mayor's Court"", ""Division of Police"", ""Police Assistance"", ""Police Records and General Assistance"", ""Norwich Township Fire"", ""Hilliard Recreation & Parks"", ""Hilliard Newsletter"", ""Quick Links"", ""Stay connected with us""]",[],"[""Click the \u2018x\u2019 to opt out.""]" -1610,https://brookfieldil.gov/publication/050609-may-6-2009-fire-and-police-commission/,Poor Data Source,404,"","",,,,,, -1611,https://www.southamptontownnypolice.gov/faq.aspx?qid=262,Not Criminal Justice Related,200,FAQs • Why do the fire marshals perform business inspections,"",[],"[""\n\u25bc\r\nPublic Safety - Fire Prevention\t\t""]","[""Loading"", ""Site Tools"", ""Categories"", ""Live Edit"", ""Contact Us"", ""Site Links""]",[],[],[] -1612,https://www.sandiego.gov/department-document/police-identify-burned-homicide-victim-bay-park,Media Bulletins,200,Police Identify Burned Homicide Victim In Bay Park | City of San Diego Official Website,"","[""City of San Diego Official Website""]","[""Main navigation"", ""Leisure"", ""Resident Resources"", ""Doing Business"", ""Library"", ""Public Safety"", ""City Hall"", ""Accessibility Tools"", ""Police Identify Burned Homicide Victim In Bay Park"", ""Footer""]",[],"[""Parks"", ""Outdoors"", ""Neighborhoods"", ""Recreational Activities"", ""Street Maintenance"", ""Plan"", ""Fix"", ""Build"", ""Programs & Events"", ""Services"", ""Kids & Teens"", ""eCollection"", ""Police"", ""Fire-Rescue"", ""Lifeguards"", ""City Officials"", ""City Government""]",[],[] -1613,https://delcopa.gov/council/2018minutes/101718minutes.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -1614,https://hollister.ca.gov/government/city-departments/police/,Personnel Records,200,"Police – City of Hollister, California","","[""\u00a0San Benito County Opioid Task Force""]",[],"[""Follow Us on..."", ""A Message from Chief Reynoso"", ""San Benito County Public Safety PSA"", ""HPD Values and Vision"", ""Follow Us on....""]",[],[],[] -1615,https://alpha.austin.gov/es/police-oversight/2020-06-09-14/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1616,https://delcopa.gov/sustainability/presentations/22/12_victordonnay_v2.pptx,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -1617,https://coloradosprings.gov/police-department/page/cspd-community-survey,Poor Data Source,403,"","",,,,,, -1618,http://chico.ca.us/post/chico-police-officer-mark-bass-honored-chico-noon-exchange-74th-annual-peace-officer-year,Media Bulletins,404,"","",,,,,, -1619,https://www.roseville.ca.us/government/departments/police_department/community_services/my_neighborhood_officer/beat_4,Resources,200," - Beat 4 - City of Roseville -","","[""City of Roseville""]","[""Beat 4""]","[""Roseville Police Department ""]",[],[],[] -1620,http://www.longbeach.gov/police/press-releases/murder-suicide-1500-block-of-park-avenue/,Media Bulletins,200,MURDER SUICIDE 1500 BLOCK OF PARK AVENUE,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1621,https://www.happyvalleyor.gov/services/police-department/reporting-accidents/,Resources,200,Reporting Accidents | City of Happy Valley,"","[""Reporting Accidents""]","[""City Hall"", ""Business"", ""Community"", ""How Do I?""]","[""City of Happy Valley"", ""Government"", ""Take Action""]","[""\n16000 SE Misty Drive, Happy Valley, OR 97086\n"", ""(503) 783-3800 | [email\u00a0protected]""]","[""Oregon law requires that drivers involved in an accident file an accident report if the accident involves any of the following conditions:""]","[""General"", ""Departments"", ""Boards & Commissions"", ""General"", ""Resources"", ""Divisions"", ""General"", ""Amenities"", ""Services""]" -1622,https://www.gov.ca.gov/2020/04/02/governor-newsom-statement-on-death-of-santa-rosa-police-detective/,Poor Data Source,200,Governor Newsom Statement on Death of Santa Rosa Police Detective | California Governor,SACRAMENTO — Governor Gavin Newsom today issued the following statement regarding the death of Santa Rosa Police Department Detective Marylou Armer: “Jennifer…,"[""Governor Newsom Statement on Death of Santa Rosa Police Detective""]",[],[],"[""Recent News"", ""Archives"", ""Categories""]",[],[] -1623,https://www.milpitas.gov/milpitas/departments/police/recruitment-training/,Poor Data Source,404,"","",,,,,, -1624,http://www.longbeach.gov/police/press-releases/arsonist-sought-in-flag-burning-case/,Media Bulletins,200,ARSONIST SOUGHT IN FLAG BURNING CASE,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1625,https://delcopa.gov/departments/womenscommission/20history.html,Not Criminal Justice Related,200,"Women's History Month 2020 - Delaware County, Pennsylvania","","[""Women's History Month 2020""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]","[""The Delaware County Women's Commission postponed the Women's History Month Breakfast originally scheduled for March 25, 2020, rescheduled to May 13, 2020, then eventually cancelled."", ""The 2020 theme, rolled into the 2021 theme since \u201cValiant Women of the Vote\u201d was such a significant anniversary of the right to vote for women in 1920!. Unfortunately, due to the pandemic, we did not celebrate in person in 2021. However, our winners received recognition at the County Council meeting on March 17, 2021 and received a gift card in the following month to recognize their achievement.""]",[],[] -1626,http://www.longbeach.gov/police/press-releases/traffic-fatality-spring-street-west-of-el-dorado-park/,Media Bulletins,200,TRAFFIC FATALITY - Spring Street West of El Dorado Park,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1627,https://www.southamptontownnypolice.gov/faq.aspx?qid=510,Resources,200,FAQs • How can I purchase a Village permit? ,"",[],"[""\n\u25bc\r\nParks & Rec\t\t""]","[""Loading"", ""Site Tools"", ""Categories"", ""Live Edit"", ""Contact Us"", ""Site Links""]",[],[],[] -1628,https://alpha.austin.gov/en/police-oversight/formal-complaint-impartial-attitude-and-courtesy-42/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1629,https://ci.newcastle.wa.us/departments/police/e-_alerts,Resources,200," - E-News - City of Newcastle -","",[],"[""City of Newcastle""]",[],"[""City of NewcastleWashington"", ""Newsletters"", ""Public Meeting Notices"", ""Employment Opportunities""]",[],[] -1630,http://www.longbeach.gov/police/press-releases/traffic-fatality-pch--myrtle-ave/,Media Bulletins,200,Traffic Fatality PCH / Myrtle Ave,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1631,https://www.mass.gov/doc/05-14-15-police-and-school-officials-attend-da-morrisseys-safe-and-supportive-schools-0/download,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -1632,https://www.mass.gov/doc/emergencywaiverpcopdf/download,Poor Data Source,200,"","",[],[],[],[],[],[] -1633,https://www.antioch.il.gov/wpfb-file/12-13-11-police-pension-fund-agenda-pdf-4/,Policies & Contracts,200,"12-13-11 Police Pension Fund Agenda - Antioch, IL",13491 12 13 11 police pension fund agenda pdf commissions agendas 2011 1625758338 7fbda0786265e371ec5e6ffad4bd173e 56c15fa57ff824b7283a17b27825a5436651578c6fa9ea2e742221c5e8297cba 217x300 _1l28v3ffmhil thumb jpg 2017 05 17 08 41 32 0 157 55 39 34 2021 06 02 49 25 pdf application num_pages pagefailed_1 pagefailed_2 pagefailed_3 pagefailed_4 pagefailed_5 pagefailed_6 pagefailed_7 pagefailed_8 pagefailed_9 pagefailed_10 pagefailed_11 pagefailed_12 pagefailed_13 pagefailed_14 pagefailed_15 pagefailed_16 pagefailed_17,"[""12-13-11 Police Pension Fund Agenda""]",[],[],[],[],[] -1634,https://www.mass.gov/doc/state-police-academy-rules-and-regulations/download,Training & Hiring Info,200,"","",[],[],[],[],[],[] -1635,https://www.crystalmn.gov/how_do_i____/contact/police_department,Contact Info & Agency Meta,200," - Contact Us - City of Crystal-Police -",Locations and contact information to the City of Crystal Police Department.,"[""Contact Us""]","[""Deputy Police Chief"", ""Police Chief""]","[""Sign up for a city newsletter or notification."", ""Police Department"", ""Lobby Hours:""]","[""Monday - Friday""]",[],[] -1636,https://www.roundrocktexas.gov/news/police-investigate-new-years-eve-auto-pedestrian-collision/,Media Bulletins,200,Police investigate New Year's Eve auto-pedestrian collision - City of Round Rock,"",[],[],"[""Police investigate New Year\u2019s Eve auto-pedestrian collision""]","[""Site Search"", ""Follow Us""]",[],[] -1637,http://www.longbeach.gov/police/press-releases/murder-investigation8/,Media Bulletins,200,MURDER INVESTIGATION,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1638,https://www.roseville.ca.us/news/archive_news/2017_archive_news/police_digest_120117,Poor Data Source,404,"","",,,,,, -1639,https://www.huntsvilleal.gov/organizer/huntsville-police-department/,Misc Police Activity,200,Huntsville Police Department – City of Huntsville,"","[""City Calendar""]","[""Top Requests"", ""HSV TV"", ""City News"", ""Contact Us""]",[],[],[],[] -1640,https://brimfieldohio.gov/event/bpd-coffee-with-a-cop/,Misc Police Activity,404,"","",,,,,, -1641,https://shelbycity.oh.gov/wp-content/uploads/2020/03/downtown-flag-dark-copy-150x150.jpg,Poor Data Source,200,"","",[],[],[],[],[],[] -1642,https://delcopa.gov/ampembed?url=https://delcowebmedia2-usea.streaming.media.azure.net/79bc7ec7-9862-4100-bfd8-06a71de3d5af/delaware county covid-19 memoria.ism/manifest,Poor Data Source,200,"404 - Delaware County, Pennsylvania","","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -1643,https://police.greenvillesc.gov/faq.aspx?qid=63,Resources,200,FAQs • How can I find information about a specific city prop,"",[],"[""\n\u25bc\r\nPlanning & Zoning \t\t""]","[""Loading"", ""Categories"", ""Live Edit""]",[],[],[] -1644,https://alpha.austin.gov/police-oversight/formal-complaint-impartial-attitude-courtesy-department-issued-bwc/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1645,http://edmonstonmd.gov/departments-services/police/photo-enforcement/,Resources,404,"","",,,,,, -1646,https://health.wyo.gov/publichealth/office-of-performance-improvement-and-health-equity/sha/health-improvement-strategy/copy-of-ship-access-cga-video-es/,Resources,200,Copy of SHIP-Access-CGA Video-ES - Wyoming Department of Health,"","[""Copy of SHIP-Access-CGA Video-ES""]","[""Office of Training, Performance, and Equity""]",[],[],"[""Contact Info:""]",[] -1647,https://www.mass.gov/doc/flaherty-and-mccarthy-v-boston-police-department-12909/download,Court Cases,200,"","",[],[],[],[],[],[] -1648,https://www.mass.gov/doc/municipal-police-training-committee-cjt/download,Poor Data Source,404,"","",,,,,, -1649,https://delcopa.gov/council/2016minutes/080316minutes.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -1650,https://www.lynchburgvapolice.gov/wp-content/uploads/2021/05/headlamp-2940-scaled.jpg,Poor Data Source,200,"","",[],[],[],[],[],[] -1651,https://coloradosprings.gov/police-department/article/news/traffic-fatality-1200-block-north-academy,Media Bulletins,200,Traffic Fatality: 1200 Block of North Academy Boulevard | City of Colorado Springs,"","[""\nTraffic Fatality: 1200 Block of North Academy Boulevard\n""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[] -1652,https://delcopa.gov/planning/pubs/saldoappenixcpreliminary.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -1653,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/summary/040421summary.pdf,Daily Activity Logs,200,"","",[],[],[],[],[],[] -1654,http://www.longbeach.gov/police/press-releases/found---critical-missing-person---/,Media Bulletins,200,FOUND---CRITICAL MISSING PERSON---,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1655,http://www.longbeach.gov/police/press-releases/dui-saturation-patrol-2-/,Media Bulletins,200,DUI Saturation Patrol(2),"","[""Long BeachPolice Department""]",[],[],[],[],[] -1656,https://www.mass.gov/info-details/audit-of-the-worcester-state-university-objectives-scope-and-methodology,Not Criminal Justice Related,200,"Audit of the Worcester State University Objectives, Scope, and Methodology | Mass.gov",An overview of the purpose and process of auditing the Worcester State University,"[""\nAudit of the Worcester State University Objectives, Scope, and Methodology\n""]","[""Table of Contents\n for the audit, Audit of the Worcester State University"", ""Table of Contents"", ""Overview\n "", ""Data Reliability\n "", ""Conclusion\n "", ""Help Us Improve Mass.gov with your feedback""]",[],[],[],[] -1657,https://wrightstown.us/police-crime-prevention-programs/neighborhood-watch/img_2876/,Poor Data Source,200,IMG_2876 - Village of Wrightstown,"","[""IMG_2876""]","[""Recent News"", ""\n\t\t\t\t\t\tUpcoming Events\t\t\t\t\t""]",[],"[""Village Hall"", ""Public Works"", ""Police Department"", ""Fire Department"", ""Join Us on Social Media""]",[],[] -1658,https://southamptontownnypolice.gov/214/transportation-traffic-safety,Not Criminal Justice Related,200,"Municipal Work's - Transportation & Traffic Safety | Southampton, NY - Official Website",Find out what the responsibilities are for the Intermodal Transportation Division.,"[""\r\n\r\nMunicipal Work's - Transportation & Traffic Safety\t\t""]","[""Traffic Safety"", ""Transportation Commission"", ""Public Transportation"", """"]","[""Loading"", ""Site Tools"", ""Contact Us"", ""Department of Municipal Works"", ""FAQs"", ""Contact Us"", ""Site Links""]",[],[],[] -1659,https://www.rentonwa.gov/city_hall/police/staff_services,Resources,200," - Staff Services - City of Renton -","Staff services provide Fingerprint Services, Concealed Pistol License, Public Record Requests, Med-Project Kiosk.","[""CITY OF RENTON\r\n\t\t\t\t\tWASHINGTON""]","[""Staff Services""]",[],"[""Concealed Pistol License"", ""Do you live within the Renton City limits?"", ""For an Original Concealed Pistol License"", ""Fee"", ""Renewing Concealed Pistol Licenses"", ""Fees"", ""Public Records Requests"", ""Med-Project Kiosk"", ""Not Accepted""]","[""S. Cour, Manager""]","[""Staff Services Division""]" -1660,http://beaverpolice.us/staff-members/eric-schwartz/,Poor Data Source,404,"","",,,,,, -1661,https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0159/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1662,http://www.ryepolice.us/announcements/new-rye-animal-control-instragram/attachment/dumpster-divers,Poor Data Source,200,Rye Police Department Dumpster Divers - Rye Police Department,"","[""Dumpster Divers""]","[""Dumpster Divers""]","[""Navigation"", ""Follow Us"", ""Facebook"", ""Email Updates"", ""Storm Preparedness Guide""]",[],[],[] -1663,https://www.wakeforestnc.gov/police/public-information/firing-range,Resources,200,"Firing Range | Town of Wake Forest, NC","The Wake Forest Police Department operates it's own firing range. Located behind the Flaherty Park Community Center, 1226 N. White St., the firing range is surrounded by a security fence that is locked at all times, unless in use by police department personnel. The firing range is NOT open to the public.The range is utilized by the department for required yearly qualifications","[""Firing Range""]","[""img_0371.jpg"", ""Search form"", ""You are here""]",[],[],[],"[""2023 Training Schedule\u00a0\u00a0""]" -1664,https://www.antioch.il.gov/wpfb-file/coffee-with-the-cop-oct-pdf/,Misc Police Activity,200,"Coffee With The Cop Oct - Antioch, IL",15191 coffee with the cop oct pdf event documents 2017 1625759877 70716cc0549a2ad9a2febce0275526fa 5bc8dbb72585c97ef21ff0adf7098646ac0ec42c3ecce91bf227a8aef423a06d 234x300 _h19howtsjv7j thumb jpg 09 07 10 03 34 0 106 50 141 2021 05 25 14 40 32 pdf application num_pages pagefailed_1 pagefailed_2 pagefailed_3 pagefailed_4 pagefailed_5 pagefailed_6 pagefailed_7 pagefailed_8 pagefailed_9 pagefailed_10 pagefailed_11 pagefailed_12 pagefailed_13 pagefailed_14 pagefailed_15 pagefailed_16 pagefailed_17 pagefailed_18 pagefailed_19 pagefailed_20,"[""Coffee With The Cop Oct""]",[],[],[],[],[] -1665,https://www.coronadelmar.us/police-investigating-social-media-threat-against-newport-mesa-unified-high-schools/,Media Bulletins,200,Police investigating social media threat against Newport-Mesa Unified high schools … | Corona del Mar California,"","[""Police investigating social media threat against Newport-Mesa Unified high schools \u2026""]","[""Menu"", "" Be First to Comment"", ""Subscribe"", """", """"]","[""Share this:"", ""Like this:"", ""Related"", ""Leave a Reply Cancel reply"", """"]",[],[],[] -1666,http://www.longbeach.gov/police/press-releases/murder-investigation---4th-street-and-pacific-avenue/,Media Bulletins,200,Murder Investigation - 4th Street and Pacific Avenue,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1667,https://www.coronadelmar.us/newport-beach-mourns-locals-killed-in-helicopter-crash-media-6/,Not Criminal Justice Related,200,Newport Beach Mourns Locals Killed in Helicopter Crash-media-6 | Corona del Mar California,"","[""Newport Beach Mourns Locals Killed in Helicopter Crash-media-6""]","[""Menu"", "" Be First to Comment"", ""Subscribe"", """", """"]","[""Leave a Reply Cancel reply"", """"]",[],[],[] -1668,https://southamptontownnypolice.gov/439/southampton-shinnecock-hills-tuckahoe-ca,Not Criminal Justice Related,200,"Southampton / Shinnecock Hills / Tuckahoe CAC | Southampton, NY - Official Website",Find out more about the Southampton / Shinnecock Hills / Tuckahoe Citizen Advisory Committee.,"[""\r\n\r\nSouthampton / Shinnecock Hills / Tuckahoe CAC \t\t""]","[""Meetings"", ""Members""]","[""Loading"", ""Site Tools"", ""Quick Links"", ""Contact Us"", ""Site Links""]",[],[],[] -1669,https://santabarbaraca.gov/news/santa-barbara-police-requesting-assistance-locating-attempt-murder-suspect,Media Bulletins,200,Santa Barbara Police Requesting Assistance in Locating Attempt Murder Suspect | City of Santa Barbara,The Santa Barbara Police Department is requesting the assistance of the public in locating the whereabouts of a subject who is wanted for attempt murder and several felony firearms violations.,"[""Santa Barbara Police Requesting Assistance in Locating Attempt Murder Suspect""]","[""Breadcrumb"", ""This is the prefooter section"", ""Main Footer"", ""City Hall"", ""Mailing Address"", ""Newsletters""]",[],[],[],[] -1670,https://www.hickoryhillspd.us/2014/06/message-from-the-chief-of-police/,Poor Data Source,200,Message From The Chief of Police,"","[""Message From The Chief of Police""]","["""", ""Post navigation""]",[],"[""Report a Concern"", ""Investigative Tip Line"", ""Hot Links"", ""Contact Information""]",[],[] -1671,https://www.woodvillageor.gov/departments/public-safety/police-law-enforcement/,Resources,404,"","",,,,,, -1672,https://www.mass.gov/info-details/the-massachusetts-port-authority-audit-objectives-scope-and-methodology,Policies & Contracts,200,"The Massachusetts Port Authority Audit Objectives, Scope, and Methodology | Mass.gov",An overview of the purpose and process of auditing the Massachusetts Port Authority.,"[""\nThe Massachusetts Port Authority Audit Objectives, Scope, and Methodology\n""]","[""Table of Contents\n for the audit, Audit of the Massachusetts Port Authority"", ""Table of Contents"", ""Overview\n "", ""Data Reliability\n "", ""Help Us Improve Mass.gov with your feedback""]",[],[],[],[] -1673,https://www.coppelltx.gov/faq.aspx?qid=249,Resources,200,FAQs • Can the City stop the installation of 5G/Small Cell u,"",[],"[""\n\u25bc\r\n5G / Small Cell\t\t""]","[""Loading"", ""Categories"", ""Live Edit""]",[],[],[] -1674,https://www.hayward-ca.gov/police-department/programs/business-watch-program,Resources,200,Business Watch Program | City of Hayward - Official website,"Lessen the Opportunities for the CriminalsTake control of what happens in your business community and lessen your chances of becoming a victim. Through ""Business Watch,"" you will be making crimes against yourself and your fellow business neighbors as difficult as possible.What is Business Watch?Business Watch is a crime prevention program that enlists the active participation",[],"[""Business Watch Program"", ""You are here. So is everything else."", ""Search form""]",[],"[""Lessen the Opportunities for the Criminals"", ""What is Business Watch?"", ""What are the Benefits of participating in Business Watch?"", ""How do I start a Business Watch?"", ""How do I learn more about Business Watch?"", ""Receive crime bulletins and alerts"", ""Report\n Problems"", ""Ask\n Questions"", ""Make a\n Suggestion"", ""Translate"", ""Search""]",[],[] -1675,http://www.longbeach.gov/police/press-releases/residential-burglary-suspect-arrested/,Media Bulletins,200,RESIDENTIAL BURGLARY SUSPECT ARRESTED,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1676,https://www.burienwa.gov/news_events/city_newsroom/news_announcements/burien_police_chief_promoted_within_kcso,Media Bulletins,200," - Burien Police Chief Promoted Within KCSO - City of Burien -","Burien Police Chief Theodore “Ted” Boe has accepted a promotion to serve as Patrol Operations Division Chief for King County Sheriff’s Office, effective January 1, 2023.","[""City of Burien""]","[""Burien Police Chief Promoted Within KCSO""]",[],[],[],[] -1677,https://www.lynchburgvapolice.gov/news-updates/update-news-release-incident-involving-lpd-officer/,Media Bulletins,200,[UPDATE] NEWS RELEASE: INCIDENT INVOLVING LPD OFFICER - Lynchburg Police Department,"","[""[UPDATE] NEWS RELEASE: INCIDENT INVOLVING LPD OFFICER""]",[],[],"[""Contact Us"", ""Site Links"", ""Site Links""]",[],[] -1678,https://delcopa.gov/vsc/,Not Criminal Justice Related,200,Untitled Document,"",[],[],[],[],[],[] -1679,https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/arrests/070722arrests.pdf,Poor Data Source,404,"","",,,,,, -1680,http://www.ryepolice.us/westnile,Not Criminal Justice Related,200,Rye Police Department West Nile / EEE - Rye Police Department,"","[""West Nile / EEE""]","[""West Nile Virus"", ""Eastern Equine Encephalitis"", ""The Spread of EEE and WNV"", ""Prevention Guidelines"", ""Dead Bird Testing""]","[""Navigation"", ""Follow Us"", ""Facebook"", ""Email Updates"", ""Storm Preparedness Guide""]",[],[],[] -1681,https://www.ashevillenc.gov/news/asheville-police-department-launches-online-reporting-as-part-of-upgraded-police-to-citizen-tool/,Media Bulletins,200,Asheville Police Department launches online reporting as part of upgraded Police to Citizen Tool - The City of Asheville,"","[""Asheville Police Department launches online reporting as part of\u00a0upgraded Police to Citizen Tool""]",[],[],[],[],[] -1682,https://delcopa.gov/courts/juror/eresponse.html,Resources,200,Juror eResponse - Delaware County Court of Common Pleas,"","[""Juror eResponse""]",[],"[""Jury Services Navigation"", ""Contact Us"", ""Courts Quick Links"", ""Government Center Quick Links"", ""About Delaware County""]",[],[],[] -1683,https://www.mass.gov/doc/public-meeting-ma-state-police-lower-basin-barracks-modernization/download,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -1684,https://norfolkne.gov/assets/site/documentcentral/police/archived-calls-for-service/2017-calls-for-service/march2017cfs.pdf,Calls for Service,200,"","",[],[],[],[],[],[] -1685,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/summary/111821summary.pdf,Dispatch Logs,200,"","",[],[],[],[],[],[] -1686,http://www.greenvillenc.gov/government/police/mental-health-crisis-services,Poor Data Source,404,"","",,,,,, -1687,https://www.roseville.ca.us/government/departments/electric_utility/rebates___energy_savings/your_trusted_solar_advisor_copy,Not Criminal Justice Related,200," - Your Trusted Solar Advisor - City of Roseville -","","[""City of Roseville""]","[""Your Trusted Solar Advisor""]","[""\nCONTACT US"", ""City of Roseville""]",[],[],[] -1688,https://delcopa.gov/publicrelations/releases/2020/covidtesting_canceledmillbournesept.html,Not Criminal Justice Related,200,"Delaware County Cancels COVID-19 Public Testing Site in Millbourne - Delaware County, Pennsylvania","","[""Delaware County Cancels COVID-19 Public Testing Site in Millbourne""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]","[""September 17 drive-thru and walk-up testing for Delaware County residents and workers canceled""]",[],[] -1689,https://www.lynchburgvapolice.gov/wp-content/uploads/2021/06/lynchburg-police-patch-new-w-red.png,Poor Data Source,404,"","",,,,,, -1690,http://www.longbeach.gov/police/press-releases/charges-filed-in-2002-murder/,Media Bulletins,200,Charges Filed in 2002 Murder,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1691,https://www.gurnee.il.us/events/2017/06/10/default-calendar/2017-outrun-the-cops!,Not Criminal Justice Related,200," - 2017 Outrun The Cops! -","","[""Events"", ""Events View Calendar""]","[""2017 Outrun The Cops!""]","[""Village Hall""]",[],[],[] -1692,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/092921blotter.pdf,Dispatch Logs,200,"","",[],[],[],[],[],[] -1693,https://santabarbaraca.gov/government/departments/santa-barbara-police-department,Contact Info & Agency Meta,200,Santa Barbara Police Department | City of Santa Barbara,For any Emergency Dial: 9-1-1 Non-Emergency Dispatch: 805-882-8900,"[""Santa Barbara Police Department""]","[""For any Emergency Dial: 9-1-1"", ""\u00a0Non-Emergency Dispatch: 805-882-8900"", ""Police Department Information"", ""News Feed & Media Releases"", ""Contact Us"", ""This is the prefooter section"", ""Main Footer"", ""City Hall"", ""Mailing Address"", ""Newsletters""]",[],[],"[""Currently, the Police Department Lobby will be open for in-person service during the following days and times:"", ""CCW APPLICATION INFORMATION"", ""WEAPONS/RANGE QUALIFICATIONS AND TRAINING"", ""APPLY FOR A CCW""]",[] -1694,https://www.pleasantprairiewi.gov/departments/police/news/police_and_fire___rescue_news_archive/2019_news_releases/19-_year-_old_suffers_fatal_gunshot_wound_update,Not Criminal Justice Related,200," - 19-Year-Old Suffers Fatal Gunshot Wound Update - Village of Pleasant Prairie -","",[],"[""19-Year-Old Suffers Fatal Gunshot Wound Update""]","[""Follow Us on Social Media""]",[],[],[] -1695,https://www.prescott-az.gov/services-safety/police/police-program-and-services/,Contact Info & Agency Meta,200,Prescott Police | Prescott Police Department | Dedicated to Public Safety,Prescott Police Department provides the highest level of service in a collaborative effort with our community. Public Safety is Job #1.,[],"[""PUBLIC SAFETY IS JOB ONE!"", ""Keep in Touch""]","[""PrescottPolice"", ""Values"", ""Crime Prevention""]",[],[],[] -1696,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/summary/060721summary1.pdf,Dispatch Logs,200,"","",[],[],[],[],[],[] -1697,https://delcopa.gov/planning/programsandinitiatives/naturalresourceprotection.html,Resources,200,Natural Resource Protection,"","[""Natural Resource Protection""]","["" Natural Resource Protection Assistance\n"", "" Natural Heritage Inventory\n""]","[""Planning Department Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -1698,https://www.edmondswa.gov/services/police,Contact Info & Agency Meta,200," - Police Department - City of Edmonds, WA -","","[""City of Edmonds - Washington""]","[""Police Department""]","[""Service\u00a0 Integrity\u00a0 Respect\u00a0 Stewardship"", ""Michelle Bennett\n\nChief of Police"", ""Edmonds Police Department"", ""Recruitment and Hiring""]",[],[],[] -1699,https://www.southamptontownnypolice.gov/faq.aspx?qid=79,Not Criminal Justice Related,200,FAQs • How do I report overcrowding conditions in a bar or n,"",[],"[""\n\u25bc\r\nPublic Safety - Code Enforcement\t\t""]","[""Loading"", ""Site Tools"", ""Categories"", ""Live Edit"", ""Contact Us"", ""Site Links""]",[],[],[] -1700,https://coloradosprings.gov/police-department/page/coffee-cop,Not Criminal Justice Related,200,Coffee with a Cop | City of Colorado Springs,"","[""\nCoffee with a Cop\n""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[] -1701,https://www.wheelingwv.gov/policejobs,Training & Hiring Info,200,Police Employment,Official Website for the City of Wheeling West Virginia,"[""Police Employment""]",[],"[""Contact Info""]",[],[],[] -1702,http://www.ryepolice.us/announcements/aquarion-water-company-boil-order-8-23-19,Not Criminal Justice Related,200,Rye Police Department AQUARION WATER COMPANY BOIL ORDER! 8/23/19 - Rye Police Department,"","[""AQUARION WATER COMPANY BOIL ORDER! 8/23/19""]","[""AQUARION WATER COMPANY BOIL ORDER! 8/23/19""]","[""Navigation"", ""Follow Us"", ""Facebook"", ""Email Updates"", ""Storm Preparedness Guide""]",[],[],[] -1703,https://delcopa.gov/delcoready/involved.html,Resources,200,"Be Involved - Delaware County, Pennsylvania","","[""Be Involved""]","[""Be Involved ""]","[""Delco Ready Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -1704,https://alpha.austin.gov/en/police-oversight/notice-of-complaint-related-to-2022-0889/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1705,https://delcopa.gov/publicrelations/releases/2019/airforceflagraising.html,Not Criminal Justice Related,200,"United States Air Force flag raised to commemorate anniversary - Delaware County, Pennsylvania","","[""United States Air Force flag raised to commemorate anniversary""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -1706,https://police.birminghamal.gov/command-staff/lieutenants/,Personnel Records,200,Lieutenants | Birmingham Police Department,"","[""\n\n\n Birmingham Police Department\n\n\t\t\t\t\tCommitment | Excellence | Integrity\t\t\t\t\n\n""]","[""Putting People First"", ""Lieutenants""]",[],"[""Hours & Info"", ""Upcoming Events"", ""CRIMESTOPPERS"", ""Police Information"", ""Quick Links"", ""I Need...""]",[],[] -1707,https://www.mass.gov/info-details/audit-of-the-massachusetts-bay-transportation-authority-objectives-scope-and-methodology,Not Criminal Justice Related,200,"Audit of the Massachusetts Bay Transportation Authority Objectives, Scope, and Methodology | Mass.gov",An overview of the purpose and process of auditing the Massachusetts Bay Transportation Authority.,"[""\nAudit of the Massachusetts Bay Transportation Authority Objectives, Scope, and Methodology\n""]","[""Table of Contents\n for the audit, Audit of the Massachusetts Bay Transportation Authority (MBTA)"", ""Table of Contents"", ""Overview\n "", ""Data Reliability\n "", ""Help Us Improve Mass.gov with your feedback""]",[],[],[],[] -1708,https://alpha.austin.gov/en/police-oversight/notice-of-complaint-related-to-2022-0765/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1709,http://www.longbeach.gov/police/press-releases/fatal-hit-and-run/,Media Bulletins,200,LBPD ASKING FOR PUBLIC'S HELP:FATAL HIT AND RUN,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1710,https://ose.louisiana.gov/event/police-communications-officer-34/,Poor Data Source,200,Police Communications Officer | Louisiana Office of State Examiner,"","["""", ""Police Communications Officer""]",[],"[""Competitive Level""]",[],[],"[""Recent Posts"", ""Archives"", ""Categories"", ""Meta""]" -1711,https://www.ci.san-ramon.ca.us/our_city/departments_and_divisions/police/victims_rights_information/hate_violence,Poor Data Source,200,"","",[],[],[],[],[],[] -1712,https://delcopa.gov/planning/pdf/demodata/povertystatus.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -1713,https://www.lynchburgvapolice.gov/wp-content/uploads/2022/02/20220201_162001000_ios.jpg,Poor Data Source,404,"","",,,,,, -1714,http://www.longbeach.gov/police/press-releases/murder-1200-block-of-e--17th-street/,Media Bulletins,200,MURDER 1200 block of E. 17th Street,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1715,https://www.mass.gov/doc/municipal-police-training-committee-mptc-meeting-minutes-101619/download,Misc Police Activity,200,"","",[],[],[],[],[],[] -1716,https://www.arlingtontx.gov/news/my_arlington_t_x/news_stories/arlington_police_chief_announces_retirement,Media Bulletins,200," - Arlington Police Chief Announces Retirement - City of Arlington -","","[""YOUR COMMUNITY NEWS AND EVENTS"", ""City of Arlington""]","[""Arlington Police Chief Announces Retirement""]",[],[],[],[] -1717,https://coloradosprings.gov/article/news/balltoberfest-collects-donated-sports-balls-police-departments-play-cos,Not Criminal Justice Related,200,Balltoberfest collects donated sports balls for police department's Play COS | City of Colorado Springs,"","[""\nBalltoberfest collects donated sports balls for police department's Play COS\n""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]","[""About the Play COS Program""]",[],"[""REPORT ONLINE""]",[] -1718,https://www.florenceaz.gov/jobs/police-records-clerk/,Poor Data Source,404,"","",,,,,, -1719,https://coloradosprings.gov/police-department/article/news/homicide-investigation-3500-block-south,Media Bulletins,200,Homicide Investigation: 3500 Block of South Chelton Loop | City of Colorado Springs,"","[""\nHomicide Investigation: 3500 Block of South Chelton Loop\n""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[] -1720,http://www.longbeach.gov/police/press-releases/murder--9th-st----locust-ave--/,Media Bulletins,200,Murder (9th St. & Locust Ave.),"","[""Long BeachPolice Department""]",[],[],[],[],[] -1721,https://www.pleasantprairiewi.gov/news/2021_news/police_department_celebrates_50_years_of_service,Media Bulletins,200," - Police Department Celebrates 50 Years of Service - Village of Pleasant Prairie -","",[],"[""Police Department Celebrates 50 Years of Service""]","[""Follow Us on Social Media""]",[],[],[] -1722,https://www.sandiego.gov/department-document/san-diego-police-announce-arrests-home-invasion-series,Media Bulletins,200,San Diego Police Announce Arrests in Home Invasion Series | City of San Diego Official Website,"","[""City of San Diego Official Website""]","[""Main navigation"", ""Leisure"", ""Resident Resources"", ""Doing Business"", ""Library"", ""Public Safety"", ""City Hall"", ""Accessibility Tools"", ""San Diego Police Announce Arrests in Home Invasion Series"", ""Footer""]",[],"[""Parks"", ""Outdoors"", ""Neighborhoods"", ""Recreational Activities"", ""Street Maintenance"", ""Plan"", ""Fix"", ""Build"", ""Programs & Events"", ""Services"", ""Kids & Teens"", ""eCollection"", ""Police"", ""Fire-Rescue"", ""Lifeguards"", ""City Officials"", ""City Government""]",[],[] -1723,http://www.ryepolice.us/pressrelease/birchwood-drive-reckless-conduct-press-release/attachment/hordon,Poor Data Source,200,Rye Police Department hordon - Rye Police Department,"","[""hordon""]","[""hordon""]","[""Navigation"", ""Follow Us"", ""Facebook"", ""Email Updates"", ""Storm Preparedness Guide""]",[],[],[] -1724,https://champaignil.gov/police/about-us/policies-and-procedures/,Policies & Contracts,200,Policies and Procedures - City of Champaign,"","[""Policies and Procedures""]","[""Police Department"", ""Quick Links"", ""Police Department News"", ""Contact Us""]",[],[],[],[] -1725,http://www.longbeach.gov/police/press-releases/dui-enforcement-operation-planned-st--patrick-s-day/,Media Bulletins,200,DUI ENFORCEMENT OPERATION PLANNED ST. PATRICK'S DAY,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1726,https://civicpride.jacksontn.gov/government/public_notices___press_releases/newjpdchiefofpolice,Not Criminal Justice Related,200," - Mayor's Civic Pride Awards - City of Jackson, TN -",Welcome to the official website of City of Jackson in Tennessee.,"[""City of Jackson TN"", ""2023 Mayor's Civic Pride Award Nominations"", ""City of Jackson TN""]","[""Mayor's Civic Pride Awards""]","[""JUDGING CRITERIA""]",[],[],[] -1727,https://police.greenvillesc.gov/1643/photo-gallery,Resources,200,"Photo Gallery | Greenville, SC - Official Website",View photos from the Comp Plan Steering Committee,"[""\r\n\r\nPhoto Gallery\t\t""]",[],"[""Loading""]",[],[],[] -1728,https://alpha.austin.gov/en/police-oversight/formal-complaint-purpose-and-scoperesponsibility-to-the-community-and-other-policy-violations-13/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1729,https://delcopa.gov/council/2015minutes/032515minutes.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -1730,https://norfolkne.gov/government/departments/police-division/press-releases/,List of Data Sources,200,"Press Releases - City of Norfolk, NE","","[""City of Norfolk, NE"", ""Police Division"", ""Press Releases""]",[],"[""January 22nd Press Release 2024"", ""January 11th Press Release 2024"", ""January 4th Press Release 2024"", ""December 15th Press Release 2023"", ""December 1st Press Release 2023"", ""November 30th Press Release 2023"", ""November 27th Press Release 2023"", ""November 9th Press Release 2023"", ""October 25th Press Release 2023"", ""October 24th Press Release 2023""]",[],"[""Still looking for something?""]","[""Contact Us"", ""Pay or Apply..."", ""Government..."", ""Services..."", ""Business..."", ""Amenities...""]" -1731,http://www.lafayettepolice.us/175/physical-tactics-room,Training & Hiring Info,200,"Physical Tactics Room | Lafayette, IN - Official Website",View a list of the amenities of the defensive tactics training room.,"[""\r\n\r\nPhysical Tactics Room\t\t""]",[],"[""Loading"", ""Contact Us"", ""FAQs"", ""Site Links""]","[""Defensive Tactics Mat"", ""Weapons Lockers""]",[],[] -1732,http://www.longbeach.gov/police/press-releases/officer-involved-shooting2/,Media Bulletins,200,Officer Involved Shooting,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1733,https://www.douglas.co.us/documents/how-to-open-a-copy-account-with-douglas-county.pdf/,Records Request Info,200,"","",[],[],[],[],[],[] -1734,https://www.ashevillenc.gov/news/asheville-police-release-citizen-complaint-and-9-1-1-call-data-on-open-data-portal/,Resources,200,Asheville Police release citizen complaint and 9-1-1 call data on Open Data Portal - The City of Asheville,"","[""Asheville Police release citizen complaint and 9-1-1 call data on Open Data Portal""]",[],[],[],[],[] -1735,http://www.longbeach.gov/police/press-releases/crime-continues-to-decrease-in-long-beach/,Media Bulletins,200,CRIME CONTINUES TO DECREASE IN LONG BEACH,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1736,https://www.michigan.gov/som/government/state-license-search/l/law-enforcement-officer-police,Poor Data Source,200,SOM - 404 - Page Not Found,"","[""404 - Page Not Found""]","[""About""]","[""Popular on michigan.gov"", ""How Do I..."", ""Careers""]",[],[],[] -1737,https://www.colma.ca.gov/documents/jd-police-commander/,Training & Hiring Info,200,Police Commander - Town of Colma,"","[""\n\n Police Commander""]","[""Primary menu links"", ""Action toolbar"", ""Documents and forms"", ""Contact"", ""Subscribe"", ""Connect""]",[],[],[],[] -1738,https://alpha.austin.gov/en/health-safety/accountability-and-transparency-in-policing/police-feedback-and-records/how-to-use-official-documents/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1739,https://civicpride.jacksontn.gov/government/departments/police/divisions/administrative/law_enforcement_technologies,Not Criminal Justice Related,200," - Mayor's Civic Pride Awards - City of Jackson, TN -",Welcome to the official website of City of Jackson in Tennessee.,"[""City of Jackson TN"", ""2023 Mayor's Civic Pride Award Nominations"", ""City of Jackson TN""]","[""Mayor's Civic Pride Awards""]","[""JUDGING CRITERIA""]",[],[],[] -1740,https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/arrests/021622arrests.pdf,Poor Data Source,404,"","",,,,,, -1741,https://delcopa.gov/ojs/ojsforms/cifinfosheet.pdf,Resources,200,"","",[],[],[],[],[],[] -1742,http://www.longbeach.gov/police/press-releases/l-b-p-d--academy-graduation-ceremony-held-today/,Media Bulletins,200,L.B.P.D. ACADEMY GRADUATION CEREMONY HELD TODAY,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1743,https://ethics.ny.gov/news/jcope-settles-public-officers-law-violation-former-mta-employee,Media Bulletins,200,JCOPE Settles Public Officers Law Violation with Former MTA Employee | New York State Commission on Ethics and Lobbying in Government,"","[""\n New York State\n Commission on Ethics and Lobbying in Government\n"", ""\nJCOPE Settles Public Officers Law Violation with Former MTA Employee\n""]","[""SHARE"", ""\n Contact Communications and Public Information Office\n"", ""CONNECT WITH US""]","[""\nShivanand Kalipersadsingh Substantial Basis Investigation Report and Settlement Agreement\n\n"", ""Contact us by phone:"", ""Contact us by email:"", ""Mailing Address:"", ""Translation Services""]",[],[],[] -1744,https://sanramon.ca.gov/our_city/departments_and_divisions/police/community_programs/youth_services/station_tours,Resources,200," - Station Tours - City of San Ramon -","","[""Station Tours""]","[""Contact Us"", ""Station Tours"", ""Contact Us"", ""Useful Links""]",[],[],[],[] -1745,http://police.portlandmaine.gov/293/elder-services,Resources,200,"Elder Services | Portland, ME - Official Website",Our mission is to creatively and collaboratively address issues that present hardships for Portland residents as they age.,"[""Elder Services""]",[],[],[],[],[] -1746,https://www.ci.san-ramon.ca.us/our_city/departments_and_divisions/police/fee_and_forms/violation_of_city_ordinance,Resources,200," - Violation of City Ordinance - City of San Ramon -","","[""Violation of City Ordinance""]","[""Contact Us"", ""Useful Links""]",[],[],[],[] -1747,https://www.mass.gov/doc/wallace-patrick-v-beverly-police-department-11608/download,Court Cases,200,"","",[],[],[],[],[],[] -1748,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/093021blotter.pdf,Dispatch Logs,200,"","",[],[],[],[],[],[] -1749,https://www.lasalle-il.gov/about-la-salle/city-governance/city-committees/police-judiciary,Contact Info & Agency Meta,200,Police & Judiciary | City of La Salle,"","[""Police & Judiciary\n""]","[""Main navigation"", ""Breadcrumb"", ""Main Menu"", ""Important Info""]",[],[],[],[] -1750,https://spdblotter.seattle.gov/2015/08/26/police-need-your-help-to-find-missing-toddler-kevin-szal/,Media Bulletins,200,(Update) FOUND - Police Need Your Help to Find Missing Toddler Kevin Szal - SPD Blotter,"","[""(Update) FOUND \u2013 Police Need Your Help to Find Missing Toddler Kevin Szal""]","[""Find Posts By Topic"", ""You might also like..."", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[] -1751,https://www.sandiego.gov/department-document/update-police-investigate-murder-clairemont,Media Bulletins,200,Update Police Investigate Murder in Clairemont | City of San Diego Official Website,"","[""City of San Diego Official Website""]","[""Main navigation"", ""Leisure"", ""Resident Resources"", ""Doing Business"", ""Library"", ""Public Safety"", ""City Hall"", ""Accessibility Tools"", ""Update Police Investigate Murder in Clairemont"", ""Footer""]",[],"[""Parks"", ""Outdoors"", ""Neighborhoods"", ""Recreational Activities"", ""Street Maintenance"", ""Plan"", ""Fix"", ""Build"", ""Programs & Events"", ""Services"", ""Kids & Teens"", ""eCollection"", ""Police"", ""Fire-Rescue"", ""Lifeguards"", ""City Officials"", ""City Government""]",[],[] -1752,https://www.mass.gov/doc/bcntsaplymouthreverecopperamendmentpdf/download,Poor Data Source,200,"","",[],[],[],[],[],[] -1753,http://www.ryepolice.us/pressrelease/rye-beaches-reopening-june-1-2020-press-release/attachment/press-release_0001,Media Bulletins,200,Rye Police Department Press Release_0001 - Rye Police Department,"","[""Press Release_0001""]","[""Press Release_0001""]","[""Navigation"", ""Follow Us"", ""Facebook"", ""Email Updates"", ""Storm Preparedness Guide""]",[],[],[] -1754,https://detroitmi.gov/departments/police-department/detroit-police-department-shield-program/community-partner-resources,Misc Police Activity,200,Community Partner Resources | City of Detroit,"Why Join SHIELD? With the growth of a thriving city and the promise of greater commerce in Detroit comes increased security concerns for law enforcement, business owners, worship centers and citizens alike. The public and private sectors are stronger working together than either is alone. This partnership is the cornerstone in defending the City against terrorism. DPD Shield is a central destination to obtain critical information and engage police department resources. DPD Shield also seeks information from our community and private sector partners to assist in our efforts to keep the City What We Ask The DPD SHIELD program is a communication two-way street. The key to success is information flowing in two directions. Community partners serve as the eyes and ears of the DPD SHIELD and serve to directly impact efforts to prevent crime and acts of terrorism by reporting suspicious behavior as soon as possible. In addition, we recognize that our community partners are uniquely qualified to assist the Detroit Police Department personnel during an incident. You know what belongs and what is out of place. Sharing your perspective and working together, we are better prepared to face the most difficult challenges. ","[""\nCommunity Partner Resources\n""]","[""Top Links"", ""Site Menu"", ""\nDetroit Police Shield FAQs\n\n""]",[],"[""CONTACTS""]",[],[] -1755,https://www.southamptontownnypolice.gov/faq.aspx?qid=539,Not Criminal Justice Related,200,FAQs • Do I need to register my alarm system?,"",[],"[""\n\u25bc\r\nCitizens' Response Center\t\t""]","[""Loading"", ""Site Tools"", ""Categories"", ""Live Edit"", ""Contact Us"", ""Site Links""]",[],[],[] -1756,https://www.lynchburgvapolice.gov/news-updates/attempted-armed-robbery-at-att-store/,Media Bulletins,200,Attempted Armed Robbery at AT&T Store - Lynchburg Police Department,"","[""Attempted Armed Robbery at AT&T Store""]",[],[],"[""Contact Us"", ""Site Links"", ""Site Links""]",[],[] -1757,https://delcopa.gov/publicrelations/releases/2020/blackhistorymonth.html,Not Criminal Justice Related,200,"Delaware County Celebrates Black History Month - Delaware County, Pennsylvania","","[""Delaware County Celebrates Black History Month""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]","[""Council Vice Chair Dr. Monica Taylor speaks to students \r\n\t at Drexel Hill Middle School""]",[],[] -1758,http://www.longbeach.gov/police/press-releases/traffic-fatality-14-/,Media Bulletins,200,TRAFFIC FATALITY(14),"","[""Long BeachPolice Department""]",[],[],[],[],[] -1759,https://www.foxcrossingwi.gov/departments/police-department/history/badge1/,Poor Data Source,200,badge1 - Fox Crossing Fox Crossing,"",[],"[""History \u00bb badge1""]",[],[],[],[] -1760,https://www.knoxvilletn.gov/archived_news_stories/2008/police_explorer_class_orientation,Not Criminal Justice Related,200," - Police Explorer Class Orientation - City of Knoxville -",communications*,"[""Police Explorer Class Orientation"", ""Communications Director"", ""Police Explorer Class Orientation""]",[],[],[],[],[] -1761,https://coloradosprings.gov/police-department/article/news/officer-involved-shooting-march-7-2022,Officer Involved Shootings,200,"Officer-Involved Shooting March 7, 2022 | City of Colorado Springs","","[""\nOfficer-Involved Shooting March 7, 2022\n""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[] -1762,https://coloradosprings.gov/police-department/article/news/cspd-accident-alert-status-may-7-11-2021,Media Bulletins,200,"CSPD on Accident Alert Status from May 7 – 11, 2021 | City of Colorado Springs","","[""\nCSPD on Accident Alert Status from May 7 \u2013 11, 2021\n""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[] -1763,http://www.longbeach.gov/police/press-releases/felony-robbery-suspect-arrested-and-charged-1-/,Media Bulletins,200,FELONY ROBBERY SUSPECT ARRESTED AND CHARGED(1),"","[""Long BeachPolice Department""]",[],[],[],[],[] -1764,https://www.osc.state.ny.us/local-government/audits/fire-company-or-department/2015/12/18/copenhagen-fire-department-controls-over-financial-activities,Not Criminal Justice Related,200,Copenhagen Fire Department – Controls Over Financial Activities (2015M-270) | Office of the New York State Comptroller,Copenhagen Fire Department – Controls Over Financial Activities (2015M-270),"[""\nCopenhagen Fire Department \u2013 Controls Over Financial Activities (2015M-270)\n"", "" ""]","[""Main navigation""]","[""Local Government and School Accountability Contact Information:"", ""How would you rate our website?""]","[""Disclaimer"", ""Purpose of Audit"", ""Background"", ""Key Findings"", ""Key Recommendations"", ""Newsletter Sign-Up Confirmation"", ""Thank you for subscribing to the Comptroller's Weekly Newsletter!""]",[],[] -1765,https://hilliardohio.gov/hilliard-polices-sgt-higgins-retires-april/,Media Bulletins,200,Hilliard Police’s Sgt. Higgins retires April 9 - City of Hilliard,John Higgins isn’t sure if serving as a AAA School Safety Officer at Harrisburg Elementary School in 1975 inspired him to become a police officer or was,"[""News"", ""Hilliard Police\u2019s Sgt. Higgins retires April 9""]",[],[],"[""Recent Articles"", ""Hilliard Newsletter"", ""City Hall and Admin"", ""Hilliard Mayor's Court"", ""Division of Police"", ""Police Assistance"", ""Police Records and General Assistance"", ""Norwich Township Fire"", ""Hilliard Recreation & Parks"", ""Hilliard Newsletter"", ""Quick Links"", ""Stay connected with us""]",[],"[""Click the \u2018x\u2019 to opt out.""]" -1766,https://delcopa.gov/courts/specialtycourts/pdf/drugtreatment/treatment court - general rules.pdf,Resources,200,"","",[],[],[],[],[],[] -1767,https://www.arlingtontx.gov/news/my_arlington_t_x/news_archive/2018_archived_news/july_2018/july_2018_arlington_police_community_newsletter,Media Bulletins,200," - July 2018 Arlington Police Community Newsletter Available - City of Arlington -","","[""YOUR COMMUNITY NEWS AND EVENTS"", ""City of Arlington""]","[""July 2018 Arlington Police Community Newsletter Available""]",[],[],[],[] -1768,http://www.longbeach.gov/police/how-do-i/get-inmate-information/,Resources,200,Get Inmate Information,Long Beach Police Department- Get Inmate Information,"[""Police Department""]","[""REMOTE INMATE VISITATION"", ""INMATE INFORMATION""]","[""Mayor"", ""City Council"", ""Rex Richardson"", ""Mary Zendejas"", ""Cindy Allen"", ""Kristina Duggan"", ""Daryl Supernaw"", ""Megan Kerr"", ""Suely Saro"", ""Roberto Uranga"", ""Al Austin"", ""Dr. Joni Ricks-Oddie"", ""Dawn McIntosh"", ""Laura L. Doud"", ""Doug Haubert"", ""Tom Modica"", ""Monique DeLaGarza"", ""City-Wide Elected Officials"", ""Appointed Officials"", ""Online Payments"", ""Online Services"", ""In-Person Services"", ""Opening a Business"", ""Doing Business With The City"", ""Resources"", ""Most Popular"", ""Online Resources"", ""Attractions"", ""Business Associations"", ""Travel Resources"", ""Departments"", ""Job Opportunities"", ""Information"", ""LBPD"", ""Employment"", ""Bureaus"", ""News & Events"", ""Crime Info"", ""How Do I"", ""How Do I"", ""Contact Us"", """", ""Do."", ""Discover."", ""Connect."", ""Ask.""]","["""", ""1st District"", ""2nd District"", ""3rd District"", ""4th District"", ""5th District"", ""6th District"", ""7th District"", ""8th District"", ""9th District"", ""City Attorney"", ""City Auditor"", ""City Prosecutor"", ""City Manager"", ""City Clerk"", ""Have a question about visitation of inmates housed at the Long Beach Police Department?"", ""Call (562) 570-7260"", ""Have a question about visitation of inmates housed at the Los Angeles County Jail?"", ""Call (213) 473-6080""]","[""File a Report Online"", ""Submit a Tip"", ""Submit a Commendation"", ""File a Complaint"", ""Ride Along Program"", ""\u00a0"", ""\u00a0"", ""\u00a0"", ""\u00a0"", ""Crime Lab Survey"", ""\u00a0""]",[] -1769,http://www.lafayettepolice.us/726/home-emergency-plans,Contact Info & Agency Meta,200,"Home Emergency Plans | Lafayette, IN - Official Website",Make a fire escape plan and practice the safe ways to get out of the house if there is a fire.,"[""\r\n\r\nHome Emergency Plans\t\t""]",[],"[""Loading"", ""Contact Us"", ""FAQs"", ""Site Links""]",[],[],[] -1770,https://delcopa.gov/council/2019minutes/010919minutes.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -1771,https://covington.va.us/city-government/city-departments/police/,Media Bulletins,200,Police - Covington City,"","[""\nPolice\n"", ""\nPolice\n""]","[""\nCovington Appoints New Chief of Police and Director of Public Safety\n"", ""\nTOP ONLINE LINKS\n""]","[""Wish to make a complaint?"", ""OFFICER COMMENDATION"", ""THE AWARE FOUNDATION, INC.""]","[""NOTICES"", ""\nMAPLE AVENUE PROJECT UPDATE "", ""\nROUTE 18 THERMO STRIPING "", ""CALENDAR""]",[],[] -1772,https://www.southamptontownnypolice.gov/899/law-enforcement-career-exploring-program,Training & Hiring Info,200,"Law Enforcement Career Exploring Program | Southampton, NY - Official Website","Law Enforcement Career Exploring is open to young men and women ages 14 and not yet 21 years old with an interest in learning more about careers in the field of law enforcement. -","[""\r\n\r\nLaw Enforcement Career Exploring Program\t\t""]","[""Law Enforcement Career Exploring Program""]","[""Loading"", ""Site Tools"", ""Contact Us"", ""Contact Us"", ""Site Links""]",[],[],[] -1773,https://delcopa.gov/sustainability/presentations/22/11_kellysanders_v1.pptx,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -1774,https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0725/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1775,https://www.lynchburgvapolice.gov/news-updates/shooting-scene-on-golf-park-drive/,Media Bulletins,200,Shooting Scene on Golf Park Drive - Lynchburg Police Department,"","[""Shooting Scene on Golf Park Drive""]",[],[],"[""Contact Us"", ""Site Links"", ""Site Links""]",[],[] -1776,https://www.montgomeryohio.gov/historic-photos/police-officers-1970_50506081303_o/,Poor Data Source,200,"- Montgomery, Ohio","","[""""]","[""Primary menu links"", ""Action toolbar"", ""Welcome"", ""Engage"", ""Help"", ""Mental Health Resource""]",[],[],[],[] -1777,https://www.montgomeryohio.gov/police-department-citizen-complaint-notice/,Complaints & Misconduct,200,"Police Department Citizen Complaint Notice - Montgomery, Ohio","","[""Police Department Citizen Complaint Notice""]","[""Primary menu links"", ""Action toolbar"", ""Welcome"", ""Engage"", ""Help"", ""Mental Health Resource""]",[],[],[],[] -1778,https://www.doj.state.or.us/events/predicting-intimate-partner-violence-injuries-based-on-police-reports/,Poor Data Source,200,Predicting Intimate Partner Violence Injuries Based on Police Reports - Oregon Department of Justice ,"","["""", ""\nPredicting Intimate Partner Violence Injuries Based on Police Reports\n""]","[""Oregon Department of Justice"", ""Predicting Intimate Partner Violence Injuries Based on Police Reports""]","[""Attorney General Ellen F. Rosenblum"", ""Event Navigation"", "" Details "", ""Organizer"", "" Target Audiences "", "" Venue "", ""Event Navigation""]","[""January 16, 2019 @ 12:00 pm - 1:00 pm""]",[],[] -1779,https://alpha.austin.gov/es/police-oversight/formal-complaint-de-escalation-of-potential-force-encounters-and-other-policy-violations-7/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1780,https://alpha.austin.gov/es/police-oversight/9-17-20-3/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1781,https://delcopa.gov/planning/pdf/mapping/tinicum.pdf,Poor Data Source,200,"404 - Delaware County, Pennsylvania","","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -1782,https://detroitmi.gov/departments/police-department/senior-citizens-911-profile,Resources,200,Senior Citizens 911 Profile | City of Detroit,"The Detroit Police Department is firmly committed to providing professional service to all residents. However, in an effort to improve our service delivery model for our senior citizens (65 years of age or older) the Detroit Police Department will be implementing a new service: Senior 911 Profile. This service will allow our senior citizens to have their individual profiles stored in our 911 database and provide critical care information to the 911 call-takers in the event of an emergency situation. This should improve the call taking, dispatch and emergency response process. If you would like to take advantage of the Senior 911 Profile Agreement, please download or print out the agreement located below. Please read the agreement in its entirety, fill out all of the required fields marked with an asterisk *, and complete any additional information that you would like to include. Senior-Citizens-911-Profile The profile can be faxed to (313) 596-1610. Please include a copy of your Michigan State I.D. or Driver's License. The profile can also be hand delivered to any Detroit Police Department Precinct. However, if someone else is dropping off the profile for you, you must include a copy of your Michigan State I.D. or Driver's License with your profile.","[""\nSenior Citizens 911 Profile\n""]","[""Top Links"", ""Site Menu""]",[],[],[],[] -1783,https://pittsburghpa.gov/police/ssd,Poor Data Source,200,"","","[""CAREERS"", ""CONTACT US"", ""FOLLOW US"", ""GU\u00cdA DE RESIDENTES"", """", ""City-County Building Lighting - What Do Tonight's Colors Represent?""]",[],[],[],[],[] -1784,http://www.longbeach.gov/police/press-releases/in-custody-death-1-/,Media Bulletins,200,IN-CUSTODY DEATH(1),"","[""Long BeachPolice Department""]",[],[],[],[],[] -1785,https://www.hayward-ca.gov/police-department/public-services/youth-family-services-bureau//curfew-violations,Media Bulletins,200,Curfew Violations | City of Hayward - Official website,Minor Prohibited in Pool RoomsOffensesDefinitionsRestricted hours for curfew violations are:Sunday through Thursday 10:00 am – 6:00 amFriday and Saturday 12:01 am – 6:00 amService Contacts:Report a suspected curfew offender by calling 510.293.7000.,[],"[""Curfew Violations"", ""You are here. So is everything else."", ""Search form""]",[],"[""Receive crime bulletins and alerts"", ""Report\n Problems"", ""Ask\n Questions"", ""Make a\n Suggestion"", ""Translate"", ""Search""]",[],[] -1786,https://dccouncil.gov/judiciary-public-safety/copy-of-fo0_fy19_attachment-iv/,Annual & Monthly Reports,200,Copy of FO0_FY19_Attachment IV • Council of the District of Columbia,"","[""Copy of FO0_FY19_Attachment IV""]",[],[],[],[],[] -1787,http://www.longbeach.gov/police/press-releases/deceased-infant-found-in-alley/,Media Bulletins,200,DECEASED INFANT FOUND IN ALLEY,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1788,https://toddmissiontx.gov/mp_teams/police-department/,Contact Info & Agency Meta,200,Police Department – City of Todd Mission,"",[],"[""Gateway to the Texas Renaissance Festival"", ""Ryan Rutledge"", ""Ryan Schroeder"", ""Keith Winford"", ""Events""]","[""Todd Mission City Hall""]",[],[],[] -1789,https://police.birminghamal.gov/bureaus/patrol/tactical-operations-precinct/,Contact Info & Agency Meta,200,Tactical Operations Precinct | Birmingham Police Department,"","[""\n\n\n Birmingham Police Department\n\n\t\t\t\t\tCommitment | Excellence | Integrity\t\t\t\t\n\n""]","[""Putting People First"", ""Tactical Operations Precinct""]",[],"[""Hours & Info"", ""Upcoming Events"", ""CRIMESTOPPERS"", ""Police Information"", ""Quick Links"", ""I Need...""]",[],[] -1790,https://www.mass.gov/doc/jlm-13-2559-city-of-springfield-and-international-brotherhood-of-police-officers-local-364/download,Misc Police Activity,200,"","",[],[],[],[],[],[] -1791,https://www.southamptontownnypolice.gov/1340/endangered-species-resolutions,Not Criminal Justice Related,200,"Resolutions related to 4 x 4 Permits | Southampton, NY - Official Website","","[""\r\n\r\nResolutions related to 4 x 4 Permits\t\t""]","[""Southampton Town, NY Waterfowl Hunting""]","[""Loading"", ""Site Tools"", ""Endangered Species Annual Reports"", ""Contact Us"", ""Site Links""]","[""Endangered Species Resolutions""]",[],[] -1792,https://alpha.austin.gov/es/police-oversight/recommendations-for-improving-apds-policy-development-practices/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1793,http://www.lafayettepolice.us/1618/research-participation-spotlight,Not Criminal Justice Related,200,"Research Participation Spotlight | Lafayette, IN - Official Website","","[""\r\n\r\nResearch Participation Spotlight\t\t""]",[],"[""Loading"", ""Hellbenders "", ""Contact Us"", ""FAQs"", ""Site Links""]",[],[],[] -1794,https://spdblotter.seattle.gov/2012/07/03/spd-taking-applications-for-autumn-community-police-academy/,Media Bulletins,200,Seattle Police Accepting Applications for Autumn 2012 Community Police Academy - SPD Blotter,"","[""Seattle Police Accepting Applications for Autumn 2012 Community Police Academy""]","[""Find Posts By Topic"", ""You might also like..."", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[] -1795,http://www.tampa.gov/news/tampa-police-conduct-death-investigation-interstate-275-76591,Poor Data Source,200,Tampa Police Conduct Death Investigation on Interstate 275 | City of Tampa,"Late Tuesday night, Tampa Police responded to what was originally reported as a vehicle crashing into the guardrail in the southbound lanes of Interstate 275. Officers arrived to find a 2015 blue Dodge with multiple bullet holes resting against the center concrete guardrail. The driver, a 22-year-old black male, was found suffering from a gunshot to the upper body. Tampa Fire Rescue transported the driver to a nearby hospital where he was pronounced deceased. The southbound lanes of the interstate were closed at 11:31 PM to allow the scene to be processed, reopening at 6:30 AM.","[""Tampa Police Conduct Death Investigation on Interstate 275\n""]","[""Information Resources"", ""\nLatest News\n"", ""Key Services"", ""Report A Problem"", ""Contact"", ""Connect With Us""]",[],[],[],[] -1796,https://champaignil.gov/2012/03/22/police-officer-written-exam/,Training & Hiring Info,200,Police Officer Written Exam - City of Champaign,"","[""Police Officer Written Exam""]","[""News Releases"", ""Department News""]",[],[],[],[] -1797,https://audgen.michigan.gov/complete-projects/michigan-state-police-retirement-system/r071015416/,List of Data Sources,200,r071015416 - Michigan Office of the Auditor General,"","[""r071015416""]","[""Homepage under OAG logo \u2013 Notifications"", ""Post navigation""]",[],"[""Auditor General""]","[""Doug Ringler, CPA, CIA\n\t\t\t\tAuditor General""]",[] -1798,https://cityofpowell.us/reports/auto-draft-322/2020-08-police-department/,Annual & Monthly Reports,200,"City of Powell, Ohio | 2020.08 Police Department","","[""\n 2020.08 Police Department\n \n ""]","[""CONTACT INFO\n"", ""HELPFUL LINKS"", ""\n LET'S CONNECT\n ""]","[""you're at home in Powell""]","[""614.885.5380"", ""47 Hall Street, Powell, OH 43065"", ""Signup for our newsletter""]",[],[] -1799,http://police.portlandmaine.gov/652/portland-community-free-clinic,Resources,200,"Portland Community Free Clinic | Portland, ME - Official Website",Patients of the Portland Community Free Clinic with urgent needs should go to urgent care or the emergency department.,"[""Portland Community Free Clinic""]",[],[],[],[],[] -1800,https://barnegatpolice.us/download/missing-person-report-ncic/,Resources,200,Missing Person Report NCIC - Barnegat Township Police Department,"","[""Missing Person Report NCIC"", ""Missing Person Report NCIC""]","[""Missing Person Report NCIC""]","[""\n\t\t\t\t\t\tAbout the Author: \t\t\t\t\t\tBTPD ""]","[""Share This Story, Choose Your Platform!"", ""Resources"", ""Directions"", ""Quick Links""]",[],[] -1801,https://delcopa.gov/courts/domesticrelations/changeofaddress.html,Resources,200,"Copies of your Court Orders- Delaware County, Pennsylvania","","[""Change Your Address""]",[],"[""Domestic Relations Navigation"", ""Contact Us"", ""Courts Quick Links"", ""Government Center Quick Links"", ""About Delaware County""]",[],[],[] -1802,https://www.newcarrolltonmd.gov/government/departments/police_department/how_do_i__/vehicle_release,Contact Info & Agency Meta,404,"","",,,,,, -1803,https://www.colma.ca.gov/document_taxonomy/police-department/,List of Data Sources,200,Police Department Archives - Town of Colma,"","[""Document Types: Police Department""]","[""Primary menu links"", ""Action toolbar"", ""PD Press Release \u2013 C23-0912-05"", ""Colma PD Press Release \u2013 C23-0501-04"", ""Colma PD Press Release \u2013 C23-0424-04 and C23-0426-07"", ""Press Release \u2013 BART Fare Evasion Detail"", ""Press Release \u2013 C22-0420-01"", ""Press Release C22-0106-04"", ""CPD Press Release C21-0913-02"", ""PD Press Release C21-0111-01"", ""Press Release \u2013 C20-1212-01"", ""Press Release \u2013 C20-1127-01"", ""Posts navigation"", ""Contact"", ""Subscribe"", ""Connect""]",[],[],[],[] -1804,https://www.fortworthtexas.gov/departments/police/professional-standards,List of Data Sources,200," - Professional Standards Division -","","[""Police Department""]","[""Professional Standards Division"", ""Search One Address. Find Everything.""]","[""Support Services"", ""Internal Affairs Mission & Purpose"", ""Misconduct Investigation Examples"", ""Complaint Process"", ""Disposition"", ""Legal Stuff"", ""Public Information Requests"", ""Resources"", ""Helpful Links"", ""Connect With FWPD""]",[],[],[] -1805,https://brookfieldil.gov/police-pension-board-012920/,Poor Data Source,404,"","",,,,,, -1806,https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0373/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1807,https://alpha.austin.gov/en/police-oversight/temporary-suspension-of-police-sergeant-jeffrey-dwyer/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1808,http://www.longbeach.gov/police/press-releases/murder-46-/,Media Bulletins,200,MURDER(46),"","[""Long BeachPolice Department""]",[],[],[],[],[] -1809,https://www.southamptontownnypolice.gov/1325/mill-pond-association,Not Criminal Justice Related,200,"Mill Pond Association | Southampton, NY - Official Website","","[""\r\n\r\nMill Pond Association\t\t""]",[],"[""Loading"", ""Site Tools"", ""Contact Us"", ""Site Links""]","[""WQIP - Proposal Summary"", ""WQIP - Fund Application"", ""\u00a0Public Hearing Presentation"", ""2020 REPORT""]",[],[] -1810,https://www.southamptontownnypolice.gov/1323/village-of-sag-harbor---green-infrastruc,Not Criminal Justice Related,200,"Village of Sag Harbor - Green Infrastructure | Southampton, NY - Official Website","","[""\r\n\r\nVillage of Sag Harbor - Green Infrastructure \t\t""]",[],"[""Loading"", ""Site Tools"", ""Contact Us"", ""Site Links""]","[""WQIP - Proposal Summary"", ""WQIP - Fund Application""]",[],[] -1811,https://elkhartlakewi.gov/departments/police/,Contact Info & Agency Meta,200,Police - Village of Elkhart Lake,"","[""VILLAGE OF ELKHART LAKE POLICE DEPARTMENT""]","[""Frequently Asked Questions"", ""Pay Tickets & Fines Online"", ""Medications Drop Box"", ""Elkhart Lake Police Department History"", ""CONTACT US"", ""MORE ABOUT ELPD"", ""VILLAGE DEPARTMENTS"", ""ELPD on Facebook""]","[""Vision"", ""Mission Statement"", ""Core Values"", ""\nVILLAGE DEPARTMENTS\n"", ""\nVILLAGE SERVICES\n"", ""\nKEY VILLAGE CONTACTS\n""]",[],[],[] -1812,https://alpha.austin.gov/en/police-oversight/formal-complaint-purpose-and-scoperesponsibility-to-the-community-and-other-policy-violations-7/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1813,https://columbiacitypolice.us/documents/daily stats/3.23.21.pdf,Poor Data Source,404,"","",,,,,, -1814,http://police.portlandmaine.gov/844/friends-of-woodfords-corner,Not Criminal Justice Related,200,"Friends of Woodfords Corner | Portland, ME - Official Website","Friends of Woodfords Corner (FWC) began September 2015, when Woodfords Corner area neighbors came together to engage in community/city development.","[""Friends of Woodfords Corner""]",[],[],[],[],[] -1815,https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0145/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1816,http://www.longbeach.gov/police/press-releases/dui-saturation-patrol-nets-3-arrest/,Media Bulletins,200,DUI saturation Patrol Nets 3 Arrest,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1817,https://www.southamptontownnypolice.gov/154/forms-applications,Resources,200,"Forms & Applications | Southampton, NY - Official Website","","[""\r\n\r\nForms & Applications\t\t""]",[],"[""Loading"", ""Site Tools"", ""Contact Us"", ""Hon. Theresa A. Kiernan"", ""Hours"", ""Contact Us"", ""Site Links""]",[],[],[] -1818,https://www.antioch.il.gov/wpfb-file/04-14-15-police-and-fire-agenda-pdf-3/,Poor Data Source,200,"04-14-15 Police And Fire Agenda - Antioch, IL",8973 04 14 15 police and fire agenda pdf commissions commission agendas 2015 1428503395 36b727dd979e485336f834a1dcb52384 219x300 _es8j3agu7jf9 thumb jpg 08 09 29 55 0 pdf application trustees dennis b crosby jay jozwiak mary c dominiak scott a pierce jerry t johnson ted p poulos lawrence m hanson mayor lori k folbrick village clerk notice of,"[""04-14-15 Police And Fire Agenda""]",[],[],[],[],[] -1819,https://delcopa.gov/planning/pubs/delco2035transportationplan.html,Not Criminal Justice Related,200,Delaware County 2035 Transportation Plan,"","[""Delaware County 2035 Transportation Plan""]",[],"[""Planning Department Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -1820,https://www.antioch.il.gov/wpfb-file/nicorcoppernotice-pdf-3/,Not Criminal Justice Related,200,"Nicorcoppernotice - Antioch, IL",13520 nicorcoppernotice pdf news 2015 1625761363 2e2e175782d1e691570cab42162ae390 c3407f1dd7454c9da0e473bb3ac25408bb71668af83b7ffc07122e6a04d8511a 216x300 _dtun2pmmilyr thumb jpg 2017 05 17 08 41 0 174 208 226 95 2021 06 24 16 34 31 pdf application num_pages pagefailed_1 pagefailed_2 pagefailed_3 pagefailed_4 pagefailed_5 pagefailed_6 pagefailed_7 pagefailed_8 pagefailed_9 pagefailed_10 pagefailed_11 pagefailed_12 pagefailed_13 pagefailed_14 pagefailed_15 pagefailed_16 pagefailed_17 pagefailed_18 pagefailed_19 pagefailed_20 pagefailed_21 pagefailed_22 pagefailed_23 pagefailed_24,"[""Nicorcoppernotice""]",[],[],[],[],[] -1821,https://www.giddingspolice-tx.us/about-1,Complaints & Misconduct,200,How are we doing? | Giddings Police Department,"","[""PRAISE""]","[""COMPLAINT""]",[],[],[],[] -1822,http://lafayettepolice.us/441/how-you-can-help,Not Criminal Justice Related,200,"How You Can Help | Lafayette, IN - Official Website","The City of Lafayette is improving water quality in the Wabash River and other streams with significant investments in its sanitary and stormwater capital programs, but every little bit helps. ","[""\r\n\r\nHow You Can Help\t\t""]","[""Learn More"", "" Resources""]","[""Loading"", ""Contact Us"", ""FAQs"", ""Site Links""]",[],[],[] -1823,https://www.woburnma.gov/government/police/policies-and-procedures-for-issuing-a-ltc-with-application/,Training & Hiring Info,200,Policies and Procedures for Issuing a LTC With Application - City of Woburn,"","[""Policies and Procedures for Issuing a LTC With Application""]",[],"[""Get Text & Email Updates!""]","[""Post Details""]",[],[] -1824,http://www.longbeach.gov/police/press-releases/murder-anaheim-st.--walnut-ave/,Media Bulletins,200,MURDER (Anaheim St. & Walnut Ave.),"","[""Long BeachPolice Department""]",[],[],[],[],[] -1825,https://www.ci.rohnert-park.ca.us/services/emergency_services/police_and_fire_services,Resources,200," - Public Safety - City of Rohnert Park -","","[""City of Rohnert Park""]","[""Events"", ""Rohnert Park""]","[""Public Safety""]","[""Public Safety""]",[],[] -1826,http://www.longbeach.gov/police/press-releases/critical-missing-person-rosa-ella-brady/,Media Bulletins,200,CRITICAL MISSING PERSON-ROSA ELLA BRADY,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1827,https://cityofpowell.us/powell-police-chief-stephen-hrytzik-elected-section-iv-representative-of-fbi-national-academy-associates/chiefhrytzik_credit_klattephotography/,Contact Info & Agency Meta,200,"City of Powell, Ohio | ChiefHrytzik_credit_KlattePhotography","","[""\n ChiefHrytzik_credit_KlattePhotography\n \n ""]","[""CONTACT INFO\n"", ""HELPFUL LINKS"", ""\n LET'S CONNECT\n ""]","[""you're at home in Powell""]","[""614.885.5380"", ""47 Hall Street, Powell, OH 43065"", ""Signup for our newsletter""]",[],[] -1828,http://police.byram-ms.us/news/,Poor Data Source,200,News | Byram Police Department | Byram Police Department,"","[""Read the full report here."", ""Arrest Made in Holiday Inn Express Shooting""]","[""\nByram Police Releases 2020 Annual Report\n"", ""\nArrest Made in Byram Armed Robberies\n"", ""\nBradford Place Auto Burglary\n"", ""\nGovernor Reeves Executive Order RE: COVID-19\n"", ""\nCOVID-19 Resources\n"", ""\nUpdated Website\n"", ""Byram Weather""]","[""Byram Police Department""]",[],[],[] -1829,https://delcopa.gov/courts/domesticrelations/copiesoforder.html,Resources,200,"Copies of Your Court Orders - Delaware County, Pennsylvania","","[""Copies of Your Court Orders""]",[],"[""Domestic Relations Navigation"", ""Contact Us"", ""Courts Quick Links"", ""Government Center Quick Links"", ""About Delaware County""]",[],[],[] -1830,https://riag.ri.gov/press-releases/pawtucket-police-officer-charged-west-greenwich-shooting-incident,Officer Involved Shootings,200,Pawtucket police officer charged in West Greenwich shooting incident | Rhode Island Attorney General's Office,"","[""Pawtucket police officer charged in West Greenwich shooting incident""]",[],[],[],[],[] -1831,https://alpha.austin.gov/en/police-oversight/formal-complaint-insubordination-and-other-policy-violations/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1832,https://alpha.austin.gov/en/police-oversight/formal-complaint-purpose-and-scoperesponsibility-to-the-community-and-other-policy-violations-5/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1833,https://www.antioch.il.gov/wpfb-file/09-09-11-police-pension-fund-agenda-pdf-2/,Poor Data Source,200,"09-09-11 Police Pension Fund Agenda - Antioch, IL",09 11 police pension fund agenda pdf commissions agendas 2011 07 13 12 04 0000,"[""09-09-11 Police Pension Fund Agenda""]",[],[],[],[],[] -1834,http://www.longbeach.gov/police/press-releases/traffic-fatality-5-/,Media Bulletins,200,TRAFFIC FATALITY(5),"","[""Long BeachPolice Department""]",[],[],[],[],[] -1835,https://www.mass.gov/doc/proposed-amendments-to-115-cmr-100-scope-and-authority-0/download,Policies & Contracts,200,"","",[],[],[],[],[],[] -1836,https://delcopa.gov/publicrelations/releases/18pdfs/18hearthealthwearred .pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -1837,https://cityofpowell.us/government/building-department/city-of-powell-commercial-building/checklist-cop-comm-change-of-occ-01-08-19/,Resources,200,"City of Powell, Ohio | Checklist COP Comm Change of Occ 01.08.19","","[""\n Checklist COP Comm Change of Occ 01.08.19\n \n ""]","[""CONTACT INFO\n"", ""HELPFUL LINKS"", ""\n LET'S CONNECT\n ""]","[""you're at home in Powell""]","[""614.885.5380"", ""47 Hall Street, Powell, OH 43065"", ""Signup for our newsletter""]",[],[] -1838,https://www.stpaul.gov/departments/police/administration-office-chief/operations-division/canine-k-9-unit,Training & Hiring Info,200,Canine (K-9) Unit | Saint Paul Minnesota,The Saint Paul Police Canine (K-9) Unit is the second oldest police canine organization in the United States. We operate with approximately fifteen Officer/Canine teams and provide 24/7 coverage. The mission of the Canine (K-9) Unit is to support the patrol districts with all patrol functions.,"[""\nCanine (K-9) Unit\n""]","[""Main Navigation"", ""Popular Topics"", ""Breadcrumb"", ""\n Contact Us\n "", ""Footer""]","[""\n You are using an unsupported browser. Please use Microsoft Edge.\n "", ""\n Contact The City\n "", ""Email Us"", ""Call 651-266-8989""]","[""Business Spotlight"", ""Featured"", ""Business Spotlight"", ""Featured""]",[],[] -1839,https://coloradosprings.gov/police-department/page/colorado-springs-police-department-birthday,Not Criminal Justice Related,200,Colorado Springs Police Department Birthday Program | City of Colorado Springs,"","[""\nColorado Springs Police Department Birthday Program\n""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[] -1840,https://alpha.austin.gov/es/police-oversight/message-from-the-office-of-police-oversight-director/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1841,https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/summary/102122summary.pdf,Poor Data Source,404,"","",,,,,, -1842,https://norfolkne.gov/assets/site/documentcentral/police/statistical-reports/ytd-mayor-030120.pdf,Annual & Monthly Reports,200,"","",[],[],[],[],[],[] -1843,https://cheswold.delaware.gov/cheswold-police-department-crime-statistics/may-2018-activity-report/,Annual & Monthly Reports,200,May 2018 Activity Report - Town of Cheswold,"","[""Cheswold""]","[""Delaware"", ""May 2018 Activity Report""]","[""Menu""]","[""Address:"", ""Call Us:"", ""Reach Out:""]",[],[] -1844,https://www.mass.gov/how-to/submit-a-public-records-request-to-the-municipal-police-training-committee,Resources,200,Submit a public records request to the Municipal Police Training Committee | Mass.gov,Request public records online from the Municipal Police Training Committee.,"[""\n Submit a public records request to the Municipal Police Training Committee\n ""]","[""Contacts\n "", ""The Details\n of Submit a public records request to the Municipal Police Training Committee"", ""Contacts\n "", ""Help Us Improve Mass.gov with your feedback""]","[""\n Primary Records Access Officer\n "", ""the Contents of the Submit a public records request to the Municipal Police Training Committee page"", ""What you need\n for Submit a public records request to the Municipal Police Training Committee"", ""How to request\n Submit a public records request to the Municipal Police Training Committee"", ""Contact\n for Submit a public records request to the Municipal Police Training Committee"", ""\n Primary Records Access Officer\n ""]","[""\n\nOnline\n"", ""\n\n\n\n\n Online\n +\n\n"", ""\n Primary Records Access Officer\n "", ""\n\nOnline\n""]","[""\n\nOnline\n""]",[] -1845,https://ose.louisiana.gov/event/police-communications-officer-52/,Poor Data Source,200,Police Communications Officer | Louisiana Office of State Examiner,"","["""", ""Police Communications Officer""]",[],"[""Competitive Level""]",[],[],"[""Recent Posts"", ""Archives"", ""Categories"", ""Meta""]" -1846,https://www.minneapolismn.gov/government/programs-initiatives/community-safety/background/police-operational-assessment/mpd-operational-assessment-contract/,Policies & Contracts,200,Community Safety Work - City of Minneapolis,We're focusing on three key areas to improve community safety in our city.,"[""Community safety work"", ""Need help? We're here for you.""]","[""Overview"", ""Key areas"", ""Related links"", ""Community safety in different languages from 2021"", ""Contact us""]","[""Alternatives to police response"", ""Violence prevention"", ""Police policy reform"", ""Unarmed public safety responses"", ""Public health approach to violence"", ""Behavioral crisis response"", ""See language translation pages"", ""Alternatives to police response"", ""Police policy reform"", ""Community Safety Office""]","[""Learn more"", ""Learn more"", ""Learn more""]",[],[] -1847,https://delcopa.gov/courts/districtjudges/index.html,Media Bulletins,200,Magisterial District Judges - Delaware County Court of Common Pleas,"","[""Magisterial District Judges""]",[],"[""Notice"", ""Magisterial District Court Navigation"", ""Contact Us"", ""Courts Quick Links"", ""Government Center Quick Links"", ""About Delaware County""]",[],[],[] -1848,http://www.cityofpataskalaohio.gov/cop_folder/minutes-2015/january-5-2015-council-public-hearing/,Not Criminal Justice Related,200,"January 5, 2015 Council Public Hearing - City Of Pataskala",Official Website,"[""\n\t\t\t\tCity Of Pataskala\t\t\t"", ""\n\t\t\t\t\tJanuary 5, 2015 Council Public Hearing\t\t\t\t""]","[""\n\t\t\t\tOfficial Website\t\t\t"", ""Categories""]",[],[],[],[] -1849,https://delcopa.gov/publicrelations/releases/2020/flushot_broomall.html,Not Criminal Justice Related,200,"Delaware County Hosts Public Flu Shot Clinic October 16 and 17 in Broomall - Delaware County, Pennsylvania","","[""Delaware County Hosts Public Flu Shot Clinic October 16 and 17 in Broomall""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -1850,https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0323/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1851,https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/blotter/092022blotter.pdf,Dispatch Logs,404,"","",,,,,, -1852,https://www.roseville.ca.us/government/departments/police_department/divisions/k-9,Misc Police Activity,200," - K-9 - City of Roseville -","","[""City of Roseville""]","[""K-9""]","[""Roseville Police Department ""]",[],[],[] -1853,http://www.longbeach.gov/police/press-releases/dui-checkpoint-nets-one-arrest2/,Media Bulletins,200,DUI CHECKPOINT NETS TWO ARRESTS,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1854,https://alpha.austin.gov/police-oversight/know-your-rights-video-series/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1855,https://toddmissiontx.gov/departments/police-department/mission-statement/,Policies & Contracts,200,Mission Statement – City of Todd Mission,"","[""Mission Statement"", ""MISSION"", ""INTEGRITY"", ""RESPECT"", ""FAIRNESS""]","[""Gateway to the Texas Renaissance Festival"", ""Department Menu""]","[""Todd Mission City Hall""]",[],[],[] -1856,https://delcopa.gov/planning/demodata/municipalinformation.html,Poor Data Source,200,"404 - Delaware County, Pennsylvania","","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -1857,https://alpha.austin.gov/en/police-oversight/written-reprimand-of-officer-david-freston/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1858,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/122421blotter.pdf,Dispatch Logs,200,"","",[],[],[],[],[],[] -1859,https://www.pleasantprairiewi.gov/news/2014_news/police_department_live,Poor Data Source,200," - Police Department Live - Village of Pleasant Prairie -","",[],"[""Police Department Live""]","[""Follow Us on Social Media""]",[],[],[] -1860,https://delcopa.gov/publicrelations/releases/2021/emergencybroadbandbenefitprogram.html,Not Criminal Justice Related,200,"Emergency Broadband Benefit Program - Delaware County, Pennsylvania","","[""Emergency Broadband Benefit Program""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -1861,https://www.osc.state.ny.us/state-agencies/payroll-bulletins/state-police/sp-216-april-2021-increases-location-pay-supplemental-location-pay-expanded,Media Bulletins,200,State Police Bulletin No. SP-216 | Office of the New York State Comptroller,State Police Bulletin No. SP-216,"[""\nState Police Bulletin No. SP-216\n"", "" ""]","[""Main navigation""]","[""How would you rate our website?""]","[""Disclaimer"", ""Purpose"", ""Affected Employees"", ""Background"", ""Effective Dates"", ""Eligibility Criteria"", ""OSC Actions"", ""Agency Actions"", ""Control-D Report Available After Processing"", ""Tax Information"", ""Payroll Register and Employee\u2019s Paycheck/Advice"", ""Questions"", ""Newsletter Sign-Up Confirmation"", ""Thank you for subscribing to the Comptroller's Weekly Newsletter!""]",[],[] -1862,https://cityofpowell.us/police-agency/traffic-surveys/traffic-survey-report-1-13-20-2/,Contact Info & Agency Meta,200,"City of Powell, Ohio | Traffic Survey Report 1-13-20","","[""\n Traffic Survey Report 1-13-20\n \n ""]","[""CONTACT INFO\n"", ""HELPFUL LINKS"", ""\n LET'S CONNECT\n ""]","[""you're at home in Powell""]","[""614.885.5380"", ""47 Hall Street, Powell, OH 43065"", ""Signup for our newsletter""]",[],[] -1863,https://townofcampbellwi.gov/public-safety/police/forms/,Poor Data Source,200,Police Department Forms - Town of Campbell,"","[""Police Department Forms""]",[],"[""Police Department Records Request Form & Fee Schedule\n"", ""New Parking Contestment Form"", ""Police Forms for Your Use"", ""Citizen Report Form"", ""Quick Links"", ""About"", ""Government"", ""Services"", ""Public Safety""]",[],[],[] -1864,https://alpha.austin.gov/es/police-oversight/formal-complaint-search-protocol/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1865,https://www.antioch.il.gov/wpfb-file/12-11-12-police-pension-agenda-pdf-5/,Poor Data Source,200,"12-11-12 Police Pension Agenda - Antioch, IL",12 11 police pension agenda pdf commissions fund agendas 2012 2017 05 17 08 41 32 0000,"[""12-11-12 Police Pension Agenda""]",[],[],[],[],[] -1866,https://delcopa.gov/planning/calendar/eventcalendar_june.html,Misc Police Activity,200,"Calendar - Delaware County, Pennsylvania","","[""Calendar"", ""JUNE 2024""]",[],"[""Planning Department Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -1867,https://www.mass.gov/doc/chelmsford-police-department-promotion-investigation-report/download,Court Cases,200,"","",[],[],[],[],[],[] -1868,https://www.troyny.gov/photos-troy-police-department-appoints-new-officers/,Media Bulletins,404,"","",,,,,, -1869,http://www.paloshillspolice.us/wp-content/uploads/2013/05/redlight.jpg,Poor Data Source,404,"","",,,,,, -1870,https://www.bedminster.us/police_fire_rescue/police_department,Contact Info & Agency Meta,200," - Police - Township of Bedminster -","","[""Bedminster Township""]","[""Police""]","[""Bedminster Township""]",[],[],[] -1871,https://scrantonpa.gov/your-government/police-department/juvenile-unit/,Contact Info & Agency Meta,200,Juvenile Unit – City of Scranton,"","[""Juvenile Unit""]","[""Quick Links"", ""City of Scranton""]",[],[],[],[] -1872,http://www.longbeach.gov/police/press-releases/applications-for-volunteer-senior-police-partners-program-now-being-accepted/,Media Bulletins,200,APPLICATIONS FOR VOLUNTEER SENIOR POLICE PARTNER PROGRAM NOW BEING ACCEPTED,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1873,https://www.va.gov/eastern-oklahoma-health-care/stories/va-suicide-prevention-program-recognizes-tulsa-police-officer/,Media Bulletins,200,VA Suicide Prevention Program Recognizes Tulsa Police Officer | VA Eastern Oklahoma Health Care | Veterans Affairs,"On Sept. 28, Mark Morgan, director, Eastern Oklahoma VA Health Care System, presented a VA challenge coin to Tulsa Police Officer Demita Kinnard in recognition of her assistance to the VA Suicide Prevention Program.","[""VA Suicide Prevention Program recognizes Tulsa Police Officer""]",[],[],[],[],[] -1874,https://champaignil.gov/2017/09/07/now-cgtv-champaign-police-department-employee-awards-ceremony/,Not Criminal Justice Related,200,Now on CGTV: Champaign Police Department Employee Awards Ceremony - City of Champaign,"","[""Now on CGTV: Champaign Police Department Employee Awards Ceremony""]","[""News Releases"", ""Department News""]",[],[],[],[] -1875,https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0647/,Complaints & Misconduct,200,Maintenance Notice,"",[],[],[],[],[],[] -1876,http://www.longbeach.gov/police/about-the-lbpd/employment/long-beach-mounted-police/,Misc Police Activity,200,Long Beach Mounted Police,"LONG BEACH MOUNTED POLICE - - The Long Beach Mounted Police is a non-profit corporation with a duly elected Board of Directors. They maintain their own insurance and oversee other business matters and investments. Membership includes riders and non-riders who are supporters of equestrian activities. - For mo
","[""Police Department""]","[""LONG BEACH MOUNTED POLICE""]","[""Mayor"", ""City Council"", ""Rex Richardson"", ""Mary Zendejas"", ""Cindy Allen"", ""Kristina Duggan"", ""Daryl Supernaw"", ""Megan Kerr"", ""Suely Saro"", ""Roberto Uranga"", ""Al Austin"", ""Dr. Joni Ricks-Oddie"", ""Dawn McIntosh"", ""Laura L. Doud"", ""Doug Haubert"", ""Tom Modica"", ""Monique DeLaGarza"", ""City-Wide Elected Officials"", ""Appointed Officials"", ""Online Payments"", ""Online Services"", ""In-Person Services"", ""Opening a Business"", ""Doing Business With The City"", ""Resources"", ""Most Popular"", ""Online Resources"", ""Attractions"", ""Business Associations"", ""Travel Resources"", ""Departments"", ""Job Opportunities"", ""Information"", ""LBPD"", ""Employment"", ""Bureaus"", ""News & Events"", ""Crime Info"", ""How Do I"", ""How Do I"", ""Contact Us"", ""Volunteer Opportunities"", ""Do."", ""Discover."", ""Connect."", ""Ask.""]","["""", ""1st District"", ""2nd District"", ""3rd District"", ""4th District"", ""5th District"", ""6th District"", ""7th District"", ""8th District"", ""9th District"", ""City Attorney"", ""City Auditor"", ""City Prosecutor"", ""City Manager"", ""City Clerk""]","[""File a Report Online"", ""Submit a Tip"", ""Submit a Commendation"", ""File a Complaint"", ""Ride Along Program"", ""\u00a0"", ""\u00a0\u00a0"", ""\u00a0"", ""Crime Lab Survey"", ""\u00a0""]",[] -1877,https://www.arlingtontx.gov/news/my_arlington_t_x/news_archive/2016_archived_news/may_2016/arlington_honors_police_salutes_sacrifice,Media Bulletins,200," - Arlington Honors Police Service, Salutes Sacrifice - City of Arlington -","","[""YOUR COMMUNITY NEWS AND EVENTS"", ""City of Arlington""]","[""Arlington Honors Police Service, Salutes Sacrifice""]",[],[],[],[] -1878,https://delcopa.gov/sustainability/pdf/raise/eastcostgreenwaytrailfeasibilitystudy_2009.pdf,Not Criminal Justice Related,200,"404 - Delaware County, Pennsylvania","","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -1879,http://www.longbeach.gov/police/press-releases/murder-1600-block-of-pine-avenue/,Media Bulletins,200,Murder (1600 Block of Pine Avenue),"","[""Long BeachPolice Department""]",[],[],[],[],[] -1880,https://spdblotter.seattle.gov/2010/08/09/john-diaz-confirmed-as-new-chief-of-police/,Media Bulletins,200,John Diaz confirmed as new Chief of Police - SPD Blotter,"","[""John Diaz confirmed as new Chief of Police""]","[""Find Posts By Topic"", ""You might also like..."", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[] -1881,https://spdblotter.seattle.gov/2010/02/01/police-arrest-grab-n-go-bandit/,Media Bulletins,200,"""Grab-N-Go"" bandit arrested - SPD Blotter","","[""\u201cGrab-N-Go\u201d bandit arrested""]","[""Find Posts By Topic"", ""You might also like..."", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[] -1882,https://www.sandiego.gov/department-document/san-diego-police-arrest-two-suspects-multiple-car-burglaries,Media Bulletins,200,San Diego Police Arrest Two Suspects for Multiple Car Burglaries | City of San Diego Official Website,"","[""City of San Diego Official Website""]","[""Main navigation"", ""Leisure"", ""Resident Resources"", ""Doing Business"", ""Library"", ""Public Safety"", ""City Hall"", ""Accessibility Tools"", ""San Diego Police Arrest Two Suspects for Multiple Car Burglaries"", ""Footer""]",[],"[""Parks"", ""Outdoors"", ""Neighborhoods"", ""Recreational Activities"", ""Street Maintenance"", ""Plan"", ""Fix"", ""Build"", ""Programs & Events"", ""Services"", ""Kids & Teens"", ""eCollection"", ""Police"", ""Fire-Rescue"", ""Lifeguards"", ""City Officials"", ""City Government""]",[],[] -1883,https://www.antioch.il.gov/2019/11/21/police-fire-commission-special-meeting/,Misc Police Activity,200,"Police & Fire Commission Special Meeting - Antioch, IL","","[""Police & Fire Commission Special Meeting""]",[],[],[],[],[] -1884,http://www.longbeach.gov/police/press-releases/police-seek-publics-help/,Media Bulletins,200,POLICE SEEK PUBLICS HELP,"","[""Long BeachPolice Department""]",[],"[""UPDATE: On November 10, 2015, Long Beach City Council approved a $25,000 reward that raises the total reward to $75,000.""]",[],[],[] -1885,https://www.mass.gov/regulations/273-cmr-400-scope-of-practice,Not Criminal Justice Related,200,273 CMR 4.00: Scope of practice | Mass.gov,273 CMR 4.00 establishes the scope of practice for the practice of naturopathic health care. Download a PDF copy of the regulation below.,"[""\nRegulation\u00a0\n 273 CMR 4.00: Scope of practice\n ""]","[""Table of Contents\n for the law library, 273 CMR"", ""Contact for 273 CMR 4.00: Scope of practice"", ""Table of Contents"", ""Downloads\n for 273 CMR 4.00: Scope of practice"", ""Contact\n for 273 CMR 4.00: Scope of practice"", ""Contact for 273 CMR 4.00: Scope of practice"", ""Help Us Improve Mass.gov with your feedback""]","[""\n Trial Court Law Libraries\n "", ""\n Trial Court Law Libraries\n "", ""\n Trial Court Law Libraries\n ""]","[""\n\nOnline\n"", ""\n\nOnline\n"", ""\n\nOnline\n""]",[],[] -1886,https://champaignil.gov/tag/youth-police-academy/,Media Bulletins,200,Youth Police Academy Archives - City of Champaign,"","[""Items tagged: Youth Police Academy""]","[""Reserve Your Spot Today! Citizen Police Academy and Youth Police Academy"", ""News Releases"", ""Department News""]",[],[],[],[] -1887,https://delcopa.gov/planning/pubs/delco2035.html,Not Criminal Justice Related,200,"Delaware County 2035- Delaware County, Pennsylvania","","[""Delaware County 2035""]","[""Component Plans""]","[""Planning Department Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -1888,https://www.sandiego.gov/department-document/resolution-no-115919-copy,Poor Data Source,404,"","",,,,,, -1889,https://southamptontownnypolice.gov/faq.aspx?qid=237,Not Criminal Justice Related,200,FAQs • What happens if I pay my taxes late?,"",[],"[""\n\u25bc\r\nTax Receiver\t\t""]","[""Loading"", ""Site Tools"", ""Categories"", ""In Person"", ""Mail"", ""Online Services"", ""Live Edit"", ""Contact Us"", ""Site Links""]",[],[],[] -1890,https://champaignil.gov/police/about-us/level-up-experienced-officer-interest-form/,Contact Info & Agency Meta,404,"","",,,,,, -1891,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/arrests/052421arrests.pdf,Arrest Records,200,"","",[],[],[],[],[],[] -1892,https://www.londonohio.gov/copy-of-city-ordances,Poor Data Source,200,Ohio Revised Code | City of London,"",[],[],[],[],[],[] -1893,https://estespark.colorado.gov/departments/police/operations/patrol,Contact Info & Agency Meta,200,Patrol | Town of Estes Park,"","[""\nPatrol\n""]","[""Providing Quality Police Services""]","[""\n"", ""\nWhat we do\n"", ""\nThe Town\n"", ""\n\n\n\n Animal Control\n \n\n"", ""\n\n\n\n Code Enforcement\n \n\n"", ""\n\n\n\n DUI Enforcement\n \n\n"", ""\n\n\n\n School Resource Officer (SRO)\n \n\n"", ""\n"", ""\nLanguage Translation\n""]",[],[],[] -1894,https://www.tukwilawa.gov/departments/police/police-department-services/online-reporting/,Resources,200,Online Reporting - City of Tukwila,"","[""Online Reporting""]",[],"[""Government""]","[""\nCity of Tukwila\n""]","[""I am a..."", ""Online Services"", ""Most Requested Forms""]",[] -1895,https://www.sandiego.gov/police/recruiting/contact,Contact Info & Agency Meta,200,Join Us Contact | City of San Diego Official Website,The following contact information and form are for theSDPD Recruiting Unit only. SeeContact Police Dispatchfor dispatch information and the dispatch contact form.,"[""City of San Diego Official Website"", ""Join Us Contact\n""]","[""Main navigation"", ""Leisure"", ""Resident Resources"", ""Doing Business"", ""Library"", ""Public Safety"", ""City Hall"", ""Accessibility Tools"", """", ""Footer""]","[""Recruiting Officers"", ""Dispatch Recruiting""]","[""Parks"", ""Outdoors"", ""Neighborhoods"", ""Recreational Activities"", ""Street Maintenance"", ""Plan"", ""Fix"", ""Build"", ""Programs & Events"", ""Services"", ""Kids & Teens"", ""eCollection"", ""Police"", ""Fire-Rescue"", ""Lifeguards"", ""City Officials"", ""City Government""]",[],[] -1896,https://delcopa.gov/publicrelations/releases/2021/sheriffsofficeaccreditation.html,Media Bulletins,200,"Delaware County Sheriff's Office Earns Law Enforcement Accreditation - Delaware County, Pennsylvania","","[""Delaware County Sheriff's Office Earns Law Enforcement Accreditation""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -1897,https://www.roseville.ca.us/news/what_s_happening_in_roseville/police_thank_local_community,Media Bulletins,200," - Police thank local community for RPAL support - City of Roseville -",Residents of a newly developed Fiddyment Farm neighborhood came together on July Fourth in celebration and support of the greater Roseville community.,"[""City of Roseville""]","[""Police thank local community for RPAL support"", ""Police thank you local community for RPAL support"", ""Featured Stories""]","[""Check out our Job Fair!"", ""Anticipating the future"", ""Keeping Roseville green: waste audits in your neighborhood"", ""Food, fun & dancing - Join us at the Senior (50+) Prom"", ""Original Stories Author Panel Discusses California\u2019s Indigenous History and Future at the Maidu Museum February 17"", ""City of Roseville""]",[],[],[] -1898,http://www.longbeach.gov/police/press-releases/l-b-p-d--dui-checkpoint-proves-effective/,Media Bulletins,200,L.B.P.D. DUI CHECKPOINT PROVES EFFECTIVE,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1899,https://www.sandiego.gov/department-document/police-officer-cleared-shooting-jury-finds-actions-were-reasonable,Officer Involved Shootings,200,Police Officer Cleared in Shooting; Jury Finds Actions Were Reasonable | City of San Diego Official Website,"","[""City of San Diego Official Website""]","[""Main navigation"", ""Leisure"", ""Resident Resources"", ""Doing Business"", ""Library"", ""Public Safety"", ""City Hall"", ""Accessibility Tools"", ""Police Officer Cleared in Shooting; Jury Finds Actions Were Reasonable"", ""Footer""]",[],"[""Parks"", ""Outdoors"", ""Neighborhoods"", ""Recreational Activities"", ""Street Maintenance"", ""Plan"", ""Fix"", ""Build"", ""Programs & Events"", ""Services"", ""Kids & Teens"", ""eCollection"", ""Police"", ""Fire-Rescue"", ""Lifeguards"", ""City Officials"", ""City Government""]",[],[] -1900,https://www.roundrocktexas.gov/news/police-seek-assistance-locating-robbery-suspect-3/,Media Bulletins,200,Bank robbery suspect arrested following public assistance - City of Round Rock,"",[],[],"[""Bank robbery suspect arrested following public assistance""]","[""Site Search"", ""Follow Us""]",[],[] -1901,https://www.plymouthmi.gov/government/departments/police/forms_and_documents/i_c_m_a_public_safety_reports,Annual & Monthly Reports,200," - ICMA Public Safety Reports - City of Plymouth, MI -","","[""ICMA Public Safety Reports""]",[],[],[],[],[] -1902,https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0351/,Complaints & Misconduct,200,Maintenance Notice,"",[],[],[],[],[],[] -1903,https://www.stpaul.gov/departments/police/connect-with-department/minnesota-crime-alert-network,Contact Info & Agency Meta,200,Minnesota Crime Alert Network | Saint Paul Minnesota,"Minnesota Crime Alert Network The Saint Paul Police Department, Bureau of Criminal Apprehension and the Minnesota Department of Public Safety are inviting","[""\nMinnesota Crime Alert Network\n""]","[""Main Navigation"", ""Popular Topics"", ""Breadcrumb"", ""Minnesota Crime Alert Network"", ""Footer""]","[""\n You are using an unsupported browser. Please use Microsoft Edge.\n "", ""\n Contact The City\n "", ""Email Us"", ""Call 651-266-8989""]","[""Business Spotlight"", ""Featured"", ""Business Spotlight"", ""Featured""]",[],[] -1904,https://alpha.austin.gov/en/police-oversight/formal-complaint-purpose-and-scope-12/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1905,https://pittsburghpa.gov/files/police/orders/ch3/35-03-infectious-disease-kits.pdf,Poor Data Source,404,"","",,,,,, -1906,https://www.minneapolismn.gov/news/2022/september/new-police-chief-/,Poor Data Source,300,300 Multiple Choices,"","[""Multiple Choices""]",[],[],[],[],[] -1907,https://coloradosprings.gov/police-department/article/news/traffic-fatality-briargate-parkway-and-1,Media Bulletins,200,Traffic Fatality: Briargate Parkway and Chapel Hills Drive | City of Colorado Springs,"","[""\nTraffic Fatality: Briargate Parkway and Chapel Hills Drive\n""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[] -1908,http://www.lafayettepolice.us/3537/report-an-issue,Resources,200,"Report an Issue | Lafayette, IN - Official Website",Reporting landing page for SeeClickFix request categories.,"[""\r\n\r\nReport an Issue\t\t""]",[],"[""Loading"", ""Contact Us"", ""FAQs"", ""Site Links""]",[],[],[] -1909,https://coloradosprings.gov/police-department/article/news/cspd-asks-communitys-help-fatal-crash,Media Bulletins,200,CSPD Asks for the Community’s Help in Fatal Crash | City of Colorado Springs,"","[""\nCSPD Asks for the Community\u2019s Help in Fatal Crash\n""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[] -1910,http://police.portlandmaine.gov/1170/maine-state-pier,Not Criminal Justice Related,200,"Maine State Pier | Portland, ME - Official Website","","[""Maine State Pier""]",[],[],[],[],[] -1911,https://alpha.austin.gov/en/police-oversight/2020-08-26-12/,Complaints & Misconduct,200,Maintenance Notice,"",[],[],[],[],[],[] -1912,https://www.roundrocktexas.gov/news/round-rock-police-investigate-suspicious-death-subject-in-custody/,Media Bulletins,200,Police investigate murder at storage facility - City of Round Rock,"",[],[],"[""Police investigate murder at storage facility""]","[""Site Search"", ""Follow Us""]",[],[] -1913,http://www.longbeach.gov/police/press-releases/murder-3500-block-of-faust-ave/,Media Bulletins,200,Murder 3500 Block of Faust Ave,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1914,https://www.antioch.il.gov/wpfb-file/national-coffee-with-a-cop-flyer-template-ppt-pdf/,Misc Police Activity,200,"National-Coffee-With-A-Cop-Flyer-Template-ppt - Antioch, IL",15230 national coffee with a cop flyer template ppt pdf event documents 2017 1625759890 364503d45be0a2fb8c68180abac5d6cd 15a3caf730ab8522c6cbb9cef220d9e955aab263a9e0b28c90daa8b038d5efb9 225x300 _razo576asevc thumb jpg 09 18 14 17 40 0 216 125 48 192 2021 07 13 26 38 pdf application num_pages pagefailed_1 pagefailed_2 pagefailed_3 pagefailed_4 pagefailed_5 pagefailed_6 pagefailed_7 pagefailed_8 pagefailed_9 pagefailed_10 pagefailed_11 pagefailed_12 pagefailed_13 pagefailed_14 pagefailed_15 pagefailed_16 pagefailed_17,"[""National-Coffee-With-A-Cop-Flyer-Template-ppt""]",[],[],[],[],[] -1915,http://www.longbeach.gov/police/press-releases/murder-19-/,Media Bulletins,200,MURDER(19),"","[""Long BeachPolice Department""]",[],[],[],[],[] -1916,https://pittsburghpa.gov/files/police/orders/ch2/25-02-reinstatement-voluntary-break-in-service.pdf,Poor Data Source,404,"","",,,,,, -1917,http://www.longbeach.gov/police/press-releases/dui-checkpoint-nets-one-arrest---numerous-citations/,Media Bulletins,200,DUI CHECKPOINT NETS ONE ARREST & NUMEROUS CITATIONS,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1918,https://dccouncil.gov/donation-disclosures/copy-of-december-2018-donation-disclosures-3/,Not Criminal Justice Related,200,Copy of December 2018 Donation Disclosures • Council of the District of Columbia,"","[""Copy of December 2018 Donation Disclosures""]",[],[],[],[],[] -1919,https://www.sandyspringsgapolice.gov/north-metro-s-w-a-t/,Contact Info & Agency Meta,200,North Metro S.W.A.T. – Sandy Springs Police Department,"","[""North Metro S.W.A.T.""]",[],[],[],[],[] -1920,https://www.ashevillenc.gov/news/three-promoted-in-asheville-police-dept/,Media Bulletins,200,Three promoted in Asheville Police Dept. - The City of Asheville,"","[""Three promoted in Asheville Police Dept.""]",[],[],[],[],[] -1921,https://www.east-windsor.nj.us//police/cpanel,Poor Data Source,200,"Official Website of East Windsor Township, New Jersey - REDIRECT - EWPD CPanel","",[],[],[],[],[],[] -1922,https://www.dps.nm.gov/blog/2021/04/14/new-mexico-state-police-arrests-driver-for-vehicular-homicide-in-chaves-county/,Media Bulletins,200,New Mexico State Police Arrests Driver for Vehicular Homicide in Chaves County - NM Department of Public Safety,"","[""New Mexico State Police Arrests Driver for Vehicular Homicide in Chaves County""]",[],"[""Location"", ""Sitemap"", ""Quick Links"", ""Social Media Links""]",[],[],[] -1923,https://cityofpowell.us/police-agency/traffic-surveys/traffic-survey-report-11-13-17-2/,Not Criminal Justice Related,200,"City of Powell, Ohio | Traffic Survey Report 11-13-17","","[""\n Traffic Survey Report 11-13-17\n \n ""]","[""CONTACT INFO\n"", ""HELPFUL LINKS"", ""\n LET'S CONNECT\n ""]","[""you're at home in Powell""]","[""614.885.5380"", ""47 Hall Street, Powell, OH 43065"", ""Signup for our newsletter""]",[],[] -1924,https://ose.louisiana.gov/event/police-officer-20/,Poor Data Source,200,Police Officer | Louisiana Office of State Examiner,"","["""", ""Police Officer""]",[],"[""Competitive Level""]",[],[],"[""Recent Posts"", ""Archives"", ""Categories"", ""Meta""]" -1925,https://delcopa.gov/publicrelations/releases/2021/covid_vaccineupdate0217.html,Media Bulletins,200,"Delaware County’s Feb. 17 Update on COVID-19 Vaccine Efforts - Delaware County, Pennsylvania","","[""Delaware County\u2019s Feb. 17 Update on COVID-19 Vaccine Efforts""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -1926,http://www.longbeach.gov/police/press-releases/police-asking-for-publics-help-in-identifying-person-of-interest-in-sexual-battery/,Media Bulletins,200,POLICE ASKING FOR PUBLIC'S HELP IN IDENTIFYING PERSON OF INTEREST IN SEXUAL BATTERY,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1927,http://www.longbeach.gov/police/press-releases/fireworks-seized/,Media Bulletins,200,FIREWORKS SEIZED,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1928,https://alpha.austin.gov/es/police-oversight/formal-complaint-responsibility-to-the-community-2/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1929,https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0014/,Complaints & Misconduct,200,Maintenance Notice,"",[],[],[],[],[],[] -1930,https://www.ci.san-ramon.ca.us/our_city/departments_and_divisions/police/victims_rights_information/survivor_of_sexual_assault,Resources,200," - Survivor of Sexual Assault - City of San Ramon -","","[""Survivor of Sexual Assault""]","[""YOUR RIGHTS AS A SURVIVOR OF SEXUAL ASSAULT:"", ""Contact Us"", ""Useful Links""]","[""YOU HAVE THE RIGHT TO"", ""YOU HAVE THE RIGHT TO"", ""YOU HAVE THE RIGHT TO""]",[],[],[] -1931,https://www.elrenook.gov/departments/police-department/services-resources/resource-numbers/,Contact Info & Agency Meta,404,"","",,,,,, -1932,https://www.attorneygeneral.utah.gov/wp-content/uploads/2015/03/img_7489-copy-2.jpg,Media Bulletins,404,"","",,,,,, -1933,https://www.mass.gov/doc/october-30-1996-out-of-state-domestic-violence-restraining-orders-with-a-copy-of-memorandum/download,Policies & Contracts,200,"","",[],[],[],[],[],[] -1934,https://www.alamoheightstx.gov/public-safety/police/divisions/,Contact Info & Agency Meta,200,Divisions - City of Alamo Heights,"","[""Divisions""]","[""Patrol Operations Division"", ""Support Services Division"", ""Police Administrative Office"", ""Criminal Investigations Division"", ""Emergency Services Center"", ""Animal Care Services""]",[],[],[],[] -1935,https://delcopa.gov/planning/pubs/portfolio-12_tacticalplacemaking.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -1936,https://icjia.illinois.gov/researchhub/articles/law-enforcement-response-to-mental-health-crisis-incidents-a-survey-of-illinois-police-and-sheriff-s-departments/,Media Bulletins,200,ICJIA | Illinois Criminal Justice Information Authority,Illinois Criminal Justice Information Authority,[],[],[],[],[],[] -1937,http://www.longbeach.gov/police/press-releases/traffic-fatality-20-/,Media Bulletins,200,TRAFFIC FATALITY(20),"","[""Long BeachPolice Department""]",[],[],[],[],[] -1938,https://southamptontownnypolice.gov/1663/2022-adopted-budget-operating,List of Data Sources,200,"2022 Adopted Budget Operating | Southampton, NY - Official Website","","[""\r\n\r\n2022 Adopted Budget Operating\t\t""]",[],"[""Loading"", ""Site Tools"", ""Contact Us"", ""Site Links""]",[],[],[] -1939,https://delcopa.gov/purchasing/bidsprops/kyo878.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -1940,http://www.longbeach.gov/police/press-releases/murder-investigation/,Media Bulletins,200,MURDER INVESTIGATION,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1941,https://www.fortworthtexas.gov/departments/hr/administration/prr/police-prr,Policies & Contracts,200,Personnel Rules and Regulations for Commissioned Police Officers – Welcome to the City of Fort Worth,Personnel Rules and Regulations for Sworn Police Officers.,"[""Personnel Rules and Regulations for Commissioned Police Officers""]","[""Chapter 143 of the Texas Local Government Code"", ""Chapters 141 and 142 of the Texas Local Government Code"", ""Meet and Confer Labor Agreement"", ""Fort Worth Fire Fighters\u2019 and Police Officers\u2019 Civil Service Commission"", ""Management Rights"", ""Amendments"", ""Department Rules and Regulations"", ""Waivers"", ""Clarifications"", ""Quarantine/Traumatic Leave"", ""Related Information"", ""\nAccommodations & Accessibilities\n"", ""About Fort Worth"", ""City Council"", ""Public Safety"", ""\u00a0Business"", ""Get Connected. Stay Informed.""]","["""", ""Effective September 1, 2021\u00a0""]",[],[],[] -1942,https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/blotter/022622blotter.pdf,Poor Data Source,404,"","",,,,,, -1943,https://joinmpd.dc.gov/metropolitan-police/reserve-police-officer,Training & Hiring Info,200,Reserve Police Officer | joinmpd.dc.gov,Reserve Police Officer,"[""Reserve Police Officer""]","[""joinmpd.dc.gov"", ""Main menu"", ""Main menu"", ""Navigation""]","[""Becoming a Reserve Officer""]",[],[],[] -1944,https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0932/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1945,https://delcopa.gov/ojs/ojsforms/praecipetosettlediscontinue.pdf,Resources,200,"","",[],[],[],[],[],[] -1946,http://www.longbeach.gov/police/about-the-lbpd/bureaus/investigations-bureau/officer-involved-shooting-investigation-process/,Policies & Contracts,200,OFFICER INVOLVED SHOOTING INVESTIGATION PROCESS,"- OFFICER INVOLVED SHOOTING INVESTIGATION PROCESS - To demonstrate the level of investigation, review, evaluation, and actions our Department takes when an officer involved shooting occurs, an overview of the process is provided below: - Homicide Detail detectives, field supervisors, and departmental manager
","[""Police Department""]",[],"[""Mayor"", ""City Council"", ""Rex Richardson"", ""Mary Zendejas"", ""Cindy Allen"", ""Kristina Duggan"", ""Daryl Supernaw"", ""Megan Kerr"", ""Suely Saro"", ""Roberto Uranga"", ""Al Austin"", ""Dr. Joni Ricks-Oddie"", ""Dawn McIntosh"", ""Laura L. Doud"", ""Doug Haubert"", ""Tom Modica"", ""Monique DeLaGarza"", ""City-Wide Elected Officials"", ""Appointed Officials"", ""Online Payments"", ""Online Services"", ""In-Person Services"", ""Opening a Business"", ""Doing Business With The City"", ""Resources"", ""Most Popular"", ""Online Resources"", ""Attractions"", ""Business Associations"", ""Travel Resources"", ""Departments"", ""Job Opportunities"", ""Information"", ""LBPD"", ""Employment"", ""Bureaus"", ""News & Events"", ""Crime Info"", ""How Do I"", ""How Do I"", ""Contact Us"", ""OFFICER INVOLVED SHOOTING INVESTIGATION PROCESS"", ""Do."", ""Discover."", ""Connect."", ""Ask.""]","["""", ""1st District"", ""2nd District"", ""3rd District"", ""4th District"", ""5th District"", ""6th District"", ""7th District"", ""8th District"", ""9th District"", ""City Attorney"", ""City Auditor"", ""City Prosecutor"", ""City Manager"", ""City Clerk""]","[""File a Report Online"", ""Submit a Tip"", ""Submit a Commendation"", ""File a Complaint"", ""Ride Along Program"", ""\u00a0"", ""\u00a0"", ""\u00a0"", ""\u00a0"", ""Crime Lab Survey"", ""\u00a0""]",[] -1947,https://delcopa.gov/council/2020minutes/10072020minutes.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -1948,https://www.ci.rohnert-park.ca.us/city_hall/departments/public_works/drainage___stormwater/creeks__environmental_information/copeland_test,Not Criminal Justice Related,200," - Copeland Test - City of Rohnert Park -","","[""City of Rohnert Park""]","[""Rohnert Park""]","[""Copeland Test"", ""Daily Acts is making its way to Rohnert Park!""]",[],[],[] -1949,https://champaignil.gov/2022/08/27/champaign-police-investigating-overnight-shooting-incidents/,Media Bulletins,200,Champaign Police Investigating Overnight Shooting Incidents - City of Champaign,"","[""Champaign Police Investigating Overnight Shooting Incidents""]","[""News Releases"", ""Department News""]",[],[],[],[] -1950,https://delcopa.gov/publicrelations/releases/2020/pdf/delawarecountynovemberflushotclinics_mercyfitz.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -1951,https://www.jacksontn.gov/government/departments/police/daily_arrest_reports,Poor Data Source,200," - Daily Arrest Reports - City of Jackson, TN -",Welcome to the official website of City of Jackson in Tennessee.,"[""City of Jackson TN"", ""City of Jackson TN""]","[""Daily Arrest Reports""]",[],[],[],[] -1952,https://alpha.austin.gov/police-oversight/2020-06-4-17/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1953,https://louisvilleky.gov/police/forms/submit-crime-tip,Resources,403,"","",,,,,, -1954,https://bolivar.mo.us/shop-with-a-copr/img_3318/,Poor Data Source,200,"IMG_3318 - City of Bolivar, Missouri","","[""IMG_3318""]",[],[],[],[],[] -1955,https://www.farmingtonmn.gov/government/departments/police/staff_directory,Poor Data Source,404,"","",,,,,, -1956,https://delcopa.gov/vote/pdf/2021/delco-boe_legal-notice_public-meeting_9-20-2021.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -1957,https://www.panynj.gov/police/en/about/leadership.html,Personnel Records,200,Leadership,"",[],[],[],[],[],[] -1958,https://rexburg.us/police-investigating-road-rage-after-man-killed-in-box-elder-county-rollover-thursday/,Poor Data Source,522,"","",,,,,, -1959,https://cheswold.delaware.gov/cheswold-police-department-policy-and-procedure-manual/directive-10-2-43-naloxone-programs/,Policies & Contracts,200,Directive 10-2-43 Naloxone Programs - Town of Cheswold,"","[""Cheswold""]","[""Delaware"", ""Directive 10-2-43 Naloxone Programs""]","[""Menu""]","[""Address:"", ""Call Us:"", ""Reach Out:""]",[],[] -1960,https://policing.cityofpleasantonca.gov/police-department-faqs/,Resources,200,Police Department FAQs | Policing in Pleasanton,"","[""Police Department FAQs""]",[],"[""Submit a Comment Cancel reply""]",[],[],[] -1961,https://delcopa.gov/health/pdf/agendaminutes/bohagenda_jan_6_22.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -1962,https://alpha.austin.gov/en/police-oversight/bwc-dmav-the-role-of-vendors-and-community-input-in-policy/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1963,https://champaignil.gov/tag/champaign-police-arrest-kidnapping-suspect/,Media Bulletins,200,Champaign Police Arrest Kidnapping Suspect Archives - City of Champaign,"","[""Items tagged: Champaign Police Arrest Kidnapping Suspect""]","[""Champaign Police Arrest Kidnapping Suspect"", ""News Releases"", ""Department News""]",[],[],[],[] -1964,https://delcopa.gov/hcd/cdbg.html,Not Criminal Justice Related,200,CDBG Program,"","[""CDBG Program""]",[],"[""Housing & Community Development Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -1965,https://delcopa.gov/ich/pdfs/covid_govwolf_medicaidchip.pdf,Poor Data Source,200,"404 - Delaware County, Pennsylvania","","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -1966,https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0328/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1967,http://www.longbeach.gov/police/press-releases/murder-31-/,Media Bulletins,200,MURDER(31),"","[""Long BeachPolice Department""]",[],[],[],[],[] -1968,https://www.knoxvilletn.gov/government/boards_commissions/police_advisory_review_committee_parc/p_a_r_c_20th_anniversary/history_of_p_a_r_c___p_d_f_,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -1969,http://www.longbeach.gov/police/press-releases/arrest-made-in-2007-murder-case/,Media Bulletins,200,ARREST MADE IN 2007 MURDER CASE,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1970,https://www.southamptontownnypolice.gov/1056/xeriscaping,Not Criminal Justice Related,200,"Xeriscaping | Southampton, NY - Official Website","","[""\r\n\r\nXeriscaping\t\t""]",[],"[""Loading"", ""Site Tools"", ""Contact Us"", ""Site Links""]",[],[],[] -1971,http://www.longbeach.gov/police/press-releases/update---companion-dog-taken-in-vehicle-theft/,Media Bulletins,200,UPDATE - COMPANION DOG TAKEN IN VEHICLE THEFT,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1972,https://delcopa.gov/vote/pdf/2022/2022primary-electiondayguidedigitaleditionv-rev1.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -1973,https://dccouncil.gov/judiciary-public-safety/copy-of-ag0_fy19_-attachment-iv/,Annual & Monthly Reports,200,Copy of AG0_FY19_ Attachment IV • Council of the District of Columbia,"","[""Copy of AG0_FY19_ Attachment IV""]",[],[],[],[],[] -1974,http://www.longbeach.gov/police/press-releases/undetermined-deaths--possibly-related-to-carbon-monoxide-poisoning/,Media Bulletins,200,UNDETERMINED DEATHS; POSSIBLY RELATED TO CARBON MONOXIDE POISONING,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1975,https://www.cityofladue-mo.gov/departments/police-department/annual-reports-158,Annual & Monthly Reports,200,Annual Reports | City of Ladue,"","[""Annual Reports""]","[""Upcoming Events""]",[],[],[],[] -1976,"https://norfolkne.gov/government/departments/police-division/press-releases/march-4,-2021-press-release.html",Media Bulletins,200,"March 4, 2021 Press Release - City of Norfolk, NE","","[""City of Norfolk, NE"", ""Police Division"", ""March 4, 2021 Press Release""]",[],[],[],"[""Still looking for something?""]","[""Contact Us"", ""Pay or Apply..."", ""Government..."", ""Services..."", ""Business..."", ""Amenities...""]" -1977,http://www.longbeach.gov/police/press-releases/robbery-suspect-arrested--charges-filed/,Media Bulletins,200,ROBBERY SUSPECT ARRESTED; CHARGES FILED,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1978,https://alpha.austin.gov/police-oversight/formal-complaint-impartial-attitude-and-courtesy-13/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -1979,http://www.longbeach.gov/police/press-releases/dui-checkpoint/,Media Bulletins,200,DUI Checkpoint,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1980,http://www.longbeach.gov/police/press-releases/traffic-fatality---long-beach-blvd.--cambridge-st/,Media Bulletins,200,Traffic Fatality - Long Beach Blvd. & Cambridge St.,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1981,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/071421blotter.pdf,Dispatch Logs,200,"","",[],[],[],[],[],[] -1982,http://www.longbeach.gov/police/press-releases/halloween-safety-tips-1-/,Media Bulletins,200,Halloween Safety Tips(1),"","[""Long BeachPolice Department""]",[],[],[],[],[] -1983,https://www.ashevillenc.gov/wp-content/uploads/2016/08/citizens-police-academy.jpg,Poor Data Source,200,"","",[],[],[],[],[],[] -1984,https://www.lyndhurstohio.gov/police-crime-prevention-run-hide-fight.html,Poor Data Source,404,"","",,,,,, -1985,https://www.hayward-ca.gov/discover/news/feb19/applicants-sought-new-police-community-advisory-panel,Training & Hiring Info,200,Applicants sought for new police Community Advisory Panel | City of Hayward - Official website,Hayward residents interested in serving on a new Community Advisory Panel to the Hayward Chief of Police are invited to submit applications for consideration and potential selection.The purpose of the Community Advisory Panel is to improve trust and strengthen understanding between the Hayward Police Department and Hayward community members by creating a structure and venue,"[""Applicants sought for new police Community Advisory Panel ""]","[""Look Deeper"", ""Welcome home"", ""Where opportunity lives"", ""Find what you need. Fast."", ""Working for You"", ""Your Hayward Environment"", ""You are here. So is everything else."", ""Search form""]",[],"[""Re-CAP: Hayward\u2019s Updated Climate Action Plan (CAP)"", ""Try induction cooking for free through Ava Community Energy\u2019s Induction Cooktop Lending Program!"", ""The City of Hayward\u2019s Fight Against Food Waste"", ""Decoding Plastic Recycling In California"", ""Keep Hayward Clean and Green with Adopt-A-Block!"", ""City Hall and Nonessential Services Closures: Monday, Feb 12 and Monday, Feb. 19"", ""City Hall and Nonessential Services Closure: Monday, Jan. 15, 2024"", ""Library Closure January 15, 2024"", ""Library Closure: December 23 2023 - January 1 2024"", ""Library closure: November 23 - November 26, 2023."", ""YOU ARE HERE.SO IS EVERYTHING ELSE."", ""Related News"", ""Annual Dr. Martin Luther King Jr. Birthday Celebration event returns Jan. 15"", ""Public reception Thursday for Chabot College President Cooks and Hayward Unified Superintendent Reimann "", ""City of Hayward holiday business closure and service changes"", ""Report\n Problems"", ""Ask\n Questions"", ""Make a\n Suggestion"", ""Translate"", ""Search""]",[],[] -1986,https://southamptontownnypolice.gov/169/parent-resources,Resources,200,"Parent Resources | Southampton, NY - Official Website",Find valuable parenting resources through the Youth Bureau.,"[""\r\n\r\nParent Resources\t\t""]","[""Parents with a Purpose Resources"", ""Preventing Youth Drug Use"", ""Teen Drinking Information""]","[""Loading"", ""Site Tools"", ""Contact Us"", """", ""Contact Us"", ""Site Links""]",[],[],[] -1987,https://www.mass.gov/doc/essential-functions-of-a-police-officer/download,Poor Data Source,200,"","",[],[],[],[],[],[] -1988,http://www.longbeach.gov/police/press-releases/l.b.p.d2.-promotes-new-leaders/,Media Bulletins,200,L.B.P.D. PROMOTES NEW LEADERS,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1989,https://www.jacksonms.gov/meetings/bid-opening-jpd-november-30-2021/jpd-rfp-catering-services-for-the-city-of-jackson-police-training-academy/,Not Criminal Justice Related,200,"JPD RFP-Catering Services for The City of Jackson-Police Training Academy - Jackson, MS","","[""JPD RFP-Catering Services for The City of Jackson-Police Training Academy""]","[""Primary menu links"", ""Action toolbar"", ""Recent news"", ""Contact"", ""Subscribe"", ""Connect""]","[""Extreme weather updates for Wednesday, January 17"", ""H.O.P.E. for the Holidays event Thursday"", ""Roll-Off Dumpster Day Dec. 9"", ""City seeking donations for \u2018Blanket Drive\u2019"", ""Jackson Gears Up for 13th\u00a0annual \u2018Doing Business with the City\u2019\u00a0""]","[""Cold Weather Shelter - Open""]","["""", """", """"]",[] -1990,https://www.stpaul.gov/departments/police/21st-century-policing-report/pillar-2-policy-and-oversight/report-0,List of Data Sources,200,Report Recommendation 2.2 | Saint Paul Minnesota,"Ensure comprehensive policies on the use of force that include training, investigations, prosecutions, data collection, and information sharing that are clear, concise, and openly available for public inspection.","[""\nReport Recommendation 2.2\n""]","[""Main Navigation"", ""Popular Topics"", ""Breadcrumb"", ""Footer""]","[""\n You are using an unsupported browser. Please use Microsoft Edge.\n "", ""\n SPPD has comprehensive use-of-force policies\n "", ""\n SPPD posts interactive policies online\n "", ""\n SPPD emphasizes minimal force\n "", ""\n SPPD regularly trains use of force\n "", ""\n SPPD is committed to crisis intervention training\n "", ""\n SPPD is investing in training\n "", ""\n SPPD is committed to community safety\n "", ""\n SPPD is committed to transparency\n "", ""\n SPPD is committed to transparency\n "", ""\n SPPD is committed to transparency\n "", ""\n SPPD is committed to transparency\n "", ""\n SPPD is committed to transparency\n "", ""\n SPPD is committed to transparency\n "", ""\n SPPD is committed to transparency\n "", ""\n SPPD reviews all uses of force\n "", ""\n SPPD is committed to excellence\n "", ""\n Contact The City\n "", ""Email Us"", ""Call 651-266-8989""]","[""Business Spotlight"", ""Featured"", ""Business Spotlight"", ""Featured"", ""\n Reference Data\n "", ""\n Reference Data\n "", ""\n Reference Data\n "", ""\n Reference Data\n "", ""\n Reference Data\n "", ""\n Reference Data\n "", ""\n Reference Data\n "", ""\n Reference Data\n "", ""\n Reference Data\n ""]",[],[] -1991,https://delcopa.gov/publicrelations/releases/2020/pdf/citizencorptrainingaug27.pdf,Media Bulletins,200,"","",[],[],[],[],[],[] -1992,http://www.longbeach.gov/police/press-releases/l.b.p.d.-seizes-large-quantity-of-fireworks/,Media Bulletins,200,L.B.P.D. SEIZES LARGE QUANTITY OF FIREWORKS,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1993,https://www.coppelltx.gov/217/emergency-notification-system-notifycopp,Resources,200,"Emergency Notification System (NotifyCoppell) | Coppell, TX",Learn about the NotifyCoppell system and what you receive when you sign up for it. ,"[""\r\n\r\nEmergency Notification System (NotifyCoppell)\t\t""]","[""Fire Station #1"", ""Fire Station #2"", ""Fire Station #3"", ""Fire Station #4""]","[""Loading""]",[],[],[] -1994,https://www.sandiego.gov/police/news-center/cold-cases/frank-lee-foust,Media Bulletins,200,Frank Lee Foust | City of San Diego Official Website,"Officers were called to the scene after the building manager checked on an occupant and found him dead. The tenant had been shot at close range with a small caliber handgun. According to other tenants and the manager, the victim was last seen alive two days prior to being found. The victim was a 35-year-old black male who worked as a welder, and was a self employed artist. The victim's wallet and personal property were not taken. There is no known motive for the crime.","[""City of San Diego Official Website"", ""Cold Case: Frank Lee Foust\n""]","[""Main navigation"", ""Leisure"", ""Resident Resources"", ""Doing Business"", ""Library"", ""Public Safety"", ""City Hall"", ""Accessibility Tools"", ""News Center"", ""Footer""]",[],"[""Parks"", ""Outdoors"", ""Neighborhoods"", ""Recreational Activities"", ""Street Maintenance"", ""Plan"", ""Fix"", ""Build"", ""Programs & Events"", ""Services"", ""Kids & Teens"", ""eCollection"", ""Police"", ""Fire-Rescue"", ""Lifeguards"", ""City Officials"", ""City Government""]",[],[] -1995,http://www.longbeach.gov/police/press-releases/dui-saturation-patrol-results/,Media Bulletins,200,DUI SATURATION PATROL RESULTS,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1996,http://www.lafayettepolice.us/2356/photos,Not Criminal Justice Related,200,"Photos | Lafayette, IN - Official Website","","[""\r\n\r\nPhotos\t\t""]",[],"[""Loading"", ""Contact Us"", ""FAQs"", ""Site Links""]",[],[],[] -1997,https://wyomingohio.gov/departments/police-department-2/coyote-information/,Poor Data Source,404,"","",,,,,, -1998,http://www.longbeach.gov/police/press-releases/l-b-p-d--seeks-public-s-help-in-robbery-being-investigated-as-hate-crime/,Media Bulletins,200,L.B.P.D. SEEKS PUBLIC'S HELP IN ROBBERY BEING INVESTIGATED AS HATE CRIME,"","[""Long BeachPolice Department""]",[],[],[],[],[] -1999,https://alpha.austin.gov/es/police-oversight/formal-complaint-acts-bringing-discredit-upon-the-department/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -2000,https://www.roundrocktexas.gov/news/police-looking-witnesses-fatal-collision/,Media Bulletins,200,Police looking for witnesses to fatal collision - City of Round Rock,"",[],[],"[""Police looking for witnesses to fatal collision""]","[""Site Search"", ""Follow Us""]",[],[] -2001,https://champaignil.gov/2015/03/02/champaign-police-investigate-downtown-shooting/,Media Bulletins,200,Champaign Police Investigate Downtown Shooting - City of Champaign,"","[""Champaign Police Investigate Downtown Shooting""]","[""News Releases"", ""Department News""]",[],[],[],[] -2002,http://www.longbeach.gov/police/press-releases/murder-6700-block-gardenia/,Media Bulletins,200,MURDER 6700 BLOCK GARDENIA,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2003,https://alpha.austin.gov/en/police-oversight/notice-of-complaint-related-to-2022-0876/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -2004,http://www.longbeach.gov/police/press-releases/residential-robbery-suspects-charged/,Media Bulletins,200,RESIDENTIAL ROBBERY SUSPECTS CHARGED,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2005,https://mukilteowa.gov/departments/police/gun-safety-class-scholarship-program/,Resources,200," - City of Mukilteo - | Gun Safety Class Scholarship Program - City of Mukilteo ","","[""\n\t\t Gun Safety Class Scholarship Program\t\t ""]","[""\n\t\t\t\t\t\tSign up for notifications\n\t\t\t\t\t""]","[""Gun Safety Scholarship Program Application""]",[],[],[] -2006,https://police.birminghamal.gov/command-staff/captain-raymond-hollis-crutchfield/,Poor Data Source,404,"","",,,,,, -2007,https://www.arlingtontx.gov/city_hall/departments/police/community/crime_prevention,Poor Data Source,404,"","",,,,,, -2008,http://www.longbeach.gov/police/press-releases/automotive-business-compliance-checks-conducted/,Media Bulletins,200,AUTOMOTIVE BUSINESS COMPLIANCE CHECKS CONDUCTED,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2009,https://alpha.austin.gov/es/police-oversight/2020-09-17-7/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -2010,https://www.ci.san-bernardino.ca.us/city_hall/police_department/online_services,Resources,200," - Online Services - City of San Bernardino -","","[""City of San Bernardino California""]","[""Online Services""]",[],[],[],[] -2011,https://www.foxcrossingwi.gov/departments/police-department/history/30712442_10155740250625958_5846323570807930880_n/,Poor Data Source,200,30712442_10155740250625958_5846323570807930880_n - Fox Crossing Fox Crossing,"",[],"[""History \u00bb 30712442_10155740250625958_5846323570807930880_n""]",[],[],[],[] -2012,https://www.mass.gov/doc/riva-albert-v-boston-police-department-related-superior-court-decision-21210/download,Court Cases,200,"","",[],[],[],[],[],[] -2013,https://police.crystalmn.gov/our_city/boards_and_commissions/parks___recreation_commission,Not Criminal Justice Related,200," - Parks and Recreation Commission - City of Crystal -",Information related to the City of Crystal Parks & Recreation Commission.,"[""Parks and Recreation Commission""]","[""Recreation Director""]","[""Sign up for a city newsletter or notification."", ""City Hall"", ""Regular Hours:""]","[""Monday - Friday""]",[],[] -2014,https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0871/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -2015,http://www.longbeach.gov/police/press-releases/robbery-suspect-arrested-and-charged-2-/,Media Bulletins,200,ROBBERY SUSPECT ARRESTED AND CHARGED(2),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2016,http://lafayettepolice.us/faq.aspx?qid=131,Not Criminal Justice Related,200,FAQs • Are there any districts already in Lafayette?,"",[],"["""", ""\n\u25bc\r\nHistoric Preservation Commission\t\t"", """"]","[""Loading"", ""Categories"", ""Live Edit"", ""Contact Us"", ""FAQs"", ""Site Links""]",[],[],[] -2017,https://www.mass.gov/doc/berrios-crystal-v-boston-police-department-3316/download,Court Cases,200,"","",[],[],[],[],[],[] -2018,https://www.stmatthewsky.gov/public-works/application-for-employment-current-copy/,Training & Hiring Info,200,Application for Employment current - Copy - City of St Matthews,"","[""Application for Employment current \u2013 Copy""]",[],[],[],[],[] -2019,https://www.austintexas.gov/page/commend-austin-police-officer,Contact Info & Agency Meta,200,Commend an Austin Police Officer | AustinTexas.gov,Online Form - Commend an Austin Police Officer,"[""Commend an Austin Police Officer""]","[""Action Navigation"", ""GTranslate"", ""Main menu"", ""Frequently Viewed Departments"", ""Footer Menu"", ""Second Footer Menu""]","[""Resident"", ""Business"", ""Government"", ""Departments"", ""Connect""]",[],[],[] -2020,http://www.longbeach.gov/police/press-releases/students-returning-to-school-motorists-urged-to-drive-carefully/,Media Bulletins,200,STUDENTS RETURNING TO SCHOOL; MOTORISTS URGED TO DRIVE CAREFULLY,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2021,https://coloradosprings.gov/police-department/page/commander-howard,Poor Data Source,403,"","",,,,,, -2022,https://www.minneapolismn.gov/resident-services/public-safety/police-public-safety/police-reports-and-data-requests/sex-offender-community-notification/,Resources,200,Sex Offender Community Notification - City of Minneapolis,The City notifies communities when a sex offender moves in. You can search for sex offenders online.,"[""Sex offender community notification"", ""Need help? We're here for you.""]","[""Community notification"", ""Sex offender search"", ""Minneapolis Police resources"", ""Community resources"", ""Help from crime prevention specialists"", ""Contact us""]","[""Jamie Kieffer"", """", ""Minneapolis Police Department"", ""Connect with the Minneapolis Police Department""]",[],[],[] -2023,https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0003/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -2024,http://www.longbeach.gov/police/press-releases/graduation-and-summer-break-safety-tips2/,Media Bulletins,200,GRADUATION AND SUMMER BREAK SAFETY TIPS,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2025,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/arrests/060721arrests.pdf,Arrest Records,200,"","",[],[],[],[],[],[] -2026,https://norfolkne.gov/assets/site/documentcentral/police/statistical-reports/2021-statistical/mayormonthly050121.pdf,Annual & Monthly Reports,200,"","",[],[],[],[],[],[] -2027,https://delcopa.gov/planning/pdf/agendas/2021/agenda202107.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -2028,https://www.lynchburgvapolice.gov/news-updates/update-suspect-sought-in-cornerstone-street-homicide/,Media Bulletins,200,[UPDATE] Suspect Sought in Cornerstone Street Homicide - Lynchburg Police Department,"","[""[UPDATE] Suspect Sought in Cornerstone Street\u00a0Homicide\u00a0""]",[],[],"[""Contact Us"", ""Site Links"", ""Site Links""]",[],[] -2029,https://www.coppelltx.gov/1045/connect-with-oncor,Not Criminal Justice Related,200,"Connect with Oncor | Coppell, TX","Learn how to report power outages, downed power lines, and streetlight outages on Oncor.com. Learn how to receive alerts from Oncor. ","[""\r\n\r\nConnect with Oncor\t\t""]",[],"[""Loading"", ""Oncor Overview"", ""Report Outages or Downed Lines"", ""Receive Alerts from Oncor"", ""What is the difference between Oncor and my electricity service provider?"", ""ERCOT""]",[],[],[] -2030,https://www.mass.gov/info-details/2022-audit-of-the-bridgewater-state-university-objectives-scope-and-methodology,Annual & Monthly Reports,200,"2022 Audit of the Bridgewater State University Objectives, Scope, and Methodology | Mass.gov",An overview of the purpose and process of auditing the Bridgewater State University,"[""\n2022 Audit of the Bridgewater State University Objectives, Scope, and Methodology\n""]","[""Table of Contents\n for the audit, Audit of the Bridgewater State University"", ""Table of Contents"", ""Overview\n "", ""Data Reliability\n "", ""Help Us Improve Mass.gov with your feedback""]",[],[],[],[] -2031,https://police.birminghamal.gov/command-staff/captain-james-jackson/,Personnel Records,200,Captain James Jackson | Birmingham Police Department,"","[""\n\n\n Birmingham Police Department\n\n\t\t\t\t\tCommitment | Excellence | Integrity\t\t\t\t\n\n""]","[""Putting People First"", ""Captain James Jackson""]",[],"[""Hours & Info"", ""Upcoming Events"", ""CRIMESTOPPERS"", ""Police Information"", ""Quick Links"", ""I Need...""]",[],[] -2032,https://delcopa.gov/vote/military-overseas.html,Not Criminal Justice Related,200,"Military & Overseas Resources - Delaware County, Pennsylvania","","[""Military & Overseas Resources""]",[],"[""Military and Overseas Voters"", ""Delco Votes!"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -2033,https://spdblotter.seattle.gov/2014/12/30/police-arrest-christmas-day-bank-burglar/,Media Bulletins,200,Police Arrest Christmas Day Bank Burglar - SPD Blotter,"","[""Police Arrest Christmas Day Bank Burglar""]","[""Find Posts By Topic"", ""You might also like..."", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[] -2034,https://alpha.austin.gov/es/police-oversight/2020-06-05-1/,Not Criminal Justice Related,200,Maintenance Notice,"",[],[],[],[],[],[] -2035,https://delcopa.gov/courts/pdf/21noticetothebarpublic_boardofmanagers_juveniledetentioncenter.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -2036,http://www.longbeach.gov/police/press-releases/juvenile-held-in-connection-with-robbery-case/,Media Bulletins,200,JUVENILE HELD IN CONNECTION WITH ROBBERY CASE,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2037,http://www.longbeach.gov/police/press-releases/significant-crime-reduction-during-first-year-metro-blue-line-contract/,Media Bulletins,200,SIGNIFICANT CRIME REDUCTION DURING FIRST YEAR METRO BLUE LINE CONTRACT,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2038,https://www.pleasantprairiewi.gov/departments/police/news/police_and_fire___rescue_news_archive/2017_news_releases/police_launch_community_camera_partnership_program,Media Bulletins,200," - Police Launch Community Camera Partnership Program - Village of Pleasant Prairie -","",[],"[""Police Launch Community Camera Partnership Program""]","[""Follow Us on Social Media""]",[],[],[] -2039,https://spdblotter.seattle.gov/2017/03/13/suspected-prowler-arrested-after-police-spot-him-peering-into-cars-at-downtown-garage/,Media Bulletins,200,Suspected Prowler Arrested After Police Spot Him Peering Into Cars at Downtown Garage - SPD Blotter,"","[""Suspected Prowler Arrested After Police Spot Him Peering Into Cars at Downtown Garage""]","[""Find Posts By Topic"", ""You might also like..."", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[] -2040,http://www.norwoodma.gov/departments/police/report_a_tip.php,Resources,200,"Welcome to Town of Norwood, Massachusetts","Welcome to Town of Norwood, Massachusetts","[""Report a Tip""]",[],[],[],[],[] -2041,http://www.longbeach.gov/police/press-releases/murder-36-/,Media Bulletins,200,MURDER(36),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2042,https://delcopa.gov/publicrelations/releases/2020/thankyoufirstresponders.html,Media Bulletins,200,"Thank You Citizens Corps of Delaware County - Delaware County, Pennsylvania","","[""Thank you Citizens Corps of Delaware County""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]","[""\u00a0""]",[],[] -2043,https://delcopa.gov/courts/judges/kelly.html,Personnel Records,200,President Judge Kevin F. Kelly - Delaware County Court of Common Pleas,"","[""Judge Kevin F. Kelly""]",[],"[""Contact Us"", ""Courts Quick Links"", ""Government Center Quick Links"", ""About Delaware County""]",[],[],[] -2044,https://cityofsweetwater.fl.gov/event/sweetwater-police-pension-plan-board-of-trustees-meeting/,Policies & Contracts,200,Agendas & Minutes - City of Sweetwater,"",[],"[""Agendas & Minutes""]","["""", ""Contact City Hall"", ""Office Hours""]",[],"[""Search Meeting Minutes, Agendas & Packets""]",[] -2045,https://coloradosprings.gov/police-department/article/news/update-homicide-investigation-3125-sinton,Media Bulletins,200,Update Homicide Investigation at 3125 Sinton Road | City of Colorado Springs,"","[""\nUpdate Homicide Investigation at 3125 Sinton Road\n""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[] -2046,https://hilliardohio.gov/hpd-partners-with-neighboring-police-agencies-for-career-day/,Misc Police Activity,200,HPD Partners with Neighboring Police Agencies for Career Day - City of Hilliard,"The Hilliard Division of Police will join other nearby police agencies June 15 for a special Suburban Police Career Day. The event, the first of its kind","[""News"", ""HPD Partners with Neighboring Police Agencies for Career Day""]",[],[],"[""Recent Articles"", ""Hilliard Newsletter"", ""City Hall and Admin"", ""Hilliard Mayor's Court"", ""Division of Police"", ""Police Assistance"", ""Police Records and General Assistance"", ""Norwich Township Fire"", ""Hilliard Recreation & Parks"", ""Hilliard Newsletter"", ""Quick Links"", ""Stay connected with us""]",[],"[""Click the \u2018x\u2019 to opt out.""]" -2047,https://alpha.austin.gov/health-safety/accountability-and-transparency-in-policing/police-feedback-and-records/bwc-dmav-data-analysis-data-cleaning-operations/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -2048,https://ridgelandsc.gov/police-department/daily-crime-reports-march-2022,Crime Maps & Reports,200,Town of Ridgeland,Town of Ridgeland,"[""Police Department""]","[""Daily Crime Reports - March 2022""]",[],"[""March 31"", ""March 30"", ""March 29"", ""March 28"", ""March 27"", ""March 26"", ""March 25"", ""March 24"", ""March 23"", ""March 22"", ""March 21"", ""March 20"", ""March 19"", ""March 18"", ""March 17"", ""March 16"", ""March 15"", ""March 14"", ""March 13"", ""March 12"", ""March 11"", ""March 10"", ""March 9"", ""March 8"", ""March 7"", ""March 6"", ""March 5"", ""March 4"", ""March 3"", ""March 2"", ""March 1""]",[],[] -2049,http://www.longbeach.gov/police/press-releases/motorcycle-safety-operation-results/,Media Bulletins,200,MOTORCYCLE SAFETY OPERATION RESULTS,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2050,https://spdblotter.seattle.gov/2022/06/30/police-arrest-woman-for-shooting-outside-capitol-hill-apartment/,Media Bulletins,200,Police Arrest Woman for Shooting Outside Capitol Hill Apartment - SPD Blotter,"","[""Police Arrest Woman for Shooting Outside Capitol Hill Apartment""]","[""Find Posts By Topic"", ""You might also like..."", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[] -2051,https://www.mass.gov/info-details/audit-of-the-office-of-the-commissioner-of-probation-objectives-scope-and-methodology,Not Criminal Justice Related,200,"Audit of the Office of the Commissioner of Probation Objectives, Scope, and Methodology | Mass.gov",An overview of the purpose and process of auditing the Office of the Commissioner of Probation.,"[""\nAudit of the Office of the Commissioner of Probation Objectives, Scope, and Methodology\n""]","[""Table of Contents\n for the audit, Audit of the Office of the Commissioner of Probation (OCP)"", ""Appendix\n "", ""Table of Contents"", ""Overview\n "", ""Enrollment of GPS and SCRAM Participants\n "", ""Monitoring of GPS Alerts\n "", ""Monitoring of SCRAM Alerts\n "", ""Review of Juvenile Record Requests\n "", ""Data Reliability\n "", ""Help Us Improve Mass.gov with your feedback""]",[],[],[],[] -2052,https://www.mass.gov/doc/national-environmental-policy-act-review-scoping-summary-report-i-90-allston-multimodal-project/download,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -2053,https://www.pleasantprairiewi.gov/departments/police/news/police_and_fire___rescue_news_archive/2020_news_releases/police_continue_manhunt,Media Bulletins,200," - Police Continue Manhunt - Village of Pleasant Prairie -","",[],"[""Police Continue Manhunt""]","[""Follow Us on Social Media""]",[],[],[] -2054,http://www.longbeach.gov/police/press-releases/felony-suspect-arrested/,Media Bulletins,200,FELONY SUSPECT ARRESTED,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2055,https://southamptontownnypolice.gov/1543/policies-for-the-zba,Policies & Contracts,200,"Policies for the ZBA | Southampton, NY - Official Website","","[""\r\n\r\nPolicies for the ZBA \t\t""]",[],"[""Loading"", ""Site Tools"", ""Contact Us"", ""Site Links""]",[],[],[] -2056,https://whitestown.in.gov/news/christmas-with-a-cop/,Media Bulletins,200,Christmas with a Cop - Town of Whitestown,"","[""Recent News"", ""Christmas with a Cop""]","[""How can we help?"", ""Recent News Articles"", ""\nHow to use a HAWK signal\n"", ""\nWhitestown Town Council Announces 2024 Board Appointments\n"", ""Visit Us"", ""Contact Us"", ""Stay Connected""]",[],[],[],[] -2057,http://www.longbeach.gov/police/press-releases/identity-theft-suspect-charged-with-11-felony-counts/,Media Bulletins,200,IDENTITY THEFT SUSPECT CHARGED WITH 11 FELONY COUNTS,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2058,https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0718/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -2059,http://www.longbeach.gov/police/press-releases/murder-13-/,Media Bulletins,200,MURDER(13),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2060,https://delcopa.gov/heroin/tipsforprevention.html,Poor Data Source,200,"404 - Delaware County, Pennsylvania","","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -2061,https://www.roseville.ca.us/government/departments/police_department/crime_log/crime_log_feb_18_-_march_3__2019,Poor Data Source,404,"","",,,,,, -2062,https://www.lehi-ut.gov/departments/police/,Contact Info & Agency Meta,200,Police - Lehi City,"","[""Police""]","[""Lehi City Police Records Request Form"", ""incident reporting system"", ""Lehi City Police Department Bicycle Registration"", ""More Information"", ""Related Pages""]","["""", ""To report an incident CLICK HERE"", ""Lehi Police Department"", ""Office Hours""]",[],[],[] -2063,https://spdblotter.seattle.gov/2020/07/25/police-make-dozens-of-arrests-after-explosion-damages-east-precinct-and-march-turns-to-riot/,Media Bulletins,200,Police Make Dozens of Arrests After Explosion Damages East Precinct and March Turns to Riot - SPD Blotter,"","[""Police Make Dozens of Arrests After Explosion Damages East Precinct and March Turns to Riot""]","[""Find Posts By Topic"", ""You might also like..."", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[] -2064,https://www.almaarkansas.gov/downloads/alma-police-car/,Poor Data Source,200,"alma-police-car | City of Alma, Arkansas","","[""alma-police-car""]",[],[],[],"[""Helpful Numbers"", ""Community Links""]","[""Sitemap \u00a0\u00a0/\u00a0\u00a0 Privacy \u00a0\u00a0/\u00a0\u00a0 Arkansas Web Design""]" -2065,http://www.ryepolice.us/logs/police-logs-for-4-3-19-4-9-19,Daily Activity Logs,200,Rye Police Department Police Logs for 4/3/19-4/9/19 - Rye Police Department,"","[""Police Logs for 4/3/19-4/9/19""]","[""Police Logs for 4/3/19-4/9/19""]","[""Navigation"", ""Follow Us"", ""Facebook"", ""Email Updates"", ""Storm Preparedness Guide""]",[],[],[] -2066,https://www.coppelltx.gov/555/nancy-monroe,Not Criminal Justice Related,404,"","",,,,,, -2067,http://www.ryepolice.us/wp-content/uploads/wallis-sands-half-marathon-route.jpg,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -2068,http://www.longbeach.gov/police/press-releases/murder-orange-and-washington/,Media Bulletins,200,MURDER-Orange and Washington,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2069,https://www.arlingtontx.gov/news/my_arlington_t_x/news_archive/2014_archived_news/october_2014/uta_spotlight_arlington_police_students_celebrate,Media Bulletins,200," - UTA Spotlight: Arlington Police, Students Celebrate National Night Out - City of Arlington -","","[""YOUR COMMUNITY NEWS AND EVENTS"", ""City of Arlington""]","[""UTA Spotlight: Arlington Police, Students Celebrate National Night Out""]",[],[],[],[] -2070,https://police.greenvillesc.gov/faq.aspx?qid=222,Complaints & Misconduct,200,FAQs • How can I file a complaint about an officer?,"",[],"[""\n\u25bc\r\nPolice Department\t\t""]","[""Loading"", ""Categories"", ""Live Edit""]",[],[],[] -2071,https://beaumonttexas.gov/police-investigating-aggravated-assault-4600-block-detroit/,Poor Data Source,404,"","",,,,,, -2072,https://rexburg.us/police-identify-man-killed-in-motorcycle-crash-in-logan-canyon/,Poor Data Source,522,"","",,,,,, -2073,https://champaignil.gov/tag/copper-road/,List of Data Sources,200,Copper Road Archives - City of Champaign,"","[""Items tagged: Copper Road""]","[""Copper Ridge Road Lane Closure (between Mullikin Drive and Copper Road)"", ""2023 Concrete Street Improvements Project"", ""2023 Concrete Street Improvements Project"", ""Copper Ridge Road Closure (between Copper Road and Mullikin Drive)"", ""News Releases"", ""Department News""]",[],[],[],[] -2074,https://www.police.wallingfordct.gov/about-us/history/,Not Criminal Justice Related,200,"Our History | Wallingford, CT Police Department","The Wallingford Police Department (WPD) formed in 1913, when it consisted of a single officer serving approximately 11,000 people.","[""Our History""]","[""Wallingford Police Department Through the Years""]",[],[],[],[] -2075,http://www.longbeach.gov/police/press-releases/traffic-fatality---willow-st.-and-golden-ave/,Media Bulletins,200,TRAFFIC FATALITY - WILLOW ST. AND GOLDEN AVE.,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2076,https://www.townofnewhartfordny.gov/police-commission-minutes,Poor Data Source,200,Official Website for the Town of New Hartford New York - Police Commission Minutes,Warren New Hampshire,[],"[""Town of New Hartfordat \""The Orchards\""""]","[""Contact Us"", ""Social Media"", ""Quick Links"", ""Site Links""]",[],[],[] -2077,https://barnegatpolice.us/six-arrested-drug-charges/,Media Bulletins,200,Six Arrested on Drug Charges - Barnegat Township Police Department,"","[""Six Arrested on Drug Charges""]","[""Six Arrested on Drug Charges""]","[""\n\t\t\t\t\t\tAbout the Author: \t\t\t\t\t\tBTPD "", ""\n\t\t\t\t\t\tRelated Posts\t\t\t\t\t""]","[""Share This Story, Choose Your Platform!"", ""\n\n\t\t\t\t\t\tRobbery Arrest\t\t\t\t\t\n"", ""\n\n\t\t\t\t\t\tDWI Arrest\t\t\t\t\t\n"", ""\n\n\t\t\t\t\t\tDWI Arrest\t\t\t\t\t\n"", ""\n\n\t\t\t\t\t\tRobbery Investigation Leads to Multiple Arrests, Recovery of Handgun\t\t\t\t\t\n"", ""\n\n\t\t\t\t\t\tDWI Arrests\t\t\t\t\t\n"", ""Resources"", ""Directions"", ""Quick Links""]",[],[] -2078,https://chandlerazpd.gov/2014/09/chandler-police-looking-for-g-a-i-n-participants-4/,Media Bulletins,200,Chandler Police Looking for G.A.I.N. Participants – Chandler Police Department,"","[""Chandler Police Looking for G.A.I.N. Participants""]",[],"[""Quick Links"", ""News Archives"", ""\n\n\n\n"", ""\n\n\n\n"", ""\n\n\n\n"", ""\n\n\n\n""]","[""\n\n\t\tSeptember 2, 2014\t\n"", "" Contact"", "" About the Department"", "" Latest News"", ""\n Courage, Pride, Dedication\n \n \u00a9 2024 Chandler Police Department \n""]",[],[] -2079,https://wrightstown.us/police-community-information/driving-in-school-zones/,Resources,200,Driving in School Zones - Village of Wrightstown,"","[""Driving in School Zones""]","[""ALWAYS DRIVE SAFELY IN SCHOOL ZONES"", ""Recent News"", ""\n\t\t\t\t\t\tUpcoming Events\t\t\t\t\t""]",[],"[""Village Hall"", ""Public Works"", ""Police Department"", ""Fire Department"", ""Join Us on Social Media""]",[],[] -2080,https://delcopa.gov/planning/pubs/index.html,Poor Data Source,200,"404 - Delaware County, Pennsylvania","","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -2081,http://www.cityofpataskalaohio.gov/cop_folder/2015-legislation-under-public-notices/advertisement-of-legislation-passed-december-1-2014-2/,Not Criminal Justice Related,200,"Advertisement of Legislation passed December 1, 2014 - City Of Pataskala",Official Website,"[""\n\t\t\t\tCity Of Pataskala\t\t\t"", ""\n\t\t\t\t\tAdvertisement of Legislation passed December 1, 2014\t\t\t\t""]","[""\n\t\t\t\tOfficial Website\t\t\t"", ""Categories""]",[],[],[],[] -2082,http://www.longbeach.gov/police/press-releases/weapon-crusher/,Media Bulletins,200,Weapon Crusher,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2083,https://alpha.austin.gov/en/police-oversight/policy-review-and-recommendations-8-cant-wait/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -2084,https://dps.iowa.gov/marshalltown-police-department-makes-arrest-part-death-investigation,Media Bulletins,200,Marshalltown Police Department Makes Arrest as Part of Death Investigation | Iowa Department of Public Safety,"January 24, 2022 Marshalltown, Iowa - This is not a press release from the Iowa Department of Public Safety. It is being shared as a result of the Division of Criminal Investigation's assistance with this investigation.","[""\n\n Iowa Department of\n \n\n Public Safety\n \n"", ""Marshalltown Police Department Makes Arrest as Part of Death Investigation\n""]",[],[],[],[],[] -2085,https://www.mass.gov/news/reminders-being-issued-by-massdot-eopss-massachusetts-state-police-and-transportation-partners,Media Bulletins,200,"Reminders being issued by MassDOT, EOPSS, Massachusetts State Police and Transportation Partners | Mass.gov","Drive Slower, Drive Hands-Free, ""Look Twice to save a Life"", Wear A Seatbelt","[""\nNews\u00a0\n Reminders being issued by MassDOT, EOPSS, Massachusetts State Police and Transportation Partners\n ""]","[""Media Contact for Reminders being issued by MassDOT, EOPSS, Massachusetts State Police and Transportation Partners"", ""Media Contact\n for Reminders being issued by MassDOT, EOPSS, Massachusetts State Police and Transportation Partners"", ""\n\nMassachusetts Department of Transportation\u00a0\n\n"", ""Media Contact for Reminders being issued by MassDOT, EOPSS, Massachusetts State Police and Transportation Partners"", ""Help Us Improve Mass.gov with your feedback""]","[""\n MassDOT Communications Office\n "", ""\n MassDOT Communications Office\n "", ""\n MassDOT Communications Office\n ""]","[""\n\nPhone\n"", ""\n\nPhone\n"", ""\n\nPhone\n""]",[],[] -2086,https://southamptontownnypolice.gov/1034/2017-adopted-budget---capital,Annual & Monthly Reports,200,"2017 Adopted Budget - Capital | Southampton, NY - Official Website","","[""\r\n\r\n2017 Adopted Budget - Capital \t\t""]",[],"[""Loading"", ""Site Tools"", ""2017 Adopted Budget - Capital "", ""Contact Us"", ""Site Links""]",[],[],[] -2087,https://www.foxcrossingwi.gov/departments/police-department/history/,Misc Police Activity,200,History - Fox Crossing Fox Crossing,"","[""""]",[],"[""History""]",[],[],"["""", ""Evolution of our patch"", """", """", ""Evolution of our badge""]" -2088,https://rocklandmaine.gov/events/police-review-committee/,Poor Data Source,200,"Police Review Committee | The City of Rockland, Maine","","[""Police Review Committee"", ""Police Review Committee""]",[],"[""All Current Alerts & Announcements"", ""Current Weather"", ""Date"", ""Time"", ""Location"", ""Leave a Comment Cancel reply"", ""City of Rockland""]",[],[],[] -2089,http://www.longbeach.gov/police/press-releases/murder-1300-block-11th/,Media Bulletins,200,murder 1300 block 11th,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2090,https://coloradosprings.gov/police-department/page/metro-crime-lab,Misc Police Activity,200,Metro Crime Lab | City of Colorado Springs,"","[""\nMetro Crime Lab \n""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]","[""\n\n\n\n Chemistry\n \n"", ""\n Chemistry\n "", ""\n\n\n\n Crime Scene Investigations\n \n"", ""\n Crime Scene Investigations\n "", ""\n\n\n\n DNA\n \n"", ""\n DNA\n "", ""\n\n\n\n Firearms\n \n"", ""\n Firearms\n "", ""\n\n\n\n Latent Fingerprint Examinations\n \n"", ""\n Latent Fingerprint Examinations\n ""]",[],"[""REPORT ONLINE""]",[] -2091,http://www.longbeach.gov/police/press-releases/dui-saturation-patrols-planned-this-weekend/,Media Bulletins,200,DUI SATURATION PATROLS PLANNED THIS WEEKEND,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2092,https://delcopa.gov/publicrelations/releases/2020/covidtesting_lansdowneaug.html,Not Criminal Justice Related,200,"Delaware County Announces COVID-19 Public Testing Site in Lansdowne - Delaware County, Pennsylvania","","[""Delaware County Announces COVID-19 Public Testing Site in Lansdowne""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]","[""Drive-thru and walk-up testing available for Delaware County residents on August 11, 12 and 13""]",[],[] -2093,https://balharbourfl.gov/departments/police/request-crash-report/,Accident Reports,200,Request Crash Report - Bal Harbour Residents,"","[""Request Crash Report""]",[],[],[],[],[] -2094,https://spdblotter.seattle.gov/2015/04/30/barefoot-felon-ditches-stolen-car-gun-at-mcdonalds-leads-police-on-chase/,Media Bulletins,200,"Barefoot Felon Ditches Stolen Car, Gun at McDonald's, Leads Police On Chase - SPD Blotter","","[""Barefoot Felon Ditches Stolen Car, Gun at McDonald\u2019s, Leads Police On Chase""]","[""Find Posts By Topic"", ""You might also like..."", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[] -2095,http://www.longbeach.gov/police/press-releases/dui-drivers-license-checkpoint-planned-this-weekend-2147438636/,Media Bulletins,200,DUI-DRIVERS LICENSE CHECKPOINT PLANNED THIS WEEKEND,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2096,http://www.longbeach.gov/police/press-releases/assault-investigation-leads-to-firearm-discharge/,Media Bulletins,200,ASSAULT INVESTIGATION LEADS TO FIREARM DISCHARGE,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2097,https://alpha.austin.gov/police-oversight/2020-06-12-5/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -2098,https://www.memphistn.gov/news/wpfd_file/police-services-18/,Poor Data Source,404,"","",,,,,, -2099,http://www.longbeach.gov/police/press-releases/robbery-suspect-arrested-2-/,Media Bulletins,200,ROBBERY SUSPECT ARRESTED(2),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2100,https://delcopa.gov/sustainability/pdf/raise/ihpinterprativesignageguidelinesvoliidesignhandbook_2013.pdf,Poor Data Source,200,"404 - Delaware County, Pennsylvania","","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -2101,https://directory.arkansas.gov/agency/secretary-of-state/state-capitol-police/employees/john-watt/,List of Data Sources,200,State Directory – Arkansas.gov,"","["" Flag Status""]","[""\n\n\t\t\t\t\t\tDiscover More\t\t\t\t\t\n"", ""\n\n\t\t\t\t\t\tDiscover More\t\t\t\t\t\n"", ""\n\n\t\t\t\t\t\tDiscover More\t\t\t\t\t\n"", ""\n\n\t\t\t\t\t\tDiscover More\t\t\t\t\t\n"", ""What can we help you find?"", ""Search the Directories"", ""Flag Status"", """"]","[""Government Resources"", ""Business Resources"", ""Residents Resources"", ""Visiting Resources"", ""State Directory"", ""Agencies"", ""Services"", ""Employees"", ""Your Arkansas.gov"", ""Top Online Services"", ""helpful information""]","[""Was the information on this page helpful?""]",[],[] -2102,https://delcopa.gov/planning/pdf/programsandinitiatives/implementingenforcingfloodplainordinance.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -2103,http://www.longbeach.gov/police/press-releases/traffic-fatality4/,Media Bulletins,200,TRAFFIC FATALITY,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2104,https://www.southamptontownnypolice.gov/agendacenter,Not Criminal Justice Related,200,"Agenda Center • Southampton, NY • CivicEngage","","[""Agenda Center""]","[""\u25bcConservation Board"", ""\u25bcHampton Bays CAC"", ""\u25bcLandmarks & Historic Districts Board"", ""\u25bcLRB - Licensing Review Board Agenda"", ""\u25bcNorth Sea CAC"", ""\u25bcRoad Review Committee"", ""\u25bcTrustees"", ""\u25bcWater Mill CAC"", ""\u25bcZoning Board of Appeals""]","[""Loading"", ""Site Tools"", ""Tools"", ""Search Agendas by:"", ""Contact Us"", ""Site Links""]","[""\n\nJan 24, 2024\r\n\t\t\t\r\n\t\t\t\t\u2009\u2014\u2009Amended Jan 23, 2024 9:45 AM\r\n\t\t\t\r\n\t\t\t"", ""\n\nJan 10, 2024\r\n\t\t\t\r\n\t\t\t\t\u2009\u2014\u2009Amended Jan 9, 2024 3:13 PM\r\n\t\t\t\r\n\t\t\t"", ""\n\nSep 23, 2021\r\n\t\t\t\r\n\t\t\t\t\u2009\u2014\u2009Amended Sep 22, 2021 7:41 AM\r\n\t\t\t\r\n\t\t\t"", ""\n\nJan 16, 2024\r\n\t\t\t\r\n\t\t\t\t\t\t\u2009\u2014\u2009Posted Jan 10, 2024 12:38 PM\r\n\t\t\t\t\t\r\n\t\t\t"", ""\n\nJun 8, 2022\r\n\t\t\t\r\n\t\t\t\t\t\t\u2009\u2014\u2009Posted Jun 15, 2022 11:58 AM\r\n\t\t\t\t\t\r\n\t\t\t"", ""\n\nMay 11, 2022\r\n\t\t\t\r\n\t\t\t\t\t\t\u2009\u2014\u2009Posted May 11, 2022 12:21 PM\r\n\t\t\t\t\t\r\n\t\t\t"", ""\n\nApr 13, 2022\r\n\t\t\t\r\n\t\t\t\t\t\t\u2009\u2014\u2009Posted Apr 13, 2022 3:39 PM\r\n\t\t\t\t\t\r\n\t\t\t"", ""\n\nMar 9, 2022\r\n\t\t\t\r\n\t\t\t\t\t\t\u2009\u2014\u2009Posted Mar 9, 2022 11:54 AM\r\n\t\t\t\t\t\r\n\t\t\t"", ""\n\nFeb 9, 2022\r\n\t\t\t\r\n\t\t\t\t\t\t\u2009\u2014\u2009Posted Feb 9, 2022 11:54 AM\r\n\t\t\t\t\t\r\n\t\t\t"", ""\n\nJan 12, 2022\r\n\t\t\t\r\n\t\t\t\t\u2009\u2014\u2009Amended Jan 19, 2022 12:12 PM\r\n\t\t\t\r\n\t\t\t"", ""\n\nDec 17, 2021\r\n\t\t\t\r\n\t\t\t\t\t\t\u2009\u2014\u2009Posted Dec 9, 2021 11:33 AM\r\n\t\t\t\t\t\r\n\t\t\t"", ""\n\nFeb 14, 2023\r\n\t\t\t\r\n\t\t\t\t\t\t\u2009\u2014\u2009Posted Feb 13, 2023 3:20 PM\r\n\t\t\t\t\t\r\n\t\t\t"", ""\n\nJan 10, 2023\r\n\t\t\t\r\n\t\t\t\t\t\t\u2009\u2014\u2009Posted Jan 9, 2023 9:35 AM\r\n\t\t\t\t\t\r\n\t\t\t"", ""\n\nJan 22, 2024\r\n\t\t\t\r\n\t\t\t\t\t\t\u2009\u2014\u2009Posted Jan 18, 2024 4:15 PM\r\n\t\t\t\t\t\r\n\t\t\t"", ""\n\nJan 22, 2024\r\n\t\t\t\r\n\t\t\t\t\t\t\u2009\u2014\u2009Posted Jan 18, 2024 4:16 PM\r\n\t\t\t\t\t\r\n\t\t\t"", ""\n\nJan 8, 2024\r\n\t\t\t\r\n\t\t\t\t\t\t\u2009\u2014\u2009Posted Jan 5, 2024 7:58 AM\r\n\t\t\t\t\t\r\n\t\t\t"", ""\n\nApr 10, 2023\r\n\t\t\t\r\n\t\t\t\t\t\t\u2009\u2014\u2009Posted Mar 27, 2023 12:17 PM\r\n\t\t\t\t\t\r\n\t\t\t"", ""\n\nJan 18, 2024\r\n\t\t\t\r\n\t\t\t\t\t\t\u2009\u2014\u2009Posted Jan 12, 2024 4:02 PM\r\n\t\t\t\t\t\r\n\t\t\t"", ""\n\nJan 4, 2024\r\n\t\t\t\r\n\t\t\t\t\t\t\u2009\u2014\u2009Posted Jan 3, 2024 2:42 PM\r\n\t\t\t\t\t\r\n\t\t\t""]",[],[] -2105,http://police.portlandmaine.gov/499/cemeteries,Not Criminal Justice Related,200,"Cemeteries | Portland, ME - Official Website",The history of a town or city can be traced through their cemeteries - Portland's cemeteries are a fine example of this.,"[""Cemeteries""]",[],[],[],[],[] -2106,http://www.longbeach.gov/police/press-releases/dui-checkpoint-nets-three-arrests2/,Media Bulletins,200,DUI Checkpoint Nets Three Arrests(2),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2107,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/summary/052721summary.pdf,Dispatch Logs,200,"","",[],[],[],[],[],[] -2108,https://bolivar.mo.us/shop-with-a-copr/p1018068/,Not Criminal Justice Related,200,"P1018068 - City of Bolivar, Missouri","","[""P1018068""]",[],[],[],[],[] -2109,http://www.longbeach.gov/police/press-releases/murder-investigation---atlantic-ave.-and-south-st/,Media Bulletins,200,*UPDATE* MURDER INVESTIGATION - ATLANTIC AVE. AND SOUTH ST.,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2110,https://www.antioch.il.gov/wpfb_file_category/commissions-police-pension-fund-agendas-2011-commissions-police-pension-fund-agendas-commissions-police-pension-fund-commissions-commissions-police-pension-fund/,List of Data Sources,200,"2011 - Antioch, IL","","[""Archives: 2011""]",[],"[""12-13-11 Police Pension Fund Agenda"", ""12-13-11 Police Pension Fund Agenda"", ""06-29-11 Police Pension Fund Agenda"", ""06-29-11 Police Pension Fund Agenda"", ""04-12-11 Police Pension Fund Agenda"", ""04-12-11 Police Pension Fund Agenda"", ""09-09-11 Police Pension Fund Agenda""]",[],[],[] -2111,https://delcopa.gov/planning/mapping/custommaprequests.html,Poor Data Source,200,"404 - Delaware County, Pennsylvania","","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -2112,http://www.longbeach.gov/police/press-releases/second-warrant-clearing-event/,Media Bulletins,200,SECOND WARRANT CLEARING EVENT,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2113,https://delcopa.gov/publicrelations/releases/2020/earthday.html,Not Criminal Justice Related,200,"Celebrating the 50th Anniversary of Earth Day in Delco - Delaware County, Pennsylvania","","[""Celebrating the 50th Anniversary of Earth Day in Delco""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]","[""Ways to celebrate and participate in Earth Day amid the COVID-19 Pandemic""]",[],[] -2114,https://www.antiochca.gov/police/oes/,Resources,200,"Disaster Preparedness – City of Antioch, California","",[],"[""Contact Info""]","[""Office of Emergency Services (OES)""]","[""\nSend Message\n"", ""Disaster Preparedness"", ""\n\n""]","[""Joe Vigil"", ""Acting Chief of Police"", ""Captain Morefield"", ""Field Services"", ""Lt. Mellone"", ""Professional Standards"", ""\nCert: Citizens Emergency Response Team""]",[] -2115,https://www.naperville.il.us/services/naperville-police-department/programs-and-services/internship-program/,Training & Hiring Info,200,Internship Program | The City of Naperville,"The NPD Internship Program provides an inclusive, high-quality, safe and advanced educational experience for qualified individuals considering a career in the field of law enforcement.","[""Internship Program""]","[""Programs and Services "", ""Mission Statement"", ""Intern Testimonials"", ""\nNaperville Police Department\n""]","[""Explore""]",[],"[""Helping Residents Build a Better Community"", ""Resources for Doing Business in Naperville""]",[] -2116,https://www.antioch.il.gov/wpfb-file/11-02-16-police-pension-agenda-pdf-3/,Poor Data Source,200,"11-02-16 Police Pension Agenda - Antioch, IL",10564 11 02 16 police pension agenda pdf commissions fund agendas 2016 1477667300 c4564de1e4399e021859da3cf353db29 213x300 _yl6booqzxldd thumb jpg 10 28 08 20 0 pdf application trustees mary c dominiak ed macek jerry t johnson scott a pierce jay jozwiak ted p poulos lawrence m hanson mayor lori k romine village clerk agenda of antioch lake,"[""11-02-16 Police Pension Agenda""]",[],[],[],[],[] -2117,https://police.crystalmn.gov/how_do_i_/report_an_issue/street_light_outage,Not Criminal Justice Related,200,Xcel Energy,"",[],[],[],[],[],[] -2118,https://www.gurnee.il.us/government/departments/police-department/community-involvement/gurnee-citizen-police-academy/gurnee-citizen-police-academy/week-12,Training & Hiring Info,200," - Gurnee Citizen Police Academy -","","[""Police Department""]","[""Gurnee Citizen Police Academy"", ""Youth Citizen Police Academy""]","[""Now accepting applications for the Spring 2024 session!"", ""Click here to register for the Gurnee Citizen Police Academy"", ""Village Hall""]",[],[],[] -2119,https://biloxi.ms.us/police-fire-showcase-is-saturday-at-point-cadet/,Not Criminal Justice Related,200,"Police, fire showcase is Saturday at Point Cadet","","[""Police, fire showcase is Saturday at Point Cadet""]",[],[],[],[],[] -2120,https://www.southamptontownnypolice.gov/faq.aspx?qid=413,Resources,200,FAQs • How will you alert the public on updates on beach dri,"",[],"[""\n\u25bc\r\nTrustees - Endangered Species\t\t""]","[""Loading"", ""Site Tools"", ""Categories"", ""Live Edit"", ""Contact Us"", ""Site Links""]",[],[],[] -2121,http://www.longbeach.gov/police/press-releases/traffic-fatality-3-/,Media Bulletins,200,TRAFFIC FATALITY(3),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2122,http://www.longbeach.gov/police/press-releases/---located----critical-missing-person/,Media Bulletins,200,---LOCATED--- CRITICAL MISSING PERSON,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2123,http://www.longbeach.gov/police/press-releases/fatality-1-/,Media Bulletins,200,FATALITY(1),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2124,https://www.mass.gov/event/police-standards-subcommittee-open-meeting-2022-07-12t090000-0400-2022-07-12t100000-0400,Media Bulletins,200,Police Standards Subcommittee Open Meeting | Mass.gov,"","[""\nPublic Hearing Notice\u00a0\n Police Standards Subcommittee Open Meeting\n ""]","[""\n\nAddress\n"", ""Overview\n of Police Standards Subcommittee Open Meeting"", ""Additional Resources\n for Police Standards Subcommittee Open Meeting"", ""Participating Organizations\n "", ""Help Us Improve Mass.gov with your feedback""]","[""Agenda\n ""]",[],[],[] -2125,https://www.hayward-ca.gov/discover/news/jul22/police-blotter-july-10-16-2022,Media Bulletins,200,"Police Blotter - July 10-16, 2022 | City of Hayward - Official website","STATISTICAL HIGHLIGHTSJuly 10-16, 2022 Weekly Arrests (Includes cite/released):66 Homicide 0Weekly Calls for Service: 1,968 Assault—Great Bodily Injury 5Weekly Reports Taken:230 Burglary— Non Residential 10Weekly Complaints(against HPD):2 Burglary—Residential 1Weekly Calls Received:5,644 Larceny 26This data is subject to change and based on crimes that were re-ported to have","[""Police Blotter - July 10-16, 2022""]","[""Look Deeper"", ""Welcome home"", ""Where opportunity lives"", ""Find what you need. Fast."", ""Working for You"", ""Your Hayward Environment"", ""You are here. So is everything else."", ""Search form""]",[],"[""STATISTICAL HIGHLIGHTS"", ""July 10-16, 2022"", ""\u00a0"", ""\u00a0"", ""\u00a0 \u00a0\u00a0"", ""CASE SYNOPSIS"", ""Re-CAP: Hayward\u2019s Updated Climate Action Plan (CAP)"", ""Try induction cooking for free through Ava Community Energy\u2019s Induction Cooktop Lending Program!"", ""The City of Hayward\u2019s Fight Against Food Waste"", ""Decoding Plastic Recycling In California"", ""Keep Hayward Clean and Green with Adopt-A-Block!"", ""City Hall and Nonessential Services Closures: Monday, Feb 12 and Monday, Feb. 19"", ""City Hall and Nonessential Services Closure: Monday, Jan. 15, 2024"", ""Library Closure January 15, 2024"", ""Library Closure: December 23 2023 - January 1 2024"", ""Library closure: November 23 - November 26, 2023."", ""YOU ARE HERE.SO IS EVERYTHING ELSE."", ""Related News"", ""Police Blotter: December 3-9, 2023"", ""Police Blotter - November 26-December 2, 2023"", ""Police Blotter - November 19-25, 2023"", ""Report\n Problems"", ""Ask\n Questions"", ""Make a\n Suggestion"", ""Translate"", ""Search""]",[],[] -2126,https://dps.iowa.gov/former-pleasantville-police-officer-charged-sexual-abuse-minor,Media Bulletins,200,Former Pleasantville Police Officer Charged With Sexual Abuse of Minor | Iowa Department of Public Safety,"November 16, 2021 DES MOINES, Iowa - On November 12, 2021, at the request of the Pleasantville Police Department, Division of Criminal Investigation agents began a criminal investigation into allegations of sexual contact between a then-police officer with the Pleasantville Police Department and a 15-year-old juvenile. ","[""\n\n Iowa Department of\n \n\n Public Safety\n \n"", ""Former Pleasantville Police Officer Charged With Sexual Abuse of Minor\n""]",[],[],[],[],[] -2127,http://www.longbeach.gov/police/press-releases/arrests-made-in-illegal-firework-investigation/,Media Bulletins,200,ARRESTS MADE IN ILLEGAL FIREWORK INVESTIGATION,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2128,http://www.longbeach.gov/police/press-releases/traffic-fatality--cherry-ave---cherry-circle/,Media Bulletins,200,Traffic Fatality (Cherry Ave & Cherry Circle,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2129,https://www.hayward-ca.gov/discover/news/jul21/police-blotter-june-27-july-3-2021,Media Bulletins,200,"Police Blotter: June 27-July 3, 2021 | City of Hayward - Official website","STATISTICAL HIGHLIGHTSJune 27-July 3, 2021 Weekly Arrests (Includes cite/released):33 Homicide 0Weekly Calls for Service: 2,167 Assault—Great Bodily Injury 1Weekly Reports Taken:195 Burglary— Nonresidential 4Weekly Complaints(against HPD):0 Burglary—Residential 26Weekly Calls Received:6,325 Theft 26This data is subject to change and based on crimes that were reported to have","[""Police Blotter: June 27-July 3, 2021""]","[""Look Deeper"", ""Welcome home"", ""Where opportunity lives"", ""Find what you need. Fast."", ""Working for You"", ""Your Hayward Environment"", ""You are here. So is everything else."", ""Search form""]",[],"[""STATISTICAL HIGHLIGHTS"", ""June 27-July 3, 2021"", ""\u00a0"", ""\u00a0"", ""\u00a0 \u00a0\u00a0"", ""Significant Incidents"", ""Re-CAP: Hayward\u2019s Updated Climate Action Plan (CAP)"", ""Try induction cooking for free through Ava Community Energy\u2019s Induction Cooktop Lending Program!"", ""The City of Hayward\u2019s Fight Against Food Waste"", ""Decoding Plastic Recycling In California"", ""Keep Hayward Clean and Green with Adopt-A-Block!"", ""City Hall and Nonessential Services Closures: Monday, Feb 12 and Monday, Feb. 19"", ""City Hall and Nonessential Services Closure: Monday, Jan. 15, 2024"", ""Library Closure January 15, 2024"", ""Library Closure: December 23 2023 - January 1 2024"", ""Library closure: November 23 - November 26, 2023."", ""YOU ARE HERE.SO IS EVERYTHING ELSE."", ""Related News"", ""Police Blotter: December 3-9, 2023"", ""Police Blotter - November 26-December 2, 2023"", ""Police Blotter - November 19-25, 2023"", ""Report\n Problems"", ""Ask\n Questions"", ""Make a\n Suggestion"", ""Translate"", ""Search""]",[],[] -2130,http://lafayettepolice.us/3404/census-2020,Not Criminal Justice Related,200,"Census 2020 | Lafayette, IN - Official Website","Everything you need to know about the United States 2020 Census, including why everyone should fill out the census, how to do it, and how the information is used.","[""\r\n\r\nCensus 2020\t\t"", ""The Census: Your Response Matters!"", ""CENSUS IS HIRING IN GREATER LAFAYETTE!""]","[""Health clinics. Fire departments. Schools. Even roads and highways. The census can shape many different aspects of your community.\u00a0"", ""Learn more about the Census and why it\u2019s so important""]","[""Loading"", ""Contact Us"", ""FAQs"", ""Site Links""]",[],[],[] -2131,"https://norfolkne.gov/government/departments/police-division/press-releases/july-11,-2021-press-release.html",Media Bulletins,200,"July 19, 2021 Press Release - City of Norfolk, NE","","[""City of Norfolk, NE"", ""Police Division"", ""July 19, 2021 Press Release""]",[],[],[],"[""Still looking for something?""]","[""Contact Us"", ""Pay or Apply..."", ""Government..."", ""Services..."", ""Business..."", ""Amenities...""]" -2132,https://www.mass.gov/doc/draft-scope-of-work-2016-cd-debris-industry-study/download,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -2133,http://www.longbeach.gov/police/press-releases/shooting-200-block-of-artesia/,Media Bulletins,200,Shooting 200 block of Artesia,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2134,https://coloradosprings.gov/police-department/article/news/traffic-fatality-woodman-road-and-campus,Media Bulletins,200,Traffic Fatality Woodman Road and Campus Drive | City of Colorado Springs,"","[""\nTraffic Fatality Woodman Road and Campus Drive\n""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[] -2135,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/summary/080321summary.pdf,Daily Activity Logs,200,"","",[],[],[],[],[],[] -2136,http://www.longbeach.gov/police/press-releases/dui---driver-s-license-checkpoint-planned-this-weekend/,Media Bulletins,200,DUI - DRIVER'S LICENSE CHECKPOINT PLANNED THIS WEEKEND,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2137,https://alpha.austin.gov/police-oversight/formal-complaint-responsibility-to-know-and-compl-2/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -2138,https://www.gurnee.il.us/government/departments/police-department/community-involvement/gurnee-citizen-police-academy/gurnee-citizen-police-academy/week-4,Media Bulletins,200," - Gurnee Citizen Police Academy -","","[""Police Department""]","[""Gurnee Citizen Police Academy"", ""Youth Citizen Police Academy""]","[""Now accepting applications for the Spring 2024 session!"", ""Click here to register for the Gurnee Citizen Police Academy"", ""Village Hall""]",[],[],[] -2139,https://www.roundrocktexas.gov/wp-content/uploads/2019/12/coffee_cop.png,Poor Data Source,200,"","",[],[],[],[],[],[] -2140,http://www.longbeach.gov/police/press-releases/robbery-suspect-arrested-and-charged-1-/,Media Bulletins,200,ROBBERY SUSPECT ARRESTED AND CHARGED(1),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2141,https://wyomingohio.gov/departments/police-department-2/commend-an-officer/,Poor Data Source,404,"","",,,,,, -2142,https://coloradosprings.gov/police-department/article/news/shooting-investigation-1800-block-monterey,Media Bulletins,200,Shooting Investigation 1800 Block Monterey Road | City of Colorado Springs,"","[""\nShooting Investigation 1800 Block Monterey Road\n""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[] -2143,https://police.birminghamal.gov/bureaus/support-operations/records/,Resources,200,Services | Birmingham Police Department,"","[""\n\n\n Birmingham Police Department\n\n\t\t\t\t\tCommitment | Excellence | Integrity\t\t\t\t\n\n""]","[""Putting People First"", ""Services""]",[],"[""Hours & Info"", ""Upcoming Events"", ""CRIMESTOPPERS"", ""Police Information"", ""Quick Links"", ""I Need...""]",[],[] -2144,https://norfolkne.gov/government/departments/police-division/press-releases/october-3rd-press-release-2022.html,Media Bulletins,200,"October 3rd Press Release 2022 - City of Norfolk, NE","","[""City of Norfolk, NE"", ""Police Division"", ""October 3rd Press Release 2022""]",[],[],[],"[""Still looking for something?""]","[""Contact Us"", ""Pay or Apply..."", ""Government..."", ""Services..."", ""Business..."", ""Amenities...""]" -2145,https://alpha.austin.gov/es/police-oversight/formal-complaint-impartial-attitude-and-courtesy-53/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -2146,http://www.longbeach.gov/police/press-releases/dui-driver-s-license-checkpoint-planned-this-weekend-5-/,Media Bulletins,200,DUI-DRIVER'S LICENSE CHECKPOINT PLANNED THIS WEEKEND(5),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2147,http://www.longbeach.gov/police/press-releases/robberymurder-investigation---1900-block-of-pacific-ave/,Media Bulletins,200,ROBBERY/MURDER INVESTIGATION - 1900 BLOCK OF PACIFIC AVE,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2148,https://delcopa.gov/courts/familycourtadvisory.html,Resources,200,Family Law Advisory Council,"","[""Family Law Advisory Council""]",[],"[""Contact Us"", ""Courts Quick Links"", ""Government Center Quick Links"", ""About Delaware County""]",[],[],[] -2149,https://delcopa.gov/publicrelations/releases/18pdfs/18efilingprogramoct11.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -2150,http://www.longbeach.gov/police/press-releases/traffic-fatality-7th-and-olive/,Media Bulletins,200,TRAFFIC FATALITY 7TH AND OLIVE,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2151,https://www.antioch.il.gov/wpfb-file/11-07-16-police-and-fire-agenda-pdf-5/,Poor Data Source,200,"11-07-16 Police And Fire Agenda - Antioch, IL",11 07 16 police and fire agenda pdf commissions commission agendas 2016 2017 05 17 08 41 32 0000,"[""11-07-16 Police And Fire Agenda""]",[],[],[],[],[] -2152,https://sanramon.ca.gov/policenews,List of Data Sources,200," - Police News - City of San Ramon -","","[""Police News""]","[""Contact Us"", ""Useful Links""]","["">>>Read Archived Police News""]",[],[],[] -2153,https://spdblotter.seattle.gov/2015/06/19/police-sting-blackmailer-after-she-tries-to-extort-woman-over-lurid-cellphone-pics/,Media Bulletins,200,Police Sting Blackmailer After She Tries to Extort Woman Over Lurid Cellphone Pics - SPD Blotter,"","[""Police Sting Blackmailer After She Tries to Extort Woman Over Lurid Cellphone Pics""]","[""Find Posts By Topic"", ""You might also like..."", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[] -2154,https://www.dps.arkansas.gov/law-enforcement/arkansas-state-police/divisions/highway-patrol/troop-j-commander/,Personnel Records,200,Troop J Commander - Arkansas Department of Public Safety,"","["" Flag Status""]","[""Troop J Commander"", ""Contact ASP"", ""Helpful ASP links"", ""Connect with ASP"", ""Respect. Integrity. \nCUSTOMER SERVICE. TEAMWORK. \nSERVANT LEADERSHIP. \nCONTINUOUS IMPROVEMENT"", """", ""\u00a9 2024 All rights Reserved. Arkansas.gov ""]","[""Captain Kyle Drown""]",[],"[""About DPS"", ""DPS Links"", ""DPS Address"", ""Your Arkansas.gov"", ""Top Online Services"", ""Helpful Information""]",[] -2155,http://www.longbeach.gov/police/press-releases/click-it-or-ticket-campaign-starts-may-22/,Media Bulletins,200,CLICK IT OR TICKET CAMPAIGN STARTS MAY 22,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2156,http://lafayettepolice.us/735/youth-fire-setter-program,Not Criminal Justice Related,200,"Youth Fire Setter Program | Lafayette, IN - Official Website","The Youth Firesetting Program is a program designed to teach children and parents that matches and lighters are tools, not toys.","[""\r\n\r\nYouth Fire Setter Program\t\t""]",[],"[""Loading"", ""Contact Us"", ""Todd Trent"", ""Lafayette Fire Department"", ""Hours"", ""Contact Us"", ""FAQs"", ""Site Links""]",[],[],[] -2157,http://www.longbeach.gov/police/press-releases/murder-and-weapons-charges-filed-in-january-homicide/,Media Bulletins,200,MURDER AND WEAPONS CHARGES FILED IN JANUARY HOMICIDE,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2158,https://estespark.colorado.gov/departments/police/support-services/auxiliary-unit,Training & Hiring Info,200,Auxiliary Unit | Town of Estes Park,"","[""\nAuxiliary Unit\n""]",[],"[""\n"", ""\nEstes Park Police Department Auxiliary Unit\n"", ""\n"", ""\n"", ""\n"", ""\nLanguage Translation\n""]",[],"[""Outstanding volunteers who contribute to a wonderful Town""]",[] -2159,http://www.longbeach.gov/police/press-releases/traffic-fatality--lb-blvd----market-street-/,Media Bulletins,200,Traffic Fatality (LB Blvd. & Market Street),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2160,http://www.paloshillspolice.us/wp-content/uploads/2017/02/bozen_17.jpg,Poor Data Source,404,"","",,,,,, -2161,http://www.longbeach.gov/police/press-releases/officerinvolvedshooting/,Media Bulletins,200,officerinvolvedshooting,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2162,https://champaignil.gov/tag/champaign-police-department-releases-holiday-traffic-enforcement-numbers/,Media Bulletins,200,Champaign Police Department releases holiday traffic enforcement numbers Archives - City of Champaign,"","[""Items tagged: Champaign Police Department releases holiday traffic enforcement numbers""]","[""Champaign Police Department releases holiday traffic enforcement numbers"", ""News Releases"", ""Department News""]",[],[],[],[] -2163,http://police.portlandmaine.gov/805/orders-as-passed-fiscal-year-2017-to-201,List of Data Sources,200,"Orders as Passed Fiscal Year 2017 to 2018 | Portland, ME - Official Website",View Orders as Passed in the Fiscal Year 2017 to 2018.,"[""Orders as Passed Fiscal Year 2017 to 2018""]",[],[],[],[],[] -2164,https://www.southamptontownnypolice.gov/faq.aspx?qid=452,Not Criminal Justice Related,200,FAQs • I am experiencing ePermitting problems such as upload,"",[],"[""\n\u25bc\r\nTrustees\t\t""]","[""Loading"", ""Site Tools"", ""Categories"", ""Live Edit"", ""Contact Us"", ""Site Links""]",[],[],[] -2165,https://www.milpitas.gov/milpitas/departments/police/investigations/,Poor Data Source,404,"","",,,,,, -2166,https://police.birminghamal.gov/aboutfuture/,Contact Info & Agency Meta,200,About | Birmingham Police Department,"","[""\n\n\n Birmingham Police Department\n\n\t\t\t\t\tCommitment | Excellence | Integrity\t\t\t\t\n\n""]","[""Putting People First"", ""About""]",[],"[""Hours & Info"", ""Upcoming Events"", ""CRIMESTOPPERS"", ""Police Information"", ""Quick Links"", ""I Need...""]",[],[] -2167,https://coloradosprings.gov/police-department/page/police-blotter,Media Bulletins,200,Police Blotter | City of Colorado Springs,"","[""\nPolice Blotter \n""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[] -2168,https://www.pinevillenc.gov/organizer/pineville-police-2/,Poor Data Source,200,"pineville police – Town of Pineville, NC","","[""Upcoming Events"", ""\n\t\tpineville police\t"", ""Town of Pineville Updates""]","[""Town of Pineville Contacts"", ""Important News & Updates"", ""Advisory Board Openings for Pineville Residents"", ""Pineville Community Meeting"", ""Property Tax Listings"", ""Follow Pineville on Facebook""]","[""Emergency: Police, Fire & Rescue"", ""Non-Emergency:"", ""Town Hall Mailing Address:"", ""Town Hall Physical Address:"", ""Town Hall Office Hours:""]",[],[],[] -2169,http://www.longbeach.gov/police/press-releases/dui-driver-s-license-checkpoint-planned-this-weekend-7-/,Media Bulletins,200,DUI-DRIVER'S LICENSE CHECKPOINT PLANNED THIS WEEKEND(7),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2170,http://police.byram-ms.us/bradford-place-auto-burglary/,Media Bulletins,200,Bradford Place Auto Burglary | Byram Police Department,"","[""Bradford Place Auto Burglary""]","[""Byram Weather""]","[""Post navigation"", ""Byram Police Department""]",[],[],[] -2171,https://delcopa.gov/publicrelations/releases/2022/pacareerlinkdelcohostsfreecareerworkshopthroughjune.html,Not Criminal Justice Related,200,"PA CareerLink® Delaware County Hosts Free Career Workshops April Through June - Delaware County, Pennsylvania","","[""PA CareerLink\u00ae Delaware County Hosts Free Career Workshops April Through June""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -2172,http://www.longbeach.gov/police/press-releases/reward-issued-in-2014-case/,Media Bulletins,200,REWARD ISSUED IN 2014 CASE,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2173,https://www.hayward-ca.gov/discover/news/may21/police-blotter-may-2-8-2021,Media Bulletins,200,"Police Blotter: May 2-8, 2021 | City of Hayward - Official website","STATISTICAL HIGHLIGHTSMay 2-8, 2021 Weekly Arrests (Includes cite/released):37 Homicide 0Weekly Calls for Service: 2,101 Assault—Great Bodily Injury 2Weekly Reports Taken:193 Burglary— Nonresidential 4Weekly Complaints(against HPD):0 Burglary—Residential 1Weekly Calls Received:5,541 Theft 18This data is subject to change and based on crimes that were reported to have occurred","[""Police Blotter: May 2-8, 2021""]","[""Look Deeper"", ""Welcome home"", ""Where opportunity lives"", ""Find what you need. Fast."", ""Working for You"", ""Your Hayward Environment"", ""You are here. So is everything else."", ""Search form""]",[],"[""STATISTICAL HIGHLIGHTS"", ""May 2-8, 2021"", ""\u00a0"", ""\u00a0"", ""\u00a0 \u00a0\u00a0"", ""Significant Incidents"", ""Re-CAP: Hayward\u2019s Updated Climate Action Plan (CAP)"", ""Try induction cooking for free through Ava Community Energy\u2019s Induction Cooktop Lending Program!"", ""The City of Hayward\u2019s Fight Against Food Waste"", ""Decoding Plastic Recycling In California"", ""Keep Hayward Clean and Green with Adopt-A-Block!"", ""City Hall and Nonessential Services Closures: Monday, Feb 12 and Monday, Feb. 19"", ""City Hall and Nonessential Services Closure: Monday, Jan. 15, 2024"", ""Library Closure January 15, 2024"", ""Library Closure: December 23 2023 - January 1 2024"", ""Library closure: November 23 - November 26, 2023."", ""YOU ARE HERE.SO IS EVERYTHING ELSE."", ""Related News"", ""Police Blotter: December 3-9, 2023"", ""Police Blotter - November 26-December 2, 2023"", ""Police Blotter - November 19-25, 2023"", ""Report\n Problems"", ""Ask\n Questions"", ""Make a\n Suggestion"", ""Translate"", ""Search""]",[],[] -2174,https://www.knoxvilletn.gov/government/city_departments_offices/police_department/investigations_bureau/special_crimes_unit/domestic_violence_help,Resources,200," - Domestic Violence Help - City of Knoxville -",police*,"[""Domestic Violence Help"", ""Police Chief""]",[],[],[],[],[] -2175,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/042021blotter.pdf,Media Bulletins,200,"","",[],[],[],[],[],[] -2176,https://www.pleasantprairiewi.gov/departments/police/news/police_and_fire___rescue_news_archive/2021_news_releases/police_announce_promotions,Media Bulletins,200," - Police Announce Promotions - Village of Pleasant Prairie -","",[],"[""Police Announce Promotions""]","[""Follow Us on Social Media""]",[],[],[] -2177,https://www.lynchburgvapolice.gov/wp-content/uploads/2021/06/lpd-seal-e1662580813573.png,Poor Data Source,404,"","",,,,,, -2178,https://www.knoxvilletn.gov/government/city_departments_offices/civil_service_department/how_to_apply_for_police,Training & Hiring Info,200," - How to Apply for Police Officer - City of Knoxville -",civil*,"[""How to Apply for Police Officer"", ""Civil Service Director""]","[""Civil Service is currently accepting applications for Police Officer Recruit, Lateral Entry Recruit, and Cadet!\n\nClick HERE to apply!""]","[""HERE""]",[],[],[] -2179,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/020921blotter.pdf,Media Bulletins,200,"","",[],[],[],[],[],[] -2180,https://delcopa.gov/planning/developmentreview.html,Not Criminal Justice Related,200,Development Review,"","[""Development Review""]",[],"[""I\u2019m interested in\u2026"", ""Planning Department Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -2181,http://www.longbeach.gov/police/press-releases/murder-investigation---1400-blk-pacific-ave/,Media Bulletins,200,MURDER INVESTIGATION - 1400 BLK PACIFIC AVE,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2182,https://www.ashevillenc.gov/news/asheville-police-urge-motorcycle-caution-on-town-mountain-road/,Media Bulletins,200,Asheville Police urge motorcycle caution on Town Mountain Road - The City of Asheville,"","[""Asheville Police urge motorcycle caution on Town Mountain Road""]",[],[],[],[],[] -2183,https://delcopa.gov/controller/pdf/unclaimed/unclaimedfundslist.pdf,Resources,200,"","",[],[],[],[],[],[] -2184,https://www.southamptontownnypolice.gov/faq.aspx?qid=288,Resources,200,FAQs • How do I contact the Bay Constable,"",[],"[""\n\u25bc\r\nTown Police\t\t""]","[""Loading"", ""Site Tools"", ""Categories"", ""Live Edit"", ""Contact Us"", ""Site Links""]",[],[],[] -2185,http://www.longbeach.gov/police/press-releases/national-pharmaceutical-take-back-event/,Media Bulletins,200,NATIONAL PHARMACEUTICAL TAKE-BACK EVENT,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2186,http://www.longbeach.gov/police/press-releases/police-seek-public-s-help-with-july-2014-murder-case--sketches-of-persons-of-interest-released/,Media Bulletins,200,POLICE SEEK PUBLIC'S HELP WITH JULY 2014 MURDER CASE; SKETCHES OF PERSONS OF INTEREST RELEASED,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2187,https://pittsburghpa.gov/police/police-contacts,Poor Data Source,200,"","","[""CAREERS"", ""CONTACT US"", ""FOLLOW US"", ""GU\u00cdA DE RESIDENTES"", """", ""City-County Building Lighting - What Do Tonight's Colors Represent?""]",[],[],[],[],[] -2188,http://www.longbeach.gov/police/about-the-lbpd/employment/join-lbpd/step-8/,Training & Hiring Info,200,Step 8: Medical Screening,"","[""Police Department""]","[""Step 8: Medical Screening""]","[""Mayor"", ""City Council"", ""Rex Richardson"", ""Mary Zendejas"", ""Cindy Allen"", ""Kristina Duggan"", ""Daryl Supernaw"", ""Megan Kerr"", ""Suely Saro"", ""Roberto Uranga"", ""Al Austin"", ""Dr. Joni Ricks-Oddie"", ""Dawn McIntosh"", ""Laura L. Doud"", ""Doug Haubert"", ""Tom Modica"", ""Monique DeLaGarza"", ""City-Wide Elected Officials"", ""Appointed Officials"", ""Online Payments"", ""Online Services"", ""In-Person Services"", ""Opening a Business"", ""Doing Business With The City"", ""Resources"", ""Most Popular"", ""Online Resources"", ""Attractions"", ""Business Associations"", ""Travel Resources"", ""Departments"", ""Job Opportunities"", ""Information"", ""LBPD"", ""Employment"", ""Bureaus"", ""News & Events"", ""Crime Info"", ""How Do I"", ""How Do I"", ""Contact Us"", ""\r\n Contact Info:\r\n "", ""Do."", ""Discover."", ""Connect."", ""Ask.""]","["""", ""1st District"", ""2nd District"", ""3rd District"", ""4th District"", ""5th District"", ""6th District"", ""7th District"", ""8th District"", ""9th District"", ""City Attorney"", ""City Auditor"", ""City Prosecutor"", ""City Manager"", ""City Clerk""]",[],[] -2189,http://www.longbeach.gov/police/press-releases/murder-1300-block-of-wesley-drive/,Media Bulletins,200,MURDER 1300 BLOCK OF WESLEY DRIVE,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2190,https://controller.phila.gov/office-of-the-city-controller-announces-community-council-members-to-support-review-of-the-philadelphia-police-department/,Media Bulletins,200,Office of the City Controller Announces Community Council Members to Support Review of the Philadelphia Police Department - Office of the Controller,"","[""\n\t\t\t\t\t\t\tPress Releases\t\t\t\t\t\t"", ""Press Releases: Office of the City Controller Announces Community Council Members to Support Review of the Philadelphia Police Department""]","[""Main Navigation"", ""Post Metadata"", ""Press Releases Pagination"", ""Footer""]","[""Post Categories:"", ""Post Tags:"", ""Contact Information"", ""Quick Links"", ""Newsletter Signup"", ""Copyright Information"", ""Legal Links""]","[""Address""]",[],[] -2191,https://alpha.austin.gov/police-oversight/formal-complaint-arrest-requirement-for-assaultive-offenses-and-responsibility-to-know-and-comply/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -2192,http://www.longbeach.gov/police/press-releases/police-seek-additional-indecent-exposure-victims/,Media Bulletins,200,POLICE SEEK ADDITIONAL INDECENT EXPOSURE VICTIMS,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2193,https://www.prospertx.gov/residents/police/police-department/about-the-department/,Poor Data Source,404,"","",,,,,, -2194,https://www.antioch.il.gov/wpfb-file/04-10-12-police-pension-agenda-pdf-5/,Poor Data Source,200,"04-10-12 Police Pension Agenda - Antioch, IL",04 10 12 police pension agenda pdf commissions fund agendas 2012 2017 05 17 08 41 32 0000,"[""04-10-12 Police Pension Agenda""]",[],[],[],[],[] -2195,https://cheswold.delaware.gov/cheswold-police-department-yearly-traffic-statistics/march-2021-traffic-stop-report/,Annual & Monthly Reports,200,March 2021 - Traffic Stop Report - Town of Cheswold,"","[""Cheswold""]","[""Delaware"", ""March 2021 \u2013 Traffic Stop Report""]","[""Menu""]","[""Address:"", ""Call Us:"", ""Reach Out:""]",[],[] -2196,https://police.greenvillesc.gov/1719/internships,Resources,200,"Academic Internship and Research Program | Greenville, SC - Official Website",GPD offers internships to qualified students.,"[""\r\n\r\nAcademic Internship and Research Program\t\t""]","[""Internships""]","[""Loading"", ""Internship FAQs"", ""Contacts"", ""Internships""]",[],[],[] -2197,http://www.longbeach.gov/police/press-releases/murder-investigation4/,Media Bulletins,200,MURDER INVESTIGATION,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2198,https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0714/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -2199,https://coloradosprings.gov/police-department/article/news/update-officer-involved-shooting-hwy-115,Officer Involved Shootings,200,Update Officer Involved Shooting Hwy 115 and Fort Carson gate 2 | City of Colorado Springs,"","[""\nUpdate Officer Involved Shooting Hwy 115 and Fort Carson gate 2\n""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[] -2200,http://www.longbeach.gov/police/press-releases/pedestrian-safety-operation-a-success/,Media Bulletins,200,PEDESTRIAN SAFETY OPERATION A SUCCESS,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2201,http://www.longbeach.gov/police/press-releases/l.b.p.d.-promotes-assistant-chief/,Media Bulletins,200,L.B.P.D. PROMOTES NEW ASSISTANT CHIEF,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2202,https://delcopa.gov/departments/parks/pdf/dogparkapplication.pdf,Resources,200,"","",[],[],[],[],[],[] -2203,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/blotter/010122blotter.pdf,Daily Activity Logs,200,"","",[],[],[],[],[],[] -2204,http://www.ryepolice.us/pressrelease/press-release-burglary-suspect,Media Bulletins,200,Rye Police Department Press Release - Burglary Suspect - Rye Police Department,"","[""Press Release - Burglary Suspect""]","[""Press Release \u2013 Burglary Suspect""]","[""Navigation"", ""Follow Us"", ""Facebook"", ""Email Updates"", ""Storm Preparedness Guide""]",[],[],[] -2205,https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/summary/092722summary.pdf,Poor Data Source,404,"","",,,,,, -2206,https://www.coppelltx.gov/644/pay-bills-fines,Resources,200,"Pay Bills & Fines | Coppell, TX",Learn how to pay for utility bills and pay fines and citations.,"[""\r\n\r\nPay Bills & Fines\t\t""]",[],"[""Loading""]","[""\nPay Citation\n"", ""\nPay Tax Bill\n"", ""\nPay Water Bill\n""]",[],[] -2207,https://police.greenvillesc.gov/1865/credit-union,Not Criminal Justice Related,200,"My Account • Greenville, SC • CivicEngage","Engage your community – connect to news, events and information you care about.","[""Website Sign In""]","[""Sign In""]","[""Loading""]",[],[],[] -2208,http://www.lafayettepolice.us/826/fire-blocking,Not Criminal Justice Related,200,"Fire Blocking | Lafayette, IN - Official Website","In combustible construction, fire blocking shall be installed to cut off concealed draft openings (both vertical and horizontal) and shall form an effective barrier between floors, between a top story and a roof or attic space.","[""\r\n\r\nFire Blocking\t\t""]",[],"[""Loading"", ""Contact Us"", ""FAQs"", ""Site Links""]",[],[],[] -2209,https://dccouncil.gov/donation-disclosures/copy-of-april-2019-donation-disclosures-2/,Policies & Contracts,200,Copy of April 2019 Donation Disclosures • Council of the District of Columbia,"","[""Copy of April 2019 Donation Disclosures""]",[],[],[],[],[] -2210,https://alpha.austin.gov/es/police-oversight/2020-06-4-15/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -2211,https://www.lynchburgvapolice.gov/wp-content/uploads/2022/01/veh-3.jpg,Poor Data Source,404,"","",,,,,, -2212,https://www.cityofladue-mo.gov/departments/police-department/community/maps-167,Not Criminal Justice Related,200,Maps | City of Ladue,"","[""Maps""]","[""Upcoming Events""]",[],[],[],[] -2213,https://www.antioch.il.gov/wpfb-file/12-09-14-police-pension-agenda-pdf/,Poor Data Source,200,"12-09-14 Police Pension Agenda - Antioch, IL",8436 12 09 14 police pension agenda pdf commissions fund agendas 2014 1417450543 2a9c5dc94f4b22a9f99a6d66b140c03a 219x300 _cvau8geaxfzv thumb jpg 01 11 15 43 0 pdf application trustees dennis b crosby jay jozwiak mary c dominiak scott a pierce jerry t johnson ted p poulos lawrence m hanson mayor lori k folbrick village clerk agenda of antioch,"[""12-09-14 Police Pension Agenda""]",[],[],[],[],[] -2214,https://www.coppelltx.gov/592/hotel-occupancy-tax,Not Criminal Justice Related,200,"Hotel Occupancy Tax | Coppell, TX",The City of Coppell levies a tax rate of 7% on the cost of occupancy of any sleeping room furnished by any hotel where the cost of occupancy is at the rate of two dollars or more per day.,"[""\r\n\r\nHotel Occupancy Tax\t\t""]","[""People Who Must File a Hotel Occupancy Report"", ""When to File""]","[""Loading"", ""Holidays & Weekends"", ""Documents"", ""Contact Us"", ""Quick Links""]","[""Hotel Occupancy Tax""]",[],[] -2215,https://www.montgomeryohio.gov/meet-steve-coppel-a-diversity-inclusion-committee-member/steve-coppel/,Not Criminal Justice Related,200,"- Montgomery, Ohio","","[""""]","[""Primary menu links"", ""Action toolbar"", ""Recent news"", ""Welcome"", ""Engage"", ""Help"", ""Mental Health Resource""]","[""Unlimited Yard Waste Continues and Holiday Greenery Pick-up Begins"", ""2023 Landmark Ornament Now Available"", ""Mills-Reynolds Joins Montgomery City Council"", ""Three Montgomery City Council Members Sworn into New Terms of Office"", ""Thank you, Montgomery!""]",[],[],[] -2216,https://ci.guadalupe.ca.us/documents/police-officer/,Training & Hiring Info,200,"Police Officer – The City of Guadalupe, California","","[""Police Officer""]","[""Document Links"", ""Leaving our website"", ""Exiting our website""]",[],[],[],[] -2217,http://www.longbeach.gov/police/press-releases/undetermined-death-investigation3/,Media Bulletins,200,UNDETERMINED DEATH INVESTIGATION,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2218,https://barnegatpolice.us/download/field-check/,Field Contacts,200,Field Check - Barnegat Township Police Department,"","[""Field Check"", ""Field Check""]","[""Field Check""]","[""\n\t\t\t\t\t\tAbout the Author: \t\t\t\t\t\tBTPD ""]","[""Share This Story, Choose Your Platform!"", ""Resources"", ""Directions"", ""Quick Links""]",[],[] -2219,https://www.cityofpinebluff-ar.gov/copycred,Not Criminal Justice Related,200,"Accessibility, Copyrights, Credits & Privacy - City Of Pine Bluff","",[],"[""Accessibility, Copyrights, Credits & Privacy""]",[],[],[],[] -2220,https://delcopa.gov/publicrelations/releases/2021/whatvoterscanexpect.html,Not Criminal Justice Related,200,"What Delaware County Voters Can Expect on Election Day - Delaware County, Pennsylvania","","[""What Delaware County Voters Can Expect on Election Day""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -2221,http://www.longbeach.gov/police/press-releases/five-cited-during-undercover-vice-operation/,Media Bulletins,200,FIVE CITED DURING UNDERCOVER VICE OPERATION,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2222,https://www.foxcrossingwi.gov/departments/police-department/resources/83-07_use-of-force/,Poor Data Source,200,83-07_Use of Force - Fox Crossing Fox Crossing,"","["""", """", ""83-07_Use of Force""]",[],[],[],[],[] -2223,http://www.longbeach.gov/police/press-releases/two-arrested--drugs--cash-and-guns-seized-in-connection-with-drug-trafficking/,Media Bulletins,200,"TWO ARRESTED; DRUGS, CASH AND GUNS SEIZED IN CONNECTION WITH DRUG TRAFFICKING","","[""Long BeachPolice Department""]",[],[],[],[],[] -2224,http://www.ryepolice.us/announcements/holiday-parade,Not Criminal Justice Related,200,Rye Police Department HoLiDaY PaRaDe!!!!!!! - Rye Police Department,"","[""HoLiDaY PaRaDe!!!!!!!""]","[""HoLiDaY PaRaDe!!!!!!!""]","[""Navigation"", ""Follow Us"", ""Facebook"", ""Email Updates"", ""Storm Preparedness Guide""]",[],[],[] -2225,https://www.coronadelmar.us/gambler-left-puppy-in-hot-car-with-mouth-taped-shut-at-vegas-casino-police-say/,Media Bulletins,200,"Gambler left puppy in hot car with mouth taped shut at Vegas casino, police say | Corona del Mar California","","[""Gambler left puppy in hot car with mouth taped shut at Vegas casino, police say""]","[""Menu"", "" Be First to Comment"", ""Subscribe"", """", """"]","[""Share this:"", ""Like this:"", ""Related"", ""Leave a Reply Cancel reply"", """"]",[],[],[] -2226,https://delcopa.gov/vote/pdf/latecontributions_24hourreport.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -2227,https://police.greenvillesc.gov/232/jury-duty,Not Criminal Justice Related,200,"Jury Duty | Greenville, SC - Official Website",Jurors for Greenville Municipal Court are randomly selected from a database that contains information from the South Carolina Election Commission and the South Carolina Highway Department. ,"[""\r\n\r\nJury Duty\t\t""]","[""Jury Selection"", ""Reporting for Jury Duty"", ""For More Information""]","[""Loading"", ""Contacts""]","[""\r\n\t\t\t\t\tPam Larson\r\n\t\t\t\t\t\r\n\t\t\t\t"", ""Municipal Court""]",[],[] -2228,https://brookfieldil.gov/publication/fire-and-police-commission-special-meeting-december-17-2015/,Poor Data Source,404,"","",,,,,, -2229,https://www.mass.gov/doc/2016-deputy-police-chief-employmentexperience-form-for-attleboro-examination-0/download,Training & Hiring Info,200,"","",[],[],[],[],[],[] -2230,https://www.warracres-ok.gov/police-department-history/warr-acres-old4/,Poor Data Source,200,Warr Acres OLD4 - City of Warr Acres,"","[""Warr Acres OLD4""]","[""Primary menu links"", ""Action toolbar"", ""Contact""]",[],[],"[""How do I reserve a park facility?""]",[] -2231,https://www.sandiego.gov/police/recruiting/contact/dispatch,Training & Hiring Info,200,Contact Police Dispatch | City of San Diego Official Website,"If you are interested in an application packet, or have questions about becoming a dispatcher, please complete the following contact form. This form is for Police Dispatch only. See Contact the SDPD Recruiting Unit for officer recruiting information and contact form. This form must be completed by a person eighteen years old or older.","[""City of San Diego Official Website"", ""Contact Police Dispatch\n""]","[""Main navigation"", ""Leisure"", ""Resident Resources"", ""Doing Business"", ""Library"", ""Public Safety"", ""City Hall"", ""Accessibility Tools"", """", ""Footer""]",[],"[""Parks"", ""Outdoors"", ""Neighborhoods"", ""Recreational Activities"", ""Street Maintenance"", ""Plan"", ""Fix"", ""Build"", ""Programs & Events"", ""Services"", ""Kids & Teens"", ""eCollection"", ""Police"", ""Fire-Rescue"", ""Lifeguards"", ""City Officials"", ""City Government""]",[],[] -2232,https://www.eutawal.gov/news/national-police-week-2022/,Poor Data Source,200,National Police Week 2022 – The City of Eutaw Alabama,"","[""National Police Week 2022""]","[""Recent Posts"", ""Recent Comments"", ""Our Links"", ""Green County Links"", ""More Links..."", ""Gateway to the Black Belt \u00ae""]",[],"[""The City of Eutaw Alabama""]",[],[] -2233,https://www.coppelltx.gov/929/earthfest,Not Criminal Justice Related,200,"Earthfest | Coppell, TX",Celebrate EarthFest at the Biodiversity Education Center! EarthFest is a celebration of Coppell's commitment to the environment - an entertaining and educational experience! Visit environmental education booths to learn how you can lead a more sustainable lifestyle and explore Coppell Nature Park. ,"[""\r\n\r\nEarthfest\t\t""]",[],"[""Loading"", ""Saturday, April 20 \u2022 11 a.m. \u2013 1 p.m."", ""Activities"", ""Parking Information""]",[],[],[] -2234,https://police.greenvillesc.gov/427/minoritywoman-owned-business-enterprise-,Not Criminal Justice Related,200,"Minority/Woman-Owned Business Enterprise Program | Greenville, SC - Official Website","To promote free competition and equal opportunity, the City of Greenville is committed to assisting small, minority-owned and woman-owned businesses in becoming active vendors with the City of Greenville.","[""\r\n\r\nMinority/Woman-Owned Business Enterprise Program\t\t""]","[""About the Program"", ""City Policies"", ""Intent"", ""Definitions"", ""Preference in Scoring Proposals""]","[""Loading"", ""Contacts"", ""Quick Link""]","[""\r\n\t\t\t\t\tRod Gray\r\n\t\t\t\t\t\r\n\t\t\t\t"", ""Purchasing Division""]",[],[] -2235,https://police.bixbyok.gov/256/find-laws-pertaining-to-the-city-of-bixb,Not Criminal Justice Related,200,"Find Laws pertaining to the City of Bixby | Bixby Police Department, OK","","[""\r\n\r\nFind Laws pertaining to the City of Bixby\t\t""]",[],"[""Loading"", ""Helpful Links"", ""FAQs"", ""Site Links""]","[""\r\n\t\t\t\t\tBixby City Code\r\n\t\t\t\t"", ""\r\n\t\t\t\t\tOklahoma State Statute\r\n\t\t\t\t""]",[],[] -2236,https://coloradosprings.gov/police-department/webform/chiefs-youth-advisory-council-application,Resources,200,Chief's Youth Advisory Council Application | City of Colorado Springs,"","[""\nChief's Youth Advisory Council Application\n""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[] -2237,https://coloradosprings.gov/police-department/article/news/traffic-fatality-marksheffel-road-and-0,Media Bulletins,200,Traffic Fatality: Marksheffel Road and Drennan Road | City of Colorado Springs,"","[""\nTraffic Fatality: Marksheffel Road and Drennan Road\n""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[] -2238,https://springfield-or.gov/event/springfield-police-advisory-committee-spac-13/,Not Criminal Justice Related,200,Springfield Police Advisory Committee (SPAC) - City of Springfield Oregon,"",[],"[""Springfield Police Advisory Committee (SPAC)""]","[""May 5, 2022 @ 6:00 pm - 7:30 pm"", ""Event Navigation""]","[""Share This Story, Choose Your Platform!"", "" Details "", "" Venue "", ""Organizer""]",[],[] -2239,http://www.longbeach.gov/police/press-releases/fumigation-burglaries/,Media Bulletins,200,FUMIGATION BURGLARIES,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2240,https://delcopa.gov/planning/pubs/openspaceplanvoliii.html,Not Criminal Justice Related,200,"Delaware County 2035 Open Space, Recreation, and Greenway Plan","","[""Volume III: CountyParks and Recreation Plan \n""]",[],"[""Planning Department Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -2241,http://www.longbeach.gov/press-releases/city-manager-announces-potential-recruitment-process-for-police-chief/,Media Bulletins,200,City Manager Announces Potential Recruitment Process for Police Chief,"","[""PRESS RELEASE""]",[],[],[],[],[] -2242,http://www.longbeach.gov/police/press-releases/warrant--expungement-servicing-event/,Media Bulletins,200,WARRANT & EXPUNGEMENT SERVICING EVENT,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2243,http://www.longbeach.gov/police/press-releases/police-seeking-the-public-s-help-with-identifying-armed-robbery-suspect-from-video/,Media Bulletins,200,POLICE SEEKING THE PUBLIC'S HELP WITH IDENTIFYING ARMED ROBBERY SUSPECT FROM VIDEO,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2244,http://www.longbeach.gov/police/press-releases/click-it-or-ticket-campaign-starts-may-21st/,Media Bulletins,200,CLICK IT OR TICKET CAMPAIGN STARTS MAY 21ST,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2245,http://www.longbeach.gov/police/press-releases/dui-checkpoint-proves-effective-2-/,Media Bulletins,200,DUI CHECKPOINT PROVES EFFECTIVE(2),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2246,http://www.longbeach.gov/police/press-releases/murder-200-block-of-liberty-court/,Media Bulletins,200,MURDER 200 BLOCK OF LIBERTY COURT,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2247,http://www.longbeach.gov/police/press-releases/super-bowl-driving-impaired-enforcement/,Media Bulletins,200,SUPER BOWL IMPAIRED DRIVER ENFORCEMENT,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2248,http://www.longbeach.gov/police/press-releases/murder-14-/,Media Bulletins,200,MURDER(14),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2249,http://www.longbeach.gov/police/press-releases/duidrivers-license-checkpoint-planned-tomorrow/,Media Bulletins,200,DUI/DRIVERS LICENSE CHECKPOINT PLANNED TOMORROW,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2250,http://www.longbeach.gov/police/press-releases/click-it-or-ticket-campaign-begins-may-18th/,Media Bulletins,200,CLICK IT OR TICKET CAMPAIGN BEGINS MAY 18TH,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2251,http://www.longbeach.gov/police/press-releases/murder---3100-block-e-artesia-blvd/,Media Bulletins,200,MURDER,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2252,http://www.longbeach.gov/police/press-releases/traffic-fatality--ocean-blvd----710-transition-/,Media Bulletins,200,Traffic Fatality (Ocean Blvd. & 710 Transition),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2253,http://www.longbeach.gov/police/press-releases/traffic-fatality---obispo-ave-and-broadway/,Media Bulletins,200,TRAFFIC FATALITY - OBISPO AVE AND BROADWAY,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2254,http://www.longbeach.gov/police/press-releases/duidrivers-license-checkpoint-planned-this-weekend7/,Media Bulletins,200,DUI/DRIVER'S LICENSE CHECKPOINT PLANNED THIS WEEKEND,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2255,http://www.longbeach.gov/police/press-releases/dui-enforcement-operations-planned-this-weekend-6-/,Media Bulletins,200,DUI ENFORCEMENT OPERATIONS PLANNED THIS WEEKEND(6),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2256,http://www.longbeach.gov/police/press-releases/checkpoint/,Media Bulletins,200,CHECKPOINT,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2257,http://www.longbeach.gov/police/press-releases/dui-saturation-patrol-nets-four-arrests/,Media Bulletins,200,DUI SATURATION PATROL NETS FOUR ARRESTS,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2258,http://www.longbeach.gov/police/press-releases/dui-saturation-patrol-proves-effective-6-/,Media Bulletins,200,DUI SATURATION PATROL PROVES EFFECTIVE(6),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2259,http://www.longbeach.gov/police/press-releases/traffic-fatality3/,Media Bulletins,200,Traffic Fatality (Carson & California),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2260,http://www.longbeach.gov/police/press-releases/charges-filed-against-three-suspects-for-brutal-crime/,Media Bulletins,200,CHARGES FILED AGAINST THREE SUSPECTS FOR BRUTAL CRIME,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2261,http://www.longbeach.gov/police/press-releases/distracting-driving-will-be-enforced/,Media Bulletins,200,Distracting Driving Will be Enforced,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2262,http://www.longbeach.gov/police/press-releases/robbery-suspects-arrestd-and-charged/,Media Bulletins,200,ROBBERY SUSPECTS ARRESTD and CHARGED,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2263,http://www.longbeach.gov/police/press-releases/arrest-made-and-charges-filed-in-human-trafficking-of-a-minor-case/,Media Bulletins,200,ARREST MADE AND CHARGES FILED IN HUMAN TRAFFICKING OF A MINOR CASE,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2264,http://www.longbeach.gov/police/press-releases/duidrivers-license-checkpoint-planned-this-weekend4/,Media Bulletins,200,DUI/DRIVER'S LICENSE CHECKPOINT PLANNED THIS WEEKEND,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2265,http://www.longbeach.gov/police/press-releases/traffic-fatality-2-/,Media Bulletins,200,TRAFFIC FATALITY(2),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2266,http://www.longbeach.gov/police/press-releases/traffic-fatality-marina-dr---studebaker/,Media Bulletins,200,TRAFFIC FATALITY,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2267,http://www.longbeach.gov/police/press-releases/bird-theft-suspect-arrested--two-others-remain-outstanding/,Media Bulletins,200,BIRD THEFT SUSPECT ARRESTED; TWO OTHERS REMAIN OUTSTANDING,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2268,http://www.longbeach.gov/police/press-releases/murder-1100-block-locust/,Media Bulletins,200,murder 1100 block locust,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2269,http://www.longbeach.gov/police/press-releases/dui-saturation-patrol-nets-five-arrests/,Media Bulletins,200,DUI SATURATION PATROL NETS FIVE ARRESTS,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2270,http://www.longbeach.gov/police/press-releases/frequently-requested-lbpd-policies-available-on-website/,Media Bulletins,200,Frequently Requested LBPD Policies Available on Website,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2271,http://www.longbeach.gov/police/press-releases/graduation-and-summer-break-safety-tips-1-/,Media Bulletins,200,GRADUATION AND SUMMER BREAK SAFETY TIPS(1),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2272,http://www.longbeach.gov/press-releases/long-beach-police-lieutenant-reunites-with-resident-he-helped/,Media Bulletins,200,Long Beach Police Lieutenant Reunites With Resident He Helped,"","[""PRESS RELEASE""]",[],[],[],[],[] -2273,http://www.longbeach.gov/police/press-releases/three-suspects-arrested-for-2013-murder/,Media Bulletins,200,THREE SUSPECTS ARRESTED FOR 2013 MURDER,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2274,https://www.coppelltx.gov/524/state-of-the-city,Not Criminal Justice Related,200,"State of the City | Coppell, TX",Check out the most recent Coppell State of the City address.,"[""\r\n\r\nState of the City\t\t""]","[""2022 State of the City"", ""The presentation included information about:""]","[""Loading""]",[],[],[] -2275,http://www.longbeach.gov/police/press-releases/motorcycle-safety-operation/,Media Bulletins,200,IMPROVING MOTORCYCLE SAFETY AIM OF LONG BEACH POLICE DEPARTMENT OPERATION,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2276,https://southamptontownnypolice.gov/faq.aspx?qid=299,Contact Info & Agency Meta,200,"FAQs • I want to build a dock off my property, what do I nee","",[],"[""\n\u25bc\r\nTrustees\t\t""]","[""Loading"", ""Site Tools"", ""Categories"", ""Live Edit"", ""Contact Us"", ""Site Links""]",[],[],[] -2277,https://coloradosprings.gov/police-department/article/news/suspect-multiple-armed-robberies-arrested,Media Bulletins,200,Suspect in multiple armed robberies arrested | City of Colorado Springs,"","[""\nSuspect in multiple armed robberies arrested\n""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[] -2278,https://alpha.austin.gov/en/police-oversight/formal-complaints-opo-processed-on-june-5-purpose-and-scopecommunity-policing-and-other-policy-violations/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -2279,http://www.longbeach.gov/police/press-releases/murder-investigation---1200-block-of-chestnut/,Media Bulletins,200,MURDER INVESTIGATION - 1200 BLOCK OF CHESTNUT,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2280,https://www.desmoineswa.gov/departments/police/online_crime_reporting/spanish_online_police_reporting,Poor Data Source,200," - Spanish Online Police Reporting - City of Des Moines, WA -","","[""City of Des Moines, WA""]","[""Spanish Online Police Reporting""]",[],[],[],[] -2281,https://www.trinidad.co.gov/police-department,Poor Data Source,404,"","",,,,,, -2282,https://www.newcarrolltonmd.gov/government/departments/police_department/ncpd_news,List of Data Sources,404,"","",,,,,, -2283,http://lafayettepolice.us/616/commercial-kitchen-operations,Not Criminal Justice Related,200,"Commercial Kitchen Operations | Lafayette, IN - Official Website","If your business operates a commercial kitchen, you'll want to know these rules and regulations for equipment and facilities. ","[""\r\n\r\nCommercial Kitchen Operations\t\t""]","[""Commercial Kitchen Ventilation"", ""Exhaust Air\n"", ""Replacement Air"", ""Capture and Containment Of Vapors & Heat"", ""Exhaust System Components"", ""Capture & Containment"", ""Ventilation Performance Test"", ""Performance Evaluation"", ""Test Conditions"", ""Pre-Engineered Fire Suppression System""]","[""Loading"", ""\n"", ""Basic Commercial Kitchen"", ""New Construction"", ""Existing Systems"", ""Verification"", ""Final Report"", ""Standard"", ""Testing"", ""Contact Us"", ""Brian Alkire"", ""Fire Department"", ""Hours"", ""Quick Links"", ""Contact Us"", ""FAQs"", ""Site Links""]",[],[],[] -2284,http://www.longbeach.gov/police/press-releases/2014-robbery-victim-dies--reward-renewed/,Media Bulletins,200,2014 Robbery Victim Dies; Reward Renewed,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2285,http://www.longbeach.gov/police/press-releases/motorcycle-safety-is-aim-of-l-b-p-d--operation/,Media Bulletins,200,MOTORCYCLE SAFETY IS AIM OF L.B.P.D. OPERATION,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2286,http://www.longbeach.gov/police/press-releases/human-sex-trafficking-task-force-operation/,Media Bulletins,200,HUMAN SEX TRAFFICKING TASK FORCE OPERATION,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2287,http://www.longbeach.gov/police/press-releases/traffic-fatality-10-/,Media Bulletins,200,TRAFFIC FATALITY(10),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2288,http://www.longbeach.gov/police/press-releases/charges-filed-against-former-police-officer/,Media Bulletins,200,Charges Filed Against Former Police Officer,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2289,http://www.longbeach.gov/police/press-releases/critical-missing---beltran-carmelo/,Media Bulletins,200,"LOCATED: CRITICAL MISSING PERSON - BELTRAN, CARMELO","","[""Long BeachPolice Department""]",[],[],[],[],[] -2290,http://www.longbeach.gov/police/press-releases/update--excavation-to-be-conducted-in-missing-person-cold-case-investigation/,Media Bulletins,200,UPDATE: EXCAVATION TO BE CONDUCTED IN MISSING PERSON COLD CASE INVESTIGATION,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2291,http://www.longbeach.gov/police/press-releases/murder-1900-block-chestnut-ave/,Media Bulletins,200,MURDER 1900 block Chestnut Ave,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2292,http://www.longbeach.gov/police/press-releases/tailgates-being-targeted--community-encouraged-to-take-precautions/,Media Bulletins,200,TAILGATES BEING TARGETED; COMMUNITY ENCOURAGED TO TAKE PRECAUTIONS,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2293,http://www.longbeach.gov/police/press-releases/dui-driver-s-license-checkpoint-planned-this-weekend-14-/,Media Bulletins,200,DUI-Driver's License Checkpoint Planned this Weekend(14),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2294,http://www.longbeach.gov/police/press-releases/donut-boy-visits-l.b.p2.d/,Media Bulletins,200,DONUT BOY VISITS L.B.P.D,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2295,http://www.longbeach.gov/police/press-releases/dui-saturation-patrol-proves-effective-10-/,Media Bulletins,200,DUI SATURATION PATROL PROVES EFFECTIVE(10),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2296,http://www.longbeach.gov/police/press-releases/traffic-fatality---pacific-avenue-and-burnett-street/,Media Bulletins,200,TRAFFIC FATALITY - PACIFIC AVENUE AND BURNETT STREET,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2297,http://www.longbeach.gov/police/press-releases/long-beach-police-dui-checkpoint-proves-effective-2-/,Media Bulletins,200,LONG BEACH POLICE DUI CHECKPOINT PROVES EFFECTIVE(2),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2298,http://www.longbeach.gov/police/press-releases/human-trafficking-suspect-arrested/,Media Bulletins,200,HUMAN TRAFFICKING SUSPECT ARRESTED,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2299,http://www.longbeach.gov/police/press-releases/halloween-safety-tips-2-/,Media Bulletins,200,HALLOWEEN SAFETY TIPS(2),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2300,http://www.longbeach.gov/police/press-releases/police-seek-additional-indecent-exposure-victims-1-/,Media Bulletins,200,POLICE SEEK ADDITIONAL INDECENT EXPOSURE VICTIMS(1),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2301,http://www.longbeach.gov/police/press-releases/publics-help-needed-to-identify-hit-and-run-suspects/,Media Bulletins,200,PUBLIC’S HELP SOUGHT IN IDENTIFYING HIT AND RUN SUSPECTS,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2302,http://www.longbeach.gov/police/press-releases/traffic-fatality-15-/,Media Bulletins,200,Traffic Fatality(15),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2303,http://www.longbeach.gov/police/press-releases/dui-checkpoint-nets-one-arrest2/,Media Bulletins,200,DUI CHECKPOINT NETS TWO ARRESTS,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2304,http://www.longbeach.gov/police/press-releases/arrest-made---charges-filed-in-2013-shooting-case/,Media Bulletins,200,ARREST MADE & CHARGES FILED IN 2013 SHOOTING CASE,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2305,http://www.longbeach.gov/police/press-releases/winter-break-safety-tips-for-youth/,Media Bulletins,200,Winter Break Safety Tips for Youth,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2306,http://www.longbeach.gov/police/press-releases/police---fire-memorial-ceremony/,Media Bulletins,200,POLICE & FIRE MEMORIAL CEREMONY,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2307,http://www.longbeach.gov/police/press-releases/murder-charges-filed/,Media Bulletins,200,MURDER CHARGES FILED,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2308,http://www.longbeach.gov/police/press-releases/robbery-suspects-arrested-and-charged/,Media Bulletins,200,ROBBERY SUSPECTS ARRESTED AND CHARGED,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2309,http://www.longbeach.gov/police/press-releases/murder2/,Media Bulletins,200,MURDER (HARBOR AVE & 15TH ST.),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2310,http://www.longbeach.gov/police/press-releases/traffic-fatality---cherry-and-carson/,Media Bulletins,200,TRAFFIC FATALITY - CHERRY and CARSON,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2311,http://www.longbeach.gov/police/press-releases/l-b-p-d--offers-holiday-safety-tips/,Media Bulletins,200,L.B.P.D. Offers Holiday Safety Tips,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2312,https://www.elburn.il.us/police-department/vacation-watch/,Poor Data Source,200,"Vacation Watch | Village of Elburn, Illinois","","[""Vacation Watch""]",[],[],"[""Vacation Watch""]","[""Links"", ""Main Contact Info"", ""Follow Us""]",[] -2313,https://www.foxcrossingwi.gov/departments/police-department/resources/vine/,Poor Data Source,200,vine - Fox Crossing Fox Crossing,"",[],"[""Resources \u00bb vine""]",[],[],[],[] -2314,https://spdblotter.seattle.gov/2021/10/03/driver-of-stolen-vehicle-arrested-after-ramming-police-cars-gas-station/,Media Bulletins,200,"Driver of Stolen Vehicle Arrested After Ramming Police Cars, Gas Station - SPD Blotter","","[""Driver of Stolen Vehicle Arrested After Ramming Police Cars, Gas Station""]","[""Find Posts By Topic"", ""You might also like..."", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[] -2315,https://spdblotter.seattle.gov/2011/06/14/anti-police-graffiti-incident/,Media Bulletins,200,Anti-Police Graffiti incident - SPD Blotter,"","[""Anti-Police Graffiti incident""]","[""Find Posts By Topic"", ""You might also like..."", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[] -2316,http://www.longbeach.gov/police/press-releases/arrests-made-in-the-kidnapping-murder-of-3-week-old-eliza-delacruz/,Media Bulletins,200,ARRESTS MADE IN THE KIDNAPPING-MURDER OF 3-WEEK-OLD ELIZA DELACRUZ,"","[""Long BeachPolice Department""]",[],"[""POSSIBLE MOTIVE FOR THE KIDNAPPING"", ""RECAP OF THE JANUARY 3, 2015 EVENTS"", ""CONNECTION TO AN EL SEGUNDO ASSAULT CASE"", ""RELEASE OF SKETCHES AND VIDEO LED TO TIPS"", ""PUBLIC\u2019S HELP SOUGHT"", ""THANK YOU""]",[],[],[] -2317,http://www.longbeach.gov/police/press-releases/don-t-be-a-victim-of-fraud-this-holiday-season/,Media Bulletins,200,DON'T BE A VICTIM OF FRAUD THIS HOLIDAY SEASON,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2318,http://www.longbeach.gov/police/press-releases/traffic-fatality---pacific-avenue-and-burnett-street/,Media Bulletins,200,TRAFFIC FATALITY - PACIFIC AVENUE AND BURNETT STREET,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2319,http://www.longbeach.gov/police/press-releases/students-return-to-school-motorists-urged-to-drive-carefully/,Media Bulletins,200,STUDENTS RETURN TO SCHOOL; MOTORISTS URGED TO DRIVE CAREFULLY,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2320,http://www.longbeach.gov/press-releases/city-of-long-beach-initiates-outside-review-of-police-department-direct-messaging-application/,Media Bulletins,200,City of Long Beach Initiates Outside Review of Police Department Direct Messaging Application,"","[""PRESS RELEASE""]",[],[],[],[],[] -2321,http://www.longbeach.gov/police/press-releases/murder-investigation/,Media Bulletins,200,MURDER INVESTIGATION,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2322,http://www.longbeach.gov/police/press-releases/murder-investigation---2300-block-of-elm-avenue/,Media Bulletins,200,MURDER INVESTIGATION - 2300 BLOCK OF ELM AVENUE,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2323,http://www.longbeach.gov/police/press-releases/critical-missing-person/,Media Bulletins,200,CRITICAL MISSING PERSON,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2324,http://www.longbeach.gov/police/press-releases/homicide-investigation/,Media Bulletins,200,HOMICIDE INVESTIGATION,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2325,http://www.longbeach.gov/police/press-releases/long-beach-police-investigate-attempt-murder-of-chp-officer-following-pursuit/,Media Bulletins,200,LONG BEACH POLICE INVESTIGATE ATTEMPT MURDER OF CHP OFFICER FOLLOWING PURSUIT,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2326,http://www.longbeach.gov/police/press-releases/annual-police-and-fire-memorial-ceremony-will-include-addition-of-officer-william-h--waggoner/,Media Bulletins,200,ANNUAL POLICE AND FIRE MEMORIAL CEREMONY WILL INCLUDE ADDITION OF OFFICER WILLIAM H. WAGGONER,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2327,http://www.longbeach.gov/police/press-releases/traffic-fatality---lakewood-blvd-and-sb-405-fwy/,Media Bulletins,200,TRAFFIC FATALITY - LAKEWOOD BLVD AND SB 405 FWY,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2328,http://www.longbeach.gov/police/press-releases/murder-600-block-burnett/,Media Bulletins,200,Murder 600 block Burnett,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2329,http://www.longbeach.gov/police/press-releases/l.b.p.d.-announces-appointment-of-new-commanders--changes-in-command-staff-assignments/,Media Bulletins,200,L.B.P.D. ANNOUNCES APPOINTMENT OF NEW COMMANDERS & CHANGES IN COMMAND STAFF ASSIGNMENTS,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2330,http://www.longbeach.gov/police/press-releases/five-cited-during-undercover-vice-operation/,Media Bulletins,200,FIVE CITED DURING UNDERCOVER VICE OPERATION,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2331,http://www.longbeach.gov/police/press-releases/traffic-fatality---woodruff-avenue--conant-street/,Media Bulletins,200,TRAFFIC FATALITY - WOODRUFF AVENUE & CONANT STREET,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2332,http://www.longbeach.gov/police/press-releases/murder-25-/,Media Bulletins,200,MURDER(25),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2333,http://www.longbeach.gov/police/press-releases/long-beach-police-announce-appointment-of-new-commander-and-assignment-of-next-west-division-commander/,Media Bulletins,200,LONG BEACH POLICE ANNOUNCE APPOINTMENT OF NEW COMMANDER AND ASSIGNMENT OF NEXT WEST DIVISION COMMANDER,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2334,http://www.longbeach.gov/police/press-releases/murder-investigation----1000-block-of-east-11th-street/,Media Bulletins,200,MURDER INVESTIGATION - 1000 BLOCK OF EAST 11TH STREET,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2335,http://www.longbeach.gov/police/press-releases/traffic-fatality---woodruff-avenue--conant-street/,Media Bulletins,200,TRAFFIC FATALITY - WOODRUFF AVENUE & CONANT STREET,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2336,http://www.longbeach.gov/press-releases/jason-campbell-appointed-police-administration-bureau-chief/,Media Bulletins,200,Jason Campbell Appointed Police Administration Bureau Chief,"","[""PRESS RELEASE""]",[],[],[],[],[] -2337,http://www.longbeach.gov/police/press-releases/officer-involved-shooting---2500-lb-blvd/,Media Bulletins,200,Officer Involved Shooting - 2500 LB Blvd,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2338,http://www.longbeach.gov/police/press-releases/traffic-fatality---willow-st.-and-golden-ave/,Media Bulletins,200,TRAFFIC FATALITY - WILLOW ST. AND GOLDEN AVE.,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2339,http://www.longbeach.gov/police/press-releases/critical-missing-person--douglas-grant/,Media Bulletins,200,CRITICAL MISSING PERSON- DOUGLAS GRANT,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2340,http://www.longbeach.gov/police/press-releases/murder-investigation-market-st--orange-ave/,Media Bulletins,200,MURDER INVESTIGATION (MARKET ST & ORANGE AVE),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2341,http://www.longbeach.gov/police/press-releases/murder-36-/,Media Bulletins,200,MURDER(36),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2342,http://www.longbeach.gov/police/press-releases/improving-motorcycle-safety-aim-of-l-b-p-d--operation/,Media Bulletins,200,IMPROVING MOTORCYCLE SAFETY AIM OF L.B.P.D. OPERATION,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2343,http://www.longbeach.gov/police/press-releases/improving-motorcycle-safety-aim-of-operation/,Media Bulletins,200,IMPROVING MOTORCYCLE SAFETY AIM OF OPERATION,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2344,http://www.longbeach.gov/police/press-releases/lbpd-academy-graduation-ceremony/,Media Bulletins,200,LBPD ACADEMY GRADUATION CEREMONY,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2345,http://www.longbeach.gov/police/press-releases/traffic-fatality-1900-block-pch/,Media Bulletins,200,TRAFFIC FATALITY,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2346,http://www.longbeach.gov/press-releases/long-beach-police-department-south-division-to-host-open-house/,Media Bulletins,200,Long Beach Police Department South Division to Host Open House,"","[""PRESS RELEASE""]",[],[],[],[],[] -2347,http://www.longbeach.gov/police/press-releases/murder-investigation2/,Media Bulletins,200,MURDER INVESTIGATION,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2348,http://www.longbeach.gov/police/press-releases/traffic-fatality-artesia-and-myrtle/,Media Bulletins,200,TRAFFIC FATALITY ARTESIA AND MYRTLE,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2349,http://www.longbeach.gov/police/press-releases/traffic-fatality---cherry-and-carson/,Media Bulletins,200,TRAFFIC FATALITY - CHERRY and CARSON,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2350,http://www.longbeach.gov/police/press-releases/traffic-fatality-8-/,Media Bulletins,200,TRAFFIC FATALITY(8),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2351,http://www.longbeach.gov/police/press-releases/murder-44-/,Media Bulletins,200,Murder(44),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2352,http://www.longbeach.gov/police/press-releases/charges-filed-in-murder-investigation/,Media Bulletins,200,CHARGES FILED IN MURDER INVESTIGATION,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2353,http://www.longbeach.gov/police/press-releases/murder-investigation---600-block-of-cedar-ave/,Media Bulletins,200,MURDER INVESTIGATION - 600 BLOCK OF CEDAR AVE,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2354,http://www.longbeach.gov/police/press-releases/parents-arrested-for-murder-in-2013-suspicious-death-of-1-month-old-infant/,Media Bulletins,200,PARENTS ARRESTED FOR MURDER IN 2013 SUSPICIOUS DEATH OF 1-MONTH-OLD-INFANT,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2355,http://www.longbeach.gov/police/press-releases/operation-results-in-multiple-arrests--confiscation-of-numerous-firearms/,Media Bulletins,200,OPERATION RESULTS IN MULTIPLE ARRESTS & CONFISCATION OF NUMEROUS FIREARMS,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2356,http://www.longbeach.gov/police/press-releases/duidrivers-license-checkpoint-planned-this-weekend3/,Media Bulletins,200,DUI/DRIVERS LICENSE CHECKPOINT PLANNED THIS WEEKEND,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2357,http://www.longbeach.gov/police/press-releases/assault-investigation-leads-to-firearm-discharge/,Media Bulletins,200,ASSAULT INVESTIGATION LEADS TO FIREARM DISCHARGE,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2358,http://www.longbeach.gov/police/press-releases/traffic-fatality-shoreline-dr-and-710-fwy/,Media Bulletins,200,TRAFFIC FATALITY: SHORELINE DR AND 710 FWY,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2359,http://www.longbeach.gov/police/press-releases/in-custody-death/,Media Bulletins,200,IN-CUSTODY DEATH,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2360,http://www.longbeach.gov/police/press-releases/publics-help-sought-in-indecent-exposure/,Media Bulletins,200,PUBLIC'S HELP SOUGHT IN INDECENT EXPOSURE,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2361,https://delcopa.gov/treasurer/pdf/2021reassessmentvalues/36.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -2362,https://www.mass.gov/doc/2017-police-officer-and-state-trooper-exam-poster/download,Training & Hiring Info,200,"","",[],[],[],[],[],[] -2363,https://coloradosprings.gov/mayors-office/article/news/mayor-and-police-statements-about-bailey-civil,Media Bulletins,200,Mayor and police statements about Bailey civil settlement | City of Colorado Springs,"","[""\nMayor and police statements about Bailey civil settlement\n""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[] -2364,http://www.lafayettepolice.us/493/sports-programs,Not Criminal Justice Related,200,"Sports Programs | Lafayette, IN - Official Website",Young people can choose from several different sports programs for fun and fitness. ,"[""\r\n\r\nSports Programs\t\t"", ""Winter 2024 Session\u00a0"", """", ""Fall 2024 Session\u00a0""]","[""NOTE: Due to the COVID-19 pandemic programs and events are subject to change based on local and state guidelines. McAllister Recreation Center will provide updates as they become available. Thank you.Youth Basketball"", ""Flag Football"", ""Summer and Fall Tennis""]","[""Loading"", ""2023 Information"", ""More Information"", ""Contact Us"", ""McAllister Recreation Center"", ""Hours"", ""Contact Us"", ""FAQs"", ""Site Links""]",[],[],[] -2365,https://www.newarknj.gov/resources/instructions-for-crane-or-helicopter-lift,Not Criminal Justice Related,200,Resources: Instructions for Crane or Helicopter Lift,"Official Page of Newark, NJ Resources: Instructions for Crane or Helicopter Lift","[""City of"", ""NEWARK"", ""City of"", ""NEWARK""]","[""Instructions for Crane or Helicopter Lift"", ""Mayor Ras j baraka""]",[],[],[],[] -2366,https://www.sandiego.gov/police/news-center/cold-cases/maria-cortes,Crime Maps & Reports,200,Maria Cortes | City of San Diego Official Website,"Maria Cortes was a Mexican national who worked as a housekeeper and child care provider. She had a two-year-old daughter named Briana. Those close to Cortes described her as a devoted mother and a hard worker, dedicated to making a better life for Briana and becoming a legal citizen herself. Cortes had no car and used buses for transportation, often riding two or more buses in one trip and sometimes walking alone at night to get home from work.","[""City of San Diego Official Website"", ""Cold Case: Maria Cortes\n""]","[""Main navigation"", ""Leisure"", ""Resident Resources"", ""Doing Business"", ""Library"", ""Public Safety"", ""City Hall"", ""Accessibility Tools"", ""News Center"", ""Footer""]",[],"[""Parks"", ""Outdoors"", ""Neighborhoods"", ""Recreational Activities"", ""Street Maintenance"", ""Plan"", ""Fix"", ""Build"", ""Programs & Events"", ""Services"", ""Kids & Teens"", ""eCollection"", ""Police"", ""Fire-Rescue"", ""Lifeguards"", ""City Officials"", ""City Government""]",[],[] -2367,https://delcopa.gov/publicrelations/releases/2018/18redribbonweek.html,Not Criminal Justice Related,200,"Public Relations - Delaware County, Pennsylvania","","[""Public Relations Releases""]",[],"[""Recognizing October 23-31 as Red Ribbon Week"", ""\n\n"", ""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -2368,https://www.coppelltx.gov/953/lifelong-learning,Not Criminal Justice Related,200,"Lifelong Learning | Coppell, TX","Whether you want to learn a new hobby, start a career, or learn a new language, Lifelong Learning Databases are the best way to continue your education.","[""\r\n\r\nLifelong Learning\t\t""]","[""Database Password""]","[""Loading""]",[],[],[] -2369,https://wildwoodpolice-fl.gov/wpd-history/,Poor Data Source,200,WPD History - Wildwood Police,"","[""Wildwood PD History""]","[""Contact Information:""]",[],[],[],[] -2370,https://cityofsweetwater.fl.gov/event/sweetwater-police-pension-plan-board-of-trustees-meeting-3/,Not Criminal Justice Related,200,Agendas & Minutes - City of Sweetwater,"",[],"[""Agendas & Minutes""]","["""", ""Contact City Hall"", ""Office Hours""]",[],"[""Search Meeting Minutes, Agendas & Packets""]",[] -2371,https://www.mass.gov/doc/cancer-cervical-chicopee/download,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -2372,https://dccouncil.gov/donation-disclosures/copy-of-august-2018-donation-disclosures-5/,Not Criminal Justice Related,200,Copy of August 2018 Donation Disclosures • Council of the District of Columbia,"","[""Copy of August 2018 Donation Disclosures""]",[],[],[],[],[] -2373,https://ose.louisiana.gov/event/police-lieutenant/,Poor Data Source,200,Police Lieutenant | Louisiana Office of State Examiner,"","["""", ""Police Lieutenant""]",[],"[""Promotional Level""]",[],[],"[""Recent Posts"", ""Archives"", ""Categories"", ""Meta""]" -2374,https://delcopa.gov/departments/pdfs/2020adoptedbudget.pdf,Annual & Monthly Reports,200,"","",[],[],[],[],[],[] -2375,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/arrests/082321arrests.pdf,Arrest Records,200,"","",[],[],[],[],[],[] -2376,https://www.mass.gov/letter-ruling/letter-ruling-81-13-printing-and-photocopying-equipment,Not Criminal Justice Related,200,Letter Ruling 81-13: Printing and Photocopying Equipment | Mass.gov,"Sales and Use Tax February 2, 1981 ********** (**********""Center"") is a small printing and photocopying business. You inquire whether the ********** Center's purchase of the following equipment used in its printing operations is subject to the sales tax: (1) offset printing presses; (2) padding presses that bind cardboard or other backing to pads of paper; (3) folding machines; (4) machines used to staple booklets, brochures and the like; (5) collating machines; (6) paper-cutting machines; (7) paper drills; (8) joggers used to align sheets of paper into compact piles; (9) cameras used in plate-making; (10) light tables used for layout work and setting out printing jobs; and (11) typesetting machines. Massachusetts General Laws Chapter 64H, Section 6(r) exempts from sales taxation sales of materials, tools and fuel, or any substitute therefor, which are consumed and used directly and exclusively in an industrial plant in the actual manufacture of tangible personal property to be sold. Chapter 64H, Section 6(s) exempts from sales taxation sales of machinery or replacement parts thereof used directly and exclusively in an industrial plant in the actual manufacture, conversion or processing of tangible personal property to be sold. To be exempt, machinery must be (a) used solely during a manufacturing, conversion or processing operation 1. to effect a direct and immediate physical change upon tangible personal property to be sold; 2. to guide or measure a direct and immediate physical change upon such property where the guiding or measuring is an integral and essential part of tuning, verifying or aligning the parts of such property; or 3. to test or measure such property where the testing or measuring is an integral part of the production flow or function; or (b) used solely to 1. store; 2. transport or convey; or 3. handle such property during the operations listed in (a) above; or (c) used solely to place such property in the container, package or wrapping in which it is normally sold to the ultimate consumer. If machinery does not satisfy the above criteria, it is not exempt even if its operation, function or purpose is an integral or essential part of a continuous production flow or manufacturing process. Based on the foregoing, it is ruled that: (1) sales to the ********** Center of items (1) through (8) (the printing presses, padding presses, folding, stapling, collating and paper-cutting machines, paper drills and joggers) are exempt from tax; and (2) sales to the ********** Center of items (9) through (11) (the cameras used in platemaking, light tables and typesetting machines) are subject to tax. I am enclosing a copy of Regulation 830 CMR 64H.04. Very truly yours, /s/L. Joyce Hampers L. Joyce Hampers Commissioner of Revenue LJH:JXD:mf Enclosure LR 81-13","[""\nLetter Ruling\u00a0\n Letter Ruling 81-13: Printing and Photocopying Equipment\n ""]","[""Table of Contents"", ""Help Us Improve Mass.gov with your feedback""]",[],[],[],[] -2377,https://www.mass.gov/doc/case-study-city-of-chicopee/download,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -2378,http://www.longbeach.gov/police/press-releases/dui-checkpoint-nets-arrests/,Media Bulletins,200,DUI CHECKPOINT NETS ARRESTS,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2379,http://www.longbeach.gov/police/press-releases/murder-100-block-48th/,Media Bulletins,200,MURDER,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2380,http://www.longbeach.gov/police/press-releases/undetermined-death-investigation-1-/,Media Bulletins,200,UNDETERMINED DEATH INVESTIGATION(1),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2381,http://www.longbeach.gov/police/press-releases/traffic-fatality-clark-and-eagle/,Media Bulletins,200,TRAFFIC FATALITY CLARK AND EAGLE,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2382,http://www.longbeach.gov/police/press-releases/murder-5400-block-atlantic/,Media Bulletins,200,MURDER 5400 BLOCK ATLANTIC,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2383,http://www.longbeach.gov/police/press-releases/l.b.p.d.-announces-appointment-of-new-commanders--changes-in-command-staff-assignments/,Media Bulletins,200,L.B.P.D. ANNOUNCES APPOINTMENT OF NEW COMMANDERS & CHANGES IN COMMAND STAFF ASSIGNMENTS,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2384,http://www.longbeach.gov/police/press-releases/undetermined-deaths-do-not-appear-related/,Media Bulletins,200,Undetermined Deaths Do Not Appear Related,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2385,http://www.longbeach.gov/police/press-releases/murder-investigation---800-block-of-alamitos-avenue/,Media Bulletins,200,MURDER INVESTIGATION - 800 BLOCK OF ALAMITOS AVENUE,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2386,http://www.longbeach.gov/globalassets/police/media-library/images/press-releases/2016/thumb_halloween---kids-in-costume.png,Poor Data Source,200,City of Long Beach,"",[],"[""Page Not Found""]","[""Mayor"", ""City Council"", ""Rex Richardson"", ""Mary Zendejas"", ""Cindy Allen"", ""Kristina Duggan"", ""Daryl Supernaw"", ""Megan Kerr"", ""Suely Saro"", ""Roberto Uranga"", ""Al Austin"", ""Dr. Joni Ricks-Oddie"", ""Dawn McIntosh"", ""Laura L. Doud"", ""Doug Haubert"", ""Tom Modica"", ""Monique DeLaGarza"", ""City-Wide Elected Officials"", ""Appointed Officials"", ""Online Payments"", ""Online Services"", ""In-Person Services"", ""Opening a Business"", ""Doing Business With The City"", ""Resources"", ""Most Popular"", ""Online Resources"", ""Attractions"", ""Business Associations"", ""Travel Resources"", ""Departments"", ""Job Opportunities"", ""Information"", ""Do."", ""Discover."", ""Connect."", ""Ask.""]","["""", ""1st District"", ""2nd District"", ""3rd District"", ""4th District"", ""5th District"", ""6th District"", ""7th District"", ""8th District"", ""9th District"", ""City Attorney"", ""City Auditor"", ""City Prosecutor"", ""City Manager"", ""City Clerk""]",[],[] -2387,http://www.longbeach.gov/police/press-releases/missing-person---kylexia-newman/,Media Bulletins,200,MISSING PERSON - KYLEXIA NEWMAN,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2388,http://www.longbeach.gov/police/press-releases/dui-checkpoint-proves-effective-1-/,Media Bulletins,200,DUI CHECKPOINT PROVES EFFECTIVE(1),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2389,http://www.longbeach.gov/police/press-releases/traffic-fatality-22-/,Media Bulletins,200,TRAFFIC FATALITY(22),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2390,http://www.longbeach.gov/police/press-releases/felony-robbery-suspect-arrested/,Media Bulletins,200,FELONY ROBBERY SUSPECT ARRESTED,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2391,http://www.longbeach.gov/police/press-releases/two-arrested---charged-in-two-shootings/,Media Bulletins,200,Two Arrested & Charged in Two Shootings,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2392,http://www.longbeach.gov/police/press-releases/---located---missing-3-week-old-infant-found-deceased-in-san-diego-county/,Media Bulletins,200,---LOCATED---MISSING 3-WEEK-OLD INFANT FOUND DECEASED IN SAN DIEGO COUNTY,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2393,http://www.longbeach.gov/police/press-releases/murder-1300-block-wesley-dr/,Media Bulletins,200,Murder 1300 block Wesley Dr,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2394,http://www.longbeach.gov/police/press-releases/fatality-7-/,Media Bulletins,200,FATALITY(7),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2395,http://www.longbeach.gov/police/press-releases/publics-help-sought-in-locating-hit--run-suspect/,Media Bulletins,200,PUBLIC'S HELP SOUGHT IN LOCATING HIT & RUN SUSPECT,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2396,http://www.longbeach.gov/police/press-releases/traffic-fatality-spring-street-west-of-el-dorado-park/,Media Bulletins,200,TRAFFIC FATALITY - Spring Street West of El Dorado Park,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2397,http://www.longbeach.gov/police/press-releases/dui-saturation-patrol-proves-effective-1-/,Media Bulletins,200,DUI SATURATION PATROL PROVES EFFECTIVE(1),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2398,http://www.longbeach.gov/police/press-releases/robbery-suspects-arrested-1-/,Media Bulletins,200,robbery suspects arrested(1),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2399,http://www.longbeach.gov/police/press-releases/murder-1300-block-of-pine/,Media Bulletins,200,MURDER 1300 BLOCK OF PINE,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2400,http://www.longbeach.gov/police/press-releases/murder-28-/,Media Bulletins,200,MURDER(28),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2401,http://www.longbeach.gov/attorney/press-releases/court-dismisses-lawsuits-by-two-long-beach-police-officers-against-the-city-of-long-beach/,Media Bulletins,200,Court Dismisses Lawsuits by Two Long Beach Police Officers Against the City of Long Beach,"","[""Charles ParkinLong BeachCity Attorney""]",[],[],[],[],[] -2402,http://www.longbeach.gov/police/press-releases/fatality-3-/,Media Bulletins,200,FATALITY(3),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2403,http://www.longbeach.gov/police/press-releases/police-impersonator/,Media Bulletins,200,Police Impersonator,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2404,http://www.longbeach.gov/police/press-releases/publics-help-needed-to-identify-robbery-suspects/,Media Bulletins,200,PUBLIC’S HELP NEEDED TO IDENTIFY ROBBERY SUSPECTS,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2405,http://www.longbeach.gov/police/press-releases/traffic-fatality---ocean-blvd-and-ca-47/,Media Bulletins,200,TRAFFIC FATALITY - OCEAN BLVD AND CA-47,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2406,http://www.longbeach.gov/police/press-releases/arrest-made-in-sexual-assault-case-1-/,Media Bulletins,200,ARREST MADE IN SEXUAL ASSAULT CASE(1),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2407,http://www.longbeach.gov/police/press-releases/body-found-1000-block-of-w--carson-street/,Media Bulletins,200,BODY FOUND 1000 BLOCK OF W. CARSON STREET,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2408,http://www.longbeach.gov/police/press-releases/three-arrested-and-charged-with-murder/,Media Bulletins,200,THREE ARRESTED AND CHARGED WITH MURDER,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2409,http://www.longbeach.gov/police/press-releases/l.b.p.d-announces-appointment-of-new-commander/,Media Bulletins,200,L.B.P.D ANNOUNCES APPOINTMENT OF NEW COMMANDER & CHANGES IN COMMAND STAFF ASSIGNMENTS,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2410,http://www.longbeach.gov/police/press-releases/police-seek-public-s-help-to-identify-burglary-suspect/,Media Bulletins,200,POLICE SEEK PUBLIC'S HELP TO IDENTIFY BURGLARY SUSPECT,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2411,http://www.longbeach.gov/police/press-releases/results-of-saturday-s-l-b-p-d--s-driving-under-the-influence-saturation-patrol/,Media Bulletins,200,Results of Saturday's L.B.P.D.'s Driving Under the Influence Saturation Patrol,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2412,http://www.longbeach.gov/attorney/press-releases/court-dismisses-lawsuits-by-two-long-beach-police-officers-against-the-city-of-long-beach/,Media Bulletins,200,Court Dismisses Lawsuits by Two Long Beach Police Officers Against the City of Long Beach,"","[""Charles ParkinLong BeachCity Attorney""]",[],[],[],[],[] -2413,http://www.longbeach.gov/police/press-releases/traffic-fatality-2200-block-of-golden-ave/,Media Bulletins,200,Traffic Fatality (2200 block of Golden Ave),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2414,http://www.longbeach.gov/police/press-releases/found---critical-missing-person----1-/,Media Bulletins,200,FOUND---CRITICAL MISSING PERSON---(1),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2415,http://www.longbeach.gov/police/press-releases/traffic-fatality--4th---obispo-/,Media Bulletins,200,TRAFFIC FATALITY (4th & Obispo),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2416,http://www.longbeach.gov/press-releases/long-beach-police-department-awarded-blue-line-security-contract/,Media Bulletins,200,Long Beach Police Department Awarded Blue Line Security Contract,"","[""PRESS RELEASE""]",[],[],[],[],[] -2417,http://www.longbeach.gov/police/press-releases/murder-22-/,Media Bulletins,200,Murder(22),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2418,http://www.longbeach.gov/police/press-releases/store-clerk-struck-by-gunfire-during-robbery--public-s-help-sought-to-identify-suspect/,Media Bulletins,200,STORE CLERK STRUCK BY GUNFIRE DURING ROBBERY; PUBLIC'S HELP SOUGHT TO IDENTIFY SUSPECT,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2419,http://www.longbeach.gov/police/press-releases/officer-involved-shooting-4-/,Media Bulletins,200,OFFICER INVOLVED SHOOTING(4),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2420,http://www.longbeach.gov/police/press-releases/dui-enforcement-operation-planned-this-weekend/,Media Bulletins,200,DUI ENFORCEMENT OPERATION PLANNED THIS WEEKEND,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2421,http://www.longbeach.gov/police/press-releases/dui-checkpoint-planned-this-weekend-1-/,Media Bulletins,200,DUI CHECKPOINT PLANNED THIS WEEKEND(1),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2422,http://www.longbeach.gov/police/press-releases/duidrivers-license-checkpoint-planned-this-weekend6/,Media Bulletins,200,DUI/DRIVER'S LICENSE CHECKPOINT PLANNED THIS WEEKEND,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2423,http://www.longbeach.gov/police/press-releases/dui-enforcement-operation-planned-for-long-beach-pride/,Media Bulletins,200,DUI ENFORCEMENT OPERATION PLANNED FOR LONG BEACH PRIDE,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2424,http://www.longbeach.gov/police/press-releases/dui-checkpoint-2-/,Media Bulletins,200,DUI CHECKPOINT(2),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2425,http://www.longbeach.gov/press-releases/outside-review-of-police-department-direct-messaging-application-complete/,Media Bulletins,200,Outside Review of Police Department Direct Messaging Application Complete,"","[""PRESS RELEASE""]",[],[],[],[],[] -2426,http://www.longbeach.gov/police/press-releases/two-suspects-arrested-for-string-of-commercial-burglaries/,Media Bulletins,200,TWO SUSPECTS ARRESTED FOR STRING OF COMMERCIAL BURGLARIES,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2427,http://www.longbeach.gov/press-releases/long-beach-police-lieutenant-reunites-with-resident-he-helped/,Media Bulletins,200,Long Beach Police Lieutenant Reunites With Resident He Helped,"","[""PRESS RELEASE""]",[],[],[],[],[] -2428,http://www.longbeach.gov/police/press-releases/search-warrant-operation/,Media Bulletins,200,Search Warrant Operation,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2429,http://www.longbeach.gov/press-releases/long-beach-city-council-restores-paramedic-rescue-12--reinstates-police-academy-operations-with-measure-a-funding/,Media Bulletins,200,"Long Beach City Council Restores Paramedic Rescue 12, Reinstates Police Academy Operations with Measure A Funding","","[""PRESS RELEASE""]",[],[],[],[],[] -2430,http://www.longbeach.gov/police/press-releases/st-patricks-day-saturation-patrol/,Media Bulletins,200,"THIS ST. PATRICK’S DAY, PLAN BEFORE YOU PARTY!","","[""Long BeachPolice Department""]",[],[],[],[],[] -2431,http://www.longbeach.gov/police/press-releases/murder-1300-block-11th/,Media Bulletins,200,murder 1300 block 11th,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2432,https://www.southamptontownnypolice.gov/1767/liberty-gardens,List of Data Sources,200,"Liberty Gardens | Southampton, NY - Official Website","","[""\r\n\r\nLiberty Gardens\t\t""]",[],"[""Loading"", ""Site Tools"", ""Liberty Gardens (Revised FEIS)"", ""Contact Us"", ""Site Links""]","[""FEIS Liberty Gardens"", ""Plan"", ""Appendices"", ""DEIS Liberty Gardens"", ""Plan"", ""Appendices""]",[],[] -2433,http://www.longbeach.gov/police/press-releases/academy-graduation---class-90/,Media Bulletins,200,L.B.P.D. RECRUIT ACADEMY GRADUATION CEREMONY,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2434,http://www.longbeach.gov/police/press-releases/operation-results-in-multiple-arrests--confiscation-of-numerous-firearms/,Media Bulletins,200,OPERATION RESULTS IN MULTIPLE ARRESTS & CONFISCATION OF NUMEROUS FIREARMS,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2435,http://www.longbeach.gov/press-releases/richard-rocchi-appointed-deputy-police-chief/,Media Bulletins,200,Richard Rocchi Appointed Deputy Police Chief,"","[""PRESS RELEASE""]",[],[],[],[],[] -2436,http://www.longbeach.gov/police/press-releases/fatality-2-/,Media Bulletins,200,FATALITY(2),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2437,http://www.longbeach.gov/police/press-releases/lbpd-promotes-new-leaders/,Media Bulletins,200,LBPD PROMOTES NEW LEADERS,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2438,http://www.longbeach.gov/police/press-releases/publics-help-sought-in-locating-hit--run-suspect/,Media Bulletins,200,PUBLIC'S HELP SOUGHT IN LOCATING HIT & RUN SUSPECT,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2439,http://www.longbeach.gov/police/press-releases/police-seek-public-s-help-to-identify-vehicle-theft-suspects/,Media Bulletins,200,POLICE SEEK PUBLIC'S HELP TO IDENTIFY VEHICLE THEFT SUSPECTS,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2440,http://www.longbeach.gov/police/press-releases/felony-suspects-arrested-and-charged/,Media Bulletins,200,FELONY SUSPECTS ARRESTED AND CHARGED,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2441,http://www.longbeach.gov/police/press-releases/police-seek-help/,Media Bulletins,200,POLICE SEEK HELP,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2442,http://www.longbeach.gov/police/press-releases/traffic-fatality-6-/,Media Bulletins,200,TRAFFIC FATALITY(6),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2443,http://www.longbeach.gov/police/press-releases/arrest-made-in-sexual-assault-case/,Media Bulletins,200,ARREST MADE IN SEXUAL ASSAULT CASE,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2444,http://www.longbeach.gov/police/press-releases/suspect-arrested-and-charged-for-1996-murder/,Media Bulletins,200,SUSPECT ARRESTED AND CHARGED FOR 1996 MURDER,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2445,http://www.longbeach.gov/police/press-releases/traffic-fatality---harvy-way-and-bellflower-blvd/,Media Bulletins,200,TRAFFIC FATALITY - HARVY WAY AND BELLFLOWER BLVD,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2446,http://www.longbeach.gov/police/press-releases/duidrivers-license-checkpoint-planned-this-weekend7/,Media Bulletins,200,DUI/DRIVER'S LICENSE CHECKPOINT PLANNED THIS WEEKEND,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2447,http://www.longbeach.gov/police/press-releases/arrest-made-and-charges-filed-in-july-4th-murder/,Media Bulletins,200,ARREST MADE AND CHARGES FILED IN JULY 4TH MURDER,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2448,http://www.longbeach.gov/police/press-releases/dui-saturation-patrol-nets-five-arrests/,Media Bulletins,200,DUI SATURATION PATROL NETS FIVE ARRESTS,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2449,http://www.longbeach.gov/police/press-releases/officer-involved-shooting--no-injuries-sustained/,Media Bulletins,200,OFFICER INVOLVED SHOOTING; NO INJURIES SUSTAINED,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2450,http://www.longbeach.gov/police/press-releases/long-beach-police-inspect-37-businesses-for-alcohol-sales-compliance/,Media Bulletins,200,LONG BEACH POLICE INSPECT 37 BUSINESSES FOR ALCOHOL SALES COMPLIANCE,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2451,https://coloradosprings.gov/police-department/page/report-traffic-complaint,Calls for Service,200,Report a Traffic Complaint | City of Colorado Springs,"","[""\nReport a Traffic Complaint\n""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[] -2452,http://www.longbeach.gov/press-releases/robert-g-luna-to-be-sworn-in-as-chief-of-police-for-city-of-long-beach-on-saturday-november-22/,Media Bulletins,200,Robert G Luna to be Sworn In as Chief of Police for City of Long Beach on Saturday November 22,"","[""PRESS RELEASE""]",[],[],[],[],[] -2453,http://www.longbeach.gov/police/press-releases/murder---6300-block-of-knight-avenue/,Media Bulletins,200,MURDER - 6300 BLOCK OF KNIGHT AVENUE,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2454,http://www.longbeach.gov/police/press-releases/dui-saturation-patrol-results/,Media Bulletins,200,DUI SATURATION PATROL RESULTS,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2455,http://www.longbeach.gov/police/press-releases/the-north-patrol-division-directed-enforcement-team-cracks-down-on-criminal-street-gang/,Media Bulletins,200,THE NORTH PATROL DIVISION DIRECTED ENFORCEMENT TEAM CRACKS DOWN ON CRIMINAL STREET GANG,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2456,http://www.longbeach.gov/police/press-releases/police-asking-for-public-s-help-in-identifying-person-of-interest-in-sexual-battery/,Media Bulletins,200,POLICE ASKING FOR PUBLIC'S HELP IN IDENTIFYING PERSON OF INTEREST IN SEXUAL BATTERY,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2457,http://www.longbeach.gov/police/press-releases/students-return-to-school--motorists-urged-to-drive-carefully/,Media Bulletins,200,STUDENTS RETURN TO SCHOOL; MOTORISTS URGED TO DRIVE CAREFULLY,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2458,http://www.longbeach.gov/police/press-releases/drug-lab-discovered-at-residence--two-suspects-in-custody/,Media Bulletins,200,DRUG LAB DISCOVERED AT RESIDENCE; TWO SUSPECTS IN CUSTODY,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2459,http://www.longbeach.gov/police/press-releases/officer-involved-shooting-1700-block-of-marine-avenu-wilmington/,Media Bulletins,200,Officer Involved Shooting 1700 block of Marine Avenu Wilmington,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2460,http://www.longbeach.gov/police/press-releases/murder-investigation---4th-street-and-pacific-avenue/,Media Bulletins,200,Murder Investigation - 4th Street and Pacific Avenue,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2461,http://www.longbeach.gov/police/press-releases/trafficfatality-2-/,Media Bulletins,200,TRAFFICFATALITY(2),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2462,http://www.longbeach.gov/police/press-releases/dui-driver-s-license-checkpoint-planned-this-weekend-7-/,Media Bulletins,200,DUI-DRIVER'S LICENSE CHECKPOINT PLANNED THIS WEEKEND(7),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2463,http://www.longbeach.gov/police/press-releases/search-and-rescue-orientation-meeting/,Media Bulletins,200,SEARCH AND RESCUE ORIENTATION MEETING,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2464,http://www.longbeach.gov/police/press-releases/l-b-p-d--saturation-patrol-proves-effective/,Media Bulletins,200,L.B.P.D. SATURATION PATROL PROVES EFFECTIVE,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2465,http://www.longbeach.gov/police/press-releases/dui-drivers-license-checkpoint-planned-this-weekend/,Media Bulletins,200,DUI DRIVERS LICENSE CHECKPOINT PLANNED THIS WEEKEND,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2466,http://www.longbeach.gov/police/press-releases/robbery-suspects-arrested/,Media Bulletins,200,ROBBERY SUSPECTS ARRESTED,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2467,https://www.arlingtontx.gov/news/my_arlington_t_x/news_archive/2017_archived_news/september_2017/national_night_out_arlington_police_on_oct_3_2017,Media Bulletins,200," - Ask Arlington: Enjoy National Night Out with Arlington Police on Oct. 3, 2017 - City of Arlington -","","[""YOUR COMMUNITY NEWS AND EVENTS"", ""City of Arlington""]","[""Ask Arlington: Enjoy National Night Out with Arlington Police on Oct. 3, 2017""]",[],[],[],[] -2468,https://www.columbus.in.gov/event/columbus-police-review-board/,Poor Data Source,404,"","",,,,,, -2469,https://spdblotter.seattle.gov/2012/02/06/the-seattle-police-foundation-thanks-the-seattle-hotel-association-for-hosting-the-evening-of-hope-gala/,Media Bulletins,200,The Seattle Police Foundation thanks the Seattle Hotel Association for hosting the Evening of Hope gala - SPD Blotter,"","[""The Seattle Police Foundation thanks the Seattle Hotel Association for hosting the Evening of Hope gala""]","[""Find Posts By Topic"", ""You might also like..."", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[] -2470,https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/arrests/081622arrests.pdf,Poor Data Source,404,"","",,,,,, -2471,https://alpha.austin.gov/en/police-oversight/oral-reprimand-of-officer-ivan-figueroa/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -2472,https://www.orovalleyaz.gov/government/news/oro-valley-town-council-to-vote-on-police-chief-appointment-february-5,Media Bulletins,200,Oro Valley Town Council to vote on police chief appointment February 5 – Oro Valley | it's in our nature,"Today the Town of Oro Valley released its agenda for February 5, 2020, which includes as one of the Town Council’s items for business the appointment of Oro Valley Commander Kara M. Riley as its next police chief.","[""Oro Valley Town Council to vote on police chief appointment February 5""]",[],"[""OV 50th Anniversary Announcement"", ""Town of Oro Valley"", ""Connect with us""]",[],[],[] -2473,https://www.richmondindiana.gov/docs/current-city-police-districts-map,Geographic,200,Current City Police Districts Map,"","[""Documents, Forms, & Transactions""]","[""Current City Police Districts Map"", ""Stay Connected""]","[""""]","[""Due Date"", ""Contact"", ""City of Richmond""]",[],[] -2474,https://delcopa.gov/publicrelations/releases/2022/delcopollingplacesfinalizedformay17primary.html,Not Criminal Justice Related,200,"Delaware County Polling Places Finalized for the May 17 Primary Election - Delaware County, Pennsylvania","","[""Delaware County Polling Places Finalized for the May 17 Primary Election""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]","[""Only registered Republicans and Democrats may participate at this Primary"", ""Additional Resources: The Election Hotline, Voter Service Center and the Delco Votes! website""]",[],[] -2475,https://brookfieldil.gov/publication/42413-april-24-2013-police-pension-board/,Poor Data Source,404,"","",,,,,, -2476,https://ci.san-bernardino.ca.us/city_hall/police_department/crime_statistics/about_ucr_statistics/arson_statistics/arson_statistics-2018,Crime Statistics,200," - Arson Statistics - 2018 - City of San Bernardino -","","[""City of San Bernardino California""]","[""Arson Statistics - 2018""]",[],[],[],[] -2477,https://www.roseville.ca.us/news/archive_news/2017_archive_news/police_digest__december_15__2017,Poor Data Source,404,"","",,,,,, -2478,http://www.greenvillenc.gov/government/police/community-services-and-crime-prevention/cops-and-barbers,Contact Info & Agency Meta,200," - - Cops and Barbers | Greenville, NC - -","","[""Greenville, NC"", ""Cops and Barbers""]","[""Jump to subpage..."", ""Related Links""]",[],[],[],[] -2479,https://delcopa.gov/publicrelations/releases/2020/courtsgovcenter.html,Not Criminal Justice Related,200,Government Center Closed to the public on March 16/Limited Court Operations March 16 and 17,"","[""Government Center Closed to the public on March 16/Limited Court Operations March 16 and 17""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -2480,https://coloradosprings.gov/police-department/article/news/homicide-investigation-6600-block-bugle-dr,Media Bulletins,200,Homicide Investigation: 6600 Block of Bugle Dr. | City of Colorado Springs,"","[""\nHomicide Investigation: 6600 Block of Bugle Dr.\n""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[] -2481,https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0725/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -2482,https://alpha.austin.gov/police-oversight/formal-complaint-de-escalation-of-potential-force-6/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -2483,https://delcopa.gov/ems/pdfdocs/licensureprogramco/alsambulanceinspchklst.xls,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -2484,https://www.woodvillageor.gov/departments/public-safety/police-law-enforcement/,Poor Data Source,404,"","",,,,,, -2485,https://www.madera.gov/home/departments/police/,Annual & Monthly Reports,200,Police Department - City of Madera,The Heart of California,"[""City of MaderaPolice Department""]","[""Department Overview"", ""Contact Information""]","[""Share this:""]",[],[],[] -2486,https://brookfieldil.gov/publication/11613-november-6-2013-fire-and-police-commission/,Poor Data Source,404,"","",,,,,, -2487,https://beaverpa.us/a-message-from-the-police-department-2/,Poor Data Source,404,"","",,,,,, -2488,https://delcopa.gov/ojs/ojsforms/15noticeofproposedrelocation.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -2489,http://lafayettepolice.us/2359/brown-street,Not Criminal Justice Related,200,"Brown Street | Lafayette, IN - Official Website","","[""\r\n\r\nBrown Street\t\t""]","[""Brown Street Sewer""]","[""Loading"", ""Contact Us"", ""FAQs"", ""Site Links""]",[],[],[] -2490,https://www.bedminster.us/police_fire_rescue/pottersville_volunteer_fire_co_,Not Criminal Justice Related,200," - Pottersville Volunteer Fire Co. - Township of Bedminster -","","[""Bedminster Township""]","[""Pottersville Volunteer Fire Co.""]","[""Bedminster Township""]",[],[],[] -2491,https://brookfieldil.gov/publication/043009-april-30-2009-police-pension-board/,Poor Data Source,404,"","",,,,,, -2492,https://www.goldenbeach.us/police-department/k-9-unit/,Contact Info & Agency Meta,200,k-9 Unit – Golden Beach: A Town Unlike Any Other,"","[""\r\n\t\t\t\t\t\t\tk-9 Unit\t\t\t\t\t\t""]",[],"[""Quick Links"", ""Documents"", ""About Golden Beach"", ""Phone Numbers"", ""Town Hall ""]","[""\nAnnual Report 2022\n"", ""\nAnnual Report 2021\n"", ""\nAnnual Report 2020\n"", ""\nAnnual report for 2019\n""]",[],[] -2493,https://www.wakeforestnc.gov/communications/town-news/police-news,Media Bulletins,200,"Police News | Town of Wake Forest, NC","","[""Police News""]","[""flag_raising_ceremony.jpg"", ""Search form"", ""You are here"", ""Pages""]","[""Crash causing delays along northbound Capital Boulevard/US 1"", ""WFPD & Torchy\u2019s Tacos partnering to support Special Olympics February 7"", ""Crash closes lanes along southbound Capital Boulevard/US 1"", ""Crash closes lanes along Dr. Calvin Jones Highway/NC 98 Bypass"", ""Raleigh man arrested for solicitation for murder"", ""Police Department warns residents about unapproved fundraising for USDSA"", ""Crash closes northbound Capital Boulevard/US 1"", ""Water main break along North Main Street/US 1A"", ""Traffic Alert \u2013 South Main Street/US 1A"", ""Raleigh Water closes portion of Elm Avenue""]",[],[],[] -2494,https://southbethany.delaware.gov/police-department/instruction-page-for-ticket-or-summons/,Poor Data Source,200,Instruction Page for Ticket or Summons - South Bethany,"","[""South Bethany""]","[""Instruction Page for Ticket or Summons""]","[""Menu""]",[],[],[] -2495,https://norfolkne.gov/assets/site/documentcentral/police/2021-daily-reports/summary/102521summary1.pdf,Crime Statistics,200,"","",[],[],[],[],[],[] -2496,https://www.roundrocktexas.gov/city-departments/police/divisions/,Contact Info & Agency Meta,200,Divisions - City of Round Rock,"","[""Divisions""]",[],"[""Community Affairs"", ""Office of the Chief"", ""Criminal Investigations Division"", ""Patrol Division"", ""Special Operations Division"", ""Training Division"", ""Support Services"", ""Round Rock Police Department""]","[""Site Search"", ""Follow Us""]",[],[] -2497,https://delcopa.gov/planning/pdf/agendas/2022/agenda202201.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -2498,https://www.ci.northville.mi.us/services/police_department/police_news/joashua_clines_joins_police_dept_,Media Bulletins,200," - Joashua Clines joins Police Dept. - City of Northville, MI -",Officer Clines has a degree from Auburn University in his home state of Alabama but his true calling is serving as a police officer.,"[""Joashua Clines joins Police Dept.""]",[],[],[],[],[] -2499,https://southamptontownnypolice.gov/faq.aspx?qid=102,Not Criminal Justice Related,200,"FAQs • What land can be preserved through the TDR program, a","",[],"[""\n\u25bc\r\nTransfer of Development Rights\t\t""]","[""Loading"", ""Site Tools"", ""Categories"", ""Live Edit"", ""Contact Us"", ""Site Links""]",[],[],[] -2500,https://www.ci.auburn.in.us/wp-content/uploads/2017/11/auburnpolicecar-1000x650.jpg,Poor Data Source,404,"","",,,,,, -2501,https://delcopa.gov/controller/pdf/retirement/2021/210310minutes.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -2502,https://www.hayward-ca.gov/discover/news/jun22/police-blotter-may-22-28-2022,Crime Statistics,200,"Police Blotter: May 22-28, 2022 | City of Hayward - Official website","STATISTICAL HIGHLIGHTSMay 22-28, 2022 Weekly Arrests (Includes cite/released):42 Homicide 0Weekly Calls for Service: 1,981 Assault—Great Bodily Injury 7Weekly Reports Taken:174 Burglary— Nonresidential 10Weekly Complaints(against HPD):1 Burglary—Residential 0Weekly Calls Received:5,537 Theft 19This data is subject to change and based on crimes that were reported to have","[""Police Blotter: May 22-28, 2022""]","[""Look Deeper"", ""Welcome home"", ""Where opportunity lives"", ""Find what you need. Fast."", ""Working for You"", ""Your Hayward Environment"", ""You are here. So is everything else."", ""Search form""]",[],"[""STATISTICAL HIGHLIGHTS"", ""May 22-28, 2022"", ""\u00a0"", ""\u00a0"", ""\u00a0 \u00a0\u00a0"", ""Significant Incidents"", ""Re-CAP: Hayward\u2019s Updated Climate Action Plan (CAP)"", ""Try induction cooking for free through Ava Community Energy\u2019s Induction Cooktop Lending Program!"", ""The City of Hayward\u2019s Fight Against Food Waste"", ""Decoding Plastic Recycling In California"", ""Keep Hayward Clean and Green with Adopt-A-Block!"", ""City Hall and Nonessential Services Closures: Monday, Feb 12 and Monday, Feb. 19"", ""City Hall and Nonessential Services Closure: Monday, Jan. 15, 2024"", ""Library Closure January 15, 2024"", ""Library Closure: December 23 2023 - January 1 2024"", ""Library closure: November 23 - November 26, 2023."", ""YOU ARE HERE.SO IS EVERYTHING ELSE."", ""Related News"", ""Police Blotter: December 3-9, 2023"", ""Police Blotter - November 26-December 2, 2023"", ""Police Blotter - November 19-25, 2023"", ""Report\n Problems"", ""Ask\n Questions"", ""Make a\n Suggestion"", ""Translate"", ""Search""]",[],[] -2503,https://www.mass.gov/doc/camacho-michael-v-mass-environmental-police-1815/download,Court Cases,200,"","",[],[],[],[],[],[] -2504,https://camptonhills.illinois.gov/police-pension-fund-board/,Contact Info & Agency Meta,200,Police Pension Fund Board – Village of Campton Hills,"",[],"[""Police Pension Fund Board"", ""Purpose"", ""Board Members"", ""Daniel Hoffman"", ""Thomas L. Clark"", ""Randy Johnson"", ""Tom Blincoe"", ""William Mair \n"", ""\u00a9 2024 All Rights Reserved Village of Campton Hills.""]",[],"[""Police Pension Fund Meeting"", ""Recognition"", ""Follow Us"", ""Important Links"", ""Contact Us""]",[],[] -2505,https://beaumonttexas.gov/beaumont-police-arrest-a-man-and-woman-after-committing-an-aggravated-robbery-at-6155-eastex/,Poor Data Source,404,"","",,,,,, -2506,https://ci.san-bernardino.ca.us/city_hall/police_department/sb_978/new_patrol_rifle_powerpoint_complete,Policies & Contracts,200,"","",[],[],[],[],[],[] -2507,https://alpha.austin.gov/en/police-oversight/formal-complaint-impartial-attitude-and-courtesy-47/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -2508,https://coloradosprings.gov/police-department/page/professional-standards-division,Poor Data Source,403,"","",,,,,, -2509,https://delcopa.gov/courts/admininstration/lap.html,Contact Info & Agency Meta,200,Language Access Plan - Delaware County Court of Common Pleas,"","[""Language Access Plan""]",[],"[""\u00a0"", ""Court Administration Navigation"", ""Contact Us"", ""Courts Quick Links"", ""Government Center Quick Links"", ""About Delaware County""]",[],[],[] -2510,https://www.foxcrossingwi.gov/event/police-fire-commission/,Poor Data Source,200,Police & Fire Commission - Fox Crossing Fox Crossing,"","["""", """", ""Police & Fire Commission""]","[""mtg05-19-2015pol&fire""]",[],[],[],[] -2511,https://southamptontownnypolice.gov/1387/final-supplemental-geis,Not Criminal Justice Related,200,"FINAL Supplemental GEIS | Southampton, NY - Official Website","","[""\r\n\r\nFINAL Supplemental GEIS\t\t""]",[],"[""Loading"", ""Site Tools"", ""Contact Us"", ""Site Links""]",[],[],[] -2512,http://www.lafayettepolice.us/438/online-crime-reporting,Contact Info & Agency Meta,200,"Online Crime Reporting | Lafayette, IN - Official Website",Our goal is to provide you with an easy to use tool for reporting crime in the City of Lafayette.,"[""\r\n\r\nOnline Crime Reporting\t\t""]","["""", ""Instructions & Information About Your Online Report""]","[""Loading"", ""Reports Not Accepted With This Form"", ""Reporting Categories"", ""Contact Us"", ""FAQs"", ""Site Links""]",[],[],[] -2513,https://delcopa.gov/publicrelations/releases/2019/newvotingsystem.html,Not Criminal Justice Related,200,"Delaware County Council Approves purchase of New Voting System - Delaware County, Pennsylvania","","[""Delaware County Council Approves purchase of New Voting System""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]","[""Council unanimously votes to purchase Hart Verity 2.3.4 Voting System""]",[],[] -2514,https://delcopa.gov/purchasing/bidsprops/cadserver_e-102121.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -2515,https://scrantonpa.gov/wpdm-package/police-union-collective-bargaining-agreement-exp-2021/,Poor Data Source,404,"","",,,,,, -2516,http://www.longbeach.gov/police/press-releases/shooting-200-block-of-artesia/,Media Bulletins,200,Shooting 200 block of Artesia,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2517,https://www.danversma.gov/documents/records-and-billings-clerk-police-department/,Poor Data Source,404,"","",,,,,, -2518,https://beaumonttexas.gov/beaumont-police-detectives-charge-2-in-august-25-2021-homicide-aggravated-robbery/,Poor Data Source,404,"","",,,,,, -2519,https://health.wyo.gov/publichealth/immunization/influenza-flu/stethoscope-3/,Not Criminal Justice Related,404,"","",,,,,, -2520,https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0348/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -2521,http://lafayettepolice.us/1086/i-want-to,Not Criminal Justice Related,200,"I Want To... | Lafayette, IN - Official Website","","[""\r\n\r\nI Want To...\t\t""]",[],"[""Loading"", ""Contact Us"", ""FAQs"", ""Site Links""]","[""\r\n\t\t\t\t\t...book a birthday party\r\n\t\t\t\t"", ""\r\n\t\t\t\t\t...find out more about camps and classes\r\n\t\t\t\t"", ""\r\n\t\t\t\t\t...schedule a tour\r\n\t\t\t\t"", ""\r\n\t\t\t\t\t...find out more about school visits\r\n\t\t\t\t"", ""\r\n\t\t\t\t\t...become a member\r\n\t\t\t\t"", ""\r\n\t\t\t\t\t...volunteer at the zoo\r\n\t\t\t\t"", ""\r\n\t\t\t\t\t...find out about special events\r\n\t\t\t\t"", ""\r\n\t\t\t\t\t...reserve a picnic shelter\r\n\t\t\t\t"", ""\r\n\t\t\t\t\t...get information about the water park\r\n\t\t\t\t""]",[],[] -2522,https://police.bixbyok.gov/224/submit-a-tip,Contact Info & Agency Meta,200,"Submit a Tip | Bixby Police Department, OK",If you observe an emergency or crime in progress please call 911 or contact Bixby Communications Non-Emergency number 918-366-8294.,"[""\r\n\r\nSubmit a Tip\t\t""]","[""Suspicious Activities & Tips"", ""Or""]","[""Loading"", ""Metro Crime Stoppers App"", ""National Center for Missing & Exploited Children (NCMEC)"", ""Federal Bureau of Investigations"", ""Oklahoma Information Fusion Center (OIFC)"", ""Helpful Links"", ""FAQs"", ""Site Links""]",[],[],[] -2523,https://www.deerpark-oh.gov/departments/police-department/police-department-contacts/,Contact Info & Agency Meta,200,Departments - Police Department - Police Department Contacts | City of Deer Park,"","[""Police Department Contacts""]",[],"[""E-Mail List""]","[""Police Officers work odd hours and have other obligations such as court appearances\u00a0or training that can make contacting them difficult.""]",[],[] -2524,https://delcopa.gov/planning/pdf/mapping/eddystone.pdf,Poor Data Source,200,"404 - Delaware County, Pennsylvania","","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -2525,https://www.coppelltx.gov/1054/special-interest-funding,Poor Data Source,404,"","",,,,,, -2526,https://norfolkne.gov/assets/site/documentcentral/police/2022-daily-reports/summary/043022summary.pdf,Poor Data Source,404,"","",,,,,, -2527,https://delcopa.gov/council/2018minutes/080818minutes.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -2528,https://delcopa.gov/planning/pdf/agendas/2019/agenda201910.pdf,Poor Data Source,200,"404 - Delaware County, Pennsylvania","","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -2529,https://delcopa.gov/courts/index.html,Resources,200,Delaware County Court of Common Pleas,"",[],"[""Delaware County court of common pleas:""]","[""Juror eResponse"", ""E-Filing"", ""Magisterial District Judges"", ""Domestic Relations"", ""Second Chance Court"", ""Pennsylvania\u2019s Unified Judicial System"", ""Employment Opportunities"", ""Notice to the Public"", ""Updates:"", ""Emergency Orders:"", ""Contact Us"", ""Court Quick Links: \n"", ""Quick Links"", ""About Delaware County""]",[],[],[] -2530,https://www.mass.gov/doc/2022-police-sergeant-3yp-442-exam-poster/download,Training & Hiring Info,200,"","",[],[],[],[],[],[] -2531,https://www.southamptontownnypolice.gov/faq.aspx?qid=126,Not Criminal Justice Related,200,FAQs • Does the Town of Southampton have a community advocac,"",[],"[""\n\u25bc\r\nCommunity Services\t\t""]","[""Loading"", ""Site Tools"", ""Categories"", ""Live Edit"", ""Contact Us"", ""Site Links""]",[],[],[] -2532,https://delcopa.gov/publicrelations/releases/2018/18spottedlanternfly.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -2533,https://www.southamptontownnypolice.gov/faq.aspx?qid=120,Not Criminal Justice Related,200,FAQs • What is my assessment based on?,"",[],"[""\n\u25bc\r\nAssessor\u2019s Office\t\t""]","[""Loading"", ""Site Tools"", ""Categories"", ""Live Edit"", ""Contact Us"", ""Site Links""]",[],[],[] -2534,https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0442/,Complaints & Misconduct,200,Maintenance Notice,"",[],[],[],[],[],[] -2535,https://mukilteowa.gov/news/mukilteo-police-department-public-safety-community-survey/,Media Bulletins,200," - City of Mukilteo - | Mukilteo Police Department Public Safety Community Survey - City of Mukilteo ","","[""\n\t\t Mukilteo Police Department Public Safety Community Survey\t\t ""]","[""\n\t\t\t\t\t\tSign up for notifications\n\t\t\t\t\t""]","[""""]",[],[],[] -2536,http://www.lafayettepolice.us/771/tactical-rescue-team,Contact Info & Agency Meta,200,"Tactical Rescue Team | Lafayette, IN - Official Website","The Tactical Rescue Team is highly trained in rope rescue, confined space rescue, trench rescue and structural collapse.","[""\r\n\r\nTactical Rescue Team\t\t""]",[],"[""Loading"", ""Contact Us"", ""FAQs"", ""Site Links""]",[],[],[] -2537,https://hutchinsonmn.gov/departmentsfacilities/police-services/annual-report/,Annual & Monthly Reports,200,"","",[],[],[],[],[],[] -2538,https://alpha.austin.gov/police-oversight/formal-complaint-purpose-and-scope-impartial-attitude-and-courtesy-secure-and-identify-witnesses-and-other-policy-violations/,Complaints & Misconduct,200,Maintenance Notice,"",[],[],[],[],[],[] -2539,https://www.southamptontownnypolice.gov/1370/2020-budgets,List of Data Sources,200,"2020 Budgets | Southampton, NY - Official Website","","[""\r\n\r\n2020 Budgets \t\t""]",[],"[""Loading"", ""Site Tools"", ""2020 Budget"", ""Contact Us"", ""Site Links""]","[""\r\n\t\t\t\t\t2020 Adopted Budget - Capital\r\n\t\t\t\t"", ""\r\n\t\t\t\t\t2020 Adopted Budget - Operating\r\n\t\t\t\t"", ""\r\n\t\t\t\t\t2020 Tentative Budget - Operating\r\n\t\t\t\t"", ""\r\n\t\t\t\t\t2020 Tentative Budget - Capital\r\n\t\t\t\t""]",[],[] -2540,https://www.coppelltx.gov/1083/sunshine-room,Not Criminal Justice Related,200,"Sunshine Room | Coppell, TX","","[""\r\n\r\nSunshine Room\t\t""]","[""Hours"", ""Pricing"", ""Policies""]","[""Loading""]",[],[],[] -2541,https://www.jacksontn.gov/government/departments/police/command_staff/captain_jeff_shepard,Personnel Records,200," - Captain Jeff Shepard - City of Jackson, TN -",Welcome to the official website of City of Jackson in Tennessee.,"[""City of Jackson TN"", ""City of Jackson TN""]","[""Captain Jeff Shepard""]",[],[],[],[] -2542,https://www.antioch.il.gov/wpfb-file/12-06-14-police-and-fire-agenda-pdf-3/,Poor Data Source,200,"12-06-14 Police And Fire Agenda - Antioch, IL",9050 12 06 14 police and fire agenda pdf commissions commission agendas 2014 1417710895 78bd0244bc4e662012baf7d5e1f731d0 219x300 _g9ufrmyiaujy thumb jpg 04 11 34 55 0 pdf application trustees dennis b crosby jay jozwiak mary c dominiak scott a pierce jerry t johnson ted p poulos lawrence m hanson mayor lori k folbrick village clerk notice of,"[""12-06-14 Police And Fire Agenda""]",[],[],[],[],[] -2543,https://delcopa.gov/treasurer/propertyassessment.html,Not Criminal Justice Related,200,"Property Assessment - Delaware County, Pennsylvania","","[""Property Assessment""]",[],"[""Treasurer Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -2544,https://delcopa.gov/ojs/ojsforms/rulesconfidentiality.pdf,Records Request Info,200,"","",[],[],[],[],[],[] -2545,https://virginiabeach.gov/whats-up/whats-new/commonwealth-v-jasper-miles-wynn-60-years-to-serve-for-shooting-at-police-following-7-eleven-robbery,Not Criminal Justice Related,404,"","",,,,,, -2546,http://www.ryepolice.us/chief/attachment/chiefphoto,Poor Data Source,200,Rye Police Department Chief Kevin Walsh - Rye Police Department,"","[""Chief Kevin Walsh""]","[""Chief Kevin Walsh""]","[""Navigation"", ""Follow Us"", ""Facebook"", ""Email Updates"", ""Storm Preparedness Guide""]",[],[],[] -2547,https://police.greenvillesc.gov/faq.aspx?qid=213,Not Criminal Justice Related,200,FAQs • Can other people operate under my license?,"",[],"[""\n\u25bc\r\nBusiness Licenses - General\t\t""]","[""Loading"", ""Categories"", ""Live Edit""]",[],[],[] -2548,https://www.stpaul.gov/news/mayor-melvin-carter-statement-saint-paul-police-officer-involved-shooting-midway-neighborhood,Media Bulletins,200,Mayor Melvin Carter Statement on Saint Paul Police Officer-Involved Shooting in Midway Neighborhood | Saint Paul Minnesota,"FOR IMMEDIATE RELEASE September 15, 2019","[""\nMayor Melvin Carter Statement on Saint Paul Police Officer-Involved Shooting in Midway Neighborhood\n""]","[""Main Navigation"", ""Popular Topics"", ""Footer""]","[""\n You are using an unsupported browser. Please use Microsoft Edge.\n "", ""\n Contact The City\n "", ""Email Us"", ""Call 651-266-8989""]","[""Business Spotlight"", ""Featured"", ""Business Spotlight"", ""Featured""]",[],[] -2549,http://www.lafayettepolice.us/753/process-overview,Not Criminal Justice Related,200,"Process Overview | Lafayette, IN - Official Website",General building plan review is initiated through the City's Engineering Department.,"[""\r\n\r\nProcess Overview\t\t""]","[""Additional Information""]","[""Loading"", ""Quick Links"", ""Contact Us"", ""FAQs"", ""Site Links""]",[],[],[] -2550,https://alpha.austin.gov/en/police-oversight/formal-complaint-responsibility-to-know-and-comply-and-ot/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -2551,https://www.foxcrossingwi.gov/departments/police-department/resources/tmpd-burg-prev-pers-safe-home-svc-safe/,Poor Data Source,200,Home Safety - Fox Crossing Fox Crossing,"","["""", """", ""Home Safety""]",[],[],[],[],[] -2552,https://www.memphistn.gov/government/city-court-clerk/ticket-prices/ridgeway-police-station/,Poor Data Source,404,"","",,,,,, -2553,https://www.coppelltx.gov/417/investigations-division,Contact Info & Agency Meta,200,"Investigations and Administration Division | Coppell, TX",The Investigations Division is comprised of nine sworn personnel and one civilian. These officers staff the Criminal Investigations Unit and the Proactive Criminal Enforcement (PACE) Unit. Criminal Investigations personnel also handle the registration of convicted sex offenders and provide coordination for the local Crime Stoppers program.,"[""\r\n\r\nInvestigations and Administration Division\t\t""]","[""Professional Standards"", ""Training"", ""North Texas Emergency Communications Center"", ""Responsibilities""]","[""Loading"", ""Detective Duties"", ""Contact Us""]","[""Police Department""]",[],[] -2554,https://delcopa.gov/ich/resources/covid19/businesspresentation.html,Poor Data Source,200,"404 - Delaware County, Pennsylvania","","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -2555,https://delcopa.gov/planning/pubs/osrgp/vol-iii_chapter3glenprovidencecountypark.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -2556,https://spdblotter.seattle.gov/2017/06/07/police-seize-two-guns-arrest-wanted-felon/,Media Bulletins,200,"Police Seize Two Guns, Arrest Wanted Felon - SPD Blotter","","[""Police Seize Two Guns, Arrest Wanted Felon""]","[""Find Posts By Topic"", ""You might also like..."", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[] -2557,https://chandlerazpd.gov/2019/12/chandler-police-investigate-animal-cruelty/,Media Bulletins,200,Chandler Police Investigate Animal Cruelty – Chandler Police Department,"","[""Chandler Police Investigate Animal Cruelty""]",[],"[""Quick Links"", ""News Archives"", ""\n\n\n\n"", ""\n\n\n\n"", ""\n\n\n\n"", ""\n\n\n\n""]","[""\n\n\t\tDecember 17, 2019\t\n"", "" Contact"", "" About the Department"", "" Latest News"", ""\n Courage, Pride, Dedication\n \n \u00a9 2024 Chandler Police Department \n""]",[],[] -2558,https://www.hayward-ca.gov/discover/news/apr21/police-blotter-april-18-24-2021,Annual & Monthly Reports,200,"Police Blotter: April 18-24, 2021 | City of Hayward - Official website","STATISTICAL HIGHLIGHTSapril 18-24, 2021 Weekly Arrests (Includes cite/released):23 Homicide 0Weekly Calls for Service: 1,864 Assault—Great Bodily Injury 2Weekly Reports Taken:183 Burglary— Nonresidential 3Weekly Complaints(against HPD):0 Burglary—Residential 4Weekly Calls Received:5,064 Theft 23This data is subject to change and based on crimes that were reported to have","[""Police Blotter: April 18-24, 2021""]","[""Look Deeper"", ""Welcome home"", ""Where opportunity lives"", ""Find what you need. Fast."", ""Working for You"", ""Your Hayward Environment"", ""You are here. So is everything else."", ""Search form""]",[],"[""STATISTICAL HIGHLIGHTS"", ""april 18-24, 2021"", ""\u00a0"", ""\u00a0"", ""\u00a0 \u00a0\u00a0"", ""Significant Incidents"", ""Re-CAP: Hayward\u2019s Updated Climate Action Plan (CAP)"", ""Try induction cooking for free through Ava Community Energy\u2019s Induction Cooktop Lending Program!"", ""The City of Hayward\u2019s Fight Against Food Waste"", ""Decoding Plastic Recycling In California"", ""Keep Hayward Clean and Green with Adopt-A-Block!"", ""City Hall and Nonessential Services Closures: Monday, Feb 12 and Monday, Feb. 19"", ""City Hall and Nonessential Services Closure: Monday, Jan. 15, 2024"", ""Library Closure January 15, 2024"", ""Library Closure: December 23 2023 - January 1 2024"", ""Library closure: November 23 - November 26, 2023."", ""YOU ARE HERE.SO IS EVERYTHING ELSE."", ""Related News"", ""Police Blotter: December 3-9, 2023"", ""Police Blotter - November 26-December 2, 2023"", ""Police Blotter - November 19-25, 2023"", ""Report\n Problems"", ""Ask\n Questions"", ""Make a\n Suggestion"", ""Translate"", ""Search""]",[],[] -2559,https://spdblotter.seattle.gov/2022/07/18/police-arrest-security-guard-in-capitol-hill-after-he-fights-stabs-trespasser/,Media Bulletins,200,"Police Arrest Security Guard in Capitol Hill After He Fights, Stabs Trespasser - SPD Blotter","","[""Police Arrest Security Guard in Capitol Hill After He Fights, Stabs Trespasser""]","[""Find Posts By Topic"", ""You might also like..."", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[] -2560,https://www.hayward-ca.gov/police-department/crime-prevention/hate-crimes,Contact Info & Agency Meta,200,Protecting yourself and others from hate crimes | City of Hayward - Official website,"Hate crime or hate incident? It is important to know the difference between a hate crime and a hate incident. A hate incident is an action or behavior motivated by hate but legally protected by the First Amendment right to freedom of expression. Examples of hate incidents include: name-calling, insults, distributing hate material in public places, and displaying hate material",[],"[""Protecting yourself and others from hate crimes"", ""You are here. So is everything else."", ""Search form""]",[],"[""How to spot a hate crime:"", ""If you are a hate crime victim, you should:\u00a0"", ""What you and your community can do:\u00a0"", ""Where to find help:\u00a0"", ""Receive crime bulletins and alerts"", ""Report\n Problems"", ""Ask\n Questions"", ""Make a\n Suggestion"", ""Translate"", ""Search""]",[],[] -2561,https://alpha.austin.gov/es/police-oversight/notice-of-complaint-related-to-2022-0487/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -2562,http://police.portlandmaine.gov/596/winter-operations,Not Criminal Justice Related,200,"Winter Operations | Portland, ME - Official Website","During the winter months, the Public Works Dispatch office is open 24 hours a day and crews are assigned to shifts to respond 24/7 to weather events. ","[""Winter Operations""]",[],[],[],[],[] -2563,http://www.ryepolice.us/logs/police-logs-12-15-21-12-21-21,Daily Activity Logs,200,Rye Police Department Police Logs 12/15/21-12/21/21 - Rye Police Department,"","[""Police Logs 12/15/21-12/21/21""]","[""Police Logs 12/15/21-12/21/21""]","[""Navigation"", ""Follow Us"", ""Facebook"", ""Email Updates"", ""Storm Preparedness Guide""]",[],[],[] -2564,https://roxburynj.us/721/how-do-i-obtain-a-police-report,Records Request Info,200,"How do I obtain a police report | Township of Roxbury, NJ - Official Website","","[""\r\n\r\nHow do I obtain a police report\t\t""]",[],"[""Loading""]",[],[],[] -2565,https://www.milpitas.gov/milpitas/departments/police/department-training/,Poor Data Source,404,"","",,,,,, -2566,https://detroitmi.gov/departments/police-department/dpd-surveillance-technology-reports-documents,List of Data Sources,200,DPD Surveillance Technology Reports & Documents | City of Detroit,"This technology aims to detect outdoor audible gunfire within the coverage area using acoustic sensors capable of pinpointing the accurate location of a gunfire event. This technology is used to address crime in real-time and support criminal investigations. The contents of the Surveillance Technology Reports shall reflect the full and accurate proposed use of surveillance technology submitted. The Surveillance Technology Report shall be a publicly released report, written by the requesting agency or, in the case of the Police Department, in conjunction with the Board of Police Commissioners. Below are Technology Specification Reports, relevant department and City Council documents, and other supplemental materials pertaining to the use of Surveillance Technology. Community Input Over Government Surveillance Ordinance CIOGS Ordinance Surveillance Technology Specification Reports Gunshot Detection Spec Report Gunshot Detection Spec Report Update 12/15/22 Proper use of the Gunshot Detection System System Policy Manual Board of Police Commissioners' Letter of Support BOPC Shotspotter Letter ","[""\nDPD Surveillance Technology Reports & Documents\n""]","[""Top Links"", ""Site Menu"", ""Documents""]",[],[],"[""\u00a0"", ""Community Input Over Government Surveillance Ordinance"", ""Surveillance Technology Specification Reports"", ""Proper use of the Gunshot Detection System"", ""Board of Police Commissioners' Letter of Support"", ""Gunshot Detection Spec Report Update 12/15/22"", ""BOPC Shotspotter Letter of Support"", ""Gunshot Detection System Policy"", ""Surveillance Technology Specification Reports"", ""Community Input Over Governmental Surveillance Ordinance""]",[] -2567,https://www.sandiego.gov/police/services/child-abuse,Resources,200,Child Abuse | City of San Diego Official Website,"","[""City of San Diego Official Website"", ""Child Abuse""]","[""Main navigation"", ""Leisure"", ""Resident Resources"", ""Doing Business"", ""Library"", ""Public Safety"", ""City Hall"", ""Accessibility Tools"", ""Report Child Abuse or Welfare Concerns for a Child"", ""Types of Child Abuse"", ""Signs of Child Abuse"", ""Services"", ""Footer""]","[""Physical Abuse"", ""Sexual Abuse"", ""Emotional Abuse"", ""Neglect""]","[""Parks"", ""Outdoors"", ""Neighborhoods"", ""Recreational Activities"", ""Street Maintenance"", ""Plan"", ""Fix"", ""Build"", ""Programs & Events"", ""Services"", ""Kids & Teens"", ""eCollection"", ""Police"", ""Fire-Rescue"", ""Lifeguards"", ""City Officials"", ""City Government""]",[],[] -2568,https://www.southbendin.gov/transparency-and-performance/police-transparency-hub/sbpd-compliments-and-complaints-data/,Complaints & Misconduct,200,"SBPD Compliments, Complaints & Investigations Data - South Bend, Indiana","","[""SBPD Compliments, Complaints & Investigations Data""]","[""INTERACTIONS, COMPLAINTS, AND INVESTIGATIONS DASHBOARD"", ""COMMENDATIONS DATA"", ""MAPS"", ""FEATURED UPDATES""]","[""PAGE NAVIGATION"", ""PAGE DESCRIPTION"", ""EXTERNAL LINKS"", ""ACCESS OUR POLICE INTERACTIONS DATASETS BELOW!"", ""COMPLAINTS INVESTIGATION PROCESS"", ""WANT TO DOWNLOAD THE POLICE COMMENDATIONS DATASET?"", ""USE OF FORCE DATA STORY"", ""USE OF FORCE INCIDENTS"", ""WANT TO DOWNLOAD THIS DATASET?"", ""MORE"", ""HAVE FEEDBACK FOR THE TRANSPARENCY HUB?"", ""How was your experience?"", ""Mobile Navigation Menu"", ""WELCOME TO THE CITY OF SOUTH BEND\u2019S NEW WEBSITE"", ""311 SERVICE CENTER"", ""CONNECT WITH ELECTED OFFICIALS"", ""PAY BILLS ONLINE"", ""TRASH INFORMATION"", ""VENUES PARKS & ARTS"", ""PROVIDE FEEDBACK"", ""YOU\u2019RE READY!""]","[""\n\n\t\t\tCommend an Officer \t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\n"", ""\n\n\t\t\tSubmit a Complaint \t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\n"", ""\n\n\t\t\tCommunity Complaints Dataset\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\n"", ""\n\n\t\t\tAdministrative Complaints Dataset \t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\n"", ""\n\n\t\t\tUse of Force Dataset \t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\n"", ""\n\n\t\t\tOfficer Commendations Data\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\n"", ""\n\n\t\t\tHistoric Use of Force Data \t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\n"", ""\n\n\t\t\tUse of Force Incidents Data \t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\n"", ""Guided Tour of South Bend\u2019s Updated Police Dashboards"", ""Board of Public Safety to Hold Next Community Action Group Meeting"", ""Data\u00a0+ Context: Police Recruiting"", ""CONNECT"", ""My Government"", ""311 Service Portal""]","[""Take Action"", ""Service""]",[] -2569,https://barnegatpolice.us/download/codis-dna-refusal-form/,Not Criminal Justice Related,200,CODIS DNA Refusal Form - Barnegat Township Police Department,"","[""CODIS DNA Refusal Form"", ""CODIS DNA Refusal Form""]","[""CODIS DNA Refusal Form""]","[""\n\t\t\t\t\t\tAbout the Author: \t\t\t\t\t\tBTPD ""]","[""Share This Story, Choose Your Platform!"", ""Resources"", ""Directions"", ""Quick Links""]",[],[] -2570,https://www.antioch.il.gov/wpfb-file/15th-annual-cop-on-a-rooftop-pdf-5/,Poor Data Source,200,"15th Annual Cop On A Rooftop - Antioch, IL",12394 15th annual cop on a rooftop pdf event documents 2017 1625759862 c7a316267c0d0b6566d1247ef084b811 6856f29d7d85b040bd885ac821c6b27744cff50498d6594f14313bd982958634 232x300 _xzk2g0n3rtby thumb jpg 05 17 08 41 37 0 66 249 64 156 2021 06 21 11 40 20 pdf application num_pages pagefailed_1 pagefailed_2 pagefailed_3 pagefailed_4 pagefailed_5 pagefailed_6 pagefailed_7 pagefailed_8 pagefailed_9 pagefailed_10 pagefailed_11 pagefailed_12 pagefailed_13 pagefailed_14 pagefailed_15 pagefailed_16 pagefailed_17 pagefailed_18,"[""15th Annual Cop On A Rooftop""]",[],[],[],[],[] -2571,https://champaignil.gov/2015/05/01/champaign-police-arrest-armed-robbery-suspect/,Media Bulletins,200,Champaign Police Arrest Armed Robbery Suspect - City of Champaign,"","[""Champaign Police Arrest Armed Robbery Suspect""]","[""News Releases"", ""Department News""]",[],[],[],[] -2572,https://police.greenvillesc.gov/430/historical-archives,List of Data Sources,200,"Historical Archives | Greenville, SC - Official Website",View past mayors and City Councils who have served the City of Greenville.,"[""\r\n\r\nHistorical Archives\t\t""]",[],"[""Loading""]","[""\n175th Anniversary Brochure (PDF)\n"", ""\nCity Council Archives\n"", ""\nMayor Archives\n""]",[],[] -2573,https://delcopa.gov/vote/pdf/2020/brdmeetinglegalnotice_09172020.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -2574,https://delcopa.gov/publicrelations/releases/2019/chronicdiseaseselfmanagement.html,Not Criminal Justice Related,200,"Self-Manage Your Chronic Diseases for a Better Life! - Delaware County, Pennsylvania","","[""Self-Manage Your Chronic Diseases for a Better Life!""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -2575,https://www.mass.gov/doc/2014-reading-list-for-brookline-police-sergeant-lieutenant-and-captain-promotional-examinations/download,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -2576,https://detroitmi.gov/departments/police-department/detroit-rewards-tv/about-rewards-tv,Not Criminal Justice Related,200,About Rewards TV | City of Detroit,"The purpose of Rewards TV is simply to empower our community to report criminal activity. The website and television program both focus on major crimes and provide financial incentives to community members who speak up. The show will feature the victim’s family members, detective interviews, and exclusive surveillance video that will help solve the case. Cash Reward Guidelines To be eligible for a Detroit Rewards TV cash reward, a tip must be received through the Crime Stoppers 1-800-SPEAK UP (1-800-773-2587) hotline, web, or text message. These forms of communication are available 24 hours a day 7 days a week. When a tipster calls this number they are given a secret identification number only known by the tipster and the Call Center. The tipster is advised not to share this number with anyone other than the call Center dispatcher or staff members from Crime Stoppers. Tipsters are also asked by the Call Center dispatcher if they provided this information to law enforcement. If the tipster answers this question with a yes it will be noted on the tip sheets and the tipster will be advised to call staff members from Crime Stoppers for an update. Crime Stoppers staff members will advise all tipsters concerning the status and their eligibility for a reward based on their tip information. Tipsters are only eligible for a reward if: They provide this information first to Detroit Rewards TV and not Law Enforcement. Their tip must move the case forward When a Crime Stopper staff members receive a disposition sheet from the law enforcement agency/department indicating that the tip they reviewed led to either of the above requirements then a reward may be justified unless the tipster provided this information to Law Enforcement first. If a reward is granted by members of the Detroit Rewards TV Selection Committee the tipster will call utilizing their secret number to be guided on the retrieving of their reward. ","[""\u00a0DetroitRewards.tv\u00a0"", ""\nAbout Rewards TV\n""]","[""Top Links"", ""Site Menu"", ""Cash Reward Guidelines""]",[],[],[],[] -2577,https://delcopa.gov/planning/pdf/demodata/populationchange2010-2020.pdf,Poor Data Source,200,"404 - Delaware County, Pennsylvania","","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -2578,https://council.seattle.gov/2012/02/27/seattle-police-department-is-hiring-police-officers/,Media Bulletins,200,Seattle Police Department is hiring police officers - Seattle City Council Blog,"","[""Seattle Police Department is hiring police officers""]",[],"[""HELPFUL LINKS"", ""Make your voice heard"", ""Councilmembers""]",[],[],[] -2579,https://police.greenvillesc.gov/faq.aspx?qid=131,Resources,200,FAQs • Why did I receive this charge?,"",[],"[""\n\u25bc\r\nMunicipal Court - General Legal Questions\t\t""]","[""Loading"", ""Categories"", ""Live Edit""]",[],[],[] -2580,https://ose.louisiana.gov/event/police-lieutenant-44/,Poor Data Source,200,Police Lieutenant | Louisiana Office of State Examiner,"","["""", ""Police Lieutenant""]",[],"[""Promotional Level""]",[],[],"[""Recent Posts"", ""Archives"", ""Categories"", ""Meta""]" -2581,http://police.portlandmaine.gov/278/safety-tips,Not Criminal Justice Related,200,"Safety Tips | Portland, ME - Official Website",Go over documents related to Safety Tips.,"[""Safety Tips""]",[],[],[],[],[] -2582,https://police.greenvillesc.gov/faq.aspx?qid=591,Not Criminal Justice Related,200,FAQs • What are the Greenville Water Splash Pad hours?,"",[],"[""\n\u25bc\r\nUnity Park Open\t\t""]","[""Loading"", ""Categories"", ""Live Edit""]",[],[],[] -2583,http://www.longbeach.gov/police/press-releases/traffic-fatality-shoreline-dr-and-710-fwy/,Media Bulletins,200,TRAFFIC FATALITY: SHORELINE DR AND 710 FWY,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2584,http://www.longbeach.gov/police/press-releases/dui-enforcement-operations-planned-this-weekend-2-/,Media Bulletins,200,DUI ENFORCEMENT OPERATIONS PLANNED THIS WEEKEND(2),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2585,http://beaverpolice.us/wp-sitemap-posts-ai1ec_event-1.xml,List of Data Sources,200,"","",[],[],[],[],[],[] -2586,https://coloradosprings.gov/police-department/article/news/homicide-investigation-2001-e-platte-ave,Media Bulletins,200,Homicide Investigation 2001 E Platte Ave | City of Colorado Springs,"","[""\nHomicide Investigation 2001 E Platte Ave\n""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[] -2587,http://www.longbeach.gov/police/press-releases/traffic-fatality-21-/,Media Bulletins,200,Traffic Fatality(21),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2588,https://oceancitymd.gov/oc/ocean-city-police-investigating-fatal-pedestrian-collision/,Media Bulletins,200,"Ocean City Police Investigating Fatal Pedestrian Collision – Town of Ocean City, Maryland","",[],"[""Post navigation""]","[""Related posts""]",[],[],[] -2589,https://www.sandiego.gov/department-document/police-chief-recruitment-process-update-august-22-2017,Training & Hiring Info,200,"Police Chief Recruitment Process - Update (August 22, 2017) | City of San Diego Official Website","","[""City of San Diego Official Website""]","[""Main navigation"", ""Leisure"", ""Resident Resources"", ""Doing Business"", ""Library"", ""Public Safety"", ""City Hall"", ""Accessibility Tools"", ""Police Chief Recruitment Process - Update (August 22, 2017)"", ""Footer""]",[],"[""Parks"", ""Outdoors"", ""Neighborhoods"", ""Recreational Activities"", ""Street Maintenance"", ""Plan"", ""Fix"", ""Build"", ""Programs & Events"", ""Services"", ""Kids & Teens"", ""eCollection"", ""Police"", ""Fire-Rescue"", ""Lifeguards"", ""City Officials"", ""City Government""]",[],[] -2590,https://www.arlingtontx.gov/news/my_arlington_t_x/news_archive/2016_archived_news/december_2016/volunteer_for_arlington_police_department_s_dog,Not Criminal Justice Related,200," - Volunteer for Arlington Police Department’s Dog Walker Watch Program - City of Arlington -","","[""YOUR COMMUNITY NEWS AND EVENTS"", ""City of Arlington""]","[""Volunteer for Arlington Police Department\u2019s Dog Walker Watch Program""]",[],[],[],[] -2591,https://alpha.austin.gov/en/police-oversight/notice-of-complaint-related-to-2022-0721/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -2592,http://www.longbeach.gov/police/press-releases/officer-involved-shooting3/,Media Bulletins,200,OFFICER INVOLVED SHOOTING,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2593,http://www.longbeach.gov/police/press-releases/traffic-fatality---lakewood-blvd-and-sb-405-fwy/,Media Bulletins,200,TRAFFIC FATALITY - LAKEWOOD BLVD AND SB 405 FWY,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2594,https://www.wakeforestnc.gov/police/public-information,Resources,200,"Public Information | Town of Wake Forest, NC","News MediaTown of Wake Forest Communications & Public Affairs Director Bill Crabtree serves as the news media's main point of contact for the Wake Forest Police Department. We are committed to ensuring that the public is informed with current and accurate information about the Wake Forest Police Department's activities, strategies, and policies. We believe that transparency is","[""Public Information""]","[""seminary2.jpg"", ""Search form"", ""You are here""]","[""News Media"", ""AMBER Alert"", ""Firing Range"", ""News Releases\u00a0"", ""Paying Parking Tickets"", ""Police to Citizen (P2C)"", ""Precious Metals Permits\u00a0"", ""Property Collection\u00a0"", ""Silver Alert\u00a0"", ""Urban Archery Application"", ""Application for Permit to Sell or Solicit""]",[],[],[] -2595,https://www.arlingtontx.gov/news/my_arlington_t_x/news_archive/2017_archived_news/march_2017/february_2017_arlington_police_community,Media Bulletins,200," - February 2017 Arlington Police Community Newsletter Available - City of Arlington -","","[""YOUR COMMUNITY NEWS AND EVENTS"", ""City of Arlington""]","[""February 2017 Arlington Police Community Newsletter Available""]",[],[],[],[] -2596,http://www.tampa.gov/news/tampa-police-investigate-shooting-genesee-st-76411,Media Bulletins,200,Tampa Police Investigate Shooting on Genesee St | City of Tampa,"At 3:00 PM Friday afternoon, Tampa Police responded to the report of gunshots in the 3400 block of E. Genesee St. Officers arrived to find an adult male victim, who was transported to a nearby hospital, listed in stable condition. Anyone with information is asked to contact Crimestoppers of Tampa Bay at 800.873.TIPS. It is still early in the investigation and updates will be provided as they become available.","[""Tampa Police Investigate Shooting on Genesee St\n""]","[""Information Resources"", ""\nLatest News\n"", ""Key Services"", ""Report A Problem"", ""Contact"", ""Connect With Us""]",[],[],[],[] -2597,https://cityofpowell.us/powell-police-officer-audrey-wilt-named-2022-cit-officer-of-the-year-by-delaware-morrow-mental-health-recovery-services-board/,Media Bulletins,200,"City of Powell, Ohio | Powell Police Officer Audrey Wilt Named 2022 CIT Officer of the Year by Delaware-Morrow Mental Health & Recovery Services Board",Officer Audrey Wilt named 2022 CIT Officer of the Year by the Delaware-Morrow Mental Health & Recovery Services Board.,"[""\n Powell Police Officer Audrey Wilt Named 2022 CIT Officer of the Year by Delaware-Morrow Mental Health & Recovery Services Board\n \n ""]","[""CONTACT INFO\n"", ""HELPFUL LINKS"", ""\n LET'S CONNECT\n ""]","[""you're at home in Powell""]","[""614.885.5380"", ""47 Hall Street, Powell, OH 43065"", ""Signup for our newsletter""]",[],[] -2598,https://www.sandiego.gov/police/about/chief,Personnel Records,200,About the Chief | City of San Diego Official Website,"","[""City of San Diego Official Website"", ""About the Chief""]","[""Main navigation"", ""Leisure"", ""Resident Resources"", ""Doing Business"", ""Library"", ""Public Safety"", ""City Hall"", ""Accessibility Tools"", ""David Nisleit"", ""About"", ""Footer""]",[],"[""Parks"", ""Outdoors"", ""Neighborhoods"", ""Recreational Activities"", ""Street Maintenance"", ""Plan"", ""Fix"", ""Build"", ""Programs & Events"", ""Services"", ""Kids & Teens"", ""eCollection"", ""Police"", ""Fire-Rescue"", ""Lifeguards"", ""City Officials"", ""City Government""]",[],[] -2599,https://southamptontownnypolice.gov/1624/public-information,Not Criminal Justice Related,200,"Public Information | Southampton, NY - Official Website","","[""\r\n\r\nPublic Information\t\t""]",[],"[""Loading"", ""Site Tools"", ""Contact Us"", ""Site Links""]",[],[],[] -2600,https://www.somervillema.gov/policebodycameras,Media Bulletins,200,City of Somerville & Police Union Reach Agreement to Deploy Patrol Officer Body Cameras | City of Somerville,"After several years of negotiations, the City of Somerville and the Somerville Police Employees Association (SPEA) union, which represents Somerville patrol officers, have reached an agreement to implement body-worn cameras. The agreement represents a collaborative breakthrough for policing transparency in Somerville and establishes Somerville as an early regional adopter of this important technology. ","[""\nCity of Somerville & Police Union Reach Agreement to Deploy Patrol Officer Body Cameras\n""]","[""After years of negotiations, the agreement represents a collaborative breakthrough for policing transparency ""]","[""Feedback"", ""Download Mobile Apps"", ""Sign up for City eNews"", ""Connect With Us""]",[],[],[] -2601,https://www.richmondindiana.gov/news/chief-of-police-michael-britt-officer-seara-burton,Media Bulletins,200,Message from Chief of Police Michael Britt on Officer Seara Burton | City of Richmond,"","[""News""]","[""Message from Chief of Police Michael Britt on Officer Seara Burton"", ""Stay Connected""]",[],"[""Contact"", ""City of Richmond""]",[],[] -2602,https://www.ci.san-bernardino.ca.us/city_hall/police_department/department_goals/improve_quality_of_life,Crime Statistics,200," - Improve Quality of Life - City of San Bernardino -","","[""City of San Bernardino California""]","[""Improve Quality of Life""]",[],[],[],[] -2603,http://www.longbeach.gov/police/press-releases/officer-involved-shooting-6-/,Media Bulletins,200,Officer Involved Shooting(6),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2604,https://detroitmi.gov/es/departments/departamento-de-agua-y-alcantarillado/atencion-al-cliente/que-hacer-si-tiene-una-copia-de-seguridad-de-alcantarillado,Not Criminal Justice Related,200,Agua y Alcantarillado Mantenimiento/Emergencias | City of Detroit,"El Departamento de Agua y Alcantarillado de Detroit (DWSD) mantiene 2,700 millas de tuberías de distribución de agua (tuberías principales de agua) y 3,000 millas de tuberías de recolección de alcantarillado. DWSD tiene un programa de mantenimiento preventivo agresivo, un Programa de mejora de capital de cinco años para comenzar a abordar nuestra infraestructura obsoleta y cuenta con un equipo de servicios de campo capacitado que responde a las emergencias. Si necesita informar una emergencia de agua o alcantarillado, llame al 313-267-8000 y presione la opción 4, o use la aplicación móvil de Improve Detroit . SISTEMA DE AGUA: El sistema de agua en Detroit incluye las plantas de tratamiento de agua potable, bombas, líneas de transmisión, tuberías de distribución o cañerías de agua, válvulas, hidrantes y líneas de servicio de agua. Mira este video animado . ¿Tiene una rotura principal de agua? Los inviernos fríos de Detroit, los deshielos primaverales y el calor extremo del verano pueden provocar roturas en las tuberías que llevan el agua a nuestros clientes. Cada vez que el suelo cambia debido a cambios drásticos de temperatura, puede ejercer presión sobre las tuberías. El Departamento de Agua y Alcantarillado de Detroit (DWSD) tiene un programa agresivo de detección de fugas y un Programa de Mejora de Capital para actualizar el sistema. Tú también puedes ayudar. Se pueden perder millones de galones de valiosos recursos de agua potable en poco tiempo, por lo que la detección rápida de una ruptura de la tubería de agua es fundamental. Si sospecha que hay una fuga en su vecindario, llámenos al 313-267-8000 o use la aplicación móvil de Improve Detroit . Mire este video para aprender cómo DWSD responde a las roturas de tuberías principales. ¿Quién es responsable de las tuberías de agua? DWSD es responsable del mantenimiento del sistema de distribución de agua, incluidas las tuberías principales y de servicio de agua hasta el tope de la acera (válvula de encendido/apagado cerca o en la acera). El dueño de la propiedad es responsable de la línea de servicio de agua desde la acera hasta el interior de la casa o negocio y la plomería interna dentro de la casa/estructura. Si la parte privada de la línea de servicio de agua se agrieta o falla, es responsabilidad del dueño de la propiedad contratar a un plomero con licencia y obtener el permiso de la ciudad correspondiente para realizar la reparación. Ver imagen a continuación. DRENAJE: El sistema de recolección de alcantarillado en Detroit consta de líneas laterales de alcantarillado (privadas), tuberías de recolección de alcantarillado que utilizan principalmente la gravedad, tuberías de aguas pluviales, sumideros, infraestructura verde de aguas pluviales , bombas, instalaciones de desbordamiento de alcantarillado combinado y la planta de tratamiento de aguas residuales. ¿Está su calle inundada? DWSD lanzó un programa de inspección y limpieza de cuencas colectoras en 2017 para reducir las inundaciones en las calles de los vecindarios. Hasta noviembre de 2020, los equipos de DWSD han inspeccionado y limpiado 30 000 sumideros (drenajes pluviales). Hay aproximadamente 90,000 sumideros que DWSD es responsable de mantener. Esto no incluye las cuencas en autopistas, carreteras estatales o del condado, como M-10 Lodge Freeway y Woodward Avenue, que son responsabilidad del MDOT. Lea sobre el programa aquí . Si experimenta inundaciones en las calles, por su seguridad, no conduzca ni camine por un área inundada. Repórtelo llamando al 313-267-8000 y presione la opción 4, o use la aplicación móvil de Improve Detroit . Se alienta a los propietarios/inquilinos a que recojan los recortes de césped, las hojas, la basura y otros desechos frente a sus hogares y negocios y los eliminen adecuadamente, ya sea en el césped o en bolsas de basura. Los escombros que no se barren ni se quitan con una pala del frente de su propiedad pueden obstruir los sumideros y potencialmente inundar su calle. Mire este video para obtener más información . ¿Tiene un desbordamiento o una copia de seguridad de alcantarillado? Comuníquese con DWSD al 313-267-8000 y presione la opción 4 o use la aplicación móvil Improve Detroit al descubrir un desbordamiento o un desbordamiento de alcantarillado. Si tiene un desbordamiento o un desbordamiento de alcantarillado en su hogar o negocio, consulte la información de reclamo por daños de DWSD. La ley estatal requiere que presente un reclamo por escrito con su empresa local de servicios de agua, DWSD en este caso, dentro de los 45 días posteriores al descubrimiento del desbordamiento o el desbordamiento. ¿Quién es responsable de las tuberías de alcantarillado? DWSD es responsable del sistema de recolección de alcantarillado. Los propietarios son responsables de los drenajes dentro de la casa/estructura, en la propiedad privada y la línea de alcantarillado que viene desde la estructura hasta la conexión en la tubería de recolección de alcantarillado de la ciudad. La mayoría de las líneas de alcantarillado se conectan en el callejón o antiguo callejón (aquellos que la ciudad dejó vacantes a los propietarios), mientras que solo unos pocos vecindarios tienen la línea de alcantarillado conectada debajo de la calle frente a la casa/estructura. Si la línea de alcantarillado de la casa/estructura falla, se agrieta o se derrumba de la conexión de alcantarillado de la ciudad, es responsabilidad del propietario privado contratar a un plomero con licencia y obtener el permiso de la ciudad correspondiente para realizar la reparación. Ver imagen a continuación.","[""\nAgua y Alcantarillado Mantenimiento/Emergencias\n""]","[""Top Links"", ""Site Menu"", "" SISTEMA DE AGUA:"", "" DRENAJE:"", ""Documentos""]","["" \u00bfTiene una rotura principal de agua?"", "" \u00bfQui\u00e9n es responsable de las tuber\u00edas de agua?"", "" \u00bfEst\u00e1 su calle inundada?"", "" \u00bfTiene un desbordamiento o una copia de seguridad de alcantarillado?"", "" \u00bfQui\u00e9n es responsable de las tuber\u00edas de alcantarillado?""]","[""MEN\u00da DE DEPARTAMENTO""]","[""DWSD Tips to Reduce Flooding""]",[] -2605,https://bouldercolorado.gov/events/police-oversight-panel-0,Poor Data Source,200,Police Oversight Panel | City of Boulder,"","[""Police Oversight Panel\n""]","[""Breadcrumb"", ""Details"", ""Police Oversight Panel Meetings"", ""Meeting Details"", ""More Resources""]","[""\nPolice Oversight Panel Subcomittee: Legacy Meeting\n\n"", ""\nPolice Oversight Panel: Meeting with Interim Chief Redfern\n\n"", ""\nPolice Oversight Panel Subcommittee: Community Engagement Meeting\n\n"", ""\nPolice Oversight Panel Subcomittee: Co-Chairs and IPM Meeting\n\n"", ""\nPolice Oversight Panel: All Panel Meeting\n\n"", ""\nPolice Oversight Panel Subcommitee: Co-Chairs and IPM Meeting\n\n""]",[],[],[] -2606,https://delcopa.gov/pdf/animalshelterrfpfinal.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -2607,https://www.scribner-ne.gov/wp-content/uploads/helicopter-3.jpg,Poor Data Source,404,"","",,,,,, -2608,https://www.montgomeryohio.gov/police-resources/,Poor Data Source,200,"Police resources - Montgomery, Ohio","",[],"[""Primary menu links"", ""Action toolbar"", ""Welcome"", ""Engage"", ""Help"", ""Mental Health Resource""]",[],[],[],[] -2609,https://www.southamptontownnypolice.gov/878/deer-protection-and-management-advisory-,Not Criminal Justice Related,200,"Deer Protection and Management Advisory Committee | Southampton, NY - Official Website",The Town of Southampton created the Deer Protection and Management Advisory Committee as a key component to finding a unified approach to sustaining deer populations while balancing human needs.,"[""\r\n\r\nDeer Protection and Management Advisory Committee\t\t""]","[""Members"", "".Deer Management Program"", ""Deer Protection and Management Plan Goals"", ""Deer Management Strategies:"", ""Hunting"", ""Agriculture"", ""Sterilization"", ""Immunocontraception"", ""Marty Shea"", ""Information Concerning Ticks""]","[""Loading"", ""Site Tools"", ""DEER NEWS AND NOTES:"", ""Contact Us"", ""FAQs"", ""Contact Us"", ""Site Links""]",[],[],[] -2610,https://www.ci.bellefontaine.oh.us/announcements/bellefontaine-police-accepting-lateral-transfer-applicants,Training & Hiring Info,200,"Bellefontaine Police Accepting Lateral Transfer Applicants - City of Bellefontaine, Ohio","We’re searching for the best! If you want to join a team that’s committed to excellence and committed to community policing, look no further! We offer competitive wage and benefits, paid vacations, education incentives, and quality training opportunitie",[],"[""BPD Announcements"", ""\nBellefontaine Police Accepting Lateral Transfer Applicants\n"", ""Bellefontaine Police Department"", ""Archives"", ""Categories""]",[],[],[],[] -2611,https://www.lehi-ut.gov/departments/police/lehi-police-ride-along/,Misc Police Activity,200,Lehi Police Ride-Along - Lehi City,"","[""Lehi Police Ride-Along""]","[""RIDE ALONG APPLICATION"", ""Related Pages""]","[""OTHER RIDE-ALONG GOALS:"", ""GENERAL PROCEDURES:"", ""HOW DO YOU SIGN UP FOR A RIDE-ALONG"", ""Please complete the following:(Note: Any application that is incomplete will not be processed)"", ""THE RIDE-ALONG PARTICIPANT MUST AGREE TO ABIDE BY THE FOLLOWING RULES OF CONDUCT""]",[],[],[] -2612,https://delcopa.gov/council/2015minutes/081215minutes.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -2613,https://hilliardohio.gov/coffee-with-a-cop-2/,Poor Data Source,200,Join HPD for Coffee with a Cop - City of Hilliard,No agendas. No presentations. No speeches. Just casual conversation. Join the Hilliard Division of Police for a very special cup of morning Joe from 9,"[""News"", ""Join HPD for Coffee with a Cop""]",[],[],"[""Recent Articles"", ""Hilliard Newsletter"", ""City Hall and Admin"", ""Hilliard Mayor's Court"", ""Division of Police"", ""Police Assistance"", ""Police Records and General Assistance"", ""Norwich Township Fire"", ""Hilliard Recreation & Parks"", ""Hilliard Newsletter"", ""Quick Links"", ""Stay connected with us""]",[],"[""Click the \u2018x\u2019 to opt out.""]" -2614,https://southamptontownnypolice.gov/335/services-programs,Not Criminal Justice Related,200,"Services & Programs | Southampton, NY - Official Website","","[""\r\n\r\nServices & Programs\t\t""]","[""Municipal Works -\u00a0Waste Management"", ""Edward Thompson"", ""Recycling CenterHours & Locations \u00a0\u00a0""]","[""Loading"", ""Site Tools"", ""Contact Us"", ""Quick Links"", ""Contact Us"", ""Site Links""]","[""\nGuest Speaker\n"", ""\n STOP Program (Hazardous Waste)\n"", ""\nPublic Education & Outreach\n"", ""\nTours\n""]",[],[] -2615,http://www.longbeach.gov/police/press-releases/arrest-made-in-murder-case-2-/,Media Bulletins,200,ARREST MADE IN MURDER CASE(2),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2616,https://bouldercolorado.gov/police-master-plan-process-subcommittee,Policies & Contracts,200,Police Master Plan Process Subcommittee | City of Boulder,"","[""Police Master Plan Process Subcommittee\n""]","[""Breadcrumb"", "" Contact Police Master Plan Process Subcommittee\n\n"", ""Purpose and Role "", ""Members"", ""Meeting Schedule"", ""Meeting Materials""]",[],[],[],[] -2617,https://www.naperville.il.us/2022-news-articles/naperville-police-investigate-personal-injury-hit-and-run-crash/,Media Bulletins,404,"","",,,,,, -2618,https://cityofyuma.colorado.gov/departments/emergency-services/police-department,List of Data Sources,200,Police Department | City of Yuma,"","[""\nPolice Department\n""]",[],"[""\nOur Mission\n""]","[""Forms and Resources""]",[],[] -2619,http://police.byram-ms.us/wpt_slider/sro/,Poor Data Source,200,sro | Byram Police Department,"","[""sro""]","[""Byram Weather""]","[""Post navigation"", ""Byram Police Department""]",[],[],[] -2620,https://www.lincolnca.gov/en/living-here/police-department.aspx?_mid_=484,Resources,200," - - - - Police Department - - - City of Lincoln -","","[""\r\n \n \n Police Department\n \r\n ""]","[""Online Reports Include:"", ""Do Not"", ""Contact Us"", ""Resources"", ""Browser Compatibility Notification""]",[],[],[],[] -2621,https://alpha.austin.gov/en/police-oversight/formal-complaint-impartial-attitude-courtesy-department-issued-bwc/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -2622,https://covington.va.us/city-government/city-departments/police/police-patrol/,Misc Police Activity,200,Police Patrol - Covington City,"","[""\nPolice Patrol\n"", ""\nPolice Patrol\n""]","[""\nTOP ONLINE LINKS\n""]",[],"[""NOTICES"", ""\nMAPLE AVENUE PROJECT UPDATE "", ""\nROUTE 18 THERMO STRIPING "", ""CALENDAR""]",[],[] -2623,https://www.desmoineswa.gov/departments/police/forms_documents,Resources,200," - Forms / Documents - City of Des Moines, WA -","","[""City of Des Moines, WA""]","[""Forms / Documents""]",[],[],[],[] -2624,https://alpha.austin.gov/en/health-safety/accountability-and-transparency-in-policing/police-feedback-and-records/bwc-dmav-vendors-glossary-and-additional-information/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -2625,http://lafayettepolice.us/1585/concessions-nearby-restaurants,Not Criminal Justice Related,200,"Concessions / Nearby Restaurants | Lafayette, IN - Official Website","","[""\r\n\r\nConcessions / Nearby Restaurants\t\t""]",[],"[""Loading"", ""Contact Us"", ""FAQs"", ""Site Links""]",[],[],[] -2626,https://www.rentonwa.gov/city_hall/police/patrol_operations/false_alarm_reduction_program,Misc Police Activity,200," - False Alarm Reduction Program - City of Renton -","","[""CITY OF RENTON\r\n\t\t\t\t\tWASHINGTON""]","[""False Alarm Reduction Program""]",[],"[""City of Renton Kicks Off a New False Alarm Reduction Program"", ""Appeal Guidelines"", ""False Alarm Prevention Tips"", ""Frequently Asked Questions""]",[],[] -2627,https://spdblotter.seattle.gov/2014/10/20/police-investigating-collision-between-vehicle-and-pedestrian-in-northgate-area/,Media Bulletins,200,Police Investigating Collision Between Vehicle and Pedestrian in Northgate Area - SPD Blotter,"","[""Police Investigating Collision Between Vehicle and Pedestrian in Northgate Area""]","[""Find Posts By Topic"", ""You might also like..."", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[] -2628,https://champaignil.gov/2014/08/11/champaign-police-investigate-domestic-battery-shooting/,Media Bulletins,200,Champaign Police Investigate Domestic Battery Shooting - City of Champaign,"","[""Champaign Police Investigate Domestic Battery Shooting""]","[""News Releases"", ""Department News""]",[],[],[],[] -2629,https://www.mass.gov/doc/attachment-a-police-departments/download,Poor Data Source,200,"","",[],[],[],[],[],[] -2630,https://delcopa.gov/ems/pdfdocs/initialcertificationeducationtesting/emsinstructorchecklist.doc,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -2631,https://www.mass.gov/info-details/audit-of-the-massachusetts-rehabilitation-commission-objectives-scope-and-methodology,Media Bulletins,200,"Audit of the Massachusetts Rehabilitation Commission Objectives, Scope, and Methodology | Mass.gov",An overview of the purpose and process of auditing the Massachusetts Rehabilitation Commission,"[""\nAudit of the Massachusetts Rehabilitation Commission Objectives, Scope, and Methodology\n""]","[""Table of Contents\n for the audit, Audit of the Massachusetts Rehabilitation Commission"", ""Table of Contents"", ""Overview\n "", ""Help Us Improve Mass.gov with your feedback""]",[],[],[],[] -2632,https://cheswold.delaware.gov/cheswold-police-department-crime-statistics/may-19-activity-report/,Annual & Monthly Reports,200,May 19 Activity Report - Town of Cheswold,"","[""Cheswold""]","[""Delaware"", ""May 19 Activity Report""]","[""Menu""]","[""Address:"", ""Call Us:"", ""Reach Out:""]",[],[] -2633,https://delcopa.gov/publicrelations/releases/2021/primary_electiondayguide.html,Not Criminal Justice Related,200,"The Delaware County 2021 Municipal Primary Election Day Guide - Delaware County, Pennsylvania","","[""The Delaware County 2021 Municipal Primary Election Day Guide""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]","[""Polling Places, Secured Ballot Drop Boxes, Mask Guidance, Late Vote-by-Mail Ballot Options, and more!"", ""SAMPLE BALLOTS AND BALLOT MEASURES"", ""FINDING YOUR POLLING PLACE"", ""SECURED BALLOT DROP BOXES"", ""VOTING BY MAIL"", ""NAKED BALLOTS"", ""LATE OR MISSING VOTE-BY-MAIL BALLOTS"", ""DELAWARE COUNTY\u2019s ELECTION HOTLINE AND VOTER SERVICE CENTER"", ""COVID-19 GUIDANCE: MASKS AND SOCIAL DISTANCING""]",[],[] -2634,https://www.memphistn.gov/news/category/police/,Media Bulletins,404,"","",,,,,, -2635,http://police.byram-ms.us/contact-us/recordsrequest/,Records Request Info,200,Police Records Request | Byram Police Department,"","[""Police Records Request""]","[""Byram Weather""]","[""Byram Police Department""]",[],[],[] -2636,https://delcopa.gov/clerk/boardpositions/sustainability.html,Poor Data Source,200,"404 - Delaware County, Pennsylvania","","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -2637,https://delcopa.gov/publicrelations/releases/2021/healthyfortheholidays.html,Not Criminal Justice Related,200,"Delaware County Urges Residents to be ‘Healthy for the Holidays’ - Delaware County, Pennsylvania","","[""Delaware County Urges Residents to be \u2018Healthy for the Holidays\u2019""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]","[""Healthy for the Holidays: Boosters"", ""Healthy for the Holidays: Children Ages 5 to 11 and Adolescents"", ""Healthy for the Holidays: Immunocompromised and Homebound Individuals"", ""Healthy for the Holidays: Where to Get the COVID-19 Vaccine"", ""Healthy for the Holidays: Testing"", ""Healthy for the Holidays: Staying Safe for Those Not Vaccinated or Around Unvaccinated People""]",[],[] -2638,https://pharr-tx.gov/animated-columns/pharr-police/,Poor Data Source,200,Pharr Police – City of Pharr,"","[""Pharr Police""]",[],[],[],[],[] -2639,http://lafayettepolice.us/1672/internships,Training & Hiring Info,200,"Internships | Lafayette, IN - Official Website","","[""\r\n\r\nInternships\t\t""]","[""Columbian Park Zoo offers a variety of exciting internship opportunities for current college students or recent graduates. \u00a0All academic majors are encouraged to apply."", ""For questions or additional information, please contact the Volunteer Coordinator at 765-807-1543 or cnave@lafayette.in.gov""]","[""Loading"", """", ""Internship Focus Areas (varies seasonally):"", ""Seasons and Time Commitments:"", ""Contact Us"", ""FAQs"", ""Site Links""]",[],[],[] -2640,http://www.lafayettepolice.us/faq.aspx?qid=122,Not Criminal Justice Related,200,FAQs • Whom should I contact for assistance with a drainage ,"",[],"[""\n\u25bc\r\nWater Quality, Watersheds & Stormwater\t\t""]","[""Loading"", ""Categories"", ""Live Edit"", ""Contact Us"", ""FAQs"", ""Site Links""]",[],[],[] -2641,http://www.longbeach.gov/police/press-releases/traffic-fatality-4-/,Media Bulletins,200,TRAFFIC FATALITY(4),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2642,https://rexburg.us/unified-police-locate-person-of-interest-in-suspicious-death-in-taylorsville/,Poor Data Source,522,"","",,,,,, -2643,https://www.pleasantprairiewi.gov/departments/police/news/police_and_fire___rescue_news_archive/2021_news_releases/w_i_l_e_a_g_re-_accreditation,Media Bulletins,200," - WILEAG Re-Accreditation - Village of Pleasant Prairie -","",[],"[""WILEAG Re-Accreditation""]","[""Follow Us on Social Media""]",[],[],[] -2644,https://www.mass.gov/doc/semexant-jeffrey-v-boston-police-department-52121/download,Court Cases,200,"","",[],[],[],[],[],[] -2645,https://www.mass.gov/doc/beauregard-david-v-city-of-chicopee-4920/download,Court Cases,200,"","",[],[],[],[],[],[] -2646,http://www.longbeach.gov/police/about-the-lbpd/,Contact Info & Agency Meta,200,About the LBPD,"- -
","[""Police Department""]","[""About the LBPD""]","[""Mayor"", ""City Council"", ""Rex Richardson"", ""Mary Zendejas"", ""Cindy Allen"", ""Kristina Duggan"", ""Daryl Supernaw"", ""Megan Kerr"", ""Suely Saro"", ""Roberto Uranga"", ""Al Austin"", ""Dr. Joni Ricks-Oddie"", ""Dawn McIntosh"", ""Laura L. Doud"", ""Doug Haubert"", ""Tom Modica"", ""Monique DeLaGarza"", ""City-Wide Elected Officials"", ""Appointed Officials"", ""Online Payments"", ""Online Services"", ""In-Person Services"", ""Opening a Business"", ""Doing Business With The City"", ""Resources"", ""Most Popular"", ""Online Resources"", ""Attractions"", ""Business Associations"", ""Travel Resources"", ""Departments"", ""Job Opportunities"", ""Information"", ""LBPD"", ""Employment"", ""Bureaus"", ""News & Events"", ""Crime Info"", ""How Do I"", ""How Do I"", ""Contact Us"", """", ""LBPD Year in Review"", ""LBPD COMMAND STAFF"", ""Do."", ""Discover."", ""Connect."", ""Ask.""]","["""", ""1st District"", ""2nd District"", ""3rd District"", ""4th District"", ""5th District"", ""6th District"", ""7th District"", ""8th District"", ""9th District"", ""City Attorney"", ""City Auditor"", ""City Prosecutor"", ""City Manager"", ""City Clerk""]","[""File a Report Online"", ""Submit a Tip"", ""Submit a Commendation"", ""File a Complaint"", ""Ride Along Program"", ""\u00a0"", ""\u00a0"", ""\u00a0"", ""\u00a0"", ""Crime Lab Survey"", ""\u00a0""]",[] -2647,https://www.wakeforestnc.gov/news/joyner-park-restrooms-destroyed-vandals-police-seek-public%e2%80%99s-help-identifying-culprits,Media Bulletins,200,"Joyner Park restrooms destroyed by vandals, police seek public’s help identifying culprits | Town of Wake Forest, NC","The Wake Forest Police Department is asking for the public’s help identifying the person or persons responsible for vandalizing the restrooms at E. Carroll Joyner Park, 701 Harris Road. Sometime late Saturday evening or early Sunday morning, vandals used rocks and other items to shatter glass doors and mirrors, clog toilets, and smash sinks.“I’m disgusted that someone would so","[""Joyner Park restrooms destroyed by vandals, police seek public\u2019s help identifying culprits""]","[""wake_forest_cares_wfc_2021-3_1.jpg"", ""Search form"", ""You are here""]",[],[],[],[] -2648,https://detroitmi.gov/departments/law-department/submit-foia-request/non-routine-or-complex-police-foia-request,Poor Data Source,403,"","",,,,,, -2649,https://townofeaton.colorado.gov/departments/police-department,Resources,200,Police Department | Town of Eaton,Hours of Operation / Curfew Hours / Animal Control / Drug Take Back Kiosk / Trailer Parking / Public Information Officer / Eaton Municipal Court / Snow Removal / Complaints or Compliments / Protect Yourself and Prop,"[""\nPolice Department\n"", ""Hours of Operation / Curfew Hours / Animal Control / Drug Take Back Kiosk\u00a0/ Trailer Parking / Public Information Officer / Eaton Municipal Court / Snow Removal / Complaints or Compliments / Protect Yourself and Property / Speaking Engagements / Employment / Toys from a Cop / Patch Collectors / 2021 Statistical Report / Personnel "", ""Hours of Operation"", ""Curfew Hours"", ""Animal Control"", ""Drug Take Back Kiosk"", ""Trailer Parking"", ""Public Information Officer"", ""Eaton Municipal Court"", ""Snow Removal"", ""Complaints or Compliments"", ""Protect Yourself and Your Property"", ""Officers Available for Speaking Engagements"", ""Employment with Eaton Police Department"", ""Toys From a Cop"", ""Police Patch Collectors"", ""Eaton Police Department - 2021 Statistical Highlight Summary Report"", ""Personnel""]",[],"[""\n""]",[],[],[] -2650,https://delcopa.gov/publicrelations/releases/2021/wellnesscenteropening.html,Not Criminal Justice Related,200,"Delaware County Council Officially Opens the Delaware County Wellness Center - Delaware County, Pennsylvania","","[""Delaware County Council Officially Opens the Delaware County Wellness Center""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]","[""Timeline:"", ""Vaccination Efforts:""]",[],[] -2651,https://www.antioch.il.gov/wpfb-file/04-09-13-police-pension-agenda-pdf/,Poor Data Source,200,"04-09-13 Police Pension Agenda - Antioch, IL",8444 04 09 13 police pension agenda pdf commissions fund agendas 2013 1365184892 5ac397bb3e0fdc037dd88aca92cea1f3 213x300 _mebhnck4ak6y thumb jpg 05 01 32 0 pdf application trustees dennis b crosby scott a pierce mary c dominiak ted p poulos jay jozwiak george sakas lawrence m hanson mayor lori k folbrick village clerk agenda of antioch lake county,"[""04-09-13 Police Pension Agenda""]",[],[],[],[],[] -2652,https://www.jacksonms.gov/meetings/personnel-management-administration-police-and-fire/,Resources,200,"Personnel Management, Administration, Police and Fire - Jackson, MS","","[""\n Personnel Management, Administration, Police and Fire ""]","[""Primary menu links"", ""Action toolbar"", ""Contact"", ""Subscribe"", ""Connect""]","[""9:00 am\nJackson City Hall\n""]","[""Cold Weather Shelter - Open""]","["""", """", """"]","[""219 S President St, Jackson 39205""]" -2653,https://sf.gov/departments/department-police-accountability,Resources,200,Department of Police Accountability | San Francisco,We investigate complaints about police officers and recommend policy changes.,"[""Department of Police Accountability""]","[""Meetings"", ""Services"", ""\n News\n "", ""Events"", ""Resources"", ""About"", ""Contact"", ""Footer menu"", ""Footer Bottom""]","[""Upcoming meetings"", ""Past meetings"", ""\n \n Policing concerns\n\n "", ""\n \n Volunteering\n\n "", ""Department of Police Accountability""]","["""", """"]",[],[] -2654,https://alpha.austin.gov/es/police-oversight/formal-complaint-obedience-to-orders/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -2655,https://www.southamptontownnypolice.gov/953/lyzon-hat-shop,Not Criminal Justice Related,200,"Lyzon Hat Shop | Southampton, NY - Official Website","","[""\r\n\r\nLyzon Hat Shop\t\t""]","[""Lyzon Hat Shop"", ""TIME-LINE:""]","[""Loading"", ""Site Tools"", ""Contact Us"", ""Maria Z. Moore"", ""Contact Us"", ""Site Links""]",[],[],[] -2656,https://alpha.austin.gov/en/police-oversight/formal-complaint-impartial-attitude-and-courtesy-4/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -2657,http://www.longbeach.gov/police/press-releases/murder-37-/,Media Bulletins,200,MURDER(37),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2658,https://www.belen-nm.gov/wp-content/uploads/2021/01/120193874_3263039293803054_6835373498020090735_o-copy.jpg,Poor Data Source,200,"","",[],[],[],[],[],[] -2659,https://www.coppelltx.gov/faq.aspx?qid=232,Resources,200,FAQs • What can be done about speeding on my residential str,"",[],"[""Speed Study"", ""Speed Bumps"", ""\n\u25bc\r\nTraffic\t\t"", ""Distance Between Traffic Signals"", ""Time Frame for Installation of a Traffic Signal"", ""Eligibility"", ""Alternate Routes"", ""Reasons to Not Install Speed Bumps"", ""Studies"", ""Amount of Feet Needed on Streets"", ""No Parking Areas"", ""Report a Car"", ""Speed Study"", ""Speed Bumps"", ""Example to Not Install Stop Signs"", ""When Stop Signs Are Installed""]","[""Loading"", ""Categories"", ""Live Edit""]",[],[],[] -2660,https://spdblotter.seattle.gov/2017/12/05/police-need-your-help-identifying-man-who-robbed-two-lower-queen-anne-businesses/,Media Bulletins,200,Police Need Your Help Identifying Man Who Robbed Two Lower Queen Anne Businesses - SPD Blotter,"","[""Police Need Your Help Identifying Man Who Robbed Two Lower Queen Anne Businesses""]","[""Find Posts By Topic"", ""You might also like..."", ""Police"", ""City-Wide Information"", ""Top Requests"", ""Policies""]","[""Animals"", ""Assistance"", ""For Businesses"", ""Civil Rights"", ""Elected Officials"", ""Explore the City"", ""Get Involved"", ""Immigrants and Refugees"", ""Issues and Initiatives"", ""Learning and Education"", ""Public Safety"", ""Transportation and Development"", ""Technology"", ""Utilities""]","[""Browse the Archive""]",[],[] -2661,https://www.mass.gov/info-details/oig-annual-report-2019-division-of-state-police-oversight,Annual & Monthly Reports,200,OIG Annual Report 2019: Division of State Police Oversight | Mass.gov,Part VI of the Office of the Inspector General's 2019 Annual Report.,"[""\nOIG Annual Report 2019: Division of State Police Oversight\n""]","[""Table of Contents\n for the report, Office of the Inspector General Annual Report 2019"", ""Table of Contents"", ""Overview\n "", ""I. Audits, Investigations and Reviews\n "", ""II. The MSP\u2019s Efforts to Achieve Certification and Accreditation\n "", ""III. The MSP\u2019s Efforts to Modernize and Centralize\n "", ""Related\n "", ""Related\n "", ""Help Us Improve Mass.gov with your feedback""]","[""The Division of State Police Oversight:"", ""Additional Resources\n ""]",[],[],[] -2662,https://www.hayward-ca.gov/police-department/public-services/crisis-intervention,Resources,200,Crisis Intervention | City of Hayward - Official website,"Crisis intervention is not a stand-alone “program,” but is a service provided by the entire counseling staff regardless of their assigned program.",[],"[""Crisis Intervention"", ""You are here. So is everything else."", ""Search form""]",[],"[""Common crisis services include:"", ""Hours of Operation:\u00a0"", ""Office Location:"", ""Receive crime bulletins and alerts"", ""Report\n Problems"", ""Ask\n Questions"", ""Make a\n Suggestion"", ""Translate"", ""Search""]",[],[] -2663,http://www.longbeach.gov/police/press-releases/celebrate-the-4th-of-july-holiday-responsibly/,Media Bulletins,200,Celebrate the 4th of July Holiday Responsibly,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2664,https://www.pinevillenc.gov/government/departments/police/join-ppd/,Training & Hiring Info,200,"Join PPD - Town of Pineville, NC","","[""Join PPD"", ""Join PPD"", ""Town of Pineville Updates""]","[""Join Pineville Police Department"", ""Town of Pineville Contacts"", ""Important News & Updates"", ""Advisory Board Openings for Pineville Residents"", ""Pineville Community Meeting"", ""Property Tax Listings"", ""Follow Pineville on Facebook""]","[""Basic Law Enforcement Training Programs"", ""Apply through our Human Resources Department:"", ""Emergency: Police, Fire & Rescue"", ""Non-Emergency:"", ""Town Hall Mailing Address:"", ""Town Hall Physical Address:"", ""Town Hall Office Hours:""]",[],[],[] -2665,https://delcopa.gov/sustainability/commission/otherpdfs/sustcommmtg_slidedeck_2021-8-19.pdf,Poor Data Source,200,"404 - Delaware County, Pennsylvania","","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -2666,https://coloradosprings.gov/police-department/page/alternate-education-program,Resources,200,Alternate Education Program | City of Colorado Springs,"","[""\nAlternate Education Program\n""]","[""Search"", ""Educational Program"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]","[""Do you have some college credits?"", ""Do you need to get some college credits?\u00a0"", ""Do you have military experience?\u00a0""]","[""Participating Schools with CSPD AEP:""]","[""CSU - Global\u00a0"", ""Pikes Peak State College"", ""REPORT ONLINE""]",[] -2667,https://www.tukwilawa.gov/departments/police/command-staff-bios/pd-boyd-kraig-bio-pic/,Media Bulletins,200,"PD-Boyd, Kraig Bio Pic - City of Tukwila","","[""City of Tukwila News""]","[""PD-Boyd, Kraig Bio Pic""]",[],"[""\nCity of Tukwila\n""]","[""I am a..."", ""Online Services"", ""Most Requested Forms""]",[] -2668,https://coloradosprings.gov/police-department/article/news/adrian-vasquez-serve-interim-police-chief,Media Bulletins,200,Adrian Vasquez to serve as interim police chief following Niski retirement | City of Colorado Springs,"","[""\nAdrian Vasquez to serve as interim police chief following Niski retirement\n""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[] -2669,https://www.gurnee.il.us/government/departments/police-department/community-involvement/gurnee-citizen-police-academy/gurnee-citizen-police-academy/week-6,Training & Hiring Info,200," - Gurnee Citizen Police Academy -","","[""Police Department""]","[""Gurnee Citizen Police Academy"", ""Youth Citizen Police Academy""]","[""Now accepting applications for the Spring 2024 session!"", ""Click here to register for the Gurnee Citizen Police Academy"", ""Village Hall""]",[],[],[] -2670,https://delcopa.gov/council/2018minutes/050218minutes.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -2671,https://brookfieldil.gov/brookfields-police-and-fire-chiefs-safety-talk-for-seniors-9-19-19/mtc-2019-poster-3/,Poor Data Source,404,"","",,,,,, -2672,https://alpha.austin.gov/police-oversight/joint-report-analysis-of-apd-racial-profiling-data/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -2673,https://delcopa.gov/publicrelations/releases/2020/delcocares_sept1.html,Not Criminal Justice Related,200,"Applications for Delco CARES Housing Assistance Program Available September 1 - Delaware County, Pennsylvania","","[""Applications for Delco CARES Housing Assistance Program Available September 1""]",[],"[""Public Relations Navigation"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]","[""Residents affected by the COVID-19 Pandemic may be eligible for mortgage, rent, and utility assistance""]",[],[] -2674,https://www.milpitas.gov/milpitas/departments/police/community-relations/citizen-volunteer-and-explorer-applications/,Poor Data Source,404,"","",,,,,, -2675,https://www.mass.gov/news/governor-baker-signs-police-reform-legislation,Poor Data Source,403,"","",,,,,, -2676,https://frederica.delaware.gov/tag/police-officer/,Training & Hiring Info,200,police officer Archives - Frederica,"","[""Frederica""]","[""Delaware"", ""Ad for Part-Time Police Officer""]","[""Menu"", ""Online Bill Pay"", ""Connect With Us!""]","[""Posts Tagged With: \u201cpolice officer\u201d""]",[],[] -2677,https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0250/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -2678,https://alpha.austin.gov/police-oversight/formal-complaint-obedience-to-orders-insubordination/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -2679,http://www.tampa.gov/fire-and-police-pension/info/meeting-notices,List of Data Sources,200,Notices For Upcoming Meetings | City of Tampa, ,"[""Notices For Upcoming Meetings\n""]","[""Fire And Police Pension"", ""Key Services"", ""Report A Problem"", ""Contact"", ""Connect With Us""]",[],[],[],[] -2680,http://www.longbeach.gov/police/contact-us/,Contact Info & Agency Meta,200,Contact Us,Long Beach Police Department - Contact Us,"[""Police Department""]","[""Police Department Phone List""]","[""Mayor"", ""City Council"", ""Rex Richardson"", ""Mary Zendejas"", ""Cindy Allen"", ""Kristina Duggan"", ""Daryl Supernaw"", ""Megan Kerr"", ""Suely Saro"", ""Roberto Uranga"", ""Al Austin"", ""Dr. Joni Ricks-Oddie"", ""Dawn McIntosh"", ""Laura L. Doud"", ""Doug Haubert"", ""Tom Modica"", ""Monique DeLaGarza"", ""City-Wide Elected Officials"", ""Appointed Officials"", ""Online Payments"", ""Online Services"", ""In-Person Services"", ""Opening a Business"", ""Doing Business With The City"", ""Resources"", ""Most Popular"", ""Online Resources"", ""Attractions"", ""Business Associations"", ""Travel Resources"", ""Departments"", ""Job Opportunities"", ""Information"", ""LBPD"", ""Employment"", ""Bureaus"", ""News & Events"", ""Crime Info"", ""How Do I"", ""How Do I"", ""Contact Us"", ""Do."", ""Discover."", ""Connect."", ""Ask.""]","["""", ""1st District"", ""2nd District"", ""3rd District"", ""4th District"", ""5th District"", ""6th District"", ""7th District"", ""8th District"", ""9th District"", ""City Attorney"", ""City Auditor"", ""City Prosecutor"", ""City Manager"", ""City Clerk""]","[""File a Report Online"", ""Submit a Tip"", ""Submit a Commendation"", ""File a Complaint"", ""Ride Along Program"", ""\u00a0"", ""\u00a0"", ""\u00a0"", ""\u00a0"", ""Crime Lab Survey"", ""\u00a0""]",[] -2681,http://www.longbeach.gov/police/press-releases/dui-checkpoint-nets-two-arrests-3-/,Media Bulletins,200,DUI Checkpoint Nets Two Arrests(3),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2682,https://dagsboro.delaware.gov/police-department/police-department/nick-disciullo-promotion-2019-2/,Poor Data Source,200,Nick Disciullo promotion 2019 - Town of Dagsboro,"",[],"[""Nick Disciullo promotion 2019""]","[""Menu"", ""Online Payments"", ""Agendas & Minutes"", ""Contact Us"", ""Connect With Us!""]",[],[],[] -2683,https://www.sandiego.gov/department-document/police-arrest-suspect-encanto-homicide,Media Bulletins,200,Police Arrest Suspect In Encanto Homicide | City of San Diego Official Website,"","[""City of San Diego Official Website""]","[""Main navigation"", ""Leisure"", ""Resident Resources"", ""Doing Business"", ""Library"", ""Public Safety"", ""City Hall"", ""Accessibility Tools"", ""Police Arrest Suspect In Encanto Homicide"", ""Footer""]",[],"[""Parks"", ""Outdoors"", ""Neighborhoods"", ""Recreational Activities"", ""Street Maintenance"", ""Plan"", ""Fix"", ""Build"", ""Programs & Events"", ""Services"", ""Kids & Teens"", ""eCollection"", ""Police"", ""Fire-Rescue"", ""Lifeguards"", ""City Officials"", ""City Government""]",[],[] -2684,https://wildwoodpolice-fl.gov/attempt_to_identify_type-sitemap.xml,Poor Data Source,200,"","",[],[],[],[],[],[] -2685,https://police.greenvillesc.gov/faq.aspx?qid=359,Not Criminal Justice Related,200,FAQs • Is automated collection safer than manual?,"",[],"[""\n\u25bc\r\nRecycling\t\t""]","[""Loading"", ""Categories"", ""Live Edit""]",[],[],[] -2686,http://www.longbeach.gov/police/press-releases/critical-missing-juvenile---michael-veal/,Media Bulletins,200,CRITICAL MISSING JUVENILE - MICHAEL VEAL,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2687,https://delcopa.gov/vote/votebymail.html,Not Criminal Justice Related,200,"Vote-by-Mail Ballots - Delaware County, Pennsylvania","","[""Vote-by-Mail Ballots""]",[],"[""About Vote-by-Mail Ballots"", ""Important Vote-by-Mail Dates"", ""APPLYING FOR YOUR VOTE-BY-MAIL BALLOT"", ""RECEIVING AND COMPLETING YOUR MAIL-IN BALLOT OR ABSENTEE BALLOT"", ""VOTE-BY-MAIL ELECTION BALLOT STATUS CHECK"", ""RETURNING YOUR MAIL-IN/ABSENTEE BALLOT"", ""LAST MINUTE EMERGENCIES"", ""MILITARY AND OVERSEAS VOTERS"", ""HOW TO VOTE IN-PERSON IF YOU HAVE RECEIVED A VOTE-BY-MAIL BALLOT"", ""Delco Votes!"", ""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -2688,https://www.dps.nm.gov/blog/2021/02/10/update-cancel-amber-alert-albuquerque-police-department/,Media Bulletins,200,UPDATE: CANCEL AMBER ALERT-Albuquerque Police Department. - NM Department of Public Safety,"","[""UPDATE: CANCEL AMBER ALERT-Albuquerque Police Department.""]",[],"[""Location"", ""Sitemap"", ""Quick Links"", ""Social Media Links""]",[],[],[] -2689,https://oceancitymd.gov/oc/ocean-city-police-arrest-two-individuals-after-a-serious-assault/,Media Bulletins,200,"Ocean City Police Arrest Two Individuals After a Serious Assault – Town of Ocean City, Maryland","",[],"[""Post navigation""]","[""Related posts""]",[],[],[] -2690,https://alpha.austin.gov/police-oversight/notice-of-complaint-related-to-2022-0674/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -2691,https://delcopa.gov/planning/pdf/agendas/2020/agenda202010.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -2692,http://www.longbeach.gov/police/press-releases/traffic-fatality-pico-and-pier-c/,Media Bulletins,200,TRAFFIC FATALITY PICO and PIER C,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2693,https://townofspringfield.colorado.gov/departments/police-department/winter-vehicle-safety-kits,Poor Data Source,404,"","",,,,,, -2694,http://www.longbeach.gov/police/press-releases/traffic-fatality-7-/,Media Bulletins,200,TRAFFIC FATALITY(7),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2695,https://ose.louisiana.gov/event/police-corporal-14/,Poor Data Source,200,Police Corporal | Louisiana Office of State Examiner,"","["""", ""Police Corporal""]",[],"[""Promotional Level""]",[],[],"[""Recent Posts"", ""Archives"", ""Categories"", ""Meta""]" -2696,https://delcopa.gov/planning/pdf/currentprojects/rosetreeplayoverallsiteloc.pdf,Not Criminal Justice Related,200,"","",[],[],[],[],[],[] -2697,https://delcopa.gov/publicrelations/releases/2022/www.vaccines.gov,Poor Data Source,200,"404 - Delaware County, Pennsylvania","","[""404 Error""]",[],"[""Contact Us"", ""Press Releases"", ""Quick Links"", ""About Delaware County""]",[],[],[] -2698,http://www.longbeach.gov/police/press-releases/murder-ruled-self-defense/,Media Bulletins,200,MURDER RULED SELF-DEFENSE,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2699,http://www.lafayettepolice.us/1/home,Poor Data Source,200,"Lafayette, IN - Official Website | Official Website","","[""Popular Links"", ""Stay Up to Date""]",[],"[""Loading"", ""Quick Links"", ""January 2024"", ""January 2024"", ""Contact Us"", ""FAQs"", ""Site Links""]","[""Holiday lights at Riehle Plaza"", ""Family on pedal boat in Columbian Park lagoon"", ""America concert at Loeb Stadium"", ""Pickelball courts at McCaw Park"", ""Nick Bostic Marquis de Lafayette presentation at Aviators game"", ""Sunset from inside Loeb Stadium"", ""Goat kids at Columbian Park Zoo Petting Zoo area"", ""Rush Pavilion and the Lagoon"", ""\nExtreme Cold Worker Safety Tips from OSHA \n"", ""\nProtect Your Pipes! \n"", ""\nIt's cold for your pets too! \n"", ""\nWinter Car Emergency Kit \n"", ""\nGot Boots? \n"", ""\nAvoid Ticket Scams! \n"", ""\nINDOT Teal Road Reconstruction \n"", ""Thu Jan. 25 "", ""Mon Jan. 29 "", ""Tue Jan. 30 "", ""Thu Jan. 25 "", ""Mon Jan. 29 "", ""Tue Jan. 30 "", ""ccc""]",[],[] -2700,https://beaumonttexas.gov/beaumont-police-arrest-port-arthur-man-for-murder/,Media Bulletins,404,"","",,,,,, -2701,https://alpha.austin.gov/es/police-oversight/formal-complaint-impartial-attitude-and-courtesy-28/,Poor Data Source,200,Maintenance Notice,"",[],[],[],[],[],[] -2702,https://rexburg.us/police-man-sexually-abused-hairstylist-in-ogden-barbershop/,Media Bulletins,522,"","",,,,,, -2703,http://www.longbeach.gov/police/press-releases/two-suspects-arrested-in-murder-case/,Media Bulletins,200,TWO SUSPECTS ARRESTED IN MURDER CASE,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2704,http://www.longbeach.gov/police/press-releases/dui-drivers-license-checkpoint-planned-this-weekend-1-/,Media Bulletins,200,DUI DRIVERS LICENSE CHECKPOINT PLANNED THIS WEEKEND(1),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2705,https://delcopa.gov/arpa/pdf/20220731annualarpareportfiled7-29-22final.pdf,Annual & Monthly Reports,200,"","",[],[],[],[],[],[] -2706,https://brookfieldil.gov/publication/072512-july-25-2012-brookfield-police-pension-board/,Poor Data Source,404,"","",,,,,, -2707,https://southamptontownnypolice.gov/1370/2020-budgets,List of Data Sources,200,"2020 Budgets | Southampton, NY - Official Website","","[""\r\n\r\n2020 Budgets \t\t""]",[],"[""Loading"", ""Site Tools"", ""2020 Budget"", ""Contact Us"", ""Site Links""]","[""\r\n\t\t\t\t\t2020 Adopted Budget - Capital\r\n\t\t\t\t"", ""\r\n\t\t\t\t\t2020 Adopted Budget - Operating\r\n\t\t\t\t"", ""\r\n\t\t\t\t\t2020 Tentative Budget - Operating\r\n\t\t\t\t"", ""\r\n\t\t\t\t\t2020 Tentative Budget - Capital\r\n\t\t\t\t""]",[],[] -2708,http://www.longbeach.gov/police/press-releases/protect-yourself-from-fraud-this-holiday-season/,Media Bulletins,200,Protect Yourself from Fraud this Holiday Season,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2709,https://delcopa.gov/courts/pdf/emergencyjudicialorders/fifthemergencyorderextendingearlyparolereviewandsuchpossiblerelease.pdf,Court Cases,200,"","",[],[],[],[],[],[] -2710,http://www.longbeach.gov/police/press-releases/juvenile-investigations-operation-results-in-6-arrests/,Media Bulletins,200,JUVENILE INVESTIGATIONS OPERATION RESULTS IN 6 ARRESTS,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2711,https://barnegatpolice.us/barnegat-police-department-2/professional-standards/,Policies & Contracts,200,Professional Standards - Barnegat Township Police Department,"","[""Professional Standards""]",[],[],"[""Directions"", ""Quick Links""]",[],[] -2712,http://www.longbeach.gov/police/press-releases/charges-filed-in-attempt-murder-case/,Media Bulletins,200,Charges Filed in Attempt Murder Case,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2713,http://www.longbeach.gov/police/press-releases/traffic-fatality27/,Media Bulletins,200,TRAFFIC FATALITY,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2714,https://www.ci.neenah.wi.us/departments/police/police-annual-reports/survey-results/,List of Data Sources,200,Survey Results – City of Neenah,"","[""Survey Results""]","[""In This Department""]",[],[],[],[] -2715,http://www.longbeach.gov/press-releases/robert-g--luna-appointed-police-chief-of-long-beach/,Media Bulletins,200,Robert G. Luna Appointed Police Chief of Long Beach,"","[""PRESS RELEASE""]",[],[],[],[],[] -2716,http://www.longbeach.gov/police/press-releases/long-beach-police-are-asking-for-the-public-s-help/,Media Bulletins,200,Long Beach Police are asking for the public’s help,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2717,http://www.longbeach.gov/police/press-releases/officer-involved-shooting-2800-block-15th/,Media Bulletins,200,OFFICER INVOLVED SHOOTING 2800 BLOCK 15TH,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2718,http://www.longbeach.gov/police/press-releases/dui-checkpoint-results/,Media Bulletins,200,DUI CHECKPOINT RESULTS,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2719,http://www.longbeach.gov/police/press-releases/murder-44-/,Media Bulletins,200,Murder(44),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2720,http://www.longbeach.gov/police/press-releases/identity-theft-suspect-charged-with-11-felony-counts/,Media Bulletins,200,IDENTITY THEFT SUSPECT CHARGED WITH 11 FELONY COUNTS,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2721,http://www.longbeach.gov/police/press-releases/dui-saturation-patrol-proves-effective-2-/,Media Bulletins,200,DUI SATURATION PATROL PROVES EFFECTIVE(2),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2722,http://www.longbeach.gov/police/press-releases/dui-saturation-patrol-proves-effective-7-/,Media Bulletins,200,DUI SATURATION PATROL PROVES EFFECTIVE(7),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2723,https://springfield-or.gov/event/springfield-police-advisory-committee-meeting/,Poor Data Source,200,Springfield Police Advisory Committee Meeting - City of Springfield Oregon,"",[],"[""Springfield Police Advisory Committee Meeting""]","[""September 3, 2020 @ 6:00 pm - 7:30 pm"", ""Event Navigation""]","[""Share This Story, Choose Your Platform!"", "" Details "", "" Venue ""]",[],[] -2724,http://www.longbeach.gov/police/press-releases/traffic-fatality7/,Media Bulletins,200,TRAFFIC FATALITY,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2725,http://www.longbeach.gov/police/press-releases/national-night-out-set-for-august-4th/,Media Bulletins,200,NATIONAL NIGHT OUT SET FOR AUGUST 4TH,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2726,http://www.longbeach.gov/police/press-releases/human-trafficking-charges-filed-and-additional-victims-sought/,Media Bulletins,200,Human Trafficking Charges Filed and Additional Victims Sought,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2727,http://www.longbeach.gov/police/press-releases/police---fire-memorial-ceremony-1-/,Media Bulletins,200,POLICE & FIRE MEMORIAL CEREMONY(1),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2728,http://www.longbeach.gov/police/press-releases/dui-drivers-license-checkpoint-planned/,Media Bulletins,200,DUI DRIVERS LICENSE CHECKPOINT PLANNED,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2729,https://coloradosprings.gov/police-department/webform/community-outreach-request,Resources,200,Community Outreach Request | City of Colorado Springs,"","[""\nCommunity Outreach Request\n""]","[""Search"", ""Colorado Springs Weekly"", ""GoCOS!"", ""Connect with @CityofCOS""]",[],[],"[""REPORT ONLINE""]",[] -2730,http://www.longbeach.gov/police/press-releases/traffic-fatality-pch-and-studebaker-rd/,Media Bulletins,200,TRAFFIC FATALITY PCH AND STUDEBAKER RD,"","[""Long BeachPolice Department""]",[],[],[],[],[] -2731,http://www.longbeach.gov/police/press-releases/murder-6-/,Media Bulletins,200,MURDER(6),"","[""Long BeachPolice Department""]",[],[],[],[],[] -2732,https://ose.louisiana.gov/event/police-records-clerk-3/,Poor Data Source,200,Police Records Clerk | Louisiana Office of State Examiner,"","["""", ""Police Records Clerk""]",[],"[""Competitive Level""]",[],[],"[""Recent Posts"", ""Archives"", ""Categories"", ""Meta""]" -2733,https://bjs.ojp.gov/content/pub/pdf/ccpuf.pdf,Complaints & Misconduct,200,"","",[],[],[],[],[],[] -2734,https://www.muckrock.com/foi/detroit-314/shotspotter-policies-140369/#file-1067485,Policies & Contracts,200,ShotSpotter policies • MuckRock,MuckRock is a collaborative news site that gives you the tools to hold the government accountable.,"[""ShotSpotter policies""]","[""Communications"", ""Files""]","[""""]",[],[],[] -2735,https://www.documentcloud.org/documents/23741390-allegheny-county-jail-experience-survey-report-and-response,Surveys,200,DocumentCloud,"",[],[],[],[],[],[] -2736,https://www.documentcloud.org/documents/23741389-allegheny-county-jail-needs-assessment-2022,Surveys,200,DocumentCloud,"",[],[],[],[],[],[] -2737,https://www.alleghenycounty.us/Government/County-Jail/Policies,Policies & Contracts,200,"Policies - Allegheny County, PA",Allegheny County Jail PoliciesSafety PoliciesSanitizing Procedures for Food Utensils and Drinking CupsSanitationInfectious Disease ProceduresWater SupplyFacility and EquipmentSecurity PoliciesManagement of Inmate RecordsImmigration Detainers and WarrantsTransfer of Articles...,"[""Policies""]","[""Allegheny County Jail Policies"", ""Healthcare Policies"", ""Governance & Administration""]","[""Safety Policies"", ""Security Policies"", ""Inmate Care Policies"", ""Programs and Inmate Services Policies"", ""Justice and Order Policies"", ""Administration and Management Policies"", ""Contact Us"", ""Quick Links"", ""Get Social""]",[],[],[] -2738,https://pcpa.memberclicks.net/accredited-agencies,Contact Info & Agency Meta,200,Accredited Agencies,"",[],"[""Accredited Agencies""]","[""Pennsylvania Chiefs of Police Association""]",[],[],"[""Return to PCPA Home"", ""Return to PCPA Home"", ""Return to PCPA Home""]" -2739,https://www.ucr.pa.gov/PAUCRSPUBLIC,Crime Statistics,200,Home,UCR Repository System,[],[],[],[],"[""Welcome to the Crime in Pennsylvania Dashboard"", ""Crime Dashboard""]",[] -2740,https://pittsburghpa.gov/police/manual-procedural-orders,Policies & Contracts,200,Pittsburgh Police Policies and Procedural Manual | pittsburghpa.gov,"","[""CAREERS"", ""CONTACT US"", ""FOLLOW US"", ""GU\u00cdA DE RESIDENTES"", ""Manual Of Procedural Orders"", ""City-County Building Lighting - What Do Tonight's Colors Represent?""]","[""Voice\u00a0 \u00a0 \u00a0 \u00a0 \u00a0Neutrality\u00a0 \u00a0 \u00a0 \u00a0 \u00a0Respect\u00a0 \u00a0 \u00a0 \u00a0 \u00a0Trustworthiness\u00a0""]","[""DEPARTMENT MENU""]","[""About Police"", ""Community Engagement Office"", ""Police Branches"", ""Police Zones"", ""Police Data"", ""Resources"", ""News"", ""Police Links""]",[],[] -2741,https://mappingpoliceviolence.us/,Use of Force Reports,200,Mapping Police Violence,"Official home of America's most comprehensive database of police violence. -Get the facts about police brutality and how to address it.","[""Mapping Police Violence"", ""Mapping Police Violence"", ""Police have killed 44 people so far in 2024. Police killed at least 1,243 people in 2023."", ""Mapping Police Violence""]","[""Learn More""]","[""Police killed at least 1,243 people in 2023. Black people were 27% of those killed by police in 2023 despite being only 13% of the population.""]",[],[],[] -2742,https://pasdc.maps.arcgis.com/apps/webappviewer/index.html?id=70c54a213ef94b659b6b77da88ed43b0,Contact Info & Agency Meta,200,ArcGIS Web Application,"","[""""]",[],[],[],[],[] -2743,http://wwso.co.goodhue.mn.us/cis_reports/jail%20roster%20internet.pdf,Incarceration Records,200,"","",[],[],[],[],[],[] -2744,https://www.cannonfallsbeacon.com/search/?q=police+reports&s=start_time&sd=desc&l=10&t=*&nsa=eedition,Incident Reports,200,Search results for 'police reports' | cannonfallsbeacon.com,"",[],"[""\n Search\n \n / 239 results found\n\n \n \n Showing: 1-10 of 239\n\n""]","[""\n\n \n\n \n The last two weeks' Goodhue County Sheriff reports"", ""\n\n \n\n \n Yesteryear: Mary Lou Endres is 'the rosary lady'"", ""\n\n \n\n \n The past two weeks' Cannon Falls Police reports"", ""\n\n \n\n \n This week's Goodhue County Sheriff reports"", ""\n\n \n\n \n This week's Goodhue County Sheriff reports"", ""\n\n \n\n \n This week's Cannon Falls Police, Goodhue County Sheriff reports"", ""\n\n \n\n \n 4 Tips to Gift Safely and Avoid Gift Card Scams This Holiday Season"", ""\n\n \n\n \n Cannon Falls Police, Goodhue County Sheriff reports"", ""\n\n \n\n \n Take Charge of Family Security: 5 Vital Actions for a Safe New Year"", ""\n\n \n\n \n Four Cannon Falls police officers receive their badges during pinning ceremony"", ""\n\n \n\n \n Cannon Falls Beacon"", ""\n \n About Us\n \n ""]","["""", """", """", ""\n \n Most Popular Stories\n \n "", ""\n \n Latest e-Edition\n \n "", ""\n \n Newsletters\n \n "", ""Cannon Falls Beacon e-Edition"", ""Headlines from Cannon Falls Beacon"", ""\n\n \n Weather\n \n \n"", ""\n\n \n Submit Your News\n \n \n"", ""\n \n Calendar\n \n "", ""Browser Compatibility""]","[""\n\n \n\n \n The last two weeks' Goodhue County Sheriff reports"", ""\n\n \n\n \n From St. Paul: The latest on Minnesota\u2019s new flag & seal, Red Flag laws & earned sick time"", ""\n\n \n\n \n Bomber grapplers fall to Stewartville on Parents Night"", ""\n\n \n\n \n Letter to the Editor: Keep our town alive"", ""\n\n \n\n \n Yesteryear: Mary Lou Endres is 'the rosary lady'""]",[] -2745,http://wwso.co.goodhue.mn.us/cis_reports/public%20warrant%20list.rpt.html,Wanted Persons,200,"","",[],[],[],[],[],[] -2746,https://www.muckrock.com/foi/detroit-314/shotspotter-policies-140369/#files,Policies & Contracts,200,ShotSpotter policies • MuckRock,MuckRock is a collaborative news site that gives you the tools to hold the government accountable.,"[""ShotSpotter policies""]","[""Communications"", ""Files""]","[""""]",[],[],[] -2747,https://data.lacounty.gov/datasets/lacounty::sheriff-all-shooting-incidents-for-deputy-involved-shootings-2010-to-present-deputy-shootings/about,Officer Involved Shootings,200,Sheriff All Shooting Incidents for Deputy Involved Shootings 2010 to Present (Deputy Shootings),All Shooting Incident Types for Deputy Involved Shootings 2010 to Present,[],[],[],[],[],[] -2748,https://www.alleghenycounty.us/Government/Departments-and-Offices/County-Council/Council-Meetings/Police-Review-Board-Meeting,Policies & Contracts,200,"Police Review Board Meeting - Allegheny County, PA","In 2021, Allegheny County Council passed legislation creating the Independent Police Review Board to receive and review allegations of misconduct filed by members of the public against police officers employed by the Allegheny County Police Department. The nine-member board is...","[""Police Review Board Meeting""]",[],"[""Contact Us"", ""Quick Links"", ""Get Social""]",[],[],[] -2749,https://www.lakesheriff.com/969/Use-of-Force,Use of Force Reports,200,"Use of Force | Lake County, CA",Gather information about documented use of force in Officer Involved Shooting and Critical Incidents in Lake County.,"[""\r\n\r\nUse of Force\t\t""]","[""Officer Involved Shooting (OIS) & Critical Incidents"", ""Objectively Reasonable""]","[""Loading"", ""Contact Us"", ""Quick Links"", ""Helpful Links""]","[""Administrative Office"", ""Assessor"", ""Community Development Department"", ""Tax Collector""]",[],[] -2750,https://www.cityoflamesa.us/1650/SB1421-Public-Records,Incident Reports,200,"SB1421 Public Records | La Mesa, CA - Official Website","","[""\r\n\r\nSB1421 Public Records \t\t""]","[""Penal Code \u00a7 832.7(b)(1)(A)(i): \""A record relating to the report, investigation, or findings of\u2026 an incident involving the discharge of a firearm at a person by a peace officer or custodial officer."", ""Penal Code \u00a7 832.7(b)(1)(A)(ii): \""A record relating to the report, investigation, or findings of\u2026 an incident in which the use of force by a peace officer or custodial officer against a person resulted in death, or in great bodily injury.\"""", ""Penal Code \u00a7 832.7(b)(1)(B): \""Any record relating to an incident in which a sustained finding was made by any law enforcement agency or oversight agency that a peace officer or custodial officer engaged in sexual assault involving a member of the public.\"" \u00a0 \u00a0\u00a0 \u00a0\u00a0"", ""Penal Code \u00a7 832.7(b)(1)(C): \""Any record relating to an incident in which a sustained finding was made by any law enforcement agency or oversight agency of dishonesty by a peace officer or custodial officer directly relating to the reporting, investigation, or prosecution of a crime, or directly relating to the reporting of, or investigation of misconduct by, another peace officer or custodial officer, including, but not limited to, any sustained finding of perjury, false statements, filing false reports, destruction, falsifying, or concealing of evidence.\"" \u00a0 \u00a0\u00a0\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0"", ""Penal Code 832.7(A) (iii): A sustained finding involving a complaint that alleges unreasonable or excessive force."", ""Penal Code 832.7(A) (iv): A sustained finding that an officer failed to intervene against another officer using force that is clearly unreasonable or excessive."", ""Penal Code 832.7 (D): Any record relating to an incident in which a sustained finding was made by any law enforcement agency or oversight agency that a peace officer or custodial officer engaged in conduct including, but not limited to, verbal statements, writings, online posts, recordings, and gestures, involving prejudice or discrimination against a person on the basis of race, religious creed, color, national origin, ancestry, physical disability, mental disability, medical condition, genetic information, marital status, sex, gender, gender identity, gender expression, age, sexual orientation, or military and veteran status."", ""Penal Code 832.7 (E): A sustained finding made by any law enforcement agency or oversight agency that the peace officer made an unlawful arrest or conducted an unlawful search.""]","[""Loading"", ""Contact Us"", ""Site Links""]","[""No Record \u00a0 \u00a0 \u00a0 \u00a0""]",[],[] -2751,https://data.wprdc.org/dataset/arrest-data,Arrest Records,200,Pittsburgh Police Arrest Data - Dataset - CKAN,"","[""Pittsburgh Police Arrest Data"", ""City of Pittsburgh\n \n "", ""\n \n Pittsburgh Police Arrest Data\n \n \n \n "", ""Data Use Agreement""]","["" Organization"", "" Social"", "" License"", ""Data and Resources"", ""Terms of use"", ""\ud83d\udea7 Under Construction""]","[""Additional Info""]",[],[],[] -2752,https://data.wprdc.org/dataset/non-traffic-citations,Citations,200,Non-Traffic Citations - Dataset - CKAN,"","[""Non-Traffic Citations"", ""City of Pittsburgh\n \n "", ""\n \n Non-Traffic Citations\n \n \n \n "", ""Data Use Agreement""]","["" Organization"", "" Social"", "" License"", ""Data and Resources"", ""Terms of use"", ""\ud83d\udea7 Under Construction""]","[""Additional Info""]",[],[],[] -2753,https://www.traviscountytx.gov/district-clerk/case-information-records,Court Cases,200,Case Information & Records,"Welcome to the official website of Travis County, Texas. ","[""\n\t\t\t\t\t\t\tCase Information & Records\t\t\t\t\t""]","[""On This Page"", ""Online Case Records Search"", ""Official/Certified/Authenticated Document Copies"", ""Administrative Record Copies""]","[""Online"", ""By Mail"", ""In Person""]",[],"[""Can\u2019t find what you\u2019re looking for?""]",[] -2754,https://www.longbeach.gov/police/about-the-lbpd/lbpd-sb-978/,Policies & Contracts,200,"Policies, Procedures & Training (SB 978)","POLICIES, PROCEDURES & TRAINING SB978","[""Police Department""]","[""Policies, Procedures & Training (SB 978)"", ""Basic Academy Training\u00a0"", ""Field Training Officer Program"", ""Manuals, Orders & In-Service Training"", ""Ongoing Professional Training"", ""Records Retention Schedule""]","[""Mayor"", ""City Council"", ""Rex Richardson"", ""Mary Zendejas"", ""Cindy Allen"", ""Kristina Duggan"", ""Daryl Supernaw"", ""Megan Kerr"", ""Suely Saro"", ""Roberto Uranga"", ""Al Austin"", ""Dr. Joni Ricks-Oddie"", ""Dawn McIntosh"", ""Laura L. Doud"", ""Doug Haubert"", ""Tom Modica"", ""Monique DeLaGarza"", ""City-Wide Elected Officials"", ""Appointed Officials"", ""Online Payments"", ""Online Services"", ""In-Person Services"", ""Opening a Business"", ""Doing Business With The City"", ""Resources"", ""Most Popular"", ""Online Resources"", ""Attractions"", ""Business Associations"", ""Travel Resources"", ""Departments"", ""Job Opportunities"", ""Information"", ""LBPD"", ""Employment"", ""Bureaus"", ""News & Events"", ""Crime Info"", ""How Do I"", ""How Do I"", ""Contact Us"", ""Training Division"", ""Senate Bill 978"", ""Do."", ""Discover."", ""Connect."", ""Ask.""]","["""", ""1st District"", ""2nd District"", ""3rd District"", ""4th District"", ""5th District"", ""6th District"", ""7th District"", ""8th District"", ""9th District"", ""City Attorney"", ""City Auditor"", ""City Prosecutor"", ""City Manager"", ""City Clerk""]","[""LBPD SB 978""]",[] -2755,http://beaumontpd.org/1194/Crime-Statistics,Crime Statistics,200,"Crime Statistics | Beaumont, CA - Official Website",View crime statistics and check out our community crime map. ,"[""\r\n\r\nCrime Statistics\t\t""]","[""Crime Statistics and Calls for Service in the City of Beaumont"", ""National Incident Based Reporting (NIBRS)"", ""Beaumont Police Department Annual Report"", ""Press Log""]","[""Loading"", ""FAQs"", ""Contact Us"", ""Quick Links"", ""Connect With Us""]",[],[],[] -2756,https://data.lacity.org,List of Data Sources,200,"DataLA: Information, Insights, and Analysis from the City of Angels | Los Angeles - Open Data Portal","",[],"[""Menu""]",[],[],[],[] -2757,http://www.holmescountysheriff.org/public-information-request/,Records Request Info,200,Public Information Request – Holmes County Sheriff's Office,"","[""Public Information Request""]",[],"[""Public Information Request"", ""\nLinks & Downloadable Resources\n""]","[""Address"", ""Phone"", ""FAX"", ""Email""]",[],"[""The Holmes County Sheriff's Office""]" -2758,https://webmaster2166.wixsite.com/bartowso/online-forms,List of Data Sources,200,Online Forms | Bartow Co. S.O.,"","[""BARTOW COUNTY SHERIFF'S OFFICE"", ""104 ZENA DRIVE \u2666 P.O. BOX 476 \u2666 CARTERSVILLE, GEORGIA 30121"", ""CLARK MILLSAP"", ""SHERIFF ""]","[""ONLINE FORMS""]",[],[],[],"[""Main/Jail: 770-382-5050"", ""Non -Emerg/Dispatch: 770-387-5195"", ""Fax: 678-721-3206"", ""Emergencies:\u00a0Dial 9-1-1""]" -2759,https://rdx.stldata.org/dataset/crime-data-0,Crime Statistics,200,Crime Data | St. Louis Regional Data Exchange,"",[],"[""Primary tabs"", ""\n License "", ""\n Other Access "", ""\n Crime Data ""]",[],"[""Data and Resources""]",[],[] -2760,https://cityprotect.com/agency/4cdd5d7e-3326-4be1-9958-4b68c0270c91,Crime Maps & Reports,200,CityProtect,"",[],[],[],[],[],[] -2761,https://data.wprdc.org/dataset/police-incident-blotter,Crime Maps & Reports,200,Police Incident Blotter (30 Day) - Dataset - CKAN,"","[""Police Incident Blotter (30 Day)"", ""City of Pittsburgh\n \n "", ""\n \n Police Incident Blotter (30 Day)\n \n \n \n "", ""Data Use Agreement""]","["" Organization"", "" Social"", "" License"", ""Data and Resources"", ""Terms of use"", ""\ud83d\udea7 Under Construction""]","[""Additional Info""]",[],[],[] -2762,https://www.burke.k12.ga.us/apps/pages/index.jsp?uREC_ID=324393&type=d&pREC_ID=733056,List of Data Sources,200,Records Request – Records/Transcripts – Burke County Public Schools,"The Burke County Public School District (BCPS) is located in Waynesboro, Georgia. They serve grades PreK-12. Home of the Burke County Bears!","[""Records Request""]",[],"[""SELECT THE BUTTON BELOW TO REQUEST STUDENT RECORDS:""]",[],[],[] -2763,https://collegeparkga.justfoia.com/publicportal/home/search,List of Data Sources,200,JustFOIA Public Portal,"",[],[],[],[],[],[] -2764,http://www.huroncountysheriff.org/contact.html,Contact Info & Agency Meta,404,"","",,,,,, -2765,https://csucpd.crimegraphics.com/2013/default.aspx#CLERYMenu,Crime Maps & Reports,200," - CrimeGraphics.com -","",[],[],[],[],[],[] -2766,https://inmates.seorj.com/ArchonixXJailPublic/Default.aspx,Booking Reports,200," -","","[""\n\n \u00a0\u00a0""]","[""\n SOUTHEASTERN OHIO REGIONAL JAIL""]",[],[],[],[] -2767,http://co.hardin.oh.us/sheriff/services.php,Resources,200,Hardin County Sheriff,"",[],"[""Services"", ""Contact""]","[""FEES: "", ""Webchecks:"", ""PAYMENT:"", ""RECORDS REQUESTS: ""]",[],[],[] -2768,https://cityprotect.com/agency/af073ea8-cc03-4171-99df-511e7047f348,Crime Maps & Reports,200,CityProtect,"",[],[],[],[],[],[] -2769,https://cityprotect.com/agency/e8a9e4ae-3011-48f5-bb98-e22a7d3331b9,Crime Maps & Reports,200,CityProtect,"",[],[],[],[],[],[] -2770,https://cityprotect.com/agency/220a9fbb-967f-41b9-a1a9-7f7022f2b1b1,Crime Maps & Reports,200,CityProtect,"",[],[],[],[],[],[] -2771,https://cityprotect.com/agency/94080d2d-11c8-4896-82d9-cbd38ade5df6,Crime Maps & Reports,200,CityProtect,"",[],[],[],[],[],[] -2772,https://cityprotect.com/agency/470018e6-48e7-4007-9fb7-077dbd34c572,Crime Maps & Reports,200,CityProtect,"",[],[],[],[],[],[] -2773,https://cityprotect.com/agency/1f1336f9-4f15-4542-97f0-ea70b206149f,Crime Maps & Reports,200,CityProtect,"",[],[],[],[],[],[] -2774,https://www.sheriffalerts.com/cap_main.php?office=54658,Sex Offender Registry,403,"","",,,,,, -2775,https://www.goldenwestcollege.edu/public-safety/statistics/index.html,List of Data Sources,200," - Campus Crime Statistics | Linfield University - - ","",[],[],[],[],[],[] -2776,https://cityprotect.com/agency/cf2638f7-c65d-4194-abc4-9feeedc209f2,Crime Maps & Reports,200,CityProtect,"",[],[],[],[],[],[] -2777,https://sanduskycountyoh.gov/index.php?page=sheriff,List of Data Sources,200,"Sandusky County, Ohio - Sheriff","","[""Sandusky County Sheriff's Office""]","[""Links for information:""]",[],[],[],[] -2778,https://cityprotect.com/agency/mpd,Crime Maps & Reports,200,CityProtect,"",[],[],[],[],[],[] -2779,https://www.opendatanetwork.com/dataset/www.dallasopendata.com/4gmt-jyx2,Use of Force Reports,200,Dallas Police Officer-Involved Shootings,"","[""Open Data Network"", ""Dallas Police Officer-Involved Shootings""]",[],[],[],[],[] -2780,https://cityprotect.com/agency/cowl,Crime Maps & Reports,200,CityProtect,"",[],[],[],[],[],[] -2781,https://cityprotect.com/agency/5bba22f7-cd1e-4b02-beaa-4508c8d0996b,Crime Maps & Reports,200,CityProtect,"",[],[],[],[],[],[] -2782,https://cityprotect.com/agency/lcpd,Crime Maps & Reports,200,CityProtect,"",[],[],[],[],[],[] -2783,https://cityprotect.com/agency/55038d63-a7c2-4e66-80ec-9dc9127cd868,Crime Maps & Reports,200,CityProtect,"",[],[],[],[],[],[] -2784,http://www.beverlyhills.org/departments/policedepartment/crimeinformation/crimestatistics/web.jsp,Crime Statistics,200,Crime Statistics,"",[],[],[],[],[],[] -2785,https://data.cityofberkeley.info/Public-Safety/Berkeley-PD-Calls-for-Service/k2nh-s5h5,Crime Maps & Reports,200,Berkeley PD - Calls for Service | Open Data | City of Berkeley,"","[""""]","[""Menu""]",[],[],[],[] -2786,https://bpd.crimegraphics.com/2013/default.aspx,Crime Maps & Reports,200," - CrimeGraphics.com -","",[],[],[],[],[],[] -2787,https://cityprotect.com/agency/5d2ef925-427e-4154-b775-d73e7b19f9da,Crime Maps & Reports,200,CityProtect,"",[],[],[],[],[],[] -2788,https://data.wprdc.org/dataset/uniform-crime-reporting-data,Crime Maps & Reports,200,Police Incident Blotter (Archive) - Dataset - CKAN,"","[""Police Incident Blotter (Archive)"", ""City of Pittsburgh\n \n "", ""\n \n Police Incident Blotter (Archive)\n \n \n \n "", ""Data Use Agreement""]","["" Organization"", "" Social"", "" License"", ""Data and Resources"", ""Terms of use"", ""\ud83d\udea7 Under Construction""]","[""Additional Info""]",[],[],[] -2789,https://www.citruscollege.edu/campussafety/Pages/CampusCrimeStatistics.aspx,Crime Statistics,200," - - Campus Crime Statistics and Crime Logs - -","","[""\r\n\t\t\t\tCampus Safety""]","[""\n\r\n\t\r\n\t\t\t\t\t\t\tCampus Crime Statistics and Crime Logs\r\n\t\t\t\t\t \r\n\n""]","[""\nCampus Crime Log "", ""\nCampus Crime Statistics""]",[],[],[] -2790,https://data.cityofberkeley.info/Public-Safety/Berkeley-PD-Stop-Data-Jan-26-2015-to-Sep-30-2020-/4tbf-3yt8,Stops,200,Open Data | City of Berkeley,"",[],"[""Menu""]",[],[],[],[] -2791,https://www.gordonstate.edu/departments/open-records/index.html,List of Data Sources,200," - Open Records | Gordon State College - ",Gordon State College,"[""Open Records""]",[],[],"[""Georgia Open Records Act (O.C.G.A. 50-18-70)"", ""More Information"", ""Stay Connected""]",[],[] -2792,https://cityprotect.com/agency/impd,List of Data Sources,200,CityProtect,"",[],[],[],[],[],[] -2793,http://state.sor.gbi.ga.gov/sort_public/SearchOffender.aspx,Sex Offender Registry,200," - Georgia Sex Offender Registry -","In accordance with O.C.G.A. § 42-1-12, the Georgia Bureau of Investigation - (GBI) is the central repository for Georgia's Violent Sexual Offender Registry. - The Georgia Bureau of Investigation makes every effort to ensure that the information contained in - the Georgia Sex Offender Registry is accurate. As the information is provided by other agencies - and entities and is continuously changing, the GBI makes no promise or any express or implied - guarantee concerning the accuracy of this information.",[],[],[],"[""Conditions of Use:""]",[],[] -2794,https://www.cityofcartersville.org/DocumentCenter/View/4973/RECORDS-REQUEST-FORM-UPDATED-3-23-20211?bidId=,List of Data Sources,404,"","",,,,,, -2795,https://www.cityprotect.com/agency/carrolltonpd/download,Crime Maps & Reports,200,CityProtect,"",[],[],[],[],[],[] -2796,https://loraincountysheriff.com/annual-law-enforcement-reports/,Annual & Monthly Reports,200,Annual Law Enforcement Reports,To view this year and past reports click one of the links below Annual Law Enforcement Reports 2022 Annual Report 2021 Annual Report 2020 Annual Report 2019 Annual Report,"[""Annual Law Enforcement Reports""]","[""""]","["""", ""To view this year and past reports click one of the links below""]","[""Annual Law Enforcement Reports""]",[],[] -2797,https://stewartcountysheriff.org/faq.htm,List of Data Sources,200,Stewart County Georgia Sheriff's Office FAQ,"Stewart County Sheriff and Sheriff's Office located in Lumpkin Georgia. Serving Lumpkin, Richland, Louvale, Red Hill and other rural areas in Stewart County.",[],[],[],[],[],[] -2798,https://cityprotect.com/agency/743e18dd-1384-4a30-a3f9-6ff22d321f25,Crime Maps & Reports,200,CityProtect,"",[],[],[],[],[],[] -2799,https://police.losrios.edu/clery,Annual & Monthly Reports,200,Annual Clery Report | Los Rios Police Department,"Per the federal Jeanne Clery Act, Los Rios' annual Clery Report includes information about our safety and security policies along with crime statistics for all of our colleges and centers.","["" Annual Clery Report\n""]","[""Frequently Asked Questions"", ""Crime and Reporting""]","[""\nWho was Jeanne Clery?\n"", ""\nWhat types of crimes must be reported?\n"", ""\nWhat is a hate crime?\n""]",[],"[""Types of reportable crimes"", ""Geographical breakdown"", ""Hate crimes""]",[] -2800,https://www.cpp.edu/police/daily-crime-and-fire-log.shtml,Crime Maps & Reports,200," - Daily Crime & Fire Logs - ",Current and previous crime and fire logs for Cal Poly Pomona,"[""Daily Crime and Fire Logs""]","[""Popular Searches"", ""Click on the link to download report""]","[""\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Current Logs\n \n"", ""\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Past Logs\n \n""]",[],[],[] -2801,https://bcso.crimegraphics.com/2013/default.aspx,Crime Maps & Reports,200," - CrimeGraphics.com -","",[],[],[],[],[],[] -2802,https://home.chicagopolice.org/information/police-records-procedures/,Records Request Info,403,"","",,,,,, -2803,https://cityprotect.com/agency/a5f46abe-f050-4f93-b2a2-f5b9e3285041,Crime Maps & Reports,200,CityProtect,"",[],[],[],[],[],[] -2804,http://cityofclaxton.net/,List of Data Sources,200,Home,"",[],[],[],[],[],[] -2805,http://www.buttecounty.net/sheriffcoroner/bookinglogs,Arrest Records,404,"","",,,,,, -2806,https://data.wprdc.org/dataset/police-zones,Geographic,200,Police Zones - Dataset - CKAN,"","[""Police Zones"", ""City of Pittsburgh\n \n "", ""\n \n Police Zones\n \n \n \n "", ""Data Use Agreement""]","["" Organization"", "" Social"", "" License"", ""Data and Resources"", ""Terms of use"", ""\ud83d\udea7 Under Construction""]","[""Additional Info""]",[],[],[] -2807,https://www.ci.brea.ca.us/DocumentCenter/View/1329/Website-Content-User-Policy,Records Request Info,200,"","",[],[],[],[],[],[] -2808,https://data.wprdc.org/dataset/police-sectors,Geographic,200,Police Sectors - Dataset - CKAN,"","[""Police Sectors"", ""City of Pittsburgh\n \n "", ""\n \n Police Sectors\n \n \n \n "", ""Data Use Agreement""]","["" Organization"", "" Social"", "" License"", ""Data and Resources"", ""Terms of use"", ""\ud83d\udea7 Under Construction""]","[""Additional Info""]",[],[],[] -2809,https://lrpd.crimegraphics.com/2013/default.aspx,Crime Maps & Reports,200," - CrimeGraphics.com -","",[],[],[],[],[],[] -2810,https://cityprotect.com/agency/0584dd4d-dffd-43bf-8052-03c3863991de,Crime Maps & Reports,200,CityProtect,"",[],[],[],[],[],[] -2811,https://www.elcamino.edu/about/depts/police/cleryact/index.aspx,Annual & Monthly Reports,200,"Clery Act & Crime Prevention | El Camino College | Torrance, CA","","[""Clery Act & Crime Prevention""]","[""Search El Camino College"", ""Clery Act"", ""Crime Prevention"", ""Active Shooter"", ""Bike Theft"", ""Campus Safety"", ""Drug and Alcohol Abuse Prevention Program"", ""Identity Theft"", ""Megan's Law"", ""Prevention Info"", ""Victim Assistance"", ""What To Do if You're Stopped"", ""About El Camino"", ""Info for Students"", ""Info for Faculty & Staff"", ""Industry &Community Resources""]","[""Translate the Page"", ""Annual Security Report"", ""Purpose"", ""Obtain a Copy"", ""Additional Resources""]",[],[],[] -2812,https://www.athenssheriff.com/contact-us,Contact Info & Agency Meta,200,Contact Us | My Site,"","[""Contact Us""]","[""Administrative Office"", ""Jail Information\nOur office uses Southeastern Ohio Regional Jail (SEORJ) to house its inmates. For information on a prisoner, or to see if a particular person is in jail, call 740-753-4060 or visit the jail website at www.SEORJ.com."", ""Administrative Staff"", ""Lieutenants"", ""Detectives"", ""Deputies"", ""Community Relations & School Resource"", ""Athens County Crime Solvers Anonymous"", ""Athens County Government"", ""Athens County Health Department"", ""Athens County 9-1-1"", ""Common Pleas Court"", ""Municipal Court"", ""CONTACT INFORMATION"", ""Athens County Sheriff's Office"", ""13 W. Washington Street, Athens, Ohio 45701"", ""SEORJ""]",[],[],[],[] -2813,http://woodcountysheriff.com/services/publicrecordspolicy/,Records Request Info,404,"","",,,,,, -2814,https://cityprotect.com/agency/b5a393c6-c69e-4be3-b7cc-2b592b96d06e,Crime Maps & Reports,200,CityProtect,"",[],[],[],[],[],[] -2815,http://alleghanycounty-nc.gov/sheriff.php,Contact Info & Agency Meta,200,"Sheriff’s Office – Alleghany County, North Carolina","","[""Sheriff\u2019s Office""]","[""Recent Posts"", ""Archives"", ""Categories""]",[],[],[],[] -2816,https://www.opendataphilly.org/,List of Data Sources,200,OpenDataPhilly,"OpenDataPhilly is a catalog of open data in the Philadelphia region. In addition to being the official open data repository for the City of Philadelphia, it includes data sets from many organizations in the region.","[""Welcome to OpenDataPhilly""]",[],"[""Browse by Category""]",[],[],[] -2817,https://public.coderedweb.com/CNE/en-US/D43D82D599C9,List of Data Sources,200,Community Notification Enrollment,"","[""Would you like to create a managed account?""]",[],[],[],[],[] -2818,https://www.dougherty.ga.us/public-safety/dcpd/obtain-reports,List of Data Sources,200,Obtain Reports,Doughterty County GA Website,"[""Obtain Reports""]","[""Quick Links"", ""Section Links"", ""How to Obtain Reports""]",[],[],[],"["" Board of Commissioners "", "" Citizen Info "", "" County Departments "", "" County Administration "", "" Judicial System "", "" Public Safety "", "" About Dougherty County "", "" Community "", "" Things to Do "", "" Public Resources "", "" News & Events "", "" Citizen Information ""]" -2819,https://cityprotect.com/agency/144ade76-2309-4dff-8a35-717df4cd4093,Crime Maps & Reports,200,CityProtect,"",[],[],[],[],[],[] -2820,https://www.clayton.k12.ga.us/departments/safety_and_security/forms,List of Data Sources,404,"","",,,,,, -2821,https://www.atlantapd.org/i-want-to/ops-reports/-folder-133,Annual & Monthly Reports,200," - - OPS Reports | Atlanta Police Department - -","","[""Atlanta Police Department"", ""OPS Reports""]","[""Jump to subpage...""]",[],[],[],[] -2822,http://www.baconcountyso.com/contact.html,List of Data Sources,403,"","",,,,,, -2823,http://66.110.195.53/p2c_dcso/jailinmates.aspx,Arrest Records,200," - Dougherty County Sheriff's Office P2C -","",[],[],[],[],[],[] -2824,https://www.burbankpd.org/crime-information/crime-statistics/,Crime Statistics,200,"",Burbank Police Department provides daily arrest log and crime statistics for the City of Burbank,"[""Follow Us"", ""Crime Statistics"", ""Sign Up for our Newsletter/E-Alerts"", ""Follow Us""]","[""Burbank Police"", ""Resources""]","[""Documents""]",[],[],[] -2825,https://data.wprdc.org/dataset/officer-training,Training & Hiring Info,200,Police Officer Training - Dataset - CKAN,"","[""Police Officer Training"", ""City of Pittsburgh\n \n "", ""\n \n Police Officer Training\n \n \n \n "", ""Data Use Agreement""]","["" Organization"", "" Social"", "" License"", ""Data and Resources"", ""Terms of use"", ""\ud83d\udea7 Under Construction""]","[""Additional Info""]",[],[],[] -2826,https://data.cincinnati-oh.gov,List of Data Sources,200,Cincinnati Open Data Portal | Tyler Data & Insights,"","[""""]","[""Menu""]",[],"[""""]",[],[] -2827,https://cityprotect.com/agency/2e8bd965-60bd-4e70-886e-f0a24772e434,Crime Maps & Reports,200,CityProtect,"",[],[],[],[],[],[] -2828,http://www.newtonsheriffga.org/records_faq.html,List of Data Sources,404,"","",,,,,, -2829,https://cityprotect.com/agency/1c052f54-adbd-480b-aa8b-a712c1c851f4,Crime Maps & Reports,200,CityProtect,"",[],[],[],[],[],[] -2830,https://hsupd.crimegraphics.com/2013/default.aspx,Crime Maps & Reports,200," - CrimeGraphics.com -","",[],[],[],[],[],[] -2831,https://data.wprdc.org/dataset/police-civil-actions,Misc Police Activity,200,Police Civil Actions - Dataset - CKAN,"","[""Police Civil Actions"", ""City of Pittsburgh\n \n "", ""\n \n Police Civil Actions\n \n \n \n "", ""Data Use Agreement""]","["" Organization"", "" Social"", "" License"", ""Data and Resources"", ""Terms of use"", ""\ud83d\udea7 Under Construction""]","[""Additional Info""]",[],[],[] -2832,https://www1.nyc.gov/site/finance/sheriff-courts/sheriff.page,Policies & Contracts,200,Sheriff,"","[""Sheriff""]",[],"[""This Office enforces court mandates and processes including:"", ""The majority of our duties include:"", ""Forms"", ""General Forms""]","[""Sheriff's Bureau of Criminal Investigation (BCI)""]",[],[] -2833,https://cityprotect.com/agency/antiochcapolicedepartment,Crime Maps & Reports,200,CityProtect,"",[],[],[],[],[],[] -2834,https://cityprotect.com/agency/mhpdnc,Crime Maps & Reports,200,CityProtect,"",[],[],[],[],[],[] -2835,https://www.citruscollege.edu/campussafety/Pages/AnnualReports.aspx,Annual & Monthly Reports,200," - - Annual Security Report - -","","[""\r\n\t\t\t\tCampus Safety""]","[""\n\r\n\t\r\n\t\t\t\t\t\t\tAnnual Security Report\r\n\t\t\t\t\t \r\n\n""]",[],[],[],[] -2836,https://cityprotect.com/agency/maryvillepdtn,Crime Maps & Reports,200,CityProtect,"",[],[],[],[],[],[] -2837,https://www.cypressca.org/government/departments/police/crime-information/crime-mapping,List of Data Sources,404,"","",,,,,, -2838,https://lithoniacity.org/CityClerk.aspx?CNID=3699,List of Data Sources,200," - Lithonia, GA - City Clerk -","Lithonia, GA - Official City Website","[""City Clerk""]","[""Occupational Tax Certificate (Business License) administrative fee and processing procedures"", ""Press Release Announcing a Proposed Property Tax Increase"", ""Trains Blocking Intersections? Report It Immediately."", ""COVID-19 Response"", ""Celebrating Black History Month"", ""About the Office of the City Clerk"", ""Ashley Waters""]","[""City Clerk"", ""Lithonia City Hall"", ""Follow Us""]",[],[],[] -2839,https://opendata.howardcountymd.gov/,List of Data Sources,200,"Howard County - Open Data Portal | Open Data Portal -","","[""Welcome to Howard County Open Data""]","[""Menu"", ""Money and Finance"", ""Public Safety"", ""Utilities and Public Works"", ""Community Services"", ""Recreation and Parks"", ""Planning and Zoning"", ""Energy and Environment"", ""Transportation"", ""County Administration"", ""Licenses and Permits"", ""Maps, Locations and Boundaries"", ""Demographics"", ""Health"", ""Libraries"", ""Education"", ""Economic Development"", ""Featured Dataset: Building, Electrical, Fire, Grading, Mechanical, Plumbing & Sign Permits: 2010 - Present"", ""Featured Dataset: Presubmission Community Meetings"", ""Featured Dataset: Capital Project Expenditures and Budgets: FY 2015"", ""Featured Dataset: Bus Routes""]",[],[],[],[] -2840,https://www.fresnostate.edu/adminserv/police/documents/,Crime Maps & Reports,403,"","",,,,,, -2841,https://cityprotect.com/agency/b0a52afd-b494-4168-a615-a0c6423284a3,Crime Maps & Reports,200,CityProtect,"",[],[],[],[],[],[] -2842,https://cityprotect.com/agency/3a33f406-0418-42ff-b0ab-19d39bcbc652,Crime Maps & Reports,200,CityProtect,"",[],[],[],[],[],[] -2843,https://www.ci.brea.ca.us/DocumentCenter/View/116/CrimeStats_Brea,Crime Statistics,200,"","",[],[],[],[],"[""Z\ufffdT\ufffd\ufffd\ufffd\ufffd/q\ufffd\ufffdX\ufffd{\ufffd\u0018\u0011\ufffd\u0010\ufffd\ufffd\u000bu\ufffdc\ufffd ,0o\ufffdT\ufffd\ufffdo\ufffd;\ufffd64s\ufffd3\ufffd\u0019Z\ufffd\ufffd\ufffdZ\u0013\ufffd\ufffd\ufffd\u0007+4\ufffd\ufffd\b\ufffd\ufffd\ufffd`\ufffd(\ufffd|.UWW;\ufffd\ufffd;+\ufffd\u069c1N\ufffdC\u0012\ufffd\ufffd\ufffd\ufffd\ufffd\ufffdy#J\ufffd<\ufffdUz\ufffd\u02b6\ufffdT\ufffdH\ufffdE\ufffd\u00069\ufffd\ufffd\u0011\ufffd\ufffde\u0001\u044c\rh'\ufffd@\ufffdL\ufffd\ufffd\u06b2b\ufffdE\ufffd[\ufffd\ufffdR\u000b+\u0017.\u0126\ufffdU'\ufffd\ufffdm\ufffd\ufffd\ufffdgr\ufffd\ufffd\ufffd\b\ufffd1\ufffd\ufffd&\u0001\ufffd\u00148\ufffd'\u0016&\u0017D\ufffd{9\ufffd\u0015\ufffd\ufffd\ufffd\ufffd\ufffdJg\ufffd\ufffd\u00104\ufffd\ufffd\ufffd3\ufffd\ufffd\b\u0019\ufffd_\ufffd\ufffd\u0002Dj\u0003\t\ufffd\u000e\ufffd\ufffd\ufffd\ufffd\ufffd4-C8\ufffd\ufffd\ufffdF']DB\u0007\ufffd\ufffd,\ufffd2J\ufffd\u0381\ufffd\ufffd\ufffdX\ufffd\ufffd\ufffdB\ud145*\ufffd\ufffdp,\ufffd?/\u0019\ufffd\ufffd\ufffdH\ufffd\u001c\tf\ufffd`\ufffd[ \u0013\ufffd\u0103\ufffd\ufffdI\ufffd\u007f\ufffd*\ufffd\ufffd\u0000\u00124\ufffd`u\ufffd\ufffd[\ufffd\t\ufffdhg\u001eJO\ufffds\ufffd\ufffd\ufffd\ufffd^v\ufffd\\<\ufffdt\u0004\ufffd24G\u0019ab\ufffd?\u001b.\ufffd\ufffd0\ufffdg\ufffd\ufffd\ufffd(H\u0014\u023f\ufffd\ufffd2\u007f\ufffd\ufffdsl\ufffd\u001d\ufffdsp\u0c43\u03d6\u037ev\ufffd}\r\ufffd\u001f\ufffdKu}mEMM}\u0005\f\u001f\ufffd\u007f\u0696\ufffd\ufffd\ufffd[\u0007\ufffd\ufffd3\u0019L\u067cm\ufffd\u06ad\u05ec \ufffdr&\u001fDcpa$\u03e7h\u0002\u0221\b\ufffd\ufffdGi\ufffd\ufffd\ufffd#\ufffdwV\ufffd\ufffd\ufffd\ufffdR\ufffd\ufffd|\u001e\ufffd\ufffd\""\u0014#\u6310\ufffd',\u062c\ufffd1\ufffd\ufffdRf\ufffd\u07b9\ufffd\ufffdo\ufffd20\ufffd\ufffd.\ufffd\nFn\u00128l*o\ufffdHX\ufffdd\ufffdeli6\ufffd/\u001a\u0012\ufffd\ufffd\ufffd(\ufffd\u001e\ufffd\u001be>\u0003g\ufffd\ufffd\u0c77\ufffd\b\ufffd\u001e\ufffd\ufffdO,\ufffd\u000b9\u0012\ufffd\ufffd\ufffd\u0234\b\ufffdh\u0015\n,J\ufffd9\ufffd/\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u001eD_\u0019\ufffd\ufffdhQ8\ufffd8$I$>'~8\u0002\ufffd\u0013 |\ufffdBb\ufffd%\ufffd3\ufffd\ufffd9\u0016\ufffd\u001d\u001c6[\u001b\u0018{N\ufffd\ufffd\ufffdB[A\ufffdw\u0016O\ufffdajx\u0454\u0005\ufffd\ufffdx8\ufffdK$\ufffd\ufffd\ufffd\u0773a\u000f\ufffd\""\u001eo\ufffd;lzCI*T\ufffd\ufffd\ufffdK\u000f\ufffd\ufffd\ufffd&\ufffd\u0566)\ufffdI_\ufffd\ufffdv\u0010\ufffd/\ufffd\ufffdW\ufffd\ufffdD\ufffd\ufffd\ufffdv\ufffd\ufffd@ \ufffd\ufffd\ufffd:h\ufffd\ufffdtZ\u0018\ufffd\t6\ufffd,U\ufffd\ufffd#\ufffd\ufffd\ufffd(\ufffdF\ufffdY\ufffd\ufffd\ufffd}\ufffd)\ufffd=>#\ufffd\ufffd\ufffd\ufffd\ufffd\u0199\ufffd\u0014\ufffdU\ufffd\u000b\u0013\ufffd\u0016\ufffd\ufffd\ufffd\ufffdr\ufffd\ufffdW_\ufffdXL*\ufffdC\u0003o\ufffdx\u0007\u0017\ufffd\ufffd5\u001c\ufffd\ufffd\ufffdnh.\ufffdYC\ufffd\ufffdS\ufffd\ufffd\ufffd\\0\u0006}\ufffdg\u0010\ufffdK\ufffd\u0005|}\ufffd\ufffd\ufffd\ufffd\ufffdg\ufffd\ufffd\ufffd:\ufffd\ufffd\ufffdy*\u07abN\ufffd@\ufffd|;Q\ufffd\ufffdI\u001e\ufffd7\u001dq\ufffd\u0017\ufffd\ufffd2\u000b\u0005\ufffd#\""b\u0003f\ufffd\ufffdn\ufffd\ufffdM/A\ufffd\u03a8\ufffd\ufffdw\u0017T9\ufffd^\ufffd\ufffdZ\ufffdHu\u0012\ufffd\ufffd\u0014-\ufffd5wn\ufffd7\ufffd\u001f.=\ufffd\ufffd\u001ad5\ufffdt\ufffd\ufffd\u000f\ufffd\ufffda\ufffd\ufffd\u0004\ufffdu9\ufffdyKJ\u0003\ufffd4\u0018K`<\ufffd$\ufffd\ufffdPF\u0006\ufffd[\u0015\ufffd_\ufffd.-#\ufffd\\\ufffd2\ufffd\ufffdDYM\ufffd\ufffd\ufffde\uf8e7\ufffd\ufffdP\ufffd\f\u0001\ufffd#`\ufffd}\ufffdA`\u001c\ufffdO0\ufffdw\ufffd\ufffd;]\ufffd\ufffd#?\ufffd\ufffd\ufffdv\u001fg/c\u0000\ufffd\u0002\ufffd\ufffd\ufffd\ufffd\ufffd\u001a;C\u0019\ufffd:\ufffd\u000b\u0007\ufffdY\ufffd\b\u0002\n\ufffdQ\ufffd\ufffdR\u06a46\ufffdu\ufffdT\u0464\ufffd\t\fB|\ufffd\ufffd\ufffd\ufffd@O\ufffd\ufffd\ufffd\ufffd_\u0014tOfw\ufffd0\ufffdAA\ufffdc\ufffd:dK\u007fY\ufffd\ufffd\u0005Q\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd-\ufffd\ufffd\ufffd\ufffd\ufffdZ\ufffd\ufffdk1\ufffdb\ufffd\u0004x\ufffd:.P\ufffd[\fN\ufffd\ufffd\ufffd\ufffd\r5\u0005\ufffdJ'x\ufffd\ufffd2\ufffd\u0016\u0003\ufffd\ufffd\ufffd\b\ufffdhD\ufffd\u0408\ufffdp\ufffdK\ufffdz\u000e3\f\u07e2\u05a0\ufffd\ufffd\ufffd\ufffd\ufffdW\ufffd\u0019D8\u000b\ufffd\f\ufffd\ufffd\ufffd$Z\ufffdw\ufffdWT\u0004\ufffd/\ufffd\r\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffdl\ufffdLf\ufffd\ufffd\ufffd3^D`9f$@HQ4,\ufffd\ufffd\u000234\u000f\ufffd\u00026\ufffd3D\u0018\ufffd\ufffd\u0000\ufffd\ufffdNg\ufffd\u001d\u0007\\\u2cb9\u001c\f\ufffd\n9\t\ufffd\ufffd|\ufffd\u0006.\ufffd\ufffd\ufffd\ufffd\ufffdK\u001a\ufffdyb\ufffd\ufffdO\ufffd`\ufffd\ufffdv\ufffd5\ufffd\u06cc\ufffd\ufffd\ufffdT\ufffdS\ufffd\ufffd\ufffd\ufffd\ufffd\u00eeZ\ufffd\u001c\ufffd\u0019s\ufffd\ufffd\ufffd\ufffd=\ufffdj\ufffd\ufffd\ufffd\ufffd\ufffd\u0005\ufffd\ufffd\u0017\ufffd&\ufffd'\bJ\ufffd\ufffdeD\ufffdB\ufffd\u0002\u0001 \ufffdN\b\u0004|\ufffdc)\ufffd\ufffd8\u00068G\ufffdR\ufffd)M\ufffd\ufffd\ufffd!\ufffd\ufffdq\ufffd\ufffd\ufffd:\ufffd\u0002\ufffd\ufffdzf\ufffd\u0089+g\ufffd\ufffd\u0016\ufffdu\ufffd%\u0001\ufffd \r\ufffd*\ufffd\ufffd\u001a!9k\u0016Gi\ufffd\ufffd\u0004\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd \ufffd\ufffd\u01b1\n\ufffd\ufffd\u00136{\ufffdC\ufffd\ufffdb\ufffdJ\ufffd/\ufffd\ufffd\u0010\ufffd\u0519\ufffdXF\ufffdY\ufffd/\ufffd\ufffd\ufffd}|\u0014J\ufffd|\u000e\u0017?\ufffd\ufffd9\ufffd\ufffd\ufffd0\u001d\ufffd??\ufffdn\f\fc\ufffd\ufffdx2\u000f5+\ufffd\u00d1\ufffdl\ufffd\u0015\ufffd\ufffdl\u0001*>\ufffd\ufffd\u0001\ufffdRL\ufffd4\ufffd[\ufffd\ufffdQ\ufffdL~a\ufffd\ufffd\ufffd\ufffd\ufffdy\ufffd\ufffd\ufffd\ufffd~\ufffdS\ufffd\ufffdo\ufffd\ufffd\ufffd\ufffd>\ufffd\ufffd\ufffd4?yo\ufffd\ufffd<]\ufffd\ufffdy\ufffd\ufffd\u1d79S\ufffd-\ufffd\ufffd\u07b7b\ufffd\ufffd_]\ufffd\ufffd\ufffdS\ufffd\ufffd7u\ufffd\ufffdu\n\ufffd\ufffd\""+\u0010#+\ufffd\u0010\u0007h\ufffdDT *\u0016A=e\u0016A\u9c71\ufffd\ufffd\ufffdmM\ufffd7\u001dV\ua6a4\ufffd\ufffd\ufffd\ufffd\f\ufffdf\u0017>\ufffd\u0018\ufffd@\t\ufffd\ufffd\ufffd\b\ufffd\ufffd'\u0017\ufffd\u0004@\u0006\ufffd\u0000\u0002\u0017\ufffdB+x\ufffdu\f\ufffdi\ufffdF\ufffd\ufffd\u0019n\ufffd\ufffd\b\ufffdn>\ufffdG\u0012y\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u0019\ufffd\ufffd\ufffd\ufffdb\ufffd\ufffd\u0001\ufffd'3\u0007\u0016\ufffdHV\u0001\ufffd$\ufffd$\ufffd\ufffdE\ufffdy\ufffd\ufffd\ufffd*\ufffdl\ufffd\u0006\ufffd+\ufffd)D\ufffd\ufffd\ufffd}Z\ufffd\ufffdk\ufffd-k\""\u0003\ufffd^\ufffd\ufffdeSI\u0017\ufffdF\ufffd\ufffd_\u04f1\ufffd\ufffdy\ufffd>\ufffd\u007f\u026b\u007f;\ufffdt\ufffd\r{n\ufffdM\ufffd\ufffd$\ufffd\ufffd\ufffdv\ufffdu\ufffd\u0016\ufffd\ufffd\ufffd\u0275\ufffd^\ufffd\ufffd#?\ufffdYI\ufffd\ufffd\u0017\u0013Ab&\u001d\ufffd\ufffd\u0002P\f\u0010Z\ufffd\u00180\ufffd\ufffdO\ufffd\ufffdz\ufffd\u001e@\ufffd\ufffd\ufffd\ufffdB\ufffd\u0007z\ufffd\ufffd\u0006\u0000\ufffd\ufffd\u0741@\ufffdr\ufffdVg\ufffd8\u0014Y\u001c[\ufffd\u0007\u001fi<\ufffd\ufffd\bAG\ufffd\ufffd\ufffd0z\\\ufffd\ufffdC| \ufffd\ufffd\ufffd\ufffd\ufffdD!\ufffd\ufffd\u007f\ufffd\u0440\ufffd\ufffdGs\ufffd\ufffd\ufffd\\\ufffd\ufffd\ufffd;O\ufffd\ufffd/\ufffd\ufffd\ufffd7\ufffd\u0288V\ufffd\ufffdp\ufffds\u65b7\ufffd\ufffd=\u0002\ufffd-\ufffdaF\ufffd\ufffdb\ufffd\u0005\ufffd6\ufffd|\ufffd\ufffd\ufffd_\u001c9\r6\ufffd\ufffd\ufffd\u0394\ufffd\ufffdb\ufffdX^^}\ufffd\ufffd`\ufffd\u0553n\ufffd\u0013lG6\ufffd\ufffdy\ufffd\ufffd\""O!%\u001ai1!\u0011s%\\\u023dW\"" \ufffd\u0016\ufffd\ufffd$\ufffd\u001c\ufffd\ufffd\ufffd\u012c\ufffdXd\ufffd\ufffd\ufffd8\ufffd\u0019\ufffd\ufffd\ufffd8A\ufffd\ufffd^\u0004\ufffd\ufffd%)h^\ufffd\u0019\u00031;\ufffdJR\ufffd)\ufffd\ufffd\u7bc2\ufffd\ufffd~\u007f\u0526\u0016_e\ufffd\ufffd\ufffd3\ufffd\ufffd\ufffd\ufffd\ufffd2\ufffd\ufffd$\u000e\ufffd\""\ufffd\ufffdoB\u07b6\ufffd\ufffd *\ufffd\ufffdt\u0005\ufffdq\n\ufffd\ufffdf+\ufffdeC\ufffdM\u01f7\r\ufffd\ufffd:\u001f\ufffd\r\ufffd:^\ufffd\ufffd\ufffd\u0010\ufffd\u0010\ufffd\ufffd\ufffdI\ufffd\ufffdm\ufffdvG\""\ufffd\ufffd\u076a\ufffdn1[\ufffd\ufffd\ufffd\ufffd|\ufffd\u0321\n,\ufffd|)\u001a\ufffd\u007fu\ufffd^\ufffd\ufffd#s\ufffdob\r8Tk\ufffdG\u0465\ufffd\n6\ufffd+\ufffdZ\ufffd\ufffd\ufffd\ufffd\ufffdqm\ufffd\ufffdF\ufffd\u0526\u000fo\ufffd\ufffd\ufffd\u0015\ufffd\ufffd\u03de\u0015\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u0012\u035dS\ufffd]\u0014\ufffd\ufffd\ufffd5\u0007U'\ufffd7%\u014f\ufffd\ufffd\ufffd\u0679\ufffd?^\ufffd}\ufffdt\ufffdd\ufffdG\ufffd\u001f\ufffd\ufffd\ufffd\ufffde\u000f\u0002\ufffd]\ufffd\ufffd\u07a2\ufffd\ufffd7\ufffdR\ufffd\ufffd(\ufffd\ufffd\ufffdw{}a\ufffd<\u0014n\ufffdG\ufffdxh\u012dCD?\ufffd\""\ufffd\u00128\ufffd\u0015\n\ufffdb1\ufffd\ufffd\ufffdi\ufffdXm\ufffd\u0007\ufffdh\ufffd\u0404\ufffd\ufffdt\f8h1\u0000r\ufffdn\ufffd\ufffdSR\ufffd[\ufffd^oXiyo\ufffd\ufffdC\ufffd\u0007k\ufffd\ufffdX\ufffd\u0013\ufffd\ufffd\u07e5U*\ufffd$\ufffdS\ufffd\u00156\ufffdI\u001b\ufffd\u001cA\""\ufffdh\u5d32\u0002\ufffd\ufffd\ufffd\ufffdy+\ufffdo_\ufffd\ufffd}\u007f\ufffd\ufffd \ufffd\ufffd\ufffd^tT\ufffd\ufffd:\u001e\ufffd\ufffd)\ufffdN^1\u007f\ufffd\ufffd&\ufffd\ufffd\ufffd\ufffd\ufffd\u0016*\u0016^\ufffd\ufffd\ufffd\ufffdo\ufffdf>`\ufffdw\ufffd\ufffd\ufffdW\n\ufffd\u0524UK\ufffd\u001aS\ufffd\ufffdg\u001d\ufffd\u007f\ufffd\ufffd8\""\ufffdBV0\ufffd\ufffdP\ufffd\ufffd\u0018\ufffd\ufffd;\u0530\ubc02\ufffd\ufffd5j\ufffd\ufffd\t\ufffd\ufffd\u0014\ufffdT<\r\u000f?\\\ufffd\u0014OM\ufffd\u0012\ufffd3\u001bp\ufffd\ufffd0\ufffdW6\u0004\ufffdO\ufffd\ufffd\u000b\u00f3T\u001e\ufffdvt\ufffd\ufffd\ufffdl5i\""\ufffdjpt\u001b\u000e\ufffdI\ufffdJ\ufffd\ufffd-\ufffd\u05b7\ufffd\ufffd\ufffd]:\ufffd \ufffds\u001eGc\ufffd\ufffd\ufffd\ufffd\u0019\ufffd\ufffd\u000b\u05fc\ufffd\ufffd:o\ufffd\f\ufffd\ufffd\ufffd\u0007]\ufffd{\u0005_/Gc\ufffd\ufffd\ufffd\ufffdg\ufffdk\ufffd\ufffd(\ufffdA\ufffd\u000b7\ufffd\ufffd\ufffd\ufffdc\ufffdQ\u0003\ufffd\ufffd6\ufffd\ufffd\bqSu\ufffd\ufffd7}\ufffdu\ufffd\ufffd;!!\ufffd\ufffds\u000e\ufffd\u0002X0D\ufffdy\ufffd\ufffd\u0011C4a\u0010\ufffd\ufffd\ufffd\ufffd]\ufffd=\ufffdp\ufffd\ufffd/=\ufffd@\ufffd\ufffd\ufffdP\ufffd&\ufffdZ\ufffdm\u001c\ufffdc\ufffd\ufffd$\ufffd\ufffd\ufffd\ufffd\ufffd5\u001f?p\ufffd?\ufffd\u00183\ufffd;\ufffd\u0453(\ufffdIM\ufffdTq\ufffd\ufffdH%\ufffd\tD\ufffd\ufffd\u001b\ufffd>\ufffd<\ufffd\u001cf\u001e`\ufffd\""_\ufffd\u0013sa\ufffd\ufffdc\ufffd/\ufffd\u001f\ufffdrGy\ufffd-\ufffd\ufffd\ufffd\u001e@\ufffd:\ufffdfa$\u00062s\u0421\ufffdM\ufffd\ufffd\ufffdfC\ufffd\ufffdt\ufffdf\ufffdR\ufffd\ufffd\u0018.\ufffdg\ufffdq\ufffdGrg\u0014ro\ufffd\\`wH\ufffd\u0241\ufffd\u000b\u000f\ufffd\ufffd\u001d\ufffdYM\ufffdY\ufffd\ufffdI\ufffd6\u001c\ufffd+\ufffd\u001a\u0011\u000e\ufffd\nG\ufffd\ufffd\ufffd\ufffd\ufffd\u0015\ufffdt%\u001b\ufffd\u0001\ufffd\u07da)\u001d\u001a\ufffd\ufffd\ufffd93f?\n\\2\u001eEs\ufffd7\ufffdd~/O\ufffd\ufffdjI\u0019\u051aL\ufffd\\M<\ufffd\ufffd\ufffdB\ufffd}4/_]8.\ufffd\ufffdL\ufffdO'\u0002\ufffd\ufffd\u0007%\ufffd\u001fo\ufffd+\ufffd3\ufffd\ufffd2X \u001d\u001f4\ufffd\u007fji\ufffd\ufffd*\u0745\ufffd\ufffdC\ufffd\ufffd\ufffd*\ufffd\ufffd\ufffd9\ufffd\u007fn\ufffd\u001b:\ufffd\ufffdiW\u53ce\ufffd]o\ufffdJ\u0015\n1\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd[\u001f\ufffd\ufffd}\ufffd\ufffdU\u001b\ufffdY\ufffdUw\ufffd0\ufffd\ufffd\ufffd'\u001fj\ufffd7 \ufffd\u0018\u000bY_\u001cY\ufffd\u0007X32\ufffd<\u0016\ufffd\ufffdn,\ufffd\ufffd\u0004\u000b\u0018H\u0002\ufffd\u0000>\ufffd$Z\ufffd.\ufffd\u0004\bd\ufffd\ufffd\u007f\ufffd<\u001d!\ufffd\u0006\ufffd?\u0014\u000b\ufffd\ufffdc\ufffd\ufffd\ufffd\ufffd\u0000i\ufffdab\ufffd\ufffdw|oo\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd7,\ufffd\ufffdl\ufffd\ufffd[KV\u0015\ufffd$;\ufffd\u000e\ufffdd\ufffdz\ufffd\ufffd\ufffd-\ufffd6\ufffd\ufffdh\ufffd?\u000e\u000e\ufffd\ufffd\ufffdf\u0652\u001b\ufffd\ufffd]))'\u007f,\ufffd\u06d8_0{\ufffd\ufffd\ufffd\ufffd0\b)\ufffd\u001e!\ufffdQ\ufffd8\ufffd\ufffdJ\ufffdx\u0000\ufffdC%Y$\""w@\ufffd\u0010\ufffd\ufffd\ufffdU\ufffd\ufffd\ufffd\rP\ufffd\ufffd\ufffd\ufffd\u0011WE\ufffd\ufffdF\ufffd\u0019\u0011\ufffd\u001c\u001a\ufffd\u0002u\ufffd\ufffd{\ufffdw)\ufffd\u0724\ufffd\ufffd\ufffd\u0006\ufffd\ufffdCy(s\ufffd=\ufffdL\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u000eM[\ufffd\ufffd\ufffd\ufffd}\ufffd\ufffd\u0015p\ufffd\u07d8\u000b%\ufffd\ufffdt\u0085\ufffdUS\""\ufffd\ufffd,\ufffd\u0019\ufffd\ufffd*\ufffd`\u0014\ufffd\ufffd\ufffd\ufffd\ufffdy\ufffd\u001f`\ufffd'\b\ufffd\u0014\ufffdX+\ufffd\u007fr\f#\ufffd[\ufffd@\ufffd{\r\ufffd\u04d1\ufffd\ufffd\u0012\ufffdY\ufffdCp%\b\u0108\u0011\ufffd\ufffd9\u0000\ufffd\""c\ufffd(\ufffd\ufffd@L\ufffdf\ufffd\u0004\u001b\u0015Y\u000b\ufffd\u0744Fwa\ufffd\u0015\ufffd\ufffd\ufffd\ufffd\b\ufffdL\u001f\ufffd\ufffd08\ufffd\ufffd\u0017\ufffd94\ufffd5F\ufffds\ufffd\nA\u001c\ufffd\ufffdLj\ufffd\ufffd\ufffd\u0015\ufffd\ufffd\b\ufffd0\ufffd\u000fE\ufffd#\ufffds\ufffd,\ufffd)\ufffd\ufffdJai\u001e\ufffd`@\ufffdp\u000e\ufffd\b\u0016!\u007f\ufffd\ufffd9N\u0004sv\ufffd\ufffd\t\fs\ufffd\ufffd\ufffd\ufffd\ufffdE&\u0000\ufffd\ufffdb&\u0002\u001d\u0013\ufffd\ufffdA_\ufffd\ufffd\ufffd\rz\ufffd\u001f*\ufffd}\u000bR\ufffdr\ufffd*r\u037ak\ufffd5t\ufffd\u01dbk\u00165\ufffd\ufffdo\ufffd\ufffdm_\ufffd_5z|\ufffd\ufffd\ufffds\u0017\u031e\ufffd@<\ufffd\ufffdvVId\ufffd\ufffd\ufffd\u03c7A\ufffd\ufffdk\ufffd>\ufffd\u0001Iv\u025c\u000f\u0017\u001e\ufffd{\ufffd\ufffd\u0487\u0000w\ufffd\ufffd\ufffd\u001b6o_?J\ufffdz[\ufffd\ufffd\ufffd=\ufffd6NZ\ufffdWH?\ufffd\ufffdf\ufffd\ufffd\u0016\u02af\ufffd\u001cJ\u0012Y\ufffdVh\ufffdOK\ufffd\u0016-~\ufffd\ufffd\u0010\ufffd\ufffdYXk\ufffd\ufffd\u0015\ufffd\u0014\u001a1B\n\ufffdVf\ufffdi\u001a#\u0019/\u0005I\u0019\ufffd\ufffdV\ufffd\u000f\ufffd\ufffd\u0167\ufffd'\u0724\ufffd\u001dC`\n{\ufffdp\ufffd-\ufffd\ufffdx+Ie\u001e?\ufffd\ufffd\ufffd\ufffd\u0692\ufffdE\ufffd0\ufffd\u0016\b\ufffd\ufffdZ\ufffd\ufffd\ufffd\ufffd-\ufffd8\ufffd\ufffd\ufffd\ufffd\u001eg^\ufffd\u411bN\ufffd\ufffdE\ufffd\u000b*\ufffdD\ufffd\ufffd& \u0012\u01fc\ufffd\r\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd7W\ufffdd\ufffd\u001ba\ufffd\ufffd\ufffd\ufffdV\ufffd\ufffd\u0018\t\ufffdx38\ufffd\ufffdF\ufffd}\ufffd\ufffdn\ufffd\u0018Z\ufffd{X\ufffd\u001f@\u0016\ufffd\ufffd\ufffdi\ufffd\ufffd\ufffdL\ufffd4\ufffd\u0017\u000f\ufffd\ufffdv\ufffd\ufffd\ufffd6\ufffd\ufffd\ufffd4\ufffd\u03d5kr\ufffdO\ufffdzt\ufffd\ufffd\u0f1dS\ufffd/0\ufffd\u0018\ufffdC\ufffdYd)\ufffd\ufffd\u0006X\ufffd\ufffdSw\ufffd\u0697\\\ufffd\ufffd\ufffd\ufffd\ufffd\ufffdO\ufffd\ufffd\ufffd\u001c\ufffd\ufffd\ufffdy\ufffd\ufffd\ufffd\ufffd\ufffd0\ufffd\ufffd\u0002\ufffd\ufffd\u0002\ufffd\ufffd@xi\ufffd\ufffd\ufffdzq\ufffd\ufffdg\ufffd\ufffd\ufffd\u0010\ufffdR\ufffd\u0258\ufffdv\ufffdL\ufffdq\ufffd\""^\ufffd\ufffda7\ufffdt\ufffdBc\ufffd\ufffdh\ufffd\ufffdN\ufffd)w*\ufffd&\u0007\ufffd\ufffds9\ufffd\ufffd\u0766\u0016q@[\u001b\u0014*\ufffdn\ufffd\ufffd\ufffdR\ufffd\ufffd\ufffdU+\ufffd\ufffd\ufffdj\ufffd\u001b\ufffd\ufffdnb:\u001d\u000eqj8$r\u0014:\ufffd\u03a6\ufffd\""\ufffd3\ufffd&,\u0012\ufffd\ufffd\u0015\u0010|\ufffd\ufffd?\ufffd\ufffd8\\\ufffd\u001br\ufffd\u0017Q|\u0002\ufffd\ufffd\ufffd\ufffd\ufffd\ufffdy\ufffd\u000e%[b\ufffd+\u001c<\ufffd\u0019^\ufffd\\\u0001\ufffd\ufffd0\ufffdw\ufffd(\ufffd\ufffd\ufffd\ufffd\u0016\u0017\ufffd\u0005\ufffd\ufffd\ufffdW[Vu4w\ufffd\ufffd\ufffd\ufffd&)n\u0734\ufffdy\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd.\ufffd\ufffd\ufffdl\ufffdw\ufffd\ufffd\ufffd\ufffd\ufffdy\ufffd\ufffd\u0246T\ufffdA\ufffd1:#Q\ufffd3\ufffdo\ufffd\ufffd3\u064at*\ufffd\u001e\""\ufffd\ufffd\u001e\ufffdY,4\n\ufffd\ufffdS\ufffd\ufffd\ufffdi#)3Z\ufffd\ufffd\u0000\u001a\ufffdv\u0015.\ufffdPI\ufffdZ\u0621\u0005\ufffdO\ufffd\u001e\ufffd\u0016\u0000)\ufffd\ufffd\ufffd\ufffd)H\ufffd\ufffd\ufffdUj\ufffdE\ufffd\u0017\ufffd\ufffd\ufffd\f\ufffdx\ue24c]\ufffd\ufffd\ufffd\ufffdl\ufffd\u031egt\ufffdB\ufffdk\ufffd\ufffd\u03c6\ufffd@\u001ay\ufffdg MIX\ufffd\ufffde\ufffd=\ufffd%\u03ee\ufffd\t\u0000\ufffd\ufffd\ufffd7\ufffd\ufffdNj\ufffd5\ufffdvJ=x\u0628\ufffd\t\ufffd\u02d9\ufffd`wy\ufffd\ufffd-/\u001dm\ufffd\u000fg?~]\ufffd\ufffd\ufffdJ\u0017x\ufffd+S\ufffd\ufffd\ufffd\ufffd\ufffdX\u07ba\ufffdz\u0013\ufffd\ufffd\u00014\ufffd\""\ufffdA-\ufffdom\ufffd\ufffdL\ufffdx:\ufffd\ufffd\ufffd\ufffd\ufffd2-Z\ufffd\ufffd\""s\ufffd\ufffd\ufffduZ\ufffd'\b\ufffdh\ufffd\ufffd\ufffdS\ufffd\u0011\ufffd%\ufffd\ufffd\ufffd\ufffd\u001aM\ufffdux\u0013B\u0019\ufffd\ufffd\ufffdc\u001c1\ufffd\ufffd\""\u007fr\ufffdK\ufffd\ufffd\ufffd\u05145U\ufffd\ufffd\ufffd?vl\ufffd\ufffd\ufffd\u0017<\u0005\ufffdB1\ufffd\ufffd\ufffd0iR\ufffd;P\u0006o\ufffd\ufffdVPs\ufffd\ufffdi['=}\ufffd\u04f7\b\ufffd)\u0002\ufffd^\u0333\u0016-Y\ufffd\ufffd\ufffd1\r\ufffdo\u0010\u01a0\ufffd\ufffd\u0005\ufffd\ufffd0\ufffd\u0013r\t\ufffd\u0018q\ufffdO\ufffd\u001e\u0487\u0097\bY\ufffdL(\ufffd\ufffdo\ufffdmc\ufffd\ufffd\""\u0386\""\ufffd\f'\ufffd\u001d\ufffd\ufffd\ufffd\ufffd\ufffd\u001e\ufffd\u05eb\u0015\ufffd\ufffd\ufffdG\ufffd\ufffd.\ufffd\ufffd\ufffd\ufffd\u0010\ufffdl\ufffd@\ufffdO~!\ufffdy\ufffd\ufffd\ufffd\u0019\ufffdR\ufffd\ufffd\ufffd\u0012@\""\ufffd\""Vk\u0004FN\ufffdV\r\ufffdzz}X\ufffd\ufffd\u04f4\ufffd\ufffd\u000b\ufffd\ufffdi\ufffd\ufffd1l\ufffd\ufffda\ufffd\b\u000e\ufffdBe\ufffdaQ\ufffd&\ufffdo\ufffd\u007fy\u0001^\u012f5\ufffdbF<6\ufffd\ufffdq\ufffd\ufffd\u001a3p\ufffd\ufffd\ufffd\u000f\ufffd\u001e^\ufffdd\ufffd\ufffd@w\ufffd\ufffd\ufffdgo\ufffd\ufffd\ufffd\ufffdY\ufffd\ufffdM\ufffdu\u0575\ufffd\ufffd\ufffdT\ufffdZ\ufffd\\\ufffdJQ_\ufffd\ufffdnoYY\ufffdX\ufffd|S\ufffd\ufffd\ufffdmXTV9\ufffd\ufffd~\u0781\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd:\ufffd|\u0294\ufffd\ufffd\ufffduF\u0007\ufffd\ufffd\ufffdh\ufffd64c\u001d\ufffd\ufffd\ufffd\ufffd<\ufffd\u0010\ufffdOi\ufffdP\ufffdS\u0620\ufffd4\ufffd\ufffd\uac29\u8409Hx\ufffd\u0011\ufffd\ufffd\ufffd\u0018\ufffd|7sf\ufffd\ufffdcI*>\ufffd\ufffd6\u0207\ufffd\ufffd9\ufffd\u00121W\u0016\ufffdN\ufffd\\\ufffd\ufffdG\u0006[\ufffd\ufffd\ufffdux\ufffd\ufffdG\ufffd>[W\u046a7\ufffdDn\ufffd\ufffd3*I\ufffd\ufffdq^\ufffd\ufffd\ufffd\ufffd\ufffd\u001d\ufffdM~\ufffd\u021f\ufffd\ufffd\ufffd\ufffdI\ufffd\ufffdO\u000f\ufffd\ufffduNK\ufffd\ufffd\ufffd\nZH\u001f\ufffd\ufffd\ufffd\u00041\ufffd\ufffd\u0010=\u000b\b\ufffd\u0018\ufffd\u00115\ufffd\u0018\ufffd\ufffd\u00bc\r\u0015\ufffd\ufffd\ufffd\ufffd-\ufffd\u001f\ufffd\ufffd3o\ufffd\u07f0-\ufffddZ\ufffd\ufffd{\ufffdI\u001a\ufffd\\\ufffdi\u0019@-E\ufffd{\ufffd\u02f4\f2\ufffd\ufffdnR\ufffdZ\ufffdgZz\ufffd{\ufffd\ufffd{vdZ\ufffd\ufffd\u0016\u001b\u06f23\ufffd2g\ufffd64\ufffd3\ufffd\ufffd]\ufffdO\b\ufffd\ufffd\ufffd\u0015\ufffd\ufffd6v\u0000\ufffd\r\ufffdna{y\ufffd\u0012\ufffd\""\u0509\ufffd\ufffd\ufffd\u000e\ufffdQ\ufffdk.\ufffd\u06ca\ufffd*\ufffd|\u020e7\ufffdg/\ufffd\ufffd\r\ufffd\ufffd\""\ufffds\ufffd\ufffdQ\ufffd\ufffd\ufffd\ufffd\ufffd\ufffdh\u0016\u001fAv\u0016\ufffdO\ufffd\u067b\ufffd\ufffdOz\ufffdO\ufffd`\ufffdD\u03d1\ufffd\ufffd\u001fe\ufffd\ufffd\ufffd~\u001b\u06ff3wg]\ufffd\ufffd\u0004\u0007\u03d4\ufffd\ufffd}\u000e\ufffd\u0015\ufffd\ufffd\bQO\ufffd\ud9b1\udccbC\ufffd1\ufffd\u007f\ufffd\ufffd:1b7\ufffd\ufffd.\ufffd\ufffdk\ufffd\u0018\ufffd\u0019\ufffd P\ufffd\ufffd\u001c\ufffd\ufffd\ufffdJw\ufffd\u0019\ufffd3\ufffd\ufffd\\J\ufffd\b\ufffd\ufffd$\ufffd\\\ufffdz\ufffd\ufffd?\ufffd\ufffd\ufffd\ufffdi\ufffd\b<\f\ufffd;U\u0010\ufffd\ufffdQ6\u001a\ufffd\ufffd_\fj\u001980\ufffd\u0010\ufffd_\ufffd79y(;\ufffdE\ufffd\u03b0@D\ufffd\ufffdI\ufffdJ\ufffd\u0006w*K`\ufffd.\ufffdx\u0011~\ufffd\r\ufffd{\ufffd)~\ufffd\ufffd\ufffd8\ufffd\ufffdX\ufffd/\ufffd$\ufffd\ufffd\ufffd\u0004\ufffd\ufffdv\ufffd\bc\u0013\ufffd\ufffd+w\ufffd\ufffd\ufffd\ufffd\ufffdY\ufffd4~ \ufffdG\ufffd\u0018\u0270~1BJ \ufffd\ufffdG\ud25a8ybQ\u00acQ\ufffd\ufffdi\ufffdI\ufffd\ufffd\u0019?5?|V\u0498\ufffd\ufffd\ufffdc\ufffd\ufffd\ufffd\ufffd\u0015'\ufffd\u000b\u000f\ufffd\ufffd89<\u014f\ufffd+W\ufffd\ufffd\ufffd\u0517j\fK\ufffdI\ufffd\ufffd\n\u0014\ufffd\ufffdE\ufffd\ufffduQb\u0005\ufffd\u000eI\ufffd\u001e\ufffd\u0017\ufffd\u0014L\ufffd\u001c\u001b\u001f&\ufffd0\u05af7\ufffd\u0014\ufffd\ufffd\ufffd)\ufffd\ufffdw\ufffd\ufffd\ufffd(\ufffd\u001a\ufffd\ufffd\ufffd\ufffd\ufffd\ufffdvW\ufffd/Eu\ufffd\u000e\ufffdK\ufffdYha\u0016\f\u0729\u0006S-*UtL\u0018\ufffd\u0004\ufffdv\ufffd$HK$I\ufffd\u00121\ufffd\ufffd\u0189\ufffd\ufffd\ufffd\ufffd\ufffdYO\ufffd\ufffd5p\ufffd\u0015\u001d\ufffd?\ufffd-\u0018\ufffdL\ufffd\ufffd\u0526%\ufffd\ufffd\u00b8\ufffd0\u007f9m\ufffd\ufffd\ufffd\u048a>a0\ufffd\ufffd\u001b\ufffd\ufffd(!\ufffdQE\ufffd'\ufffd}\ufffdU\ufffd~\ufffd\u0011J\ufffd\ufffd\u000bXL\ufffd%\u000f\ufffd/f\ufffdZ\u0010\ufffd/\ud80e\udd94$'%\ufffd\ufffdK\n+\tM\b)Q'\ufffdJ\ufffd\t\ufffd\u0012Io\ufffd{\ufffdaF{}\ufffd&\ufffd\ufffd\u001dW\u0012`|``p\ufffd\u7346\ufffd\ufffdB\ufffd\ufffd~:$^\u0011\u001cI=\u0012\u0012\u001b \ufffdg\ufffd\t\ufffd\u000e\ufffdb\u28a2\ufffd\ufffdR\ufffd\ufffd\ufffd\u038a\ufffd\ufffd\u0000\ufffdX \ufffd\ufffd\ufffdR\u000bUa\ufffd\ufffd\\A\ufffdZ\ufffd\ufffd\ufffd\ufffd\u040c\ufffd\ufffd\u0001\ufffd\ufffd*\u0010\ufffd\ufffd\u057fN|\ufffd\ufffdQy\ufffd/\u036f\ufffd\ufffdc\ufffd\u0019 \ufffd>E}\u0016\u0013y?`z\ufffd\ufffd@E`U`U\ufffd \ufffd:\ufffdT\u0429\ufffd\ufffd\ufffd\u0007@\ufffd\ufffd\n\t\u0011\ufffd\u000f\ufffd\u0290\ufffd\ufffd\u001cu\ufffd\ufffd\ufffd\ufffdF\ufffd06l>\ufffd\ufffd}'\ufffd=\u0002'{,\ufffd\ufffd\u000f\""\ufffdA\ufffd\"">\ufffd3\ufffd\ufffd\u0019U\ufffd\u0017\u020a\ufffdmQ\ufffdD\u001d\ufffd\ufffd\ufffd\ufffd\ufffd\nni\ufffd\ufffd\u001d\ufffd\ufffdS\u0012\ufffd\u001b\ufffd\ufffd\ufffd0\ufffd\ufffd,c\u001ef61[\ufffd]\u0315\ufffd\ufffd\ufffd\ufffdXbRcv\ufffd|\u0017k\ufffd\ufffd\u0010\ufffd\u0016\ufffd\u00177\ufffd\u0208\ufffd\ufffdq\ufffd\ufffd\ufffd+\ufffd;\u0019\u001f\u001b\ufffd\u0013K\ufffd%Q\ufffd8=\t%=\ufffd\ufffdm\ufffd\ufffd~MX\ufffd\u0005\ufffd\ufffd\ufffd[R\u0002Sl^\u0498\ufffd`\ufffdz\""O\ufffd\ufffd-\ufffd\ufffd\ufffdC)G\ufffd\ufffdt\u0297)?\u0011\ufffd=U\ufffd\u001a\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\r\ufffdW\ufffd0\ufffd\u000f\u0011&-#\ufffd\ufffd\ufffdqi\ufffd\u0791\ufffd\u0003r6=&\ufffd\ufffd#\ufffd8\u0278\u000b\ufffd\ufffd\u02dc\ufffd\u0005\u001ey\ufffd\u0711;rG\ufffd\ufffd\u001d\ufffd#w\ufffd\u0711;rG\ufffd\ufffd\u001d\ufffd#w\ufffd\u0711\ufffdW\ufffd<\u0003\ufffd\u0010\f\ufffd\ufffd\ufffdv\u0015\ufffd\ufffd\ufffd\ufffd #\ufffd\ufffd$\ufffd\ufffd\ufffd\ufffdi\n\ufffd\bg\ufffdi\u0001\ufffd*\ufffdmh\ufffd\ufffd(\ufffd\ufffdB\ufffdV\ufffd\ufffdi\u0011\ufffd\ufffd\ufffdi1\ufffdw\ufffdi\t\ufffd\ufffdp\ufffdi)J\u0016\n\ufffd\ufffd\f\ufffdP\ufffd\ufffdi\ufffdD\ufffd\u0019K\ufffd\ufffd)\ufffd\ufffd\ufffd\u0012%)?\ufffd\ufffdn\u0334\u00073\ufffd\ufffd K\ufffd;\ufffd\ufffd\ufffdD\ufffd\u02a7\u0005H\ufffdw\ufffdO\ufffd(\ufffdo?\ufffd\u0016\""\ufffd\ufffda>-\ufffd\ufffd\ufffd|Z\f\ufffd3|Z\ufffd\u0006\ufffd\ufffd\ufffdi)\nRQ|Z\ufffdb\ufffd\ufffd\ufffdi9\ufffd\ufffdg,\u0005J\ufffd\u001f\u0127\ufffd(\ufffd\ufffd\ufffd\ufffdU\ufffdq\ufffdE|\ufffd\u0007\ufffd\u0005\f\u0006$\ufffdP\ufffd\u06d9Ksv\ufffd\u049c\ufffd\ufffd4gg.\ufffd\u0659Ksv\ufffd\u049c\ufffd\ufffd4gg.\ufffd\u0659Ksv\ufffd\u049c\ufffd\ufffd4gg.\ufffd\u0659K\ufffdx6\ufffd4g\ufffdq\u0200\ufffd\u0206,\ufffd\u000e\ufffd\u0291\u00031\ufffd\ufffdFV\u0010#\ufffd\ufffd\u000eJ\u02a1\ufffd\fu\u941e\t\ufffdj\ufffdkB\u001aT\u0007\u007f\ufffd\ufffd\ufffd\u001e\ufffd:P%\ufffd\ufffd{\ufffd\ufffde\u0016\ufffd\ufffd\ufffd\ub875\u0003~\ufffdB^G\ufffda\ufffdX\u0003.\ufffd@{<\ufffd\u0015Z\u001a\ufffd\ufffdZ^\ufffd\ufffd\ufffdk\ufffdn+\ufffdm0\ufffd\u0001\ufffd\u001c<\ufffd2\ufffd\u0003\ufffd\ufffdq\u0018\u024cp/7.\ufffd\u0007\ufffdm\ufffdT\ufffdr\ufffd\u001cR=y\ufffd\ufffd\ufffdY\ufffdJ\ufffd:\u88c5|*\ufffd\u0017\ufffd7\ufffd\u001f7\ufffd3N\ufffd\u0019\ufffd\ufffd1\ufffd\ufffd\ufffdI\u000b\ufffdon\ufffd\u001a~\ufffd\ufffd\ufffd\u0016fS\rc\ufffdy\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd}?\ufffd\ufffd\ufffd\ufffd2\ufffd.7\ufffd\ufffda\ufffd\ufffd\u06b6[\ufffd\ufffdh\ufffd\ufffd2\ufffd[;\ufffd\ufffd\ufffdY9\u0dc5\ufffd\ufffd\ufffd3p\ufffd\ufffdG\\\u0003\ufffd8\ufffdg\ufffd\ufffd\ufffdA\u01b3\u0012kj\ufffd~n\ufffd:(\ufffd!3\ufffd@\ufffd\ufffdf\ufffdqO\u04c3Uz\ufffd\u0017\u000b\ufffd\ufffd\ufffd\u0015\ufffd\ufffd\ufffd\ufffd\ufffd\ufffdf\bZ\ufffd7\ufffdzpK#\ufffd\ufffdw\u001c\ufffd\u001e\u001a\f\ufffd\ufffd^\ufffd\ufffd+\ufffd\ufffd[\u0019\ufffd\u0007\ufffd-#\ufffd\ufffd|[IlnE\u0003P\u0006H\r\ufffdt\u22de\ufffdK'c\ufffd\ufffd\ufffd\u0003\ufffd\ufffd\ufffd\ufffd \u05b1\ufffd\ufffd:(u\ufffd\ufffd\u000ei<\ufffdr\ufffd\ufffd\u0006\u4e27\ufffd\ufffd\ufffdZ\ufffd4\ufffd\ufffdB,\ufffdD\ufffd\ufffd\ufffd\ufffdPb#\ufffd\ufffd\ufffd>\ufffd\ufffdg\u0004a\ufffd\r*\bj\ufffd\ufffd\u0003\ufffd*\ufffd\ufffd3\u0014\ufffda\ufffd\ufffdv\u001ab?\ufffdc\ufffd=z\ufffd\u0002\u001d\u90f5\ufffd\ufffd\ufffd\ufffd\ufffdgu\u001a\ufffdqq\ufffdk\ufffdE\ufffdn\u05b9\ufffd\ufffdy\ufffdH\ufffd\ufffd2\u000fR\u0015$\ufffd\ufffd\ufffd\u0019\ufffd\ufffd\ufffd\ufffd:\u0497\ufffdrx\u0015q\ufffd\ufffd8\u0016\u0010\ufffdt\ufffde5\u0133:XA\u0006\ufffd\n\ufffd\ufffd\ufffd{VD\ufffd\ufffd\ufffdY\ufffd\ufffdS\ufffd+QK\""\ufffdwLw\ufffd\u001d\ufffdz\ufffd\ufffd\ufffd\ufffd\ufffd\ufffdc\nC\ufffd\u03f1#\ufffd\ufffd^\u074c\ufffd\u0001\ufffd?Z\ufffdk\ufffdN8\ufffdc\ufffd\ufffdc\u0015;\ufffd\n\u0017w8\ufffd\ufffd\b\ufffdj\ufffdOo\ufffd\ufffd\ufffd\ufffdb\u0013\u0017\u0003\ufffd\u0019\ufffd\ufffd\u0015\ufffd8\u001b\ufffdQ\""\ufffd3\ufffd\ufffd\u0081z\ufffd\ufffd\b\u05647\ufffdB\ufffd\ufffd\ufffd\ufffd\ufffd\ufffdn\ufffd\f\ufffd\u001a\r\ufffd 84\ufffd\u007f\r\ufffd,7\ufffd\ufffd\ufffdG=D\ufffd#\ufffd\u0010fV\""nW\ufffd\ufffdT\ufffdv\ufffd\u0013-\u001c\u0003L\ufffd\ufffd\ufffd\u001aZr\ufffd3\ufffd{\ufffd\u001dl\ufffd\ufffdo\u0001-=m2\ufffd\ufffd\ufffd\ufffdz\u000f\ufffd\ufffd\ufffd\ufffd\u02ed\ufffd\u06cb\ufffd\ufffd\u86ca\ufffd\ufffd\u0007\u0000\ufffd@\ufffd\ufffdVz!\ufffd\ufffdAa\ufffd\u001b\ufffd\ufffd|\ufffd\ufffd-fX\u0000I\ufffd~\u0010>\u02b0\ufffd=\ufffdA\u00ffCK\ufffd\ufffd\b\n\ufffd\ufffd\u0001\ufffd\ufffd\ufffd\ufffd{\u0000.`\ufffd\u0006\u0012\u000b$\u0019`\u0014\u0007D)\ufffd\ufffd\ufffd\ufffd:X05f\ufffdE\ufffd\ufffdi=\r\u001f|mx:\u0016\u0012\ufffd \\Y!b\ufffd\ufffdx\ufffd\ufffdM\ufffd\ufffdh\ufffdiQ\ufffd\f\ufffdu|s\ufffd\u0010\u0012\ufffd,\ufffd\ufffd2\u0003`N\ufffd\u001d\n\u0010\ufffdg\ufffd\ufffd\ufffd\u001a`u\ufffd\ufffdn\ufffdu\ufffd\ufffd\tW\ufffd&\ufffd8\ufffd\ufffd%\ufffd_\ufffdDT\u0012\ufffd=L^\u0001\ufffdw\ufffd\ufffd\u07adTR\u0406\ufffd\ufffdv\u06ebT\ufffd\ufffd\ufffd\ufffdv\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u000f\ufffd\u0017\ufffdo\ufffd\ufffd\ufffd?i\u007f\ufffdv\ufffd\u0007\u0004@{\ufffd\ufffd\ufffd+\ufffdB\ufffd^\b\ufffd\ufffd!\u0011\u0096S\ufffdo&EJ8\ufffd\ufffd\ufffd\u001c\ufffd\u0007\ufffd(\u0001p\ufffd\n\ufffd\ufffd?\u001c\ufffd\u0007\ufffd\ufffdEh)Z\ufffd\u001e@\u001bQ\u0013\u0686\ufffd\ufffd\ufffd\ufffd\n\ufffd*Z\ufffd\ufffdF\u000f\ufffdO\ufffdj\ufffd-z\u0018]Fk(\u001a\ufffd\ufffd|\ufffdz*\u0014m\ufffd\ufffd\ufffdF*\u0003m\ufffd\n\u0463\ufffdH\ufffdYj\u0006\ufffd=e\ufffd.Pv:\ufffdr\ufffd6j9m\ufffd6\ufffd\u000ej;]C=O\ufffdR\ufffd\ufffd:\ufffd$\ufffd\ufffd\ufffd\ufffd^H}C/\ufffd\ufffd\ufffd\u0006\ufffdwz\ufffd\u0000p\n\ufffd\ufffd\ufffd.\ufffd\ufffd\ufffd\ufffd\u0003\ufffd\ufffd\u0001{2`/\u0000\ufffd\u0013\u0000\ufffdl\ufffd>\u000fJ\ufffd\u0000\ufffd2\ufffd\ufffd\u000e\ufffd7\u0003\ufffd=\ufffd{\u0005\ufffd\u001f\u0007\ufffd\u001f\u0002\ufffdV\ufffd~\t\ufffdw\u0000v\u0015`W\u0003\ufffdX\ufffd\ufffd\u000e\ufffd\ufffd\u0003\ufffd\u0011\ufffd}\u0012`/\u0003\ufffdu\ufffd}1`\u007f\b\ufffdo\u0000\ufffdO\u0001\ufffd\ufffd\ufffd\ufffd\r\ufffd\ufffd\u001e`\ufffd\f\ufffd\ufffd\u0000\u062f\u044b\u0004\""\ufffdA\ufffd\u0007\ufffd\ufffd\u00177\ufffd\ufffd\ufffd.\ufffd\ufffd\ufffd\u0017\ufffdG\u0002\ufffd|\ufffd>\u0002\ufffd\ufffd\u0001\ufffdf\ufffd\ufffd?\ufffd\ufffd\n\ufffdo\u0001\ufffd\u0000\ufffdK\ufffd\ufffd(`\ufffd\u0000\ufffd\u007f\u0001\ufffd\u007fB\u000fR\""\ufffd\ufffd\nD\u000f\u0003\ufffd5T\u001e`\u001f\r\u0627\u0002v\r`7\u0001\ufffd\ufffd\ufffd}\u0019`\u007f\f\ufffd\u001f\u0000\ufffd\u0002\ufffd\ufffd\ufffd\ufffdC\ufffd~\u000e\ufffd\ufffd\u0001\ufffd.\ufffdV\ufffdC\ufffd\t\""\ufffd\u0005\ufffdTz\ufffd` `\ufffd\u001b\ufffdO\u0005\uc940}aO\ufffd\ufffdS\u007f\ufffd\ufffd\u0016\ufffd/\u0003\ufffd\u001b\u0001\ufffdN\ufffd\ufffd\u001f\ufffd\u001f\u0001\ufffd\ufffdA\ufffd\u0017\ufffd\ufffd\u0007\ufffd\ufffd\u000e\ufffd\u0003\u0000{\f`\ufffd\u0002\ufffd\ufffd\u0001\ufffd\f\ufffd\ufffd\u0003\ufffdV\ufffd^\u000f\ufffdW\u0002\ufffd\ufffd\ufffd\ufffdi\ufffd~\u0014\ufffd\ufffd\u0004\ufffdg\u0001\ufffd9\ufffd\ufffd\u0006\u063b\ufffd\u001a\ufffd]\u000b\ufffd\ufffd\u0000\ufffd\u0002\ufffd\ufffd\u0010p/\u0012\ufffd\u0004\ufffdz\ufffd^\u0005\ufffdW\ufffd\ufffd.\ufffd\ufffd\u000b{_\ufffd\ufffd\u0002\ufffdG\u0000\ufffdi\ufffd\ufffd\n\ufffd\ufffd\u0002\ufffd\u0003\ufffd\ufffd\u0001\ufffd\ufffd\ufffd\ufffd+\ufffd\u0781\ufffd(\u0019ZF%\ufffd\u0015T6ZI\r\u0003\ufffd\u001a\ufffd^\u0005\ufffd\u001b\u0001\ufffd&\ufffd\ufffd,`\u007f\u0005\ufffd\ufffd\u0000\ufffd\u001f\u0001\ufffd\ufffd\u0001\ufffd5\ufffdY\ufffd\ufffd\ufffd^\ufffdH]\u0010\ufffd\ufffdy\ufffdA\ufffdM0\ufffd\ufffd\u000b\ufffd\ufffd\u000eA\u0005`\ufffd\u0001\ufffd\ufffd\u0001\ufffdf\ufffd\ufffd\u001b\ufffd\u001f\u0002\ufffdo\u0003\ufffd3\ufffd\ufffd\u0015\ufffd\ufffd\ufffd]9\ufffd\u000b{\u0014`\u001f\u0004\ufffdg\u0003v\u000b`_\r\ufffd\ufffd\u0002\ufffd\u0016\ufffd\ufffd#\ufffd\ufffd\ufffd\ufffd\ufffdT4z\ufffd*\u0006\ufffd\ufffd\u0001\ufffd\t\ufffd/\u0004\ufffd\u0001\ufffdW\u0000\ufffd\ufffd\ufffd\ufffd\u000b\ufffd~\u0003\ufffd\u0015\u0004\ufffd\ufffd\ufffd\u0014\ufffdA\ufffd\u001fm\u0014\ufffdD\ufffd\u0005\ufffd\u0463\u00023`\u007f\u0000\ufffd\ufffd\u0000\ufffd{\u0000\ufffd\ufffd\ufffd-\ufffd\ufffd=\ufffd\ufffdEt\r\u001dG\ufffd\ufffd\ufffd\ufffd:ZG/\ufffd\ufffd\u0017\ufffd\ufffd\ufffdE\ufffd\u0011\ufffd\ufffd>E\ufffd?\u0003~\ufffdq<\ufffdJ\ufffdT\ufffdQ^^_^^\ufffd!\u0015C\ufffdP\ufffdKWHj\u068dP^nl\ufffd\n\ufffdT\ufffdVJ\ufffd6\ufffd\fI\ufffd\ufffd8\ufffd]\ufffd,\""C\ufffdy'i^`<\u0001\ufffd\ufffd\u0000g$\ufffd\ufffd\ufffd\u001e7\ufffdBM\u05e3j|\u0015BJ*\ufffdV\ufffd\ufffd\ufffd3b1\u0012\ufffd\ufffd\ufffd\u0575g\ufffdeb$\ufffd\ufffd\ufffd\ufffd\ufffd\u001a\ufffd\u0015\ufffd\ufffd\ufffd\ufffdm\ufffd\ufffdm\ufffdLL\ufffd$\u0005jh\u0003W=\ufffd\ufffd\ufffdm'\u0015\ufffd\ufffd?{\ufffd\ufffdl\ufffd_\ufffd.\ufffdx\ufffd\ufffd$\u0013\""\ufffd\ufffd\ufffd\u0014\ufffd\u0012\ufffd$\ufffdZ\u02a3\u0017\u02d1Xq\u001d\ufffd\ufffd\ufffd\\t\ufffd%H,i'\ufffd0 Im\u000b\\\ufffd\u0004\ufffdO\u000e\ufffdCH\ufffd\ufffd\ufffd[\ufffd\ufffdZ\ufffd\""\ufffdCii;\u0014W\ufffd\\\ufffd\ufffdJ\ufffde\ufffd2$\ufffd_t\ufffd\ufffd\ufffd.\ufffd\b\ufffd\ufffd\ufffd\u0000\ufffd\u0017+Q6\ufffd\ufffdN\ufffd\u0013h\ufffd\ufffd\u0012PB\ufffdK*\ufffd\ufffdBlc\u0017r\ufffdh\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd06\u0270m,\ufffd8\ufffd\ufffd\ufffdR\ufffd\ufffd\ufffd\ufffd\u001dR\u0011\u0005\u0019\ufffd\ufffdM\ufffd\ufffd\ufffdFj\nJ]\ufffd>\u001d\ufffd\ufffdj\ufffd--uk\ufffd\ufffd\ufffd\ufffdT\ufffdRm\u0015\ufffd\ufffd]\ufffd\u016d\""\ufffd\ufffd\ufffdu\u001fS\ufffd&\ufffdSR\ufffd\u0006b\ufffd:\ufffd\u001e\u0019\ufffd\ufffd\ufffd> \ufffdNlR)q\""\ufffd\u0006\ufffd\u0003\ufffd\r \ufffdL\ufffdd\ufffd\ufffdr-\ufffd\ufffd\u000e\ufffdjs\u001bX\ufffd@2Ekk\ufffd\ufffd\ufffdu\u000f\ufffdX\ufffdb\u05f9V\ufffd\ufffd\ufffd\ufffd8\ufffd\u0000C\ufffd\ufffd\ufffd.\ufffd\ufffdM\u00115Q.\ufffdV\ufffd!\t%\ufffd\ufffd$\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd7I@\ufffd4\\\ufffd\ufffd\ufffdY~n\u0016\ufffdp\u000f\ufffd$\ufffd\ufffdI\ufffd\ufffd\ufffd(v\ufffd\ufffd\ufffdoI\ufffdDb\ufffdO\ufffd\ufffd\ufffdr\""\u05ecb)\u0012K\u007f\""\ufffdn\ufffd$\""\u000fI0\ufffd.\ufffdt\u0005\u0005~\u007f \ufffdLF\ufffd\ufffd\u0005\ufffd\ufffdS\u0001\ufffd\ufffd\u007f\u0683&2\u0001%\ufffdh\ufffd\ufffdD\ufffdy\ufffd\ufffd \ufffdy\ufffdRKr\ufffdu\u001f\ufffd\u0014\ufffd\u0003\ufffdpT!\ufffd\u000e\ufffd\ufffd]\ufffdT\ufffd\ufffdq\ufffd\ufffd\n\u07ef\u00038E\ufffd\ufffd\ufffdY\ufffd##`\ufffd\ufffd\ufffd\u0014b\ufffd\ufffd\ufffd\ufffdB\u073a\ufffde&\ufffd\ufffd\u0015\ufffdLU\ufffd\\\ufffd\ufffdb\u03b8\ufffd\f\u011fa\\r)%\ufffdw\u0002)\u001a03:\ufffd\u0012J.\u001bT~\u0014O\ufffdh\ufffd \ufffd\ufffd\ufffd+:\ufffd\u000bS\ufffdn\u0462N$\u0017\""\ufffd\ufffd@\ufffdX\ufffd\\\u0553A\u001c\ufffd\ufffd\ufffd\ufffd\ufffdc\ufffd*/$\ufffd1\ufffd8\u0016\ufffd\u06aeG\ufffd4\ufffdK\ufffd\\\u6991\ufffdP\""\ufffd$\ufffd\ufffdU\ufffd#\r\ufffd\n&e\ufffdc\ufffd\ufffdID\ufffdD\ufffd\ufffd\u0004\ufffd\ufffdJd>bq\u0003\ufffd\ufffd\u001a\ufffd\u0018\ufffdji\ufffdp\u001d\ufffd\ufffd^\u0012iQyyaiC\ufffd\ufffdc\rr\u0019V\ufffdJA\ufffd\ufffd3N\ufffd9\ufffdl\ufffd\ufffd\u0002X8\ufffd\ua65cD\ufffd$\ufffdnjarIdH\""\ufffd\ufffdC\u0007F+\ufffd'\ufffd\ufffd^\""F\u0012\ta\u0019\ufffd\u6836Z\u000b6\ufffd\ufffdD\ufffd\ufffd8\ufffd\u0001\ufffd$\u0018\u001d?]<\ufffd\uda8b\udd4c\ufffdg\ufffd\u0007\u0016\ufffd:C\ufffdr9\u061e\ufffdZ%\ufffdt\ufffdp\ufffd\u0007l{\ufffdx\ufffdS@S\""Qk\ufffd\\\u0000\u0004sy\ufffd&\u0014\ufffd\ufffd\u03de]\ufffd\ufffd\u0618_\ufffd\ufffdn\ufffdb\ufffd\\\ufffdf\u001c\ufffdAj\ufffdO4\ufffd\ufffdR\ufffd\ufffd\u0006\ufffd\u07dd\ufffdNg\ufffdX\ufffdt\ufffd\ufffdd\ufffdl\ufffd\ufffd\ufffd\ufffd\ufffd<\ufffd\ufffd&\ufffdR\ufffd\ufffdcY\ufffd/T\ufffd\ufffd\ufffd\ufffd\ufffd\ufffdb\ufffdxJ\tO<\u0011$\ufffd6\ufffd1\ufffd\ufffd\u0015>H\ufffd[\u02f4\u0014\ufffd8[`\u0006\u000bj\u0005-B\u0010i\ufffd_\ufffd\u007f\ufffdz\ufffd\\\ufffdE=%%\ufffdi\ufffdZ[\ufffd\ufffd3Kg\ufffd\ufffd\u0007\u0019VZ\\\ufffd\ufffdF\u0014\f\u0002\u0005G\ufffd\u0762\ufffd\r\ufffd3\ufffd\ufffd\ufffd$\ufffdlO\u0012\ufffdx\u0012*\ufffdH\ufffdI\ufffda!\ufffdZ\ufffdq\ufffd{\ufffdV!\ufffd\u0014r`\ufffd\ufffd\ufffd\ufffd\ufffd`\ufffdN\ufffd\ufffd\ufffd^4T\u0210B\ufffd\ufffd\ufffdO\ufffd\ufffd\u0010\""E7\u0011\ufffdKp\""\ufffd\ufffdd\ufffdo\u05aa9\ufffdv\u00183Q~\ufffdL\ufffd\ufffd\ufffd\u3b75\ufffd\u0010]\ufffd\ufffd\ufffd[2Q\u054b\ufffd\ufffd\ufffd\ufffd\ufffdLlq\ufffd\ufffd\ufffd5/r\u075a\ufffd\ufffd\ufffd\f\u0013\ufffdlY\ufffdM\ufffd\u0018~S&\ufffd\ufffd\ufffd\ufffd\ufffd\u0017\u0015\ufffd\u001bw\ufffd\ufffdS\u0001\u0015\ufffd\u001c\u0017)\ufffd\ufffd\u0379\ufffd\ufffdQ\n\u000f\u06f4\ufffd\ufffd\ufffd\ufffdD\u0133EZ\r\ufffd\ufffdF[\ufffd\ufffdS\n%4\ufffd\ufffdR\ufffd[\ufffd\ufffd\u0013\ufffd\ufffd\ufffd\ufffd\ufffd/\ufffd\ufffdRxq\ufffd\u001e/v\u0012-Ed\u0010\ufffd\ufffd\u00b9\""n@\u000f?A\ufffd\u001c)\u0014]\ufffd\u0016\u05eab%\ufffdH\ufffd\ufffd\u4ff8J\ufffd\ufffd(\u0013n3\u00fc\ufffd\ufffd\u0012J*\ufffdmQ\u0016\u001a\ufffd\ufffdJ\u0019R\ufffd\ufffd\\\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u0016\ufffdc\u0000e\ufffd\ufffd\ufffd\u0004\ufffdD\ufffd\ufffd\f\ufffdx\ufffd@\u0003\ufffdDga9\ufffd\u001a\ufffd\ufffdS\ufffd\ufffd\b\ufffdr\ufffd\ufffdc\ufffd\ufffd8\ufffd\u058b\ufffd\ufffd\ufffd\u001ef\ufffd\ufffd)\ufffdH\ufffdEm8t\ufffd \ufffd\ufffd7\ufffd1\ufffd\ufffd\ufffd\ufffdR/UR)%\ufffd\ufffd\ufffdr\ufffd\ufffd{i>\ufffdC\f3\ufffd\u0005\ufffdV\b\u001b\ufffd\\\ufffd\ufffdn\ufffd\u0003\ufffd\ufffd\ufffd\ufffdS\ufffd4(\u000b$\u001c\u0004&\ufffdBR\ufffd+\u0005Z?\ufffd_n3\u0016\ufffdK\ufffd\ufffd^S\u0015\ufffd2\""9\ufffd\ufffd\ufffd\ufffd\ufffd\u0014&\ufffd\ufffdE\ufffd\u0002|fhkS\b\u0004\n\ufffd\ufffd\u0007\u3544\ufffd\ufffdu\ufffd\ufffd\u000e\ufffd)\ufffd\u0002\ufffd\ufffdCy\ufffdC!\ufffd\ufffd\ufffdSMb\ufffd\u050f\u0019\ufffd\u0669\ufffd\b\ufffdr\u0001f}\ufffd\u0012h\ufffd\u0087\ufffd\ufffd\ufffd\ufffd\u03ff\ufffd\u0014\ufffd|WW\ufffd\ufffd'\ufffdg\ufffdr\ufffdW\ufffd\ufffd\u0015\u0003i\ufffd\ufffd\u0016\ufffd\ufffd\ufffdE}\u001f7\ufffd\ufffd\ufffd\ufffd\u00bf\u05af\u0005\ufffd\u001f\ufffd\ufffd^a]\ufffd\ufffd\\\b\""-\ufffd+T\ufffd)\ufffd\ufffd\u000b\u065dx\ufffd\ufffdr\u065d\ufffd\ufffd\ufffd]H%\ufffdT\ufffd(g\ufffd\ufffd\ufffdlE\ufffdb\ufffd\ufffd(\ufffdRP*\u0015\ufffd\u001b\u0013\ufffd[\ufffd\ufffdx\u0001\ufffd[\ufffd\ufffdv\ufffd\u000f\ufffd\ufffdk+\ufffd-\ufffd\ufffd\ufffdx\bKE\u0001\ufffd\ufffd\ufffd\u0482\ufffdz\ufffd/\n\ufffd\ufffd[{\\\ufffd\u0004\ufffd\ufffd\t\ufffd\ufffdk\ufffd\u001d\ufffd \ufffdn=U\ufffd\ufffd\ufffdA\ufffd%\ufffdT+~k\ufffd\ufffd\ufffd\ufffd\u0002g\u007fg\u0004\u0014yW\ufffd\ufffd\ufffd t\u001e\ufffd\u0005\ufffd\ufffdQ\ufffd\ufffd\ufffd\ufffdgT\ufffdT\u0261W\u001b?F\r\u001c\ufffd\ufffdc\ufffd\ufffd-pD\ufffd\ufffd\ufffdo\b\ufffdA\u0018\ufffdB\u2909\u00149\ufffd\ufffdo0 \ufffd=?\ufffd]E\u0007\u0250\ufffdO]G\ufffd\ufffd?\ufffd\n\ufffdU\ufffd\u00165ja\ufffdO)jq\ufffd\ufffd\ufffdQ\u0763N\ufffdQ'\u001d\ufffd\u0014\ufffd\u001fe\ufffdS\ufffd\u02ff\ufffd\ufffd~\ufffd\u0013\ufffd\ufffd+\ufffd\u0019\ufffd\u0015|:\ufffd\u03a5\u0007\ufffd\ufffd`\ufffd\u025c\ufffd\ufffd\ufffd\u0018S\ufffdy\ufffd\ufffdX\ufffd\ufffd|\ufffdR\ufffd\ufffd{\ufffd+\ufffd\ufffdx\u0002\ufffd\u0006rCDl`\u001b#\u058ae\ufffdM\ufffd\ufffd\ufffd\ufffd(\ufffd\ufffd\ufffd1\ufffd\u0011\ufffd\u001a\u0004\u0014\ufffd\ufffd`ebQ\ufffd\u000f-\b\u0013!V#\ufffd\ufffd\ufffd)!\u0558\u000f7[\u0353\ufffdIl\ufffdWI\ufffd\ufffdHg8\ufffd\u0016\ufffd\u0004\b\ufffdv\ufffdhZO\u001e\ufffd\u000f\ufffd\ufffdF{)\u0013\u0006j]\ufffd\ufffdx\ufffd\ufffd\ufffdG_\ufffd:\u007f\ufffd\ufffd\ufffd\ufffdk8\ufffd`bs\ufffdz2\ufffd(<\ufffd6\ufffd\ufffd4\ufffd\ufffd+\ufffd\u0003\ufffdw\u001b\u001d\u001bx\ufffd\ufffd=\u054f/%\ufffd\ufffd\ufffd*\u000fZ8\ufffd \ufffd\ufffd\ufffd\ufffd\ufffd\n\ufffd\u0001\ufffd\ufffd\ufffd3\u0003X\u007f\ufffd\ufffd\u0006\u0227k\ufffd\u0006s\ufffd\ufffdb\ufffd\ufffdc}p\ufffd$@R\ufffd\u05d9,f]f$\u001b\ufffdK\ufffd\u0001A7}\ufffd\ufffd\u0019\ufffdF\ufffdz:@\ufffd]?\ufffd`\u04a7MvhLVf\ufffd\ufffd\ufffdld\ufffd*3\ufffd\ufffd\ufffd\ufffdg\ufffd\ufffd\u0016\ufffdf\ufffd\u0003\ufffd\u0002\ufffd,\ufffd\u417f\u0004\ufffd\ufffd\ufffd\ufffdzE\u0000=x\ufffd\ufffd\ufffdD6\ufffd\ufffdE\ufffd\ufffd\u001a\ufffd\ufffd\ufffd\u0130\ufffd\u00d9\ufffd\ufffd\u000f\u0018\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd?lpZ\ufffd\ufffd\ufffd\ufffd\ufffdx6\ufffd\ufffdP\ufffdM'4\ufffd{\ufffd\ufffd6R1\ufffd\u0006\ufffdD\ufffdn\ufffd|\u0011\ufffd\ufffd\u0005\ufffd\u0014\ufffd\ufffd\u0017\ufffd\ufffd)\ufffd3\u001f\ufffd8\ufffd\ufffd\u03e1\u07d6\ufffd\ufffdO\u0007o\ufffd\ufffd\ufffd\u001f\ufffd\u001e\ufffd\ufffd\u0717\u27f9w\ufffd\ufffdA\ufffd\ufffd\ufffd\ufffd\ufffd^2\ufffd\ufffd\ufffd_\ufffd\ufffd\ufffdlJ\n\ufffd\ufffdV\u3eed\ufffd5\ufffds\ufffd\ufffdM\ufffd\ufffde\u0767\ufffd\ufffd\u0013\ufffd/\u001e\ufffd\ufffd\ufffd\ufffd%\u0343\u001b\ufffd\ufffdk%\ufffdA\u001b\ufffd-z\ufffdy\ufffd\ufffd\u001e\ufffd\ufffd\ufffd\ufffd_?|\ufffd?_\ufffd1\ufffd\u0783{_\ufffdh\ufffd\ufffd.?\ufffd?\ufffdT\u027b\ufffd\u0607\ufffd\ufffd2N\ufffdnZ\ufffdnJ\ufffd1\u00eb\ufffd\u0007\ufffd\ufffd\ufffd~\ufffdk\ufffdw\ufffd+\ufffd\ufffdj\u001fQ\ufffd\u058f\ufffd\u0013\ufffd\ufffd)c\ufffd\ufffd\ufffd\ufffd~\ufffd\ufffd\ufffd=\ufffd\ufffd:\ufffd\\\u0767\ufffd\ufffd\ufffd_DO;Bn\ufffd\u01d0\u001ds&/Z-`\ufffd\ufffd\ufffd\b\ufffd\ufffd\u001f\ufffd8\u000b'\ufffd\ufffd>u\u056eK\ufffd\ufffd}i\u0161\ufffd\ufffdb*\ufffdF\ufffd\ufffd\ufffdb\u0011(\ufffd\ufffd\ufffdQ\ufffdH\u02de+\ufffdF\ufffd\ufffdqc.\ufffd\ufffdj\ufffd\ufffd\ufffdI\ufffd\ufffd\u000f\ufffd6=\u0005'nD=\ufffdH\ufffd\ufffd\""\""6\u0002L\u001a\ufffd#\f\u0016\u0006\ufffdkBj\ufffd~\ufffd\ufffdj\ufffd_Z\ufffd\ufffd\u000b{\ufffde!\ufffd\t\ufffd\""b\ufffdj6\ufffd\u0019\u0018\ufffd\ufffd\ufffdi\ufffd\b\ufffd\ufffdb\ufffd\ufffd\ufffd\ufffd\u000f\ufffd\ufffd;\ufffd{\ufffd\ufffd\ufffd\ufffd\u001bD\t\u01f1c\ufffd\ufffd\ufffd#\ufffd\ufffd7\r\ufffd\u001f%im\ufffd^\ufffd\ufffd\ufffd\ufffd\f\ufffd4\ufffd\u007f,g\ufffd\ufffd\u0011{\ufffd8\u0011H\ufffd\u000eM\ufffd\u0019b)\ufffdK\ufffdHBQ\u00b1\ufffd\ufffd\ufffd(w\ufffd\u00154\u0015\ufffd\ufffdY\u0015\u0019\u0000?\ufffd\ufffd\ufffdf\u0007\u001b\ufffd\ufffd\ufffd\u000b1\u0005y\ufffd\ufffd\ufffd\ufffdz\ufffd1KF}\ufffd\ufffd'\u000b\ufffd\ufffd\u0012/\ufffd\ufffd>*\ufffd\ufffd\u00077jN\ufffd\ufffd-\\\ufffd\ufffdT\ufffd\ufffd\ufffd\ufffdw\ufffd~\u001a\ufffd\ufffdhx\ufffd\ufffdq\u07deT\ufffdl\ufffd\ufffd\ufffd\ufffd\u0015~\ufffd\ufffdY\ufffd\ufffdh~\\';cK<\ufffd\ufffd1\ufffd\u00b1x\ufffdt\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd>\ufffd~\ufffd\ufffd\u026d\u01a2\ufffd\ufffd\ufffd$\ufffd\ufffd\ufffd~\ufffd\ufffd\ufffd\ufffdu\ufffd\ufffd\ufffd\ufffdi\ufffd6G?T\ufffd4'\ufffd\ufffd\ufffd\ufffdw\ufffd\u02ce{\ufffd\ufffdk\r\ufffdN\ufffd\u001f\ufffdC\ufffd_&\ufffd=\ufffdu\ufffd\ufffd\ufffd\u0553,\ufffdM(V'\ufffd\ufffdXX\ufffd\ufffd\ufffd\ufffd\ufffd\u0005\ufffd\ufffdK\ufffd\ufffd\ufffd7jN\ufffd\ufffdu\ufffd\ufffdv\ufffd\ufffdNzg\ufffd\ufffd\ufffd\u059e\u063e\ufffd\u02fc\ufffd\ufffd\ufffd\ufffdZ~\ufffd\rh\u000e\ufffd/y\ufffd\ufffd\u03d8\ufffd\ufffd\ufffd\u0015\r\ufffd\ufffd\ufffdQY\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd=\ufffd}\u05e9M5\u03f6\ufffd\ufffd\ufffdx}\ufffd\ufffd\ufffdI\ufffd\u0019\ufffd<\ufffd\ufffdzM\ufffd\ufffd\u001d\ufffd\ufffd2\ufffd\ufffd/\u000f\ufffd\ufffdQ\ufffdt\ufffd|\ufffd\ufffd\u02c5}\ufffdF1,\u0019\ufffd\ufffdw\u0014\ufffd\u0672\ufffd\ufffd\u000b\ufffd_K\ufffdc\u0014S@\u0014k\ufffdKbE\u0012\ufffd\ufffd-\ufffd(\ufffdz\ufffd\ufffd\ufffdl\ufffd0\u31eb\ufffdX\ufffd\u0016\ufffdL\u0012\ufffd\ufffd\u0642\ufffd\ufffd,\u0016$\ufffd\u000bf\ufffdY\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd[\ufffd\ufffdi4zm\ufffd\ufffd\u000b>\ufffd/^<:\ufffdi\ufffd\u0001\ufffd\ufffd\u0005\ufffd\ufffd4 z\u058b\ufffd\ufffd{\ufffd\u030e%\ufffdoV\ufffd\ufffd\ufffdscq\ufffd\ufffdK&\ufffd\\\ufffdR\ufffd\u00e7\ufffd\ufffd\ufffdC\ufffd7\ufffd9u1\ufffd\u001bN\ufffd\u0263kg\ufffd\ufffd\ufffd|\ufffdLtN\ufffd\ufffd\ufffd/o\ufffdrhM\ufffd\u001b\ufffdwwT\ufffd`\ufffd\ufffd\u049b\ufffd\ufffdd\ufffd\ufffd>\u0630~\ufffd\u001b\ufffdc\ufffd>\ufffdg\u0708\ufffd\u007fd\ufffd\ufffdz&\ufffd\ufffdi\ufffd\ufffd[\ufffd\ufffd\ufffd\ufffd_6\ufffd]\ufffdTF\u049bQ\u0013\ufffd?m\ufffd,\ufffd?~\ufffd\u046b\ufffdV\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd[\ufffd\ufffd8\ufffd\ufffd\ufffd9\ufffd_\ufffd\ufffd\ufffd\u0019\ufffd+\u0015\ufffd?V|\ufffd\ufffd\ufffdq7L#\u0007\ufffd\ufffd\ufffd\u0011\ufffd\ufffd\ufffd>\ufffdT\ufffd\ufffd\ufffdg\ufffd>\u001a\ufffdU;u\u0265\ufffdu\u0017\ufffd\ufffd9\ufffd\u007f\u001c\ufffd\u001c:\ufffd\ufffd\ufffdZ\ufffd\ufffd\ufffd\ufffd\ufffd\ufffdLir\ufffd+\ufffd\ufffd\ufffd>(\u1fb6\ufffd>\u001f\ufffd\ufffd8\ufffdV=\ufffdI\ufffd\ufffd\u07f2\u0003\u0003b\ufffd\ufffdy{C\ufffdk\ufffd\ufffd\ufffd\r;\ufffd4\ufffd?\ufffd\ufffd?\u001a-8\ufffd\ufffd\u0799?\ufffd}yW9\ufffd\ufffd>6\ufffd\ufffd\ufffd\ufffdgK\u0004\ufffd$\ufffd\ufffd\u0007\ufffd\ufffd\u007f\ufffd\ufffd\ufffd\ufffd4_\ufffd\u000e\b\ufffd\u001c\ufffd\ufffdx\ufffd\ufffdq\ufffd\ufffd\ufffd\u02ff\ufffd\ufffd\ufffd\ufffdRU\ufffd\ufffd-\ufffd\ufffd\ufffd\ufffdk\u0230\ub1d7\ufffdS\ufffdr?MX6\ufffd\ufffd\ufffd\ufffd$\u01f5\ufffd\ufffd\ufffd\u007feE\u02d8\ufffd\u04b9\ufffd\ufffd=$\ufffd\ufffd\ufffd-{\ufffd\ufffd\ufffd\ufffd \ufffd?\ufffdk\ufffdG\u001f\ufffdI\ufffd=wa\ufffdi\ufffdbtr\ufffd\ufffdK\ufffd\ufffd\ufffd\ufffd\ufffd|\ufffdOn\ufffd\ufffdy\u0155\ufffdA\ufffd\ufffd->\ufffd-\ufffd\b&L\u001f\u0015\ufffd\ufffd\ufffd\ufffd>\ufffd\u001c\ufffd\ufffd\ufffdQ\u00dc\u05f6=\ufffd2\u071f\ufffd\ufffd\ufffd\ufffd\""\ufffde\u001e\ufffd\ufffd\ufffd\ufffd\ufffdC\ufffd]\ufffd|\\\ufffd\ufffd\ufffd_fV\ufffd\""\ufffd\ufffd\ufffd}\ufffd3/\ufffd\u001e\ufffdS\ufffdE\ufffdG\ufffd\u0004\ufffd'Vf/\u001b\ufffd\ufffd\ufffd\ufffd\\\u001bg\ufffd6S\ufffd\ufffdRs./<\ufffd`\ufffdOg\u0396\ufffdkN\ufffd\ufffda3\ufffd\u000b\u0012'\ufffd6\ufffd\ufffd}U_]\ufffd\ufffd\ufffd\ufffd3?\u000e\ufffd\ufffd&oj\ufffdZ\ufffd?\ufffd\ufffd\ufffd\ufffd?\ufffd\ufffd\ufffd\ufffd\ufffd\ufffdg\ufffdE^\ufffd^1\ufffd\ufffd\u000bC\ufffd\ufffd\ufffd\ufffd4c\ufffd\b\ufffd&\ufffd\ufffd7\ufffd]\ufffd\ufffd\ufffdb\ufffd\ufffdY\ufffd\ufffdz\u7649\u0015\ufffdw^\ufffd\ufffd\ud978\udcff|W\u0017y\ufffd\ufffd\u0019\ufffd\ufffd\ufffdV\ufffdj\ufffdff\ufffdw};\ufffd\ufffd\ufffd\ufffd\ufffd\ufffdB\ufffd0d\ufffd\ufffd3J\ufffd\ufffd\ufffdE\ufffd\ufffd\ufffd\ufffd_\t_\ufffd\u001d(\ufffd\ufffd\ufffd\ufffd#\ufffd\u0690\ufffd\ufffd\ufffd+2\ufffdw\u001d>\ufffd\u0740\ufffd\u03d3\ufffd\u0017\u07ed[\ufffd?\ufffd\ufffd\u007f\u9cf9/\ufffdh,\ufffdx\ufffd\ufffd\ufffd\ufffd\u3a67\ufffd5\ufffd0[zd\ufffd\ufffd\ufffd\ufffd~\ufffd2M\ufffd9NL\ufffdp\ufffd(\ufffd\ufffd\u001e\ufffd3\ufffd\u0007\ufffd5\ufffd\ufffd9$\ufffd\ufffd>\ufffd\ufffd!\ufffdT.[\ufffd\ufffd\ufffd\u02e9:*4\ufffd\u00066f\ufffd\ufffd!=\ne\u001e\ufffd\u0002\rS\ufffd\ufffd\u0019\ufffd\u001d6K,\u0016\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u0006\ufffd\u01a1g\u0006W;\ufffd\ufffd\u001cu8\ufffd\ufffd\ufffdl\u000e\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u061e\ufffdI\ufffd\ufffd,\ufffd\ufffd\u03dd\ufffd\ufffd,\ufffdo\ufffdf\ufffd\ufffd\ufffdg\ufffd\ufffd%\ufffd\ufffdK\u000f=\ufffd\ufffd\ufffd\u07fc\ufffd\ufffd\u0609{O}\ufffd\u001e\u001f\ufffd{\ufffd]\u001f\ufffd\ufffd\ufffd`\u0019\ufffd\u001f%\u001fO\ufffd\u00104z}\ufffd!\ufffd\ufffd|/\ufffd\ufffd\u000f4\ufffd\ufffd\ufffd\ufffd\u007fZ!\ufffd\ufffd#\ufffd\u0736\ufffd%\ufffd\ufffd\ufffdeO\\\ufffdZ\u0011\ufffd\u06b1\ufffd\ufffd\ufffd\u007f\ufffd\u001f\ufffd\u0536#\ufffd\ufffd\ufffdy\ufffd\ufffd\ufffd\ufffd\ufffdN\ufffd\ufffd\ufffd\ufffd}C\ufffd\ufffd\u007f\ufffd\ufffd\ud904\udebf'}>b\ufffd\ufffd\ufffd%\ufffdHO|\ufffdi\ufffd\ufffd\u0012\ufffdt\ufffd\ufffd\ufffdk\u05b0\ufffdeWf\ufffdO\ufffd\ufffd\ufffd\u0266\u0003\u0017\ufffd75\ufffd\u007f\u0018pE\ufffd\ufffddS\u024b\ufffd\ufffdl\u001d\ufffd\ufffd\u001eY\ufffd\u062f|\ufffd\ufffdo?\u0012/\ufffd{\ufffdoKw\ufffd\ufffd\f\ufffd5n]zqjm'\ufffdX\ufffdD\ufffd\u0003\u020f\u001dq\ufffd\ufffd/cG\ufffdv'\ufffd\ufffda\ufffd;\ufffdiwh\ufffdrz6\ufffd\ufffd\ufffd\r\ufffdvw\ufffd\u03bdc\ufffd3\ufffdJ\u0002\ufffd\ufffd\ufffdDnS\u0018\u034ed\ufffd7\u000fm\u001e\ufffdTt\ufffd\ufffdbO\ufffd\rF\u0121\ufffdl\bS\ufffd6\ufffdQ,\ufffdn^\u001bB\ufffd\u007f\ufffdH\ufffd\ufffd1\ufffd\ufffdz\ufffd\ufffda\ufffd\ufffd\u07e6\ufffd\ufffd\ue947\ufffd}\ufffd\u00cb{k>;U7i\u001c\ufffd?\ufffdQ5\u02e4\f\ufffds\ufffd?\u0016>|(\ufffdL\ufffd\ufffd\ufffdLe\ufffd\ufffd\u000b\ufffd\u001d\ufffd\u0004\ufffd\ufffdb\ufffd<\u001e\ufffd}\ufffd\u332d\ufffd-K\u027e\ufffd\ufffd\ufffd3\ufffd\ufffd\u0013%sdM\ufffd%\u0006\u0011Ci03\ufffd\u001a\ufffd,!%k\ufffd\f\ufffd\ufffd\ufffd\u6511eB\u001c\u001c\ufffd=t\ufffd\ufffd-\ufffdA%\ufffd\ufffd\f\u0743[\ufffd{\ufffd\ufffd\ufffd\u039f\ufffd\ufffd\ufffd\ufffd-\ufffd\ufffd|\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd^\ufffd\ufffd\""\ufffd5^\u007f\u0536\ufffd\ufffd\ufffd\u0208(cdQ\u0015v1\ufffd}F\ufffdqn\ufffd6\ufffd\ufffd\ufffd9\ufffdxt\ufffd\ufffdk\ufffd\ufffd\ufffd7\u0013\ufffd\ufffdz\bu\ufffdI\ufffd\ufffd\ufffd\ufffdLS7!2R\ufffd\ufffd>\ufffd\ufffd\ufffd\ufffdC9?\ufffd\ufffd\ufffd\ufffd\u00164\u02fc\ufffd\ufffd\u001e\ufffdL%k\ufffd9\ufffd\ufffdh\ufffd5\ufffd\ue937?-VBo\ufffdM\b\ufffd\r\ufffdC0\\G1\u0010\ufffd<}^\ufffd\ufffdUv\ufffd\ufffdzv\ufffd\ufffd\u000b/\ufffd\u0007\u0799\ufffd^nTSt\u0265\ufffd\ufffd\u000e\u0003\u001b\ufffdv\ufffd\n\ufffd\ufffd\u0003Z\ufffd\ufffd\ufffdN\ufffd\ufffd\u0007\ufffd\ufffd\ufffd:\u0007\ufffd\ufffd\ufffdkWz\ufffdQ\ufffda\u0013\ufffd\ufffdF\ufffdY\ufffdLf\ufffdO\ufffd+\ufffd8\ufffd\ufffd\u0001G{ \ufffdwW\ufffd\ufffd\ufffdPPe\r\u0011ro\ufffd\u0011C\ufffd\u0013\u0017\ufffd\ufffd(U\ufffd0\ufffd\ufffd\ufffd4\u0013\ufffdp\ufffd\ufffd=\ufffd\u001a\u056c\ufffd4\ufffd`\ufffd\ufffdU\ufffd\u0005\u0007#C\ufffdj\n\ufffd\ufffd\ufffdls\ufffd\ufffdg\u0002N\ufffd\ufffd%\u0000xM\u001a\ufffd\b5gII\ufffd\u001bN)NU-\u001b\ufffd)u\ufffd!\b'\u000fA\ufffde\\\u001d\ufffdm\ufffd\ufffd\u0007\ufffd3[5\u0003j\ufffd\ufffd0\ufffd\ufffd\ufffd%i\u0019\ufffd:9\ufffdGe\ufffdtb\ufffd\ufffdn?\ufffd\ufffd\ufffd\ufffdi\u000fN,\ufffd\u0006l\\C\ufffd\ufffd\ufffd>d\ufffd\u001c'\ufffd\ufffdU\ufffd)\u001a\ufffd\ufffd\u0001\ufffdQ.\ufffdO\ufffd\ufffd\ufffd|\ufffd\ufffd\ufffd\u0015\ufffd3\u059a\ufffd\ufffd(\u0522(\ufffd4\u000f[H!\ufffd\u0004\t\ufffd'F\ufffd\u0005I\ufffd\u0010\ufffd\ufffd\ufffd\ufffd\u001c\ufffddi\ufffd\ufffd\ufffdV\ufffd\ufffdwb\ufffd-\ufffd\ufffd\ufffd\u001f\u0019=\u0003b\ufffda\ufffd>\ufffd\ufffd\ufffd\ufffd\u0005\ufffd\ufffd\ufffd\n\ufffd\ufffd\u001a\u001d\ufffd\ufffdL\ufffd\ufffd}\ufffd\ufffd,=\ufffd\ufffd\ufffd\ufffd-|\ufffd\u001b\u0000\ufffd\r\u000f\u0010Y\ufffd\ufffdD\u0001\u05cd\ufffd-\u00140}\ufffd\u0002\u00a3\ufffd/K1\u0002\u0000\ufffd$\ufffd\ufffd_I\ufffd\u001dA\u0000\ufffdcC\u001d\u0001\ufffdi|\ufffd\ufffd\ufffd\""\u001c\ufffd,\ufffd\ud085\b\ufffd\ufffd\u001d\ufffdMv\ufffd\ufffd\ufffd\ufffd\\\ufffd\ufffdj \ufffd\b\ufffd\ufffd>\ufffd\u0007D\u001eS\ufffd\u01cb\ufffd\ufffd$\ufffd\r\ufffd!\ufffdS\u000e\u0016\u000f\ufffd\ufffd\ufffdB\ufffd\ufffd\u01d7\u001b8\ufffd^\u001f\ufffdm\ufffd\ufffd\u0003/\ufffd\u05e7\ufffd\ufffd6k\ufffd0\ufffd\ufffd\r\ufffdb8q\u001eQ\ufffd\ufffd\ufffd\ufffd\ufffd\ufffdd!\ufffdLy\ufffdt\u000ee\ufffd*gWj(\u9fefX\ufffd\ufffd[\ufffd2\u017e\ufffd\ufffd\u0010\u02d4W\ufffd$\ufffd\ufffd\u0010/l\ufffdp\ufffd\ufffd\u000b\u02b1\n\u7fa7P\ufffd\ufffdB\ufffd_\ufffdK\ufffdN\ufffd\ufffd\ufffdF\ufffd\ufffd\ufffd=\ufffd\ufffd=\u0530\ufffd$\u0014\ufffdr\ufffd\ufffd\ufffd\ufffd\ufffdA6\ufffd\u001e'\\\u001eRa\ufffd\ufffd\ufffd\ufffd\u0017R\ufffd\ufffd3\ufffd6\ufffd\ufffd\ufffd#nj#\ufffd\ufffd\u000f\u001c\ufffd\u056c@\ufffd\ufffd\ufffd\ufffd\u001a\u07bc\ufffd\u001fZ\u001e\u001a)\u072f[\u0016\ufffd<\u0019c\u001e!\ufffdH\ufffd\u067f\ufffd\ufffd\ufffd\\\ufffdb\ufffdX\ufffd\ufffd;\ufffd\ufffd\u00a4SV^\ufffd\ufffd~\ufffd3\ufffd\ufffd\ufffd\ufffd\ufffd\u69a4\ufffdl\ufffd\ufffd\ufffd\ufffd\ufffdS\ufffd\ufffdp\ufffdtP:\ufffd\ufffd\ufffd\ufffdL\ufffd\ufffd\u001f]\u0017\u06adhqIQ\ufffdO$1\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffde\ufffd4~8\ufffd\ufffd\u01f2\ufffdb\u0011\ufffd\ufffd^3n\ufffd\ufffdF\u4459\ufffd\u0463\ufffd\ufffd]\ufffd&\ufffdVO\u001f\ufffd\ufffd\ufffd0-t\ufffd\u001da=\ufffdc\u7779-\ufffdB(+\f#\ufffdE \ufffd\ufffd'\u0002\ufffd\u001a\ufffd\ufffd\ufffd&\u0013\u001ad\ufffd)id\ufffd \ufffd\u060f\ufffd\ufffd\ufffd5\u0004\ufffd\u0003'd\ufffdhF\ufffd\ufffd\ufffd\""\ufffd\ufffd\ufffd\ufffd\u03d8\""\ufffd\ufffd\ufffd\ufffdC3\ufffd\ufffd%\ufffdK\ufffdF\ufffdR\ufffdCg{gM&\ufffd\n\u0005|\ufffd\ufffd\u0005ag\t\ufffd\ufffd\u0731\ufffd\u5c08\ufffd\ufffdw\ufffdh!\ufffd\ufffd\u0362\u001b\ufffd\u0013\ufffd\u0012\ufffd\u05cd\\=\u0016\ufffdt\ufffd\ufffd\ufffd\ufffd\ufffd\ufffdK_\ufffdY\ufffd]\ufffdG\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u023c\ufffdak\ufffd\u0010\ufffd\ufffd\u000fsV*\u0003\ufffd\ufffdo\u0004\ufffd\ufffdn\ufffd\u0012\u0589\ufffdQ\ufffd\ufffd\nU\ufffd]i\b\ufffd@_\ufffd\ufffdVo\ufffd\ufffdU\ufffdv\ufffd~\ufffd\ufffd+\u0014MJ-/\ufffd\ufffd3\ufffdFX\ufffd\ufffd\ufffd\ufffd>\ufffd\ufffd\u001f;\ufffdLD\ufffd\ufffd\rb\ufffd\ufffdK7|\ufffdt\u0660\n\u0019\ufffd:\ufffdy\ufffd\u000fEC\ufffd4F\ufffd\ufffd\u000ei)o\ufffd,?IX2R\u001c\\\ufffdj\ufffdQ\ufffd\ufffd\ufffd-~[\""7\ufffd\ufffdz\ufffd\ufffd$]>5\u0354K\u0007\ufffd\ufffd'\ufffdW\ufffd\u0001!8\ufffd\u0428\ufffd\ufffd1\ufffdg\ufffd\u0006{\u0013{}\ufffdO\ufffdo\ufffd\ufffd_\tD[\u001e\ufffdSG\\\ufffd\u0013\ufffd\\\ufffd,\ufffd2\ufffd\ufffd)\ufffdVn\u001f\ufffd\ufffd\u001fPP\ufffdi\ufffdga\ufffdg\ufffd\ufffd\ufffd\u0012\ufffd\ufffdL\ufffd\ufffdO(\ufffd\ufffdG\u0012.\ufffd\u0004\b\ufffd\u001d/\b~\ufffd\u000f\ufffd\ufffdmp\ufffdr\ufffdl\u0010E\u001dN\ufffd\u001c\u001aXZY\ufffdO\ufffd-7\ufffd,/\ufffd}\ufffd\u0019ut\u0311\ufffdN\ufffd.k\bk\u0007kY\ufffd8\u007f\ufffd\ufffd\ufffd\u00c5\u007f4\t3\ufffd\u000e\u001d\ufffd\ufffdK~n\ufffd\u00136\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffdK6\ufffd\ufffd_J\ufffd\ufffdkb\u0313N\u0010ogPh,\ufffd\ufffd\ufffd;\u001e\""\ufffd\ufffd\u0519\ufffd\ufffd\ufffd\ufffdK\ufffd\u001a'\ufffd\u0017\ufffd\ufffd\ufffd&\ufffd\ufffdZ\ufffd\ufffdV\ufffd\ufffd\ufffd\ufffd\u000b\ufffd\n\ufffdL\u001fI\ufffd\t\ufffd|\ufffdH{\u0007\ufffd\ufffd\ufffd\ufffd\u01fe\u0003\u0013\ufffd}\ufffdJ\u0581Y\ufffd\u05c7\ufffd\ufffd\u0428\ufffd:\u001d\ufffd6f\ufffd4\ufffd\ufffd\u0014\u0019\ufffd\u000f!\ufffd\ufffd?\ufffd^\ufffd\ufffdv\ufffd\ufffd\ufffds\u001d9:\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd'\u0006-\u0019\ufffd\ufffd\ufffd\u0004c\ufffd\r\\v]\r\u001a}\ufffd\ufffd\ufffd\""\u001f'\ufffd\ufffd\u0019\ufffd\ufffd\\\n\u0010\ufffd\ufffd@\ufffd\ufffd@x\ufffd\ufffd\r\ufffd\ufffd\ufffd\u0006\ufffd\u001c\ufffd\ufffd\u009fn.>\ufffd\f\ufffdLp\ufffd\ufffd\ufffd.\ufffdY\ufffd\ufffdp.`w\ufffd\u0000 \ufffd\u04d0\u0019N_\ufffd$\ufffd\ufffd\ufffd\ufffd{_\u001cF\ufffd\ufffd\u009d\ufffd8\u03ccT7T\u0001\u001e\ufffd\ufffdp\ufffdm\u0000k\u0012\ufffd \ufffd]\u001f\ufffd\ufffd\ufffdN;\ufffd!\ufffd\u033f\ufffdl\ufffdm\ufffd\ufffd\ufffdWlf&22X=\ufffd\ufffd\u00b7\ufffd\u007f\ufffdi/\u0016\ufffdIL\ufffd^z\\\ufffd\r\u0011\ufffd\u000f?XNy4\ufffdr\u0006\ufffdC\""\u0004\ufffd\ufffd\ufffd\ufffd\ufffd\u0003AX1\ufffd\ufffdW\ufffd'>/zQL\ufffd\ufffd\u0015K\ufffd\ufffd\ufffdI\ufffd*\ufffd#\ufffdiU\ufffd=M\u0012P\u0006\ufffd\u0006\ufffd\u0424\ufffd\u0012\ufffd\u001b/`^.\ufffd\ufffdI\u001f\u025ep\u041fHK\ufffd\ufffdI\ufffdx\u03f6\ufffd\ufffd!\ufffd\ufffd\ufffd4N\ufffd\u0011\u02e0\ufffd[\ufffdL\ufffd4WC\u017b\ufffdc\ufffdM\ufffd\ufffd F\ufffd\ufffdF\ufffd\u001e\ufffd\u001d6lru\u001a\ufffd&\ufffd\ufffd\ufffd\ufffd\ufffd\u0015\u001c\u01b9\ufffdFt\ufffd'FF\ufffdYs\ufffd\ufffdy\ufffdB\u001fDRlE\u001a%y\ufffd\ufffd;f\ufffd]M\ufffd]\ufffd\ufffd\ufffd\ufffdh\ufffd\ufffdl\ufffd>\ufffd\ufffd\ufffdj\ufffd\u001bP\ufffd\ufffd\ufffd\u0001^\ufffd\ufffd\u000bk\ufffd\ufffd\ufffd\ufffd\u0006\ufffd\u001ePy\ufffd\u0002\ufffd\ufffd\ufffd^\u0018J\u0676\ufffd sg\u001eM(\ufffd\ufffd\u000e\ufffd\ufffdv\r\u000b\ufffd{s\u001b\u0019\u000e\ufffd\ufffd\u0002\ufffd\ufffd\ufffdpU\ufffdo\""r\u0006\u007f\ufffd`\u0119mr\ufffd\ufffd2\ufffd *\ufffd\ufffd\ufffd\ufffdP\ufffdW\ufffdi3V\ufffd/>zw{9\ufffd\ufffdb\ufffd\u0001\ufffd\ufffd\bk\ufffd\ufffd\ufffd\ufffdB\ufffd#5\u007f\ufffdH\ufffd\ufffdxndK\ufffdt\ufffd6.\u053b\ufffdO\ufffdIS\ufffd\ufffd\ufffd\u01b1\ufffd\ufffdk\u0015~\ufffd\u008cU\ufffd^7j\ufffd\ufffdk\ufffdj+\ufffdX\u00131\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u0005M\u0016\u012f\n7.D\ufffdtA\ufffd\ufffd\ufffdj\ufffdh\u0015\ufffd>\r2\u0007\u0018\u000b3\ufffd\u001b0\ufffdC1=\ufffd\u001ei\u0016fj\ufffd\u00067D\ufffd,\ufffd\ufffd\u01aa\u0007\ufffdK+tY?HY\ufffdI\ufffd\ufffd\u001fx\ufffd\u0011\ufffdDyq\ufffd\ufffd\ufffd\ufffd\ufffda\ufffd\ufffd\ufffd\u0013\ufffds\ufffd\f\ufffd\ufffd,\ufffd\ufffd\ufffd\ufffd\ufffd\ufffdm7 \ufffda\ufffd#t[\ufffd\u059di\ufffd\u0015$\\\ufffd*'\u0010L>\ufffd\ufffd`\ufffd\u001az\ufffdy\ufffd\ufffd~2\ufffd}\u34dc\ufffd\ufffd\ufffd\u019b\ufffd\n\u0017\ufffd\ufffd-\ufffd'pk8RB\ufffd\ufffd\u0719JO\ufffd\ufffd{\ufffde\tx\ufffd,\ufffd\ufffd[\ufffd\ufffd6\u007f\ufffd\ufffd\u0007\ufffdA-\ufffd\r\nendstream\r\nendobj\r\n782 0 obj\r\n[ 220 0 0 0 0 0 688 0 0 0 0 0 0 332 205 0 554 554 554 554 554 554 554 554 554 554 0 0 0 0 0 0 0 623 611 563 662 575 537 611 687 324 307 0 537 815 0 653 568 0 621 496 593 648 604 921 0 0 0 0 0 0 0 0 0 488 547 441 555 488 303 494 552 278 0 524 271 832 558 531 556 547 414 430 338 552 504 774 483 504 455] \r\nendobj\r\n783 0 obj\r\n<>\r\nstream\r\nx\ufffd\ufffd}\u000b|T\u0575\ufffd\ufffd\u7719d\ufffdI\ufffdL2dHr&C\u0002dB&\u0244\ufffd\ufffd@&O \u0011\b!H\ufffd\ufffd&d\u0002\u0001#\ufffd\ufffd\u0007V Vy8<4>Z_Ul\ufffd\ufffd\ufffd\ufffdq\u0012l\u001b\ufffd\ufffdh)\ufffd^\ufffd\ufffdZ\ufffd\ufffdk\ufffd\ufffd\ufffdU)\u8d6dXI\ufffd\ufffd\ufffd3\u0013\u0003\ufffd\ufffd\ufffdw\ufffd\ufffd\ufffd~\ufffd\ufffd\ufffd\ufffdk\ufffd\ufffd\ufffd\ufffd{\ufffd\ufffd:G\ufffd\ufffd\u0018\u0011\ufffd\ufffd\u0014j\ufffd\ufffd\ufffdm\ufffd.cN2\ufffd\r\ufffd\u0010\ufffd\ufffd\ufffdU_R\ufffd{\ufffd`%\ufffd5\u001f\u0012\ufffd\ufffd[\ufffd\ufffdSr\ufffd\ufffd\ufffd\ufffdDl'j\ufffdu\\\u067e\ufffd;\ufffd\u0007*\ufffd\ufffd\u0289\ufffd\u078ek{TY\ufffd\ufffd\ue6bb\ufffd\ufffd\u001f\\\ufffd~\ufffd\ufffd\ufffd=d\ufffd\u0012\ufffd\u001eD#\ufffdVwoZ\ufffd#\ufffd\ufffdDW\ufffd\u0012\u001d\ufffd\ufffd\ufffd\ufffd\u001e\ufffdh\ufffdsG\ufffd\ufffd\b\u007fe]PX\ufffdNw\""_\ufffd\ufffd\ufffd\ufffd+{\ufffdOQg\u06d1\u007f\ufffd\ufffdf~\ufffdU\u001d\ufffd\ufffd*\ufffdH\u030e:3\ufffd\\\ufffd~\ufffd\ufffdI\ufffd\u0015\ufffdg]\ufffdW\ufffd\ufffd\ufffdi/\ufffdN\ufffdrb\ufffd\ufffd\u000f\u0532\ufffd\ufffd\ufffd\ufffd\u0006\u02cf\ufffd%\ufffd\u0002\u007f\ufffd;\ufffd_\ufffd\ufffdgd;\ufffd`R\ufffdu\ufffd\ufffd\ufffd\ufffd\ufffdP>&\ufffd\ufffd\u0006mRz\ufffd:]#]\ufffd\ufffd\u0007\ufffd\u0011x\u001d\ufffd-\ufffdI\ufffd\u0007\ufffdL^\ufffd\ufffd\ufffd\ufffd\ufffd\u001a.\ufffd\ufffdu\ufffd.\ufffd$\ufffd\u001f\ufffd&\ufffdCZ\ufffd\ufffd+I:M\ufffd\ufffd\ufffdT.}\ufffdV\ufffd\ufffdi\ufffd\ufffd'Z\ufffd\u07a1F\ufffdT%\u03e5*\ufffd4\ufffd\ufffdv\ufffd8\ufffd\ufffd\ufffdW~M\ufffd\ufffdE@\u0001\ufffdh6\ufffd.\ufffdn\ufffd\ufffd\ufffd\ufffdt\ufffd4\ufffd\n\ufffdF\ufffdRh\ufffd\ufffde\ufffdHo\ufffd\u0004.KO\u04bc\ufffd\ufffd\ufffd\ufffdz)\ufffd\ufffdQ\ufffdv\ufffd\ufffd=$\u0366\ufffd\ufffd\ufffd\ufffdma\ufffdsb\ufffd\ufffdJQ\ufffd\u001b\ufffd-0\ufffd\ufffd\ufffd\ufffd:\u0018\ufffd\u0018\ufffd(F\ufffd\u0003I\u03a5\ufffd\u03e3]\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd-\ufffd/*\ufffd5\ufffd\""_\ufffd\ufffd%J9\ufffd\u0004\ufffd\u001c\ufffd\ufffdA\u000er;\ufffd\u001f\ufffd\n\ufffd\ufffd\ufffd\u0001_\u0007\ufffd\u0000{\ufffd]\u0019\ufffdV\ufffd\ufffdM\u049bT \ufffd\ufffd\ufffd\ufffd\ufffdx\u000e\u000f\ufffd\u001c\ufffdmZ\ufffd,\ufffd\ufffd\ufffdW\ufffdo\u001d\ufffd\u0007\ufffd\ufffd\u0005;` \ufffd\ufffd\u000e\ufffd\u0003\ufffd\u0004|\u0011\ufffdK\u062d\ufffd\ufffd\\\ufffd\ufffd\ufffdj\ufffd\u0002t\u0000\u001b\ufffd\ufffd\ufffdv`5pcD\u007f\ufffd\ufffd\ufffd\ufffdy\ufffd\ufffd<\ufffd\ufffdW\ufffd\u001fid\ufffd\ufffd\u01b3\ufffdB\ufffd\ufffd\u0015\ufffd\u02c0T\ufffd~\ufffd\ufffd\ufffdg\ufffd\ufffd\ufffd\u001f(W\ufffd\u0360\u0015\ufffdAZ!\ufffd_\ufffd|ID\ufffd\u0017\ufffdY\u001f\ufffdJy9\ufffd\ufffdE\ufffdC\ufffdEN\ufffd2\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd6\ufffd\ufffd\ufffd\ufffd2\ufffd\ufffd\u0018-\u000f\ufffd\ufffd\ufffdQ\ufffd\ufffdt:4)\u0017\ufffd\ufffd(\u00a7\ufffd]\rj\ufffd&\u874e\ufffdf\ufffdFM\ufffd\u001c\ufffd#\ufffd+\ufffd\ufffd\u029d\u0001\ufffd\ufffdV-+\ufffd\r\u0004.\ufffdIL\ufffd\ufffd\ufffd\u0005\u075c\ufffdB\ufffd~\u3e1aZ\ufffdR\ufffd\ufffd\ufffd;\ufffdl\ufffd\ufffdL9iT\ufffdMr\ufffd#fH\ufffd\u001by4\ufffd\ufffd\ufffd\ufffdR4f\ufffd\ufffd.\ufffd\ufffd\u0004\ufffdv\ufffd\ufffd\""1\ufffd\u000b\ufffdu\ufffd\u0005\ufffd \ufffd\ufffd\ufffdObz&\u001cQ\ufffd\u001aRC\u036d\u0016/D\ufffd\ufffdF\ud645\ufffd\ufffd\ufffd\t5\ufffd\ufffd\ufffd\u0004(H(\ufffd?!\u0011\ufffdD\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd8\ufffd\tA2\ufffdM\ufffd(>\t\ufffd\ufffd\ufffd\ufffdq\ufffd\ufffd\ufffd\ufffd\ufffd \ufffdj\u00117\ufffd\ufffd|R282\ufffd{l\u0011\ufffdZTJ\tK\ufffdNh\ufffd\u001a-.\ufffd\tu\ufffd\ufffdo\ufffdh\ufffd\ufffd_0\u0014\ufffd=h\ufffd\ufffdmnc\ufffd\u0015l_\u07aa\ufffd\ufffd0\ufffd'9\ufffd\ufffd\ufffdE\u001b\ufffd\u0634\u0014*4\u0005\ufffdu\ufffd|\ufffdk\u0005\u34e7\ufffdu\ufffd!\ufffdm\u001b\ufffd\ufffd\ufffdO\ufffdy\ufffd`Wg\u001b_&\ufffd\ufffdU\ufffd2V\u04fa\ufffd9\ufffd\u042cH\ufffd4\ufffd[K\ufffdY\ufffd\ro8\ufffdP\ufffd}\ufffd\u02b3\ufffd\ufffd\u000eU\u06c7\ufffd)ur\ufffdE`G\ufffdCu.\ufffd\u0006guk\ufffd\ufffd\ufffdxF\ufffdM\ufffd\u01b9A19\ufffd]\ufffd\ufffd\u05bbrmx\ufffd\ufffd\uf3ae\u007fg\u022c\u0019\ufffd\ufffd\ufffd\ufffd`~PST\ufffd\ufffd2\u0636\ufffdwym;\u001ff\ufffdZ5\ufffd\ufffdS\fu\ufffd\u0018\u001a\u05abZ\ufffd\ufffd\ufffd\ufffdW\ufffd\ufffd\u0168\ufffd\ufffd\ufffd\ufffd\ufffdU\ufffdI\ufffd\u00188\u00049\ufffd\u00baN\ufffd6\ufffd\ufffd+\ufffdBu\ufffd\ufffd\ufffdA\ufffd>\ufffde\u0014|\ufffd\u007f\ufffd'\u001cn\ufffd\ufffd\ufffdh\ufffd\u0016\ufffdP\ufffd\ufffd\u0003\ufffd\ufffdo\ufffd\rDT\u0011\ufffd\ufffd\ufffd\u001a/i\ufffd\r\u0004\ufffd\ufffdy\ufffd\ufffd\u0016\ufffd\ufffdCW\ufffdRC\ufffdc\\\ufffd\ufffd\ufffd6;\ufffd\ufffdlhJAcsk]\ufffdC\ufffd^\ufffdjZg\ufffd\ufffd;NAnl\u001aU3;lB\ufffdS\ufffdp\ufffd\u001a\u0017\ufffd\u001a\u0017\ufffdWAW\ufffd\ufffd\ufffd\ufffd7\ufffd4:\ufffd0\ufffd\ufffd\u000b\ufffd\ufffd\ufffd\ufffdayyk\ufffd\ufffd\ufffd-\u0014\ufffdw\ufffd\ufffd\ufffd\ufffdP\ufffd\ufffdH\ufffdJ\ufffdjv\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd6Ul\u007f\u0006\ufffdc\ufffd\u001cZ\ufffd\ufffdfn\ufffdb\ufffd\ufffd\fqw*_{\ufffd\u034dZ\ufffd\ufffde|\ufffd\ufffd\u056e\ufffd\ufffd\ufffdQ\ufffdr\ufffd;\ufffd\ufffdQ\ufffd\ufffd\ufffdW\u001c\ufffdsX\ufffd\ufffd\u0003|\u03c5\ufffd\ufffdo\ufffd8\ufffd\u001cj=?j\u0006qB84s9\u07f2\ufffd\ufffd\ufffdV\ufffd\u000e\ufffd~\u0005\ufffd^Y\u0004\ufffd\u000e\ufffdk\ufffd@n\u075aE\ufffd`aeF\u0016\u000f?\u0003\u0017F\ufffdp\ufffdt\ufffd\ufffd\ufffdk\ufffdO+\ufffd\ufffdz\u0017\ufffd\ufffd\ufffd*\ufffdt\f\ufffd\ufffd\ufffd\ufffd<\ufffd\ufffdh\ufffdm1/\u9356\ufffdVosa\ufffd\uc34b\ufffd\ufffd\ufffd\u001e\ufffd\ufffdC\u0016\ufffdU\ufffdyD\ufffd\ufffd\ufffd\u001b\u0506Z0\ufffd\u000f\u02f5\ufffd\ufffd\ufffd\u0527\u0534\ufffd\u000e)\""I\u000e\ufffdK\tn\u001ce\u0015Z\ufffd[T\ufffd1\ufffd\ufffd\u00192\ufffd\ufffd\ufffd]\ufffd\u066d)5\ufffdC\ufffd\ufffd\ufffdj\ufffd\ufffdc\ufffd\ufffd\ufffd\ufffd;\b'\ufffd\ufffd2~\ufffdR\ufffdYc\u0015\u001aK\ufffdz\u00b9*\ufffdw9\ufffd\u001c\ufffd\ufffd\u000bI\ufffd\u000b\ufffdEV\ufffd\ufffdaE.\ufffd`\ufffd\ufffd\ufffd\u0006\u001b\ufffd\u000b\ufffds\ufffd\ufffd-V\u0017\u001f\ufffd1q\ufffdEN\ufffd\ufffdz\ufffd\ufffd\u001c\u03b0EC@K\ufffdg\ufffd\ufffd\ufffd\ufffd`\u8be3\ufffdU\ufffdI\ufffd\ufffd\ufffdP\bj\ufffd\ufffd\ufffd'[S\ufffdj\u0151\u0010p\ufffdU\u000f\ufffd\ufffdh\ufffd\ufffdG \ufffd\ufffdM\u001c\ufffd%\u000e\u001e\u000e\ufffd\ufffdkmJ\ufffdg]\ufffdX\ufffd7\ufffd\u000etM\ufffd\u0017\u007f>F\ufffdNE\ufffdb\ufffd\ufffd\ufffdF\ufffdT\ufffd\ufffd(\ufffd\ufffd\\>\ufffd\ufffd\ufffdG\ufffd\u0018\ufffd\ufffd\ufffdc\ufffd9\ufffd\ufffd\ufffd\ufffd\u06b1P3\ufffd\u0002\u0017\u000byc\ufffdy\ufffd1\ufffd\ufffd\ufffd\ufffd\u0453\ufffd\ufffdU\ufffdwG\ufffd\ufffd\ufffd\u074e\ufffd\ufffd9\u0017\u0014\u03cd\u0016\ufffd\ufffd\ufffd\ufffd\u0001\ufffd\ufffd\ufffd9\u0014\n\ufffd\ufffd\u0004\u0006~G?\u0013\ufffd\ufffdfW@[\ufffd\u000e\ufffd\ufffd\ufffdn\ufffd\ufffd\ufffd\ufffd\u026f\ufffdx2:[\ufffdj0\ufffd<\ufffd\ufffd\ufffdv\u0004\u000f\ufffd\u0014q\f\ufffd\ufffd\ufffd<\ufffdq\ufffd@\ufffd\ufffd\""\ufffd#b\ufffd\ufffd\ufffdZ\""z\ufffd7&\ufffd\ufffd\n\ufffd\u000e\ufffd\ufffd\ufffd\ufffd\u0003]\ufffdOq7\u000b\u0007\ufffd\ufffdu=N0\ufffdi\ufffd)\u000e\ufffdZR\ufffd\ufffdv\u001c\ufffd\ufffd\ufffd\ufffd\u0438\u02a3\ufffd\ufffd+^\ufffd\ufffd\ufffd#am\u001c\u001f\ufffdQ\ufffd\u000e\ufffd\f\ufffd|\u0775\ufffd9\ufffdpd\ufffd\u0646o\u0006\""\u0007\ufffd\ufffd\ufffd\u0014\b]\ufffd\u0416\ufffd\u0689\ufffdP\ufffd$\u0521P|\ufffd\ufffd+\ufffd\ufffd\u0015\ufffd4\ufffd.\u000b\ufffdr\u001d8\ufffdW\ufffd\ufffdN\ufffdW-\ufffd\u001b\ufffd\ufffd\ufffd\u0011T}\ufffd\ufffd\ufffd]\ufffd\ufffdR\ufffdt\ufffd\u0006+\ufffd\ufffd\ufffd/\ufffdw\ufffd\ufffd\ufffd4\u0500\ufffd\u000659p\ufffd\ufffd\ufffdPN5\u0018\ufffdV.~\ufffd\ufffdC\ufffd\ufffd\u001a\ufffd1F\ufffdqQ8\u000f\ufffdgDs,\ufffd\u000bOoH[}~\ufffdk4[\ufffd\ufffd\u001f\ufffd\u000b#\u03cfJ\ufffd\ufffdh\ufffd\ufffdZ\ufffd\u058d\ufffd\u001a5\ufffds\ufffd\ufffd\u0013\ufffdk:\ufffd\ufffd\ufffd\ufffd\u02b39\ufffd0m\ufffd\u001b\u0005\u001b\u0002\ufffdo\ufffd\ufffd\u000e\ufffdu%\ufffd?\u001c\ufffdV\ufffd\u000f\ufffd\u0011\ufffd\ufffd=\u0012\ufffdHK\ufffd:\ufffdy.\ufffdS\u0018\ufffd\u0013\u001c\ufffd\ufffdh\ufffdMj[@m\ufffd\ufffd\ufffd\u0016\ufffd\u0017A\ufffdO\ufffd\ufffdv\ufffd\ufffdj\ufffdwBSx\ufffd\n\ufffdjwY\ufffd;I\u05dc\ufffd\ufffdS %{\ufffd\u0275)\ufffd\ufffd\ufffd\u000b\ufffd\u0002u:\ufffdY\u000f\ufffd\u30d63\ufffdXm\u0001\ufffd\ufffd0K\ufffd\ufffd\u07f99\ufffd\u001fh\ufffd7\ufffd\ufffdOZ\ufffd\u001f\ufffd\ufffdo\ufffdi\ufffd\u06e3L:%\u0019\ufffdZ'\ufffdF:\ufffd\ufffd*{*'\ufffd\u001c\u9aedhO\ufffd\u0017\ufffdU\ufffd%\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd[\ufffd[&?^]fm\ufffd.^\t\ufffd\ufffd\ufffd\u001a\ufffd\ufffd\ufffd](\u0013Y\u041a\u0013\ufffd\ufffd)q+\ufffd\ufffd,\u00065\ufffd\ufffd\ufffd\ufffd\u0011\ufffd+\ufffd4w\ufffd\ufffd2\ufffd(\ufffd\ufffd$\ufffddj5J\ufffd\\\ufffd\ufffdf\ufffd3\u000e\u001b\f\ufffd\ufffd\ufffd\ufffd+\\\u480e\ufffdZ~#=\ufffd\u0006\ufffd\u039c\ufffd0\ufffdka\ufffd\ufffd{O\ufffdW\ufffd&\ufffdF\u0000M\ufffd\ufffd\ufffd\t\ufffd\u00114:\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u056e\ufffd\ufffd7\u000b\ufffd2\ufffd\ufffd\ufffd\u0017\ufffd\ufffd<\ufffd\ufffd\u0017\u0019\ufffd\u0016\ufffd\ufffd)N\u02f0\u03183\ufffdV\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u001a\ufffd\ufffdW\ufffd\u0016\ufffd\ufffda\ufffd_\ufffd\ufffd\ufffd7\ufffd\u001b\ufffdb\ufffdVh\ufffdV\ufffdB7\ufffd\ufffds\ufffd\u0002\n%Y\ufffd\u0011d\ufffd\ufffd)Fr\ufffd_gJP\u0012\ufffd\u0000\ufffd7S\ufffd2\ufffd\ufffdP \ufffd+\ufffd\ufffdHQ\ufffdN\u0003\u007f_\ufffd\ufffd(CV\ufffd\t\ufffdl\ufffdX+\ufffd\u001b\ufffd\ufffd\ufffd\ufffd\u0002\ufffd\u0019;\ufffd9_~\u001eT\u051cw\ufffd\ufffd\ufffd\u000f\ufffd\ufffdl\ufffd\t\ufffd4\ufffd\ufffd+\u01cf\ufffdR\ufffd6\ufffd\b\ufffd5\ufffdx7\ufffdbfG\ufffd\ufffd\ufffd'\ufffd\ufffd\u038b\u0006_\ufffd\ufffd\ufffdYM\u0005-\ufffd\ufffd\u06ac\ufffde3\ufffd@C\ufffd6\ufffd\ufffd\ufffd\ufffdl:\ufffd\u04fed\u058eFE\ufffd\u0743\ufffd\ufffd\ufffdm\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\""ss\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u0005\ufffd\ufffd?I\ufffd@\u0379\ufffd\ufffd\ufffdZ\u0016FJ\ufffdk\ufffd\u0013\u0019\ufffd\ufffd)9jfYd~\ufffd\ufffd<\ufffd\ufffdV+\u0001\ufffdK\ufffd\ufffd+\ufffd\ufffd\ufffdr\ufffd\ufffdL9\ufffd:\u03f8>\ufffdV\ufffdF\ufffd\ufffd\u0116R\u009b!\ufffd\b\u0001\ufffd\ufffda\ufffd\ufffdH\ufffd\ufffdun_c4\ufffddE\u05a2\ufffd\ufffdW\ufffd\ufffd\ufffd\u036f\ufffd6g\ufffd$p|\ufffd\ufffd'\""\u03ff\u06b0\ufffd\u001a\ufffd{\ufffd\ufffd8\u0667&\ufffdI5p\u0003P\u000b\ufffd\u00005\u001daF\u0319 \ufffdQ\ufffd\u0018)\ufffd{\ufffd\ufffd\ufffd\ufffd\ufffd\u0001\ufffd99E\ufffd\ufffd\u0013'\ufffd)l\u0017\ufffd\ufffd\ufffd\ufffdp\ufffd\u0012\ufffd7\ufffd`Ma+\u0010\ufffd\ufffd\u00033~\ufffd\ufffd\f\ufffd2\ufffd\ufffdiZ7\ufffd\ufffdT\ufffd\ufffd(\ufffdkm\ufffdn\ufffd\ufffd9|g\ufffd\u0213\ufffd\ufffd|\ufffd\ufffd\u0001\ufffd\ufffd*w\u001a\\U\ufffd\u0006\ufffd\uef29\u035b\ufffdY\ufffd\u03bb\u007f\ufffd\u0233,f\ufffd%G y!\u001a<\ufffd\ufffdV\ufffd\ufffd\ub969Xv\ufffd\ufffd0S\ufffdMI\ufffdU\ufffd\u0014\ufffd\u0005#\ufffd\u0014kR\ufffd\n\ufffd\ufffd\ufffd\ufffdF\ufffd8(5\ufffdrAA\ufffdR\ufffd\f5\ufffd\ufffd\ufffdl6\u0017g\ufffd\ufffdX-+6$`];\n\ufffd4\ufffd\u001a-'\ufffd\ufffd?O5l\ufffd#\ufffd\ufffd\ufffd\u000e\ufffd\u0012\u000et \ufffd\ufffdC=\ufffd\ufffd/\ufffd{k\ufffd\ufffd\ufffd0%\ufffd\ufffd\ufffd\ufffd\u0001{\ufffdr\ufffd\u0002\ufffd!;\ufffd\ufffd/\ufffd\ufffd\ufffd\ufffd6\ufffd\ufffd\u0000\ufffd3\ufffd\u05b7\ufffd\ufffdS\ufffd\ufffd\ufffd\ufffd\ufffdjn\ufffdz\ufffd{\u01ba\ufffd\ufffdQ\ufffd\ufffdb\ufffd*\ufffd\u06b2gA\ufffd|t\ufffd\u0011\ufffd:\ufffd\ufffd4\ufffd\u001c\ufffdi\u001e\ufffdi>\ufffdg*\u0706\ufffd\ufffd\u0011\ufffd\ufffd\ufffd\ufffdt}\ufffd\u0019+\ufffd\ufffd0\ufffdf\ufffd\ufffd%\ufffd$Q\u0010\ufffdWL\ufffdu\ufffd\ufffd\ufffd_\ufffda\u0000\ufffd\ufffd\u0133g\u0017\u001a\ufffdN\ufffd?\ufffdq\ufffd&Q\ufffd\ufffdhm\ufffd\ufffd\ufffdb\ufffd5\ufffdt\ufffd\ufffd\u050c\ufffd\ufffd\u0017i>\ufffd\u0017\ufffde\ufffd\ufffd\ufffd\u00f7\u000en\t\ufffd\ufffd\""\ufffd\u05add\ufffd#6[\ufffdZ\ufffd\u0566bm\ufffdH\ufffdT\ufffd\u0130\ufffdXQ\ufffd\ufffd\ufffd\u055ai\ufffd\ufffdj4y,z\ufffdq\u001c\ufffd\u0334\u001bO@K\ufffd\ufffd>\ufffd\ufffdX[\ufffd\ufffd\ufffd<]\u0004\ufffd*\u0380J.r6\u001e\ufffd\u0005}\ufffd\ufffd\ufffdg\ufffd\ufffd\ufffd&\u001d\u0006\ufffd\\_Q\ufffdq\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd[g\ufffd\u001a\ufffd\ufffd\f\ufffd\ufffd\u001f^\ufffdH\ufffdS\ufffd\u0014Y\ufffd\n\ufffdAS\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffdW\ufffdr\ufffd\ufffd\ufffd\u06b7\ufffd\ufffdDuC\ufffd\ufffd$\r\ufffd\u00d1V\ufffd\u0014,\ufffda\ufffd\ufffd\n4\ufffdNW\ufffd'G\u0000\ufffd\ufffd\""G\u00008\ufffdF\ufffdS\ufffd\""N\ufffd\u001f\ufffd~\u0005j\u02d8zY\ufffd\ufffd\ufffd\ufffd.\ufffd')9+\u0555\ufffd*\ufffd*\ufffd\ufffd\ufffdT\ufffd\ufffd\ufffd\ufffd+.-\ufffd\u0355\ufffd\ufffdc\ufffdZ\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd>\u000fzp\u0017\ufffdE\ufffdp\ufffd\ufffd5\ufffd-\u00bfxV\u00007\u0017\ufffdl\ufffdm\ufffd\ufffd\ufffd]*\ufffd\ufffd\ufffd\ufffd\ufffdE\ufffd*f\u0010\ufffd\ufffd\u0015f\ufffd\ufffd\ufffdH\u0551j\ufffdx\ufffdn\ufffd\u0014W\ufffdx\u001b\ufffd\ufffd\ufffd\ufffd*\ufffd\u0015\ufffd<\u000bf?\ufffd0\ufffd\ufffd\ufffd:\u0348V$\u001d\ufffdb\ufffdU\ufffd\u02f0:\ufffdi$:p\ufffdF\ufffd\ufffd\ufffdH\ufffd\ufffd\u0015T5P\ufffd\ufffd\u0006;\ufffd\ufffd\ufffd\ufffd\u001b\ufffd;\ufffd$,\u0016\ufffdFbA\ufffd\ufffd\u01f61GA\u0012=2\ufffd\ufffd#\ufffd\ufffd\u00115\ufffdCn\u0010\ufffd\f\ufffd\ufffdr-\ufffd\ufffd\ufffdd\ufffd\ufffd\ufffd\u001fNjN\ufffd\ufffd\ufffdF5\ufffd\u04c2\u0271\u0001\ufffd\ufffd\ufffd1\ufffd%\u001b:\ufffdMe)\ufffd7\ufffd\ufffdb\u0007\ufffd\ufffd\ufffdz\ufffd3\ufffd\rE\ufffd\ufffd\ufffd\u01c4\ufffd\ufffdleW\ufffd\ufffd3`/@\ufffdf\ufffdv+\ufffdRdL\u001d\ufffd'\ufffd\ufffd\ufffdz,@\ufffd\ufffd15U!\ufffd\ufffdd\ufffdF\u0005\ufffd\u056d\ufffd\fh\ufffd\ufffdC\ufffd\ufffd,m\ufffd\u0015\ufffdW\u07a7\ufffd8\ufffd_h\ufffd4%\ufffdk\ufffdn\ufffd\ufffd[\ufffd.h\ufffd\u001c\ufffdt=\u0011\""\ufffd\ufffd\u001d\ufffd*GCne\ufffd\u0011\ufffd\ufffd\ufffd\u029c#i%%X\ufffd\uc91c\\h\ufffdr\ufffd1-\ufffdr\ufffd\u0556\ufffd)5X\ufffd\ufffd\n\u0003H\ufffd\ufffd\u0100\u02ed2\u0016j4\ufffd\n]6\ufffd3\ufffd\ufffdB\ufffd\ufffdUA6WI\ufffd\ufffd\ufffd\u0002\ufffd\ufffd\ufffdEj\ud91d\udd71\u001a)\ufffd\ufffd2A\u0011\ufffd\u0019\ufffd\ufffdy\b<\ufffdwEf\ufffd\ufffd?\ufffd\u001f\ufffd\ufffd8\ufffd\ufffd\ufffd\ufffdv\ufffdc*D\ufffd\ufffd\u0015\ufffd\ufffd\ufffd\u0017g(%b\ufffd\ufffd\ufffd\ufffd\ufffd2\ufffd\u0004\ufffd\ufffd\ufffdz\ufffd\ufffd1\ufffd\u02d26\ufffd\ufffd\ufffdD]\ufffdZ\ufffd\ufffd\u00ab\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u001d\ufffdH\ufffd\ufffd\ufffd\ufffd\ufffdOI\ufffdG\ufffd\b=\u0012\ufffd\ufffd\ufffd\ufffd(\r\ufffd!)\ufffd2\ufffd(\u0005Fgt%\t\ufffdB\f\ufffdL5\ufffdy8\ufffd\ufffd@\u007fs\ufffdL\ufffd\ufffd\ufffd\ufffd\u001f\ufffdSV~\ufffd\u039cz\ufffdG\ufffdG6\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffdOm\u0019\\\ufffdwn\ufffd\u0018\ufffd\ufffd9?|w\u07cf\ufffd\ufffd\ufffd\ufffd\ufffd{\u007f\ufffd\ufffd\ufffd\ufffd\ufffd\ufffdk\u001f\ufffd\ufffd\ufffdw_\ufffdGg9\ufffdL&\ufffd\ufffdm'P&Sr,+K\ufffd\ufffd\ufffd\u0019\ufffd\ufffd\ufffdF$'\ufffd\bi$xz\ufffd\ufffd\ufffdZ$\ufffd\""\u0006\ufffd$\ufffd\u0017B'O\ufffd\ufffd\ufffd\u0014:\u027b\ufffd+}[\ufffdF\u078c\u0017\ufffdEL\ufffd6\ufffd9\ufffd=\ufffdi\ufffd\ufffd\ufffd\u0015\ufffdv\ufffd\ufffd2\ufffd\u000b7o\ufffd\ufffd_W\ufffd\ufffd\ufffdY\ufffd\ufffd\ufffd\ufffdB\ufffd\u0019\ufffd\ufffdd0-\ufffd7-]\ufffd!^\ufffd\ufffd\ufffdE1\ufffdB\ufffd\u0017\u04e1\ufffd\ufffd\u001cs8d\ufffd\u0011{%\ufffd\ufffd\ufffdm\ufffd\ufffd\u0014\ufffd\rJ/K$\ufffd\ufffd6+/\ufffdI\ufffd\ufffd\u03f72Z\ufffdUj5`\ufffd\ufffd\ufffdk\ufffd\u000e\u0006\ufffd\ufffd\u0014\ufffd\u0012zA~;2\ufffd\u07c7n\ufffd<\ufffdf\ufffdv\ufffd8~\ufffdHvH\ufffd7W\u00176\ufffd\u0007\ufffd\ufffd\u0006\ufffd\ufffd\ufffd\ufffdZ\ufffd{\ufffd\u03b5\ufffd\u01ac\u001aG\ufffd\ufffd\ufffd.Wuz\ufffd\ufffd1oA\u00c2\ufffd\\\ufffd\ufffdNt\ufffd\ufffde\ufffd\u0014EI\ufffd\u0100\ufffd\ufffd\r\ufffdo\ufffdThjJ\ufffd4\u0017\u021c\r+|\ufffd\u0002\rs`\ufffdxr\u046c\ufffd\ufffdV\ufffd\u0017t\ufffd\ufffd\ufffd\t\ufffd0'Zr\\a\ufffdq&\ufffd!\u0003`\u001c\u05d9L\u0019N\u03a1{\u0015\ufffd\ufffdcJ^.\ufffdb2\u001a\u000bp#\ufffdK$\ufffdd\ufffdpd'\ufffd\ufffd \ufffd\""\ufffdS\ufffd3\u0015\ufffd\ufffd\ufffdc\ufffd\ufffdL\ufffd\u0007\ufffdT\ufffd\ufffd\u0012\u058c\ufffdG\ufffdIoGfZ:|0\u00117\ufffdp\u0013\u001b\ufffd,\ufffd\ufffd\ufffd\u0016%eX\ufffd\ufffdWhsJ\ufffd_p\ufffd,/\ufffd\ufffd\ufffdT\ufffdJ\ufffd\ufffd-k\ufffd\ufffd\ufffd>C\rT\ufffdZ\ufffd`W\ufffd3\ufffd\ufffd\ufffd\u0013\ufffd}\ufffd\u00009\u000bP\ufffd[\ufffd\ufffd\u0638\u001c\ufffdJ\ufffd*3\r\ufffd\ufffdJt\u0162\ufffd\ufffd\u03696\ufffd\r\u012e:j6\u0017)S\ufffd\ufffdI\ufffd\ufffd\u0013lx\ufffd\ufffd(\ufffd\ufffd+\ufffd\ufffd\bA6\ufffd\ufffd|\ufffd\ufffd\ufffd\ufffd.t\ufffd-_xo\ufffd\ufffd\u0007\ufffd\ufffdb\ufffd\u0002\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffdn\ufffd\ufffd\u01d9\u06c4\ufffd\ufffdle\ufffd\ufffdy\u001de\ufffdD\ufffd\ufffd'na\ufffd9\\)w;\u021f\ufffd\ufffd\ufffd\nF\ufffd\ufffdi\ufffd#\u0019\ufffd\f\ufffd\u0000\ufffd0^Q\ufffd\u0019\ufffdZ/\ufffd\ufffd0\""\ufffd\ufffdd2\ufffd\ufffdSdf|\ufffd\u0000\ufffd@g\ufffd\ufffd\ufffd_\u0000\n\ufffd\ufffd\ufffd\ufffd\nA\ufffd\ufffd7\ufffd\ufffd'\ufffd\ufffd\ufffd\ufffd\ufffd\ufffdlJ\ufffdc'\ufffd\ufffd\u0012\ufffd\ufffdQ\ufffd9\ufffd\ufffd\ufffd&g\ufffdd\ufffdS\ufffdn\ufffd9\ufffd\u01ad\ufffd\ufffdye\ufffd\ufffd,10\ufffdj\ufffd\ufffde\ufffd\ufffdS\""#\ufffd,\ufffd\\\ufffd\u0010\ufffd\ufffdAa\u0018\ufffdG\ufffd#\ufffd\u0011\ufffdH\ufffd\u0006I\ufffdX\ufffdb5\ufffd\ufffd\ufffd\\\u045b\ufffdzS\ufffdNg\ufffd\""\ufffd29\ufffd\ufffd4\u0012\ufffdD;\ufffd1\ufffdX4lN\ufffdM-aX\ufffd\u0003\u0019^FA\ufffd\ufffd\\\ufffd\ufffdA\ufffdI\ufffdY\ufffd\u0003\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd;\ufffd\\\ufffd\ufffd\u000bcc\ufffd\ufffd\ufffd[~j\u02333\ufffd\u0005\u0005\ufffd;?\ufffd\ufffd\u01f2\ufffd\n\u0019Kv\ufffdE?~m\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd0{\ufffd\ufffd\f\ufffd\ufffd\ufffd\ufffd\ufffd\ufffdW\ufffd\ufffdw\ufffdeY2@S\ufffd\ufffd\ufffd\ufffdj\u0010\ufffdM\ufffd1\u001a\ufffd\u0019\ufffd\ufffd\ufffd6\ufffd\ufffd]\u0015}K<]|\ufffd\ufffdM\ufffd2\ufffd/$\ufffd\ufffd\ufffdH\ufffd\ufffd>%k\ufffd#\ufffdF\ufffdi\ufffd\u0006\u0175\ufffd\ufffd\u001c\ufffd\ufffdw\ufffd\ufffdU\u01d3\u0017%\ufffdi\u051a\ufffd\ufffdg\u0010gR\\\ufffd\u0006\ufffd'\ufffd3S\ufffd\ufffd\ufffd\r\ufffd0j\ufffdm\u001c55\ufffd\ufffd\ufffd=\ufffd\u0790\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffdQ\ufffdP\ufffd9\u3d8c\u000f3\ufffd\ufffd\ufffdg\ufffd\ufffdz=\ufffdJvM\ufffd;\ufffdl\ufffd\ufffd\u001cQNK\ufffd\u0011k\ufffd\ufffd\ufffd\ufffd\u0236\ufffd\ufffd\ufffd\u070a\ufffd'\ufffd\ufffd\ufffd6_\ufffd58\ufffd\ufffd\ufffd{\ufffd \ufffd`\ufffd\ufffd\ufffd\n\ufffd\ufffd\ufffd+\ufffdE\ufffd\ufffd{\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u0003\ufffdO\ufffd\ufffd\ufffd\ufffd^\ufffd\ufffd\ufffd\ufffdV\u001fr](]V\ufffdA\ufffd\ufffd\ufffd/w\ufffd\ufffd*N|\r\ufffdB\u0145i\ucd1c\u001b\ufffdY\ufffdz\ufffd\ufffd9\ufffd\ufffd\ufffdK\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffdU\ufffd#U\u04eb\ufffd\ufffd>\ufffd\ufffdmuauiuM\ufffd\ufffd\ufffd5U5?\ufffd\ufffdQ\ufffd\ufffd9u\ufffdM/\ufffd>2\ufffd;\ufffd/\ufffdw\ufffd\ufffd\ufffda~\ufffd;3\ufffdf\ufffd9co#j\\\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffdRg\u001d\ufffd\ufffd\ufffd\ufffd\u0007=\u0016\ufffd\ufffd\ufffd\ufffd\ufffd\ufffdY\ufffd\ufffd\ufffdl\ufffd\ufffd\ufffd\u001c\ufffd<\ufffdy)\u039d\ufffd|\ufffd\ufffd\ufffd\ufffd\ufffdl\ufffd\ufffd\ufffd\ufffdu\ufffd\u0017\ufffd\ue63d)\u03bd6\ufffdn\ufffd[s\ufffd\ufffd=\ufffd\ufffd\ufffd\ufffd\u0516\ufffd<\u057c[\ufffd*n\ufffd\ufffd\ufffd\ufffd\ufffd;:\ufffd\ufffd\u079dwj\u0785y\ufffd\ufffdU\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u0005\ufffd/\ufffdbad\ufffd'\ufffd\u0016.\ufffdE\ufffd\ufffdu\u0019\ufffd'\u068a\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u054bO\ufffd\ufffd\ufffdon\u007f\u007f\ufffd\u0704K\ufffd\ufffdK\ufffd\ufffdK\ufffd\ufffdK\ufffd\ufffdK\ufffd\ufffdK\ufffd\ufffdK\ufffd\ufffdK\ufffd\ufffdK\ufffd\ufffdK\ufffd\ufffdK\ufffd\ufffdK\ufffd\ufffdK\ufffd\ufffdK\ufffd\ufffdK\ufffd\ufffdK\ufffd\ufffdK\ufffd\ufffdK\ufffd\ufffdK\ufffd\ufffdK\ufffd\ufffdK\ufffd\ufffdK\ufffd\ufffdK\ufffd\ufffdK\ufffd\ufffdK\ufffd\ufffd\ufffd\ufffd8\ufffd\ufffd\ufffd\ufffd\ufffdC\ufffdG\ufffd\ufffdB\ufffdO2\n\ufffd+\ufffd\\uq\ufffd\ufffd~\u0006%\ufffdV\ufffd~\u0016%'u\ufffd~\u000e\ufffd&\ufffdx\ufffd(.\ufffd\u0018\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffdR\ufffd)\ufffd9\ufffd/C\ufffd\""\ufffd\ufffd\ufffd\ufffd\u001c\ufffd\ufffd\ufffd+\ufffd\ufffdX\ufffd$\ufffd\\\ufffd\ufffd\ufffd\ufffd\ufffdP\ufffd]\ufffd/\ufffd\ufffd\ufffddfx\r\u0295c\ufffd\ufffdAR\ufffd\ufffd\ufffd\ufffdH\ufffdy\ufffd\ufffds(E\ufffd4\ufffd\u0017\ufffd\ufffd\u0011#\ufffd\ufffd\u0018\ufffd\ufffd\u0757\ufffd\ufffd\u001f\ufffd~\u0019\ufffd+\ufffd\ufffd~9\ufffdi\ufffd\ufffd~\u0005\ufffd3\u0016?\t\u0675\u0016\u07afD\ufffd\ufffd\ufffd\ufffd_\ufffd\ufffdH{3\ufffdOFU:\u001bH\u0088\ufffd\b+\u0001\ufffd*\ufffd\ufffd\ufffd\ufffd^\ufffdEC\ufffd\u001f\ufffd\ufffd\ufffdo\u0014\ufffd@\ufffdH\\l|/\b\ufffdq\ufffd>\ufffd\u001d\ufffd\ufffd\u000e\ufffd\ufffd\""\ufffdp\ufffd8\u0007|\ufffd\u000b\ufffdq9!\ufffd\ufffd\ufffd\ufffdv\ufffd\ufffd\ufffdk/\ufffd;\u0004\ufffda(\ufffd\u000f\ufffd\ufffd\ufffdt\u001dD\u000e\\>\ufffd#@4\u00a9\u0004\ufffdh\n\ufffd:\b\ufffd\ufffdw\ufffd\ufffdtp\u012e\ufffd\ufffdnD'D\ufffd\ufffd M'\\;\b/\ufffd\ufffd&\ufffd\\G\ufffd\ufffd\ufffd\u001a`\ufffd,h\ufffdp\ufffd\ufffd7f6\ufffdk\ufffdcw\ufffd6\ufffdP\u0016\ufffd\ufffdF\ufffdq\ufffd\u0000\ufffd\u0015B\ufffd\""\ufffd\ub0f0\u000e\ufffd\u02cdr\ufffd2\ufffd\ufffd\ufffd\ufffd\u023d\ufffd\ufffd\ufffd\r\ufffdp\ufffdF F\ufffdh\u0015\ufffd\ufffdA\ufffd\ufffdz\r\ufffd\u04af\ufffdkz\ufffd\r`M\ufffd.QR^\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd]pg\ufffdh\u001e\ufffd\ufffd_\ufffd)\ufffd=\ufffd$\ufffd\ufffdz\t\ufffdV\ufffd\ufffd\u000fW!\ufffd\ufffdB\ufffd\u0015jS\ufffd\u0007\ufffd\f@\ufffd?g\ufffd\ufffd\ufffdf\ufffdohJ\ufffdB\u000b\ufffd\ufffd\ufffd`y;\biZ\ufffd=\ufffdy\b\ufffd!\u0017\ufffd\u0001\ufffdJH]L\ufffd\ufffd\u0012Rf/\u0109B9\ufffdM7\ufffd\u0013\ufffd\u001c\ufffd\u0ba0\u007f\u0004\ufffdX\ufffd\ufffd\u0010\ufffd\u000f\ufffd\ufffd^\ufffd\ufffd\u0006\u0473 E9*Ee\ufffd\ufffdKl\ufffd\ufffd0\u0012\ufffd\u000buJ\ufffd\u000b\ufffd\ufffd\u0010\u0006\ufffdD\ufffdH\ufffd\u0006h+\ufffd\ufffd4A:l+8\ufffd\ufffd\ufffd6\ufffd\ufffd\ufffdG\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd2a\u07aa\ufffd\u0010F\ufffd\r\u001a\ufffd\ufffd \u0013V'X\u000b\ufffd\u001dl\tA\ufffd\u0001|\ufffd\ufffd\ufffd\u01773\ufffd6\ufffd\ufffd\ufffdHZ\ufffd\ufffd\ufffdVD\ufffd\ufffdrl&\ufffd`\u001d[H\ufffd \ufffd&\ufffd\ufffd\u0010\ufffd\ufffdM|\ufffd\ufffd\ufffd\u0017\ufffd*\r\ufffd[\ufffdm\ufffd%\ufffd<=\ufffdC7\ufffd\ufffd%e\nih\ufffdQR\u000b4\u0004\ufffd\ufffd{\u0001\ufffd\ufffd\ufffdH!\u0126\ufffd\ufffd\ufffd\ufffd\ufffd\r\u0013\ufffd\n\u0013\ufffd5\ufffd\ufffd\ufffd\ufffdH\ufffd(\ufffd\u0007\ufffd\ufffd\ufffd<\u0001\ufffd\ufffd\ufffd\u0208\ufffd\ufffd\ufffd\ufffd\ufffd9\ufffd(\ufffdxR\ufffd\u001c\ufffd\ufffd\ufffdO\ufffd\u0002m\ufffd\ufffd\u001b\ufffd9!\ufffd\u0006\ufffd\ufffd\ufffd\ufffd!\ufffd\u001bo\\;\ufffd\ufffd\ufffd}|*\ufffd\ufffd \ufffd*i\ufffd^\""c\ufffdhI\ufffd.\ufffd\ufffd}\ufffd\ufffdq\ufffd\ufffdx=iH/\ufffdn\ufffdK\u001fi\ufffd\ufffdm{\ufffd\u001a\ufffdX}h\ufffd\ufffd\ufffd\ufffd