Started up 2025 with an interactive version
This commit is contained in:
17
2025/.github/dependabot.yml
vendored
Normal file
17
2025/.github/dependabot.yml
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
# To get started with Dependabot version updates, you'll need to specify which
|
||||
# package ecosystems to update and where the package manifests are located.
|
||||
# Please see the documentation for all configuration options:
|
||||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
||||
|
||||
version: 2
|
||||
updates:
|
||||
# Maintain dependencies for Cargo
|
||||
- package-ecosystem: "cargo"
|
||||
directory: "/" # Location of package manifests
|
||||
schedule:
|
||||
interval: "weekly"
|
||||
# Maintain dependencies for GitHub Actions
|
||||
- package-ecosystem: github-actions
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: weekly
|
||||
89
2025/.github/workflows/ci.yml
vendored
Normal file
89
2025/.github/workflows/ci.yml
vendored
Normal file
@@ -0,0 +1,89 @@
|
||||
name: CI
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- master
|
||||
- develop
|
||||
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
|
||||
# ensure that the workflow is only triggered once per PR, subsequent pushes to the PR will cancel
|
||||
# and restart the workflow. See https://docs.github.com/en/actions/using-jobs/using-concurrency
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
fmt:
|
||||
name: fmt
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Install Rust stable
|
||||
uses: dtolnay/rust-toolchain@stable
|
||||
with:
|
||||
components: rustfmt
|
||||
- name: check formatting
|
||||
run: cargo fmt -- --check
|
||||
- name: Cache Cargo dependencies
|
||||
uses: Swatinem/rust-cache@v2
|
||||
clippy:
|
||||
name: clippy
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
checks: write
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Install Rust stable
|
||||
uses: dtolnay/rust-toolchain@stable
|
||||
with:
|
||||
components: clippy
|
||||
- name: Run clippy action
|
||||
uses: clechasseur/rs-clippy-check@v3
|
||||
- name: Cache Cargo dependencies
|
||||
uses: Swatinem/rust-cache@v2
|
||||
doc:
|
||||
# run docs generation on nightly rather than stable. This enables features like
|
||||
# https://doc.rust-lang.org/beta/unstable-book/language-features/doc-cfg.html which allows an
|
||||
# API be documented as only available in some specific platforms.
|
||||
name: doc
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Install Rust nightly
|
||||
uses: dtolnay/rust-toolchain@nightly
|
||||
- name: Run cargo doc
|
||||
run: cargo doc --no-deps --all-features
|
||||
env:
|
||||
RUSTDOCFLAGS: --cfg docsrs
|
||||
test:
|
||||
runs-on: ${{ matrix.os }}
|
||||
name: test ${{ matrix.os }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os: [macos-latest, windows-latest]
|
||||
steps:
|
||||
# if your project needs OpenSSL, uncomment this to fix Windows builds.
|
||||
# it's commented out by default as the install command takes 5-10m.
|
||||
# - run: echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append
|
||||
# if: runner.os == 'Windows'
|
||||
# - run: vcpkg install openssl:x64-windows-static-md
|
||||
# if: runner.os == 'Windows'
|
||||
- uses: actions/checkout@v4
|
||||
- name: Install Rust
|
||||
uses: dtolnay/rust-toolchain@stable
|
||||
# enable this ci template to run regardless of whether the lockfile is checked in or not
|
||||
- name: cargo generate-lockfile
|
||||
if: hashFiles('Cargo.lock') == ''
|
||||
run: cargo generate-lockfile
|
||||
- name: cargo test --locked
|
||||
run: cargo test --locked --all-features --all-targets
|
||||
- name: Cache Cargo dependencies
|
||||
uses: Swatinem/rust-cache@v2
|
||||
1
2025/.gitignore
vendored
Normal file
1
2025/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
/target
|
||||
813
2025/Cargo.lock
generated
Normal file
813
2025/Cargo.lock
generated
Normal file
@@ -0,0 +1,813 @@
|
||||
# This file is automatically @generated by Cargo.
|
||||
# It is not intended for manual editing.
|
||||
version = 4
|
||||
|
||||
[[package]]
|
||||
name = "addr2line"
|
||||
version = "0.21.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
|
||||
dependencies = [
|
||||
"gimli",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "adler"
|
||||
version = "1.0.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
||||
|
||||
[[package]]
|
||||
name = "allocator-api2"
|
||||
version = "0.2.21"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
||||
|
||||
[[package]]
|
||||
name = "autocfg"
|
||||
version = "1.4.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
||||
|
||||
[[package]]
|
||||
name = "backtrace"
|
||||
version = "0.3.71"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d"
|
||||
dependencies = [
|
||||
"addr2line",
|
||||
"cc",
|
||||
"cfg-if",
|
||||
"libc",
|
||||
"miniz_oxide",
|
||||
"object",
|
||||
"rustc-demangle",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "bitflags"
|
||||
version = "2.9.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
|
||||
|
||||
[[package]]
|
||||
name = "bracket2025"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"color-eyre",
|
||||
"crossterm",
|
||||
"ratatui",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "cassowary"
|
||||
version = "0.3.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53"
|
||||
|
||||
[[package]]
|
||||
name = "castaway"
|
||||
version = "0.2.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "0abae9be0aaf9ea96a3b1b8b1b55c602ca751eba1b1500220cea4ecbafe7c0d5"
|
||||
dependencies = [
|
||||
"rustversion",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "cc"
|
||||
version = "1.2.16"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "be714c154be609ec7f5dad223a33bf1482fff90472de28f7362806e6d4832b8c"
|
||||
dependencies = [
|
||||
"shlex",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "cfg-if"
|
||||
version = "1.0.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
||||
|
||||
[[package]]
|
||||
name = "color-eyre"
|
||||
version = "0.6.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "55146f5e46f237f7423d74111267d4597b59b0dad0ffaf7303bce9945d843ad5"
|
||||
dependencies = [
|
||||
"backtrace",
|
||||
"color-spantrace",
|
||||
"eyre",
|
||||
"indenter",
|
||||
"once_cell",
|
||||
"owo-colors",
|
||||
"tracing-error",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "color-spantrace"
|
||||
version = "0.2.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "cd6be1b2a7e382e2b98b43b2adcca6bb0e465af0bdd38123873ae61eb17a72c2"
|
||||
dependencies = [
|
||||
"once_cell",
|
||||
"owo-colors",
|
||||
"tracing-core",
|
||||
"tracing-error",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "compact_str"
|
||||
version = "0.8.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "3b79c4069c6cad78e2e0cdfcbd26275770669fb39fd308a752dc110e83b9af32"
|
||||
dependencies = [
|
||||
"castaway",
|
||||
"cfg-if",
|
||||
"itoa",
|
||||
"rustversion",
|
||||
"ryu",
|
||||
"static_assertions",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "crossterm"
|
||||
version = "0.28.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
|
||||
dependencies = [
|
||||
"bitflags",
|
||||
"crossterm_winapi",
|
||||
"mio",
|
||||
"parking_lot",
|
||||
"rustix",
|
||||
"signal-hook",
|
||||
"signal-hook-mio",
|
||||
"winapi",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "crossterm_winapi"
|
||||
version = "0.9.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
|
||||
dependencies = [
|
||||
"winapi",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "darling"
|
||||
version = "0.20.10"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989"
|
||||
dependencies = [
|
||||
"darling_core",
|
||||
"darling_macro",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "darling_core"
|
||||
version = "0.20.10"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5"
|
||||
dependencies = [
|
||||
"fnv",
|
||||
"ident_case",
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
"strsim",
|
||||
"syn",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "darling_macro"
|
||||
version = "0.20.10"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
|
||||
dependencies = [
|
||||
"darling_core",
|
||||
"quote",
|
||||
"syn",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "either"
|
||||
version = "1.15.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
||||
|
||||
[[package]]
|
||||
name = "equivalent"
|
||||
version = "1.0.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
||||
|
||||
[[package]]
|
||||
name = "errno"
|
||||
version = "0.3.10"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
|
||||
dependencies = [
|
||||
"libc",
|
||||
"windows-sys 0.59.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "eyre"
|
||||
version = "0.6.12"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "7cd915d99f24784cdc19fd37ef22b97e3ff0ae756c7e492e9fbfe897d61e2aec"
|
||||
dependencies = [
|
||||
"indenter",
|
||||
"once_cell",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "fnv"
|
||||
version = "1.0.7"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
||||
|
||||
[[package]]
|
||||
name = "foldhash"
|
||||
version = "0.1.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
||||
|
||||
[[package]]
|
||||
name = "gimli"
|
||||
version = "0.28.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
|
||||
|
||||
[[package]]
|
||||
name = "hashbrown"
|
||||
version = "0.15.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
|
||||
dependencies = [
|
||||
"allocator-api2",
|
||||
"equivalent",
|
||||
"foldhash",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "heck"
|
||||
version = "0.5.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
||||
|
||||
[[package]]
|
||||
name = "ident_case"
|
||||
version = "1.0.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
||||
|
||||
[[package]]
|
||||
name = "indenter"
|
||||
version = "0.3.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683"
|
||||
|
||||
[[package]]
|
||||
name = "indoc"
|
||||
version = "2.0.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
|
||||
|
||||
[[package]]
|
||||
name = "instability"
|
||||
version = "0.3.7"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "0bf9fed6d91cfb734e7476a06bde8300a1b94e217e1b523b6f0cd1a01998c71d"
|
||||
dependencies = [
|
||||
"darling",
|
||||
"indoc",
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
"syn",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "itertools"
|
||||
version = "0.13.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
||||
dependencies = [
|
||||
"either",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "itoa"
|
||||
version = "1.0.15"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
||||
|
||||
[[package]]
|
||||
name = "lazy_static"
|
||||
version = "1.5.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
||||
|
||||
[[package]]
|
||||
name = "libc"
|
||||
version = "0.2.171"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
|
||||
|
||||
[[package]]
|
||||
name = "linux-raw-sys"
|
||||
version = "0.4.15"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
||||
|
||||
[[package]]
|
||||
name = "lock_api"
|
||||
version = "0.4.12"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
||||
dependencies = [
|
||||
"autocfg",
|
||||
"scopeguard",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "log"
|
||||
version = "0.4.26"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "30bde2b3dc3671ae49d8e2e9f044c7c005836e7a023ee57cffa25ab82764bb9e"
|
||||
|
||||
[[package]]
|
||||
name = "lru"
|
||||
version = "0.12.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
|
||||
dependencies = [
|
||||
"hashbrown",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "memchr"
|
||||
version = "2.7.4"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
||||
|
||||
[[package]]
|
||||
name = "miniz_oxide"
|
||||
version = "0.7.4"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08"
|
||||
dependencies = [
|
||||
"adler",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "mio"
|
||||
version = "1.0.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
|
||||
dependencies = [
|
||||
"libc",
|
||||
"log",
|
||||
"wasi",
|
||||
"windows-sys 0.52.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "object"
|
||||
version = "0.32.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
|
||||
dependencies = [
|
||||
"memchr",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "once_cell"
|
||||
version = "1.21.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d75b0bedcc4fe52caa0e03d9f1151a323e4aa5e2d78ba3580400cd3c9e2bc4bc"
|
||||
|
||||
[[package]]
|
||||
name = "owo-colors"
|
||||
version = "3.5.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
|
||||
|
||||
[[package]]
|
||||
name = "parking_lot"
|
||||
version = "0.12.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
|
||||
dependencies = [
|
||||
"lock_api",
|
||||
"parking_lot_core",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "parking_lot_core"
|
||||
version = "0.9.10"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
||||
dependencies = [
|
||||
"cfg-if",
|
||||
"libc",
|
||||
"redox_syscall",
|
||||
"smallvec",
|
||||
"windows-targets",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "paste"
|
||||
version = "1.0.15"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
||||
|
||||
[[package]]
|
||||
name = "pin-project-lite"
|
||||
version = "0.2.16"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
||||
|
||||
[[package]]
|
||||
name = "proc-macro2"
|
||||
version = "1.0.94"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84"
|
||||
dependencies = [
|
||||
"unicode-ident",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "quote"
|
||||
version = "1.0.40"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "ratatui"
|
||||
version = "0.29.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "eabd94c2f37801c20583fc49dd5cd6b0ba68c716787c2dd6ed18571e1e63117b"
|
||||
dependencies = [
|
||||
"bitflags",
|
||||
"cassowary",
|
||||
"compact_str",
|
||||
"crossterm",
|
||||
"indoc",
|
||||
"instability",
|
||||
"itertools",
|
||||
"lru",
|
||||
"paste",
|
||||
"strum",
|
||||
"unicode-segmentation",
|
||||
"unicode-truncate",
|
||||
"unicode-width 0.2.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "redox_syscall"
|
||||
version = "0.5.10"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "0b8c0c260b63a8219631167be35e6a988e9554dbd323f8bd08439c8ed1302bd1"
|
||||
dependencies = [
|
||||
"bitflags",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "rustc-demangle"
|
||||
version = "0.1.24"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
||||
|
||||
[[package]]
|
||||
name = "rustix"
|
||||
version = "0.38.44"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
||||
dependencies = [
|
||||
"bitflags",
|
||||
"errno",
|
||||
"libc",
|
||||
"linux-raw-sys",
|
||||
"windows-sys 0.59.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "rustversion"
|
||||
version = "1.0.20"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
|
||||
|
||||
[[package]]
|
||||
name = "ryu"
|
||||
version = "1.0.20"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
||||
|
||||
[[package]]
|
||||
name = "scopeguard"
|
||||
version = "1.2.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
||||
|
||||
[[package]]
|
||||
name = "sharded-slab"
|
||||
version = "0.1.7"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
||||
dependencies = [
|
||||
"lazy_static",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "shlex"
|
||||
version = "1.3.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
||||
|
||||
[[package]]
|
||||
name = "signal-hook"
|
||||
version = "0.3.17"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801"
|
||||
dependencies = [
|
||||
"libc",
|
||||
"signal-hook-registry",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "signal-hook-mio"
|
||||
version = "0.2.4"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd"
|
||||
dependencies = [
|
||||
"libc",
|
||||
"mio",
|
||||
"signal-hook",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "signal-hook-registry"
|
||||
version = "1.4.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
|
||||
dependencies = [
|
||||
"libc",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "smallvec"
|
||||
version = "1.14.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd"
|
||||
|
||||
[[package]]
|
||||
name = "static_assertions"
|
||||
version = "1.1.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
||||
|
||||
[[package]]
|
||||
name = "strsim"
|
||||
version = "0.11.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
||||
|
||||
[[package]]
|
||||
name = "strum"
|
||||
version = "0.26.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
|
||||
dependencies = [
|
||||
"strum_macros",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "strum_macros"
|
||||
version = "0.26.4"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
|
||||
dependencies = [
|
||||
"heck",
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
"rustversion",
|
||||
"syn",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "syn"
|
||||
version = "2.0.100"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
"unicode-ident",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "thread_local"
|
||||
version = "1.1.8"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
|
||||
dependencies = [
|
||||
"cfg-if",
|
||||
"once_cell",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "tracing"
|
||||
version = "0.1.41"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
||||
dependencies = [
|
||||
"pin-project-lite",
|
||||
"tracing-core",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "tracing-core"
|
||||
version = "0.1.33"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
|
||||
dependencies = [
|
||||
"once_cell",
|
||||
"valuable",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "tracing-error"
|
||||
version = "0.2.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "8b1581020d7a273442f5b45074a6a57d5757ad0a47dac0e9f0bd57b81936f3db"
|
||||
dependencies = [
|
||||
"tracing",
|
||||
"tracing-subscriber",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "tracing-subscriber"
|
||||
version = "0.3.19"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
|
||||
dependencies = [
|
||||
"sharded-slab",
|
||||
"thread_local",
|
||||
"tracing-core",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "unicode-ident"
|
||||
version = "1.0.18"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
||||
|
||||
[[package]]
|
||||
name = "unicode-segmentation"
|
||||
version = "1.12.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
||||
|
||||
[[package]]
|
||||
name = "unicode-truncate"
|
||||
version = "1.1.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "b3644627a5af5fa321c95b9b235a72fd24cd29c648c2c379431e6628655627bf"
|
||||
dependencies = [
|
||||
"itertools",
|
||||
"unicode-segmentation",
|
||||
"unicode-width 0.1.14",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "unicode-width"
|
||||
version = "0.1.14"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
||||
|
||||
[[package]]
|
||||
name = "unicode-width"
|
||||
version = "0.2.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
|
||||
|
||||
[[package]]
|
||||
name = "valuable"
|
||||
version = "0.1.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
||||
|
||||
[[package]]
|
||||
name = "wasi"
|
||||
version = "0.11.0+wasi-snapshot-preview1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
||||
|
||||
[[package]]
|
||||
name = "winapi"
|
||||
version = "0.3.9"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
||||
dependencies = [
|
||||
"winapi-i686-pc-windows-gnu",
|
||||
"winapi-x86_64-pc-windows-gnu",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "winapi-i686-pc-windows-gnu"
|
||||
version = "0.4.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
||||
|
||||
[[package]]
|
||||
name = "winapi-x86_64-pc-windows-gnu"
|
||||
version = "0.4.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
||||
|
||||
[[package]]
|
||||
name = "windows-sys"
|
||||
version = "0.52.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
||||
dependencies = [
|
||||
"windows-targets",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "windows-sys"
|
||||
version = "0.59.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
||||
dependencies = [
|
||||
"windows-targets",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "windows-targets"
|
||||
version = "0.52.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
||||
dependencies = [
|
||||
"windows_aarch64_gnullvm",
|
||||
"windows_aarch64_msvc",
|
||||
"windows_i686_gnu",
|
||||
"windows_i686_gnullvm",
|
||||
"windows_i686_msvc",
|
||||
"windows_x86_64_gnu",
|
||||
"windows_x86_64_gnullvm",
|
||||
"windows_x86_64_msvc",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "windows_aarch64_gnullvm"
|
||||
version = "0.52.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
||||
|
||||
[[package]]
|
||||
name = "windows_aarch64_msvc"
|
||||
version = "0.52.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
||||
|
||||
[[package]]
|
||||
name = "windows_i686_gnu"
|
||||
version = "0.52.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
||||
|
||||
[[package]]
|
||||
name = "windows_i686_gnullvm"
|
||||
version = "0.52.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
||||
|
||||
[[package]]
|
||||
name = "windows_i686_msvc"
|
||||
version = "0.52.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
||||
|
||||
[[package]]
|
||||
name = "windows_x86_64_gnu"
|
||||
version = "0.52.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
||||
|
||||
[[package]]
|
||||
name = "windows_x86_64_gnullvm"
|
||||
version = "0.52.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
||||
|
||||
[[package]]
|
||||
name = "windows_x86_64_msvc"
|
||||
version = "0.52.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
||||
11
2025/Cargo.toml
Normal file
11
2025/Cargo.toml
Normal file
@@ -0,0 +1,11 @@
|
||||
[package]
|
||||
name = "bracket2025"
|
||||
version = "0.1.0"
|
||||
authors = ["Connor Johnstone <connor.johnstone@arcfield.com>"]
|
||||
license = "MIT"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
crossterm = "0.28.1"
|
||||
ratatui = "0.29.0"
|
||||
color-eyre = "0.6.3"
|
||||
21
2025/LICENSE
Normal file
21
2025/LICENSE
Normal file
@@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) Connor Johnstone <connor.johnstone@arcfield.com>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
14
2025/README.md
Normal file
14
2025/README.md
Normal file
@@ -0,0 +1,14 @@
|
||||
# bracket2025
|
||||
|
||||
This is a [Ratatui] app generated by the [Simple Template].
|
||||
|
||||
[Ratatui]: https://ratatui.rs
|
||||
[Simple Template]: https://github.com/ratatui/templates/tree/main/simple
|
||||
|
||||
## License
|
||||
|
||||
Copyright (c) Connor Johnstone <connor.johnstone@arcfield.com>
|
||||
|
||||
This project is licensed under the MIT license ([LICENSE] or <http://opensource.org/licenses/MIT>)
|
||||
|
||||
[LICENSE]: ./LICENSE
|
||||
364
2025/data/kenpom.csv
Normal file
364
2025/data/kenpom.csv
Normal file
@@ -0,0 +1,364 @@
|
||||
1,Duke 1,ACC,31-3,+38.26,128.0,3,89.7,4,65.8,267,-.019,231,+10.14,55,112.5,47,102.4,62,+9.37,21
|
||||
2,Florida 1,SEC,30-4,+36.24,128.7,1,92.4,9,69.6,59,+.007,159,+14.53,16,114.6,17,100.1,19,-1.96,231
|
||||
3,Houston 1,B12,30-4,+35.42,123.2,10,87.8,2,61.5,360,+.015,138,+13.68,24,113.6,33,99.9,17,+2.59,100
|
||||
4,Auburn 1,SEC,28-5,+35.15,128.5,2,93.4,12,67.6,154,+.030,100,+19.12,2,117.2,2,98.0,1,+10.40,19
|
||||
5,Tennessee 2,SEC,27-7,+31.19,120.3,18,89.1,3,63.7,346,+.016,135,+16.03,6,116.7,4,100.7,32,-0.85,202
|
||||
6,Alabama 2,SEC,25-8,+30.05,126.6,4,96.5,31,74.9,1,+.029,103,+19.65,1,118.4,1,98.7,3,+12.10,10
|
||||
7,Texas Tech 3,B12,25-8,+28.04,125.3,6,97.3,37,65.5,281,-.045,293,+11.27,50,111.9,58,100.6,31,-4.68,305
|
||||
8,Michigan St. 2,B10,27-6,+27.62,118.2,27,90.6,5,67.8,143,-.009,206,+13.42,27,114.3,23,100.9,39,+0.42,155
|
||||
9,Gonzaga 8,WCC,25-8,+27.29,123.6,9,96.3,29,70.2,46,-.074,341,+7.05,73,110.8,74,103.8,79,+8.76,26
|
||||
10,Iowa St. 3,B12,24-9,+27.00,119.5,21,92.5,10,68.6,103,-.048,298,+12.67,36,113.4,37,100.7,37,-0.85,201
|
||||
11,Maryland 4,B10,25-8,+26.37,118.2,28,91.8,6,69.9,57,-.038,279,+10.99,52,113.1,42,102.1,55,-10.36,359
|
||||
12,St. John's 2,BE,30-4,+26.34,113.9,65,87.6,1,70.2,49,-.019,232,+9.10,61,111.8,60,102.7,66,-0.04,173
|
||||
13,Wisconsin 3,B10,26-9,+25.99,122.1,13,96.1,27,67.6,152,-.033,270,+13.92,23,114.3,22,100.4,26,-0.10,175
|
||||
14,Arizona 4,B12,22-12,+25.72,122.6,12,96.9,33,69.9,54,-.049,303,+16.42,4,115.3,7,98.9,4,+5.07,53
|
||||
15,Missouri 6,SEC,22-11,+24.49,125.4,5,100.9,71,68.2,121,-.048,297,+13.15,32,113.8,26,100.7,33,-9.24,355
|
||||
16,Kentucky 3,SEC,22-11,+24.30,123.9,8,99.6,56,71.0,23,+.007,157,+17.92,3,116.9,3,99.0,5,+3.78,75
|
||||
17,Texas A&M 4,SEC,22-10,+24.12,116.3,41,92.2,7,66.2,238,+.001,175,+16.21,5,115.5,5,99.3,9,+7.11,40
|
||||
18,Clemson 5,ACC,27-6,+23.94,118.7,24,94.8,16,64.3,327,-.032,267,+8.34,68,111.5,63,103.2,73,+3.71,79
|
||||
19,Purdue 4,B10,22-11,+23.87,124.3,7,100.4,64,65.0,297,-.007,198,+15.77,9,115.4,6,99.7,15,+10.43,18
|
||||
20,Illinois 6,B10,21-12,+23.59,121.7,15,98.1,41,71.4,18,-.018,229,+15.99,7,115.0,10,99.0,7,+3.43,83
|
||||
21,Kansas 7,B12,21-12,+23.29,116.0,48,92.7,11,68.4,113,-.024,250,+15.57,12,114.9,11,99.3,10,+8.78,25
|
||||
22,Saint Mary's 7,WCC,28-5,+23.14,115.3,56,92.2,8,61.7,359,+.005,162,+5.44,87,111.1,71,105.6,121,+5.16,49
|
||||
23,Louisville 8,ACC,27-7,+22.71,118.2,29,95.5,21,68.8,91,+.058,55,+10.44,54,112.7,45,102.3,58,+7.14,39
|
||||
24,BYU 6,B12,24-9,+22.36,123.0,11,100.7,69,67.3,180,+.036,85,+11.12,51,111.9,59,100.7,36,-7.90,347
|
||||
25,Michigan 5,B10,25-9,+22.31,116.1,47,93.8,13,69.5,64,+.070,41,+14.91,13,114.5,18,99.6,11,+3.85,73
|
||||
26,Mississippi 6,SEC,22-11,+22.13,117.9,31,95.8,23,68.1,130,+.018,132,+15.87,8,115.2,8,99.3,8,-0.55,194
|
||||
27,UCLA 7,B10,22-10,+21.78,116.9,35,95.1,17,64.9,301,-.008,203,+12.61,37,113.7,28,101.1,45,-5.18,314
|
||||
28,Marquette 7,BE,23-10,+21.56,117.7,32,96.1,28,67.6,155,-.013,214,+12.53,38,113.1,40,100.6,30,+8.80,24
|
||||
29,Baylor 9,B12,19-14,+21.16,120.9,16,99.7,58,64.6,320,-.054,314,+15.72,10,113.8,27,98.1,2,+7.69,33
|
||||
30,North Carolina 11,ACC,23-13,+20.64,119.8,19,99.2,52,70.5,34,-.021,243,+12.33,40,113.3,39,101.0,43,+13.34,7
|
||||
31,VCU 11,A10,28-6,+20.27,116.2,45,95.9,24,66.1,243,-.051,310,+1.02,128,106.8,159,105.8,125,-4.07,292
|
||||
32,Mississippi St. 8,SEC,21-12,+20.15,118.8,23,98.7,46,68.2,124,+.012,145,+14.88,14,115.1,9,100.2,21,+0.67,149
|
||||
33,Oregon 5,B10,24-9,+20.12,116.6,39,96.5,30,67.7,151,+.085,27,+14.15,19,114.4,19,100.3,24,+4.10,68
|
||||
34,Georgia 9,SEC,20-12,+19.39,115.4,53,96.1,26,66.5,221,-.001,183,+13.66,25,113.9,25,100.3,23,-5.40,322
|
||||
35,Connecticut 8,BE,23-10,+19.31,121.9,14,102.6,96,63.8,344,-.019,233,+10.10,56,112.1,52,102.0,54,-0.10,174
|
||||
36,Creighton 9,BE,24-10,+18.64,116.9,34,98.3,42,67.1,192,+.049,70,+11.46,46,112.2,50,100.8,38,+5.43,46
|
||||
37,UC San Diego 12,BW,30-4,+18.40,115.1,60,96.7,32,65.7,272,+.010,152,-1.95,189,105.7,219,107.7,190,-2.00,233
|
||||
38,Oklahoma 9,SEC,20-13,+18.38,119.1,22,100.7,70,68.6,106,+.005,161,+14.69,15,114.6,16,99.9,18,-5.41,323
|
||||
39,Ohio St.,B10,17-15,+18.32,117.7,33,99.3,54,67.0,195,-.070,332,+14.42,18,114.7,14,100.3,25,+3.14,90
|
||||
40,Arkansas 10,SEC,20-13,+17.76,113.0,73,95.2,18,69.4,68,-.008,202,+13.93,22,114.8,13,100.9,40,-2.50,249
|
||||
41,Xavier 11,BE,21-11,+17.18,115.5,52,98.3,43,69.1,75,-.020,237,+9.41,59,111.1,70,101.7,53,-1.13,210
|
||||
42,Texas 11,SEC,19-15,+17.17,116.8,36,99.6,57,67.4,173,-.057,317,+14.05,20,114.2,24,100.2,20,-8.21,349
|
||||
43,New Mexico 10,MWC,26-7,+17.02,112.4,84,95.4,20,72.7,4,-.000,179,+6.03,82,109.0,93,103.0,70,+5.15,50
|
||||
44,Colorado St. 12,MWC,25-9,+16.96,116.1,46,99.1,51,66.0,251,+.025,117,+5.58,86,109.3,90,103.7,78,+1.44,131
|
||||
45,Northwestern,B10,17-16,+16.38,113.9,64,97.5,39,65.0,298,-.089,350,+12.44,39,113.7,32,101.2,48,-2.13,237
|
||||
46,SMU,ACC,23-10,+16.24,116.7,37,100.4,65,68.5,109,+.011,148,+6.08,81,110.3,79,104.2,91,-3.78,283
|
||||
47,Indiana,B10,19-13,+16.21,113.7,67,97.5,38,67.9,137,+.024,119,+13.34,28,114.4,20,101.1,44,+1.37,132
|
||||
48,Vanderbilt 10,SEC,20-12,+16.19,118.0,30,101.8,84,69.5,63,+.025,113,+12.98,33,113.7,30,100.7,34,-6.82,343
|
||||
49,Boise St.,MWC,24-10,+15.58,115.8,50,100.2,60,65.2,291,+.004,169,+6.13,80,109.0,92,102.9,68,+1.65,124
|
||||
50,Memphis 5,Amer,29-5,+15.47,113.3,72,97.8,40,70.8,27,+.090,20,+6.19,79,111.2,67,105.0,102,+15.72,4
|
||||
51,West Virginia,B12,19-13,+15.10,109.1,132,94.0,14,64.2,329,+.023,121,+13.22,30,113.0,43,99.8,16,+1.01,138
|
||||
52,Santa Clara,WCC,21-12,+14.95,116.5,40,101.6,78,68.9,89,-.054,313,+3.85,97,109.4,88,105.6,117,+3.66,80
|
||||
53,San Diego St. 11,MWC,21-10,+14.92,109.6,118,94.7,15,66.1,244,+.028,107,+9.01,62,111.3,65,102.3,61,+13.03,8
|
||||
54,Utah St. 10,MWC,26-7,+14.89,120.6,17,105.7,150,67.6,159,+.086,24,+5.38,89,108.6,99,103.2,74,+0.76,144
|
||||
55,Nebraska,B10,17-14,+14.84,113.3,71,98.4,44,67.4,174,-.010,207,+12.21,42,113.7,29,101.5,51,-2.99,264
|
||||
56,Cincinnati,B12,18-15,+14.79,110.5,101,95.7,22,65.5,280,-.049,302,+11.41,48,112.3,49,100.9,42,-4.99,310
|
||||
57,Drake 11,MVC,30-3,+14.21,112.7,75,98.5,45,58.8,364,+.004,166,-0.39,160,107.3,140,107.6,188,-2.62,251
|
||||
58,Villanova,BE,19-14,+14.20,118.3,26,104.1,116,63.0,354,-.072,335,+7.69,70,110.4,77,102.7,67,-6.30,334
|
||||
59,McNeese 12,Slnd,27-6,+13.81,114.3,63,100.5,66,65.4,283,-.023,249,-2.33,204,104.8,267,107.1,164,+8.99,23
|
||||
60,Liberty 12,CUSA,28-6,+13.78,112.6,78,98.8,48,65.4,285,+.000,177,+0.69,135,106.1,197,105.4,115,-2.84,257
|
||||
61,Pittsburgh,ACC,17-15,+13.71,115.7,51,102.0,86,66.3,234,-.068,330,+8.84,63,111.9,56,103.1,71,+3.76,77
|
||||
62,Penn St.,B10,16-15,+13.65,114.7,62,101.1,72,69.9,56,-.093,354,+9.36,60,111.9,55,102.6,64,-10.56,360
|
||||
63,USC,B10,16-17,+12.93,116.7,38,103.7,107,68.2,122,-.043,290,+12.16,43,113.3,38,101.2,46,-2.14,238
|
||||
64,Iowa,B10,17-16,+12.82,119.6,20,106.8,175,69.6,61,-.037,277,+12.30,41,113.6,34,101.3,49,-8.37,350
|
||||
65,San Francisco,WCC,24-9,+12.68,111.8,90,99.1,50,67.8,144,+.053,64,+3.77,98,109.6,85,105.8,126,-1.12,208
|
||||
66,Kansas St.,B12,16-17,+12.22,109.4,123,97.2,36,67.0,196,-.037,276,+12.88,34,112.5,48,99.6,12,-1.12,209
|
||||
67,UC Irvine,BW,28-6,+12.08,107.4,158,95.3,19,68.7,98,+.059,53,+0.48,138,107.1,148,106.6,145,+4.28,65
|
||||
68,UCF,B12,17-16,+11.61,115.4,54,103.8,112,71.9,11,+.025,115,+12.04,44,111.7,62,99.6,13,-1.03,205
|
||||
69,South Carolina,SEC,12-20,+11.52,110.5,102,99.0,49,65.3,287,-.088,349,+14.51,17,114.9,12,100.4,29,-1.97,232
|
||||
70,North Texas,Amer,25-8,+11.38,110.2,106,98.8,47,60.4,362,-.017,227,+0.99,129,108.6,100,107.6,182,+1.78,122
|
||||
71,Wake Forest,ACC,21-11,+11.32,108.3,145,96.9,34,67.1,190,+.088,22,+8.71,65,111.4,64,102.7,65,-2.10,236
|
||||
72,Arizona St.,B12,13-19,+11.24,112.5,81,101.3,76,68.4,111,-.019,234,+15.63,11,114.6,15,99.0,6,+8.34,30
|
||||
73,Yale 13,Ivy,22-7,+11.03,115.1,58,104.1,119,67.2,183,-.041,285,-2.54,215,106.5,176,109.0,258,-0.77,200
|
||||
74,Dayton,A10,23-10,+11.03,116.0,49,104.9,133,65.9,256,+.038,83,+4.84,91,108.5,102,103.7,77,+4.90,55
|
||||
75,Rutgers,B10,15-17,+10.76,115.1,59,104.4,122,68.7,100,-.012,213,+13.30,29,113.5,36,100.2,22,-2.21,241
|
||||
76,Utah,B12,16-16,+10.61,112.4,82,101.8,83,68.8,92,-.050,304,+10.60,53,112.1,53,101.5,52,-9.42,356
|
||||
77,Butler,BE,14-19,+10.56,116.2,44,105.6,149,67.5,168,-.077,343,+11.41,47,112.1,51,100.7,35,+3.09,92
|
||||
78,George Mason,A10,27-8,+10.53,106.5,183,95.9,25,64.6,319,+.074,36,+0.98,130,107.5,129,106.5,144,-5.24,317
|
||||
79,Stanford,ACC,21-13,+9.99,112.6,79,102.6,95,66.0,252,+.045,76,+5.87,83,109.7,83,103.8,80,-3.84,285
|
||||
80,Nevada,MWC,17-16,+9.69,112.7,76,103.0,97,63.8,342,-.093,353,+5.16,90,109.0,94,103.8,81,+2.03,117
|
||||
81,Colorado,B12,14-20,+9.52,108.8,138,99.3,53,67.7,148,-.042,287,+13.46,26,113.1,41,99.6,14,-1.51,223
|
||||
82,Lipscomb 14,ASun,25-9,+9.45,112.7,74,103.3,101,65.9,259,-.028,263,-4.57,282,105.6,227,110.2,334,+3.98,69
|
||||
83,Saint Joseph's,A10,22-13,+9.38,109.8,112,100.4,63,68.0,132,-.070,333,+0.79,134,106.8,157,106.0,129,-4.27,301
|
||||
84,High Point 13,BSth,29-5,+9.35,118.5,25,109.2,226,66.5,222,+.011,147,-5.43,297,104.4,282,109.8,317,-5.81,328
|
||||
85,Oregon St.,WCC,20-12,+9.31,116.3,42,106.9,180,63.8,343,-.029,264,+0.95,131,107.1,145,106.2,137,-4.56,304
|
||||
86,Arkansas St.,SB,25-10,+9.03,111.2,95,102.2,89,70.1,51,-.039,281,-2.09,198,105.1,250,107.2,167,+1.00,139
|
||||
87,TCU,B12,16-16,+8.88,105.9,200,97.0,35,66.6,217,+.030,101,+13.18,31,113.6,35,100.4,28,+2.89,94
|
||||
88,Georgetown,BE,17-15,+8.83,108.4,144,99.5,55,68.3,120,-.037,274,+6.37,77,109.9,81,103.5,75,-11.40,362
|
||||
89,LSU,SEC,14-18,+8.69,109.1,133,100.4,62,68.0,136,-.062,324,+13.97,21,114.4,21,100.4,27,-6.91,344
|
||||
90,Florida St.,ACC,17-15,+8.49,108.8,139,100.3,61,69.5,62,-.007,197,+6.55,76,110.4,78,103.8,82,-2.45,247
|
||||
91,Minnesota,B10,15-17,+8.46,110.2,107,101.7,81,62.7,357,+.025,114,+11.64,45,113.0,44,101.4,50,-5.98,333
|
||||
92,Bradley,MVC,27-8,+7.33,111.1,96,103.8,109,65.8,266,+.100,17,+0.25,143,107.8,116,107.5,177,-2.80,254
|
||||
93,Troy 14,SB,23-10,+7.19,107.8,152,100.6,67,66.3,230,-.009,204,-2.57,217,105.5,232,108.1,207,+1.37,133
|
||||
94,Grand Canyon 13,WAC,26-7,+7.19,107.8,151,100.6,68,71.5,15,+.019,128,-3.48,254,103.1,304,106.6,148,-3.26,274
|
||||
95,UNLV,MWC,18-15,+7.18,107.4,157,100.2,59,65.7,268,+.010,153,+5.74,84,109.8,82,104.1,87,+3.76,76
|
||||
96,Notre Dame,ACC,15-18,+7.11,111.3,92,104.2,121,64.7,313,-.046,294,+7.66,71,111.2,66,103.5,76,-0.21,182
|
||||
97,Akron 13,MAC,28-6,+6.93,113.9,66,107.0,181,71.4,16,+.071,38,-4.00,271,104.9,264,108.9,250,+1.73,123
|
||||
98,Providence,BE,12-20,+6.92,112.1,87,105.2,139,66.3,232,-.097,356,+9.70,58,111.9,57,102.2,57,-0.56,195
|
||||
99,Oklahoma St.,B12,16-17,+6.48,108.2,146,101.7,80,71.6,14,+.079,29,+11.34,49,112.5,46,101.2,47,-3.03,267
|
||||
100,Georgia Tech,ACC,17-17,+6.10,107.3,162,101.2,74,68.7,99,-.001,184,+6.34,78,110.5,76,104.2,89,-7.94,348
|
||||
101,UAB,Amer,23-12,+6.09,116.2,43,110.2,245,69.1,73,-.014,216,-0.32,159,106.5,174,106.8,152,-8.52,351
|
||||
102,Northern Iowa,MVC,20-12,+5.82,109.9,111,104.1,117,65.0,299,-.006,192,+0.09,148,107.2,144,107.1,161,-1.48,220
|
||||
103,Virginia,ACC,15-17,+5.28,110.6,99,105.4,142,61.1,361,+.016,137,+8.74,64,111.2,68,102.4,63,+0.89,141
|
||||
104,Chattanooga,SC,25-9,+5.26,115.3,57,110.1,243,66.5,218,+.052,66,-2.39,207,105.2,249,107.6,181,+0.22,162
|
||||
105,Jacksonville St.,CUSA,23-12,+5.21,110.0,110,104.8,129,64.9,302,+.045,75,+2.27,110,107.5,126,105.2,109,+0.04,171
|
||||
106,UNC Wilmington 14,CAA,27-7,+5.17,112.3,85,107.2,184,65.4,284,+.055,59,-4.55,281,104.9,262,109.5,293,-4.94,309
|
||||
107,Washington,B10,13-18,+5.03,109.1,130,104.1,115,67.7,150,+.011,151,+12.77,35,113.7,31,100.9,41,-4.22,299
|
||||
108,Loyola Chicago,A10,22-11,+4.72,107.2,165,102.5,94,66.9,205,+.067,43,+0.35,141,106.5,172,106.2,139,-9.04,354
|
||||
109,North Alabama,ASun,24-11,+4.70,111.3,94,106.6,169,66.8,213,-.003,188,-5.00,291,105.0,257,110.0,329,-3.04,268
|
||||
110,California,ACC,14-19,+4.67,111.3,93,106.6,172,67.5,162,-.038,280,+6.83,75,111.1,72,104.2,92,-1.68,229
|
||||
111,Utah Valley,WAC,25-8,+4.54,106.8,176,102.2,91,68.0,134,+.089,21,-1.83,185,105.1,255,106.9,157,+0.78,142
|
||||
112,Syracuse,ACC,14-19,+4.44,110.4,105,106.0,153,68.2,123,+.026,111,+8.67,66,111.8,61,103.1,72,+2.57,102
|
||||
113,South Alabama,SB,21-11,+4.43,107.5,155,103.1,99,63.1,353,-.042,288,-3.82,267,104.5,280,108.3,219,-2.83,256
|
||||
114,George Washington,A10,21-12,+4.43,107.9,150,103.5,103,66.8,211,-.023,248,-2.21,201,104.6,277,106.8,150,-11.42,363
|
||||
115,DePaul,BE,14-19,+4.30,109.6,116,105.3,141,66.9,203,-.038,278,+8.35,67,110.6,75,102.3,59,-9.50,357
|
||||
116,Florida Atlantic,Amer,18-16,+4.28,112.6,80,108.3,205,68.8,90,-.028,259,+2.80,103,108.4,105,105.6,116,+4.52,62
|
||||
117,Kent St.,MAC,23-11,+4.23,105.9,198,101.7,82,66.3,229,+.027,110,-3.03,235,106.0,204,109.0,263,+2.12,112
|
||||
118,CSUN,BW,22-11,+4.22,108.9,136,104.7,127,72.3,8,+.013,143,-2.07,197,105.5,236,107.5,178,-5.39,321
|
||||
119,St. Bonaventure,A10,22-12,+4.18,105.3,209,101.1,73,64.6,318,+.047,73,+1.21,123,107.4,134,106.2,138,-4.26,300
|
||||
120,Middle Tennessee,CUSA,22-12,+4.17,109.2,128,105.0,134,68.3,117,+.074,34,+2.87,102,107.5,125,104.6,98,+2.94,93
|
||||
121,Saint Louis,A10,19-15,+4.15,109.3,127,105.1,137,67.6,160,-.001,180,+3.73,99,108.3,106,104.5,97,-0.28,185
|
||||
122,Wofford 15,SC,19-15,+4.05,113.6,69,109.5,231,64.1,333,-.032,266,-0.80,163,106.8,162,107.6,180,+5.17,47
|
||||
123,Northern Colorado,BSky,25-9,+3.93,112.0,88,108.1,203,68.7,94,+.042,78,-4.17,276,105.5,230,109.7,312,+2.12,110
|
||||
124,Washington St.,WCC,19-14,+3.93,111.7,91,107.7,195,70.6,32,+.076,33,+4.22,96,109.4,87,105.2,107,+2.53,103
|
||||
125,Louisiana Tech,CUSA,20-12,+3.88,109.0,135,105.1,136,64.5,324,+.031,97,+1.11,124,106.2,195,105.1,104,-2.31,243
|
||||
126,Samford,SC,22-11,+3.87,112.6,77,108.7,215,70.9,25,+.019,129,-2.05,195,105.9,210,107.9,199,-0.12,177
|
||||
127,N.C. State,ACC,12-19,+3.84,107.6,154,103.8,108,65.3,289,-.079,346,+7.05,72,111.1,69,104.1,86,-5.15,313
|
||||
128,Belmont,MVC,22-11,+3.41,112.4,83,109.0,221,70.6,31,+.081,28,+0.07,149,107.0,153,106.9,155,-1.56,226
|
||||
129,St. Thomas,Sum,24-10,+3.40,113.6,68,110.2,246,67.8,139,-.010,208,-3.53,259,106.8,158,110.3,343,-0.54,193
|
||||
130,Kennesaw St.,CUSA,19-14,+3.37,107.2,168,103.8,111,70.3,43,+.035,88,+3.34,100,107.3,137,104.0,84,+3.20,89
|
||||
131,Cornell,Ivy,18-11,+3.32,114.9,61,111.6,273,70.9,26,-.033,268,-2.60,221,105.6,226,108.2,217,-2.56,250
|
||||
132,New Mexico St.,CUSA,17-15,+3.13,104.4,218,101.3,75,64.8,308,-.037,275,+2.57,106,107.0,150,104.5,96,+1.79,121
|
||||
133,North Dakota St.,Sum,21-11,+2.74,115.4,55,112.6,297,64.9,303,-.006,193,-3.07,238,107.5,123,110.6,350,-0.21,183
|
||||
134,South Dakota St.,Sum,20-12,+2.61,109.7,115,107.1,182,69.0,81,-.018,230,-1.79,183,108.0,112,109.8,315,+4.14,67
|
||||
135,Wichita St.,Amer,19-15,+2.58,107.0,172,104.5,123,68.7,95,+.034,89,+1.92,113,107.6,120,105.7,123,+1.06,137
|
||||
136,Duquesne,A10,13-19,+2.53,106.0,196,103.5,104,65.2,290,-.127,361,+1.80,115,107.0,154,105.2,105,-1.94,230
|
||||
137,Tulane,Amer,19-14,+2.21,108.8,137,106.6,171,66.7,214,-.033,271,-1.14,170,106.5,173,107.7,189,-6.53,337
|
||||
138,Robert Morris 15,Horz,26-8,+2.16,107.0,171,104.9,131,67.8,140,+.088,23,-6.13,304,104.6,275,110.7,355,-8.53,352
|
||||
139,Furman,SC,25-10,+2.10,110.1,108,108.0,202,65.9,258,+.112,13,-1.06,168,106.6,169,107.6,187,+0.48,153
|
||||
140,Illinois St.,MVC,19-14,+2.02,112.0,89,110.0,241,65.7,269,-.015,218,+0.15,147,107.5,121,107.4,173,-1.50,222
|
||||
141,Murray St.,MVC,16-17,+1.95,106.5,180,104.6,124,64.9,305,-.050,308,+1.52,117,107.6,119,106.1,133,+1.33,134
|
||||
142,East Tennessee St.,SC,19-13,+1.83,106.7,178,104.9,132,65.1,295,-.069,331,-3.39,250,105.9,205,109.3,286,-3.18,271
|
||||
143,Milwaukee,Horz,21-11,+1.83,107.3,161,105.5,147,68.7,97,+.004,170,-3.06,237,106.1,196,109.2,272,+2.50,104
|
||||
144,UNC Greensboro,SC,20-12,+1.70,107.1,170,105.4,144,63.8,340,-.016,222,-2.36,206,106.6,167,109.0,257,+1.49,130
|
||||
145,Seattle,WAC,14-18,+1.58,104.0,221,102.4,93,65.9,253,-.138,364,-0.04,152,105.0,260,105.0,103,+4.95,54
|
||||
146,Davidson,A10,17-16,+1.33,109.6,117,108.3,207,65.9,257,-.020,235,+0.27,142,106.4,183,106.1,135,-4.76,307
|
||||
147,UC Santa Barbara,BW,21-13,+1.20,108.6,141,107.4,190,65.5,279,-.001,181,-2.69,226,104.8,265,107.5,179,-8.72,353
|
||||
148,Bryant 15,AE,23-11,+1.16,106.8,177,105.6,148,72.5,7,-.004,190,-7.04,318,103.0,314,110.0,326,+0.40,156
|
||||
149,Miami OH,MAC,25-9,+1.10,108.0,149,106.9,178,69.0,83,+.086,25,-5.34,295,103.9,293,109.2,276,-3.23,273
|
||||
150,Radford,BSth,20-13,+0.71,110.4,104,109.7,237,62.8,356,+.059,54,-2.03,191,106.8,155,108.9,247,+1.49,129
|
||||
151,Towson,CAA,22-11,+0.69,106.9,175,106.2,159,63.6,347,+.094,19,-2.04,194,105.9,208,108.0,201,+3.55,82
|
||||
152,Rhode Island,A10,18-13,+0.68,108.0,148,107.4,187,70.4,37,+.016,136,-0.84,164,105.7,217,106.6,147,-6.61,341
|
||||
153,Charleston,CAA,24-9,+0.62,106.1,192,105.5,145,70.1,50,+.141,3,-2.67,225,105.9,211,108.5,232,+0.11,167
|
||||
154,UTEP,CUSA,18-15,+0.55,105.4,207,104.8,130,68.8,93,+.028,105,+2.65,104,107.1,147,104.4,95,+0.71,147
|
||||
155,Western Kentucky,CUSA,17-15,+0.52,103.5,233,103.0,98,71.7,12,+.034,90,+2.44,108,106.8,163,104.3,93,+2.12,111
|
||||
156,Loyola Marymount,WCC,17-15,+0.49,104.2,220,103.7,106,67.2,187,+.062,48,+2.60,105,108.7,95,106.1,132,-0.37,188
|
||||
157,Nebraska Omaha 15,Sum,22-12,+0.47,111.1,97,110.6,254,67.8,145,+.071,37,-2.52,214,106.8,160,109.3,278,+0.40,157
|
||||
158,UC Riverside,BW,21-13,+0.40,109.8,113,109.4,229,67.1,191,+.138,4,+2.10,111,107.8,115,105.7,122,+8.65,27
|
||||
159,James Madison,SB,20-12,+0.35,110.6,100,110.2,248,64.9,304,+.069,42,-1.11,169,105.7,220,106.8,153,+3.91,70
|
||||
160,Texas A&M Corpus Chris,Slnd,20-14,+0.30,106.0,194,105.7,152,67.4,172,-.028,261,-3.66,260,104.2,288,107.8,197,+3.88,71
|
||||
161,Montana 14,BSky,25-9,+0.27,110.8,98,110.5,252,67.1,193,+.186,1,-2.31,203,106.4,178,108.8,239,+8.58,28
|
||||
162,Virginia Tech,ACC,13-19,+0.22,106.5,181,106.3,164,65.1,293,+.030,102,+7.04,74,110.9,73,103.9,83,-1.17,213
|
||||
163,Purdue Fort Wayne,Horz,19-13,+0.02,109.1,131,109.1,224,69.8,58,-.015,219,-3.50,257,105.3,243,108.8,243,+0.77,143
|
||||
164,Winthrop,BSth,23-11,+0.01,108.4,143,108.4,209,72.7,6,+.078,32,-3.74,263,105.9,207,109.7,309,-3.51,279
|
||||
165,Lamar,Slnd,20-13,-0.08,102.1,253,102.2,88,65.4,282,+.047,72,-1.66,180,105.6,229,107.2,166,+4.19,66
|
||||
166,Marshall,SB,20-13,-0.26,106.4,184,106.7,173,68.7,101,+.002,172,-4.03,273,105.5,233,109.5,297,-4.28,303
|
||||
167,Cleveland St.,Horz,21-12,-0.26,103.8,226,104.1,114,65.3,288,+.032,95,-4.22,278,104.9,263,109.1,269,+0.16,164
|
||||
168,Appalachian St.,SB,17-14,-0.37,101.2,275,101.6,77,63.2,351,-.028,262,-3.01,233,106.2,193,109.2,275,+3.22,88
|
||||
169,San Jose St.,MWC,15-19,-0.41,107.2,169,107.6,193,66.4,227,+.009,155,+4.46,94,108.6,98,104.1,88,-3.42,277
|
||||
170,Cal Baptist,WAC,17-15,-0.43,105.7,202,106.2,157,65.7,271,-.013,215,-1.85,186,103.7,295,105.6,118,-0.16,179
|
||||
171,Temple,Amer,17-15,-0.56,110.0,109,110.6,253,68.7,102,+.017,134,-0.15,156,106.6,165,106.8,151,-2.02,234
|
||||
172,Nicholls,Slnd,20-13,-0.70,105.7,203,106.4,167,68.2,127,+.054,61,-1.75,182,104.5,279,106.3,140,+8.17,31
|
||||
173,Florida Gulf Coast,ASun,18-14,-0.77,108.1,147,108.9,219,65.2,292,-.026,254,-3.87,269,105.6,224,109.5,296,+3.31,85
|
||||
174,Sam Houston St.,CUSA,13-19,-0.78,110.4,103,111.2,266,67.6,158,-.040,282,+4.33,95,107.3,141,102.9,69,+7.14,38
|
||||
175,Illinois Chicago,MVC,17-14,-0.81,107.0,173,107.8,196,69.1,74,+.066,44,+1.36,121,107.3,139,105.9,127,+2.40,106
|
||||
176,East Carolina,Amer,19-14,-0.97,107.0,174,108.0,200,66.6,215,+.039,81,-1.03,166,107.0,151,108.0,204,-5.25,319
|
||||
177,Oakland,Horz,16-18,-1.28,107.2,167,108.5,210,63.9,338,-.007,196,-0.12,155,107.5,128,107.6,183,+13.78,5
|
||||
178,Princeton,Ivy,19-11,-1.43,105.3,208,106.8,174,66.5,220,+.118,10,-0.96,165,107.2,143,108.1,215,+0.05,170
|
||||
179,Jacksonville,ASun,19-13,-1.49,101.8,260,103.3,100,67.4,170,+.062,47,-2.57,218,107.4,136,109.9,320,+6.71,43
|
||||
180,Norfolk St. 16,MEAC,24-10,-1.50,107.2,166,108.7,214,66.4,226,+.056,57,-7.17,325,103.1,306,110.3,336,+3.10,91
|
||||
181,Eastern Kentucky,ASun,18-14,-1.69,109.7,114,111.4,269,67.6,156,+.019,126,-2.85,230,105.9,209,108.8,240,+4.60,61
|
||||
182,Boston College,ACC,12-19,-1.81,105.4,206,107.2,185,66.8,212,+.018,133,+5.42,88,109.6,86,104.2,90,-6.73,342
|
||||
183,Central Connecticut,NEC,25-7,-1.83,99.8,297,101.6,79,65.8,265,+.023,120,-11.85,364,100.3,363,112.1,364,-2.87,261
|
||||
184,Cal Poly,BW,16-19,-1.95,109.4,125,111.3,267,74.5,3,-.006,195,+1.08,125,106.3,189,105.2,108,+5.08,52
|
||||
185,Drexel,CAA,18-15,-2.06,104.0,223,106.0,154,63.0,355,-.052,312,-4.58,283,105.4,241,109.9,323,-5.23,316
|
||||
186,Merrimack,MAAC,18-15,-2.06,99.9,296,102.0,85,64.5,323,-.002,185,-5.27,293,104.1,289,109.3,285,+7.21,37
|
||||
187,Montana St.,BSky,15-18,-2.16,105.2,210,107.4,191,65.9,263,-.063,326,-2.07,196,106.0,199,108.1,212,+4.81,57
|
||||
188,Rice,Amer,13-19,-2.16,106.4,186,108.5,211,65.3,286,-.084,347,-2.04,192,105.4,238,107.4,174,-7.86,346
|
||||
189,Wyoming,MWC,12-20,-2.27,103.4,234,105.7,151,64.6,316,-.027,257,+4.73,93,109.4,89,104.6,99,-3.00,266
|
||||
190,UTSA,Amer,12-19,-2.36,107.3,163,109.6,234,69.9,55,-.051,311,+1.50,118,107.5,124,106.0,128,+1.50,128
|
||||
191,South Carolina St.,MEAC,20-13,-2.40,102.6,247,105.0,135,69.2,70,-.050,309,-8.57,353,102.7,323,111.3,361,+0.39,158
|
||||
192,Miami FL,ACC,7-24,-2.45,113.5,70,116.0,340,67.5,166,-.130,362,+7.72,69,110.0,80,102.3,60,-2.35,244
|
||||
193,Southern Illinois,MVC,14-19,-2.67,105.7,204,108.3,208,67.9,138,-.025,252,+1.29,122,108.4,104,107.1,159,+2.47,105
|
||||
194,Southeastern Louisiana,Slnd,18-14,-2.70,104.7,213,107.4,189,67.0,201,+.011,149,-3.80,265,104.6,272,108.4,228,-0.47,190
|
||||
195,Texas St.,SB,16-16,-2.73,109.6,122,112.3,285,65.9,255,-.041,284,-2.57,219,104.4,281,107.0,158,-0.42,189
|
||||
196,South Florida,Amer,13-19,-2.76,103.5,232,106.3,166,68.3,119,-.047,295,+0.45,140,108.2,108,107.7,193,-5.43,324
|
||||
197,Ohio,MAC,16-16,-2.77,106.3,190,109.0,222,70.3,42,-.064,327,-3.38,248,106.3,190,109.7,307,-1.39,219
|
||||
198,Central Michigan,MAC,14-17,-2.78,105.5,205,108.3,204,67.2,188,-.091,351,-2.00,190,106.4,185,108.4,222,+11.66,12
|
||||
199,Elon,CAA,17-15,-2.97,107.4,156,110.4,251,65.1,294,-.026,255,-3.40,252,105.0,256,108.5,230,-0.49,191
|
||||
200,UNC Asheville,BSth,21-11,-3.03,109.0,134,112.1,279,68.2,126,+.123,7,-3.22,242,106.5,177,109.7,310,-0.53,192
|
||||
201,Indiana St.,MVC,14-18,-3.15,109.1,129,112.3,282,72.2,9,-.044,291,+0.02,150,106.5,175,106.4,143,-3.99,288
|
||||
202,Youngstown St.,Horz,21-13,-3.20,102.2,252,105.4,143,69.2,69,+.058,56,-4.71,285,105.2,247,109.9,321,-5.91,330
|
||||
203,Southeast Missouri,OVC,21-12,-3.23,101.9,256,105.2,138,68.9,87,+.023,122,-7.34,327,101.8,337,109.2,270,+3.86,72
|
||||
204,Queens,ASun,19-14,-3.32,106.3,189,109.6,233,68.4,112,+.052,68,-3.49,256,105.7,218,109.2,274,+0.69,148
|
||||
205,Dartmouth,Ivy,14-14,-3.35,100.2,294,103.5,105,71.0,24,-.057,319,-3.88,270,106.0,200,109.9,319,-6.55,338
|
||||
206,Seton Hall,BE,7-25,-3.47,98.7,315,102.2,90,64.5,322,-.042,289,+9.95,57,112.1,54,102.2,56,-2.86,258
|
||||
207,Portland St.,BSky,19-13,-3.55,100.5,288,104.1,118,68.5,110,+.015,139,-4.60,284,105.8,216,110.4,344,-1.26,216
|
||||
208,Brown,Ivy,14-13,-3.69,103.1,236,106.8,176,65.8,264,+.022,123,-3.72,262,105.7,221,109.4,289,-5.60,327
|
||||
209,Northeastern,CAA,17-15,-3.73,103.6,230,107.4,188,67.3,176,+.019,127,-4.05,274,104.0,291,108.1,206,-3.64,281
|
||||
210,Valparaiso,MVC,15-19,-3.77,105.9,197,109.7,236,68.0,131,-.001,182,+0.24,144,106.6,170,106.3,141,-4.20,298
|
||||
211,Longwood,BSth,18-14,-3.81,106.0,195,109.8,239,69.0,79,+.002,173,-4.01,272,106.3,188,110.3,339,-4.12,294
|
||||
212,Idaho St.,BSky,15-15,-3.90,105.9,199,109.8,238,66.0,248,-.059,321,-3.82,266,105.5,234,109.3,283,+2.07,114
|
||||
213,Quinnipiac,MAAC,20-13,-3.97,102.1,254,106.0,155,71.6,13,+.031,99,-6.84,315,102.1,331,108.9,249,-0.21,181
|
||||
214,Hampton,CAA,17-16,-4.16,103.7,227,107.9,198,65.6,275,-.003,189,-2.56,216,106.4,184,108.9,253,+0.11,166
|
||||
215,Pepperdine,WCC,13-22,-4.25,106.4,185,110.6,255,69.1,76,-.022,245,+2.88,101,108.1,110,105.2,110,-4.19,297
|
||||
216,SIUE 16,OVC,22-11,-4.25,102.0,255,106.2,160,65.9,261,+.052,67,-9.00,357,101.4,349,110.4,345,-3.36,276
|
||||
217,Massachusetts,A10,12-20,-4.40,102.2,250,106.6,170,70.3,44,-.050,305,+0.66,137,106.0,201,105.4,114,-3.59,280
|
||||
218,Abilene Christian,WAC,16-16,-4.45,97.7,329,102.1,87,69.4,67,+.036,86,-1.18,171,104.4,284,105.6,119,+0.99,140
|
||||
219,Hofstra,CAA,15-18,-4.45,98.0,325,102.4,92,63.6,348,-.047,296,-3.09,239,105.0,258,108.1,211,+1.98,118
|
||||
220,Maine,AE,20-14,-4.50,100.1,295,104.6,125,65.9,254,+.004,168,-7.09,321,103.5,298,110.6,352,-3.84,284
|
||||
221,Campbell,CAA,15-17,-4.52,101.6,268,106.2,156,65.9,262,-.058,320,-4.19,277,105.1,252,109.3,279,-4.18,296
|
||||
222,Wright St.,Horz,15-18,-4.56,109.6,121,114.1,315,67.5,169,-.060,322,-3.23,244,106.1,198,109.3,280,+0.73,146
|
||||
223,La Salle,A10,14-19,-4.90,103.7,229,108.6,212,68.6,105,+.046,74,+1.98,112,107.3,138,105.3,112,-1.36,218
|
||||
224,UT Arlington,WAC,13-18,-4.96,107.4,159,112.3,286,67.6,161,-.035,272,-1.32,177,104.1,290,105.4,113,-0.13,178
|
||||
225,Little Rock,OVC,19-14,-4.98,99.2,306,104.2,120,66.9,202,+.021,124,-7.68,337,101.8,340,109.4,292,+2.29,107
|
||||
226,Hawaii,BW,15-16,-5.05,103.0,238,108.0,201,65.9,260,+.025,116,-1.20,173,105.9,212,107.1,160,-2.37,245
|
||||
227,Bucknell,PL,18-15,-5.08,102.6,246,107.7,194,67.3,181,+.009,154,-7.55,334,103.0,310,110.6,351,+0.38,159
|
||||
228,Northwestern St.,Slnd,16-16,-5.17,102.7,244,107.9,197,64.0,336,+.079,30,-0.20,158,106.2,192,106.4,142,+11.70,11
|
||||
229,William & Mary,CAA,17-15,-5.29,107.3,160,112.6,296,71.3,19,+.048,71,-2.76,228,105.4,240,108.1,214,-1.17,214
|
||||
230,Presbyterian,BSth,14-18,-5.35,104.5,215,109.9,240,64.2,331,-.036,273,-2.50,212,107.1,149,109.6,300,-0.72,199
|
||||
231,Fordham,A10,12-21,-5.56,106.3,188,111.9,278,69.5,65,-.003,187,+1.48,119,106.4,180,105.0,100,-3.26,275
|
||||
232,Delaware,CAA,16-20,-5.57,109.4,124,115.0,323,70.4,41,-.017,224,-2.93,232,104.7,270,107.6,185,-1.49,221
|
||||
233,Northern Kentucky,Horz,17-16,-5.62,102.7,245,108.3,206,66.1,242,+.041,79,-2.75,227,106.0,202,108.8,241,+3.39,84
|
||||
234,Southern,SWAC,20-12,-5.68,99.0,310,104.7,128,68.5,108,+.053,65,-7.96,341,101.5,348,109.4,291,+11.37,13
|
||||
235,Toledo,MAC,18-15,-5.75,112.2,86,118.0,356,68.0,135,+.117,11,-1.89,187,106.2,194,108.1,209,+3.85,74
|
||||
236,Manhattan,MAAC,17-13,-5.82,108.5,142,114.3,317,67.5,164,+.006,160,-8.49,350,101.2,353,109.7,306,-5.92,331
|
||||
237,Kansas City,Sum,13-20,-5.95,100.4,290,106.3,165,64.5,321,-.108,358,-2.50,211,107.9,113,110.4,346,+0.49,152
|
||||
238,Mount St. Mary's 16,MAAC,23-12,-6.04,101.1,279,107.1,183,67.5,165,+.147,2,-7.16,324,102.0,333,109.1,267,-1.16,212
|
||||
239,UT Rio Grande Valley,Slnd,16-15,-6.14,104.8,211,110.9,261,70.4,35,+.007,156,-3.46,253,104.2,287,107.7,192,-0.37,187
|
||||
240,South Dakota,Sum,19-14,-6.16,109.3,126,115.4,333,74.6,2,+.101,16,-3.33,246,107.0,152,110.3,340,-4.01,289
|
||||
241,Richmond,A10,10-22,-6.22,103.0,239,109.2,227,63.8,345,-.026,253,+2.34,109,107.6,118,105.3,111,-2.81,255
|
||||
242,Vermont,AE,21-12,-6.26,99.2,305,105.5,146,62.4,358,+.118,9,-7.08,320,103.1,308,110.1,332,-0.88,203
|
||||
243,Missouri St.,MVC,9-23,-6.36,101.1,280,107.4,192,63.8,339,-.104,357,+0.91,133,108.7,97,107.7,194,-0.01,172
|
||||
244,UMass Lowell,AE,17-15,-6.37,108.6,140,115.0,325,68.6,104,-.021,242,-7.44,331,101.1,354,108.6,234,-3.89,286
|
||||
245,Cal St. Bakersfield,BW,14-19,-6.37,106.2,191,112.6,294,66.0,246,-.020,236,-1.04,167,105.9,213,106.9,156,-2.18,239
|
||||
246,Incarnate Word,Slnd,17-16,-6.50,106.1,193,112.6,295,64.2,330,-.018,228,-5.34,294,103.1,307,108.4,224,-5.13,312
|
||||
247,Northern Arizona,BSky,18-15,-6.58,104.2,219,110.8,259,66.9,206,+.004,167,-5.41,296,105.1,253,110.5,349,-4.82,308
|
||||
248,Jackson St.,SWAC,16-18,-6.59,100.3,291,106.9,179,68.3,115,+.021,125,-4.77,287,103.6,297,108.4,221,+16.36,3
|
||||
249,American 16,PL,22-13,-6.69,102.4,248,109.1,223,63.6,349,+.123,6,-7.15,323,103.1,305,110.3,337,+1.59,126
|
||||
250,Georgia Southern,SB,17-16,-6.79,102.8,243,109.6,232,69.4,66,+.064,45,-4.76,286,104.7,271,109.4,290,-2.96,262
|
||||
251,UC Davis,BW,15-17,-6.83,97.0,335,103.8,110,67.0,200,+.070,39,+0.16,146,107.4,132,107.3,168,+1.92,119
|
||||
252,Tennessee St.,OVC,17-16,-7.25,102.3,249,109.5,230,70.4,40,-.068,329,-8.44,349,100.9,358,109.4,287,-0.28,184
|
||||
253,FIU,CUSA,10-23,-7.32,96.7,337,104.0,113,68.4,114,-.050,306,+0.47,139,107.2,142,106.7,149,-6.33,335
|
||||
254,Siena,MAAC,14-18,-7.40,102.8,241,110.2,247,67.2,184,-.067,328,-6.76,313,102.8,318,109.6,303,-1.07,206
|
||||
255,Charlotte,Amer,11-22,-7.74,104.5,216,112.3,284,64.8,306,-.009,205,-0.20,157,107.4,133,107.6,186,-4.14,295
|
||||
256,Harvard,Ivy,12-15,-7.76,101.2,277,108.9,220,65.5,276,+.054,62,-2.40,208,105.5,231,107.9,200,-3.09,270
|
||||
257,Iona,MAAC,17-17,-7.82,98.7,316,106.5,168,68.1,129,+.014,141,-7.11,322,102.7,321,109.8,316,-2.87,259
|
||||
258,Evansville,MVC,11-21,-7.94,98.3,320,106.2,161,66.9,209,-.021,244,+1.07,126,108.2,109,107.1,162,+0.54,150
|
||||
259,Fresno St.,MWC,6-26,-7.96,100.7,284,108.7,213,70.6,33,-.008,200,+5.65,85,109.7,84,104.0,85,-2.20,240
|
||||
260,North Florida,ASun,15-17,-7.96,109.6,119,117.5,350,72.2,10,+.049,69,-2.43,209,106.4,186,108.8,242,+6.87,42
|
||||
261,Georgia St.,SB,14-19,-7.98,106.6,179,114.5,320,68.9,84,+.013,142,-3.10,240,105.2,248,108.3,218,-1.60,228
|
||||
262,Sacred Heart,MAAC,15-18,-8.00,104.8,212,112.8,302,70.2,47,-.049,300,-7.44,330,101.9,335,109.3,284,-2.87,260
|
||||
263,Mercer,SC,14-19,-8.05,99.2,304,107.3,186,71.1,21,-.014,217,-2.49,210,106.3,191,108.7,238,-1.56,224
|
||||
264,Gardner Webb,BSth,11-20,-8.09,103.1,237,111.2,265,69.0,82,-.011,210,-2.22,202,107.5,127,109.7,311,+0.06,168
|
||||
265,Colgate,PL,14-19,-8.10,104.5,214,112.6,298,67.2,185,-.057,318,-5.79,301,103.5,300,109.2,277,+2.62,99
|
||||
266,North Dakota,Sum,12-21,-8.21,107.7,153,115.9,337,69.0,80,-.020,238,-0.63,161,108.1,111,108.7,236,+2.69,96
|
||||
267,Tulsa,Amer,13-20,-8.52,101.5,271,110.0,242,66.2,235,-.044,292,-1.32,176,106.6,168,107.9,198,-9.50,358
|
||||
268,Monmouth,CAA,13-20,-8.56,103.9,224,112.5,293,67.1,194,+.028,108,-1.82,184,105.5,235,107.3,170,+2.29,108
|
||||
269,Portland,WCC,12-20,-8.88,105.9,201,114.7,321,68.3,116,+.033,91,+1.54,116,107.7,117,106.1,136,-4.02,290
|
||||
270,Marist,MAAC,20-10,-9.02,97.2,333,106.2,158,64.1,332,+.107,15,-10.25,361,100.7,360,110.9,358,-11.79,364
|
||||
271,Ball St.,MAC,14-17,-9.07,103.6,231,112.7,299,66.4,225,-.056,316,-6.13,303,104.3,285,110.5,348,-6.58,339
|
||||
272,Albany,AE,17-16,-9.14,103.2,235,112.4,288,67.5,163,+.018,131,-7.50,332,102.5,326,110.0,330,-4.70,306
|
||||
273,Alabama St. 16,SWAC,20-15,-9.24,101.4,273,110.7,256,67.8,142,+.061,51,-8.80,355,100.7,359,109.5,298,+6.24,45
|
||||
274,Austin Peay,ASun,14-19,-9.27,101.9,258,111.1,264,66.1,245,+.025,118,-1.90,188,107.8,114,109.8,313,+4.85,56
|
||||
275,Navy,PL,15-19,-9.36,102.2,251,111.6,271,67.0,198,-.040,283,-8.18,346,101.8,336,110.0,328,-6.45,336
|
||||
276,Eastern Michigan,MAC,16-16,-9.39,104.5,217,113.9,312,67.2,186,+.115,12,-4.07,275,105.4,237,109.5,295,-3.18,272
|
||||
277,Stephen F. Austin,Slnd,14-17,-9.46,95.1,348,104.6,126,67.4,171,+.055,60,-2.63,224,104.6,278,107.2,165,+1.07,136
|
||||
278,Houston Christian,Slnd,12-20,-9.48,100.6,285,110.1,244,64.8,312,-.006,191,-2.58,220,104.7,269,107.3,169,+5.17,48
|
||||
279,Idaho,BSky,14-19,-9.59,107.2,164,116.8,345,66.3,231,+.032,96,-2.78,229,105.3,242,108.1,208,+1.58,127
|
||||
280,Columbia,Ivy,12-15,-9.61,106.3,187,115.9,339,70.7,30,-.017,225,-5.10,292,104.6,276,109.7,308,-10.70,361
|
||||
281,Texas Southern,SWAC,15-17,-9.64,96.6,338,106.2,162,69.9,53,-.049,301,-7.29,326,101.8,338,109.1,265,+12.40,9
|
||||
282,Old Dominion,SB,15-20,-10.11,100.2,292,110.3,250,66.0,249,+.033,92,-3.76,264,105.1,254,108.9,245,-2.63,252
|
||||
283,Pacific,WCC,9-24,-10.26,101.5,272,111.7,277,66.5,223,-.033,269,+2.45,107,108.6,101,106.1,134,-0.19,180
|
||||
284,Lehigh,PL,11-19,-10.37,100.6,286,110.9,262,67.3,179,-.097,355,-6.47,310,103.0,311,109.5,294,+3.31,86
|
||||
285,Tarleton St.,WAC,12-20,-10.38,93.0,359,103.4,102,65.5,277,+.025,112,+1.45,120,106.4,181,105.0,101,+7.30,35
|
||||
286,LIU,NEC,17-16,-10.40,94.9,352,105.3,140,64.8,309,-.003,186,-10.75,363,100.9,357,111.7,363,-2.65,253
|
||||
287,Bethune Cookman,SWAC,17-16,-10.57,97.3,332,107.9,199,69.1,77,+.119,8,-5.60,299,102.8,319,108.4,225,+9.00,22
|
||||
288,Bowling Green,MAC,14-18,-10.58,99.1,307,109.7,235,68.7,96,+.004,164,-6.25,306,104.4,283,110.7,354,-6.60,340
|
||||
289,VMI,SC,15-19,-10.62,100.2,293,110.8,258,68.2,125,+.027,109,-2.60,222,106.4,182,109.0,259,-2.42,246
|
||||
290,Western Michigan,MAC,12-20,-10.64,101.6,269,112.3,283,67.8,141,-.008,201,-3.40,251,105.7,223,109.1,264,+0.05,169
|
||||
291,Lafayette,PL,13-20,-10.86,98.0,324,108.8,217,66.2,241,-.077,344,-8.44,348,102.9,316,111.3,362,-5.24,318
|
||||
292,Tennessee Martin,OVC,14-19,-10.93,101.8,259,112.7,301,66.3,233,-.042,286,-7.35,329,101.6,344,108.9,252,+2.64,97
|
||||
293,Southern Miss,SB,11-22,-11.02,97.8,327,108.8,216,70.8,28,-.007,199,-2.14,199,105.2,246,107.4,172,+0.46,154
|
||||
294,Penn,Ivy,8-19,-11.03,104.0,222,115.0,326,66.9,208,-.011,211,-1.49,179,105.9,206,107.4,175,-1.60,227
|
||||
295,Eastern Washington,BSky,10-22,-11.11,101.8,262,112.9,304,66.9,207,+.002,174,-1.24,175,107.1,146,108.3,220,+6.32,44
|
||||
296,Southern Utah,WAC,12-19,-11.16,98.2,323,109.3,228,68.9,86,+.032,94,-1.33,178,104.7,268,106.1,131,+0.33,160
|
||||
297,San Diego,WCC,6-27,-11.29,99.4,303,110.7,257,71.1,20,-.074,340,+0.94,132,107.5,122,106.6,146,-4.28,302
|
||||
298,Saint Peter's,MAAC,12-16,-11.32,94.9,350,106.3,163,63.9,337,+.007,158,-7.04,319,103.4,301,110.4,347,-0.11,176
|
||||
299,UMBC,AE,13-19,-11.49,106.5,182,118.0,355,70.4,38,-.072,336,-7.55,335,101.6,345,109.1,268,-5.58,326
|
||||
300,Weber St.,BSky,12-22,-11.56,101.1,278,112.7,300,65.6,273,-.011,212,-2.51,213,106.3,187,108.8,244,+2.84,95
|
||||
301,Utah Tech,WAC,7-26,-11.83,101.8,261,113.6,309,67.5,167,-.062,323,-0.06,153,105.1,251,105.2,106,+3.28,87
|
||||
302,Charleston Southern,BSth,10-22,-12.00,99.7,299,111.7,275,67.3,178,+.040,80,-0.09,154,108.5,103,108.6,233,+4.42,63
|
||||
303,Tennessee Tech,OVC,15-17,-12.26,100.9,281,113.1,306,67.7,146,+.045,77,-7.80,338,101.5,347,109.3,282,+0.75,145
|
||||
304,Long Beach St.,BW,7-25,-12.43,101.7,266,114.1,314,64.1,334,-.071,334,+0.68,136,106.7,164,106.0,130,+2.07,113
|
||||
305,Boston University,PL,16-16,-12.47,98.9,311,111.4,270,63.1,352,+.061,49,-8.54,352,102.1,330,110.6,353,-5.88,329
|
||||
306,Delaware St.,MEAC,16-14,-12.48,101.7,263,114.2,316,70.2,45,+.054,63,-8.50,351,102.7,324,111.2,360,-1.15,211
|
||||
307,Loyola MD,PL,12-19,-12.51,100.4,289,112.9,305,66.6,216,-.030,265,-8.30,347,101.9,334,110.2,335,-5.31,320
|
||||
308,Fairleigh Dickinson,NEC,13-20,-12.55,98.3,319,110.9,260,69.2,72,-.073,337,-7.96,342,102.0,332,110.0,324,+2.58,101
|
||||
309,Denver,Sum,11-21,-12.63,98.7,317,111.3,268,66.4,224,+.005,163,-1.72,181,108.3,107,110.0,327,-0.56,196
|
||||
310,Saint Francis 16,NEC,16-18,-12.75,99.7,300,112.4,290,66.9,204,+.060,52,-6.86,316,101.6,343,108.5,229,+8.06,32
|
||||
311,Air Force,MWC,4-28,-12.79,98.8,312,111.6,274,64.4,325,-.085,348,+4.83,92,109.2,91,104.4,94,-4.03,291
|
||||
312,Howard,MEAC,12-20,-13.17,103.7,228,116.9,346,70.0,52,-.000,178,-6.65,312,103.3,303,109.9,322,+2.05,116
|
||||
313,Louisiana,SB,12-21,-13.18,97.9,326,111.1,263,66.2,236,+.085,26,-2.14,200,105.0,261,107.1,163,+1.60,125
|
||||
314,Rider,MAAC,14-19,-13.22,101.7,265,115.0,324,64.8,310,+.074,35,-6.38,308,102.8,320,109.2,271,+0.15,165
|
||||
315,IU Indy,Horz,10-22,-13.27,109.6,120,122.9,363,64.8,307,-.073,338,-3.50,258,104.6,273,108.1,213,-2.98,263
|
||||
316,Eastern Illinois,OVC,12-19,-13.32,93.6,357,106.9,177,66.2,239,+.003,171,-5.66,300,103.0,312,108.6,235,+11.33,14
|
||||
317,Florida A&M,SWAC,14-17,-13.70,101.6,270,115.3,330,67.2,189,+.063,46,-6.17,305,101.6,341,107.8,196,+19.72,1
|
||||
318,Grambling St.,SWAC,12-22,-13.92,95.2,345,109.1,225,63.8,341,-.074,339,-8.16,345,101.4,351,109.5,299,+10.60,17
|
||||
319,Binghamton,AE,15-17,-13.95,98.8,313,112.8,303,65.7,270,+.056,58,-7.60,336,102.7,322,110.3,341,-5.56,325
|
||||
320,Niagara,MAAC,11-20,-14.03,101.2,274,115.2,329,65.1,296,-.022,247,-7.97,343,101.2,352,109.2,273,-5.22,315
|
||||
321,Holy Cross,PL,13-19,-14.09,101.7,264,115.8,335,66.0,250,+.038,82,-6.47,309,102.6,325,109.0,261,-0.59,198
|
||||
322,Stonehill,NEC,15-17,-14.25,100.8,282,115.1,327,65.0,300,+.031,98,-9.70,359,100.4,362,110.1,331,-3.00,265
|
||||
323,North Carolina Central,MEAC,14-19,-14.29,102.8,242,117.1,348,66.8,210,+.015,140,-6.84,314,103.5,299,110.3,342,-0.31,186
|
||||
324,Alcorn St.,SWAC,11-21,-14.59,97.6,331,112.2,281,64.7,315,-.010,209,-4.83,290,103.3,302,108.2,216,+13.38,6
|
||||
325,Army,PL,16-15,-14.67,99.7,298,114.4,319,67.6,157,+.132,5,-7.92,340,102.9,315,110.9,357,-5.01,311
|
||||
326,Lindenwood,OVC,16-17,-14.71,94.1,354,108.9,218,69.6,60,+.108,14,-7.50,333,102.5,328,110.0,325,+4.79,59
|
||||
327,Morehead St.,OVC,15-17,-14.74,97.7,328,112.4,292,64.0,335,+.079,31,-6.91,317,101.5,346,108.4,227,+5.09,51
|
||||
328,Coastal Carolina,SB,10-22,-14.78,100.6,287,115.3,331,63.2,350,-.048,299,-4.82,289,103.9,292,108.7,237,-5.95,332
|
||||
329,Oral Roberts,Sum,7-23,-14.95,102.8,240,117.8,354,67.3,182,-.006,194,+0.18,145,108.7,96,108.5,231,+7.37,34
|
||||
330,East Texas A&M,Slnd,5-26,-15.01,96.6,339,111.6,272,67.3,177,-.027,256,-1.18,172,105.7,222,106.9,154,+4.81,58
|
||||
331,Morgan St.,MEAC,14-18,-15.39,101.7,267,117.1,347,70.4,36,+.012,146,-8.82,356,102.3,329,111.1,359,-3.92,287
|
||||
332,Stony Brook,CAA,8-24,-15.72,101.9,257,117.6,351,64.4,326,-.017,226,-3.18,241,104.8,266,108.0,203,-1.02,204
|
||||
333,Fairfield,MAAC,12-20,-15.86,98.2,322,114.1,313,66.0,247,+.070,40,-6.36,307,102.5,327,108.9,246,-3.06,269
|
||||
334,Green Bay,Horz,4-28,-16.04,100.7,283,116.8,344,68.9,85,-.050,307,-1.23,174,106.6,171,107.8,195,+3.64,81
|
||||
335,North Carolina A&T,CAA,7-25,-16.37,97.0,334,113.4,308,69.1,78,+.000,176,-3.04,236,105.0,259,108.0,205,-1.27,217
|
||||
336,Southern Indiana,OVC,10-20,-16.49,98.3,321,114.8,322,67.0,199,-.027,258,-7.82,339,101.8,339,109.6,304,-2.31,242
|
||||
337,Detroit Mercy,Horz,8-24,-16.94,95.2,347,112.1,280,67.0,197,+.028,106,-2.04,193,106.8,156,108.9,248,+1.30,135
|
||||
338,Western Carolina,SC,8-22,-17.16,95.2,346,112.4,289,70.4,39,+.011,150,-0.01,151,107.5,130,107.5,176,+7.29,36
|
||||
339,Buffalo,MAC,9-22,-17.33,96.4,340,113.8,311,70.7,29,+.028,104,-2.92,231,106.0,203,108.9,251,+0.53,151
|
||||
340,USC Upstate,BSth,6-26,-17.48,98.4,318,115.9,338,72.7,5,-.021,241,-0.75,162,107.4,135,108.1,210,+2.62,98
|
||||
341,Bellarmine,ASun,5-26,-17.68,103.8,225,121.5,360,66.2,237,-.109,359,-3.82,268,105.3,244,109.1,266,-1.23,215
|
||||
342,Mercyhurst,NEC,15-16,-17.84,98.8,314,116.6,342,64.7,314,+.099,18,-9.26,358,100.6,361,109.9,318,-1.56,225
|
||||
343,Northern Illinois,MAC,6-25,-17.86,94.5,353,112.3,287,68.9,88,-.091,352,-3.22,243,105.8,215,109.0,260,-0.58,197
|
||||
344,Sacramento St.,BSky,7-25,-18.06,95.3,344,113.3,307,65.5,278,-.020,239,-3.71,261,105.6,228,109.3,281,-1.10,207
|
||||
345,Louisiana Monroe,SB,7-25,-18.09,96.2,341,114.3,318,67.7,149,-.028,260,-3.39,249,104.6,274,108.0,202,-3.65,282
|
||||
346,Wagner,NEC,14-16,-18.12,92.2,360,110.3,249,60.3,363,+.061,50,-10.37,362,99.9,364,110.3,338,-2.04,235
|
||||
347,Western Illinois,OVC,12-19,-18.17,99.1,309,117.2,349,64.3,328,+.037,84,-7.98,344,101.4,350,109.4,288,-2.50,248
|
||||
348,Central Arkansas,ASun,9-24,-18.21,97.7,330,115.9,336,66.4,228,+.036,87,-2.61,223,106.4,179,109.0,262,+2.22,109
|
||||
349,New Orleans,Slnd,4-27,-18.25,99.4,302,117.7,352,69.2,71,-.016,223,+1.03,127,106.8,161,105.7,124,+10.76,16
|
||||
350,West Georgia,ASun,6-25,-18.34,96.9,336,115.2,328,68.0,133,+.012,144,-2.34,205,106.6,166,109.0,255,+2.05,115
|
||||
351,Cal St. Fullerton,BW,6-26,-18.72,93.7,356,112.4,291,68.1,128,-.020,240,+1.82,114,107.4,131,105.6,120,+4.76,60
|
||||
352,Stetson,ASun,8-24,-19.31,99.4,301,118.7,358,67.6,153,-.015,220,-4.37,280,105.8,214,110.2,333,+0.21,163
|
||||
353,NJIT,AE,6-25,-20.38,93.2,358,113.6,310,66.5,219,-.054,315,-6.60,311,103.0,309,109.6,305,-4.07,293
|
||||
354,Le Moyne,NEC,9-23,-20.72,101.2,276,121.9,361,68.6,107,+.004,165,-7.34,328,101.6,342,109.0,256,+0.25,161
|
||||
355,New Hampshire,AE,8-24,-21.66,93.8,355,115.4,332,67.4,175,+.019,130,-6.08,302,103.7,296,109.8,314,-3.44,278
|
||||
356,The Citadel,SC,5-25,-21.85,94.9,351,116.8,343,64.6,317,-.134,363,-3.33,247,105.6,225,109.0,254,-7.47,345
|
||||
357,Prairie View A&M,SWAC,5-27,-22.12,95.6,343,117.7,353,70.2,48,-.062,325,-5.45,298,103.0,313,108.4,226,+11.06,15
|
||||
358,Maryland Eastern Shore,MEAC,6-25,-22.61,95.8,342,118.4,357,65.6,274,-.113,360,-3.01,234,105.4,239,108.4,223,+9.89,20
|
||||
359,Canisius,MAAC,3-28,-22.92,99.1,308,122.0,362,66.2,240,-.078,345,-4.78,288,102.9,317,107.7,191,+3.75,78
|
||||
360,Alabama A&M,SWAC,10-22,-23.51,92.1,361,115.6,334,71.0,22,-.022,246,-9.71,360,101.1,355,110.8,356,+1.81,120
|
||||
361,Coppin St.,MEAC,6-24,-24.30,87.4,363,111.7,276,67.7,147,+.033,93,-4.30,279,105.3,245,109.6,301,+4.32,64
|
||||
362,Chicago St.,NEC,4-28,-24.37,91.9,362,116.2,341,68.3,118,-.024,251,-3.28,245,104.3,286,107.6,184,+8.49,29
|
||||
363,Arkansas Pine Bluff,SWAC,6-25,-26.07,95.1,349,121.2,359,71.4,17,-.074,342,-8.62,354,101.0,356,109.6,302,+7.08,41
|
||||
364,Mississippi Valley St.,SWAC,3-28,-42.22,82.6,364,124.8,364,64.8,311,-.016,221,-3.49,255,103.9,294,107.3,171,+18.54,2
|
||||
|
365
2025/data/massey.csv
Normal file
365
2025/data/massey.csv
Normal file
@@ -0,0 +1,365 @@
|
||||
Team,Conf,W-L,Δ,CMP,Sort,OMY,PAC,PGH,PIR,POM,REW,RMS,RPI,RT,RTH,SMS,SPR,SRS,STY,TRK,TRP,USA,WAB,WIL,WLK,WOL,7OT,AP,BAR,BBT,BIH,BMN,BNZ,BWE,COL,DCI,DII,DOK,DOL,DP,DUN,EBP,EMK,ESR,FAS,HAS,INC,JJK,JNG,KPI,KPK,LAB,LMC,LOG,MAS,MB,MGS,MMG,MOR,NET,NOL
|
||||
Duke,ACC,"31-3",+1,1,>>,1,1,4,1,1,2,3,4,1,3,2,5,1,1,2,1,1,6,5,1,3,2,1,1,2,3,6,1,1,4,3,2,1,4,1,1,1,1,4,2,2,1,3,3,5,2,3,1,1,2,3,1,2,1,1,3
|
||||
Auburn,SEC,"28-5",-1,2,>>,2,4,1,2,4,3,2,1,2,2,1,1,2,2,3,2,4,1,1,2,2,1,4,3,3,1,1,2,4,1,2,1,3,1,4,3,3,4,1,1,4,3,1,1,1,1,2,4,2,4,2,4,3,4,2,5
|
||||
Florida,SEC,"30-4",+1,3,>>,3,2,2,3,2,1,1,3,5,1,3,2,4,3,4,4,3,2,2,3,1,6,3,4,1,2,2,3,2,2,1,3,2,2,2,4,4,3,2,3,3,2,2,4,3,4,1,3,3,3,1,2,4,2,4,2
|
||||
Houston,B12,"30-4",-1,4,>>,4,3,3,4,3,4,5,6,3,5,4,7,3,4,1,3,2,3,6,4,6,4,2,2,4,4,3,4,3,3,4,4,4,3,3,2,2,2,3,4,1,4,4,2,4,3,4,2,4,1,4,3,1,3,3,1
|
||||
Alabama,SEC,"25-8",,5,>>,5,6,5,5,6,7,6,2,6,6,5,3,5,5,5,5,8,4,4,5,5,3,7,5,6,6,4,5,5,5,6,5,5,6,5,8,6,5,5,5,8,5,6,5,2,5,7,10,5,5,5,13,6,5,6,8
|
||||
Tennessee,SEC,"27-7",,6,>>,6,8,6,6,5,5,4,5,7,4,6,4,6,6,6,6,6,5,3,6,4,10,6,6,5,5,5,6,6,6,5,6,6,5,6,6,5,7,7,6,5,6,5,7,6,6,5,9,6,6,7,6,5,7,5,6
|
||||
Michigan St,B10,"27-6",,7,>>,11,7,7,10,8,6,7,7,11,7,7,6,12,7,13,12,7,7,7,7,7,17,8,10,8,7,7,12,7,7,8,8,10,8,9,7,11,11,8,7,11,7,8,6,7,7,6,12,7,8,8,7,12,8,11,7
|
||||
St John's,BE,"30-4",+1,8,>>,12,12,8,13,12,8,9,9,12,8,8,12,13,8,15,13,5,8,10,8,9,14,5,12,7,8,8,13,8,8,7,7,12,7,13,5,12,6,6,9,15,9,7,8,10,8,8,6,8,7,6,5,13,6,13,4
|
||||
Texas Tech,B12,"25-8",-1,9,>>,7,11,19,9,7,14,18,32,13,15,10,15,7,9,7,8,9,15,20,9,20,26,9,7,13,18,16,7,10,20,17,11,9,12,7,10,8,9,9,10,9,8,21,10,21,9,15,8,10,9,13,17,7,9,7,16
|
||||
Maryland,B10,"25-8",+1,10,>>,10,5,15,11,11,15,17,23,8,14,11,11,9,12,10,11,12,19,17,11,21,20,11,11,10,21,15,8,9,21,12,9,13,15,8,13,13,12,18,14,6,12,20,16,17,10,11,13,11,14,17,18,8,12,10,14
|
||||
Wisconsin,B10,"26-9",+5,11,>>,14,9,14,14,13,19,15,19,18,13,15,17,16,15,12,16,10,11,15,13,17,15,13,14,12,12,9,14,13,16,15,12,14,9,14,14,18,14,11,16,12,14,18,13,16,17,10,14,13,10,11,15,19,15,15,17
|
||||
Iowa St,B12,"24-9",,12,>>,8,15,22,8,10,27,25,33,16,18,9,21,11,11,8,7,14,18,24,10,27,39,15,8,14,23,17,10,14,23,14,17,8,17,11,9,7,10,15,19,7,11,25,12,23,14,17,5,9,11,16,16,11,11,9,26
|
||||
Kentucky,SEC,"22-11",-3,13,>>,15,21,11,15,16,20,8,10,9,9,16,8,15,13,17,18,21,9,8,15,8,13,18,17,18,10,10,16,15,14,18,16,20,10,17,23,17,31,14,8,21,16,14,11,9,12,9,24,15,17,14,35,16,22,14,24
|
||||
Gonzaga,WCC,"25-8",+4,14,>>,9,19,27,7,9,28,37,20,4,30,12,24,8,10,11,9,23,35,40,12,37,5,24,9,9,36,38,9,11,24,9,13,7,32,10,11,10,8,39,21,10,10,27,30,26,16,25,7,12,16,32,8,9,10,8,13
|
||||
Louisville,ACC,"27-7",+2,15,>>,22,10,9,24,23,11,13,14,26,16,19,32,24,16,18,28,11,17,14,17,13,8,10,20,17,13,14,24,21,11,20,15,16,13,23,17,28,22,10,13,25,23,10,23,15,13,18,16,18,31,12,11,27,20,24,9
|
||||
Arizona,B12,"22-12",+5,16,>>,13,24,23,12,14,46,28,26,10,22,13,22,10,14,9,10,20,16,28,14,29,16,21,13,19,25,18,11,12,26,22,22,11,19,12,28,9,13,20,24,13,13,30,15,25,18,26,11,14,12,22,25,10,13,12,21
|
||||
Clemson,ACC,"27-6",-2,17,>>,24,14,17,21,18,10,20,15,17,19,22,25,27,20,20,25,13,22,17,16,16,19,12,19,11,11,19,26,17,12,11,21,18,20,22,16,15,19,16,11,19,21,11,18,19,15,14,20,17,24,18,9,26,23,22,12
|
||||
Michigan,B10,"25-9",+10,18,>>,23,16,10,22,25,18,14,11,31,17,14,16,20,18,26,23,15,10,12,20,14,18,14,27,25,17,11,22,19,10,29,23,31,11,26,27,29,30,12,23,29,26,12,20,8,11,12,22,23,13,10,24,24,14,23,10
|
||||
Texas A&M,SEC,"22-10",-6,19,>>,20,23,13,20,17,21,11,18,27,10,21,10,21,22,22,22,18,12,9,19,11,31,19,22,21,9,13,21,20,17,27,14,22,14,20,30,22,23,17,12,17,22,16,9,14,20,16,31,21,23,19,41,17,25,18,27
|
||||
Purdue,B10,"22-11",-6,20,>>,18,17,21,18,19,30,22,13,21,20,18,14,18,19,19,15,22,20,19,18,25,12,22,18,23,20,20,18,16,18,21,20,19,23,18,24,21,20,27,18,23,17,22,14,12,19,22,19,16,15,23,27,18,17,19,34
|
||||
Missouri,SEC,"22-11",+2,21,>>,16,13,24,19,15,25,12,40,19,11,27,9,19,21,16,27,24,24,13,21,15,30,23,26,20,22,29,17,24,36,31,10,15,26,15,36,31,25,29,15,14,15,23,25,28,27,13,17,24,34,28,32,22,28,16,53
|
||||
St Mary's CA,WCC,"28-5",-2,22,>>,30,27,20,31,22,13,33,12,15,31,26,34,31,24,24,35,19,27,31,27,24,7,20,23,15,15,28,29,18,15,13,25,24,22,27,12,30,18,25,25,22,28,13,26,20,26,24,25,27,26,25,12,25,34,21,19
|
||||
BYU,B12,"24-9",+1,23,>>,21,26,26,23,24,32,29,44,32,27,23,28,22,23,14,20,17,21,29,24,31,48,17,15,31,26,21,20,23,28,36,29,17,21,16,19,24,16,19,27,16,19,29,17,30,24,23,21,25,19,21,23,20,18,25,11
|
||||
Illinois,B10,"21-12",-5,24,>>,17,22,30,16,20,38,26,39,14,23,17,18,14,17,23,17,"--",25,26,23,32,21,"--",21,26,31,26,15,22,32,35,19,23,27,19,29,23,27,30,20,20,20,34,22,22,21,28,23,20,22,30,33,14,16,17,31
|
||||
Mississippi,SEC,"22-11",,25,>>,25,18,18,28,26,22,10,17,30,12,29,13,28,28,29,30,"--",13,10,25,10,25,"--",31,24,14,22,28,30,22,33,18,32,18,30,37,32,33,22,17,32,29,19,21,18,23,19,33,26,32,20,43,29,33,28,28
|
||||
Kansas,B12,"21-12",-4,26,>>,19,31,32,17,21,43,32,21,23,29,20,23,17,26,21,14,"--",26,33,22,38,24,"--",16,29,34,23,19,25,27,34,28,21,25,21,34,14,15,26,30,18,18,38,27,24,25,30,15,19,21,27,38,15,21,20,38
|
||||
Oregon,B10,"24-9",-1,27,>>,32,20,16,33,33,17,16,16,40,21,24,19,33,25,38,32,"--",14,16,29,18,72,25,33,28,19,12,33,28,13,24,31,33,16,31,22,36,37,21,22,36,34,17,19,11,22,21,40,32,27,15,29,33,27,29,23
|
||||
Marquette,BE,"23-10",+1,28,>>,26,32,39,25,28,33,34,24,24,33,25,30,26,29,30,21,25,29,34,26,36,27,"--",28,27,30,27,27,31,31,25,26,29,28,28,21,20,24,23,29,26,27,32,28,31,30,29,18,22,20,24,31,28,29,26,40
|
||||
UCLA,B10,"22-10",-2,29,>>,28,25,29,26,27,26,31,42,22,28,28,20,25,27,25,26,"--",28,29,28,34,36,"--",25,37,27,25,25,27,34,37,27,27,29,24,33,27,29,28,31,24,24,33,24,29,29,27,30,28,29,29,46,23,19,27,33
|
||||
Memphis,AAC,"29-5",,30,>>,50,46,12,49,50,9,19,8,34,35,34,26,60,38,60,53,16,23,22,41,12,9,16,57,30,16,24,58,40,9,19,37,57,24,61,18,46,39,13,26,66,55,9,29,13,28,20,43,44,28,9,14,57,48,49,15
|
||||
Mississippi St,SEC,"21-12",+1,31,>>,29,40,31,32,32,40,21,37,33,25,36,29,32,30,33,31,"--",30,20,30,22,38,"--",35,33,24,31,31,36,37,39,24,30,31,33,39,35,35,34,28,38,32,31,32,27,31,33,35,29,35,35,47,31,37,34,52
|
||||
Connecticut,BE,"23-10",+1,32,>>,34,42,48,30,35,45,40,54,38,39,30,39,30,31,36,24,"--",36,42,34,47,42,"--",29,36,40,33,30,29,45,40,32,28,34,29,15,16,21,31,36,28,30,45,31,45,36,36,28,34,18,31,39,30,24,32,29
|
||||
Creighton,BE,"24-10",+1,33,>>,38,35,33,35,36,34,36,34,42,36,33,41,37,35,34,34,"--",31,35,36,41,34,"--",37,38,38,30,36,33,35,38,39,34,30,36,32,26,32,24,38,30,36,36,33,37,34,34,26,36,25,26,30,38,36,38,25
|
||||
VCU,A10,"28-6",+2,34,>>,36,43,40,34,31,29,55,28,20,48,32,49,42,32,31,36,"--",50,53,33,42,11,"--",30,16,41,50,39,26,29,10,42,35,50,35,20,34,17,46,45,31,35,35,48,33,37,39,34,31,46,50,10,37,30,31,18
|
||||
Georgia,SEC,"20-12",-4,35,>>,33,29,34,37,34,35,23,41,29,24,35,27,34,37,28,37,"--",33,22,35,26,28,"--",36,35,33,32,32,37,40,51,30,36,33,34,43,38,42,35,32,37,33,37,36,38,35,32,37,38,45,37,51,34,32,33,43
|
||||
North Carolina,ACC,"22-13",+2,36,>>,31,28,42,29,30,60,43,25,28,41,37,50,35,36,32,29,"--",42,41,32,43,32,"--",32,42,43,44,34,34,39,45,33,25,43,32,46,25,28,38,41,34,31,44,44,54,32,41,27,33,33,39,50,35,31,36,30
|
||||
Baylor,B12,"19-14",,37,>>,27,38,49,27,29,65,42,55,35,38,31,38,23,33,27,19,"--",40,45,31,50,50,"--",24,41,45,39,23,32,56,48,36,26,39,25,47,19,26,40,43,27,25,58,35,52,39,46,29,30,30,40,71,21,26,30,46
|
||||
New Mexico,MWC,"26-7",-3,38,>>,41,51,28,40,43,24,38,27,37,40,38,36,43,39,43,44,"--",34,36,37,35,29,"--",41,32,28,34,41,38,25,28,34,42,36,44,48,49,36,33,33,48,41,28,34,32,38,31,41,39,39,34,26,41,53,42,36
|
||||
UC San Diego,BWC,"30-4",+5,39,>>,40,37,37,43,37,16,50,36,25,52,40,44,57,34,48,51,"--",45,49,38,23,47,"--",34,22,35,51,43,41,33,16,61,43,47,39,26,57,41,47,44,33,42,24,49,40,33,40,64,37,59,45,20,42,45,35,32
|
||||
Arkansas,SEC,"20-13",,40,>>,39,39,43,38,40,53,30,65,39,32,42,33,36,42,42,39,"--",39,32,39,39,94,"--",42,46,44,40,37,39,52,65,38,37,41,37,55,42,40,45,39,42,38,46,39,43,41,42,38,41,42,44,62,36,42,40,35
|
||||
Utah St,MWC,"26-7",-2,41,>>,53,49,38,51,54,23,39,29,36,44,41,42,49,40,50,50,"--",38,37,51,33,41,"--",51,43,32,37,49,44,30,44,48,49,37,51,31,44,55,36,34,50,53,26,37,35,40,37,63,55,38,36,28,48,50,37,41
|
||||
Oklahoma,SEC,"20-13",+3,42,>>,37,34,36,41,38,49,24,61,61,26,44,37,40,43,46,43,"--",32,25,44,28,91,"--",47,40,39,35,42,43,47,56,35,44,35,43,58,43,47,37,35,45,37,41,38,42,46,38,54,43,41,38,61,45,41,43,49
|
||||
Colorado St,MWC,"25-9",+8,43,>>,49,30,35,46,44,39,47,43,58,49,45,51,50,41,39,54,"--",47,43,40,44,46,"--",38,45,50,46,45,35,38,49,49,39,48,38,41,53,38,49,53,39,44,40,51,44,42,43,46,46,43,46,22,50,35,47,20
|
||||
Xavier,BE,"21-11",-2,44,>>,43,33,56,39,42,55,52,59,44,46,39,46,39,44,37,38,"--",49,54,43,57,40,"--",40,47,55,48,38,42,60,46,44,38,46,40,56,39,34,43,51,35,39,60,46,60,44,48,32,40,36,42,52,43,38,45,39
|
||||
Drake,MVC,"30-3",+3,45,>>,67,54,25,69,58,12,41,22,71,50,53,53,77,53,56,76,"--",41,37,56,19,35,"--",60,34,29,43,74,49,19,23,60,67,40,67,25,73,49,32,40,64,68,15,41,34,43,35,92,63,37,33,19,66,55,56,22
|
||||
Vanderbilt,SEC,"20-12",-3,46,>>,46,47,41,50,48,36,27,58,50,34,48,31,44,46,41,56,"--",37,27,50,30,105,"--",53,58,37,36,44,51,49,83,46,48,38,46,57,56,54,41,37,46,52,39,42,46,47,47,56,51,52,41,68,49,54,48,60
|
||||
Ohio St,B10,"17-15",-6,47,>>,35,52,58,36,39,67,48,78,41,43,43,40,29,45,40,33,"--",55,50,42,59,49,"--",39,50,56,54,35,47,63,58,41,40,52,41,61,37,44,56,48,40,40,64,55,53,48,55,39,35,44,55,86,32,39,41,70
|
||||
Indiana,B10,"19-13",-2,48,>>,48,44,45,45,47,59,44,51,48,42,46,43,46,49,55,45,"--",48,45,46,52,44,"--",50,49,49,42,50,45,44,55,50,50,44,47,64,52,46,50,47,52,46,51,43,36,50,51,45,45,48,47,63,53,46,54,45
|
||||
Texas,SEC,"19-15",+4,49,>>,42,36,53,42,41,62,35,87,54,37,52,35,38,47,49,40,"--",46,37,52,45,113,"--",44,60,54,47,40,48,64,87,40,41,49,42,53,33,43,52,42,47,43,57,50,57,53,45,50,48,40,52,74,39,43,39,51
|
||||
West Virginia,B12,"19-13",-3,50,>>,44,45,50,54,51,64,46,57,49,45,47,47,41,51,35,47,"--",43,48,49,55,45,"--",43,62,48,41,47,54,55,72,54,51,42,48,62,51,51,42,50,44,47,59,40,48,49,52,42,47,49,43,66,40,52,51,68
|
||||
Boise St,MWC,"24-10",-1,51,>>,52,53,47,52,49,41,51,45,47,55,51,48,51,48,51,55,"--",53,51,48,49,61,"--",45,51,47,55,52,46,48,43,45,46,54,50,40,48,53,55,52,53,50,48,47,50,52,44,49,52,50,51,40,46,58,44,37
|
||||
San Diego St,MWC,"21-9",-3,52,>>,59,68,44,53,53,31,45,47,53,47,50,45,52,52,59,57,"--",44,43,47,46,37,"--",52,52,42,45,55,50,43,54,43,59,45,55,38,54,57,48,46,51,54,43,45,39,51,57,62,53,47,49,84,44,59,52,62
|
||||
SMU,ACC,"23-10",-1,53,>>,45,56,54,44,46,58,53,62,46,53,49,57,45,50,47,42,"--",58,51,45,58,66,"--",46,54,52,56,46,52,50,53,47,45,53,49,45,45,52,51,49,41,45,53,62,62,45,49,47,42,54,53,34,52,44,46,61
|
||||
Cincinnati,B12,"18-15",,54,>>,47,58,67,47,56,92,58,94,67,58,54,55,47,56,44,41,"--",61,61,53,67,86,"--",48,69,64,61,51,60,75,84,52,47,58,53,70,40,45,59,59,43,48,73,58,66,58,58,44,49,53,57,73,51,56,50,74
|
||||
Northwestern,B10,"17-16",+3,55,>>,51,41,64,48,45,74,59,95,60,56,55,54,48,54,53,48,"--",70,59,54,68,73,"--",49,66,68,62,48,53,73,79,51,54,61,45,71,47,50,71,58,49,49,71,72,65,64,60,48,50,57,63,101,47,47,53,78
|
||||
San Francisco,WCC,"24-9",-1,56,>>,68,70,55,64,65,44,56,46,52,59,58,66,65,58,61,67,"--",52,55,67,53,33,"--",68,55,53,53,66,58,51,57,64,69,55,70,50,75,74,54,54,75,64,47,53,58,63,50,71,68,60,54,42,63,76,64,58
|
||||
Nebraska,B10,"17-14",-1,57,>>,55,50,61,58,55,68,54,69,59,51,61,52,58,57,63,58,"--",57,57,55,63,79,"--",58,53,60,60,57,61,65,63,56,55,57,56,72,55,63,60,57,63,57,65,57,55,59,69,58,54,58,58,83,56,62,59,96
|
||||
UC Irvine,BWC,"28-6",-1,58,>>,65,66,52,68,67,37,65,31,56,71,56,58,85,55,81,77,"--",54,56,58,40,65,"--",69,39,46,57,76,68,41,26,87,86,56,76,35,95,79,57,56,81,72,42,59,41,54,53,85,58,71,56,21,74,87,62,63
|
||||
Liberty,CUSA,"28-6",+5,59,>>,63,67,46,71,60,42,75,50,65,73,57,74,83,61,54,82,"--",60,57,57,48,53,"--",66,44,57,58,75,56,42,42,82,71,66,72,49,85,69,62,62,57,67,49,63,49,56,56,96,64,74,66,37,72,71,60,48
|
||||
Wake Forest,ACC,"21-11",-1,60,>>,69,60,51,66,70,48,49,63,106,54,63,72,73,63,70,64,"--",51,47,66,51,90,"--",72,70,51,49,68,64,54,89,53,56,51,68,66,62,66,44,55,65,63,54,52,59,61,59,66,69,55,48,70,76,63,69,56
|
||||
McNeese St,SLC,"27-6",+2,61,>>,62,71,63,65,59,51,84,48,57,82,78,71,78,60,62,73,"--",59,79,59,62,52,"--",61,48,59,67,64,66,59,32,75,64,63,66,44,66,62,64,65,70,66,56,64,77,55,65,88,57,96,82,45,67,67,58,47
|
||||
Villanova,BE,"19-14",-2,62,>>,58,63,78,55,57,94,73,109,70,69,59,61,55,62,52,46,"--",71,77,61,91,87,"--",55,74,76,72,53,55,85,76,55,52,68,54,75,41,48,61,67,55,51,83,56,95,68,63,36,61,51,61,82,54,51,55,73
|
||||
Santa Clara,WCC,"20-12",-1,63,>>,54,61,75,59,52,76,81,76,43,78,62,59,56,59,45,61,"--",84,79,60,80,43,"--",54,68,71,76,54,57,72,64,66,53,79,52,73,70,64,88,68,60,56,72,60,61,65,62,53,62,80,78,59,55,57,57,79
|
||||
George Mason,A10,"26-8",+5,64,>>,84,64,57,79,78,54,74,30,64,77,65,86,87,67,73,80,"--",56,62,71,54,22,"--",79,56,58,52,85,59,46,52,73,83,62,84,51,69,71,53,63,80,84,50,65,47,60,54,79,75,72,59,55,83,74,68,42
|
||||
Dayton,A10,"22-10",-4,65,>>,78,80,60,74,75,56,69,56,62,72,64,73,75,70,79,72,"--",62,68,72,65,23,"--",77,65,63,59,82,62,58,68,70,73,65,85,63,72,60,58,60,69,77,62,54,51,70,68,60,76,68,67,87,80,65,67,57
|
||||
Iowa,B10,"17-16",+1,66,>>,60,48,71,60,64,78,57,124,76,57,67,62,59,68,66,59,"--",63,60,68,69,118,"--",64,78,74,64,59,67,81,115,59,65,64,57,79,59,68,69,61,71,61,77,69,79,72,72,73,66,56,64,92,60,49,63,81
|
||||
Penn St,B10,"16-15",-1,67,>>,56,62,83,56,62,77,68,133,66,60,60,56,53,64,64,52,"--",82,75,62,94,120,"--",56,64,89,78,56,69,94,73,62,60,77,58,68,58,67,80,69,54,58,90,82,86,71,76,59,56,62,80,95,59,40,66,84
|
||||
USC,B10,"16-17",+2,68,>>,61,69,73,61,63,70,63,103,72,61,68,60,61,69,58,60,"--",81,68,65,78,75,"--",63,80,75,77,60,65,80,104,57,62,69,59,85,60,59,83,66,61,60,80,85,69,73,75,57,65,65,71,91,62,60,70,89
|
||||
Pittsburgh,ACC,"17-15",-4,69,>>,57,79,77,57,61,100,77,108,63,68,66,63,54,65,72,49,"--",89,72,63,89,106,"--",59,72,77,82,61,76,83,74,58,58,78,62,76,50,56,79,70,58,62,86,74,92,69,77,51,59,69,79,90,58,61,61,135
|
||||
Kansas St,B12,"16-17",+1,70,>>,64,55,72,62,66,93,64,118,100,65,73,64,63,71,57,62,"--",72,70,69,75,115,"--",62,83,73,66,62,72,96,114,63,61,67,60,106,63,61,72,76,56,59,85,75,74,78,70,55,67,63,68,113,64,66,75,75
|
||||
UCF,B12,"17-16",+4,71,>>,73,65,70,63,68,83,61,105,91,62,70,65,67,76,69,65,"--",67,62,70,73,123,"--",67,87,70,63,69,77,74,122,71,63,60,63,87,64,78,65,72,59,70,75,71,75,81,71,52,78,64,60,108,68,64,71,87
|
||||
North Texas,AAC,"24-8",-4,72,>>,79,94,66,83,72,61,85,52,68,83,75,79,86,75,74,85,"--",68,75,81,64,51,"--",76,61,61,68,86,71,62,47,76,80,72,87,60,80,72,63,75,79,81,63,70,73,77,66,84,83,73,70,60,78,97,65,69
|
||||
Yale,Ivy,"22-7",+5,73,>>,74,81,84,76,73,63,104,38,45,100,69,85,93,66,78,75,"--",75,97,64,66,64,"--",83,59,80,80,78,63,68,30,90,70,87,77,59,68,58,74,85,77,79,68,81,68,57,82,109,60,85,91,107,85,68,72,50
|
||||
High Point,BSo,"29-5",+3,74,>>,90,101,68,87,84,47,92,53,55,94,77,90,101,74,85,89,"--",66,84,74,61,60,"--",86,57,65,69,89,75,61,41,91,78,80,83,54,81,73,67,71,88,89,61,87,71,62,64,111,71,94,76,36,93,86,82,44
|
||||
Stanford,ACC,"20-13",+4,75,>>,81,73,65,84,79,75,70,68,84,74,79,83,76,79,71,83,"--",73,67,76,70,74,"--",82,88,69,71,81,78,66,105,68,72,71,78,83,88,85,70,74,82,78,67,61,76,74,74,77,84,76,69,75,82,72,81,71
|
||||
TCU,B12,"16-16",-3,76,>>,75,57,69,77,87,81,60,96,95,66,71,68,66,72,75,68,"--",64,62,78,74,139,"--",74,117,66,65,70,81,77,176,79,75,59,75,102,67,80,68,73,67,74,78,73,70,75,84,65,86,61,62,123,70,91,78,99
|
||||
Bradley,MVC,"26-8",-1,77,>>,93,102,59,96,95,50,79,49,73,81,72,81,94,78,97,92,"--",69,66,88,56,69,"--",90,77,62,75,98,74,53,69,97,101,70,97,52,92,114,73,64,101,96,52,68,56,67,61,102,92,75,65,49,94,82,80,59
|
||||
Rutgers,B10,"15-17",-4,78,>>,72,74,76,70,74,82,66,111,93,64,80,70,69,80,68,66,"--",78,71,75,79,132,"--",73,85,78,73,67,73,86,116,65,68,73,71,112,76,77,77,77,78,65,87,80,83,80,79,67,73,70,73,139,75,70,77,80
|
||||
St Joseph's PA,A10,"22-12",+1,79,>>,85,84,82,78,80,88,95,73,51,89,81,82,84,77,82,81,"--",111,90,77,88,59,"--",81,71,85,95,83,70,71,62,74,76,94,82,77,71,70,92,80,73,80,70,67,64,76,67,70,72,95,88,56,88,79,76,72
|
||||
Utah,B12,"16-16",-8,80,>>,66,75,86,67,76,96,67,164,85,70,76,67,62,73,67,63,"--",77,73,73,97,140,"--",65,102,81,79,63,83,107,142,67,66,74,65,86,61,75,75,78,76,69,100,78,96,84,85,68,74,67,74,105,65,75,73,103
|
||||
Grand Canyon,WAC,"26-7",+7,81,>>,92,87,74,90,92,57,93,82,80,95,82,92,100,88,83,91,"--",76,88,90,71,84,"--",93,76,72,74,91,80,69,66,86,82,85,91,42,87,65,78,87,89,88,66,89,94,79,78,99,89,83,84,44,96,89,92,55
|
||||
Akron,MAC,"28-6",+5,82,>>,99,88,62,100,97,52,94,35,74,97,89,94,113,85,95,106,"--",65,82,87,60,57,"--",110,63,67,70,105,79,57,50,109,98,76,111,65,112,98,66,81,96,106,55,79,63,66,73,112,90,88,72,58,116,111,91,54
|
||||
Arizona St,B12,"13-19",-2,83,>>,70,85,90,72,71,109,72,106,97,75,74,69,64,82,65,69,"--",80,79,80,98,89,"--",71,101,83,84,65,92,112,136,85,85,75,73,129,77,86,81,82,62,75,110,92,82,87,100,72,80,78,75,164,61,83,74,125
|
||||
LSU,SEC,"14-18",-2,84,>>,82,86,87,82,89,90,62,157,90,63,90,77,71,81,84,71,"--",74,62,94,77,149,"--",87,115,84,83,77,95,113,167,77,89,83,80,109,74,87,85,79,85,87,104,108,105,93,81,87,95,81,86,129,77,93,89,122
|
||||
Minnesota,B10,"15-17",-2,85,>>,91,90,79,88,91,72,71,115,117,76,87,75,82,96,87,88,"--",86,73,92,96,133,"--",89,109,79,87,84,86,95,140,72,87,81,79,117,90,89,89,83,87,85,92,100,67,88,86,80,97,82,81,142,87,88,96,102
|
||||
South Carolina,SEC,"12-20",-2,86,>>,71,77,94,73,69,124,76,138,94,67,86,78,72,86,76,74,"--",99,77,79,104,119,"--",78,90,103,113,71,82,122,135,69,74,103,69,144,79,83,109,84,68,71,120,131,106,91,88,78,77,86,104,160,69,73,87,115
|
||||
Colorado,B12,"14-20",+12,87,>>,77,59,96,80,83,102,78,169,112,79,83,76,68,90,80,79,"--",93,84,83,112,150,"--",70,133,121,101,73,84,128,183,84,77,84,64,130,82,84,91,86,74,76,122,95,100,99,92,61,91,66,83,157,71,69,86,88
|
||||
Arkansas St,SBC,"24-10",-2,88,>>,89,127,102,92,86,69,119,67,69,112,97,96,104,93,88,94,"--",108,115,89,99,56,"--",95,73,94,98,97,99,84,59,106,79,110,98,67,91,81,104,100,97,98,84,77,89,85,80,100,79,113,110,54,99,98,94,83
|
||||
Oregon St,WCC,"20-12",+2,89,>>,83,93,106,89,85,85,97,136,81,92,91,87,80,83,90,95,"--",90,104,93,113,104,"--",85,81,93,91,87,96,104,77,100,91,101,90,74,98,102,108,91,95,90,102,66,113,98,97,90,87,102,103,76,79,78,85,132
|
||||
Florida St,ACC,"17-15",-5,90,>>,86,96,93,85,90,115,87,130,103,84,84,89,79,91,91,84,"--",116,89,86,117,114,"--",88,96,102,102,88,98,99,103,81,88,92,89,94,86,88,93,88,90,86,108,106,122,90,95,86,85,84,90,102,86,80,90,112
|
||||
Butler,BE,"14-19",+1,91,>>,76,76,117,75,77,119,91,152,82,85,85,80,70,87,77,70,"--",118,97,85,138,99,"--",75,113,123,122,72,88,134,138,80,84,97,74,131,65,76,97,95,72,73,134,111,135,101,104,69,81,77,89,143,73,77,83,121
|
||||
UNC Wilmington,CAA,"27-7",+4,92,>>,112,104,88,111,106,66,107,60,89,111,98,116,120,92,108,113,"--",83,100,98,76,63,"--",112,79,86,97,113,89,67,61,117,102,99,110,69,111,95,84,90,122,113,69,101,88,82,83,121,96,106,97,48,120,95,102,64
|
||||
Nevada,MWC,"17-16",,93,>>,80,98,107,81,81,123,90,154,77,88,92,84,74,84,89,78,"--",126,100,82,123,125,"--",80,86,113,137,79,90,120,99,78,81,108,86,103,78,82,128,94,83,82,121,119,126,100,91,81,82,87,109,94,81,90,79,133
|
||||
UNLV,MWC,"18-15",-4,94,>>,96,103,85,98,94,107,82,107,122,86,100,91,91,95,92,102,"--",102,86,95,101,129,"--",94,98,88,115,94,94,93,124,89,104,91,94,110,96,100,103,89,86,94,94,76,97,96,96,89,107,92,87,99,90,108,98,91
|
||||
"Loyola-Chicago",A10,"22-11",+3,95,>>,120,89,81,104,109,87,98,81,99,99,101,110,111,97,102,103,"--",103,94,104,90,67,"--",106,91,92,93,114,85,76,96,104,93,100,107,81,101,99,95,92,99,104,76,104,78,105,89,91,118,101,96,98,115,85,107,65
|
||||
Georgetown,BE,"17-15",-7,96,>>,88,91,118,86,88,116,89,161,109,91,88,88,81,94,93,86,"--",98,100,91,127,143,"--",84,124,100,96,80,107,124,119,83,92,86,81,105,84,112,82,93,84,83,119,86,129,102,93,74,88,89,85,118,84,81,88,153
|
||||
Lipscomb,ASUN,"25-9",,97,>>,87,106,119,91,82,91,129,101,75,114,93,98,105,89,98,99,"--",92,143,84,102,70,"--",91,67,101,92,93,100,106,60,114,106,112,95,78,106,103,114,103,108,97,99,91,104,83,107,107,70,122,123,53,91,116,84,93
|
||||
St Bonaventure,A10,"22-11",-3,98,>>,118,122,101,108,122,80,101,85,86,101,99,105,109,99,103,110,"--",91,97,109,87,55,"--",108,84,90,90,111,102,82,81,103,130,90,116,82,110,119,87,99,98,111,79,83,84,107,101,105,101,103,100,78,101,114,97,107
|
||||
Oklahoma St,B12,"15-17",-5,99,>>,97,78,92,97,99,108,80,151,187,80,95,95,92,106,86,96,"--",85,82,100,107,148,"--",96,127,95,81,96,104,116,191,93,90,82,92,133,103,101,76,98,94,93,113,114,112,117,103,83,116,79,77,128,95,100,95,90
|
||||
UAB,AAC,"22-12",+9,100,>>,105,83,95,99,102,110,111,89,78,109,109,108,107,103,100,98,"--",122,107,106,111,54,"--",105,94,108,118,106,87,89,80,98,94,119,105,89,99,90,115,116,107,99,95,118,102,106,98,97,111,99,107,69,110,99,106,66
|
||||
Georgia Tech,ACC,"17-16",+3,101,>>,101,72,99,95,100,106,86,176,115,90,104,93,90,100,99,93,"--",113,92,97,121,145,"--",92,132,114,103,92,97,118,157,95,97,95,88,120,94,91,94,96,91,91,118,88,121,103,94,82,109,93,94,109,97,84,109,98
|
||||
Northern Iowa,MVC,"20-12",-2,102,>>,100,113,97,102,101,114,105,86,79,105,96,99,102,98,115,104,"--",129,96,99,103,81,"--",97,95,105,123,100,93,87,86,110,108,121,103,101,113,110,141,97,100,105,91,103,80,97,90,103,100,111,111,93,107,94,93,95
|
||||
Troy,SBC,"23-10",+4,103,>>,98,95,111,101,93,97,128,91,88,117,103,111,112,102,101,108,"--",97,119,96,106,77,"--",100,75,119,106,103,101,100,70,112,95,122,100,93,109,92,102,109,104,101,101,96,107,92,108,120,93,116,122,89,106,107,99,86
|
||||
Utah Valley,WAC,"25-8",-1,104,>>,103,100,100,114,111,71,115,80,130,122,94,100,121,105,110,114,"--",87,112,102,81,127,"--",104,100,87,86,110,106,91,82,118,110,89,102,80,126,97,86,107,133,112,88,98,120,86,106,124,105,104,92,72,111,124,108,76
|
||||
MTSU,CUSA,"22-11",-3,105,>>,115,116,80,121,121,105,100,64,92,104,102,117,116,101,116,123,"--",110,86,105,72,98,"--",114,99,82,99,115,105,70,95,115,116,98,119,104,141,127,111,101,117,118,74,94,72,89,87,128,113,119,101,179,113,119,105,110
|
||||
Chattanooga,SC,"24-9",,106,>>,107,120,115,118,103,84,121,71,110,120,107,118,139,104,132,119,"--",88,120,107,85,83,"--",121,82,91,89,124,108,98,75,122,99,104,118,90,134,111,96,112,121,116,93,93,87,94,117,126,98,117,105,65,133,132,115,67
|
||||
Virginia,ACC,"15-17",-6,107,>>,102,82,98,103,104,113,88,122,132,93,108,106,96,108,94,100,"--",114,90,103,120,107,"--",101,134,107,114,99,103,111,165,94,100,102,99,152,100,107,100,102,105,100,117,130,124,111,112,93,120,91,99,131,98,113,110,111
|
||||
St Louis,A10,"19-14",-3,108,>>,123,107,116,109,123,132,109,83,83,107,106,107,108,111,123,111,"--",132,112,113,118,58,"--",102,107,115,125,107,91,105,100,99,109,118,108,127,108,96,121,111,103,102,107,97,85,122,115,104,114,115,116,116,108,106,101,97
|
||||
Washington St,WCC,"19-14",+2,109,>>,116,129,103,117,125,128,96,117,140,98,112,103,106,109,106,116,"--",105,100,120,114,78,"--",119,114,110,112,118,122,108,125,107,121,96,125,95,114,129,106,104,124,119,111,90,116,123,116,106,124,90,93,85,112,115,112,120
|
||||
Notre Dame,ACC,"15-18",+2,110,>>,95,92,120,93,96,134,99,173,141,96,111,109,89,107,96,87,"--",142,107,101,142,130,"--",99,142,136,132,95,110,139,170,88,96,115,96,140,89,94,117,106,92,95,139,173,146,118,118,76,103,100,112,168,92,101,103,113
|
||||
Belmont,MVC,"22-11",+2,111,>>,134,140,91,129,129,99,102,90,116,108,105,123,122,113,129,137,"--",117,94,126,86,93,"--",125,121,97,120,131,109,78,121,119,133,109,131,92,162,144,116,105,125,128,82,121,93,112,102,119,140,108,98,111,137,103,129,85
|
||||
CS Northridge,BWC,"22-10",-4,112,>>,106,105,121,119,119,98,112,113,104,119,110,101,118,115,137,129,"--",107,116,110,92,183,"--",117,97,104,108,116,125,114,94,121,136,113,114,100,133,132,120,118,113,115,109,110,117,109,126,138,104,146,124,79,114,143,104,124
|
||||
Furman,SC,"25-9",-3,113,>>,133,125,113,132,137,79,122,74,126,130,117,124,150,110,142,128,"--",94,116,117,84,111,"--",138,112,96,88,144,121,88,101,138,126,105,132,88,136,128,99,110,147,139,89,107,81,95,105,171,121,114,106,106,138,127,127,100
|
||||
Washington,B10,"13-18",,114,>>,104,99,112,107,107,117,83,166,165,87,114,97,95,121,119,105,"--",112,93,129,126,144,"--",113,158,116,107,101,123,133,203,96,113,93,109,153,107,116,105,108,116,107,131,109,109,140,124,117,138,98,102,200,100,110,117,145
|
||||
Samford,SC,"22-10",+3,115,>>,110,166,134,115,112,101,138,93,87,134,119,112,130,122,136,115,"--",106,139,108,108,95,"--",130,89,112,94,126,132,117,67,129,114,117,129,91,115,121,112,121,132,124,112,105,99,104,129,133,94,125,126,112,123,142,116,136
|
||||
G Washington,A10,"21-12",+1,116,>>,129,111,127,116,116,126,123,135,105,118,120,119,114,120,117,117,"--",134,126,116,125,101,"--",118,105,129,124,123,113,115,97,113,124,128,120,115,116,108,126,113,111,117,116,125,119,131,111,108,119,130,128,81,117,125,124,117
|
||||
FL Atlantic,AAC,"18-15",-2,117,>>,109,131,129,110,113,147,130,104,96,126,113,113,110,127,109,107,"--",157,124,114,133,112,"--",111,128,130,164,112,111,127,120,105,111,133,115,119,102,115,138,126,119,114,132,123,139,125,121,115,115,105,121,117,104,104,111,114
|
||||
Jacksonville St,CUSA,"22-12",+7,118,>>,113,112,89,130,105,121,113,70,138,115,122,125,135,112,121,143,"--",123,105,119,95,135,"--",122,110,99,116,127,114,90,113,127,120,116,130,137,153,153,135,115,129,123,103,120,90,116,99,129,130,127,118,150,125,144,122,101
|
||||
N Colorado,BSC,"25-9",+3,119,>>,124,108,133,124,124,112,135,116,128,136,121,104,128,126,118,130,"--",104,133,123,115,126,"--",123,116,118,109,121,137,129,98,131,131,111,112,97,128,122,110,129,109,122,123,99,143,113,128,134,112,124,113,88,119,126,114,118
|
||||
Providence,BE,"12-20",-4,120,>>,94,97,151,94,98,159,114,196,114,103,116,102,88,130,105,90,"--",161,130,112,170,141,"--",98,130,150,161,90,116,171,146,92,105,127,93,156,83,93,131,124,93,92,167,160,149,145,130,75,102,97,127,191,89,96,100,177
|
||||
Col Charleston,CAA,"24-9",-2,121,>>,148,148,105,149,152,73,117,75,121,124,123,144,158,116,159,140,"--",109,107,136,93,88,"--",156,106,98,104,156,119,79,102,139,145,106,158,84,123,131,98,114,155,147,81,124,91,114,119,142,142,118,108,67,159,135,150,94
|
||||
Robert Morris,HL,"26-8",+8,122,>>,144,110,110,152,138,95,131,92,129,135,130,139,152,117,148,171,"--",95,124,133,100,124,"--",139,108,111,105,139,112,92,92,144,138,114,126,98,168,137,101,119,144,138,96,115,110,108,113,140,137,131,115,64,151,123,139,77
|
||||
North Alabama,ASUN,"24-10",+1,123,>>,117,124,143,122,108,122,159,114,111,145,133,122,127,118,111,132,"--",119,155,111,131,102,"--",116,92,127,110,119,127,131,78,156,135,130,117,99,155,135,132,137,110,121,129,112,144,120,134,132,99,154,144,57,124,129,113,127
|
||||
Syracuse,ACC,"14-19",-1,124,>>,119,109,124,106,114,139,103,172,147,102,135,135,103,125,107,101,"--",148,110,122,150,117,"--",109,154,145,146,108,115,141,180,102,112,120,104,167,97,105,123,122,118,103,145,186,147,138,132,95,132,107,119,172,109,102,133,123
|
||||
Kent,MAC,"22-11",-5,125,>>,127,143,123,136,120,111,134,72,101,138,128,141,140,128,120,135,"--",120,126,131,109,68,"--",141,122,125,131,141,120,101,106,124,118,142,142,116,129,126,130,117,128,140,106,116,115,119,110,143,135,136,133,103,135,147,128,104
|
||||
Louisiana Tech,CUSA,"20-12",-5,126,>>,125,142,114,125,126,118,120,98,113,116,124,129,126,114,133,127,"--",135,112,127,116,134,"--",120,93,117,127,128,117,109,90,130,119,132,134,121,140,120,150,130,136,120,115,138,103,137,120,161,128,128,134,120,136,128,126,147
|
||||
Montana,BSC,"25-9",+15,127,>>,158,114,109,165,161,89,116,66,152,128,129,136,168,135,135,173,"--",79,110,142,82,108,"--",154,123,109,85,154,141,102,109,173,157,88,143,114,173,159,90,123,139,156,97,102,125,121,127,187,158,123,95,77,161,140,143,82
|
||||
Miami OH,MAC,"25-9",+8,128,>>,152,132,104,153,149,86,133,88,143,133,138,142,162,134,145,154,"--",101,122,137,105,96,"--",157,104,120,111,160,130,97,88,155,150,125,156,107,143,148,107,120,150,154,98,117,111,110,122,158,139,134,120,80,165,139,147,108
|
||||
DePaul,BE,"14-19",+4,129,>>,114,118,148,112,117,144,110,222,155,110,115,120,97,123,112,109,"--",137,130,124,175,147,"--",107,180,166,145,104,140,169,198,111,122,123,106,176,105,118,118,127,102,110,166,177,170,150,133,94,129,110,117,161,103,92,119,168
|
||||
California,ACC,"14-19",-1,130,>>,108,115,132,113,110,140,108,201,148,106,127,127,99,119,122,112,"--",162,116,115,161,201,"--",103,162,144,160,102,133,155,188,101,103,134,101,173,104,109,140,125,114,108,158,189,154,144,137,98,125,120,132,169,105,105,125,162
|
||||
St Thomas MN,SL,"24-10",-3,131,>>,121,136,147,131,128,127,143,112,124,144,118,114,136,133,114,141,"--",121,147,130,124,137,"--",135,118,124,119,120,144,135,93,146,139,124,135,96,149,133,133,142,112,131,135,113,142,129,131,125,117,143,129,148,126,169,118,150
|
||||
Wichita St,AAC,"19-14",-1,132,>>,135,146,125,127,135,143,124,140,137,125,125,126,117,132,140,122,"--",145,122,134,137,136,"--",131,139,126,143,134,129,119,134,116,132,129,138,136,120,124,129,132,152,126,127,122,140,146,109,118,153,112,125,114,127,146,134,144
|
||||
Cornell,Ivy,"18-11",+4,133,>>,130,126,155,120,131,138,162,120,108,155,136,152,138,124,126,118,"--",143,160,118,147,85,"--",132,111,154,140,125,118,145,85,151,115,156,121,134,117,106,134,144,106,125,141,155,141,128,160,165,108,149,158,196,144,112,120,119
|
||||
Illinois St,MVC,"19-14",-2,134,>>,138,170,128,140,141,151,132,129,120,129,131,134,124,136,131,139,"--",164,126,138,130,76,"--",134,135,131,156,135,135,130,127,132,144,141,137,135,124,149,155,128,120,137,130,156,123,136,123,116,141,129,131,127,141,120,121,138
|
||||
UC Riverside,BWC,"21-12",-9,135,>>,157,130,108,157,158,104,106,77,171,121,126,128,154,138,164,169,"--",96,106,147,83,180,"--",151,137,106,100,151,146,103,139,149,178,107,150,142,200,174,119,131,142,150,105,84,98,130,114,145,157,144,114,115,146,195,142,131
|
||||
Towson,CAA,"22-11",-9,136,>>,160,167,126,150,151,129,139,79,135,147,134,168,172,141,168,147,"--",124,133,143,110,100,"--",159,125,122,126,161,124,110,108,158,142,126,157,118,145,141,124,134,167,152,114,128,114,115,125,135,145,132,130,97,168,133,151,92
|
||||
South Alabama,SBC,"21-11",-3,137,>>,126,141,145,126,115,135,156,137,107,151,142,157,132,129,134,131,"--",130,150,121,144,156,"--",126,126,138,147,130,138,138,117,133,117,161,127,132,138,117,136,138,137,132,140,127,158,132,144,139,122,150,154,104,122,136,123,151
|
||||
NC State,ACC,"12-19",,138,>>,111,119,153,105,127,166,125,247,150,113,144,133,98,139,113,97,"--",175,133,128,187,146,"--",115,169,165,158,109,139,180,207,108,107,152,113,139,93,104,148,136,115,109,181,203,179,159,148,101,127,109,148,199,102,109,132,170
|
||||
Kennesaw,CUSA,"19-14",+1,139,>>,136,128,122,146,130,150,127,99,154,127,137,140,143,137,124,163,"--",158,120,135,119,110,"--",133,129,128,134,137,131,121,143,147,140,131,133,168,185,158,158,139,140,134,128,142,101,142,139,152,151,152,136,156,130,145,137,143
|
||||
WI Milwaukee,HL,"21-11",+1,140,>>,137,160,146,143,144,133,152,119,127,149,145,138,146,140,162,145,"--",140,150,140,135,121,"--",142,120,133,139,140,143,136,110,135,141,144,147,126,146,138,144,140,148,142,137,139,133,134,149,151,123,160,146,145,152,151,135,134
|
||||
S Dakota St,SL,"20-12",+2,141,>>,122,173,164,134,134,145,157,163,123,156,132,115,119,131,130,136,"--",131,162,149,156,163,"--",136,143,142,133,117,151,163,112,161,129,143,145,111,158,145,146,162,127,135,162,126,169,154,140,130,136,136,152,122,121,177,130,169
|
||||
Wofford,SC,"19-15",+6,142,>>,128,137,175,123,118,183,176,125,98,167,147,137,155,143,143,126,"--",187,182,125,158,82,"--",128,119,167,171,136,142,172,91,154,127,169,124,175,139,113,187,159,146,130,170,132,134,135,163,162,106,159,167,119,143,121,131,139
|
||||
Tulane,AAC,"19-14",+11,143,>>,139,121,136,137,139,170,154,165,142,153,141,155,123,145,138,133,"--",174,153,146,163,167,"--",129,163,169,170,133,126,148,150,128,137,162,128,145,127,130,154,151,123,133,155,164,174,161,146,114,156,126,145,124,129,122,145,105
|
||||
Bryant,AEC,"23-11",+13,144,>>,146,153,172,135,148,162,185,110,102,171,143,169,171,146,153,121,"--",139,179,132,151,80,"--",155,103,162,154,150,136,154,71,157,123,170,144,124,131,125,143,161,135,143,149,134,164,127,159,153,110,165,165,174,157,118,141,106
|
||||
N Dakota St,SL,"21-11",+1,145,>>,131,150,162,144,133,136,158,156,125,161,139,121,134,150,125,152,"--",136,160,153,152,92,"--",140,138,137,130,122,154,157,128,162,158,137,146,125,174,140,151,163,145,141,154,135,151,151,142,148,143,164,147,130,128,228,136,182
|
||||
Winthrop,BSo,"23-11",-1,146,>>,163,145,130,154,163,131,145,100,134,154,154,149,169,151,169,150,"--",125,143,144,122,153,"--",161,147,132,135,164,145,123,148,153,159,135,149,138,156,154,127,133,159,161,124,133,136,126,135,181,155,153,138,188,173,150,163,109
|
||||
James Madison,SBC,"20-12",,147,>>,164,134,131,159,159,137,147,84,136,150,156,159,170,153,155,158,"--",146,139,160,128,71,"--",175,141,134,128,178,153,126,126,143,148,146,190,122,137,163,145,145,160,165,125,144,108,141,154,173,165,142,139,144,181,198,158,126
|
||||
Rhode Island,A10,"18-13",-13,148,>>,156,163,144,147,153,142,136,141,119,132,149,154,129,156,163,142,"--",156,139,157,146,142,"--",152,156,147,138,153,159,132,149,123,167,147,165,123,135,152,139,135,151,153,133,158,127,162,150,137,163,148,143,135,142,130,152,183
|
||||
New Mexico St,CUSA,"17-15",-10,149,>>,132,139,141,139,132,152,146,153,149,139,146,130,137,155,104,148,"--",173,145,139,149,109,"--",124,149,149,166,129,134,156,168,136,125,159,123,177,164,151,180,156,131,129,156,140,131,165,165,144,149,163,163,184,118,160,144,164
|
||||
UC Santa Barbara,BWC,"21-13",+10,150,>>,145,135,149,151,147,156,137,175,163,146,150,132,144,144,150,156,"--",150,137,159,134,189,"--",145,160,146,155,146,152,147,159,145,170,149,148,146,157,150,171,149,138,148,143,148,160,158,136,155,162,151,153,110,134,171,140,146
|
||||
NE Omaha,SL,"22-12",,151,>>,151,123,152,172,157,153,155,126,151,164,140,145,167,142,127,185,"--",138,157,156,145,164,"--",144,151,151,144,142,147,149,129,189,161,138,136,143,211,157,149,165,130,146,148,129,156,147,153,163,161,158,141,96,158,162,160,116
|
||||
Murray St,MVC,"16-17",-3,152,>>,140,138,150,133,142,154,148,145,156,143,148,131,141,154,160,125,"--",210,147,145,153,193,"--",137,157,160,201,145,149,165,151,137,154,167,140,171,121,146,201,147,143,144,161,193,138,149,138,123,152,140,151,175,140,117,146,165
|
||||
Loy Marymount,WCC,"17-15",-1,153,>>,161,156,140,156,156,146,126,167,166,131,159,161,133,147,147,155,"--",133,132,168,157,138,"--",150,183,141,142,148,156,144,210,140,149,139,154,161,169,167,161,143,134,157,146,150,153,168,143,141,191,133,135,134,154,141,162,176
|
||||
UNC Greensboro,SC,"20-12",+2,154,>>,141,151,169,145,143,141,165,147,139,165,155,143,163,148,171,146,"--",147,166,141,154,205,"--",149,144,152,141,157,157,160,131,169,151,157,155,149,125,143,152,153,154,158,157,141,137,139,168,168,126,161,161,209,149,164,138,152
|
||||
Virginia Tech,ACC,"13-19",-11,155,>>,155,117,139,141,162,155,118,209,216,123,152,153,115,149,144,120,"--",185,129,151,171,216,"--",146,215,156,176,138,150,166,254,120,128,140,139,181,122,142,147,141,141,136,169,199,166,169,158,110,185,121,137,214,147,131,167,154
|
||||
Davidson,A10,"17-16",-6,156,>>,154,165,158,138,146,178,151,180,159,142,151,158,131,157,146,134,"--",184,150,158,172,116,"--",147,155,163,180,147,148,158,155,125,153,163,152,151,130,139,164,150,149,145,159,183,157,174,169,122,160,135,156,187,139,134,153,179
|
||||
Duquesne,A10,"13-19",-2,157,>>,143,144,180,128,136,188,168,189,118,158,164,156,125,166,128,124,"--",257,179,150,200,62,"--",127,150,194,230,132,128,196,123,126,134,194,122,209,118,123,275,168,126,127,188,212,145,189,161,113,144,166,185,197,131,138,149,158
|
||||
UTEP,CUSA,"18-15",+5,158,>>,150,175,137,161,154,157,142,139,146,140,153,148,157,159,141,165,"--",177,139,167,141,128,"--",158,152,139,152,155,160,143,154,163,152,151,170,179,196,164,176,170,158,159,144,161,128,177,157,172,176,156,155,194,148,215,157,206
|
||||
WKU,CUSA,"17-15",-6,159,>>,153,186,135,158,155,160,141,143,145,137,160,150,153,152,154,159,"--",172,133,163,148,131,"--",169,159,140,150,163,163,140,164,142,169,155,188,154,198,166,174,158,170,160,142,168,132,172,141,174,179,155,157,163,156,203,159,193
|
||||
Princeton,Ivy,"19-11",+1,160,>>,185,157,138,170,179,120,149,97,176,160,157,171,189,162,207,160,"--",128,145,176,129,184,"--",199,171,135,129,187,161,125,158,164,160,136,207,128,132,147,125,146,180,181,126,146,118,153,156,203,184,141,142,244,191,196,166,130
|
||||
IL Chicago,MVC,"18-14",+3,161,>>,168,171,142,167,175,148,140,132,167,141,158,147,160,164,191,161,"--",166,137,175,140,182,"--",165,165,153,159,166,168,142,187,160,181,148,178,148,154,211,153,148,181,172,138,145,130,157,155,167,167,157,140,241,176,155,154,184
|
||||
Radford,BSo,"20-13",+4,162,>>,165,174,157,166,150,161,161,131,168,162,165,174,186,172,152,178,"--",144,157,152,139,173,"--",170,136,155,153,170,165,150,133,175,173,150,160,163,176,175,142,152,156,167,152,143,155,143,175,198,148,176,159,146,180,173,161,172
|
||||
ETSU,SC,"19-13",+2,163,>>,142,161,183,148,140,174,187,174,144,175,163,160,164,161,165,151,"--",182,191,148,173,206,"--",148,148,173,163,152,162,182,111,166,143,174,153,147,151,136,175,175,162,155,180,174,152,167,167,166,131,169,174,132,145,170,148,148
|
||||
Cleveland St,HL,"21-12",-2,164,>>,167,184,159,169,167,149,163,159,180,163,167,163,175,167,174,172,"--",154,162,164,155,157,"--",167,145,158,151,165,155,153,130,165,162,168,164,160,170,172,157,154,177,171,151,152,150,152,162,175,159,168,168,126,184,191,174,161
|
||||
Norfolk St,MEAC,"24-10",+3,165,>>,172,183,163,178,180,125,183,128,181,194,161,167,201,173,195,174,"--",115,182,154,143,199,"--",183,140,157,121,184,176,152,118,194,199,145,179,113,171,160,122,164,202,191,150,136,168,124,151,202,134,183,162,100,182,183,183,128
|
||||
PFW,HL,"19-13",+3,166,>>,149,180,177,155,164,171,173,160,160,170,169,162,165,160,176,149,"--",168,176,155,162,160,"--",162,146,172,162,158,173,173,132,170,156,173,167,157,148,161,172,167,164,163,173,157,167,155,181,192,133,179,176,159,170,182,156,196
|
||||
Temple,AAC,"17-15",-9,167,>>,169,194,161,160,171,163,160,179,172,159,162,146,149,175,158,153,"--",191,157,177,176,203,"--",164,185,171,175,169,169,164,204,148,176,165,173,141,142,173,165,166,175,162,165,165,180,186,152,127,187,138,150,186,150,152,164,157
|
||||
Central Conn,NEC,"25-7",-9,168,>>,190,181,165,186,183,103,178,155,164,186,179,194,208,163,194,191,"--",100,175,161,136,197,"--",195,131,143,117,199,175,137,107,199,201,154,186,108,167,170,113,155,198,203,136,137,183,133,145,194,147,199,172,167,196,192,168,137
|
||||
Marshall,SBC,"20-13",+1,169,>>,175,152,166,173,166,172,177,146,162,173,171,177,178,169,166,176,"--",176,171,165,166,122,"--",172,164,175,173,175,158,162,137,172,146,177,171,165,179,156,169,171,176,169,164,166,163,171,164,177,172,170,171,125,186,161,177,149
|
||||
East Carolina,AAC,"19-14",-3,170,>>,179,149,154,171,176,164,153,184,173,157,168,179,159,165,182,167,"--",180,153,180,168,219,"--",173,189,159,172,171,164,151,201,141,155,160,176,162,159,185,156,157,179,166,153,169,162,191,147,159,202,147,149,203,169,167,176,140
|
||||
Lamar,SLC,"20-13",+3,171,>>,162,147,168,182,165,177,181,134,169,197,183,182,180,158,172,202,"--",149,172,166,179,192,"--",166,168,164,165,168,167,161,161,186,187,164,161,187,214,187,160,177,189,174,171,147,187,156,183,200,170,196,178,154,155,187,169,163
|
||||
Nicholls St,SLC,"20-13",-1,172,>>,170,185,171,176,173,169,179,144,191,188,189,170,181,171,170,179,"--",151,172,170,167,170,"--",168,172,161,148,167,170,167,163,184,193,158,163,184,180,178,162,173,182,179,168,149,165,160,172,213,164,188,177,206,177,184,171,186
|
||||
Cal Baptist,WAC,"17-15",-1,173,>>,171,154,174,163,170,187,167,197,175,166,166,166,161,174,157,162,"--",194,165,172,184,169,"--",174,181,178,191,162,178,175,193,167,168,176,172,188,166,162,358,169,173,164,179,179,190,175,177,147,175,172,170,153,164,188,172,173
|
||||
San Jose St,MWC,"15-19",+3,174,>>,166,155,160,174,169,158,150,218,210,148,172,173,142,170,156,180,"--",200,149,173,194,210,"--",160,201,180,212,149,166,183,228,159,172,172,159,221,181,202,179,174,172,151,190,197,194,201,166,146,192,162,164,211,162,153,175,185
|
||||
UNC Asheville,BSo,"21-11",+1,175,>>,195,224,156,199,200,130,166,102,229,174,175,186,226,177,226,192,"--",127,162,181,132,200,"--",213,161,148,136,210,187,146,162,198,208,153,210,159,190,206,137,160,206,201,147,151,148,148,190,246,174,180,160,136,218,249,192,156
|
||||
TAM C. Christi,SLC,"20-14",-3,176,>>,159,169,197,162,160,203,212,190,179,201,208,164,166,168,149,166,"--",169,199,169,207,154,"--",153,166,187,168,159,177,191,156,195,182,184,151,174,160,181,246,181,186,176,202,153,206,166,191,197,154,206,221,216,153,149,165,225
|
||||
Seattle,WAC,"14-18",-2,177,>>,147,164,217,142,145,201,207,215,133,193,170,151,147,181,139,138,"--",241,212,162,225,165,"--",143,188,221,232,143,171,228,185,150,147,215,141,212,144,134,325,197,153,149,229,207,212,190,194,154,150,181,211,238,132,159,155,191
|
||||
Appalachian St,SBC,"17-14",+1,178,>>,177,178,181,168,168,198,189,162,157,185,180,190,184,182,161,168,"--",188,182,184,188,97,"--",191,177,181,194,183,180,181,172,176,164,204,194,164,163,168,254,179,199,180,182,182,175,183,213,207,177,182,188,170,171,189,170,207
|
||||
FGCU,ASUN,"18-14",-1,179,>>,173,219,184,177,172,194,188,195,178,183,178,176,177,176,167,181,"--",186,189,179,181,178,"--",171,182,183,181,177,186,186,179,183,185,178,175,170,178,176,248,184,178,184,184,175,176,180,174,185,169,192,180,138,163,205,173,190
|
||||
Jacksonville,ASUN,"19-13",+1,180,>>,176,208,178,192,178,168,184,158,198,177,174,196,196,180,189,210,"--",152,182,182,164,175,"--",187,153,168,149,195,194,174,174,188,209,166,199,183,225,213,168,187,183,197,175,154,172,182,193,201,182,191,173,121,175,243,181,197
|
||||
Boston College,ACC,"12-19",+1,181,>>,193,158,170,175,182,184,144,259,250,152,177,172,148,204,173,164,"--",199,155,196,208,222,"--",177,246,190,185,176,191,193,271,134,174,171,166,205,161,183,166,172,163,170,195,208,203,215,173,150,234,145,166,231,160,176,202,204
|
||||
Youngstown St,HL,"21-13",+1,182,>>,194,191,173,198,202,180,174,178,193,180,181,185,205,179,210,190,"--",183,176,186,165,227,"--",201,179,174,182,196,174,170,184,182,186,175,198,155,188,207,178,176,194,199,172,178,182,170,170,188,188,178,175,141,211,238,190,142
|
||||
Cal Poly,BWC,"16-19",+12,183,>>,178,133,179,202,184,173,164,181,183,172,173,165,176,178,186,221,"--",225,169,183,174,265,"--",163,204,195,215,174,190,203,217,190,198,185,162,229,236,209,188,188,157,178,193,213,177,194,171,176,199,203,179,177,172,163,180,175
|
||||
Ohio,MAC,"16-16",-4,184,>>,186,187,182,184,196,181,192,170,131,191,201,180,187,183,180,170,"--",234,189,188,192,152,"--",193,192,185,226,188,181,185,160,168,166,222,196,195,152,165,216,180,161,189,185,221,161,185,186,178,186,190,202,201,195,202,179,219
|
||||
Drexel,CAA,"18-15",+1,185,>>,188,188,204,181,185,218,204,198,177,200,176,184,197,184,184,177,"--",231,204,185,198,221,"--",184,174,204,222,190,172,195,152,202,179,201,174,169,175,171,274,190,190,183,192,202,197,187,188,170,173,186,199,166,189,137,185,155
|
||||
Oakland,HL,"16-18",-1,186,>>,182,197,185,188,177,191,190,171,188,190,184,192,191,187,192,201,"--",216,192,189,189,166,"--",182,190,188,200,179,182,197,200,180,171,197,181,201,206,190,315,195,191,182,194,220,171,193,192,157,195,185,191,181,194,185,193,166
|
||||
E Kentucky,ASUN,"18-14",+2,187,>>,181,210,193,197,181,199,197,186,200,195,186,200,198,190,175,211,"--",170,198,174,186,186,"--",180,173,186,178,192,193,192,181,207,205,187,187,191,224,198,181,199,174,196,199,172,201,192,179,191,168,195,187,147,188,241,187,200
|
||||
Merrimack,MAAC,"18-15",-4,188,>>,196,212,196,190,187,209,208,142,153,202,185,225,212,193,198,193,"--",196,196,187,180,151,"--",198,170,200,206,201,179,184,141,206,188,208,200,185,201,177,355,182,192,194,183,176,181,178,182,186,171,216,200,137,199,175,182,171
|
||||
Quinnipiac,MAAC,"20-13",+1,189,>>,211,237,194,215,213,208,215,121,158,221,190,237,234,191,211,212,"--",181,196,202,169,155,"--",222,175,177,198,213,183,178,144,200,183,203,216,158,202,188,183,186,219,208,178,162,195,176,185,219,183,213,196,176,215,212,191,159
|
||||
S Illinois,MVC,"15-19",+1,190,>>,200,196,187,196,193,186,171,187,182,169,182,189,179,195,179,196,"--",254,169,204,197,158,"--",186,219,202,247,194,185,199,230,181,189,211,197,223,207,221,197,193,213,193,201,238,186,214,180,169,217,173,183,242,190,156,195,188
|
||||
SE Missouri St,OVC,"21-12",+2,191,>>,197,179,200,214,203,197,225,150,161,218,203,201,215,186,196,220,"--",167,204,178,183,171,"--",197,176,191,188,202,195,188,147,244,204,190,185,207,243,215,324,185,184,210,186,163,198,164,187,212,166,229,201,171,207,216,188,189
|
||||
Sam Houston St,CUSA,"13-19",-5,192,>>,174,195,189,179,174,204,186,208,207,178,194,178,190,196,151,183,"--",238,182,190,199,204,"--",181,197,211,220,185,188,219,223,179,163,210,191,235,205,192,323,214,168,177,218,229,178,220,222,210,197,193,206,305,166,231,178,198
|
||||
Northeastern,CAA,"17-15",+3,193,>>,207,260,198,203,209,220,194,177,197,199,187,205,209,200,197,205,"--",220,194,200,185,223,"--",214,194,184,217,212,209,187,175,203,197,198,217,192,193,204,206,192,210,209,187,209,191,197,184,196,201,200,189,173,213,186,207,212
|
||||
Queens NC,ASUN,"19-14",+3,194,>>,202,162,202,217,204,200,209,194,228,208,197,202,217,203,190,230,"--",171,204,191,190,194,"--",200,199,189,167,204,213,200,202,232,218,179,195,186,231,216,182,203,200,204,196,171,188,195,211,230,190,207,186,190,202,217,199,220
|
||||
S Carolina St,MEAC,"20-13",+4,195,>>,183,198,228,189,190,229,258,223,206,247,192,181,211,185,185,186,"--",179,257,171,224,245,"--",179,167,219,179,181,197,225,145,246,206,217,169,193,197,184,328,216,188,188,227,184,223,163,217,211,146,255,241,133,201,174,196,195
|
||||
Toledo,MAC,"18-15",+10,196,>>,235,199,167,231,235,179,172,127,208,189,220,218,239,188,251,215,"--",178,166,217,159,174,"--",242,208,176,190,246,210,159,209,209,213,183,254,202,212,237,177,178,237,247,163,181,159,188,178,228,227,174,169,158,251,232,238,192
|
||||
Indiana St,MVC,"14-18",+4,197,>>,205,182,205,194,201,202,191,225,217,182,193,204,195,192,203,184,"--",242,192,198,213,231,"--",185,205,215,244,200,184,217,196,196,177,221,193,200,182,220,227,204,165,195,216,241,210,223,216,190,205,167,203,252,208,157,205,201
|
||||
Vermont,AEC,"21-12",-10,198,>>,247,215,192,218,242,167,211,148,230,220,204,254,265,222,232,206,"--",159,199,215,177,162,"--",256,187,179,169,259,192,179,171,215,191,188,247,166,184,169,159,194,256,231,177,180,185,184,201,255,222,194,194,234,268,211,232,129
|
||||
Wyoming,MWC,"12-20",-5,199,>>,184,239,195,187,189,207,175,251,236,168,196,183,156,206,193,189,"--",211,166,192,229,243,"--",189,224,213,210,172,207,218,239,178,190,189,189,249,199,208,353,207,196,175,230,225,217,230,208,160,212,171,182,237,178,194,197,269
|
||||
Elon,CAA,"17-15",+2,200,>>,189,275,223,201,199,214,216,204,170,205,188,203,202,189,228,203,"--",219,222,197,204,215,"--",207,178,207,202,205,215,207,173,205,212,205,212,182,208,203,278,201,220,205,206,198,208,200,200,189,178,221,205,165,192,179,184,256
|
||||
South Florida,AAC,"13-19",-3,201,>>,203,204,209,183,198,222,199,231,215,198,211,197,174,201,202,175,"--",244,204,208,232,224,"--",190,233,222,236,193,200,216,240,174,180,226,192,210,147,195,194,211,195,187,224,239,207,227,196,179,221,175,204,225,185,190,189,232
|
||||
Montana St,BSC,"15-18",+1,202,>>,180,159,242,185,186,244,227,245,192,209,195,175,183,213,188,187,"--",245,230,194,233,229,"--",188,198,230,239,182,217,247,189,204,202,219,184,213,172,180,209,221,171,186,244,244,239,207,223,182,181,205,219,192,183,166,186,230
|
||||
La Salle,A10,"14-19",+9,203,>>,224,203,186,211,223,176,170,191,212,176,198,211,193,209,212,200,"--",229,176,225,201,177,"--",212,232,212,208,223,214,194,241,187,229,191,222,225,165,233,289,183,226,212,189,228,173,222,189,156,235,184,184,261,210,178,214,208
|
||||
SIUE,OVC,"22-11",+3,204,>>,220,200,208,228,215,193,230,183,204,226,219,220,236,194,216,236,"--",153,214,193,193,214,"--",216,186,208,183,228,199,190,166,256,228,192,205,178,240,222,185,196,204,232,191,170,225,179,199,245,189,217,210,208,216,206,216,178
|
||||
Portland St,BSC,"19-13",-13,205,>>,204,168,225,209,207,213,213,226,232,211,199,188,206,198,187,209,"--",190,217,209,211,239,"--",202,202,205,193,198,218,222,186,216,207,186,183,194,229,199,318,210,205,200,222,191,244,196,206,222,198,197,193,180,193,223,200,228
|
||||
Brown,Ivy,"14-13",-1,206,>>,216,201,212,207,208,192,217,192,189,215,200,235,221,208,201,208,"--",165,217,203,202,202,"--",226,193,203,174,217,198,202,178,213,211,213,221,196,191,194,170,202,211,207,200,206,189,208,239,278,204,214,222,262,231,219,215,187
|
||||
Mt St Mary's,MAAC,"22-12",+26,207,>>,251,227,176,245,249,182,196,123,225,217,206,262,264,202,264,243,"--",160,182,218,160,232,"--",255,195,182,189,258,196,168,169,259,252,180,249,172,239,250,167,206,242,249,160,185,184,181,176,242,225,204,181,162,255,210,236,141
|
||||
Valparaiso,MVC,"15-19",,208,>>,212,193,188,208,210,185,180,228,211,187,191,195,192,212,217,207,"--",255,179,212,206,246,"--",194,242,216,245,206,204,206,249,197,222,214,201,236,203,246,342,189,185,206,205,237,200,212,198,184,228,189,192,233,209,148,206,211
|
||||
Texas St,SBC,"16-16",+1,209,>>,201,218,213,193,195,210,220,216,202,214,213,207,199,199,205,188,"--",233,217,206,222,236,"--",208,217,220,227,208,226,220,215,192,184,223,218,197,195,197,242,215,201,202,214,224,216,218,209,208,203,202,213,227,198,180,198,222
|
||||
Longwood,BSo,"18-14",+1,210,>>,210,252,211,206,211,189,202,210,201,216,215,198,213,207,229,204,"--",192,204,213,196,212,"--",215,209,199,187,216,227,201,220,210,219,199,215,189,189,196,292,191,231,226,197,190,193,203,220,214,206,219,215,247,206,236,210,239
|
||||
Dartmouth,Ivy,"14-14",-11,211,>>,209,214,236,210,205,227,232,205,174,232,210,224,214,215,177,213,"--",207,234,201,219,188,"--",196,218,214,221,189,189,226,205,211,210,238,168,224,187,189,211,198,169,190,223,219,219,202,240,244,196,240,233,317,200,172,209,215
|
||||
American Univ,PL,"22-12",+13,212,>>,248,238,191,240,238,195,203,149,231,219,230,255,251,218,243,241,"--",163,195,223,182,185,"--",248,207,193,177,248,211,176,194,225,247,181,242,180,227,217,163,200,257,240,176,167,214,198,195,249,230,226,197,185,247,213,226,160
|
||||
Hampton,CAA,"17-16",+1,213,>>,217,217,216,224,214,205,221,185,194,223,212,213,222,216,204,234,"--",228,228,214,212,179,"--",210,206,218,211,211,201,212,190,234,217,212,204,222,222,200,285,218,203,213,209,214,202,209,218,216,216,248,217,205,219,193,212,205
|
||||
SE Louisiana,SLC,"18-14",+5,214,>>,192,206,220,213,194,228,229,219,243,229,232,199,207,197,208,226,"--",195,226,199,215,259,"--",204,200,206,195,197,224,210,192,228,234,193,206,220,232,230,184,222,197,215,215,192,236,205,205,237,194,236,224,195,203,239,208,258
|
||||
Miami FL,ACC,"7-24",+2,215,>>,187,176,224,164,192,300,198,287,234,184,209,221,145,205,183,144,"--",263,214,195,287,226,"--",176,267,267,256,180,208,251,282,152,165,258,180,286,119,155,300,223,187,173,272,271,251,241,212,131,218,177,257,276,167,158,225,214
|
||||
N Kentucky,HL,"17-16",+2,216,>>,226,190,199,235,233,206,200,207,226,207,222,212,218,210,249,233,"--",221,204,221,203,207,"--",217,222,209,213,221,202,205,224,212,192,207,225,211,234,205,202,217,222,222,204,210,192,216,226,218,237,210,209,183,241,214,229,174
|
||||
UT San Antonio,AAC,"12-19",-8,217,>>,198,192,230,195,191,248,224,224,184,210,205,191,182,225,181,199,"--",252,228,216,242,181,"--",178,228,233,246,186,212,239,227,191,195,233,182,245,186,210,339,228,166,185,236,242,227,240,214,180,220,218,226,269,187,197,201,259
|
||||
Maine,AEC,"20-14",+6,218,>>,214,245,246,205,220,251,243,188,205,243,202,229,244,226,235,197,"--",204,244,205,210,228,"--",230,184,228,214,230,221,221,153,222,216,220,220,190,183,193,237,212,228,219,213,187,224,199,197,229,180,228,220,178,214,181,203,199
|
||||
Seton Hall,BE,"7-25",-4,219,>>,199,177,238,180,206,302,193,292,264,181,207,187,151,219,220,157,"--",253,204,222,281,267,"--",203,273,251,254,173,206,259,302,171,175,218,177,259,150,191,326,227,209,168,261,223,240,258,204,136,238,139,207,294,174,165,211,243
|
||||
Massachusetts,A10,"12-20",-16,220,>>,218,223,221,200,217,231,195,237,214,192,224,216,185,229,218,182,"--",276,212,228,237,208,"--",205,234,227,259,207,203,232,233,177,200,235,211,228,177,182,207,213,208,198,226,250,204,250,221,149,233,198,228,274,204,208,221,210
|
||||
Bucknell,PL,"18-15",,221,>>,228,240,226,221,226,255,236,203,203,237,225,248,224,224,213,219,"--",202,231,210,223,168,"--",218,210,217,224,219,205,208,182,217,221,225,208,198,215,186,261,219,232,224,207,195,243,206,203,199,213,254,239,149,222,199,213,202
|
||||
Hawaii,BWC,"15-16",-2,222,>>,221,221,190,230,227,196,169,243,209,179,221,206,194,211,237,237,"--",206,172,239,205,217,"--",223,229,198,199,222,234,189,231,193,241,206,239,199,256,236,195,208,217,220,203,231,199,243,229,239,252,201,208,202,224,245,223,231
|
||||
William & Mary,CAA,"17-15",-1,223,>>,227,247,206,229,229,211,206,168,223,206,216,232,240,223,221,217,"--",215,199,220,195,159,"--",241,196,196,197,238,223,198,195,227,214,202,241,204,218,241,350,205,233,234,198,205,196,204,207,225,215,230,195,228,235,226,218,233
|
||||
Rice,AAC,"13-19",-8,224,>>,191,233,240,191,188,262,237,272,196,225,217,208,173,220,178,195,"--",261,244,229,269,225,"--",192,211,232,248,191,228,236,222,201,194,240,203,218,194,179,221,248,193,192,235,263,281,269,233,164,226,215,242,217,179,227,204,284
|
||||
Southern Univ,SWAC,"20-12",-12,225,>>,230,249,214,233,234,175,248,211,263,257,233,209,249,244,214,227,"--",141,236,207,216,279,"--",235,203,192,157,235,241,204,206,231,251,196,229,208,220,227,186,220,270,241,217,159,228,173,224,265,193,241,218,140,228,235,224,237
|
||||
South Dakota,SL,"19-14",+1,226,>>,236,189,210,247,240,224,201,221,240,222,218,214,232,214,236,248,"--",189,199,241,209,283,"--",225,240,201,186,225,238,211,245,255,238,182,231,217,257,242,220,226,248,235,210,188,220,224,230,247,249,224,190,193,230,266,233,213
|
||||
Pepperdine,WCC,"13-22",+2,227,>>,222,226,218,227,216,223,205,260,247,203,226,217,188,217,200,232,"--",239,204,233,261,198,"--",206,262,252,251,209,222,238,279,214,223,228,209,247,238,249,316,229,212,216,248,232,254,247,210,183,253,187,225,221,205,168,227,224
|
||||
Abilene Chr,WAC,"16-16",-2,228,>>,225,211,222,223,218,216,223,242,256,212,214,219,233,236,199,224,"--",217,217,224,228,213,"--",233,213,224,205,229,233,230,229,219,225,216,230,237,244,212,249,237,239,214,232,227,238,236,243,260,231,208,212,275,233,240,228,203
|
||||
UC Davis,BWC,"15-17",-1,229,>>,239,207,201,242,251,190,182,199,246,196,235,230,238,230,250,242,"--",218,182,246,191,240,"--",247,231,197,203,243,249,209,234,240,259,200,248,227,259,262,234,224,244,236,208,236,205,235,215,250,257,212,198,218,243,270,237,236
|
||||
Hofstra,CAA,"15-18",+2,230,>>,213,248,254,204,219,234,241,240,227,235,228,231,216,231,225,194,"--",270,248,230,239,209,"--",221,216,237,269,220,232,246,219,220,203,243,224,215,204,201,286,234,235,217,239,253,250,231,219,220,208,209,237,286,226,154,217,273
|
||||
Idaho St,BSC,"15-15",-8,231,>>,206,205,259,216,212,253,245,275,221,238,227,193,200,227,209,222,"--",214,248,226,251,297,"--",209,235,242,231,203,246,264,226,226,227,232,202,234,233,234,235,241,238,211,264,222,275,226,253,238,207,231,238,222,197,201,194,255
|
||||
Wright St,HL,"15-18",+2,232,>>,219,228,241,225,222,217,233,234,224,227,237,215,220,232,219,223,"--",271,236,231,235,195,"--",228,212,236,252,227,237,240,208,218,215,249,236,226,216,225,352,236,215,229,234,251,218,239,228,205,219,233,249,210,223,230,220,261
|
||||
Delaware,CAA,"16-20",+11,233,>>,233,229,247,236,231,212,239,200,186,241,223,242,237,237,234,231,"--",301,241,235,230,161,"--",229,221,250,281,233,219,235,214,235,224,245,233,253,228,224,191,238,227,228,231,262,213,238,225,209,229,223,236,236,237,209,235,223
|
||||
Northwestern LA,SLC,"17-16",+3,234,>>,223,232,203,246,228,215,222,213,241,230,249,239,223,221,224,265,"--",193,217,234,218,257,"--",231,227,210,196,224,235,214,242,243,258,195,226,239,279,272,314,230,236,246,220,215,229,221,238,248,243,250,227,215,227,229,230,216
|
||||
C Michigan,MAC,"14-17",,235,>>,208,172,233,212,197,221,254,254,218,236,238,228,210,235,215,218,"--",223,248,211,255,247,"--",211,223,246,233,218,239,255,216,208,196,262,219,270,221,223,266,243,207,218,254,235,246,233,251,227,200,252,262,254,217,242,219,275
|
||||
Marist,MAAC,"20-10",-5,236,>>,269,287,207,263,272,165,218,182,244,234,234,271,276,233,285,254,"--",155,199,253,178,258,"--",280,225,170,184,273,244,177,212,247,263,209,285,150,263,261,173,209,296,268,174,196,211,210,202,269,254,235,214,155,275,280,246,229
|
||||
Fordham,A10,"12-21",+6,237,>>,241,253,229,226,232,247,210,233,239,204,229,234,203,239,222,214,"--",282,224,242,240,191,"--",224,248,241,261,231,230,237,236,185,233,236,228,251,213,219,281,225,218,227,233,257,209,261,234,193,248,211,229,250,220,200,239,250
|
||||
Ark Little Rock,OVC,"19-14",-2,238,>>,229,222,248,239,225,249,253,214,233,249,243,236,248,238,254,246,"--",198,232,219,217,211,"--",237,214,226,219,241,240,224,211,254,249,224,244,203,249,254,256,232,221,254,221,194,237,217,227,223,209,245,234,151,244,292,234,235
|
||||
Manhattan,MAAC,"17-13",-9,239,>>,245,259,231,248,237,230,242,206,190,254,231,269,255,228,257,257,"--",197,234,236,214,238,"--",245,220,229,218,242,220,215,199,253,246,244,240,219,264,244,295,231,224,245,211,201,242,219,235,256,232,261,244,204,250,207,243,209
|
||||
Campbell,CAA,"15-17",-1,240,>>,215,263,257,220,221,256,255,253,220,251,236,227,227,241,223,225,"--",249,256,232,245,241,"--",220,236,239,260,214,231,252,232,229,235,251,214,233,217,231,263,240,243,221,252,247,259,228,249,232,211,246,251,232,212,221,222,253
|
||||
Ga Southern,SBC,"17-16",,241,>>,258,250,215,253,250,233,226,217,255,233,240,250,258,246,245,259,"--",227,214,254,220,220,"--",254,256,225,216,261,242,213,250,236,237,231,262,216,255,238,229,235,260,255,212,218,215,248,232,253,270,234,216,207,258,251,255,221
|
||||
Richmond,A10,"10-22",-2,242,>>,246,213,252,234,241,293,234,235,235,228,247,251,219,245,227,228,"--",299,239,252,267,103,"--",238,258,258,288,236,225,256,265,223,230,268,237,282,223,226,224,254,214,225,260,285,221,280,256,204,261,222,260,281,245,222,253,240
|
||||
MA Lowell,AEC,"17-15",+3,243,>>,242,264,267,219,244,265,262,244,195,252,252,266,256,247,265,198,"--",224,264,238,249,176,"--",266,191,247,235,260,253,249,177,237,220,261,261,206,192,214,293,233,249,238,240,211,248,234,266,257,210,259,266,291,261,204,242,272
|
||||
Iona,MAAC,"17-17",+8,244,>>,264,243,239,259,259,254,250,212,219,256,244,274,273,243,244,252,"--",277,244,248,227,190,"--",263,237,244,284,262,216,229,225,258,232,257,259,230,251,229,238,247,240,252,225,249,234,237,231,233,255,242,247,198,279,233,252,167
|
||||
Harvard,Ivy,"12-15",,245,>>,257,272,237,254,255,245,235,193,238,253,241,264,260,249,239,255,"--",212,236,257,226,218,"--",258,239,234,204,254,229,233,237,242,250,241,253,240,246,232,205,244,225,248,228,260,222,245,268,290,265,244,243,277,266,247,256,181
|
||||
UT Arlington,WAC,"13-18",-8,246,>>,231,246,256,222,224,266,238,282,258,239,239,226,228,253,238,216,"--",267,244,244,258,287,"--",236,250,256,255,232,250,265,258,221,226,254,243,214,210,228,222,258,251,223,269,255,271,267,261,234,244,227,246,249,225,246,231,234
|
||||
CS Bakersfield,BWC,"14-19",-5,247,>>,240,202,234,241,243,225,214,249,251,224,245,210,231,234,258,249,"--",272,222,249,231,270,"--",234,251,235,253,239,257,244,263,238,266,242,235,242,254,260,362,239,254,242,242,261,235,249,247,240,256,243,240,229,232,244,244,252
|
||||
Northern Arizona,BSC,"18-15",-1,248,>>,238,216,258,244,247,270,247,270,261,248,242,223,242,242,248,244,"--",235,241,243,246,305,"--",240,255,248,237,234,263,257,246,251,254,229,227,232,248,247,313,250,234,243,255,217,277,244,260,259,236,238,232,223,234,250,248,257
|
||||
UTRGV,SLC,"16-15",,249,>>,243,256,250,251,239,240,257,258,253,259,275,240,243,251,233,263,"--",201,248,251,252,230,"--",249,245,240,192,251,269,241,238,249,272,237,256,258,261,278,230,249,241,266,245,216,241,246,262,288,245,284,267,240,238,265,251,291
|
||||
Evansville,MVC,"11-21",-2,250,>>,252,255,235,252,262,274,219,257,265,213,251,241,241,252,261,250,"--",297,224,256,241,249,"--",243,254,243,291,245,248,250,269,248,248,250,251,267,269,276,244,242,229,244,247,275,233,268,242,224,266,237,230,257,274,225,257,246
|
||||
Presbyterian,BSo,"14-18",,251,>>,237,230,260,237,230,241,260,264,257,258,248,238,247,250,255,239,"--",281,261,237,248,315,"--",232,244,257,276,237,254,268,247,257,253,255,213,260,226,255,320,245,245,239,268,272,258,229,254,263,224,265,264,248,221,224,240,263
|
||||
Jackson St,SWAC,"16-18",+13,252,>>,254,261,227,260,248,236,281,202,289,283,260,247,281,262,256,271,"--",208,270,227,243,251,"--",261,226,245,209,263,261,234,213,275,267,247,252,280,286,259,288,272,272,260,249,233,232,211,245,264,214,277,256,152,264,268,264,217
|
||||
Tennessee St,OVC,"17-16",+2,253,>>,255,209,269,258,252,278,286,246,185,275,265,243,266,258,231,256,"--",256,278,240,259,172,"--",252,238,264,257,255,243,266,218,283,257,274,232,252,267,252,337,255,223,261,259,234,264,232,264,231,223,279,275,213,248,254,250,241
|
||||
Monmouth NJ,CAA,"13-20",-4,254,>>,261,236,251,261,267,264,252,229,294,255,246,260,267,240,259,251,"--",287,254,261,238,281,"--",259,247,254,270,256,236,248,255,276,242,248,245,256,242,253,302,257,261,251,250,273,252,242,236,221,258,239,235,235,262,218,258,194
|
||||
E Michigan,MAC,"16-16",-1,255,>>,277,235,219,284,276,226,228,220,269,244,257,261,279,255,269,290,"--",247,226,269,221,264,"--",274,257,223,242,280,259,223,251,266,265,234,275,254,281,280,277,246,265,275,219,248,226,254,244,267,290,256,223,219,291,261,268,226
|
||||
Georgia St,SBC,"14-19",,256,>>,266,234,243,262,263,246,244,248,270,250,254,267,257,257,241,253,"--",264,239,260,253,234,"--",260,263,255,258,265,255,242,260,252,244,266,265,264,252,239,284,252,258,256,243,258,249,265,259,272,275,249,253,224,271,248,265,242
|
||||
Tulsa,AAC,"13-20",+4,257,>>,268,241,253,257,268,242,240,294,272,242,256,244,235,261,240,245,"--",294,248,270,277,250,"--",246,277,277,279,253,251,263,296,230,240,260,255,257,235,243,218,262,247,250,262,278,262,293,246,215,296,225,248,243,257,255,271,227
|
||||
Siena,MAAC,"14-18",-5,258,>>,249,291,264,255,254,257,264,227,199,263,253,296,254,254,270,258,"--",289,266,250,247,196,"--",257,230,253,298,249,247,254,197,260,255,279,260,250,278,235,327,251,262,257,246,281,247,253,248,235,240,288,269,212,254,258,259,287
|
||||
North Florida,ASUN,"15-17",-1,259,>>,256,299,249,269,258,219,246,238,297,246,259,252,269,266,266,274,"--",226,241,255,234,256,"--",264,243,238,234,276,279,243,244,265,280,230,280,238,280,286,311,253,263,276,241,246,231,252,237,258,246,260,245,220,252,295,262,283
|
||||
Missouri St,MVC,"9-23",-3,260,>>,234,225,282,238,245,311,249,310,237,231,250,222,204,260,206,235,"--",328,254,263,294,244,"--",219,266,289,308,226,252,294,278,224,231,293,234,289,237,269,334,271,216,230,293,317,269,297,263,195,263,232,268,284,236,220,245,300
|
||||
Missouri KC,SL,"13-20",-2,261,>>,232,244,303,232,236,283,287,307,242,271,255,233,230,256,230,229,"--",302,297,258,305,252,"--",227,259,295,292,215,265,309,256,268,236,288,223,281,209,240,208,274,230,233,304,276,284,263,287,226,239,264,289,263,229,237,241,305
|
||||
Alabama St,SWAC,"19-15",+10,262,>>,276,271,232,274,275,235,276,232,299,294,264,258,282,265,275,279,"--",203,266,247,244,322,"--",271,274,249,229,275,275,231,277,282,288,239,267,241,275,264,252,263,298,283,238,200,256,213,241,282,250,278,252,182,265,253,274,180
|
||||
Incarnate Word,SLC,"17-16",-3,263,>>,244,262,270,250,246,263,273,278,260,269,279,245,246,248,246,261,"--",237,270,245,273,274,"--",244,249,262,228,240,262,261,253,272,268,253,238,271,258,271,361,261,252,262,270,226,257,251,276,286,241,287,276,309,242,274,249,267
|
||||
Colgate,PL,"14-19",-2,264,>>,259,292,280,249,261,258,277,250,213,273,272,279,259,267,273,240,"--",300,283,262,265,233,"--",262,252,274,294,257,245,277,235,239,239,278,257,243,230,218,269,265,264,258,267,274,280,262,257,236,247,266,282,270,253,260,247,270
|
||||
Charlotte,AAC,"11-22",+1,265,>>,253,269,262,243,256,296,251,293,248,245,258,256,225,259,260,238,"--",320,257,268,286,277,"--",239,276,272,304,244,258,274,288,233,243,269,246,274,219,248,307,266,268,237,277,302,276,295,255,217,283,220,258,265,240,234,267,265
|
||||
Sacred Heart,MAAC,"15-18",+1,266,>>,263,278,278,266,265,261,282,239,222,276,261,292,277,264,247,266,"--",290,282,259,254,187,"--",268,241,260,290,266,256,270,221,271,260,284,263,263,265,251,322,267,253,263,257,277,261,260,258,261,242,285,277,256,263,257,254,251
|
||||
SUNY Albany,AEC,"17-16",-4,267,>>,275,282,272,267,271,271,271,252,262,270,263,290,286,271,277,262,"--",258,275,265,250,253,"--",279,253,261,267,278,270,262,243,262,262,263,276,231,245,257,247,260,274,270,253,243,272,264,267,274,259,281,265,259,276,252,263,249
|
||||
"Bethune-Cookman",SWAC,"17-16",-4,268,>>,281,290,244,290,288,239,265,230,322,286,267,257,294,273,296,284,"--",205,257,264,236,331,"--",291,269,231,207,289,288,227,275,295,313,227,298,244,287,293,259,256,305,298,237,204,255,225,250,268,268,276,231,189,283,302,277,218
|
||||
Mercer,SC,"14-19",-1,269,>>,260,305,276,256,257,232,270,268,273,266,262,246,274,263,276,247,"--",288,275,267,262,318,"--",269,261,271,262,268,271,279,259,270,256,265,270,262,247,265,298,259,277,265,274,288,230,256,283,279,251,253,261,251,259,263,261,274
|
||||
Portland,WCC,"12-20",-1,270,>>,286,231,245,282,269,260,231,280,316,240,268,272,253,279,252,294,"--",246,232,280,279,254,"--",265,296,259,243,271,260,253,294,245,261,246,266,291,310,284,317,269,259,272,266,264,265,292,252,243,317,257,250,280,278,278,288,244
|
||||
Idaho,BSC,"14-19",,271,>>,267,254,275,276,279,252,261,276,266,264,266,249,261,272,253,277,"--",284,261,278,266,261,"--",272,283,270,282,264,287,283,300,267,277,252,268,276,285,285,196,273,285,267,282,270,282,271,269,271,278,262,254,246,256,269,269,279
|
||||
Gardner Webb,BSo,"11-20",-2,272,>>,262,294,271,264,264,295,268,256,245,268,269,265,268,270,268,260,"--",295,269,266,260,242,"--",267,265,269,286,269,278,271,268,274,273,273,272,272,266,277,283,268,275,271,276,287,260,266,279,275,260,268,272,260,260,279,266,292
|
||||
Austin Peay,ASUN,"14-19",+1,273,>>,273,265,268,278,273,238,269,263,287,265,277,278,280,289,282,286,"--",268,270,272,257,290,"--",273,260,265,265,279,286,272,267,288,284,259,278,277,290,283,257,279,279,278,271,265,267,275,265,287,271,263,263,230,280,311,282,278
|
||||
SF Austin,SLC,"14-17",+1,274,>>,270,293,261,273,277,250,263,255,271,267,286,263,271,269,284,267,"--",240,261,273,272,292,"--",281,270,263,249,272,272,258,272,263,274,256,282,273,277,274,332,276,295,280,265,256,266,277,271,304,284,274,279,298,277,315,273,281
|
||||
Florida Intl,CUSA,"10-23",+6,275,>>,250,242,273,265,253,308,266,313,267,262,276,259,245,268,262,272,"--",333,270,279,296,312,"--",253,279,296,316,250,266,295,295,241,245,300,264,303,292,268,280,289,246,253,296,327,270,304,293,252,287,272,287,296,249,264,260,289
|
||||
Ball St,MAC,"14-17",+1,276,>>,274,279,277,272,270,259,275,302,254,272,278,268,263,275,271,269,"--",275,266,274,290,286,"--",270,293,288,274,270,268,286,287,250,270,294,274,269,260,258,258,280,282,269,283,282,288,285,294,283,282,267,283,310,267,281,276,288
|
||||
Old Dominion,SBC,"15-20",-1,277,>>,293,220,255,285,282,237,256,265,283,260,281,291,287,280,292,287,"--",307,248,287,263,284,"--",283,290,273,301,287,267,260,290,269,264,277,283,288,288,279,231,270,292,277,256,284,253,291,275,270,310,251,259,304,300,283,293,248
|
||||
North Dakota,SL,"12-21",,278,>>,265,270,289,271,266,292,279,296,268,282,270,253,252,285,242,278,"--",308,286,276,298,276,"--",251,303,286,296,252,281,300,310,280,271,276,258,297,283,290,210,294,255,264,297,293,285,290,280,241,280,273,281,282,246,318,275,295
|
||||
Columbia,Ivy,"12-15",,279,>>,283,314,287,275,280,272,274,291,278,279,271,277,278,286,298,273,"--",222,275,284,271,296,"--",299,278,276,225,297,307,275,291,264,285,270,307,246,241,270,214,264,276,294,263,269,268,287,300,309,277,295,286,336,273,309,272,311
|
||||
Navy,PL,"15-19",-7,280,>>,278,268,291,270,274,289,296,274,259,292,292,309,288,278,288,270,"--",313,302,275,282,294,"--",276,268,297,328,274,264,292,248,277,269,297,269,268,253,245,305,283,289,274,288,300,313,273,272,254,267,292,295,278,281,262,270,245
|
||||
Bowling Green,MAC,"14-18",-1,281,>>,294,251,274,292,289,268,283,297,274,284,283,286,284,274,274,285,"--",285,278,289,293,291,"--",286,299,280,295,294,274,281,289,286,276,295,290,279,284,295,215,284,267,292,286,291,296,284,277,277,293,275,284,258,285,276,289,260
|
||||
W Michigan,MAC,"12-20",+1,282,>>,292,267,266,298,290,280,272,269,288,274,282,285,285,281,278,300,"--",298,270,295,285,262,"--",282,294,293,299,291,276,280,298,284,279,291,287,296,305,306,348,281,281,293,279,283,274,286,274,266,300,286,278,267,292,272,279,262
|
||||
Boston Univ,PL,"16-16",+2,283,>>,303,288,283,294,304,288,284,266,280,288,295,313,303,283,316,288,"--",259,286,288,270,271,"--",308,280,275,278,305,284,267,280,281,290,272,306,248,276,273,203,275,312,300,258,266,308,278,281,300,294,294,285,264,312,293,290,271
|
||||
Tarleton St,WAC,"12-20",-2,284,>>,287,258,265,286,285,286,259,295,327,261,273,287,293,291,286,289,"--",273,257,285,275,289,"--",301,287,266,250,285,282,282,306,278,275,264,292,293,294,281,335,290,294,273,289,290,278,300,302,298,299,247,255,300,306,307,302,247
|
||||
LIU Brooklyn,NEC,"17-16",+2,285,>>,295,257,292,288,286,290,305,284,276,302,294,298,302,282,281,293,"--",243,297,271,280,293,"--",292,271,278,283,293,280,278,262,303,300,290,273,265,291,288,364,278,273,301,280,240,301,257,273,291,269,307,301,306,284,259,280,266
|
||||
Fresno St,MWC,"6-26",-2,286,>>,272,273,288,268,260,330,290,327,314,278,274,280,229,277,263,275,"--",315,283,290,330,295,"--",250,322,312,314,247,273,305,331,287,278,309,250,324,274,289,225,314,250,259,328,313,287,317,285,206,309,258,298,313,239,267,278,316
|
||||
St Peter's,MAAC,"12-16",+1,287,>>,284,318,297,277,298,306,295,277,279,296,280,302,300,284,294,264,"--",265,299,292,274,282,"--",298,275,279,264,296,283,291,257,292,283,296,299,261,262,275,331,286,297,287,284,303,292,279,301,303,272,283,291,308,295,256,286,254
|
||||
TX Southern,SWAC,"15-17",-2,288,>>,279,303,299,279,281,281,324,298,313,323,291,273,296,293,283,281,"--",232,318,277,315,330,"--",275,282,303,241,281,291,293,281,304,289,303,271,278,282,267,340,316,291,282,310,252,294,274,297,306,264,298,309,226,269,285,285,282
|
||||
VMI,SC,"15-19",+1,289,>>,290,280,290,300,287,243,289,289,306,285,289,281,307,297,310,310,"--",291,293,283,284,298,"--",294,264,283,266,304,292,290,261,299,293,271,297,311,325,301,343,287,317,297,291,280,245,283,289,307,274,293,270,292,304,288,298,277
|
||||
St Francis PA,NEC,"16-17",+15,290,>>,309,289,281,313,310,269,300,236,286,304,303,306,323,296,301,316,"--",236,290,281,264,269,"--",316,284,291,263,315,294,269,266,313,325,280,301,301,307,300,330,282,306,315,273,254,273,255,288,327,281,301,290,273,313,287,297,264
|
||||
Penn,Ivy,"8-19",,291,>>,300,286,298,287,293,323,291,285,281,287,287,311,298,309,304,282,"--",274,294,301,302,260,"--",295,286,301,272,295,277,296,283,273,281,306,293,302,271,256,219,295,288,281,295,309,279,310,321,310,301,290,308,297,303,296,304,286
|
||||
Houston Chr,SLC,"12-20",-3,292,>>,271,309,294,289,278,307,294,303,292,290,302,283,272,276,267,301,"--",292,299,294,308,268,"--",277,281,299,289,267,293,297,286,297,294,289,277,315,319,303,287,299,287,284,302,286,300,301,299,297,285,311,307,295,282,284,287,328
|
||||
Lafayette,PL,"13-20",+2,293,>>,289,316,311,281,291,312,309,311,252,301,306,321,292,292,295,280,"--",323,313,293,307,263,"--",290,272,308,326,290,290,312,252,293,282,316,284,295,272,266,240,297,271,286,303,314,328,303,290,273,276,314,314,301,287,273,283,312
|
||||
Army,PL,"16-15",,294,>>,324,337,279,321,324,277,280,241,295,289,310,317,321,287,313,312,"--",230,278,311,256,237,"--",330,289,268,240,329,301,245,276,302,314,267,332,266,301,310,245,277,334,323,251,245,286,281,284,328,313,300,280,321,327,320,307,296
|
||||
Louisiana,SBC,"12-21",+1,295,>>,320,276,263,310,313,275,267,261,300,280,298,301,301,301,303,305,"--",312,264,321,291,235,"--",317,315,282,309,316,289,273,314,289,297,283,324,304,298,304,236,291,311,306,275,301,263,315,278,280,334,270,271,272,323,319,320,268
|
||||
TN Martin,OVC,"14-19",+2,296,>>,288,277,313,295,292,276,315,286,249,314,308,282,306,302,287,295,"--",304,315,282,300,248,"--",288,288,307,315,299,297,313,270,308,291,311,291,294,293,308,336,296,266,305,305,295,306,276,304,289,262,302,311,271,296,300,291,301
|
||||
Rider,MAAC,"14-19",,297,>>,308,312,284,304,316,273,288,267,321,297,284,323,314,288,307,298,"--",293,286,305,268,309,"--",311,298,287,317,311,285,284,293,309,295,285,309,275,300,298,321,293,321,304,278,292,298,289,282,294,311,282,274,253,314,286,314,238
|
||||
Tennessee Tech,OVC,"15-17",+1,298,>>,299,302,296,312,303,297,301,288,298,300,299,294,305,294,289,317,"--",260,290,300,283,275,"--",304,295,292,277,306,298,287,284,311,306,286,304,284,326,307,338,292,284,311,287,267,299,288,295,293,295,304,294,245,297,332,292,302
|
||||
Delaware St,MEAC,"16-14",-7,299,>>,307,331,301,305,307,282,308,301,312,319,290,270,315,290,314,299,"--",213,306,296,295,352,"--",305,301,285,223,307,299,288,309,318,326,275,288,255,289,305,271,288,302,313,290,230,293,259,311,341,288,315,306,283,302,294,305,285
|
||||
Weber St,BSC,"12-22",,300,>>,285,266,314,280,300,313,302,315,282,293,296,275,283,299,290,268,"--",326,305,302,313,306,"--",293,308,314,327,288,309,319,305,298,292,299,286,305,250,291,345,302,283,285,322,311,318,294,306,296,291,271,293,287,293,271,301,309
|
||||
Pacific,WCC,"9-24",,301,>>,291,301,293,296,284,318,285,329,328,281,293,284,250,304,279,302,"--",310,283,297,327,317,"--",278,331,319,311,277,295,310,330,261,299,304,279,329,316,325,226,307,269,288,317,297,309,322,270,251,316,296,303,311,272,282,295,324
|
||||
Lehigh,PL,"11-19",,302,>>,280,307,325,283,283,324,316,304,277,311,312,326,295,310,300,283,"--",296,326,286,309,272,"--",285,291,315,313,284,296,318,264,279,286,320,281,307,270,263,290,309,290,279,313,304,330,305,317,308,273,324,321,338,289,289,281,330
|
||||
Southern Utah,WAC,"12-19",-10,303,>>,297,297,304,297,296,298,278,317,332,277,285,289,299,315,325,297,"--",278,278,299,301,304,"--",318,304,281,268,313,321,298,317,291,315,281,327,292,306,309,223,301,327,303,301,298,304,316,312,314,315,269,273,288,311,321,306,320
|
||||
E Washington,BSC,"10-22",,304,>>,282,285,316,293,295,326,297,331,307,295,297,276,275,303,280,292,"--",325,302,308,316,328,"--",289,324,313,307,283,315,326,332,296,298,302,294,309,308,321,243,313,278,290,323,321,315,313,323,276,304,280,299,299,270,327,284,318
|
||||
Southern Miss,SBC,"11-22",+2,305,>>,296,295,302,299,294,309,293,309,284,291,304,303,290,295,306,296,"--",327,294,318,304,285,"--",302,310,311,321,302,300,308,307,290,287,312,312,314,296,287,329,310,315,295,306,325,297,325,305,285,319,289,297,285,298,314,299,323
|
||||
Charleston So,BSo,"10-22",,306,>>,304,310,295,302,302,315,292,290,317,299,300,297,304,305,308,303,"--",317,289,313,292,311,"--",300,314,300,302,300,305,303,320,306,303,298,303,322,297,318,267,300,309,307,308,315,283,296,298,295,318,310,300,302,299,330,294,304
|
||||
Florida A&M,SWAC,"14-17",-4,307,>>,325,320,285,325,317,267,319,279,338,327,307,293,328,312,326,328,"--",209,313,291,306,316,"--",322,297,290,238,323,320,276,297,332,331,292,315,318,329,316,192,312,324,325,298,259,290,270,291,334,286,316,302,239,320,306,321,299
|
||||
Lindenwood,OVC,"16-17",+2,308,>>,328,283,286,331,326,285,299,271,305,305,311,307,327,308,320,329,"--",250,290,303,276,303,"--",325,317,284,273,325,316,285,313,323,318,282,318,310,332,333,356,285,314,332,281,268,295,272,286,317,307,312,288,268,331,324,313,280
|
||||
UMBC,AEC,"13-19",-1,309,>>,301,326,324,291,299,294,317,306,275,309,305,319,308,320,318,276,"--",305,322,298,318,266,"--",309,285,316,318,308,302,315,274,294,308,321,313,287,273,282,296,305,303,302,309,308,302,307,314,312,279,317,322,329,308,277,296,319
|
||||
Binghamton,AEC,"15-17",-1,310,>>,315,300,307,316,319,287,306,281,290,307,313,327,329,306,317,309,"--",280,307,309,288,300,"--",323,292,298,285,320,304,302,285,310,305,301,316,283,309,299,260,306,326,308,294,296,307,306,326,333,302,306,296,348,322,301,311,293
|
||||
Morehead St,OVC,"15-17",,311,>>,327,319,300,323,327,279,304,262,308,306,320,312,332,327,322,321,"--",262,294,316,278,255,"--",335,311,294,287,330,318,289,303,314,323,287,329,285,312,328,303,298,316,330,285,279,289,298,296,320,314,291,292,266,332,349,317,306
|
||||
Denver,SL,"11-21",,312,>>,302,284,309,317,309,316,298,323,301,303,288,288,297,300,272,325,"--",318,299,325,314,301,"--",284,328,309,310,282,308,321,321,315,304,305,295,320,334,317,272,323,286,299,321,319,305,327,313,284,328,297,305,314,290,326,300,315
|
||||
F Dickinson,NEC,"13-20",+2,313,>>,312,306,327,309,308,310,332,318,311,326,328,315,312,311,305,308,"--",309,328,304,317,335,"--",307,309,323,320,303,306,323,301,322,311,324,289,319,295,297,213,319,299,314,319,310,327,299,316,305,289,329,331,343,301,275,303,310
|
||||
Holy Cross,PL,"13-19",+2,314,>>,316,330,315,320,320,304,307,283,291,310,319,328,317,318,329,318,"--",306,312,315,297,302,"--",321,305,304,312,317,326,306,292,307,321,307,320,308,315,311,204,304,323,321,300,307,310,312,308,321,306,326,310,351,316,322,310,342
|
||||
Loyola MD,PL,"12-19",+2,315,>>,310,322,323,308,305,319,312,314,296,315,316,325,311,316,309,311,"--",311,322,312,311,299,"--",313,300,318,319,312,314,317,299,300,307,317,310,313,302,292,294,315,307,309,312,323,333,319,320,311,303,327,316,312,309,290,308,327
|
||||
Howard,MEAC,"12-20",-2,316,>>,313,344,320,314,312,320,331,308,285,337,301,304,313,298,302,307,"--",266,338,328,333,278,"--",310,307,310,280,314,319,311,311,325,327,315,322,300,314,294,190,333,293,318,311,320,338,326,325,316,324,339,338,293,305,337,316,329
|
||||
Stonehill,NEC,"15-17",+2,317,>>,323,315,308,326,322,284,311,312,309,318,325,316,325,317,328,331,"--",269,307,317,299,310,"--",333,306,305,297,328,329,299,304,321,329,308,330,299,330,319,228,308,318,331,299,289,317,302,307,331,312,334,312,324,328,328,312,326
|
||||
NC Central,MEAC,"14-19",,318,>>,318,335,326,307,323,291,330,319,310,330,317,295,324,307,321,291,"--",303,332,310,319,324,"--",314,313,320,324,321,322,314,308,329,324,314,314,306,268,313,306,303,319,322,316,299,323,282,309,330,297,322,324,289,318,325,319,298
|
||||
Air Force,MWC,"4-28",+3,319,>>,305,329,312,303,311,340,323,328,323,328,309,329,262,314,293,304,"--",340,309,319,344,280,"--",306,334,334,338,286,311,325,334,285,296,334,305,343,304,302,250,331,322,296,334,344,312,331,292,281,332,303,326,325,294,310,323,336
|
||||
Niagara,MAAC,"11-20",,320,>>,317,324,318,318,321,325,320,299,293,320,321,335,322,313,327,314,"--",319,325,320,310,288,"--",320,302,322,330,318,303,316,273,320,301,326,321,316,299,312,239,320,310,312,314,324,314,324,318,326,308,323,320,319,319,304,322,313
|
||||
E Illinois,OVC,"12-19",,321,>>,319,274,319,322,315,314,321,316,319,317,318,318,320,323,311,327,"--",286,320,306,312,326,"--",319,312,321,300,319,317,320,312,326,320,318,308,325,321,323,276,317,304,320,315,318,322,309,322,322,298,319,315,342,321,299,318,290
|
||||
Fairfield,MAAC,"12-20",-9,322,>>,335,333,305,329,333,305,303,273,303,312,322,343,337,326,336,323,"--",324,304,331,289,273,"--",337,321,302,322,334,312,301,324,317,322,313,333,298,303,324,279,311,330,327,292,326,291,320,315,323,331,305,304,320,335,305,327,276
|
||||
Long Beach St,BWC,"7-25",,323,>>,306,281,321,306,306,335,310,322,329,298,315,308,289,325,315,315,"--",334,309,322,332,319,"--",296,318,330,333,301,313,329,323,319,319,331,300,326,324,329,232,330,300,289,333,332,324,332,324,292,323,299,328,333,310,308,326,331
|
||||
IUPUI,HL,"10-22",,324,>>,311,298,329,319,314,328,328,325,302,321,323,299,310,319,312,322,"--",331,328,314,325,307,"--",303,319,329,323,310,324,334,319,312,309,328,311,334,335,334,198,322,301,316,332,328,316,323,332,302,305,340,330,303,317,297,315,325
|
||||
San Diego,WCC,"6-27",,325,>>,314,304,328,311,297,341,318,349,324,308,324,339,270,328,291,319,"--",345,320,330,345,313,"--",287,337,337,344,298,310,332,338,301,310,340,296,333,322,327,233,334,280,310,339,336,341,340,310,262,337,308,336,337,286,303,324,322
|
||||
Utah Tech,WAC,"7-26",+1,326,>>,298,296,331,301,301,342,329,343,315,313,314,314,291,321,299,306,"--",350,326,323,334,323,"--",297,327,335,342,292,325,341,329,305,302,338,302,338,318,296,363,335,313,291,340,338,335,333,330,299,321,309,329,340,288,313,309,338
|
||||
Alcorn St,SWAC,"11-21",-1,327,>>,329,328,306,328,325,321,338,305,347,346,326,300,336,324,324,335,"--",279,333,324,331,354,"--",327,316,317,275,324,327,307,316,337,334,319,323,321,328,315,253,338,328,326,318,312,321,318,319,329,320,331,325,255,324,333,330,297
|
||||
Mercyhurst,NEC,"15-16",,328,>>,338,332,310,340,342,301,322,300,339,331,333,330,346,322,333,342,"--",248,315,327,303,334,"--",345,325,306,271,339,330,304,327,347,344,310,335,290,345,332,299,321,337,341,307,305,319,308,328,346,327,335,313,335,346,312,336,294
|
||||
Grambling,SWAC,"12-22",+7,329,>>,326,327,338,315,318,322,351,330,320,349,332,305,318,332,323,313,"--",321,351,307,343,342,"--",315,330,342,334,322,333,333,315,340,328,341,317,330,313,314,354,336,320,328,335,316,340,314,303,301,292,332,341,279,315,316,325,308
|
||||
Coastal Car,SBC,"10-22",-1,330,>>,321,308,330,324,328,329,325,337,318,316,329,322,316,329,319,324,"--",335,322,332,328,320,"--",324,323,332,336,327,332,331,322,316,312,332,331,328,331,320,241,327,336,317,331,334,331,335,337,319,329,313,318,323,325,335,328,339
|
||||
Morgan St,MEAC,"14-18",+1,331,>>,334,345,333,332,331,303,334,335,330,336,330,320,340,331,338,330,"--",283,336,326,326,348,"--",326,320,324,305,336,328,327,325,342,336,322,325,317,327,322,304,324,329,333,325,306,332,321,331,344,322,341,332,290,333,323,332,303
|
||||
Stony Brook,CAA,"8-24",-2,332,>>,331,323,337,330,332,336,326,320,325,324,331,336,333,334,331,326,"--",344,328,334,324,327,"--",331,329,327,340,331,323,330,326,328,317,327,328,323,317,331,333,328,339,324,329,340,325,330,327,318,330,321,323,350,334,291,340,307
|
||||
Oral Roberts,SL,"7-23",-2,333,>>,322,317,343,327,329,345,336,352,326,335,327,310,309,330,297,320,"--",322,341,338,346,332,"--",312,340,336,306,309,331,343,351,330,316,335,319,332,320,326,217,344,308,319,343,341,347,342,342,332,335,320,342,339,307,336,334,343
|
||||
Southern Indiana,OVC,"10-20",-1,334,>>,332,325,342,335,336,331,335,340,304,332,338,333,334,335,335,334,"--",330,334,333,329,314,"--",336,326,333,332,337,341,339,318,344,330,333,337,331,333,336,199,325,331,338,330,345,342,329,336,325,325,337,334,307,336,339,331,349
|
||||
Wagner,NEC,"14-16",-1,335,>>,342,336,335,333,347,299,337,326,331,340,336,337,349,336,340,333,"--",251,334,329,320,356,"--",351,332,326,293,341,340,322,328,343,340,325,341,312,311,330,344,318,338,345,320,294,336,311,333,349,326,333,333,327,352,329,339,332
|
||||
Detroit,HL,"8-24",-1,336,>>,337,338,322,337,337,332,314,324,335,322,334,324,331,337,346,337,"--",342,317,337,321,325,"--",338,333,325,331,335,336,328,341,335,341,329,342,335,347,351,273,329,335,337,327,337,320,334,329,313,339,325,319,318,338,338,329,344
|
||||
Buffalo,MAC,"9-22",,337,>>,345,321,317,346,339,327,313,321,345,325,337,332,341,339,345,345,"--",329,309,342,323,333,"--",344,338,328,329,348,335,324,335,331,338,330,347,337,352,337,262,332,343,346,324,330,311,338,334,343,351,328,317,352,345,331,341,334
|
||||
W Illinois,OVC,"12-19",,338,>>,341,311,334,341,348,317,333,332,333,333,342,334,343,341,342,340,"--",316,331,335,322,343,"--",343,336,331,325,343,339,335,336,338,339,323,339,327,340,340,347,326,340,342,326,329,337,328,341,342,336,330,327,322,344,345,337,314
|
||||
NC A&T,CAA,"7-25",,339,>>,333,346,341,334,335,344,339,339,337,334,335,340,326,338,339,332,"--",349,341,336,338,351,"--",332,335,339,343,332,334,339,337,339,333,342,334,340,323,335,310,337,342,329,337,343,334,336,335,315,333,342,337,331,330,317,333,337
|
||||
W Carolina,SC,"8-22",,340,>>,346,349,339,342,338,334,341,334,348,338,339,331,350,344,341,341,"--",314,337,340,340,340,"--",342,339,338,303,347,338,336,333,333,332,336,346,336,341,338,349,340,332,339,338,331,303,339,344,352,342,318,340,330,348,341,342,317
|
||||
Cent Arkansas,ASUN,"9-24",,341,>>,339,339,336,345,346,333,342,342,341,341,340,338,338,340,351,346,"--",332,338,341,337,344,"--",339,342,341,335,340,343,338,344,348,350,339,343,341,350,345,265,339,350,343,336,333,326,337,340,340,341,343,339,316,339,343,343,333
|
||||
East Texas A&M,SLC,"5-26",,342,>>,330,341,340,336,330,352,340,344,"--",339,347,344,319,333,332,338,"--",347,343,339,341,338,"--",329,341,343,345,326,337,342,339,327,337,343,326,353,349,339,357,341,341,335,344,349,343,341,338,"--",338,348,347,341,326,298,335,346
|
||||
WI Green Bay,HL,"4-28",,343,>>,336,340,344,338,334,357,344,350,334,343,341,345,330,343,330,339,"--",363,344,346,350,321,"--",328,347,346,351,333,342,347,345,324,335,351,336,350,337,342,351,354,333,334,350,358,352,349,343,324,347,350,350,344,329,350,338,341
|
||||
CS Fullerton,BWC,"6-26",,344,>>,351,347,332,351,351,339,327,333,355,329,343,342,347,348,354,354,"--",338,318,354,336,346,"--",354,350,340,337,353,351,337,350,334,358,337,356,344,355,354,282,345,354,351,342,335,329,351,339,347,358,336,335,332,351,363,348,340
|
||||
CS Sacramento,BSC,"7-25",,345,>>,340,334,354,339,344,350,347,356,336,345,344,341,335,346,349,336,"--",353,348,343,353,357,"--",346,355,352,355,338,353,357,353,349,342,349,340,347,336,349,189,346,347,336,356,353,358,345,353,336,340,338,345,353,342,348,344,357
|
||||
West Georgia,ASUN,"6-25",,346,>>,343,313,348,347,349,349,349,345,342,348,345,347,344,342,343,348,"--",352,338,347,342,336,"--",341,351,347,349,344,348,348,348,346,348,348,345,346,343,352,346,347,345,348,349,347,346,344,347,337,345,352,344,328,341,352,345,347
|
||||
Stetson,ASUN,"8-24",+1,347,>>,352,350,347,352,352,343,348,353,358,344,348,346,351,349,352,352,"--",343,344,352,348,361,"--",348,344,348,339,351,345,344,346,352,352,345,351,342,354,350,193,351,344,350,348,339,344,352,350,338,354,344,348,326,350,355,353,335
|
||||
ULM,SBC,"7-25",-1,348,>>,349,352,346,344,345,346,343,354,343,342,350,349,342,345,344,343,"--",358,346,351,349,350,"--",350,349,350,353,349,344,349,355,336,346,347,350,348,338,347,308,343,349,344,346,354,350,350,346,335,353,345,343,334,347,334,349,345
|
||||
Bellarmine,ASUN,"5-26",+1,349,>>,344,348,359,343,341,358,358,360,344,355,349,354,339,353,337,344,"--",357,355,344,359,339,"--",334,354,359,358,342,349,359,349,341,345,358,338,354,348,344,200,356,325,340,359,357,361,356,351,339,343,351,359,345,337,353,351,356
|
||||
Le Moyne,NEC,"9-23",-1,350,>>,353,351,350,354,354,338,350,341,346,353,355,353,353,351,348,351,"--",341,352,348,335,329,"--",352,343,344,354,354,354,346,342,354,351,346,352,339,344,346,291,342,352,355,341,342,351,343,348,348,348,355,349,360,349,344,350,354
|
||||
SC Upstate,BSo,"6-26",,351,>>,348,353,349,349,340,348,352,346,349,350,346,348,348,350,334,347,"--",359,348,345,347,349,"--",340,353,351,347,346,346,350,358,351,347,352,344,351,339,355,360,348,348,349,354,348,339,346,349,345,344,346,351,361,340,342,347,351
|
||||
N Illinois,MAC,"6-25",,352,>>,350,343,352,348,343,351,353,351,340,347,351,352,352,352,347,350,"--",355,353,349,355,337,"--",349,345,356,356,350,347,353,343,345,343,355,349,355,342,348,312,349,346,347,353,322,349,347,354,350,346,347,354,357,354,340,354,355
|
||||
New Orleans,SLC,"4-27",,353,>>,347,342,345,353,350,354,346,336,356,351,353,351,345,347,350,353,"--",348,347,350,351,347,"--",347,352,349,350,345,352,345,347,350,356,344,348,356,353,356,309,352,351,353,347,346,345,348,345,351,350,354,352,347,343,354,346,362
|
||||
New Hampshire,AEC,"8-24",,354,>>,356,354,351,355,355,347,345,348,353,352,354,355,358,355,356,355,"--",351,348,358,339,355,"--",359,346,345,352,355,350,351,352,355,353,350,354,345,351,341,212,350,356,354,345,350,348,354,356,357,359,349,346,362,356,346,355,321
|
||||
NJIT,AEC,"6-25",+1,355,>>,354,356,357,350,353,356,354,357,350,354,352,359,354,354,353,349,"--",361,354,356,352,353,"--",353,348,353,361,352,355,358,340,353,349,356,353,352,346,343,359,353,353,352,351,360,360,355,355,354,352,353,353,359,355,347,352,348
|
||||
Alabama A&M,SWAC,"10-22",-1,356,>>,360,355,353,360,360,337,359,359,357,359,361,350,359,357,358,358,"--",336,359,353,358,341,"--",360,356,355,341,362,361,352,356,357,357,354,361,349,358,353,251,355,360,358,355,352,353,353,357,359,355,356,356,315,360,359,360,352
|
||||
Canisius,MAAC,"3-28",,357,>>,357,359,358,357,359,363,356,338,351,356,356,363,356,356,355,356,"--",364,355,362,357,308,"--",356,357,358,364,357,356,356,354,356,354,359,359,358,356,358,264,358,355,356,358,361,354,361,358,353,360,358,358,355,358,356,357,353
|
||||
Coppin St,MEAC,"6-24",,358,>>,362,361,355,362,361,353,355,355,361,358,357,360,362,358,362,362,"--",339,358,360,356,359,"--",361,361,354,346,361,357,354,362,360,362,353,360,360,362,362,270,357,361,361,352,351,359,357,360,360,362,359,355,346,362,358,359,350
|
||||
Chicago St,NEC,"4-28",,359,>>,361,357,356,361,362,360,357,347,359,357,360,361,361,361,361,361,"--",362,357,361,354,345,"--",362,360,357,362,360,360,355,357,359,359,357,362,359,359,360,268,359,359,362,357,356,355,359,352,356,361,360,357,356,361,361,358,358
|
||||
MD E Shore,MEAC,"6-25",,360,>>,358,358,361,358,358,355,360,358,354,361,358,358,360,360,359,360,"--",337,361,355,360,358,"--",355,358,360,348,359,359,360,360,362,361,360,355,362,361,359,297,360,358,359,360,359,357,358,361,361,349,362,361,364,359,357,361,359
|
||||
Citadel,SC,"5-25",,361,>>,355,360,363,356,356,359,361,362,352,360,359,356,355,359,360,357,"--",356,360,357,362,360,"--",358,359,363,357,358,358,362,359,358,355,362,357,357,360,357,341,361,362,357,"--",364,356,362,363,358,357,357,362,358,357,351,362,360
|
||||
Prairie View,SWAC,"5-27",,362,>>,359,362,360,359,357,362,362,361,360,362,362,357,357,362,357,359,"--",360,362,359,361,362,"--",357,362,361,359,356,362,361,361,361,360,361,358,361,357,361,319,362,357,360,361,362,362,360,359,355,356,361,360,349,353,362,356,363
|
||||
Ark Pine Bluff,SWAC,"6-25",,363,>>,363,363,362,363,363,361,363,364,362,363,363,362,363,363,363,363,"--",346,363,363,363,364,"--",363,363,362,360,363,363,363,363,363,363,363,363,363,363,363,255,363,363,363,362,355,363,363,362,362,363,363,363,354,363,360,363,361
|
||||
MS Valley St,SWAC,"3-28",,364,>>,364,364,364,364,364,364,364,363,363,364,364,364,364,364,364,364,"--",354,364,364,364,363,"--",364,364,364,363,364,364,364,364,364,364,364,364,364,364,364,301,364,364,364,"--",363,364,364,364,363,364,364,364,363,364,364,364,364
|
||||
|
183
2025/src/main.rs
Normal file
183
2025/src/main.rs
Normal file
@@ -0,0 +1,183 @@
|
||||
use color_eyre::Result;
|
||||
use crossterm::event::{self, Event, KeyCode, KeyEvent, KeyEventKind, KeyModifiers};
|
||||
use ratatui::{
|
||||
DefaultTerminal, Frame,
|
||||
prelude::*,
|
||||
style::Stylize,
|
||||
text::Line,
|
||||
widgets::{Block, Paragraph, Widget},
|
||||
};
|
||||
use std::fs;
|
||||
|
||||
fn main() -> Result<()> {
|
||||
color_eyre::install()?;
|
||||
let terminal = ratatui::init();
|
||||
let result = BracketApp::new().run(terminal);
|
||||
ratatui::restore();
|
||||
result
|
||||
}
|
||||
|
||||
#[derive(Debug, Default, PartialEq)]
|
||||
enum Input {
|
||||
#[default]
|
||||
Team1,
|
||||
Team2,
|
||||
}
|
||||
|
||||
/// The main application which holds the state and logic of the application.
|
||||
#[derive(Debug, Default)]
|
||||
pub struct BracketApp {
|
||||
/// Is the application running?
|
||||
running: bool,
|
||||
selected_input: Input,
|
||||
team1: String,
|
||||
team2: String,
|
||||
differential: f32,
|
||||
winner: String,
|
||||
}
|
||||
|
||||
impl BracketApp {
|
||||
/// Construct a new instance of [`BracketApp`].
|
||||
pub fn new() -> Self {
|
||||
Self::default()
|
||||
}
|
||||
|
||||
/// Run the application's main loop.
|
||||
pub fn run(mut self, mut terminal: DefaultTerminal) -> Result<()> {
|
||||
self.running = true;
|
||||
while self.running {
|
||||
terminal.draw(|frame| self.draw(frame))?;
|
||||
self.handle_crossterm_events()?;
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
|
||||
/// Draw the application to the terminal.
|
||||
fn draw(&self, frame: &mut Frame) {
|
||||
frame.render_widget(self, frame.area());
|
||||
}
|
||||
|
||||
/// Reads the crossterm events and updates the state of [`BracketApp`].
|
||||
///
|
||||
/// If your application needs to perform work in between handling events, you can use the
|
||||
/// [`event::poll`] function to check if there are any events available with a timeout.
|
||||
fn handle_crossterm_events(&mut self) -> Result<()> {
|
||||
match event::read()? {
|
||||
// it's important to check KeyEventKind::Press to avoid handling key release events
|
||||
Event::Key(key) if key.kind == KeyEventKind::Press => self.on_key_event(key),
|
||||
Event::Mouse(_) => {}
|
||||
Event::Resize(_, _) => {}
|
||||
_ => {}
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
|
||||
/// Handles the key events and updates the state of [`BracketApp`].
|
||||
fn on_key_event(&mut self, key: KeyEvent) {
|
||||
match (key.modifiers, key.code) {
|
||||
(_, KeyCode::Esc | KeyCode::Char('q'))
|
||||
| (KeyModifiers::CONTROL, KeyCode::Char('c') | KeyCode::Char('C')) => self.quit(),
|
||||
(_, KeyCode::Tab) => {
|
||||
self.selected_input = match self.selected_input {
|
||||
Input::Team1 => Input::Team2,
|
||||
Input::Team2 => Input::Team1,
|
||||
}
|
||||
}
|
||||
(_, KeyCode::Enter) => {
|
||||
self.calculate_differential();
|
||||
}
|
||||
(_, KeyCode::Backspace) => match self.selected_input {
|
||||
Input::Team1 => {
|
||||
self.team1.pop();
|
||||
}
|
||||
Input::Team2 => {
|
||||
self.team2.pop();
|
||||
}
|
||||
},
|
||||
(_, KeyCode::Char(c)) => match self.selected_input {
|
||||
Input::Team1 => self.team1.push(c),
|
||||
Input::Team2 => self.team2.push(c),
|
||||
},
|
||||
// Add other key handlers here.
|
||||
_ => {}
|
||||
}
|
||||
}
|
||||
|
||||
fn calculate_differential(&mut self) {
|
||||
// Calculate the differential based on the teams
|
||||
let rankings_file =
|
||||
fs::read_to_string("data/kenpom.csv").expect("Should have been able to read the file");
|
||||
let team1_line: Vec<&str> = rankings_file
|
||||
.lines()
|
||||
.find(|line| line.contains(&self.team1))
|
||||
.unwrap()
|
||||
.split(',')
|
||||
.collect();
|
||||
let team2_line: Vec<&str> = rankings_file
|
||||
.lines()
|
||||
.find(|line| line.contains(&self.team2))
|
||||
.unwrap()
|
||||
.split(',')
|
||||
.collect();
|
||||
let team1_power: f32 = team1_line[4].parse().unwrap();
|
||||
let team2_power: f32 = team2_line[4].parse().unwrap();
|
||||
if team1_power > team2_power {
|
||||
self.winner = self.team1.clone();
|
||||
} else {
|
||||
self.winner = self.team2.clone();
|
||||
};
|
||||
self.differential = (team1_power - team2_power).abs();
|
||||
}
|
||||
|
||||
/// Set running to false to quit the application.
|
||||
fn quit(&mut self) {
|
||||
self.running = false;
|
||||
}
|
||||
}
|
||||
|
||||
impl Widget for &BracketApp {
|
||||
fn render(self, area: Rect, buf: &mut Buffer) {
|
||||
let title = Line::from("Simple Bracket Chooser")
|
||||
.bold()
|
||||
.blue()
|
||||
.centered();
|
||||
let text = "Choose two teams \n\
|
||||
Press `Esc`, `Ctrl-C` or `q` to stop running.";
|
||||
Paragraph::new(text)
|
||||
.block(Block::bordered().title(title))
|
||||
.centered()
|
||||
.render(Rect::new(0, 0, area.width, 3), buf);
|
||||
let selected = Style::new().blue().on_light_cyan().bold().italic();
|
||||
let pane1 = Rect::new(0, 3, area.width / 2, 5);
|
||||
let pane2 = Rect::new(area.width / 2, 3, area.width / 2, 5);
|
||||
let input1 = Rect::new(0, 4, area.width / 2, 5);
|
||||
let input2 = Rect::new(area.width / 2, 4, area.width, 5);
|
||||
if self.selected_input == Input::Team1 {
|
||||
Block::bordered()
|
||||
.title("Team 1")
|
||||
.style(selected)
|
||||
.render(pane1, buf);
|
||||
Block::bordered().title("Team 2").render(pane2, buf);
|
||||
} else {
|
||||
Block::bordered().title("Team 1").render(pane1, buf);
|
||||
Block::bordered()
|
||||
.title("Team 2")
|
||||
.style(selected)
|
||||
.render(pane2, buf);
|
||||
}
|
||||
Line::from(self.team1.clone())
|
||||
.centered()
|
||||
.render(input1, buf);
|
||||
Line::from(self.team2.clone())
|
||||
.centered()
|
||||
.render(input2, buf);
|
||||
let results = format!(
|
||||
"{} should win by {:.1} points",
|
||||
self.winner, self.differential,
|
||||
);
|
||||
Paragraph::new(results)
|
||||
.block(Block::bordered())
|
||||
.centered()
|
||||
.render(Rect::new(0, 8, area.width, 10), buf);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user