spacemanidol commited on
Commit
d3f64f5
1 Parent(s): a792b90
.gitattributes DELETED
@@ -1,56 +0,0 @@
1
- *.7z filter=lfs diff=lfs merge=lfs -text
2
- *.arrow filter=lfs diff=lfs merge=lfs -text
3
- *.bin filter=lfs diff=lfs merge=lfs -text
4
- *.bz2 filter=lfs diff=lfs merge=lfs -text
5
- *.ckpt filter=lfs diff=lfs merge=lfs -text
6
- *.ftz filter=lfs diff=lfs merge=lfs -text
7
- *.gz filter=lfs diff=lfs merge=lfs -text
8
- *.h5 filter=lfs diff=lfs merge=lfs -text
9
- *.joblib filter=lfs diff=lfs merge=lfs -text
10
- *.lfs.* filter=lfs diff=lfs merge=lfs -text
11
- *.lz4 filter=lfs diff=lfs merge=lfs -text
12
- *.mlmodel filter=lfs diff=lfs merge=lfs -text
13
- *.model filter=lfs diff=lfs merge=lfs -text
14
- *.msgpack filter=lfs diff=lfs merge=lfs -text
15
- *.npy filter=lfs diff=lfs merge=lfs -text
16
- *.npz filter=lfs diff=lfs merge=lfs -text
17
- *.onnx filter=lfs diff=lfs merge=lfs -text
18
- *.ot filter=lfs diff=lfs merge=lfs -text
19
- *.parquet filter=lfs diff=lfs merge=lfs -text
20
- *.pb filter=lfs diff=lfs merge=lfs -text
21
- *.pickle filter=lfs diff=lfs merge=lfs -text
22
- *.pkl filter=lfs diff=lfs merge=lfs -text
23
- *.pt filter=lfs diff=lfs merge=lfs -text
24
- *.pth filter=lfs diff=lfs merge=lfs -text
25
- *.rar filter=lfs diff=lfs merge=lfs -text
26
- *.safetensors filter=lfs diff=lfs merge=lfs -text
27
- saved_model/**/* filter=lfs diff=lfs merge=lfs -text
28
- *.tar.* filter=lfs diff=lfs merge=lfs -text
29
- *.tar filter=lfs diff=lfs merge=lfs -text
30
- *.tflite filter=lfs diff=lfs merge=lfs -text
31
- *.tgz filter=lfs diff=lfs merge=lfs -text
32
- *.wasm filter=lfs diff=lfs merge=lfs -text
33
- *.xz filter=lfs diff=lfs merge=lfs -text
34
- *.zip filter=lfs diff=lfs merge=lfs -text
35
- *.zst filter=lfs diff=lfs merge=lfs -text
36
- *tfevents* filter=lfs diff=lfs merge=lfs -text
37
- # Audio files - uncompressed
38
- *.pcm filter=lfs diff=lfs merge=lfs -text
39
- *.sam filter=lfs diff=lfs merge=lfs -text
40
- *.raw filter=lfs diff=lfs merge=lfs -text
41
- # Audio files - compressed
42
- *.aac filter=lfs diff=lfs merge=lfs -text
43
- *.flac filter=lfs diff=lfs merge=lfs -text
44
- *.mp3 filter=lfs diff=lfs merge=lfs -text
45
- *.ogg filter=lfs diff=lfs merge=lfs -text
46
- *.wav filter=lfs diff=lfs merge=lfs -text
47
- # Image files - uncompressed
48
- *.bmp filter=lfs diff=lfs merge=lfs -text
49
- *.gif filter=lfs diff=lfs merge=lfs -text
50
- *.png filter=lfs diff=lfs merge=lfs -text
51
- *.tiff filter=lfs diff=lfs merge=lfs -text
52
- # Image files - compressed
53
- *.jpg filter=lfs diff=lfs merge=lfs -text
54
- *.jpeg filter=lfs diff=lfs merge=lfs -text
55
- *.webp filter=lfs diff=lfs merge=lfs -text
56
- qrels/qrels.dl22-doc-msmarco-v2.1.txt filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
README.md DELETED
@@ -1,50 +0,0 @@
1
- ---
2
- license: apache-2.0
3
- task_categories:
4
- - question-answering
5
- language:
6
- - en
7
- tags:
8
- - TREC-RAG
9
- - RAG
10
- - MSMARCO
11
- - MSMARCOV2.1
12
- - Snowflake
13
- - arctic
14
- - arctic-embed
15
- pretty_name: TREC-RAG-Embedding-Baseline
16
- size_categories:
17
- - 100M<n<1B
18
- configs:
19
- - config_name: corpus
20
- data_files:
21
- - split: train
22
- path: corpus/*
23
- ---
24
-
25
- # Snowflake Arctic Embed L Embeddings for MSMARCO V2.1 for TREC-RAG
26
-
27
- This dataset contains the embeddings for the MSMARCO-V2.1 dataset which is used as the corpora for [TREC RAG](https://trec-rag.github.io/)
28
- All embeddings are created using [Snowflake's Arctic Embed L](https://huggingface.co/Snowflake/snowflake-arctic-embed-l) and are intended to serve as a simple baseline for dense retrieval-based methods.
29
-
30
- ## Loading the dataset
31
-
32
- ### Loading the document embeddings
33
-
34
- You can either load the dataset like this:
35
- ```python
36
- from datasets import load_dataset
37
- docs = load_dataset("Snowflake/msmarco-v2.1-snowflake-arctic-embed-l", split="train")
38
- ```
39
-
40
- Or you can also stream it without downloading it before:
41
- ```python
42
- from datasets import load_dataset
43
- docs = load_dataset("Snowflake/msmarco-v2.1-snowflake-arctic-embed-l", split="train", streaming=True)
44
- for doc in docs:
45
- doc_id = doc['_id']
46
- title = doc['title']
47
- header = doc['header']
48
- text = doc['text']
49
- emb = doc['emb']
50
- ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
corpus/04.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:dfa7f550f57417272f118fd1c1570d35578fe5d18db1b2baa366fa2811342e7a
3
- size 8302746682
 
 
 
 
corpus/05.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:4ea0f5a951097715cc6a5522304e063a15bfdd6cfcedb6981a5e5235d6b1ddab
3
- size 8284564948
 
 
 
 
corpus/06.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:cf793177e335f54bafb02859ae9ac26814cc59fe80d096fa296ce4739f088f3c
3
- size 7696867388
 
 
 
 
corpus/07.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:ec38911ccd4f867802ca3371a93b73975e77d933984f64390e241b2b2353342a
3
- size 7582892451
 
 
 
 
corpus/08.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:91defc0c50a06f5e4078f4397feea53109b7687a70f7d742d5fa9b791b7ca832
3
- size 7822859514
 
 
 
 
corpus/09.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:b437e1cc05b39e7ae5f90ece53d76a4c17e215ad640872f37639f1e3cb971398
3
- size 8157958998
 
 
 
 
corpus/10.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:80fcc033dfc6a2dc9c47500e616c9d6b0ef88c4d25bd98d7998ce75477302006
3
- size 6931589333
 
 
 
 
corpus/{02.parquet → 11.parquet} RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:ea430ce4ef267ca2395b052557c89ca3181805cb6cad95dbc601aefa4b66234d
3
- size 8454932368
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4ae40d25a1b9825bd34ca51df43f6f71a132e414100b595cba4fc3b34ff6757c
3
+ size 8009361704
corpus/{03.parquet → 12.parquet} RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:0491b38f30318fbf2f70a889f81d766f3e1f6b4b6bf39347f690a43c182f3ff0
3
- size 8800189498
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f678fcddfc5f99cabc8e353cb5e65b456f44907aa9e5a020a7adee152c67fbc5
3
+ size 9635447374
corpus/{00.parquet → 13.parquet} RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:fe0c608c34f3281cf10c47b0303e81e2d01a244d43c1dfe9d020427a4229093a
3
- size 7852386025
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:08b22280ca4a30d50b150c33ed023e0af6cfb7bfb6ee7875df77e268f419ee30
3
+ size 8792476517
corpus/{01.parquet → 14.parquet} RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:7b0363b218ebdfd5a66d3c5cb9f7fdd33d3827d249c585834828dfc99c7a996f
3
- size 8878611941
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7709bcb96a929d87529bda0d2a29875458dea51f5971a01b23616443a60d6247
3
+ size 8650476837
corpus/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1c4e5ebb9ca3d75dea39986d76c85d973740336f55aace63b328e5abbafff4e3
3
+ size 9015390290
qrels/qrels.dl21-doc-msmarco-v2.1.txt DELETED
The diff for this file is too large to render. See raw diff
 
qrels/qrels.dl22-doc-msmarco-v2.1.txt DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:92e78ff1e13b0660f2e0d28e18909fa512fdc00484c19f9148da4702a476024b
3
- size 14786970
 
 
 
 
qrels/qrels.dl23-doc-msmarco-v2.1.txt DELETED
The diff for this file is too large to render. See raw diff
 
qrels/qrels.msmarco-v2.1-doc.dev.txt DELETED
The diff for this file is too large to render. See raw diff
 
qrels/qrels.msmarco-v2.1-doc.dev2.txt DELETED
The diff for this file is too large to render. See raw diff
 
qrels/qrels.rag24.raggy-dev.txt DELETED
The diff for this file is too large to render. See raw diff
 
queries/topics.dl21.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:2b3384b9bd7e66efc10288ae8cd29d55f562426bde87e31a7623cf60fa5f9ee4
3
- size 2598511
 
 
 
 
queries/topics.dl22.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:02fbbf81d77719b025588f0d943fb3c44205756606c114929888f06aa65cd27f
3
- size 2691100
 
 
 
 
queries/topics.dl23.txt DELETED
@@ -1,700 +0,0 @@
1
- 2000138 How does the process of digestion and metabolism of carbohydrates start
2
- 2000438 apatite definition
3
- 2000727 calculate salary from basic pay
4
- 2000882 cerebellar disease definition
5
- 2001010 cost comparison of funerals in australia
6
- 2001187 definition of nucleus biology
7
- 2001459 dog age by teeth
8
- 2001575 fda definition of verification
9
- 2001644 function of langerhans cells
10
- 2001686 good food and bad food for high cholesterol
11
- 2001897 how did women gain the right to vote
12
- 2001988 how do i log into my dlink router
13
- 2002075 how do you clean smoke off walls
14
- 2002168 how does a bounty hunter make money
15
- 2002297 how is diethylene glycol synthesized
16
- 2002497 how many hours are the average college classes
17
- 2002862 how to become a dog physical therapist
18
- 2002935 how to calculate your canada pension plan
19
- 2002988 how to check hard disc memory on windows 10
20
- 2003061 how to cook a beef round tip roast
21
- 2003141 how to cook breaded pork schnitzel in oven
22
- 2003222 how to copy a word 2007 document to disk
23
- 2003246 how to create create a web calendar
24
- 2003282 how to deduct 401k from taxes
25
- 2003379 how to emulsion a house
26
- 2003521 how to get rid of bad breath caused by garlic
27
- 2003746 how to make bulb switch using a batteries
28
- 2003787 how to make linkedin private
29
- 2003834 how to make tea in turkish tea pots
30
- 2003836 how to make the best pork crackling
31
- 2003855 how to map a drive as a folder in windows server 2003
32
- 2003903 how to pay ntuc membership fee online
33
- 2003944 how to print double sided on word
34
- 2004023 how to remove icloud acc without a password
35
- 2004031 how to remove password from winrar
36
- 2004042 how to remove the top on a delco car battery
37
- 2004094 how to screen print windows 7
38
- 2004116 how to set 0 in top and bottom margins in ie page setup
39
- 2004240 how to transfer music from cd computer to samsung s6 edge
40
- 2004282 how to unlock the word document
41
- 2004322 how to use the full picture as the wallpaper for iphone
42
- 2004369 how too make homade buttermilk
43
- 2004441 importance of redox reactions
44
- 2004729 meaning of anaesthesiologist
45
- 2004751 meaning of the name theodore
46
- 2004810 mushrooms good for cholesterol
47
- 2004870 number of graves at normandy
48
- 2004885 official parkinson's disease definition
49
- 2004980 pokemon x how to delete profile
50
- 2005261 similarity principle psychology definition
51
- 2005468 timing belt purpose
52
- 2005699 what are islet cells made of
53
- 2005952 what causes eye blackouts
54
- 2006028 what did colonial women wear
55
- 2006031 what did nato mean by mutual defense
56
- 2006402 what does supra mean
57
- 2006426 what does the erector spinae do
58
- 2006623 what is 1 century
59
- 2006834 what is a frizzle
60
- 2006920 what is a molecule resonance structures
61
- 2006929 what is a narwhal tusk made of
62
- 2007179 what is an executive agency
63
- 2007217 what is animal rennet
64
- 2007441 what is considered poulty
65
- 2007553 what is elastic deformation in science
66
- 2007582 what is ethnocentric orientation
67
- 2007797 what is iress trader
68
- 2007798 what is irish kipper
69
- 2007816 what is karma koin
70
- 2007894 what is malleable structure?
71
- 2007993 what is navex15 sys
72
- 2008167 what is pythium disease
73
- 2008392 what is the coastline of caribbean
74
- 2008416 what is the difference between an embossing notary seal and stamp
75
- 2008445 what is the difference in a rxt and a gtx
76
- 2008558 what is the normal range of resting heart rate
77
- 2008860 what nutrition minerals vitamins are in Aloe vera juice
78
- 2008993 what to put on a bee sting
79
- 2009425 which part of the adaptive immune response involves b cells
80
- 2009961 what is secom
81
- 2010057 what is a kester bar solder
82
- 2010280 what does ftx stand for army
83
- 2010330 what is a certified check
84
- 2011589 what type of stretcher is used for rapid immobilization of spine and neck injuries?
85
- 2011681 what is a mrcp?
86
- 2013983 what is water resources management
87
- 2014492 how to find interquartile range on a box plot
88
- 2014738 how to cut in walls
89
- 2015457 avery name meaning
90
- 2015484 how to take care of boil on forehead
91
- 2016898 how to delete a row in vba
92
- 2017489 what is ileus
93
- 2017700 how do you calculate cspi
94
- 2024410 corn mash
95
- 2024674 what procedures standardize watch turnover between oncoming and off-going personnel and are essential to establishing the
96
- 2025158 type of dr that does colonoscopy
97
- 2025253 what is the best vitamin b to take
98
- 2025525 refractive target distance
99
- 2025602 which of the following factors weaken political campaigns' effect on voters
100
- 2025694 what is the largest number of electrons that can be in an electron shell?
101
- 2026107 what causes people act for civil rights
102
- 2026111 effects of nutrition on immune system
103
- 2026305 the coffee called flat white
104
- 2026883 what did clinton say when he was being investigated?
105
- 2026975 is sea salt good for you
106
- 2027873 who is the florida school shooter
107
- 2028098 what does dried nori have in it
108
- 2028186 why do pilots purposely fly low
109
- 2028229 healthy grief process
110
- 2028563 can you video chat on android
111
- 2028626 how can the executive branch check the legislative branch?
112
- 2028684 calories in corte de rhone
113
- 2028882 what time in tel aviv
114
- 2029021 what is a seminal moment?
115
- 2029777 what time in omaha ne
116
- 2029986 wes shum actor
117
- 2030543 definition claim
118
- 2031019 is streptococcus mitis gram negative or positive
119
- 2031060 do spayed female dogs have periods
120
- 2031111 is terraria xbox one
121
- 2031444 baltimore city school for the arts
122
- 2032271 prototypes for the wall cost
123
- 2032396 what helps a strained muscle
124
- 2032626 ptca percutaneous transluminal angioplasty
125
- 2032645 where are spo
126
- 2032971 what themes are in action movies
127
- 2033003 what is better jump drive or disc
128
- 2033228 koit number
129
- 2033904 who clears for raymond james
130
- 2034050 meandered definition
131
- 2034111 kroil definition
132
- 2034735 living in berlin
133
- 2034768 who are chiquitas major competitors
134
- 2034771 asier in persian meaning
135
- 2035057 is gloria steinem
136
- 2035100 why do use adjectives
137
- 2035601 what is true about millimeters and kilometers
138
- 2035895 cost of us visa uscis
139
- 2036557 when did blue sour patch come out
140
- 2036761 iowa counties by population
141
- 2037162 iqe share price forecast
142
- 2038208 vikus main role in gregor
143
- 2038875 what is an approved shooting target
144
- 2039289 why is woodwind and brasswind closed
145
- 2039665 irene forte
146
- 2039786 define retrogression
147
- 2039985 walt disney world swan resort in orlando
148
- 2040064 how much money has a wrinkle in time movie made
149
- 2040204 erik barsness percussion
150
- 2040234 why is abby lee in jail?
151
- 2040438 ugi medical meaning
152
- 2040518 the rogue warriors
153
- 2040693 donald degraffenried
154
- 2040725 what are the healthiest
155
- 2040872 what are the patient care procedures
156
- 2041554 what is a coonan
157
- 2041644 war chief doctor who the war games
158
- 2041662 what factors determines education
159
- 2042073 the hormone __________ is produced in ________, which some scientists speculate may lead to differences in male and female brain structure, and later variations in gender-related behavior(s).
160
- 2042373 the standard charlottesville
161
- 2043464 what is the best brand electric range
162
- 2043625 the top reverb pedals
163
- 2043922 is eucalyptus oil good for allergies
164
- 2044225 when is prices corner sears closing
165
- 2044323 what does a bachelor of science health education
166
- 2044677 when do we use normal distribution
167
- 2044698 house of representatives of states minimum age
168
- 2045113 currently disneyland prices
169
- 2045491 how old is faith abubey
170
- 2045514 why do white cell counts get low in cancer patients
171
- 2045828 tope definition
172
- 2045938 jett manufacturing
173
- 2046027 what is the best credit card for seniors
174
- 2046160 code of ethics for teachers the state
175
- 2046234 what states are common law marriage
176
- 2046312 how fetus develops week by week
177
- 2047836 why do some fighter jets have two pilots
178
- 2047878 what was the lahaina banyan court park
179
- 2047929 what is the name of dehumidifier pumps
180
- 2047935 how do i know if my child is dehydrated
181
- 2048301 what are the advantages of using value-added networks (vans)?
182
- 2048377 how do doctors repair hernias
183
- 2049378 directv royal oak mi
184
- 2049665 water drinking challenge skin improvement
185
- 2049718 shuffled meaning
186
- 2050707 the tampa state bank marion ks
187
- 2050895 what day is the draft on
188
- 2051097 process control number
189
- 2051151 what is the fastest tp cable
190
- 2051304 what astrological.sign is someone in september
191
- 2051782 us attorney office charleston michael stuart
192
- 2052583 civilized community ]definition
193
- 2052603 bison energy
194
- 2053242 what does not rated mean in movie ratings
195
- 2054657 what happens when you have broken, cracked skin on left foot
196
- 2054963 most penetrating oil for skin
197
- 2055067 can archaebacteria cause diseases
198
- 2055273 horizon irrigation san rafael phone number
199
- 2055576 are employer hsa contributions taxable in states
200
- 2055737 sandos playacar in playa del carmen
201
- 3000503 what pills are safe for abortions
202
- 3001342 what is pelvic ultrasound used for
203
- 3001525 which structure grows smallest when the body overexpresses its production of estrogen?
204
- 3001606 most common technology acronyms
205
- 3001714 who is russia's biggest media company
206
- 3001800 who makes new mexican beans
207
- 3002215 winningest athletes
208
- 3002409 where can you find spongy ductal carcinoma?
209
- 3002842 what kind of disc is impingement
210
- 3003021 who are the three arthur steins
211
- 3003282 domestic violence laws in wisconsin
212
- 3003487 what are enzymes
213
- 3004033 why are the feathers of birds bright
214
- 3004729 caseless match definition in c#
215
- 3005001 how to cook thin sliced home fries
216
- 3005818 what size silicone for shower
217
- 3006206 what is the best treatment for bruxism
218
- 3006506 what program is wine on
219
- 3006834 who played dündar in tetmoy
220
- 3007786 which species of cockroach are endangered
221
- 3007808 what is covid vaccine used for
222
- 3007911 what's the holidays in may?
223
- 3008105 who receives recorded video from collaborative
224
- 3009314 what was tut's first name?
225
- 3009702 what is the haircut that makes you look cute
226
- 3010181 how to tell the percent of 9/10 to 10/11?
227
- 3010358 angel number 616 spiritual meaning
228
- 3010429 how many hp in staley wet/dry vacuum
229
- 3010623 what navigation system does ireland use
230
- 3011635 what two metals are not alkali metals?
231
- 3011702 how many extra foot bones are there
232
- 3012016 how much does the golf tdi cost
233
- 3012158 lca number nc dhhs
234
- 3012409 what happens to the lobster during molting
235
- 3012933 words that describe mountaintops
236
- 3013204 who is the middle east singer?
237
- 3013300 what is a building permit in colorado
238
- 3013802 hotels in kenner la
239
- 3014524 how to find the conductor
240
- 3015007 how old was lindley sanders
241
- 3015502 who played superman in the first justice league movie?
242
- 3015938 what is the game that the game players start
243
- 3016803 nucor is a wholly owned subsidiary of
244
- 3017118 what language does swahili speak
245
- 3017201 what is chickadee spirit animal
246
- 3017594 how long should endodontics crowns last
247
- 3017818 why did adobe photoshop keep crashing
248
- 3017938 why should i use my business loan
249
- 3018350 what was the first coin dapp to have a cryptocurrency
250
- 3018676 define most probable presence
251
- 3019178 how to make a slope on a line
252
- 3019843 can you get free spanish movies from cnet
253
- 3020233 what are some resources people use to be killing machines
254
- 3020401 which spikes to buy
255
- 3020750 what kind of fish is jack crevalle
256
- 3021100 what is the worth of a house
257
- 3021405 what causes blood in urine in husband
258
- 3021588 why does fraud occur in online transactions?
259
- 3021830 what does frq stand for in the workplace
260
- 3022345 how many types of team are there
261
- 3022442 why does my router not work
262
- 3022827 what kind of feeds for a leopard gecko
263
- 3024107 what kind of tree do walnut trees grow on
264
- 3024731 who is responsible for protecting a government
265
- 3024910 how to make curtains that open
266
- 3025148 which colleges offer taxation degree
267
- 3025223 how many colors are in ticart
268
- 3025610 how do you get financial aid
269
- 3026202 what is nas office license
270
- 3027001 how fast does a scooter go
271
- 3027317 what is kinau
272
- 3027897 how do you spell with asl
273
- 3028428 who should not use an iud in adolescent
274
- 3028530 what probe traces est ph
275
- 3028911 which substance produces the emission spectrum
276
- 3029069 where is a fibroids location
277
- 3029110 what makes glitter lipstick
278
- 3029629 does natural mineral filtration work
279
- 3029858 how to get plural of us
280
- 3030012 what diaper insert to use for overnight
281
- 3030502 what antibiotics are commonly prescribed for a uti
282
- 3030812 who owns drs train fleet
283
- 3030926 what types of presentations are used by presentations
284
- 3031531 hotels in cimes,ca
285
- 3031910 what is myrrh essential
286
- 3032025 when did janelle pierzina and jay desanto have a baby?
287
- 3032721 what is the legal driving limit in a residential area
288
- 3032932 who does edmund owen marry
289
- 3033207 what is a mayan language
290
- 3033726 what is the average cost per year to replace an electric furnace
291
- 3034311 what is a good hand and foot soak
292
- 3034424 what weather is shower
293
- 3034852 how to get stronger at striking
294
- 3035413 who killed charlotte afton
295
- 3035614 what's the benefit of optimization?
296
- 3035738 what is the purpose of statins?
297
- 3035922 what is considered a workplace hazard
298
- 3036109 are alligators considered exotic pets
299
- 3037358 what's the difference between imagery and visual
300
- 3037683 can you blur your iris
301
- 3037901 when do you stop feeling pregnant
302
- 3038606 what region is duolingo used in?
303
- 3038813 how do i delete my amazon content
304
- 3038944 which one is the cvv vaccine
305
- 3039801 what is the limit for blog comments
306
- 3039907 what types of eukaryotic cells use aerobic respiration
307
- 3040113 average salary of police officer in dallas
308
- 3040243 what is the thunder and lightning based on
309
- 3040323 where do i find my cat after my mom is gone
310
- 3040509 college of the ozarks nursing
311
- 3040767 who are the star wars princesses and generals
312
- 3040812 where is goofy's castle
313
- 3041598 what is banner
314
- 3041621 which transporters associate with the transport protein
315
- 3041901 do moles eat mice
316
- 3042039 where are freedos used
317
- 3042221 types of belts for women
318
- 3042440 what is einstein father's name
319
- 3043254 what does a sandbank shark eat
320
- 3043531 timeline template excel
321
- 3044137 is a wheelchair a transportable medical device
322
- 3044330 how does a clematis germinate
323
- 3044609 how long is read time for an article
324
- 3045412 what skills do building and construction engineers
325
- 3045710 what lofts are there
326
- 3046349 how to become a registered nurse
327
- 3046416 what homeowners insurance should i buy
328
- 3047066 what license does an llc need
329
- 3047111 what's a step-daughters birthday
330
- 3047223 us anti corruption laws
331
- 3047413 what helps cat pee smell
332
- 3047615 maps reduces
333
- 3048240 what tab opens autocorrect in excel?
334
- 3048620 difference between a resolution and refresh rate
335
- 3048739 who developed the concept of a single element to explain how chemistry works
336
- 3049956 can midi files be pasted?
337
- 3050136 are there black and tan coonhound
338
- 3051259 what kind of sounds do yosemite has
339
- 3051442 what broker can i use to transfer account to another brokerage
340
- 3052200 where do they have german border
341
- 3052416 define atropine
342
- 3052503 do lizards eat crickets
343
- 3053064 why is there a constitutional right to privacy
344
- 3053163 what makes a speech effective
345
- 3053619 cancer mortality rate
346
- 3054151 what is isport
347
- 3055334 how alginate for wound dressing works
348
- 3055822 what is the most popular spiritual book
349
- 3056009 what kind of doctor treats musculoskeletal problems
350
- 3056103 what type of electricity does lightning carry
351
- 3056404 are chemical weapons used in mass destruction
352
- 3057013 why are wi-fi access fees high
353
- 3057404 what are i.e. diets for pregnancy
354
- 3057603 how to recycle batteries in pa
355
- 3057808 what is that sign of trouble
356
- 3058100 what is the seated position in japan
357
- 3058206 what is smart vocabulary
358
- 3059709 how to find mean & variance for regression analysis
359
- 3059866 who played sherrilyn feeney
360
- 3061630 where is morecambe uk
361
- 3062222 what is grackle
362
- 3062402 how long do you blanch spinach
363
- 3063002 what is ivt in medical billing
364
- 3063876 where does angela turner work at
365
- 3063903 what kind of burgers do smashburger serve
366
- 3064122 why do databases need to be updated
367
- 3064534 is unconditional love divine or self-giving
368
- 3065017 what is the agonist in bicep curls
369
- 3065160 what is the shape of a trapezoid
370
- 3065529 what type of patient will need traction
371
- 3065726 what length of beard should i get
372
- 3065927 who was peter and does he have an estate?
373
- 3066022 how to get your onedrive file
374
- 3066313 who did kelly johnson divorce from?
375
- 3066601 what makes a good kidney
376
- 3066945 how does overlap in table sawing work
377
- 3067065 how much experience will be gained in the slayer lords
378
- 3068053 who are the actors in the movie tiger eater
379
- 3068332 is tomato a good food for prostate health
380
- 3068627 what is the goal of carbon projects
381
- 3069365 where did baby christ get born
382
- 3069625 causes of valve prolapses
383
- 3070316 what is housing discrimination nc
384
- 3070610 is it necessary to glue cabinets together
385
- 3070706 how to write an essay quickly for school
386
- 3070963 how does a storage controller affect vmware
387
- 3071051 what type of injury result when downer cows are compressed
388
- 3071509 apple device is currently locked what do i do
389
- 3072704 why do we do transition sentences in writing
390
- 3073040 what software does asp use
391
- 3074178 when the related party replaces the home do they have to release the title
392
- 3075188 what protocol can be used to transfer files
393
- 3075402 what qualities should business leaders have
394
- 3075527 how to get a degree in witchcraft
395
- 3075601 what is new stylus
396
- 3075804 when did the newshour discuss iraq
397
- 3075902 what vitamins are good for blood work
398
- 3076192 how to avoid work conflict
399
- 3076509 what numbers make up 11
400
- 3076700 what is tbsp in minced garlic
401
- 3078271 what sports did you play as a teen
402
- 3078402 which bike has a brake disk
403
- 3078845 what supplement is good for cancer
404
- 3079914 where to find the best garbage disposal
405
- 3080189 where can you find diskreet vibe
406
- 3080505 which suv is best to buy
407
- 3081609 what information is needed to get a ballot
408
- 3081968 what is in connecticut
409
- 3082115 what is edf file
410
- 3082730 how many questions are in the dmv exam
411
- 3083210 what internet applications are used in china
412
- 3083313 what to bring for a rainy day
413
- 3083600 what type of foot pain is this
414
- 3084129 what product line is gigabyte
415
- 3084324 when did harrison maxwell dempsey die
416
- 3084674 what are dragons good at
417
- 3086246 what does stand in your way mean
418
- 3086416 when did coffee use to be chicory
419
- 3086593 what form do i fill to file for apartment insurance
420
- 3087008 where is the st croix river course
421
- 3087150 firestone jobs
422
- 3088736 why do i have night vision
423
- 3089306 what is the coldest place in the world
424
- 3089409 do sleeping dogs lie?
425
- 3089840 where do you find the charm bar?
426
- 3090100 who is tk-421
427
- 3090406 age limit to have a financial account
428
- 3091099 why does jesus say there will be a flood like noah's flood
429
- 3091217 what seasoning is used on buffalo wings
430
- 3091340 define fads
431
- 3091450 average college costs for four years
432
- 3091619 what are the services of a bank
433
- 3092042 how to get from charlotte airport to downtown charlotte nc
434
- 3092147 who was president when blacks were liberated
435
- 3092205 simons university phone number
436
- 3092307 how long to boil oatmeal packet
437
- 3093428 what is gpu used for?
438
- 3094106 when is my chemical romance on
439
- 3095014 what makes a recording
440
- 3095206 what to make yourself for halloween
441
- 3095724 what size stake to use for backboard
442
- 3096327 how often should you strength train
443
- 3096755 what does the name corrine mean
444
- 3097060 vnr stock
445
- 3097408 where is ra certification given
446
- 3097909 most powerful drills in the world
447
- 3098109 do gas additives really help your gas mileage
448
- 3098631 where are cichlid mouth
449
- 3099072 when was reinhold niebuhr born and died?
450
- 3099514 what can cause your period to start late
451
- 3100005 What is the Abortion Pill and at what stages of pregnancy can it be used?
452
- 3100013 How are ovarian cysts diagnosed using ultrasound?
453
- 3100015 What are the effects of too much estrogen on body shape?
454
- 3100016 What is the acronym definition in various fields?
455
- 3100017 What are some media sources outside the official Kremlin stance that can access exclusive interviews?
456
- 3100018 What are common ingredients added to beans in New Mexican cuisine?
457
- 3100022 What is the significance of the term 'winningest' on August 12, 2016?
458
- 3100024 What are the rare types of lung cancers?
459
- 3100027 What is lateral capsule impingement and how does it cause pain?
460
- 3100029 List of individuals with the last name Stein and their professions
461
- 3100031 What is a 72 Hour No Contact Provision in Wisconsin domestic cases?
462
- 3100033 Can RNA function as an enzyme?
463
- 3100038 How do animals use visual signals for mating and territorial dominance?
464
- 3100044 How does caseless matching work with bytes in a multibyte locale?
465
- 3100047 How to cook thin-sliced potatoes for a perfect dinner side dish?
466
- 3100055 How can I seal seams between onyx panels and trim them to fit?
467
- 3100059 How can dental crowns help with bruxism-related tooth damage?
468
- 3100062 How can I use Adobe apps on my Linux Desktop?
469
- 3100065 Who plays the role of Suleyman Shah in the story and what is his relation to Osman Gazi I?
470
- 3100074 What is the plumage color of males during mating season in Madagascar?
471
- 3100075 Did mainstream media admit to the lab origins of covid-19?
472
- 3100076 What are the special holidays in May 2021?
473
- 3100078 How do moderators receive Collaborate session recording emails?
474
- 3100088 What was the significance of the change in Tutankhamun's name?
475
- 3100092 How to choose a hairstyle based on personality and lifestyle?
476
- 3100096 How to convert 9/10 into a percentage?
477
- 3100098 What is the meaning of angel number 616?
478
- 3100099 What is the STANLEY SL18191P 10-gallon wet/dry vacuum?
479
- 3100101 What types of public moorings does Waterways Ireland provide along navigable waterways?
480
- 3100111 What makes calcium and heavier elements in Group 2 real alkaline earth metals?
481
- 3100112 What are extra bones in the human foot and do they cause any problems?
482
- 3100115 What features are included in the SE 35th Anniversary Edition?
483
- 3100116 How can I contact LCA for more information?
484
- 3100119 Do larger lobsters become tougher when cooked?
485
- 3100124 What are the prepositions in the sentence about a train going through a tunnel and over a bridge?
486
- 3100127 How did Michael Jackson help Robson's career in Hollywood?
487
- 3100128 How do I apply for a Building Permit or access Buildings Department Records?
488
- 3100133 What hotel is near New Orleans International Airport with state-of-the-art accommodations?
489
- 3100140 How do I identify conductor and insulator objects in the game?
490
- 3100145 What happened to Fell and Lindley after leaving Three's Company?
491
- 3100149 What is the release date, cast, and storyline of Justice League – Part One?
492
- 3100152 What is a pick-up game in sports and video games?
493
- 3100160 What are the unique characteristics of Nucor's work environment?
494
- 3100163 What are the predominant languages in the country and what is the government's plan regarding English in schools?
495
- 3100164 When should I call on the Chickadee Spirit Animal?
496
- 3100165 How does a crown provide protection to endodontically treated teeth?
497
- 3100167 How to fix Error 105 in Adobe Photoshop?
498
- 3100168 How does paying off a loan quickly benefit a profitable business?
499
- 3100171 What is Dogecoin being referred to as by celebrities and influencers?
500
- 3100173 What are the different types of Occurrence Tags for species in a park?
501
- 3100177 How do I form uppercase letters C, E, G, and O in this writing style?
502
- 3100183 Is the website with free Spanish movies accessible?
503
- 3100186 How does a meat-based diet influence brain size?
504
- 3100188 What factors affect the selection of track spikes for junior and senior athletes?
505
- 3100191 What is the local name for Jack Crevalle in Cabo San Lucas and how is it related to sportfishing?
506
- 3100195 What are the different credit score ranges?
507
- 3100198 What could cause blood in urine for someone with a hernia?
508
- 3100199 What is triangulation fraud?
509
- 3100202 What does the acronym FRQ stand for?
510
- 3100207 What are the common types of teams in the workplace?
511
- 3100208 How to fix TLS handshake failure on Google Wifi router?
512
- 3100212 How often should I clean a Leopard Gecko's cage?
513
- 3100225 What programs does Ame teach at Fox Run Environmental Education Center?
514
- 3100231 What are the contents of the annual reports on the Responsibility to Protect published by the United Nations Secretary-General?
515
- 3100233 How can I open pinch pleat curtains?
516
- 3100235 Where is the University of Baltimore's Master of Science in Taxation program located?
517
- 3100236 What is the performance of 4 Color Tibalt deck?
518
- 3100240 How do I apply for federal student loans?
519
- 3100246 What determines the trade license fees and where do I pay it?
520
- 3100254 What is the top speed and weight capacity of a 150cc gas-powered scooter with an air cooling system?
521
- 3100257 What is a good snorkeling spot for small groups and young children in Maui?
522
- 3100262 What is the common use of ASL fingerspelling?
523
- 3100268 How has the medical establishment's thinking about IUDs for adolescents changed?
524
- 3100269 What is the topic of the paper submitted by Agnes and Scott?
525
- 3100273 What are the two forms of line spectra and how are they related?
526
- 3100274 What are the different types of fibroids and where are they located?
527
- 3100275 How to create a wearable glitter lip look?
528
- 3100280 What is the history of water treatment processes?
529
- 3100282 How do you form the 1st and 2nd person plural stem in French?
530
- 3100284 Which are the best overnight diapers for toddlers?
531
- 3100289 Is S. saprophyticus UTI common in vegetarians and what antibiotics are effective?
532
- 3100292 What type of trains do Direct Rail Services' Class 20/3s and Class 37s work on?
533
- 3100293 What are some examples of visuals used in presentations?
534
- 3100299 What are some popular and best value hotels in the Newport Beach area with 2 stars and below?
535
- 3100302 What are the uses of Myrrh Essential Oil in Christianity and oral health?
536
- 3100303 When was Janelle Pierzina's daughter Violet Anne born?
537
- 3100310 How can I find information about my state or country's residential traffic laws?
538
- 3100312 Who do the children and beavers go to find in the story?
539
- 3100315 What is the meaning of the term 'Mayan' in linguistic context?
540
- 3100320 What is the approximate annual cost of heating a home?
541
- 3100325 What is a paraffin bath for hands and feet that can help with arthritis pain and dry skin?
542
- 3100326 How can I have the best viewing experience for meteor showers in 2017?
543
- 3100329 How can shadow boxing benefit my training?
544
- 3100335 Who murdered Charlotte and how was the crime discovered?
545
- 3100337 How do nodes in a content delivery network optimize the delivery process?
546
- 3100338 What is the starting molecule in cholesterol production?
547
- 3100340 What are the most common hazards in a workspace?
548
- 3100342 Are alligators and crocodiles considered exotic pets in Kansas?
549
- 3100354 What are the different types of imagery besides visual?
550
- 3100357 How can I use creative blur to enhance my photos?
551
- 3100360 What is the second most prevalent reason for hospital stays in pregnant women?
552
- 3100367 What percentage of Duolingo users in Trinidad and Tobago and Jamaica are learning Spanish?
553
- 3100369 How do I delete downloaded Amazon movies or TV shows from my device?
554
- 3100370 What is the impact of vaccination on global health?
555
- 3100379 What are the guidelines for publishing comments on this website?
556
- 3100380 What is the comparison of aerobic respiration and fermentation types in eukaryotic cells?
557
- 3100382 What is the average salary of a police officer in Dallas, TX?
558
- 3100383 What is the Indian legend behind the title of the passage referring to restoring life to a wasteland?
559
- 3100384 How to search for a lost cat in the neighborhood?
560
- 3100386 What is the rating of College of the Ozarks for Nursing program?
561
- 3100388 Who is the most prominent female character in Star Wars universe?
562
- 3100389 Where can I meet Goofy and Pluto on my next trip to Disney World?
563
- 3100395 What types of flags were used in medieval times?
564
- 3100396 How does wild-type PABPN1 associate with transportin in a nuclear protein?
565
- 3100399 What are the considerations for trapping a mole?
566
- 3100400 What are the advantages of using FreeDOS in embedded systems programming?
567
- 3100402 How to make a no-sew peplum belt and DIY rope waist belt?
568
- 3100404 What was the impact of AC electricity on Einstein's family business?
569
- 3100410 How do young sharks eat their food?
570
- 3100413 How can I find an Excel roadmap template for my project?
571
- 3100419 How to ensure safety of a child in a wheelchair during transportation?
572
- 3100421 How to germinate clematis seeds?
573
- 3100424 How is read time calculated for articles with multiple images?
574
- 3100432 What are the core skills and subfields of civil engineering?
575
- 3100434 How does the technology in a golf club minimize face-angle change and improve forgiveness?
576
- 3100440 What are the areas of competence covered in WGU's B.S. Nursing (Prelicensure) curriculum?
577
- 3100441 How should I adjust my homeowner's insurance after home improvements?
578
- 3100447 Do I need a wholesale license to sell tangible goods in California?
579
- 3100448 What message can I write for my step-daughter's birthday?
580
- 3100449 What are the penalties for anti-corruption and bribery in the USA?
581
- 3100451 How does a simple solution work for removing cat pee odor?
582
- 3100453 What is the most common example of mapreduce?
583
- 3100458 How to customize AutoCorrect in Excel?
584
- 3100462 How do higher resolutions and refresh rates benefit gamers?
585
- 3100463 How did Boyle's view impact the study of chemistry and Lavoisier's work?
586
- 3100475 How do I copy and paste MIDI notes in Piano Roll?
587
- 3100477 What are the characteristics of a black and tan Coonhound?
588
- 3100488 What are the sound signatures of waterfalls in Yosemite National Park?
589
- 3100489 How do I transfer my Fidelity account to Ameritrade?
590
- 3100497 What was the fuel-based challenge in the German Border episode?
591
- 3100499 What is the use of atropine in organophosphate poisoning?
592
- 3100500 Where can I buy live crickets and other feeder insects for reptiles at low prices?
593
- 3100505 What did the Supreme Court rule in the case of Torrey Dale Grady v. North Carolina?
594
- 3100506 How should I view my audience during public speaking?
595
- 3100511 What is the number of breast cancer deaths in the UK annually?
596
- 3100515 How does the in-house product development team approach sports nutrition formulation?
597
- 3100526 What types of wounds are calcium alginate dressings effective on?
598
- 3100530 What are some best-selling spirituality books?
599
- 3100532 Who are the orthopaedic specialists at Chester County Hospital?
600
- 3100533 How does lightning travel through a building and how much electricity does it contain?
601
- 3100536 What changes were made to Pub. L. 108-458, §6802 in relation to chemical weapons?
602
- 3100542 How did online programs affect Wi-Fi charges for a frequent traveler?
603
- 3100545 What is a hyperemesis diet and how can it help during pregnancy?
604
- 3100547 Where can I recycle uninterruptible power supply batteries?
605
- 3100549 How to improve communication and stabilize my relationship?
606
- 3100552 What are some disrespectful sitting positions in Japan and the Middle East?
607
- 3100553 What are some features of free ISPs?
608
- 3100568 What is the definition of mean sum of squares and its relation to variance?
609
- 3100569 What happened to Shirley Feeney's actress?
610
- 3100587 What happened to the piers in Morecambe and how did it affect the town?
611
- 3100593 How do great-tailed grackles solve the Crow and the Pitcher puzzle?
612
- 3100594 How do I blanch cauliflower when the curd is 2 to 3 inches in diameter?
613
- 3100600 What is intravenous therapy and its billing information for outpatient services?
614
- 3100608 What was Turner's role in the White House National Security Council?
615
- 3100609 Where can I find Smashburger nutritional information?
616
- 3100611 How does incorrect data entry affect student records and services eligibility?
617
- 3100615 What is unconditional love and how is it related to altruism?
618
- 3100620 What are the roles of synergists and agonist during a biceps curl?
619
- 3100621 What is the relationship between line cross-section and line profile in Fig.4-3?
620
- 3100625 What are some common assistive devices used in patient care?
621
- 3100627 What is the optimal beard length for a full look and coverage of bare patches?
622
- 3100629 Who did Doris' mother want her daughter to marry?
623
- 3100630 How do I sync a shared folder to my OneDrive?
624
- 3100633 What allegations does Johnson make against Hamlin in their divorce case?
625
- 3100636 How to choose and prepare kidneys for cooking?
626
- 3100639 How does overlapping wide boards create a tight connection in a workbench?
627
- 3100640 How are divine energy experience levels divided and affected by boons?
628
- 3100650 What is the plot of the movie directed by Kathryn Bigelow starring Patrick Swayze and Keanu Reeves?
629
- 3100653 What nutrients in tomatoes can protect men against prostate cancer?
630
- 3100656 What is the goal of the worldwide urban carbon monitoring system?
631
- 3100663 Where was Jesus born?
632
- 3100666 What are the complications associated with mitral valve prolapse?
633
- 3100672 What are the exceptions to housing discrimination laws in North Carolina?
634
- 3100674 Does gluing cabinet joints increase the sturdiness?
635
- 3100675 How to write an essay quickly and effectively?
636
- 3100677 How to improve slow VMware/Hyper-V performance?
637
- 3100678 What factors affect the severity of pressure damage to muscles in downer cows?
638
- 3100683 How is the iPhone IMEI unlocking process performed?
639
- 3100695 How to teach Social Studies in writing and reading block?
640
- 3100698 What are the disadvantages of ASP and the benefits of web-based data warehousing?
641
- 3100709 Can I purchase a replacement property from a related party during a 1031 exchange?
642
- 3100719 How does the File Transfer Protocol work between two computers?
643
- 3100722 What are the key characteristics of a business leader?
644
- 3100723 How can I start learning witchcraft?
645
- 3100724 What are the features of the newest P05 stylus?
646
- 3100726 What did Jim Lehrer say about The Newshour's coverage of the Iraq invasion?
647
- 3100727 What vitamins can help with pain in the arm after a blood test?
648
- 3100729 How to prevent a workplace discussion from becoming an argument?
649
- 3100732 What are the numbers in sequences from 0 to 13?
650
- 3100734 What modifications can be made to a chicken recipe to make it more flavorful?
651
- 3100748 What was the batting average of the author in junior high?
652
- 3100750 What are the features of a 24-speed bike with an aluminum frame?
653
- 3100754 Did selenium supplementation affect the rates of prostate, colon, and lung cancer in a clinical trial?
654
- 3100764 What is the purpose of Bestgarbagedisposalunits.com?
655
- 3100766 What advice does a breed advocate give about getting a certain type of dog?
656
- 3100770 What do reviewers think about the 2007 Chevrolet Suburban's performance?
657
- 3100780 How do local officials confirm residency and citizenship for absentee ballot?
658
- 3100783 What is the origin of the hamburger and what are some popular food options in Connecticut?
659
- 3100785 Which applications can open EDF files?
660
- 3100791 What can I expect from the Virginia DMV Practice Test?
661
- 3100796 Do MS webinar applications and Skype work in China?
662
- 3100797 What should I wear during cool and wet weather?
663
- 3100800 What are the symptoms of plantar fasciitis-like foot pain?
664
- 3100805 What are the most famous products of Gigabyte?
665
- 3100807 Who was John Alphonsus Turretini?
666
- 3100810 What are some easy dragon crafts for indoor fun?
667
- 3100825 How does being considerate and friendly affect your relationship with people?
668
- 3100827 When did the mixing of chicory with coffee become popular and why?
669
- 3100828 What do the terms HO-6, HO-3, and HO-4 mean in homeowners insurance?
670
- 3100833 What is the environment like at the St. Croix River Valley golf course?
671
- 3100834 How can I join the Firestone team?
672
- 3100850 How does the absence of melanin in some animals contribute to their night vision?
673
- 3100855 Which regions in Canada are considered the coldest?
674
- 3100856 What does 'let sleeping dogs lie' mean and how does it relate to dealing with problems?
675
- 3100860 How to adjust screen brightness in Windows?
676
- 3100863 What did TK-421 do after being told to go about his business in the aqualeisure unit?
677
- 3100866 Can non-parents open a joint bank account with a minor?
678
- 3100871 How does Jesus compare his return and future judgment to Noah's flood?
679
- 3100873 What was the secret ingredient used in the original Buffalo Wings in 1964?
680
- 3100874 What are some examples of fads?
681
- 3100875 What is the average total college expense for a 4-year in-state college student?
682
- 3100877 What are the basic financial functions offered by banks and credit unions?
683
- 3100880 What is the cost of airport shuttle services from Charlotte Douglas International Airport to Uptown Charlotte?
684
- 3100881 What discussions did Douglass have with Presidents Lincoln and Johnson?
685
- 3100882 How to contact Simmons University for Workday registration issues?
686
- 3100883 How to prepare hot oatmeal using boiling water method?
687
- 3100893 What are the benefits and drawbacks of using GPUs for large datasets?
688
- 3100899 What was the My Chemical Romance joke on Twitter that gained popularity in 2019?
689
- 3100907 How can I change the recording destination and mode in a device?
690
- 3100909 What are some benefits of making a homemade Halloween costume?
691
- 3100913 How to set up a horseshoe pit and stake distance?
692
- 3100918 Can older adults gain strength by training once per week?
693
- 3100922 What is the meaning and origin of the name Corrin?
694
- 3100925 What is Vonage Holdings Corp. and its stock symbol?
695
- 3100929 How do I apply for instructor training if I am a resident of Missouri or Maryland?
696
- 3100934 What are the colors and specifications of Ryobi One+ 18V P222 Rotary Hammer?
697
- 3100936 Do additives in expensive gas stations improve engine performance and gas mileage?
698
- 3100940 What is the fin and mouth structure of a specific aquatic creature?
699
- 3100944 What is the main idea of The Children of Light and the Children of Darkness by Reinhold Niebuhr?
700
- 3100949 How do birth control and hormone levels affect menstrual cycle variations?
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
queries/topics.msmarco-v2-doc.dev2.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:3a6bca5aa7111240964d279c43a523ef559cb9ced037ac0c058e164c049757f5
3
- size 21270115
 
 
 
 
queries/topics.rag24.raggy-dev.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:ee51e5737096f498ac7523cdc1f002809d7857b1804401d0be686fc1ae75d232
3
- size 759107
 
 
 
 
queries/topics.rag24.researchy-dev.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:d514ac827cdede8704a5bb0a90a1ac46765b989da5bfda07d1135b5c7b1f6bb2
3
- size 3109119
 
 
 
 
runs/.DS_Store DELETED
Binary file (6.15 kB)