| Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame^] | 1 | Copyright (c) 2014, Linaro Limited | 
|  | 2 | All rights reserved. | 
|  | 3 |  | 
|  | 4 | Redistribution and use in source and binary forms, with or without | 
|  | 5 | modification, are permitted provided that the following conditions are met: | 
|  | 6 | Redistributions of source code must retain the above copyright | 
|  | 7 | notice, this list of conditions and the following disclaimer. | 
|  | 8 | Redistributions in binary form must reproduce the above copyright | 
|  | 9 | notice, this list of conditions and the following disclaimer in the | 
|  | 10 | documentation and/or other materials provided with the distribution. | 
|  | 11 | Neither the name of the Linaro nor the | 
|  | 12 | names of its contributors may be used to endorse or promote products | 
|  | 13 | derived from this software without specific prior written permission. | 
|  | 14 |  | 
|  | 15 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 
|  | 16 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 
|  | 17 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | 
|  | 18 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | 
|  | 19 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 
|  | 20 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 
|  | 21 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 
|  | 22 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 
|  | 23 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 
|  | 24 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 
|  | 25 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
|  | 26 |  | 
|  | 27 | ------------------------------------------------------------------- | 
|  | 28 |  | 
|  | 29 | strchr - find a character in a string | 
|  | 30 |  | 
|  | 31 | Copyright (c) 2014, ARM Limited | 
|  | 32 | All rights Reserved. | 
|  | 33 | Copyright (c) 2014, Linaro Ltd. | 
|  | 34 |  | 
|  | 35 | Redistribution and use in source and binary forms, with or without | 
|  | 36 | modification, are permitted provided that the following conditions are met: | 
|  | 37 | Redistributions of source code must retain the above copyright | 
|  | 38 | notice, this list of conditions and the following disclaimer. | 
|  | 39 | Redistributions in binary form must reproduce the above copyright | 
|  | 40 | notice, this list of conditions and the following disclaimer in the | 
|  | 41 | documentation and/or other materials provided with the distribution. | 
|  | 42 | Neither the name of the company nor the names of its contributors | 
|  | 43 | may be used to endorse or promote products derived from this | 
|  | 44 | software without specific prior written permission. | 
|  | 45 |  | 
|  | 46 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 
|  | 47 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 
|  | 48 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | 
|  | 49 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | 
|  | 50 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 
|  | 51 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 
|  | 52 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 
|  | 53 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 
|  | 54 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 
|  | 55 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 
|  | 56 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
|  | 57 |  | 
|  | 58 | ------------------------------------------------------------------- | 
|  | 59 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 60 | ==================================================== | 
|  | 61 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. | 
|  | 62 |  | 
|  | 63 | Developed at SunPro, a Sun Microsystems, Inc. business. | 
|  | 64 | Permission to use, copy, modify, and distribute this | 
|  | 65 | software is freely granted, provided that this notice | 
|  | 66 | is preserved. | 
|  | 67 |  | 
|  | 68 | ------------------------------------------------------------------- | 
|  | 69 |  | 
| Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 70 | Based on the UCB version with the ID appearing below. | 
|  | 71 | This is ANSIish only when "multibyte character == plain character". | 
|  | 72 |  | 
|  | 73 | Copyright (c) 1989, 1993 | 
|  | 74 | The Regents of the University of California.  All rights reserved. | 
|  | 75 |  | 
|  | 76 | Redistribution and use in source and binary forms, with or without | 
|  | 77 | modification, are permitted provided that the following conditions | 
|  | 78 | are met: | 
|  | 79 | 1. Redistributions of source code must retain the above copyright | 
|  | 80 | notice, this list of conditions and the following disclaimer. | 
|  | 81 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 82 | notice, this list of conditions and the following disclaimer in the | 
|  | 83 | documentation and/or other materials provided with the distribution. | 
|  | 84 | 3. Neither the name of the University nor the names of its contributors | 
|  | 85 | may be used to endorse or promote products derived from this software | 
|  | 86 | without specific prior written permission. | 
|  | 87 |  | 
|  | 88 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 89 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 90 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 91 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 92 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 93 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 94 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 95 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 96 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 97 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 98 | SUCH DAMAGE. | 
|  | 99 |  | 
|  | 100 | ------------------------------------------------------------------- | 
|  | 101 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 102 | Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. | 
| The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 103 | All rights reserved. | 
|  | 104 |  | 
| The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 105 | Redistribution and use in source and binary forms, with or without | 
|  | 106 | modification, are permitted provided that the following conditions | 
|  | 107 | are met: | 
|  | 108 | 1. Redistributions of source code must retain the above copyright | 
|  | 109 | notice, this list of conditions and the following disclaimer. | 
|  | 110 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 111 | notice, this list of conditions and the following disclaimer in the | 
|  | 112 | documentation and/or other materials provided with the distribution. | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 113 | 3. Neither the name of the project nor the names of its contributors | 
| The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 114 | may be used to endorse or promote products derived from this software | 
|  | 115 | without specific prior written permission. | 
|  | 116 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 117 | THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND | 
| The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 118 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 119 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 120 | ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE | 
| The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 121 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 122 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 123 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 124 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 125 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 126 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 127 | SUCH DAMAGE. | 
|  | 128 |  | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 129 | ------------------------------------------------------------------- | 
| The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 130 |  | 
| Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 131 | Copyright (C) 2004, 2005, 2008  Internet Systems Consortium, Inc. ("ISC") | 
|  | 132 | Copyright (C) 1995-1999, 2001, 2003  Internet Software Consortium. | 
|  | 133 |  | 
|  | 134 | Permission to use, copy, modify, and/or distribute this software for any | 
|  | 135 | purpose with or without fee is hereby granted, provided that the above | 
|  | 136 | copyright notice and this permission notice appear in all copies. | 
|  | 137 |  | 
|  | 138 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH | 
|  | 139 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY | 
|  | 140 | AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, | 
|  | 141 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM | 
|  | 142 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE | 
|  | 143 | OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR | 
|  | 144 | PERFORMANCE OF THIS SOFTWARE. | 
|  | 145 |  | 
|  | 146 | ------------------------------------------------------------------- | 
|  | 147 |  | 
|  | 148 | Copyright (C) 2004, 2005, 2008  Internet Systems Consortium, Inc. ("ISC") | 
|  | 149 | Copyright (C) 1997-2001  Internet Software Consortium. | 
|  | 150 |  | 
|  | 151 | Permission to use, copy, modify, and/or distribute this software for any | 
|  | 152 | purpose with or without fee is hereby granted, provided that the above | 
|  | 153 | copyright notice and this permission notice appear in all copies. | 
|  | 154 |  | 
|  | 155 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH | 
|  | 156 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY | 
|  | 157 | AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, | 
|  | 158 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM | 
|  | 159 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE | 
|  | 160 | OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR | 
|  | 161 | PERFORMANCE OF THIS SOFTWARE. | 
|  | 162 |  | 
|  | 163 | ------------------------------------------------------------------- | 
|  | 164 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 165 | Copyright (C) 2006 The Android Open Source Project | 
| Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame^] | 166 |  | 
|  | 167 | Licensed under the Apache License, Version 2.0 (the "License"); | 
|  | 168 | you may not use this file except in compliance with the License. | 
|  | 169 | You may obtain a copy of the License at | 
|  | 170 |  | 
|  | 171 | http://www.apache.org/licenses/LICENSE-2.0 | 
|  | 172 |  | 
|  | 173 | Unless required by applicable law or agreed to in writing, software | 
|  | 174 | distributed under the License is distributed on an "AS IS" BASIS, | 
|  | 175 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
|  | 176 | See the License for the specific language governing permissions and | 
|  | 177 | limitations under the License. | 
|  | 178 |  | 
|  | 179 | ------------------------------------------------------------------- | 
|  | 180 |  | 
|  | 181 | Copyright (C) 2006 The Android Open Source Project | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 182 | All rights reserved. | 
| The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 183 |  | 
|  | 184 | Redistribution and use in source and binary forms, with or without | 
|  | 185 | modification, are permitted provided that the following conditions | 
|  | 186 | are met: | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 187 | Redistributions of source code must retain the above copyright | 
| The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 188 | notice, this list of conditions and the following disclaimer. | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 189 | Redistributions in binary form must reproduce the above copyright | 
|  | 190 | notice, this list of conditions and the following disclaimer in | 
|  | 191 | the documentation and/or other materials provided with the | 
|  | 192 | distribution. | 
| The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 193 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 194 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 
|  | 195 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 
|  | 196 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | 
|  | 197 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | 
|  | 198 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | 
|  | 199 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | 
|  | 200 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS | 
|  | 201 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED | 
|  | 202 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | 
|  | 203 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT | 
|  | 204 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 205 | SUCH DAMAGE. | 
|  | 206 |  | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 207 | ------------------------------------------------------------------- | 
|  | 208 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 209 | Copyright (C) 2008 The Android Open Source Project | 
| Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame^] | 210 |  | 
|  | 211 | Licensed under the Apache License, Version 2.0 (the "License"); | 
|  | 212 | you may not use this file except in compliance with the License. | 
|  | 213 | You may obtain a copy of the License at | 
|  | 214 |  | 
|  | 215 | http://www.apache.org/licenses/LICENSE-2.0 | 
|  | 216 |  | 
|  | 217 | Unless required by applicable law or agreed to in writing, software | 
|  | 218 | distributed under the License is distributed on an "AS IS" BASIS, | 
|  | 219 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
|  | 220 | See the License for the specific language governing permissions and | 
|  | 221 | limitations under the License. | 
|  | 222 |  | 
|  | 223 | ------------------------------------------------------------------- | 
|  | 224 |  | 
|  | 225 | Copyright (C) 2008 The Android Open Source Project | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 226 | All rights reserved. | 
|  | 227 |  | 
|  | 228 | Redistribution and use in source and binary forms, with or without | 
|  | 229 | modification, are permitted provided that the following conditions | 
|  | 230 | are met: | 
|  | 231 | Redistributions of source code must retain the above copyright | 
|  | 232 | notice, this list of conditions and the following disclaimer. | 
|  | 233 | Redistributions in binary form must reproduce the above copyright | 
|  | 234 | notice, this list of conditions and the following disclaimer in | 
|  | 235 | the documentation and/or other materials provided with the | 
|  | 236 | distribution. | 
|  | 237 |  | 
|  | 238 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 
|  | 239 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 
|  | 240 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | 
|  | 241 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | 
|  | 242 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | 
|  | 243 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | 
|  | 244 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS | 
|  | 245 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED | 
|  | 246 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | 
|  | 247 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT | 
|  | 248 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 249 | SUCH DAMAGE. | 
|  | 250 |  | 
|  | 251 | ------------------------------------------------------------------- | 
|  | 252 |  | 
| Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 253 | Copyright (C) 2008 The Android Open Source Project | 
|  | 254 | All rights reserved. | 
|  | 255 | Copyright (c) 2013-2014, NVIDIA Corporation.  All rights reserved. | 
|  | 256 |  | 
|  | 257 | Redistribution and use in source and binary forms, with or without | 
|  | 258 | modification, are permitted provided that the following conditions | 
|  | 259 | are met: | 
|  | 260 | Redistributions of source code must retain the above copyright | 
|  | 261 | notice, this list of conditions and the following disclaimer. | 
|  | 262 | Redistributions in binary form must reproduce the above copyright | 
|  | 263 | notice, this list of conditions and the following disclaimer in | 
|  | 264 | the documentation and/or other materials provided with the | 
|  | 265 | distribution. | 
|  | 266 |  | 
|  | 267 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 
|  | 268 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 
|  | 269 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | 
|  | 270 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | 
|  | 271 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | 
|  | 272 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | 
|  | 273 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS | 
|  | 274 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED | 
|  | 275 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | 
|  | 276 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT | 
|  | 277 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 278 | SUCH DAMAGE. | 
|  | 279 |  | 
|  | 280 | ------------------------------------------------------------------- | 
|  | 281 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 282 | Copyright (C) 2008-2010 The Android Open Source Project | 
|  | 283 | All rights reserved. | 
|  | 284 |  | 
|  | 285 | Redistribution and use in source and binary forms, with or without | 
|  | 286 | modification, are permitted provided that the following conditions | 
|  | 287 | are met: | 
|  | 288 | Redistributions of source code must retain the above copyright | 
|  | 289 | notice, this list of conditions and the following disclaimer. | 
|  | 290 | Redistributions in binary form must reproduce the above copyright | 
|  | 291 | notice, this list of conditions and the following disclaimer in | 
|  | 292 | the documentation and/or other materials provided with the | 
|  | 293 | distribution. | 
|  | 294 |  | 
|  | 295 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 
|  | 296 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 
|  | 297 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | 
|  | 298 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | 
|  | 299 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | 
|  | 300 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | 
|  | 301 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS | 
|  | 302 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED | 
|  | 303 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | 
|  | 304 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT | 
|  | 305 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 306 | SUCH DAMAGE. | 
|  | 307 |  | 
|  | 308 | ------------------------------------------------------------------- | 
|  | 309 |  | 
|  | 310 | Copyright (C) 2009 The Android Open Source Project | 
| Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame^] | 311 |  | 
|  | 312 | Licensed under the Apache License, Version 2.0 (the "License"); | 
|  | 313 | you may not use this file except in compliance with the License. | 
|  | 314 | You may obtain a copy of the License at | 
|  | 315 |  | 
|  | 316 | http://www.apache.org/licenses/LICENSE-2.0 | 
|  | 317 |  | 
|  | 318 | Unless required by applicable law or agreed to in writing, software | 
|  | 319 | distributed under the License is distributed on an "AS IS" BASIS, | 
|  | 320 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
|  | 321 | See the License for the specific language governing permissions and | 
|  | 322 | limitations under the License. | 
|  | 323 |  | 
|  | 324 | ------------------------------------------------------------------- | 
|  | 325 |  | 
|  | 326 | Copyright (C) 2009 The Android Open Source Project | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 327 | All rights reserved. | 
|  | 328 |  | 
|  | 329 | Redistribution and use in source and binary forms, with or without | 
|  | 330 | modification, are permitted provided that the following conditions | 
|  | 331 | are met: | 
|  | 332 | Redistributions of source code must retain the above copyright | 
|  | 333 | notice, this list of conditions and the following disclaimer. | 
|  | 334 | Redistributions in binary form must reproduce the above copyright | 
|  | 335 | notice, this list of conditions and the following disclaimer in | 
|  | 336 | the documentation and/or other materials provided with the | 
|  | 337 | distribution. | 
|  | 338 |  | 
|  | 339 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 
|  | 340 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 
|  | 341 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | 
|  | 342 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | 
|  | 343 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | 
|  | 344 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | 
|  | 345 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS | 
|  | 346 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED | 
|  | 347 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | 
|  | 348 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT | 
|  | 349 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 350 | SUCH DAMAGE. | 
|  | 351 |  | 
|  | 352 | ------------------------------------------------------------------- | 
|  | 353 |  | 
|  | 354 | Copyright (C) 2010 The Android Open Source Project | 
|  | 355 |  | 
|  | 356 | Licensed under the Apache License, Version 2.0 (the "License"); | 
|  | 357 | you may not use this file except in compliance with the License. | 
|  | 358 | You may obtain a copy of the License at | 
|  | 359 |  | 
|  | 360 | http://www.apache.org/licenses/LICENSE-2.0 | 
|  | 361 |  | 
|  | 362 | Unless required by applicable law or agreed to in writing, software | 
|  | 363 | distributed under the License is distributed on an "AS IS" BASIS, | 
|  | 364 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
|  | 365 | See the License for the specific language governing permissions and | 
|  | 366 | limitations under the License. | 
|  | 367 |  | 
|  | 368 | ------------------------------------------------------------------- | 
|  | 369 |  | 
|  | 370 | Copyright (C) 2010 The Android Open Source Project | 
|  | 371 | All rights reserved. | 
|  | 372 |  | 
|  | 373 | Redistribution and use in source and binary forms, with or without | 
|  | 374 | modification, are permitted provided that the following conditions | 
|  | 375 | are met: | 
|  | 376 | Redistributions of source code must retain the above copyright | 
|  | 377 | notice, this list of conditions and the following disclaimer. | 
|  | 378 | Redistributions in binary form must reproduce the above copyright | 
|  | 379 | notice, this list of conditions and the following disclaimer in | 
|  | 380 | the documentation and/or other materials provided with the | 
|  | 381 | distribution. | 
|  | 382 |  | 
|  | 383 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 
|  | 384 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 
|  | 385 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | 
|  | 386 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | 
|  | 387 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | 
|  | 388 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | 
|  | 389 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS | 
|  | 390 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED | 
|  | 391 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | 
|  | 392 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT | 
|  | 393 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 394 | SUCH DAMAGE. | 
|  | 395 |  | 
|  | 396 | ------------------------------------------------------------------- | 
|  | 397 |  | 
|  | 398 | Copyright (C) 2010 The Android Open Source Project | 
|  | 399 | Copyright (c) 2008 ARM Ltd | 
|  | 400 | All rights reserved. | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 401 |  | 
|  | 402 | Redistribution and use in source and binary forms, with or without | 
|  | 403 | modification, are permitted provided that the following conditions | 
|  | 404 | are met: | 
|  | 405 | 1. Redistributions of source code must retain the above copyright | 
|  | 406 | notice, this list of conditions and the following disclaimer. | 
|  | 407 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 408 | notice, this list of conditions and the following disclaimer in the | 
|  | 409 | documentation and/or other materials provided with the distribution. | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 410 | 3. The name of the company may not be used to endorse or promote | 
|  | 411 | products derived from this software without specific prior written | 
|  | 412 | permission. | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 413 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 414 | THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED | 
|  | 415 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | 
|  | 416 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. | 
|  | 417 | IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 
|  | 418 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | 
|  | 419 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | 
|  | 420 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF | 
|  | 421 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | 
|  | 422 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | 
|  | 423 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
|  | 424 |  | 
|  | 425 | Android adaptation and tweak by Jim Huang <jserv@0xlab.org>. | 
|  | 426 |  | 
|  | 427 | ------------------------------------------------------------------- | 
|  | 428 |  | 
|  | 429 | Copyright (C) 2011 The Android Open Source Project | 
|  | 430 |  | 
|  | 431 | Licensed under the Apache License, Version 2.0 (the "License"); | 
|  | 432 | you may not use this file except in compliance with the License. | 
|  | 433 | You may obtain a copy of the License at | 
|  | 434 |  | 
|  | 435 | http://www.apache.org/licenses/LICENSE-2.0 | 
|  | 436 |  | 
|  | 437 | Unless required by applicable law or agreed to in writing, software | 
|  | 438 | distributed under the License is distributed on an "AS IS" BASIS, | 
|  | 439 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
|  | 440 | See the License for the specific language governing permissions and | 
|  | 441 | limitations under the License. | 
|  | 442 |  | 
|  | 443 | ------------------------------------------------------------------- | 
|  | 444 |  | 
|  | 445 | Copyright (C) 2011 The Android Open Source Project | 
|  | 446 | All rights reserved. | 
|  | 447 |  | 
|  | 448 | Redistribution and use in source and binary forms, with or without | 
|  | 449 | modification, are permitted provided that the following conditions | 
|  | 450 | are met: | 
|  | 451 | Redistributions of source code must retain the above copyright | 
|  | 452 | notice, this list of conditions and the following disclaimer. | 
|  | 453 | Redistributions in binary form must reproduce the above copyright | 
|  | 454 | notice, this list of conditions and the following disclaimer in | 
|  | 455 | the documentation and/or other materials provided with the | 
|  | 456 | distribution. | 
|  | 457 |  | 
|  | 458 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 
|  | 459 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 
|  | 460 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | 
|  | 461 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | 
|  | 462 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | 
|  | 463 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | 
|  | 464 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS | 
|  | 465 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED | 
|  | 466 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | 
|  | 467 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT | 
|  | 468 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 469 | SUCH DAMAGE. | 
|  | 470 |  | 
|  | 471 | ------------------------------------------------------------------- | 
|  | 472 |  | 
|  | 473 | Copyright (C) 2012 The Android Open Source Project | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 474 |  | 
|  | 475 | Licensed under the Apache License, Version 2.0 (the "License"); | 
|  | 476 | you may not use this file except in compliance with the License. | 
|  | 477 | You may obtain a copy of the License at | 
|  | 478 |  | 
|  | 479 | http://www.apache.org/licenses/LICENSE-2.0 | 
|  | 480 |  | 
|  | 481 | Unless required by applicable law or agreed to in writing, software | 
|  | 482 | distributed under the License is distributed on an "AS IS" BASIS, | 
|  | 483 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
|  | 484 | See the License for the specific language governing permissions and | 
|  | 485 | limitations under the License. | 
|  | 486 |  | 
|  | 487 | ------------------------------------------------------------------- | 
|  | 488 |  | 
|  | 489 | Copyright (C) 2012 The Android Open Source Project | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 490 | All rights reserved. | 
|  | 491 |  | 
|  | 492 | Redistribution and use in source and binary forms, with or without | 
|  | 493 | modification, are permitted provided that the following conditions | 
|  | 494 | are met: | 
|  | 495 | Redistributions of source code must retain the above copyright | 
|  | 496 | notice, this list of conditions and the following disclaimer. | 
|  | 497 | Redistributions in binary form must reproduce the above copyright | 
|  | 498 | notice, this list of conditions and the following disclaimer in | 
|  | 499 | the documentation and/or other materials provided with the | 
|  | 500 | distribution. | 
|  | 501 |  | 
|  | 502 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 
|  | 503 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 
|  | 504 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | 
|  | 505 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | 
|  | 506 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | 
|  | 507 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | 
|  | 508 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS | 
|  | 509 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED | 
|  | 510 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | 
|  | 511 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT | 
|  | 512 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 513 | SUCH DAMAGE. | 
|  | 514 |  | 
|  | 515 | ------------------------------------------------------------------- | 
|  | 516 |  | 
| Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 517 | Copyright (C) 2013 The Android Open Source Project | 
|  | 518 |  | 
|  | 519 | Licensed under the Apache License, Version 2.0 (the "License"); | 
|  | 520 | you may not use this file except in compliance with the License. | 
|  | 521 | You may obtain a copy of the License at | 
|  | 522 |  | 
|  | 523 | http://www.apache.org/licenses/LICENSE-2.0 | 
|  | 524 |  | 
|  | 525 | Unless required by applicable law or agreed to in writing, software | 
|  | 526 | distributed under the License is distributed on an "AS IS" BASIS, | 
|  | 527 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
|  | 528 | See the License for the specific language governing permissions and | 
|  | 529 | limitations under the License. | 
|  | 530 |  | 
|  | 531 | ------------------------------------------------------------------- | 
|  | 532 |  | 
|  | 533 | Copyright (C) 2013 The Android Open Source Project | 
|  | 534 | All rights reserved. | 
|  | 535 |  | 
|  | 536 | Redistribution and use in source and binary forms, with or without | 
|  | 537 | modification, are permitted provided that the following conditions | 
|  | 538 | are met: | 
|  | 539 | Redistributions of source code must retain the above copyright | 
|  | 540 | notice, this list of conditions and the following disclaimer. | 
|  | 541 | Redistributions in binary form must reproduce the above copyright | 
|  | 542 | notice, this list of conditions and the following disclaimer in | 
|  | 543 | the documentation and/or other materials provided with the | 
|  | 544 | distribution. | 
|  | 545 |  | 
|  | 546 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 
|  | 547 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 
|  | 548 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | 
|  | 549 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | 
|  | 550 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | 
|  | 551 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | 
|  | 552 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS | 
|  | 553 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED | 
|  | 554 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | 
|  | 555 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT | 
|  | 556 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 557 | SUCH DAMAGE. | 
|  | 558 |  | 
|  | 559 | ------------------------------------------------------------------- | 
|  | 560 |  | 
| Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 561 | Copyright (C) 2013 The Android Open Source Project | 
| Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame^] | 562 | All rights reserved. | 
|  | 563 | Copyright (c) 2013-2014 NVIDIA Corporation.  All rights reserved. | 
|  | 564 |  | 
|  | 565 | Redistribution and use in source and binary forms, with or without | 
|  | 566 | modification, are permitted provided that the following conditions | 
|  | 567 | are met: | 
|  | 568 | Redistributions of source code must retain the above copyright | 
|  | 569 | notice, this list of conditions and the following disclaimer. | 
|  | 570 | Redistributions in binary form must reproduce the above copyright | 
|  | 571 | notice, this list of conditions and the following disclaimer in | 
|  | 572 | the documentation and/or other materials provided with the | 
|  | 573 | distribution. | 
|  | 574 |  | 
|  | 575 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 
|  | 576 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 
|  | 577 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | 
|  | 578 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | 
|  | 579 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | 
|  | 580 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | 
|  | 581 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS | 
|  | 582 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED | 
|  | 583 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | 
|  | 584 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT | 
|  | 585 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 586 | SUCH DAMAGE. | 
|  | 587 |  | 
|  | 588 | ------------------------------------------------------------------- | 
|  | 589 |  | 
|  | 590 | Copyright (C) 2013 The Android Open Source Project | 
| Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 591 | Copyright (c) 2014, NVIDIA CORPORATION.  All rights reserved. | 
|  | 592 | All rights reserved. | 
|  | 593 |  | 
|  | 594 | Redistribution and use in source and binary forms, with or without | 
|  | 595 | modification, are permitted provided that the following conditions | 
|  | 596 | are met: | 
|  | 597 | Redistributions of source code must retain the above copyright | 
|  | 598 | notice, this list of conditions and the following disclaimer. | 
|  | 599 | Redistributions in binary form must reproduce the above copyright | 
|  | 600 | notice, this list of conditions and the following disclaimer in | 
|  | 601 | the documentation and/or other materials provided with the | 
|  | 602 | distribution. | 
|  | 603 |  | 
|  | 604 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 
|  | 605 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 
|  | 606 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | 
|  | 607 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | 
|  | 608 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | 
|  | 609 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | 
|  | 610 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS | 
|  | 611 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED | 
|  | 612 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | 
|  | 613 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT | 
|  | 614 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 615 | SUCH DAMAGE. | 
|  | 616 |  | 
|  | 617 | ------------------------------------------------------------------- | 
|  | 618 |  | 
| Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 619 | Copyright (C) 2014 The Android Open Source Project | 
|  | 620 |  | 
|  | 621 | Licensed under the Apache License, Version 2.0 (the "License"); | 
|  | 622 | you may not use this file except in compliance with the License. | 
|  | 623 | You may obtain a copy of the License at | 
|  | 624 |  | 
|  | 625 | http://www.apache.org/licenses/LICENSE-2.0 | 
|  | 626 |  | 
|  | 627 | Unless required by applicable law or agreed to in writing, software | 
|  | 628 | distributed under the License is distributed on an "AS IS" BASIS, | 
|  | 629 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
|  | 630 | See the License for the specific language governing permissions and | 
|  | 631 | limitations under the License. | 
|  | 632 |  | 
|  | 633 | ------------------------------------------------------------------- | 
|  | 634 |  | 
|  | 635 | Copyright (C) 2014 The Android Open Source Project | 
|  | 636 | All rights reserved. | 
|  | 637 |  | 
|  | 638 | Redistribution and use in source and binary forms, with or without | 
|  | 639 | modification, are permitted provided that the following conditions | 
|  | 640 | are met: | 
|  | 641 | Redistributions of source code must retain the above copyright | 
|  | 642 | notice, this list of conditions and the following disclaimer. | 
|  | 643 | Redistributions in binary form must reproduce the above copyright | 
|  | 644 | notice, this list of conditions and the following disclaimer in | 
|  | 645 | the documentation and/or other materials provided with the | 
|  | 646 | distribution. | 
|  | 647 |  | 
|  | 648 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 
|  | 649 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 
|  | 650 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | 
|  | 651 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | 
|  | 652 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | 
|  | 653 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | 
|  | 654 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS | 
|  | 655 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED | 
|  | 656 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | 
|  | 657 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT | 
|  | 658 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 659 | SUCH DAMAGE. | 
|  | 660 |  | 
|  | 661 | ------------------------------------------------------------------- | 
|  | 662 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 663 | Copyright (c) 1980, 1983, 1988, 1993 | 
|  | 664 | The Regents of the University of California.  All rights reserved. | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 665 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 666 | Redistribution and use in source and binary forms, with or without | 
|  | 667 | modification, are permitted provided that the following conditions | 
|  | 668 | are met: | 
|  | 669 | 1. Redistributions of source code must retain the above copyright | 
|  | 670 | notice, this list of conditions and the following disclaimer. | 
|  | 671 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 672 | notice, this list of conditions and the following disclaimer in the | 
|  | 673 | documentation and/or other materials provided with the distribution. | 
|  | 674 | 3. All advertising materials mentioning features or use of this software | 
|  | 675 | must display the following acknowledgement: | 
|  | 676 | This product includes software developed by the University of | 
|  | 677 | California, Berkeley and its contributors. | 
|  | 678 | 4. Neither the name of the University nor the names of its contributors | 
|  | 679 | may be used to endorse or promote products derived from this software | 
|  | 680 | without specific prior written permission. | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 681 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 682 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 683 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 684 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 685 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 686 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 687 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 688 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 689 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 690 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 691 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 692 | SUCH DAMAGE. | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 693 |  | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 694 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 695 | Portions Copyright (c) 1993 by Digital Equipment Corporation. | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 696 |  | 
|  | 697 | Permission to use, copy, modify, and distribute this software for any | 
|  | 698 | purpose with or without fee is hereby granted, provided that the above | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 699 | copyright notice and this permission notice appear in all copies, and that | 
|  | 700 | the name of Digital Equipment Corporation not be used in advertising or | 
|  | 701 | publicity pertaining to distribution of the document or software without | 
|  | 702 | specific, written prior permission. | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 703 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 704 | THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL | 
|  | 705 | WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES | 
|  | 706 | OF MERCHANTABILITY AND FITNESS.   IN NO EVENT SHALL DIGITAL EQUIPMENT | 
|  | 707 | CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL | 
|  | 708 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR | 
|  | 709 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS | 
|  | 710 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS | 
|  | 711 | SOFTWARE. | 
|  | 712 |  | 
|  | 713 | ------------------------------------------------------------------- | 
|  | 714 |  | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 715 | Copyright (c) 1982, 1986, 1993 | 
|  | 716 | The Regents of the University of California.  All rights reserved. | 
|  | 717 |  | 
|  | 718 | Redistribution and use in source and binary forms, with or without | 
|  | 719 | modification, are permitted provided that the following conditions | 
|  | 720 | are met: | 
|  | 721 | 1. Redistributions of source code must retain the above copyright | 
|  | 722 | notice, this list of conditions and the following disclaimer. | 
|  | 723 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 724 | notice, this list of conditions and the following disclaimer in the | 
|  | 725 | documentation and/or other materials provided with the distribution. | 
|  | 726 | 3. Neither the name of the University nor the names of its contributors | 
|  | 727 | may be used to endorse or promote products derived from this software | 
|  | 728 | without specific prior written permission. | 
|  | 729 |  | 
|  | 730 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 731 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 732 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 733 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 734 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 735 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 736 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 737 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 738 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 739 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 740 | SUCH DAMAGE. | 
|  | 741 |  | 
|  | 742 | ------------------------------------------------------------------- | 
|  | 743 |  | 
| Irina Tirdea | eac9eb4 | 2012-09-08 09:28:30 +0300 | [diff] [blame] | 744 | Copyright (c) 1982, 1986, 1993 | 
|  | 745 | The Regents of the University of California.  All rights reserved. | 
|  | 746 | (c) UNIX System Laboratories, Inc. | 
|  | 747 | All or some portions of this file are derived from material licensed | 
|  | 748 | to the University of California by American Telephone and Telegraph | 
|  | 749 | Co. or Unix System Laboratories, Inc. and are reproduced herein with | 
|  | 750 | the permission of UNIX System Laboratories, Inc. | 
|  | 751 |  | 
|  | 752 | Redistribution and use in source and binary forms, with or without | 
|  | 753 | modification, are permitted provided that the following conditions | 
|  | 754 | are met: | 
|  | 755 | 1. Redistributions of source code must retain the above copyright | 
|  | 756 | notice, this list of conditions and the following disclaimer. | 
|  | 757 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 758 | notice, this list of conditions and the following disclaimer in the | 
|  | 759 | documentation and/or other materials provided with the distribution. | 
|  | 760 | 3. Neither the name of the University nor the names of its contributors | 
|  | 761 | may be used to endorse or promote products derived from this software | 
|  | 762 | without specific prior written permission. | 
|  | 763 |  | 
|  | 764 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 765 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 766 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 767 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 768 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 769 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 770 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 771 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 772 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 773 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 774 | SUCH DAMAGE. | 
|  | 775 |  | 
|  | 776 | ------------------------------------------------------------------- | 
|  | 777 |  | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 778 | Copyright (c) 1983, 1987, 1989 | 
|  | 779 | The Regents of the University of California.  All rights reserved. | 
|  | 780 |  | 
|  | 781 | Redistribution and use in source and binary forms, with or without | 
|  | 782 | modification, are permitted provided that the following conditions | 
|  | 783 | are met: | 
|  | 784 | 1. Redistributions of source code must retain the above copyright | 
|  | 785 | notice, this list of conditions and the following disclaimer. | 
|  | 786 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 787 | notice, this list of conditions and the following disclaimer in the | 
|  | 788 | documentation and/or other materials provided with the distribution. | 
|  | 789 | 3. Neither the name of the University nor the names of its contributors | 
|  | 790 | may be used to endorse or promote products derived from this software | 
|  | 791 | without specific prior written permission. | 
|  | 792 |  | 
|  | 793 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 794 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 795 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 796 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 797 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 798 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 799 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 800 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 801 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 802 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 803 | SUCH DAMAGE. | 
|  | 804 |  | 
|  | 805 | ------------------------------------------------------------------- | 
|  | 806 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 807 | Copyright (c) 1983, 1988, 1993 | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 808 | The Regents of the University of California.  All rights reserved. | 
|  | 809 |  | 
|  | 810 | Redistribution and use in source and binary forms, with or without | 
|  | 811 | modification, are permitted provided that the following conditions | 
|  | 812 | are met: | 
|  | 813 | 1. Redistributions of source code must retain the above copyright | 
|  | 814 | notice, this list of conditions and the following disclaimer. | 
|  | 815 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 816 | notice, this list of conditions and the following disclaimer in the | 
|  | 817 | documentation and/or other materials provided with the distribution. | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 818 | 3. Neither the name of the University nor the names of its contributors | 
|  | 819 | may be used to endorse or promote products derived from this software | 
|  | 820 | without specific prior written permission. | 
|  | 821 |  | 
|  | 822 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 823 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 824 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 825 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 826 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 827 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 828 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 829 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 830 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 831 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 832 | SUCH DAMAGE. | 
|  | 833 |  | 
|  | 834 | ------------------------------------------------------------------- | 
|  | 835 |  | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 836 | Copyright (c) 1983, 1989 | 
|  | 837 | The Regents of the University of California.  All rights reserved. | 
|  | 838 |  | 
|  | 839 | Redistribution and use in source and binary forms, with or without | 
|  | 840 | modification, are permitted provided that the following conditions | 
|  | 841 | are met: | 
|  | 842 | 1. Redistributions of source code must retain the above copyright | 
|  | 843 | notice, this list of conditions and the following disclaimer. | 
|  | 844 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 845 | notice, this list of conditions and the following disclaimer in the | 
|  | 846 | documentation and/or other materials provided with the distribution. | 
|  | 847 | 3. All advertising materials mentioning features or use of this software | 
|  | 848 | must display the following acknowledgement: | 
|  | 849 | This product includes software developed by the University of | 
|  | 850 | California, Berkeley and its contributors. | 
|  | 851 | 4. Neither the name of the University nor the names of its contributors | 
|  | 852 | may be used to endorse or promote products derived from this software | 
|  | 853 | without specific prior written permission. | 
|  | 854 |  | 
|  | 855 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 856 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 857 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 858 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 859 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 860 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 861 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 862 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 863 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 864 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 865 | SUCH DAMAGE. | 
|  | 866 |  | 
|  | 867 | ------------------------------------------------------------------- | 
|  | 868 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 869 | Copyright (c) 1983, 1989, 1993 | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 870 | The Regents of the University of California.  All rights reserved. | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 871 |  | 
|  | 872 | Redistribution and use in source and binary forms, with or without | 
|  | 873 | modification, are permitted provided that the following conditions | 
|  | 874 | are met: | 
|  | 875 | 1. Redistributions of source code must retain the above copyright | 
|  | 876 | notice, this list of conditions and the following disclaimer. | 
|  | 877 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 878 | notice, this list of conditions and the following disclaimer in the | 
|  | 879 | documentation and/or other materials provided with the distribution. | 
|  | 880 | 3. Neither the name of the University nor the names of its contributors | 
|  | 881 | may be used to endorse or promote products derived from this software | 
|  | 882 | without specific prior written permission. | 
|  | 883 |  | 
|  | 884 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 885 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 886 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 887 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 888 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 889 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 890 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 891 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 892 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 893 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 894 | SUCH DAMAGE. | 
|  | 895 |  | 
|  | 896 | ------------------------------------------------------------------- | 
|  | 897 |  | 
|  | 898 | Copyright (c) 1983, 1990, 1993 | 
|  | 899 | The Regents of the University of California.  All rights reserved. | 
|  | 900 |  | 
|  | 901 | Redistribution and use in source and binary forms, with or without | 
|  | 902 | modification, are permitted provided that the following conditions | 
|  | 903 | are met: | 
|  | 904 | 1. Redistributions of source code must retain the above copyright | 
|  | 905 | notice, this list of conditions and the following disclaimer. | 
|  | 906 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 907 | notice, this list of conditions and the following disclaimer in the | 
|  | 908 | documentation and/or other materials provided with the distribution. | 
| Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame^] | 909 | 3. Neither the name of the University nor the names of its contributors | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 910 | may be used to endorse or promote products derived from this software | 
|  | 911 | without specific prior written permission. | 
|  | 912 |  | 
|  | 913 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 914 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 915 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 916 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 917 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 918 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 919 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 920 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 921 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 922 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 923 | SUCH DAMAGE. | 
|  | 924 |  | 
| Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame^] | 925 | Portions Copyright (c) 1993 by Digital Equipment Corporation. | 
|  | 926 |  | 
|  | 927 | Permission to use, copy, modify, and distribute this software for any | 
|  | 928 | purpose with or without fee is hereby granted, provided that the above | 
|  | 929 | copyright notice and this permission notice appear in all copies, and that | 
|  | 930 | the name of Digital Equipment Corporation not be used in advertising or | 
|  | 931 | publicity pertaining to distribution of the document or software without | 
|  | 932 | specific, written prior permission. | 
|  | 933 |  | 
|  | 934 | THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL | 
|  | 935 | WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES | 
|  | 936 | OF MERCHANTABILITY AND FITNESS.   IN NO EVENT SHALL DIGITAL EQUIPMENT | 
|  | 937 | CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL | 
|  | 938 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR | 
|  | 939 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS | 
|  | 940 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS | 
|  | 941 | SOFTWARE. | 
|  | 942 |  | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 943 | ------------------------------------------------------------------- | 
|  | 944 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 945 | Copyright (c) 1983, 1993 | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 946 | The Regents of the University of California.  All rights reserved. | 
|  | 947 |  | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 948 | Redistribution and use in source and binary forms, with or without | 
|  | 949 | modification, are permitted provided that the following conditions | 
|  | 950 | are met: | 
|  | 951 | 1. Redistributions of source code must retain the above copyright | 
|  | 952 | notice, this list of conditions and the following disclaimer. | 
|  | 953 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 954 | notice, this list of conditions and the following disclaimer in the | 
|  | 955 | documentation and/or other materials provided with the distribution. | 
|  | 956 | 3. Neither the name of the University nor the names of its contributors | 
|  | 957 | may be used to endorse or promote products derived from this software | 
|  | 958 | without specific prior written permission. | 
|  | 959 |  | 
|  | 960 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 961 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 962 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 963 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 964 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 965 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 966 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 967 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 968 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 969 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 970 | SUCH DAMAGE. | 
|  | 971 |  | 
|  | 972 | ------------------------------------------------------------------- | 
|  | 973 |  | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 974 | Copyright (c) 1983, 1993 | 
|  | 975 | The Regents of the University of California.  All rights reserved. | 
|  | 976 |  | 
|  | 977 | Redistribution and use in source and binary forms, with or without | 
|  | 978 | modification, are permitted provided that the following conditions | 
|  | 979 | are met: | 
|  | 980 | 1. Redistributions of source code must retain the above copyright | 
|  | 981 | notice, this list of conditions and the following disclaimer. | 
|  | 982 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 983 | notice, this list of conditions and the following disclaimer in the | 
|  | 984 | documentation and/or other materials provided with the distribution. | 
|  | 985 | 4. Neither the name of the University nor the names of its contributors | 
|  | 986 | may be used to endorse or promote products derived from this software | 
|  | 987 | without specific prior written permission. | 
|  | 988 |  | 
|  | 989 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 990 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 991 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 992 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 993 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 994 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 995 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 996 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 997 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 998 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 999 | SUCH DAMAGE. | 
|  | 1000 |  | 
|  | 1001 | ------------------------------------------------------------------- | 
|  | 1002 |  | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1003 | Copyright (c) 1985 | 
|  | 1004 | The Regents of the University of California.  All rights reserved. | 
|  | 1005 |  | 
|  | 1006 | Redistribution and use in source and binary forms, with or without | 
|  | 1007 | modification, are permitted provided that the following conditions | 
|  | 1008 | are met: | 
|  | 1009 | 1. Redistributions of source code must retain the above copyright | 
|  | 1010 | notice, this list of conditions and the following disclaimer. | 
|  | 1011 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 1012 | notice, this list of conditions and the following disclaimer in the | 
|  | 1013 | documentation and/or other materials provided with the distribution. | 
|  | 1014 | 3. All advertising materials mentioning features or use of this software | 
|  | 1015 | must display the following acknowledgement: | 
|  | 1016 | This product includes software developed by the University of | 
|  | 1017 | California, Berkeley and its contributors. | 
|  | 1018 | 4. Neither the name of the University nor the names of its contributors | 
|  | 1019 | may be used to endorse or promote products derived from this software | 
|  | 1020 | without specific prior written permission. | 
|  | 1021 |  | 
|  | 1022 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 1023 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 1024 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 1025 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 1026 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 1027 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 1028 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 1029 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 1030 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 1031 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 1032 | SUCH DAMAGE. | 
|  | 1033 |  | 
|  | 1034 | ------------------------------------------------------------------- | 
|  | 1035 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1036 | Copyright (c) 1985 Regents of the University of California. | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1037 | All rights reserved. | 
|  | 1038 |  | 
|  | 1039 | Redistribution and use in source and binary forms, with or without | 
|  | 1040 | modification, are permitted provided that the following conditions | 
|  | 1041 | are met: | 
|  | 1042 | 1. Redistributions of source code must retain the above copyright | 
|  | 1043 | notice, this list of conditions and the following disclaimer. | 
|  | 1044 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 1045 | notice, this list of conditions and the following disclaimer in the | 
|  | 1046 | documentation and/or other materials provided with the distribution. | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1047 | 3. Neither the name of the University nor the names of its contributors | 
|  | 1048 | may be used to endorse or promote products derived from this software | 
|  | 1049 | without specific prior written permission. | 
|  | 1050 |  | 
|  | 1051 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 1052 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 1053 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 1054 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 1055 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 1056 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 1057 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 1058 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 1059 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 1060 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 1061 | SUCH DAMAGE. | 
|  | 1062 |  | 
|  | 1063 | ------------------------------------------------------------------- | 
|  | 1064 |  | 
|  | 1065 | Copyright (c) 1985, 1988, 1993 | 
|  | 1066 | The Regents of the University of California.  All rights reserved. | 
|  | 1067 |  | 
|  | 1068 | Redistribution and use in source and binary forms, with or without | 
|  | 1069 | modification, are permitted provided that the following conditions | 
|  | 1070 | are met: | 
|  | 1071 | 1. Redistributions of source code must retain the above copyright | 
|  | 1072 | notice, this list of conditions and the following disclaimer. | 
|  | 1073 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 1074 | notice, this list of conditions and the following disclaimer in the | 
|  | 1075 | documentation and/or other materials provided with the distribution. | 
|  | 1076 | 3. Neither the name of the University nor the names of its contributors | 
|  | 1077 | may be used to endorse or promote products derived from this software | 
|  | 1078 | without specific prior written permission. | 
|  | 1079 |  | 
|  | 1080 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 1081 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 1082 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 1083 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 1084 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 1085 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 1086 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 1087 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 1088 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 1089 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 1090 | SUCH DAMAGE. | 
|  | 1091 |  | 
|  | 1092 | Portions Copyright (c) 1993 by Digital Equipment Corporation. | 
|  | 1093 |  | 
|  | 1094 | Permission to use, copy, modify, and distribute this software for any | 
|  | 1095 | purpose with or without fee is hereby granted, provided that the above | 
|  | 1096 | copyright notice and this permission notice appear in all copies, and that | 
|  | 1097 | the name of Digital Equipment Corporation not be used in advertising or | 
|  | 1098 | publicity pertaining to distribution of the document or software without | 
|  | 1099 | specific, written prior permission. | 
|  | 1100 |  | 
|  | 1101 | THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL | 
|  | 1102 | WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES | 
|  | 1103 | OF MERCHANTABILITY AND FITNESS.   IN NO EVENT SHALL DIGITAL EQUIPMENT | 
|  | 1104 | CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL | 
|  | 1105 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR | 
|  | 1106 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS | 
|  | 1107 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS | 
|  | 1108 | SOFTWARE. | 
|  | 1109 |  | 
|  | 1110 | ------------------------------------------------------------------- | 
|  | 1111 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1112 | Copyright (c) 1985, 1989, 1993 | 
|  | 1113 | The Regents of the University of California.  All rights reserved. | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1114 |  | 
|  | 1115 | Redistribution and use in source and binary forms, with or without | 
|  | 1116 | modification, are permitted provided that the following conditions | 
|  | 1117 | are met: | 
|  | 1118 | 1. Redistributions of source code must retain the above copyright | 
|  | 1119 | notice, this list of conditions and the following disclaimer. | 
|  | 1120 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 1121 | notice, this list of conditions and the following disclaimer in the | 
|  | 1122 | documentation and/or other materials provided with the distribution. | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1123 | 3. All advertising materials mentioning features or use of this software | 
|  | 1124 | must display the following acknowledgement: | 
|  | 1125 | This product includes software developed by the University of | 
|  | 1126 | California, Berkeley and its contributors. | 
|  | 1127 | 4. Neither the name of the University nor the names of its contributors | 
|  | 1128 | may be used to endorse or promote products derived from this software | 
|  | 1129 | without specific prior written permission. | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1130 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1131 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 1132 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 1133 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 1134 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 1135 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 1136 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 1137 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 1138 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 1139 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 1140 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 1141 | SUCH DAMAGE. | 
|  | 1142 |  | 
|  | 1143 | ------------------------------------------------------------------- | 
|  | 1144 |  | 
|  | 1145 | Copyright (c) 1985, 1993 | 
|  | 1146 | The Regents of the University of California.  All rights reserved. | 
|  | 1147 |  | 
|  | 1148 | Redistribution and use in source and binary forms, with or without | 
|  | 1149 | modification, are permitted provided that the following conditions | 
|  | 1150 | are met: | 
|  | 1151 | 1. Redistributions of source code must retain the above copyright | 
|  | 1152 | notice, this list of conditions and the following disclaimer. | 
|  | 1153 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 1154 | notice, this list of conditions and the following disclaimer in the | 
|  | 1155 | documentation and/or other materials provided with the distribution. | 
|  | 1156 | 3. All advertising materials mentioning features or use of this software | 
|  | 1157 | must display the following acknowledgement: | 
|  | 1158 | This product includes software developed by the University of | 
|  | 1159 | California, Berkeley and its contributors. | 
|  | 1160 | 4. Neither the name of the University nor the names of its contributors | 
|  | 1161 | may be used to endorse or promote products derived from this software | 
|  | 1162 | without specific prior written permission. | 
|  | 1163 |  | 
|  | 1164 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 1165 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 1166 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 1167 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 1168 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 1169 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 1170 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 1171 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 1172 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 1173 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 1174 | SUCH DAMAGE. | 
|  | 1175 |  | 
|  | 1176 | ------------------------------------------------------------------- | 
|  | 1177 |  | 
|  | 1178 | Copyright (c) 1985, 1993 | 
|  | 1179 | The Regents of the University of California.  All rights reserved. | 
|  | 1180 |  | 
|  | 1181 | Redistribution and use in source and binary forms, with or without | 
|  | 1182 | modification, are permitted provided that the following conditions | 
|  | 1183 | are met: | 
|  | 1184 | 1. Redistributions of source code must retain the above copyright | 
|  | 1185 | notice, this list of conditions and the following disclaimer. | 
|  | 1186 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 1187 | notice, this list of conditions and the following disclaimer in the | 
|  | 1188 | documentation and/or other materials provided with the distribution. | 
|  | 1189 | 3. Neither the name of the University nor the names of its contributors | 
|  | 1190 | may be used to endorse or promote products derived from this software | 
|  | 1191 | without specific prior written permission. | 
|  | 1192 |  | 
|  | 1193 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 1194 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 1195 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 1196 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 1197 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 1198 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 1199 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 1200 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 1201 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 1202 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 1203 | SUCH DAMAGE. | 
|  | 1204 |  | 
|  | 1205 | ------------------------------------------------------------------- | 
|  | 1206 |  | 
|  | 1207 | Copyright (c) 1987 Regents of the University of California. | 
|  | 1208 | All rights reserved. | 
|  | 1209 |  | 
|  | 1210 | Redistribution and use in source and binary forms, with or without | 
|  | 1211 | modification, are permitted provided that the following conditions | 
|  | 1212 | are met: | 
|  | 1213 | 1. Redistributions of source code must retain the above copyright | 
|  | 1214 | notice, this list of conditions and the following disclaimer. | 
|  | 1215 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 1216 | notice, this list of conditions and the following disclaimer in the | 
|  | 1217 | documentation and/or other materials provided with the distribution. | 
|  | 1218 | 3. Neither the name of the University nor the names of its contributors | 
|  | 1219 | may be used to endorse or promote products derived from this software | 
|  | 1220 | without specific prior written permission. | 
|  | 1221 |  | 
|  | 1222 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 1223 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 1224 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 1225 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 1226 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 1227 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 1228 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 1229 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 1230 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 1231 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 1232 | SUCH DAMAGE. | 
|  | 1233 |  | 
|  | 1234 | ------------------------------------------------------------------- | 
|  | 1235 |  | 
|  | 1236 | Copyright (c) 1987, 1993 | 
|  | 1237 | The Regents of the University of California.  All rights reserved. | 
|  | 1238 |  | 
|  | 1239 | Redistribution and use in source and binary forms, with or without | 
|  | 1240 | modification, are permitted provided that the following conditions | 
|  | 1241 | are met: | 
|  | 1242 | 1. Redistributions of source code must retain the above copyright | 
|  | 1243 | notice, this list of conditions and the following disclaimer. | 
|  | 1244 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 1245 | notice, this list of conditions and the following disclaimer in the | 
|  | 1246 | documentation and/or other materials provided with the distribution. | 
|  | 1247 | 3. All advertising materials mentioning features or use of this software | 
|  | 1248 | must display the following acknowledgement: | 
|  | 1249 | This product includes software developed by the University of | 
|  | 1250 | California, Berkeley and its contributors. | 
|  | 1251 | 4. Neither the name of the University nor the names of its contributors | 
|  | 1252 | may be used to endorse or promote products derived from this software | 
|  | 1253 | without specific prior written permission. | 
|  | 1254 |  | 
|  | 1255 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 1256 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 1257 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 1258 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 1259 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 1260 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 1261 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 1262 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 1263 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 1264 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 1265 | SUCH DAMAGE. | 
|  | 1266 |  | 
|  | 1267 | ------------------------------------------------------------------- | 
|  | 1268 |  | 
|  | 1269 | Copyright (c) 1987, 1993 | 
|  | 1270 | The Regents of the University of California.  All rights reserved. | 
|  | 1271 |  | 
|  | 1272 | Redistribution and use in source and binary forms, with or without | 
|  | 1273 | modification, are permitted provided that the following conditions | 
|  | 1274 | are met: | 
|  | 1275 | 1. Redistributions of source code must retain the above copyright | 
|  | 1276 | notice, this list of conditions and the following disclaimer. | 
|  | 1277 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 1278 | notice, this list of conditions and the following disclaimer in the | 
|  | 1279 | documentation and/or other materials provided with the distribution. | 
|  | 1280 | 3. Neither the name of the University nor the names of its contributors | 
|  | 1281 | may be used to endorse or promote products derived from this software | 
|  | 1282 | without specific prior written permission. | 
|  | 1283 |  | 
|  | 1284 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 1285 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 1286 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 1287 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 1288 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 1289 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 1290 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 1291 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 1292 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 1293 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 1294 | SUCH DAMAGE. | 
|  | 1295 |  | 
|  | 1296 | ------------------------------------------------------------------- | 
|  | 1297 |  | 
|  | 1298 | Copyright (c) 1988 Regents of the University of California. | 
|  | 1299 | All rights reserved. | 
|  | 1300 |  | 
|  | 1301 | Redistribution and use in source and binary forms, with or without | 
|  | 1302 | modification, are permitted provided that the following conditions | 
|  | 1303 | are met: | 
|  | 1304 | 1. Redistributions of source code must retain the above copyright | 
|  | 1305 | notice, this list of conditions and the following disclaimer. | 
|  | 1306 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 1307 | notice, this list of conditions and the following disclaimer in the | 
|  | 1308 | documentation and/or other materials provided with the distribution. | 
|  | 1309 | 3. Neither the name of the University nor the names of its contributors | 
|  | 1310 | may be used to endorse or promote products derived from this software | 
|  | 1311 | without specific prior written permission. | 
|  | 1312 |  | 
|  | 1313 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 1314 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 1315 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 1316 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 1317 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 1318 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 1319 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 1320 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 1321 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 1322 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 1323 | SUCH DAMAGE. | 
|  | 1324 |  | 
|  | 1325 | ------------------------------------------------------------------- | 
|  | 1326 |  | 
|  | 1327 | Copyright (c) 1988 The Regents of the University of California. | 
|  | 1328 | All rights reserved. | 
|  | 1329 |  | 
|  | 1330 | Redistribution and use in source and binary forms, with or without | 
|  | 1331 | modification, are permitted provided that the following conditions | 
|  | 1332 | are met: | 
|  | 1333 | 1. Redistributions of source code must retain the above copyright | 
|  | 1334 | notice, this list of conditions and the following disclaimer. | 
|  | 1335 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 1336 | notice, this list of conditions and the following disclaimer in the | 
|  | 1337 | documentation and/or other materials provided with the distribution. | 
|  | 1338 | 3. Neither the name of the University nor the names of its contributors | 
|  | 1339 | may be used to endorse or promote products derived from this software | 
|  | 1340 | without specific prior written permission. | 
|  | 1341 |  | 
|  | 1342 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 1343 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 1344 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 1345 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 1346 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 1347 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 1348 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 1349 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 1350 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 1351 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 1352 | SUCH DAMAGE. | 
|  | 1353 |  | 
|  | 1354 | ------------------------------------------------------------------- | 
|  | 1355 |  | 
|  | 1356 | Copyright (c) 1988, 1993 | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1357 | The Regents of the University of California.  All rights reserved. | 
|  | 1358 |  | 
|  | 1359 | Redistribution and use in source and binary forms, with or without | 
|  | 1360 | modification, are permitted provided that the following conditions | 
|  | 1361 | are met: | 
|  | 1362 | 1. Redistributions of source code must retain the above copyright | 
|  | 1363 | notice, this list of conditions and the following disclaimer. | 
|  | 1364 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 1365 | notice, this list of conditions and the following disclaimer in the | 
|  | 1366 | documentation and/or other materials provided with the distribution. | 
|  | 1367 | 3. All advertising materials mentioning features or use of this software | 
|  | 1368 | must display the following acknowledgement: | 
|  | 1369 | This product includes software developed by the University of | 
|  | 1370 | California, Berkeley and its contributors. | 
|  | 1371 | 4. Neither the name of the University nor the names of its contributors | 
|  | 1372 | may be used to endorse or promote products derived from this software | 
|  | 1373 | without specific prior written permission. | 
|  | 1374 |  | 
|  | 1375 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 1376 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 1377 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 1378 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 1379 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 1380 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 1381 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 1382 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 1383 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 1384 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 1385 | SUCH DAMAGE. | 
|  | 1386 |  | 
|  | 1387 | ------------------------------------------------------------------- | 
|  | 1388 |  | 
|  | 1389 | Copyright (c) 1988, 1993 | 
|  | 1390 | The Regents of the University of California.  All rights reserved. | 
|  | 1391 |  | 
|  | 1392 | Redistribution and use in source and binary forms, with or without | 
|  | 1393 | modification, are permitted provided that the following conditions | 
|  | 1394 | are met: | 
|  | 1395 | 1. Redistributions of source code must retain the above copyright | 
|  | 1396 | notice, this list of conditions and the following disclaimer. | 
|  | 1397 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 1398 | notice, this list of conditions and the following disclaimer in the | 
|  | 1399 | documentation and/or other materials provided with the distribution. | 
|  | 1400 | 3. Neither the name of the University nor the names of its contributors | 
|  | 1401 | may be used to endorse or promote products derived from this software | 
|  | 1402 | without specific prior written permission. | 
|  | 1403 |  | 
|  | 1404 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 1405 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 1406 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 1407 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 1408 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 1409 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 1410 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 1411 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 1412 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 1413 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 1414 | SUCH DAMAGE. | 
|  | 1415 |  | 
|  | 1416 | ------------------------------------------------------------------- | 
|  | 1417 |  | 
|  | 1418 | Copyright (c) 1988, 1993 | 
|  | 1419 | The Regents of the University of California.  All rights reserved. | 
|  | 1420 |  | 
|  | 1421 | This code is derived from software written by Ken Arnold and | 
|  | 1422 | published in UNIX Review, Vol. 6, No. 8. | 
|  | 1423 |  | 
|  | 1424 | Redistribution and use in source and binary forms, with or without | 
|  | 1425 | modification, are permitted provided that the following conditions | 
|  | 1426 | are met: | 
|  | 1427 | 1. Redistributions of source code must retain the above copyright | 
|  | 1428 | notice, this list of conditions and the following disclaimer. | 
|  | 1429 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 1430 | notice, this list of conditions and the following disclaimer in the | 
|  | 1431 | documentation and/or other materials provided with the distribution. | 
|  | 1432 | 3. Neither the name of the University nor the names of its contributors | 
|  | 1433 | may be used to endorse or promote products derived from this software | 
|  | 1434 | without specific prior written permission. | 
|  | 1435 |  | 
|  | 1436 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 1437 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 1438 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 1439 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 1440 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 1441 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 1442 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 1443 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 1444 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 1445 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 1446 | SUCH DAMAGE. | 
|  | 1447 |  | 
|  | 1448 | ------------------------------------------------------------------- | 
|  | 1449 |  | 
|  | 1450 | Copyright (c) 1989 The Regents of the University of California. | 
|  | 1451 | All rights reserved. | 
|  | 1452 |  | 
|  | 1453 | Redistribution and use in source and binary forms are permitted | 
|  | 1454 | provided that the above copyright notice and this paragraph are | 
|  | 1455 | duplicated in all such forms and that any documentation, | 
|  | 1456 | advertising materials, and other materials related to such | 
|  | 1457 | distribution and use acknowledge that the software was developed | 
|  | 1458 | by the University of California, Berkeley. The name of the | 
|  | 1459 | University may not be used to endorse or promote products derived | 
|  | 1460 | from this software without specific prior written permission. | 
| Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame^] | 1461 | THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1462 | IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED | 
|  | 1463 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 
|  | 1464 |  | 
|  | 1465 | ------------------------------------------------------------------- | 
|  | 1466 |  | 
|  | 1467 | Copyright (c) 1989 The Regents of the University of California. | 
|  | 1468 | All rights reserved. | 
|  | 1469 |  | 
|  | 1470 | Redistribution and use in source and binary forms, with or without | 
|  | 1471 | modification, are permitted provided that the following conditions | 
|  | 1472 | are met: | 
|  | 1473 | 1. Redistributions of source code must retain the above copyright | 
|  | 1474 | notice, this list of conditions and the following disclaimer. | 
|  | 1475 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 1476 | notice, this list of conditions and the following disclaimer in the | 
|  | 1477 | documentation and/or other materials provided with the distribution. | 
|  | 1478 | 3. Neither the name of the University nor the names of its contributors | 
|  | 1479 | may be used to endorse or promote products derived from this software | 
|  | 1480 | without specific prior written permission. | 
|  | 1481 |  | 
|  | 1482 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 1483 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 1484 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 1485 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 1486 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 1487 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 1488 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 1489 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 1490 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 1491 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 1492 | SUCH DAMAGE. | 
|  | 1493 |  | 
|  | 1494 | ------------------------------------------------------------------- | 
|  | 1495 |  | 
|  | 1496 | Copyright (c) 1989 The Regents of the University of California. | 
|  | 1497 | All rights reserved. | 
|  | 1498 | (c) UNIX System Laboratories, Inc. | 
|  | 1499 | All or some portions of this file are derived from material licensed | 
|  | 1500 | to the University of California by American Telephone and Telegraph | 
|  | 1501 | Co. or Unix System Laboratories, Inc. and are reproduced herein with | 
|  | 1502 | the permission of UNIX System Laboratories, Inc. | 
|  | 1503 |  | 
|  | 1504 | Redistribution and use in source and binary forms, with or without | 
|  | 1505 | modification, are permitted provided that the following conditions | 
|  | 1506 | are met: | 
|  | 1507 | 1. Redistributions of source code must retain the above copyright | 
|  | 1508 | notice, this list of conditions and the following disclaimer. | 
|  | 1509 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 1510 | notice, this list of conditions and the following disclaimer in the | 
|  | 1511 | documentation and/or other materials provided with the distribution. | 
|  | 1512 | 3. Neither the name of the University nor the names of its contributors | 
|  | 1513 | may be used to endorse or promote products derived from this software | 
|  | 1514 | without specific prior written permission. | 
|  | 1515 |  | 
|  | 1516 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 1517 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 1518 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 1519 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 1520 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1521 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 1522 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 1523 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 1524 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 1525 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 1526 | SUCH DAMAGE. | 
|  | 1527 |  | 
|  | 1528 | ------------------------------------------------------------------- | 
|  | 1529 |  | 
|  | 1530 | Copyright (c) 1989, 1993 | 
|  | 1531 | The Regents of the University of California.  All rights reserved. | 
|  | 1532 |  | 
|  | 1533 | Redistribution and use in source and binary forms, with or without | 
|  | 1534 | modification, are permitted provided that the following conditions | 
|  | 1535 | are met: | 
|  | 1536 | 1. Redistributions of source code must retain the above copyright | 
|  | 1537 | notice, this list of conditions and the following disclaimer. | 
|  | 1538 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 1539 | notice, this list of conditions and the following disclaimer in the | 
|  | 1540 | documentation and/or other materials provided with the distribution. | 
|  | 1541 | 3. Neither the name of the University nor the names of its contributors | 
|  | 1542 | may be used to endorse or promote products derived from this software | 
|  | 1543 | without specific prior written permission. | 
|  | 1544 |  | 
|  | 1545 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 1546 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 1547 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 1548 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 1549 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 1550 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 1551 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 1552 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 1553 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 1554 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 1555 | SUCH DAMAGE. | 
|  | 1556 |  | 
|  | 1557 | ------------------------------------------------------------------- | 
|  | 1558 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1559 | Copyright (c) 1989, 1993 | 
|  | 1560 | The Regents of the University of California.  All rights reserved. | 
|  | 1561 |  | 
|  | 1562 | Redistribution and use in source and binary forms, with or without | 
|  | 1563 | modification, are permitted provided that the following conditions | 
|  | 1564 | are met: | 
|  | 1565 | 1. Redistributions of source code must retain the above copyright | 
|  | 1566 | notice, this list of conditions and the following disclaimer. | 
|  | 1567 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 1568 | notice, this list of conditions and the following disclaimer in the | 
|  | 1569 | documentation and/or other materials provided with the distribution. | 
|  | 1570 | 4. Neither the name of the University nor the names of its contributors | 
|  | 1571 | may be used to endorse or promote products derived from this software | 
|  | 1572 | without specific prior written permission. | 
|  | 1573 |  | 
|  | 1574 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 1575 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 1576 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 1577 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 1578 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 1579 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 1580 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 1581 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 1582 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 1583 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 1584 | SUCH DAMAGE. | 
|  | 1585 |  | 
|  | 1586 | ------------------------------------------------------------------- | 
|  | 1587 |  | 
|  | 1588 | Copyright (c) 1989, 1993 | 
|  | 1589 | The Regents of the University of California.  All rights reserved. | 
| Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 1590 |  | 
|  | 1591 | This code is derived from software contributed to Berkeley by | 
|  | 1592 | Roger L. Snyder. | 
|  | 1593 |  | 
|  | 1594 | Redistribution and use in source and binary forms, with or without | 
|  | 1595 | modification, are permitted provided that the following conditions | 
|  | 1596 | are met: | 
|  | 1597 | 1. Redistributions of source code must retain the above copyright | 
|  | 1598 | notice, this list of conditions and the following disclaimer. | 
|  | 1599 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 1600 | notice, this list of conditions and the following disclaimer in the | 
|  | 1601 | documentation and/or other materials provided with the distribution. | 
|  | 1602 | 3. Neither the name of the University nor the names of its contributors | 
|  | 1603 | may be used to endorse or promote products derived from this software | 
|  | 1604 | without specific prior written permission. | 
|  | 1605 |  | 
|  | 1606 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 1607 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 1608 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 1609 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 1610 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 1611 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 1612 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 1613 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 1614 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 1615 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 1616 | SUCH DAMAGE. | 
|  | 1617 |  | 
|  | 1618 | ------------------------------------------------------------------- | 
|  | 1619 |  | 
|  | 1620 | Copyright (c) 1989, 1993 | 
|  | 1621 | The Regents of the University of California.  All rights reserved. | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1622 | (c) UNIX System Laboratories, Inc. | 
|  | 1623 | All or some portions of this file are derived from material licensed | 
|  | 1624 | to the University of California by American Telephone and Telegraph | 
|  | 1625 | Co. or Unix System Laboratories, Inc. and are reproduced herein with | 
|  | 1626 | the permission of UNIX System Laboratories, Inc. | 
|  | 1627 |  | 
|  | 1628 | Redistribution and use in source and binary forms, with or without | 
|  | 1629 | modification, are permitted provided that the following conditions | 
|  | 1630 | are met: | 
|  | 1631 | 1. Redistributions of source code must retain the above copyright | 
|  | 1632 | notice, this list of conditions and the following disclaimer. | 
|  | 1633 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 1634 | notice, this list of conditions and the following disclaimer in the | 
|  | 1635 | documentation and/or other materials provided with the distribution. | 
|  | 1636 | 3. Neither the name of the University nor the names of its contributors | 
|  | 1637 | may be used to endorse or promote products derived from this software | 
|  | 1638 | without specific prior written permission. | 
|  | 1639 |  | 
|  | 1640 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 1641 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 1642 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 1643 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 1644 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 1645 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 1646 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 1647 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 1648 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 1649 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 1650 | SUCH DAMAGE. | 
|  | 1651 |  | 
|  | 1652 | ------------------------------------------------------------------- | 
|  | 1653 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1654 | Copyright (c) 1989, 1993, 1994 | 
|  | 1655 | The Regents of the University of California.  All rights reserved. | 
|  | 1656 |  | 
|  | 1657 | Redistribution and use in source and binary forms, with or without | 
|  | 1658 | modification, are permitted provided that the following conditions | 
|  | 1659 | are met: | 
|  | 1660 | 1. Redistributions of source code must retain the above copyright | 
|  | 1661 | notice, this list of conditions and the following disclaimer. | 
|  | 1662 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 1663 | notice, this list of conditions and the following disclaimer in the | 
|  | 1664 | documentation and/or other materials provided with the distribution. | 
|  | 1665 | 3. Neither the name of the University nor the names of its contributors | 
|  | 1666 | may be used to endorse or promote products derived from this software | 
|  | 1667 | without specific prior written permission. | 
|  | 1668 |  | 
|  | 1669 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 1670 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 1671 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 1672 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 1673 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 1674 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 1675 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 1676 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 1677 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 1678 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 1679 | SUCH DAMAGE. | 
|  | 1680 |  | 
|  | 1681 | ------------------------------------------------------------------- | 
|  | 1682 |  | 
|  | 1683 | Copyright (c) 1990 Regents of the University of California. | 
|  | 1684 | All rights reserved. | 
|  | 1685 |  | 
|  | 1686 | Redistribution and use in source and binary forms, with or without | 
|  | 1687 | modification, are permitted provided that the following conditions | 
|  | 1688 | are met: | 
|  | 1689 | 1. Redistributions of source code must retain the above copyright | 
|  | 1690 | notice, this list of conditions and the following disclaimer. | 
|  | 1691 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 1692 | notice, this list of conditions and the following disclaimer in the | 
|  | 1693 | documentation and/or other materials provided with the distribution. | 
|  | 1694 | 3. Neither the name of the University nor the names of its contributors | 
|  | 1695 | may be used to endorse or promote products derived from this software | 
|  | 1696 | without specific prior written permission. | 
|  | 1697 |  | 
|  | 1698 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 1699 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 1700 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 1701 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 1702 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 1703 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 1704 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 1705 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 1706 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 1707 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 1708 | SUCH DAMAGE. | 
|  | 1709 |  | 
|  | 1710 | ------------------------------------------------------------------- | 
|  | 1711 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1712 | Copyright (c) 1990 The Regents of the University of California. | 
|  | 1713 | All rights reserved. | 
|  | 1714 |  | 
|  | 1715 | Redistribution and use in source and binary forms, with or without | 
|  | 1716 | modification, are permitted provided that the following conditions | 
|  | 1717 | are met: | 
|  | 1718 | 1. Redistributions of source code must retain the above copyright | 
|  | 1719 | notice, this list of conditions and the following disclaimer. | 
|  | 1720 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 1721 | notice, this list of conditions and the following disclaimer in the | 
|  | 1722 | documentation and/or other materials provided with the distribution. | 
|  | 1723 | 3. Neither the name of the University nor the names of its contributors | 
|  | 1724 | may be used to endorse or promote products derived from this software | 
|  | 1725 | without specific prior written permission. | 
|  | 1726 |  | 
|  | 1727 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 1728 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 1729 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 1730 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 1731 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 1732 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 1733 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 1734 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 1735 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 1736 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 1737 | SUCH DAMAGE. | 
|  | 1738 |  | 
|  | 1739 | ------------------------------------------------------------------- | 
|  | 1740 |  | 
|  | 1741 | Copyright (c) 1990 The Regents of the University of California. | 
|  | 1742 | All rights reserved. | 
|  | 1743 |  | 
|  | 1744 | This code is derived from locore.s. | 
|  | 1745 |  | 
|  | 1746 | Redistribution and use in source and binary forms, with or without | 
|  | 1747 | modification, are permitted provided that the following conditions | 
|  | 1748 | are met: | 
|  | 1749 | 1. Redistributions of source code must retain the above copyright | 
|  | 1750 | notice, this list of conditions and the following disclaimer. | 
|  | 1751 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 1752 | notice, this list of conditions and the following disclaimer in the | 
|  | 1753 | documentation and/or other materials provided with the distribution. | 
|  | 1754 | 3. Neither the name of the University nor the names of its contributors | 
|  | 1755 | may be used to endorse or promote products derived from this software | 
|  | 1756 | without specific prior written permission. | 
|  | 1757 |  | 
|  | 1758 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 1759 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 1760 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 1761 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 1762 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 1763 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 1764 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 1765 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 1766 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 1767 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 1768 | SUCH DAMAGE. | 
|  | 1769 |  | 
|  | 1770 | ------------------------------------------------------------------- | 
|  | 1771 |  | 
|  | 1772 | Copyright (c) 1990 The Regents of the University of California. | 
|  | 1773 | All rights reserved. | 
|  | 1774 |  | 
|  | 1775 | This code is derived from software contributed to Berkeley by | 
|  | 1776 | Chris Torek. | 
|  | 1777 |  | 
|  | 1778 | Redistribution and use in source and binary forms, with or without | 
|  | 1779 | modification, are permitted provided that the following conditions | 
|  | 1780 | are met: | 
|  | 1781 | 1. Redistributions of source code must retain the above copyright | 
|  | 1782 | notice, this list of conditions and the following disclaimer. | 
|  | 1783 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 1784 | notice, this list of conditions and the following disclaimer in the | 
|  | 1785 | documentation and/or other materials provided with the distribution. | 
|  | 1786 | 3. Neither the name of the University nor the names of its contributors | 
|  | 1787 | may be used to endorse or promote products derived from this software | 
|  | 1788 | without specific prior written permission. | 
|  | 1789 |  | 
|  | 1790 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 1791 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 1792 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 1793 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 1794 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 1795 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 1796 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 1797 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 1798 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 1799 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 1800 | SUCH DAMAGE. | 
|  | 1801 |  | 
|  | 1802 | ------------------------------------------------------------------- | 
|  | 1803 |  | 
|  | 1804 | Copyright (c) 1990 The Regents of the University of California. | 
|  | 1805 | All rights reserved. | 
|  | 1806 |  | 
|  | 1807 | This code is derived from software contributed to Berkeley by | 
|  | 1808 | William Jolitz. | 
|  | 1809 |  | 
|  | 1810 | Redistribution and use in source and binary forms, with or without | 
|  | 1811 | modification, are permitted provided that the following conditions | 
|  | 1812 | are met: | 
|  | 1813 | 1. Redistributions of source code must retain the above copyright | 
|  | 1814 | notice, this list of conditions and the following disclaimer. | 
|  | 1815 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 1816 | notice, this list of conditions and the following disclaimer in the | 
|  | 1817 | documentation and/or other materials provided with the distribution. | 
|  | 1818 | 3. Neither the name of the University nor the names of its contributors | 
|  | 1819 | may be used to endorse or promote products derived from this software | 
|  | 1820 | without specific prior written permission. | 
|  | 1821 |  | 
|  | 1822 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 1823 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 1824 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 1825 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 1826 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 1827 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 1828 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 1829 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 1830 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 1831 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 1832 | SUCH DAMAGE. | 
|  | 1833 |  | 
|  | 1834 | ------------------------------------------------------------------- | 
|  | 1835 |  | 
|  | 1836 | Copyright (c) 1990, 1993 | 
|  | 1837 | The Regents of the University of California.  All rights reserved. | 
|  | 1838 |  | 
|  | 1839 | Redistribution and use in source and binary forms, with or without | 
|  | 1840 | modification, are permitted provided that the following conditions | 
|  | 1841 | are met: | 
|  | 1842 | 1. Redistributions of source code must retain the above copyright | 
|  | 1843 | notice, this list of conditions and the following disclaimer. | 
|  | 1844 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 1845 | notice, this list of conditions and the following disclaimer in the | 
|  | 1846 | documentation and/or other materials provided with the distribution. | 
|  | 1847 | 3. Neither the name of the University nor the names of its contributors | 
|  | 1848 | may be used to endorse or promote products derived from this software | 
|  | 1849 | without specific prior written permission. | 
|  | 1850 |  | 
|  | 1851 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 1852 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 1853 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 1854 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 1855 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 1856 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 1857 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 1858 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 1859 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 1860 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 1861 | SUCH DAMAGE. | 
|  | 1862 |  | 
|  | 1863 | ------------------------------------------------------------------- | 
|  | 1864 |  | 
|  | 1865 | Copyright (c) 1990, 1993 | 
|  | 1866 | The Regents of the University of California.  All rights reserved. | 
|  | 1867 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1868 | This code is derived from software contributed to Berkeley by | 
|  | 1869 | Chris Torek. | 
|  | 1870 |  | 
|  | 1871 | Redistribution and use in source and binary forms, with or without | 
|  | 1872 | modification, are permitted provided that the following conditions | 
|  | 1873 | are met: | 
|  | 1874 | 1. Redistributions of source code must retain the above copyright | 
|  | 1875 | notice, this list of conditions and the following disclaimer. | 
|  | 1876 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 1877 | notice, this list of conditions and the following disclaimer in the | 
|  | 1878 | documentation and/or other materials provided with the distribution. | 
|  | 1879 | 3. Neither the name of the University nor the names of its contributors | 
|  | 1880 | may be used to endorse or promote products derived from this software | 
|  | 1881 | without specific prior written permission. | 
|  | 1882 |  | 
|  | 1883 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 1884 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 1885 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 1886 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 1887 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 1888 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 1889 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 1890 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 1891 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 1892 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 1893 | SUCH DAMAGE. | 
|  | 1894 |  | 
|  | 1895 | ------------------------------------------------------------------- | 
|  | 1896 |  | 
|  | 1897 | Copyright (c) 1990, 1993 | 
|  | 1898 | The Regents of the University of California.  All rights reserved. | 
|  | 1899 |  | 
|  | 1900 | This code is derived from software contributed to Berkeley by | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1901 | Donn Seeley at UUNET Technologies, Inc. | 
|  | 1902 |  | 
|  | 1903 | Redistribution and use in source and binary forms, with or without | 
|  | 1904 | modification, are permitted provided that the following conditions | 
|  | 1905 | are met: | 
|  | 1906 | 1. Redistributions of source code must retain the above copyright | 
|  | 1907 | notice, this list of conditions and the following disclaimer. | 
|  | 1908 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 1909 | notice, this list of conditions and the following disclaimer in the | 
|  | 1910 | documentation and/or other materials provided with the distribution. | 
|  | 1911 | 3. Neither the name of the University nor the names of its contributors | 
|  | 1912 | may be used to endorse or promote products derived from this software | 
|  | 1913 | without specific prior written permission. | 
|  | 1914 |  | 
|  | 1915 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 1916 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 1917 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 1918 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 1919 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 1920 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 1921 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 1922 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 1923 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 1924 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 1925 | SUCH DAMAGE. | 
|  | 1926 |  | 
|  | 1927 | ------------------------------------------------------------------- | 
|  | 1928 |  | 
|  | 1929 | Copyright (c) 1990, 1993 | 
|  | 1930 | The Regents of the University of California.  All rights reserved. | 
| Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 1931 |  | 
|  | 1932 | This code is derived from software contributed to Berkeley by | 
|  | 1933 | Donn Seeley at UUNET Technologies, Inc. | 
|  | 1934 |  | 
|  | 1935 | Redistribution and use in source and binary forms, with or without | 
|  | 1936 | modification, are permitted provided that the following conditions | 
|  | 1937 | are met: | 
|  | 1938 | 1. Redistributions of source code must retain the above copyright | 
|  | 1939 | notice, this list of conditions and the following disclaimer. | 
|  | 1940 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 1941 | notice, this list of conditions and the following disclaimer in the | 
|  | 1942 | documentation and/or other materials provided with the distribution. | 
|  | 1943 | 4. Neither the name of the University nor the names of its contributors | 
|  | 1944 | may be used to endorse or promote products derived from this software | 
|  | 1945 | without specific prior written permission. | 
|  | 1946 |  | 
|  | 1947 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 1948 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 1949 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 1950 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 1951 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 1952 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 1953 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 1954 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 1955 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 1956 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 1957 | SUCH DAMAGE. | 
|  | 1958 |  | 
|  | 1959 | ------------------------------------------------------------------- | 
|  | 1960 |  | 
|  | 1961 | Copyright (c) 1990, 1993 | 
|  | 1962 | The Regents of the University of California.  All rights reserved. | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1963 | (c) UNIX System Laboratories, Inc. | 
|  | 1964 | All or some portions of this file are derived from material licensed | 
|  | 1965 | to the University of California by American Telephone and Telegraph | 
|  | 1966 | Co. or Unix System Laboratories, Inc. and are reproduced herein with | 
|  | 1967 | the permission of UNIX System Laboratories, Inc. | 
|  | 1968 |  | 
|  | 1969 | Redistribution and use in source and binary forms, with or without | 
|  | 1970 | modification, are permitted provided that the following conditions | 
|  | 1971 | are met: | 
|  | 1972 | 1. Redistributions of source code must retain the above copyright | 
|  | 1973 | notice, this list of conditions and the following disclaimer. | 
|  | 1974 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 1975 | notice, this list of conditions and the following disclaimer in the | 
|  | 1976 | documentation and/or other materials provided with the distribution. | 
|  | 1977 | 3. Neither the name of the University nor the names of its contributors | 
|  | 1978 | may be used to endorse or promote products derived from this software | 
|  | 1979 | without specific prior written permission. | 
|  | 1980 |  | 
|  | 1981 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 1982 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 1983 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 1984 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 1985 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 1986 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 1987 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 1988 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 1989 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 1990 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 1991 | SUCH DAMAGE. | 
|  | 1992 |  | 
|  | 1993 | ------------------------------------------------------------------- | 
|  | 1994 |  | 
|  | 1995 | Copyright (c) 1990, 1993, 1994 | 
|  | 1996 | The Regents of the University of California.  All rights reserved. | 
|  | 1997 |  | 
|  | 1998 | Redistribution and use in source and binary forms, with or without | 
|  | 1999 | modification, are permitted provided that the following conditions | 
|  | 2000 | are met: | 
|  | 2001 | 1. Redistributions of source code must retain the above copyright | 
|  | 2002 | notice, this list of conditions and the following disclaimer. | 
|  | 2003 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 2004 | notice, this list of conditions and the following disclaimer in the | 
|  | 2005 | documentation and/or other materials provided with the distribution. | 
|  | 2006 | 3. Neither the name of the University nor the names of its contributors | 
|  | 2007 | may be used to endorse or promote products derived from this software | 
|  | 2008 | without specific prior written permission. | 
|  | 2009 |  | 
|  | 2010 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 2011 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 2012 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 2013 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 2014 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 2015 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 2016 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 2017 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 2018 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 2019 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 2020 | SUCH DAMAGE. | 
|  | 2021 |  | 
|  | 2022 | ------------------------------------------------------------------- | 
|  | 2023 |  | 
|  | 2024 | Copyright (c) 1990, 1993, 1994 | 
|  | 2025 | The Regents of the University of California.  All rights reserved. | 
|  | 2026 |  | 
|  | 2027 | This code is derived from software contributed to Berkeley by | 
|  | 2028 | Chris Torek. | 
|  | 2029 |  | 
|  | 2030 | Redistribution and use in source and binary forms, with or without | 
|  | 2031 | modification, are permitted provided that the following conditions | 
|  | 2032 | are met: | 
|  | 2033 | 1. Redistributions of source code must retain the above copyright | 
|  | 2034 | notice, this list of conditions and the following disclaimer. | 
|  | 2035 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 2036 | notice, this list of conditions and the following disclaimer in the | 
|  | 2037 | documentation and/or other materials provided with the distribution. | 
|  | 2038 | 3. Neither the name of the University nor the names of its contributors | 
|  | 2039 | may be used to endorse or promote products derived from this software | 
|  | 2040 | without specific prior written permission. | 
|  | 2041 |  | 
|  | 2042 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 2043 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 2044 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 2045 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 2046 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 2047 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 2048 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 2049 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 2050 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 2051 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 2052 | SUCH DAMAGE. | 
|  | 2053 |  | 
|  | 2054 | ------------------------------------------------------------------- | 
|  | 2055 |  | 
| Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2056 | Copyright (c) 1991 The Regents of the University of California. | 
|  | 2057 | All rights reserved. | 
|  | 2058 |  | 
|  | 2059 | Redistribution and use in source and binary forms, with or without | 
|  | 2060 | modification, are permitted provided that the following conditions | 
|  | 2061 | are met: | 
|  | 2062 | 1. Redistributions of source code must retain the above copyright | 
|  | 2063 | notice, this list of conditions and the following disclaimer. | 
|  | 2064 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 2065 | notice, this list of conditions and the following disclaimer in the | 
|  | 2066 | documentation and/or other materials provided with the distribution. | 
|  | 2067 | 3. Neither the name of the University nor the names of its contributors | 
|  | 2068 | may be used to endorse or promote products derived from this software | 
|  | 2069 | without specific prior written permission. | 
|  | 2070 |  | 
|  | 2071 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 2072 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 2073 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 2074 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 2075 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 2076 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 2077 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 2078 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 2079 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 2080 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 2081 | SUCH DAMAGE. | 
|  | 2082 |  | 
|  | 2083 | ------------------------------------------------------------------- | 
|  | 2084 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2085 | Copyright (c) 1991, 1993 | 
|  | 2086 | The Regents of the University of California.  All rights reserved. | 
|  | 2087 |  | 
|  | 2088 | Redistribution and use in source and binary forms, with or without | 
|  | 2089 | modification, are permitted provided that the following conditions | 
|  | 2090 | are met: | 
|  | 2091 | 1. Redistributions of source code must retain the above copyright | 
|  | 2092 | notice, this list of conditions and the following disclaimer. | 
|  | 2093 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 2094 | notice, this list of conditions and the following disclaimer in the | 
|  | 2095 | documentation and/or other materials provided with the distribution. | 
|  | 2096 | 3. Neither the name of the University nor the names of its contributors | 
|  | 2097 | may be used to endorse or promote products derived from this software | 
|  | 2098 | without specific prior written permission. | 
|  | 2099 |  | 
|  | 2100 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 2101 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 2102 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 2103 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 2104 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 2105 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 2106 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 2107 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 2108 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 2109 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 2110 | SUCH DAMAGE. | 
|  | 2111 |  | 
|  | 2112 | ------------------------------------------------------------------- | 
|  | 2113 |  | 
|  | 2114 | Copyright (c) 1991, 1993 | 
|  | 2115 | The Regents of the University of California.  All rights reserved. | 
|  | 2116 |  | 
|  | 2117 | This code is derived from software contributed to Berkeley by | 
|  | 2118 | Berkeley Software Design, Inc. | 
|  | 2119 |  | 
|  | 2120 | Redistribution and use in source and binary forms, with or without | 
|  | 2121 | modification, are permitted provided that the following conditions | 
|  | 2122 | are met: | 
|  | 2123 | 1. Redistributions of source code must retain the above copyright | 
|  | 2124 | notice, this list of conditions and the following disclaimer. | 
|  | 2125 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 2126 | notice, this list of conditions and the following disclaimer in the | 
|  | 2127 | documentation and/or other materials provided with the distribution. | 
|  | 2128 | 3. Neither the name of the University nor the names of its contributors | 
|  | 2129 | may be used to endorse or promote products derived from this software | 
|  | 2130 | without specific prior written permission. | 
|  | 2131 |  | 
|  | 2132 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 2133 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 2134 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 2135 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 2136 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 2137 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 2138 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 2139 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 2140 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 2141 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 2142 | SUCH DAMAGE. | 
|  | 2143 |  | 
|  | 2144 | ------------------------------------------------------------------- | 
|  | 2145 |  | 
|  | 2146 | Copyright (c) 1991, 1993 | 
|  | 2147 | The Regents of the University of California.  All rights reserved. | 
|  | 2148 | (c) UNIX System Laboratories, Inc. | 
|  | 2149 | All or some portions of this file are derived from material licensed | 
|  | 2150 | to the University of California by American Telephone and Telegraph | 
|  | 2151 | Co. or Unix System Laboratories, Inc. and are reproduced herein with | 
|  | 2152 | the permission of UNIX System Laboratories, Inc. | 
|  | 2153 |  | 
|  | 2154 | This code is derived from software contributed to Berkeley by | 
|  | 2155 | Hugh Smith at The University of Guelph. | 
|  | 2156 |  | 
|  | 2157 | Redistribution and use in source and binary forms, with or without | 
|  | 2158 | modification, are permitted provided that the following conditions | 
|  | 2159 | are met: | 
|  | 2160 | 1. Redistributions of source code must retain the above copyright | 
|  | 2161 | notice, this list of conditions and the following disclaimer. | 
|  | 2162 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 2163 | notice, this list of conditions and the following disclaimer in the | 
|  | 2164 | documentation and/or other materials provided with the distribution. | 
|  | 2165 | 3. Neither the name of the University nor the names of its contributors | 
|  | 2166 | may be used to endorse or promote products derived from this software | 
|  | 2167 | without specific prior written permission. | 
|  | 2168 |  | 
|  | 2169 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 2170 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 2171 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 2172 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 2173 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 2174 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 2175 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 2176 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 2177 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 2178 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 2179 | SUCH DAMAGE. | 
|  | 2180 |  | 
|  | 2181 | ------------------------------------------------------------------- | 
|  | 2182 |  | 
|  | 2183 | Copyright (c) 1991, 1993, 1995, | 
|  | 2184 | The Regents of the University of California.  All rights reserved. | 
|  | 2185 |  | 
|  | 2186 | This code is derived from software contributed to Berkeley by | 
|  | 2187 | Havard Eidnes. | 
|  | 2188 |  | 
|  | 2189 | Redistribution and use in source and binary forms, with or without | 
|  | 2190 | modification, are permitted provided that the following conditions | 
|  | 2191 | are met: | 
|  | 2192 | 1. Redistributions of source code must retain the above copyright | 
|  | 2193 | notice, this list of conditions and the following disclaimer. | 
|  | 2194 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 2195 | notice, this list of conditions and the following disclaimer in the | 
|  | 2196 | documentation and/or other materials provided with the distribution. | 
|  | 2197 | 3. Neither the name of the University nor the names of its contributors | 
|  | 2198 | may be used to endorse or promote products derived from this software | 
|  | 2199 | without specific prior written permission. | 
|  | 2200 |  | 
|  | 2201 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 2202 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 2203 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 2204 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 2205 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 2206 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 2207 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 2208 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 2209 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 2210 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 2211 | SUCH DAMAGE. | 
|  | 2212 |  | 
|  | 2213 | ------------------------------------------------------------------- | 
|  | 2214 |  | 
|  | 2215 | Copyright (c) 1992 Henry Spencer. | 
|  | 2216 | Copyright (c) 1992, 1993 | 
|  | 2217 | The Regents of the University of California.  All rights reserved. | 
|  | 2218 |  | 
|  | 2219 | This code is derived from software contributed to Berkeley by | 
|  | 2220 | Henry Spencer of the University of Toronto. | 
|  | 2221 |  | 
|  | 2222 | Redistribution and use in source and binary forms, with or without | 
|  | 2223 | modification, are permitted provided that the following conditions | 
|  | 2224 | are met: | 
|  | 2225 | 1. Redistributions of source code must retain the above copyright | 
|  | 2226 | notice, this list of conditions and the following disclaimer. | 
|  | 2227 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 2228 | notice, this list of conditions and the following disclaimer in the | 
|  | 2229 | documentation and/or other materials provided with the distribution. | 
|  | 2230 | 3. Neither the name of the University nor the names of its contributors | 
|  | 2231 | may be used to endorse or promote products derived from this software | 
|  | 2232 | without specific prior written permission. | 
|  | 2233 |  | 
|  | 2234 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 2235 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 2236 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 2237 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 2238 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 2239 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 2240 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 2241 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 2242 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 2243 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 2244 | SUCH DAMAGE. | 
|  | 2245 |  | 
|  | 2246 | ------------------------------------------------------------------- | 
|  | 2247 |  | 
|  | 2248 | Copyright (c) 1992 The Regents of the University of California. | 
|  | 2249 | All rights reserved. | 
|  | 2250 |  | 
|  | 2251 | Redistribution and use in source and binary forms, with or without | 
|  | 2252 | modification, are permitted provided that the following conditions | 
|  | 2253 | are met: | 
|  | 2254 | 1. Redistributions of source code must retain the above copyright | 
|  | 2255 | notice, this list of conditions and the following disclaimer. | 
|  | 2256 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 2257 | notice, this list of conditions and the following disclaimer in the | 
|  | 2258 | documentation and/or other materials provided with the distribution. | 
|  | 2259 | 3. Neither the name of the University nor the names of its contributors | 
|  | 2260 | may be used to endorse or promote products derived from this software | 
|  | 2261 | without specific prior written permission. | 
|  | 2262 |  | 
|  | 2263 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 2264 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 2265 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 2266 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 2267 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 2268 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 2269 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 2270 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 2271 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 2272 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 2273 | SUCH DAMAGE. | 
|  | 2274 |  | 
|  | 2275 | ------------------------------------------------------------------- | 
|  | 2276 |  | 
|  | 2277 | Copyright (c) 1992, 1993 | 
|  | 2278 | The Regents of the University of California.  All rights reserved. | 
|  | 2279 |  | 
|  | 2280 | Redistribution and use in source and binary forms, with or without | 
|  | 2281 | modification, are permitted provided that the following conditions | 
|  | 2282 | are met: | 
|  | 2283 | 1. Redistributions of source code must retain the above copyright | 
|  | 2284 | notice, this list of conditions and the following disclaimer. | 
|  | 2285 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 2286 | notice, this list of conditions and the following disclaimer in the | 
|  | 2287 | documentation and/or other materials provided with the distribution. | 
|  | 2288 | 3. Neither the name of the University nor the names of its contributors | 
|  | 2289 | may be used to endorse or promote products derived from this software | 
|  | 2290 | without specific prior written permission. | 
|  | 2291 |  | 
|  | 2292 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 2293 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 2294 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 2295 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 2296 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 2297 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 2298 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 2299 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 2300 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 2301 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 2302 | SUCH DAMAGE. | 
|  | 2303 |  | 
|  | 2304 | ------------------------------------------------------------------- | 
|  | 2305 |  | 
|  | 2306 | Copyright (c) 1992, 1993 | 
|  | 2307 | The Regents of the University of California.  All rights reserved. | 
|  | 2308 |  | 
|  | 2309 | This code is derived from software contributed to Berkeley by | 
|  | 2310 | Ralph Campbell. | 
|  | 2311 |  | 
|  | 2312 | Redistribution and use in source and binary forms, with or without | 
|  | 2313 | modification, are permitted provided that the following conditions | 
|  | 2314 | are met: | 
|  | 2315 | 1. Redistributions of source code must retain the above copyright | 
|  | 2316 | notice, this list of conditions and the following disclaimer. | 
|  | 2317 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 2318 | notice, this list of conditions and the following disclaimer in the | 
|  | 2319 | documentation and/or other materials provided with the distribution. | 
|  | 2320 | 3. Neither the name of the University nor the names of its contributors | 
|  | 2321 | may be used to endorse or promote products derived from this software | 
|  | 2322 | without specific prior written permission. | 
|  | 2323 |  | 
|  | 2324 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 2325 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 2326 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 2327 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 2328 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 2329 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 2330 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 2331 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 2332 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 2333 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 2334 | SUCH DAMAGE. | 
|  | 2335 |  | 
|  | 2336 | ------------------------------------------------------------------- | 
|  | 2337 |  | 
|  | 2338 | Copyright (c) 1992, 1993 | 
|  | 2339 | The Regents of the University of California.  All rights reserved. | 
|  | 2340 |  | 
|  | 2341 | This code is derived from software contributed to Berkeley by | 
|  | 2342 | Ralph Campbell. This file is derived from the MIPS RISC | 
|  | 2343 | Architecture book by Gerry Kane. | 
|  | 2344 |  | 
|  | 2345 | Redistribution and use in source and binary forms, with or without | 
|  | 2346 | modification, are permitted provided that the following conditions | 
|  | 2347 | are met: | 
|  | 2348 | 1. Redistributions of source code must retain the above copyright | 
|  | 2349 | notice, this list of conditions and the following disclaimer. | 
|  | 2350 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 2351 | notice, this list of conditions and the following disclaimer in the | 
|  | 2352 | documentation and/or other materials provided with the distribution. | 
|  | 2353 | 3. Neither the name of the University nor the names of its contributors | 
|  | 2354 | may be used to endorse or promote products derived from this software | 
|  | 2355 | without specific prior written permission. | 
|  | 2356 |  | 
|  | 2357 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 2358 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 2359 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 2360 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 2361 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 2362 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 2363 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 2364 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 2365 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 2366 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 2367 | SUCH DAMAGE. | 
|  | 2368 |  | 
|  | 2369 | ------------------------------------------------------------------- | 
|  | 2370 |  | 
|  | 2371 | Copyright (c) 1992, 1993 | 
|  | 2372 | The Regents of the University of California.  All rights reserved. | 
|  | 2373 |  | 
|  | 2374 | This software was developed by the Computer Systems Engineering group | 
|  | 2375 | at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and | 
|  | 2376 | contributed to Berkeley. | 
|  | 2377 |  | 
|  | 2378 | All advertising materials mentioning features or use of this software | 
|  | 2379 | must display the following acknowledgement: | 
|  | 2380 | This product includes software developed by the University of | 
|  | 2381 | California, Lawrence Berkeley Laboratory. | 
|  | 2382 |  | 
|  | 2383 | Redistribution and use in source and binary forms, with or without | 
|  | 2384 | modification, are permitted provided that the following conditions | 
|  | 2385 | are met: | 
|  | 2386 | 1. Redistributions of source code must retain the above copyright | 
|  | 2387 | notice, this list of conditions and the following disclaimer. | 
|  | 2388 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 2389 | notice, this list of conditions and the following disclaimer in the | 
|  | 2390 | documentation and/or other materials provided with the distribution. | 
|  | 2391 | 3. All advertising materials mentioning features or use of this software | 
|  | 2392 | must display the following acknowledgement: | 
|  | 2393 | This product includes software developed by the University of | 
|  | 2394 | California, Berkeley and its contributors. | 
|  | 2395 | 4. Neither the name of the University nor the names of its contributors | 
|  | 2396 | may be used to endorse or promote products derived from this software | 
|  | 2397 | without specific prior written permission. | 
|  | 2398 |  | 
|  | 2399 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 2400 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 2401 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 2402 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 2403 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 2404 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 2405 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 2406 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 2407 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 2408 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 2409 | SUCH DAMAGE. | 
|  | 2410 |  | 
|  | 2411 | ------------------------------------------------------------------- | 
|  | 2412 |  | 
|  | 2413 | Copyright (c) 1992, 1993 | 
|  | 2414 | The Regents of the University of California.  All rights reserved. | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2415 | (c) UNIX System Laboratories, Inc. | 
|  | 2416 | All or some portions of this file are derived from material licensed | 
|  | 2417 | to the University of California by American Telephone and Telegraph | 
|  | 2418 | Co. or Unix System Laboratories, Inc. and are reproduced herein with | 
|  | 2419 | the permission of UNIX System Laboratories, Inc. | 
|  | 2420 |  | 
|  | 2421 | Redistribution and use in source and binary forms, with or without | 
|  | 2422 | modification, are permitted provided that the following conditions | 
|  | 2423 | are met: | 
|  | 2424 | 1. Redistributions of source code must retain the above copyright | 
|  | 2425 | notice, this list of conditions and the following disclaimer. | 
|  | 2426 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 2427 | notice, this list of conditions and the following disclaimer in the | 
|  | 2428 | documentation and/or other materials provided with the distribution. | 
|  | 2429 | 3. Neither the name of the University nor the names of its contributors | 
|  | 2430 | may be used to endorse or promote products derived from this software | 
|  | 2431 | without specific prior written permission. | 
|  | 2432 |  | 
|  | 2433 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 2434 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 2435 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 2436 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 2437 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 2438 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 2439 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 2440 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 2441 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 2442 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 2443 | SUCH DAMAGE. | 
|  | 2444 |  | 
|  | 2445 | ------------------------------------------------------------------- | 
|  | 2446 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2447 | Copyright (c) 1992, 1993, 1994 | 
|  | 2448 | The Regents of the University of California.  All rights reserved. | 
|  | 2449 |  | 
|  | 2450 | This code is derived from software contributed to Berkeley by | 
|  | 2451 | Henry Spencer. | 
|  | 2452 |  | 
|  | 2453 | Redistribution and use in source and binary forms, with or without | 
|  | 2454 | modification, are permitted provided that the following conditions | 
|  | 2455 | are met: | 
|  | 2456 | 1. Redistributions of source code must retain the above copyright | 
|  | 2457 | notice, this list of conditions and the following disclaimer. | 
|  | 2458 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 2459 | notice, this list of conditions and the following disclaimer in the | 
|  | 2460 | documentation and/or other materials provided with the distribution. | 
|  | 2461 | 3. Neither the name of the University nor the names of its contributors | 
|  | 2462 | may be used to endorse or promote products derived from this software | 
|  | 2463 | without specific prior written permission. | 
|  | 2464 |  | 
|  | 2465 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 2466 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 2467 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 2468 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 2469 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 2470 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 2471 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 2472 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 2473 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 2474 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 2475 | SUCH DAMAGE. | 
|  | 2476 |  | 
|  | 2477 | ------------------------------------------------------------------- | 
|  | 2478 |  | 
| Elliott Hughes | cc213f8 | 2012-08-14 15:32:42 -0700 | [diff] [blame] | 2479 | Copyright (c) 1992, 1993, 1994 Henry Spencer. | 
|  | 2480 |  | 
|  | 2481 | This code is derived from software contributed to Berkeley by | 
|  | 2482 | Henry Spencer. | 
|  | 2483 |  | 
|  | 2484 | Redistribution and use in source and binary forms, with or without | 
|  | 2485 | modification, are permitted provided that the following conditions | 
|  | 2486 | are met: | 
|  | 2487 | 1. Redistributions of source code must retain the above copyright | 
|  | 2488 | notice, this list of conditions and the following disclaimer. | 
|  | 2489 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 2490 | notice, this list of conditions and the following disclaimer in the | 
|  | 2491 | documentation and/or other materials provided with the distribution. | 
|  | 2492 | 3. All advertising materials mentioning features or use of this software | 
|  | 2493 | must display the following acknowledgement: | 
|  | 2494 | This product includes software developed by the University of | 
|  | 2495 | California, Berkeley and its contributors. | 
|  | 2496 | 4. Neither the name of the University nor the names of its contributors | 
|  | 2497 | may be used to endorse or promote products derived from this software | 
|  | 2498 | without specific prior written permission. | 
|  | 2499 |  | 
|  | 2500 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 2501 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 2502 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 2503 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 2504 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 2505 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 2506 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 2507 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 2508 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 2509 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 2510 | SUCH DAMAGE. | 
|  | 2511 |  | 
|  | 2512 | ------------------------------------------------------------------- | 
|  | 2513 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2514 | Copyright (c) 1993 | 
|  | 2515 | The Regents of the University of California.  All rights reserved. | 
|  | 2516 |  | 
|  | 2517 | Redistribution and use in source and binary forms, with or without | 
|  | 2518 | modification, are permitted provided that the following conditions | 
|  | 2519 | are met: | 
|  | 2520 | 1. Redistributions of source code must retain the above copyright | 
|  | 2521 | notice, this list of conditions and the following disclaimer. | 
|  | 2522 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 2523 | notice, this list of conditions and the following disclaimer in the | 
|  | 2524 | documentation and/or other materials provided with the distribution. | 
|  | 2525 | 3. Neither the name of the University nor the names of its contributors | 
|  | 2526 | may be used to endorse or promote products derived from this software | 
|  | 2527 | without specific prior written permission. | 
|  | 2528 |  | 
|  | 2529 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 2530 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 2531 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 2532 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 2533 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 2534 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 2535 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 2536 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 2537 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 2538 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 2539 | SUCH DAMAGE. | 
|  | 2540 |  | 
|  | 2541 | ------------------------------------------------------------------- | 
|  | 2542 |  | 
|  | 2543 | Copyright (c) 1993 | 
|  | 2544 | The Regents of the University of California.  All rights reserved. | 
|  | 2545 |  | 
|  | 2546 | Redistribution and use in source and binary forms, with or without | 
|  | 2547 | modification, are permitted provided that the following conditions | 
|  | 2548 | are met: | 
|  | 2549 | 1. Redistributions of source code must retain the above copyright | 
|  | 2550 | notice, this list of conditions and the following disclaimer. | 
|  | 2551 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 2552 | notice, this list of conditions and the following disclaimer in the | 
|  | 2553 | documentation and/or other materials provided with the distribution. | 
|  | 2554 | 3. Neither the name of the University nor the names of its contributors | 
|  | 2555 | may be used to endorse or promote products derived from this software | 
|  | 2556 | without specific prior written permission. | 
|  | 2557 |  | 
|  | 2558 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 2559 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 2560 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 2561 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 2562 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 2563 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 2564 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 2565 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 2566 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 2567 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 2568 | SUCH DAMAGE. | 
|  | 2569 |  | 
|  | 2570 | ------------------------------------------------------------------- | 
|  | 2571 |  | 
|  | 2572 | Copyright (c) 1993 Christopher G. Demetriou | 
|  | 2573 | All rights reserved. | 
|  | 2574 |  | 
|  | 2575 | Redistribution and use in source and binary forms, with or without | 
|  | 2576 | modification, are permitted provided that the following conditions | 
|  | 2577 | are met: | 
|  | 2578 | 1. Redistributions of source code must retain the above copyright | 
|  | 2579 | notice, this list of conditions and the following disclaimer. | 
|  | 2580 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 2581 | notice, this list of conditions and the following disclaimer in the | 
|  | 2582 | documentation and/or other materials provided with the distribution. | 
|  | 2583 | 3. The name of the author may not be used to endorse or promote products | 
|  | 2584 | derived from this software without specific prior written permission | 
|  | 2585 |  | 
|  | 2586 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR | 
|  | 2587 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES | 
|  | 2588 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. | 
|  | 2589 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, | 
|  | 2590 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | 
|  | 2591 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 
|  | 2592 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 
|  | 2593 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 
|  | 2594 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 
|  | 2595 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
|  | 2596 |  | 
|  | 2597 | ------------------------------------------------------------------- | 
|  | 2598 |  | 
|  | 2599 | Copyright (c) 1993 Martin Birgmeier | 
|  | 2600 | All rights reserved. | 
|  | 2601 |  | 
|  | 2602 | You may redistribute unmodified or modified versions of this source | 
|  | 2603 | code provided that the above copyright notice and this and the | 
|  | 2604 | following conditions are retained. | 
|  | 2605 |  | 
|  | 2606 | This software is provided ``as is'', and comes with no warranties | 
|  | 2607 | of any kind. I shall in no event be liable for anything that happens | 
|  | 2608 | to anyone/anything when using this software. | 
|  | 2609 |  | 
|  | 2610 | ------------------------------------------------------------------- | 
|  | 2611 |  | 
| Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2612 | Copyright (c) 1994 SigmaSoft, Th. Lockert <tholo@sigmasoft.com> | 
| Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2613 | All rights reserved. | 
|  | 2614 |  | 
| Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2615 | Redistribution and use in source and binary forms, with or without | 
|  | 2616 | modification, are permitted provided that the following conditions | 
|  | 2617 | are met: | 
|  | 2618 | 1. Redistributions of source code must retain the above copyright | 
|  | 2619 | notice, this list of conditions and the following disclaimer. | 
|  | 2620 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 2621 | notice, this list of conditions and the following disclaimer in the | 
|  | 2622 | documentation and/or other materials provided with the distribution. | 
| Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2623 | 3. The name of the author may not be used to endorse or promote products | 
|  | 2624 | derived from this software without specific prior written permission. | 
| Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2625 |  | 
| Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2626 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR | 
|  | 2627 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES | 
|  | 2628 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. | 
|  | 2629 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 
|  | 2630 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | 
|  | 2631 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; | 
|  | 2632 | OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, | 
|  | 2633 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR | 
|  | 2634 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | 
|  | 2635 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
| Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2636 |  | 
|  | 2637 | ------------------------------------------------------------------- | 
|  | 2638 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2639 | Copyright (c) 1995, 1996 Carnegie-Mellon University. | 
|  | 2640 | All rights reserved. | 
|  | 2641 |  | 
|  | 2642 | Author: Chris G. Demetriou | 
|  | 2643 |  | 
|  | 2644 | Permission to use, copy, modify and distribute this software and | 
|  | 2645 | its documentation is hereby granted, provided that both the copyright | 
|  | 2646 | notice and this permission notice appear in all copies of the | 
|  | 2647 | software, derivative works or modified versions, and any portions | 
|  | 2648 | thereof, and that both notices appear in supporting documentation. | 
|  | 2649 |  | 
|  | 2650 | CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" | 
|  | 2651 | CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND | 
|  | 2652 | FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. | 
|  | 2653 |  | 
|  | 2654 | Carnegie Mellon requests users of this software to return to | 
|  | 2655 |  | 
|  | 2656 | Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU | 
|  | 2657 | School of Computer Science | 
|  | 2658 | Carnegie Mellon University | 
|  | 2659 | Pittsburgh PA 15213-3890 | 
|  | 2660 |  | 
|  | 2661 | any improvements or extensions that they make and grant Carnegie the | 
|  | 2662 | rights to redistribute these changes. | 
|  | 2663 |  | 
|  | 2664 | ------------------------------------------------------------------- | 
|  | 2665 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2666 | Copyright (c) 1996 by Internet Software Consortium. | 
|  | 2667 |  | 
|  | 2668 | Permission to use, copy, modify, and distribute this software for any | 
|  | 2669 | purpose with or without fee is hereby granted, provided that the above | 
|  | 2670 | copyright notice and this permission notice appear in all copies. | 
|  | 2671 |  | 
|  | 2672 | THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS | 
|  | 2673 | ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES | 
|  | 2674 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE | 
|  | 2675 | CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL | 
|  | 2676 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR | 
|  | 2677 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS | 
|  | 2678 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS | 
|  | 2679 | SOFTWARE. | 
|  | 2680 |  | 
|  | 2681 | ------------------------------------------------------------------- | 
|  | 2682 |  | 
|  | 2683 | Copyright (c) 1996, David Mazieres <dm@uun.org> | 
|  | 2684 | Copyright (c) 2008, Damien Miller <djm@openbsd.org> | 
| Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame^] | 2685 | Copyright (c) 2013, Markus Friedl <markus@openbsd.org> | 
|  | 2686 |  | 
|  | 2687 | Permission to use, copy, modify, and distribute this software for any | 
|  | 2688 | purpose with or without fee is hereby granted, provided that the above | 
|  | 2689 | copyright notice and this permission notice appear in all copies. | 
|  | 2690 |  | 
|  | 2691 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | 
|  | 2692 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | 
|  | 2693 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | 
|  | 2694 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | 
|  | 2695 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | 
|  | 2696 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | 
|  | 2697 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 
|  | 2698 |  | 
|  | 2699 | ------------------------------------------------------------------- | 
|  | 2700 |  | 
|  | 2701 | Copyright (c) 1996-1998, 2008 Theo de Raadt | 
|  | 2702 | Copyright (c) 1997, 2008-2009 Todd C. Miller | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2703 |  | 
|  | 2704 | Permission to use, copy, modify, and distribute this software for any | 
|  | 2705 | purpose with or without fee is hereby granted, provided that the above | 
|  | 2706 | copyright notice and this permission notice appear in all copies. | 
|  | 2707 |  | 
|  | 2708 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | 
|  | 2709 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | 
|  | 2710 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | 
|  | 2711 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | 
|  | 2712 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | 
|  | 2713 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | 
|  | 2714 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 
|  | 2715 |  | 
|  | 2716 | ------------------------------------------------------------------- | 
|  | 2717 |  | 
|  | 2718 | Copyright (c) 1996-2004 Per Fogelstrom, Opsycon AB | 
|  | 2719 |  | 
|  | 2720 | Redistribution and use in source and binary forms, with or without | 
|  | 2721 | modification, are permitted provided that the following conditions | 
|  | 2722 | are met: | 
|  | 2723 | 1. Redistributions of source code must retain the above copyright | 
|  | 2724 | notice, this list of conditions and the following disclaimer. | 
|  | 2725 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 2726 | notice, this list of conditions and the following disclaimer in the | 
|  | 2727 | documentation and/or other materials provided with the distribution. | 
|  | 2728 |  | 
|  | 2729 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS | 
|  | 2730 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | 
|  | 2731 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 2732 | ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY | 
|  | 2733 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 2734 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 2735 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 2736 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 2737 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 2738 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 2739 | SUCH DAMAGE. | 
|  | 2740 |  | 
|  | 2741 | ------------------------------------------------------------------- | 
|  | 2742 |  | 
|  | 2743 | Copyright (c) 1997 Mark Brinicombe | 
|  | 2744 | All rights reserved. | 
|  | 2745 |  | 
|  | 2746 | Redistribution and use in source and binary forms, with or without | 
|  | 2747 | modification, are permitted provided that the following conditions | 
|  | 2748 | are met: | 
|  | 2749 | 1. Redistributions of source code must retain the above copyright | 
|  | 2750 | notice, this list of conditions and the following disclaimer. | 
|  | 2751 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 2752 | notice, this list of conditions and the following disclaimer in the | 
|  | 2753 | documentation and/or other materials provided with the distribution. | 
|  | 2754 | 3. All advertising materials mentioning features or use of this software | 
|  | 2755 | must display the following acknowledgement: | 
|  | 2756 | This product includes software developed by Mark Brinicombe | 
|  | 2757 | 4. Neither the name of the University nor the names of its contributors | 
|  | 2758 | may be used to endorse or promote products derived from this software | 
|  | 2759 | without specific prior written permission. | 
|  | 2760 |  | 
|  | 2761 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND | 
|  | 2762 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 2763 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 2764 | ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | 
|  | 2765 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 2766 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 2767 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 2768 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 2769 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 2770 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 2771 | SUCH DAMAGE. | 
|  | 2772 |  | 
|  | 2773 | ------------------------------------------------------------------- | 
|  | 2774 |  | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2775 | Copyright (c) 1997 Mark Brinicombe | 
|  | 2776 | Copyright (c) 2010 Android Open Source Project. | 
|  | 2777 | All rights reserved. | 
|  | 2778 |  | 
|  | 2779 | Redistribution and use in source and binary forms, with or without | 
|  | 2780 | modification, are permitted provided that the following conditions | 
|  | 2781 | are met: | 
|  | 2782 | 1. Redistributions of source code must retain the above copyright | 
|  | 2783 | notice, this list of conditions and the following disclaimer. | 
|  | 2784 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 2785 | notice, this list of conditions and the following disclaimer in the | 
|  | 2786 | documentation and/or other materials provided with the distribution. | 
|  | 2787 | 3. All advertising materials mentioning features or use of this software | 
|  | 2788 | must display the following acknowledgement: | 
|  | 2789 | This product includes software developed by Mark Brinicombe | 
|  | 2790 | 4. Neither the name of the University nor the names of its contributors | 
|  | 2791 | may be used to endorse or promote products derived from this software | 
|  | 2792 | without specific prior written permission. | 
|  | 2793 |  | 
|  | 2794 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND | 
|  | 2795 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 2796 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 2797 | ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | 
|  | 2798 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 2799 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 2800 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 2801 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 2802 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 2803 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 2804 | SUCH DAMAGE. | 
|  | 2805 |  | 
|  | 2806 | ------------------------------------------------------------------- | 
|  | 2807 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2808 | Copyright (c) 1997 Niklas Hallqvist.  All rights reserved. | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2809 |  | 
|  | 2810 | Redistribution and use in source and binary forms, with or without | 
|  | 2811 | modification, are permitted provided that the following conditions | 
|  | 2812 | are met: | 
|  | 2813 | 1. Redistributions of source code must retain the above copyright | 
|  | 2814 | notice, this list of conditions and the following disclaimer. | 
|  | 2815 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 2816 | notice, this list of conditions and the following disclaimer in the | 
|  | 2817 | documentation and/or other materials provided with the distribution. | 
|  | 2818 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2819 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR | 
|  | 2820 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES | 
|  | 2821 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. | 
|  | 2822 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, | 
|  | 2823 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | 
|  | 2824 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 
|  | 2825 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 
|  | 2826 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 
|  | 2827 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 
|  | 2828 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2829 |  | 
|  | 2830 | ------------------------------------------------------------------- | 
|  | 2831 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2832 | Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com> | 
|  | 2833 |  | 
|  | 2834 | Permission to use, copy, modify, and distribute this software for any | 
|  | 2835 | purpose with or without fee is hereby granted, provided that the above | 
|  | 2836 | copyright notice and this permission notice appear in all copies. | 
|  | 2837 |  | 
|  | 2838 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | 
|  | 2839 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | 
|  | 2840 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | 
|  | 2841 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | 
|  | 2842 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | 
|  | 2843 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | 
|  | 2844 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 
|  | 2845 |  | 
|  | 2846 | ------------------------------------------------------------------- | 
|  | 2847 |  | 
| Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 2848 | Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com> | 
|  | 2849 | All rights reserved. | 
|  | 2850 |  | 
|  | 2851 | Redistribution and use in source and binary forms, with or without | 
|  | 2852 | modification, are permitted provided that the following conditions | 
|  | 2853 | are met: | 
|  | 2854 | 1. Redistributions of source code must retain the above copyright | 
|  | 2855 | notice, this list of conditions and the following disclaimer. | 
|  | 2856 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 2857 | notice, this list of conditions and the following disclaimer in the | 
|  | 2858 | documentation and/or other materials provided with the distribution. | 
|  | 2859 | 3. The name of the author may not be used to endorse or promote products | 
|  | 2860 | derived from this software without specific prior written permission. | 
|  | 2861 |  | 
|  | 2862 | THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, | 
|  | 2863 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY | 
|  | 2864 | AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL | 
|  | 2865 | THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | 
|  | 2866 | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | 
|  | 2867 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; | 
|  | 2868 | OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, | 
|  | 2869 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR | 
|  | 2870 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | 
|  | 2871 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
|  | 2872 |  | 
|  | 2873 | ------------------------------------------------------------------- | 
|  | 2874 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2875 | Copyright (c) 1997, 1998 The NetBSD Foundation, Inc. | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2876 | All rights reserved. | 
|  | 2877 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2878 | This code was contributed to The NetBSD Foundation by Klaus Klein. | 
|  | 2879 |  | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2880 | Redistribution and use in source and binary forms, with or without | 
|  | 2881 | modification, are permitted provided that the following conditions | 
|  | 2882 | are met: | 
|  | 2883 | 1. Redistributions of source code must retain the above copyright | 
|  | 2884 | notice, this list of conditions and the following disclaimer. | 
|  | 2885 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 2886 | notice, this list of conditions and the following disclaimer in the | 
|  | 2887 | documentation and/or other materials provided with the distribution. | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2888 | 3. All advertising materials mentioning features or use of this software | 
|  | 2889 | must display the following acknowledgement: | 
|  | 2890 | This product includes software developed by the NetBSD | 
|  | 2891 | Foundation, Inc. and its contributors. | 
|  | 2892 | 4. Neither the name of The NetBSD Foundation nor the names of its | 
|  | 2893 | contributors may be used to endorse or promote products derived | 
|  | 2894 | from this software without specific prior written permission. | 
|  | 2895 |  | 
|  | 2896 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS | 
|  | 2897 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED | 
|  | 2898 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | 
|  | 2899 | PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS | 
|  | 2900 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | 
|  | 2901 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | 
|  | 2902 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | 
|  | 2903 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | 
|  | 2904 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | 
|  | 2905 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | 
|  | 2906 | POSSIBILITY OF SUCH DAMAGE. | 
|  | 2907 |  | 
|  | 2908 | ------------------------------------------------------------------- | 
|  | 2909 |  | 
|  | 2910 | Copyright (c) 1997, 1998, 1999, 2004 The NetBSD Foundation, Inc. | 
|  | 2911 | All rights reserved. | 
|  | 2912 |  | 
|  | 2913 | This code is derived from software contributed to The NetBSD Foundation | 
|  | 2914 | by Luke Mewburn. | 
|  | 2915 |  | 
|  | 2916 | Redistribution and use in source and binary forms, with or without | 
|  | 2917 | modification, are permitted provided that the following conditions | 
|  | 2918 | are met: | 
|  | 2919 | 1. Redistributions of source code must retain the above copyright | 
|  | 2920 | notice, this list of conditions and the following disclaimer. | 
|  | 2921 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 2922 | notice, this list of conditions and the following disclaimer in the | 
|  | 2923 | documentation and/or other materials provided with the distribution. | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2924 |  | 
|  | 2925 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS | 
|  | 2926 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED | 
|  | 2927 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | 
|  | 2928 | PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS | 
|  | 2929 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | 
|  | 2930 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | 
|  | 2931 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | 
|  | 2932 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | 
|  | 2933 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | 
|  | 2934 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | 
|  | 2935 | POSSIBILITY OF SUCH DAMAGE. | 
|  | 2936 |  | 
|  | 2937 | ------------------------------------------------------------------- | 
|  | 2938 |  | 
|  | 2939 | Copyright (c) 1997, 1998, 1999, 2004 The NetBSD Foundation, Inc. | 
|  | 2940 | All rights reserved. | 
|  | 2941 |  | 
|  | 2942 | This code is derived from software contributed to The NetBSD Foundation | 
|  | 2943 | by Luke Mewburn; and by Jason R. Thorpe. | 
|  | 2944 |  | 
|  | 2945 | Redistribution and use in source and binary forms, with or without | 
|  | 2946 | modification, are permitted provided that the following conditions | 
|  | 2947 | are met: | 
|  | 2948 | 1. Redistributions of source code must retain the above copyright | 
|  | 2949 | notice, this list of conditions and the following disclaimer. | 
|  | 2950 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 2951 | notice, this list of conditions and the following disclaimer in the | 
|  | 2952 | documentation and/or other materials provided with the distribution. | 
|  | 2953 | 3. All advertising materials mentioning features or use of this software | 
|  | 2954 | must display the following acknowledgement: | 
|  | 2955 | This product includes software developed by the NetBSD | 
|  | 2956 | Foundation, Inc. and its contributors. | 
|  | 2957 | 4. Neither the name of The NetBSD Foundation nor the names of its | 
|  | 2958 | contributors may be used to endorse or promote products derived | 
|  | 2959 | from this software without specific prior written permission. | 
|  | 2960 |  | 
|  | 2961 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS | 
|  | 2962 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED | 
|  | 2963 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | 
|  | 2964 | PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS | 
|  | 2965 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | 
|  | 2966 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | 
|  | 2967 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | 
|  | 2968 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | 
|  | 2969 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | 
|  | 2970 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | 
|  | 2971 | POSSIBILITY OF SUCH DAMAGE. | 
|  | 2972 |  | 
|  | 2973 | ------------------------------------------------------------------- | 
|  | 2974 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2975 | Copyright (c) 1997, 2005 Todd C. Miller <Todd.Miller@courtesan.com> | 
|  | 2976 |  | 
|  | 2977 | Permission to use, copy, modify, and distribute this software for any | 
|  | 2978 | purpose with or without fee is hereby granted, provided that the above | 
|  | 2979 | copyright notice and this permission notice appear in all copies. | 
|  | 2980 |  | 
|  | 2981 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | 
|  | 2982 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | 
|  | 2983 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | 
|  | 2984 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | 
|  | 2985 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | 
|  | 2986 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | 
|  | 2987 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 
|  | 2988 |  | 
|  | 2989 | ------------------------------------------------------------------- | 
|  | 2990 |  | 
|  | 2991 | Copyright (c) 1998 Softweyr LLC.  All rights reserved. | 
|  | 2992 |  | 
|  | 2993 | strtok_r, from Berkeley strtok | 
|  | 2994 | Oct 13, 1998 by Wes Peters <wes@softweyr.com> | 
|  | 2995 |  | 
|  | 2996 | Copyright (c) 1988, 1993 | 
|  | 2997 | The Regents of the University of California.  All rights reserved. | 
|  | 2998 |  | 
|  | 2999 | Redistribution and use in source and binary forms, with or without | 
|  | 3000 | modification, are permitted provided that the following conditions | 
|  | 3001 | are met: | 
|  | 3002 | 1. Redistributions of source code must retain the above copyright | 
|  | 3003 | notices, this list of conditions and the following disclaimer. | 
|  | 3004 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 3005 | notices, this list of conditions and the following disclaimer in the | 
|  | 3006 | documentation and/or other materials provided with the distribution. | 
| Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 3007 | 3. Neither the name of the University nor the names of its contributors | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3008 | may be used to endorse or promote products derived from this software | 
|  | 3009 | without specific prior written permission. | 
|  | 3010 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3011 | THIS SOFTWARE IS PROVIDED BY SOFTWEYR LLC, THE REGENTS AND CONTRIBUTORS | 
|  | 3012 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 
|  | 3013 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | 
|  | 3014 | PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL SOFTWEYR LLC, THE | 
|  | 3015 | REGENTS, OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 
|  | 3016 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | 
|  | 3017 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | 
|  | 3018 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF | 
|  | 3019 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | 
|  | 3020 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | 
|  | 3021 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
|  | 3022 |  | 
|  | 3023 | ------------------------------------------------------------------- | 
|  | 3024 |  | 
|  | 3025 | Copyright (c) 1998 The NetBSD Foundation, Inc. | 
|  | 3026 | All rights reserved. | 
|  | 3027 |  | 
|  | 3028 | This code is derived from software contributed to The NetBSD Foundation | 
|  | 3029 | by Klaus Klein. | 
|  | 3030 |  | 
|  | 3031 | Redistribution and use in source and binary forms, with or without | 
|  | 3032 | modification, are permitted provided that the following conditions | 
|  | 3033 | are met: | 
|  | 3034 | 1. Redistributions of source code must retain the above copyright | 
|  | 3035 | notice, this list of conditions and the following disclaimer. | 
|  | 3036 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 3037 | notice, this list of conditions and the following disclaimer in the | 
|  | 3038 | documentation and/or other materials provided with the distribution. | 
|  | 3039 | 3. All advertising materials mentioning features or use of this software | 
|  | 3040 | must display the following acknowledgement: | 
|  | 3041 | This product includes software developed by the NetBSD | 
|  | 3042 | Foundation, Inc. and its contributors. | 
|  | 3043 | 4. Neither the name of The NetBSD Foundation nor the names of its | 
|  | 3044 | contributors may be used to endorse or promote products derived | 
|  | 3045 | from this software without specific prior written permission. | 
|  | 3046 |  | 
|  | 3047 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS | 
|  | 3048 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED | 
|  | 3049 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | 
|  | 3050 | PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS | 
|  | 3051 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | 
|  | 3052 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | 
|  | 3053 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | 
|  | 3054 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | 
|  | 3055 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | 
|  | 3056 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | 
|  | 3057 | POSSIBILITY OF SUCH DAMAGE. | 
|  | 3058 |  | 
|  | 3059 | ------------------------------------------------------------------- | 
|  | 3060 |  | 
|  | 3061 | Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com> | 
|  | 3062 |  | 
|  | 3063 | Permission to use, copy, modify, and distribute this software for any | 
|  | 3064 | purpose with or without fee is hereby granted, provided that the above | 
|  | 3065 | copyright notice and this permission notice appear in all copies. | 
|  | 3066 |  | 
|  | 3067 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | 
|  | 3068 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | 
|  | 3069 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | 
|  | 3070 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | 
|  | 3071 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | 
|  | 3072 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | 
|  | 3073 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3074 |  | 
|  | 3075 | ------------------------------------------------------------------- | 
|  | 3076 |  | 
|  | 3077 | Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com> | 
|  | 3078 | All rights reserved. | 
|  | 3079 |  | 
|  | 3080 | Redistribution and use in source and binary forms, with or without | 
|  | 3081 | modification, are permitted provided that the following conditions | 
|  | 3082 | are met: | 
|  | 3083 | 1. Redistributions of source code must retain the above copyright | 
|  | 3084 | notice, this list of conditions and the following disclaimer. | 
|  | 3085 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 3086 | notice, this list of conditions and the following disclaimer in the | 
|  | 3087 | documentation and/or other materials provided with the distribution. | 
|  | 3088 | 3. The name of the author may not be used to endorse or promote products | 
|  | 3089 | derived from this software without specific prior written permission. | 
|  | 3090 |  | 
|  | 3091 | THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, | 
|  | 3092 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY | 
|  | 3093 | AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL | 
|  | 3094 | THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | 
|  | 3095 | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | 
|  | 3096 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; | 
|  | 3097 | OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, | 
|  | 3098 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR | 
|  | 3099 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | 
|  | 3100 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
|  | 3101 |  | 
|  | 3102 | ------------------------------------------------------------------- | 
|  | 3103 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3104 | Copyright (c) 1999 | 
|  | 3105 | David E. O'Brien | 
|  | 3106 | Copyright (c) 1988, 1993 | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3107 | The Regents of the University of California.  All rights reserved. | 
|  | 3108 |  | 
|  | 3109 | Redistribution and use in source and binary forms, with or without | 
|  | 3110 | modification, are permitted provided that the following conditions | 
|  | 3111 | are met: | 
|  | 3112 | 1. Redistributions of source code must retain the above copyright | 
|  | 3113 | notice, this list of conditions and the following disclaimer. | 
|  | 3114 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 3115 | notice, this list of conditions and the following disclaimer in the | 
|  | 3116 | documentation and/or other materials provided with the distribution. | 
|  | 3117 | 3. Neither the name of the University nor the names of its contributors | 
|  | 3118 | may be used to endorse or promote products derived from this software | 
|  | 3119 | without specific prior written permission. | 
|  | 3120 |  | 
|  | 3121 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 3122 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 3123 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 3124 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 3125 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 3126 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 3127 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 3128 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 3129 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 3130 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 3131 | SUCH DAMAGE. | 
|  | 3132 |  | 
|  | 3133 | ------------------------------------------------------------------- | 
|  | 3134 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3135 | Copyright (c) 1999 Kungliga Tekniska Högskolan | 
|  | 3136 | (Royal Institute of Technology, Stockholm, Sweden). | 
|  | 3137 | All rights reserved. | 
|  | 3138 |  | 
|  | 3139 | Redistribution and use in source and binary forms, with or without | 
|  | 3140 | modification, are permitted provided that the following conditions | 
|  | 3141 | are met: | 
|  | 3142 |  | 
|  | 3143 | 1. Redistributions of source code must retain the above copyright | 
|  | 3144 | notice, this list of conditions and the following disclaimer. | 
|  | 3145 |  | 
|  | 3146 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 3147 | notice, this list of conditions and the following disclaimer in the | 
|  | 3148 | documentation and/or other materials provided with the distribution. | 
|  | 3149 |  | 
|  | 3150 | 3. Neither the name of KTH nor the names of its contributors may be | 
|  | 3151 | used to endorse or promote products derived from this software without | 
|  | 3152 | specific prior written permission. | 
|  | 3153 |  | 
|  | 3154 | THIS SOFTWARE IS PROVIDED BY KTH AND ITS CONTRIBUTORS ``AS IS'' AND ANY | 
|  | 3155 | EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 3156 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | 
|  | 3157 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KTH OR ITS CONTRIBUTORS BE | 
|  | 3158 | LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | 
|  | 3159 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | 
|  | 3160 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR | 
|  | 3161 | BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, | 
|  | 3162 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR | 
|  | 3163 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | 
|  | 3164 |  | 
|  | 3165 | ------------------------------------------------------------------- | 
|  | 3166 |  | 
| Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 3167 | Copyright (c) 1999 The NetBSD Foundation, Inc. | 
|  | 3168 | All rights reserved. | 
|  | 3169 |  | 
|  | 3170 | This code is derived from software contributed to The NetBSD Foundation | 
|  | 3171 | by Michael Graff. | 
|  | 3172 |  | 
|  | 3173 | Redistribution and use in source and binary forms, with or without | 
|  | 3174 | modification, are permitted provided that the following conditions | 
|  | 3175 | are met: | 
|  | 3176 | 1. Redistributions of source code must retain the above copyright | 
|  | 3177 | notice, this list of conditions and the following disclaimer. | 
|  | 3178 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 3179 | notice, this list of conditions and the following disclaimer in the | 
|  | 3180 | documentation and/or other materials provided with the distribution. | 
|  | 3181 |  | 
|  | 3182 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS | 
|  | 3183 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED | 
|  | 3184 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | 
|  | 3185 | PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS | 
|  | 3186 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | 
|  | 3187 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | 
|  | 3188 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | 
|  | 3189 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | 
|  | 3190 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | 
|  | 3191 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | 
|  | 3192 | POSSIBILITY OF SUCH DAMAGE. | 
|  | 3193 |  | 
|  | 3194 | ------------------------------------------------------------------- | 
|  | 3195 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3196 | Copyright (c) 2000 Ben Harris. | 
|  | 3197 | Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. | 
|  | 3198 | All rights reserved. | 
|  | 3199 |  | 
|  | 3200 | Redistribution and use in source and binary forms, with or without | 
|  | 3201 | modification, are permitted provided that the following conditions | 
|  | 3202 | are met: | 
|  | 3203 | 1. Redistributions of source code must retain the above copyright | 
|  | 3204 | notice, this list of conditions and the following disclaimer. | 
|  | 3205 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 3206 | notice, this list of conditions and the following disclaimer in the | 
|  | 3207 | documentation and/or other materials provided with the distribution. | 
|  | 3208 | 3. Neither the name of the project nor the names of its contributors | 
|  | 3209 | may be used to endorse or promote products derived from this software | 
|  | 3210 | without specific prior written permission. | 
|  | 3211 |  | 
|  | 3212 | THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND | 
|  | 3213 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 3214 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 3215 | ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE | 
|  | 3216 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 3217 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 3218 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 3219 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 3220 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 3221 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 3222 | SUCH DAMAGE. | 
|  | 3223 |  | 
|  | 3224 | ------------------------------------------------------------------- | 
|  | 3225 |  | 
|  | 3226 | Copyright (c) 2000 The NetBSD Foundation, Inc. | 
|  | 3227 | All rights reserved. | 
|  | 3228 |  | 
|  | 3229 | This code is derived from software contributed to The NetBSD Foundation | 
|  | 3230 | by Atsushi Onoe. | 
|  | 3231 |  | 
|  | 3232 | Redistribution and use in source and binary forms, with or without | 
|  | 3233 | modification, are permitted provided that the following conditions | 
|  | 3234 | are met: | 
|  | 3235 | 1. Redistributions of source code must retain the above copyright | 
|  | 3236 | notice, this list of conditions and the following disclaimer. | 
|  | 3237 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 3238 | notice, this list of conditions and the following disclaimer in the | 
|  | 3239 | documentation and/or other materials provided with the distribution. | 
|  | 3240 | 3. All advertising materials mentioning features or use of this software | 
|  | 3241 | must display the following acknowledgement: | 
|  | 3242 | This product includes software developed by the NetBSD | 
|  | 3243 | Foundation, Inc. and its contributors. | 
|  | 3244 | 4. Neither the name of The NetBSD Foundation nor the names of its | 
|  | 3245 | contributors may be used to endorse or promote products derived | 
|  | 3246 | from this software without specific prior written permission. | 
|  | 3247 |  | 
|  | 3248 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS | 
|  | 3249 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED | 
|  | 3250 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | 
|  | 3251 | PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS | 
|  | 3252 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | 
|  | 3253 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | 
|  | 3254 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | 
|  | 3255 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | 
|  | 3256 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | 
|  | 3257 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | 
|  | 3258 | POSSIBILITY OF SUCH DAMAGE. | 
|  | 3259 |  | 
|  | 3260 | ------------------------------------------------------------------- | 
|  | 3261 |  | 
|  | 3262 | Copyright (c) 2000 The NetBSD Foundation, Inc. | 
|  | 3263 | All rights reserved. | 
|  | 3264 |  | 
|  | 3265 | This code is derived from software contributed to The NetBSD Foundation | 
|  | 3266 | by Dieter Baron and Thomas Klausner. | 
|  | 3267 |  | 
|  | 3268 | Redistribution and use in source and binary forms, with or without | 
|  | 3269 | modification, are permitted provided that the following conditions | 
|  | 3270 | are met: | 
|  | 3271 | 1. Redistributions of source code must retain the above copyright | 
|  | 3272 | notice, this list of conditions and the following disclaimer. | 
|  | 3273 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 3274 | notice, this list of conditions and the following disclaimer in the | 
|  | 3275 | documentation and/or other materials provided with the distribution. | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3276 |  | 
|  | 3277 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS | 
|  | 3278 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED | 
|  | 3279 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | 
|  | 3280 | PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS | 
|  | 3281 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | 
|  | 3282 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | 
|  | 3283 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | 
|  | 3284 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | 
|  | 3285 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | 
|  | 3286 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | 
|  | 3287 | POSSIBILITY OF SUCH DAMAGE. | 
|  | 3288 |  | 
|  | 3289 | ------------------------------------------------------------------- | 
|  | 3290 |  | 
| Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 3291 | Copyright (c) 2001 Mike Barcroft <mike@FreeBSD.org> | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3292 | All rights reserved. | 
|  | 3293 |  | 
|  | 3294 | Redistribution and use in source and binary forms, with or without | 
|  | 3295 | modification, are permitted provided that the following conditions | 
|  | 3296 | are met: | 
|  | 3297 | 1. Redistributions of source code must retain the above copyright | 
|  | 3298 | notice, this list of conditions and the following disclaimer. | 
|  | 3299 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 3300 | notice, this list of conditions and the following disclaimer in the | 
|  | 3301 | documentation and/or other materials provided with the distribution. | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3302 |  | 
| Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 3303 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND | 
|  | 3304 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 3305 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 3306 | ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | 
|  | 3307 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 3308 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 3309 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3310 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 3311 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 3312 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 3313 | SUCH DAMAGE. | 
|  | 3314 |  | 
|  | 3315 | ------------------------------------------------------------------- | 
|  | 3316 |  | 
| Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 3317 | Copyright (c) 2001 Wasabi Systems, Inc. | 
|  | 3318 | All rights reserved. | 
|  | 3319 |  | 
|  | 3320 | Written by Frank van der Linden for Wasabi Systems, Inc. | 
|  | 3321 |  | 
|  | 3322 | Redistribution and use in source and binary forms, with or without | 
|  | 3323 | modification, are permitted provided that the following conditions | 
|  | 3324 | are met: | 
|  | 3325 | 1. Redistributions of source code must retain the above copyright | 
|  | 3326 | notice, this list of conditions and the following disclaimer. | 
|  | 3327 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 3328 | notice, this list of conditions and the following disclaimer in the | 
|  | 3329 | documentation and/or other materials provided with the distribution. | 
|  | 3330 | 3. All advertising materials mentioning features or use of this software | 
|  | 3331 | must display the following acknowledgement: | 
|  | 3332 | This product includes software developed for the NetBSD Project by | 
|  | 3333 | Wasabi Systems, Inc. | 
|  | 3334 | 4. The name of Wasabi Systems, Inc. may not be used to endorse | 
|  | 3335 | or promote products derived from this software without specific prior | 
|  | 3336 | written permission. | 
|  | 3337 |  | 
|  | 3338 | THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND | 
|  | 3339 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED | 
|  | 3340 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | 
|  | 3341 | PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL WASABI SYSTEMS, INC | 
|  | 3342 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | 
|  | 3343 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | 
|  | 3344 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | 
|  | 3345 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | 
|  | 3346 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | 
|  | 3347 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | 
|  | 3348 | POSSIBILITY OF SUCH DAMAGE. | 
|  | 3349 |  | 
|  | 3350 | ------------------------------------------------------------------- | 
|  | 3351 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3352 | Copyright (c) 2001-2002 Opsycon AB  (www.opsycon.se / www.opsycon.com) | 
|  | 3353 |  | 
|  | 3354 | Redistribution and use in source and binary forms, with or without | 
|  | 3355 | modification, are permitted provided that the following conditions | 
|  | 3356 | are met: | 
|  | 3357 | 1. Redistributions of source code must retain the above copyright | 
|  | 3358 | notice, this list of conditions and the following disclaimer. | 
|  | 3359 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 3360 | notice, this list of conditions and the following disclaimer in the | 
|  | 3361 | documentation and/or other materials provided with the distribution. | 
|  | 3362 |  | 
|  | 3363 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS | 
|  | 3364 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | 
|  | 3365 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 3366 | ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY | 
|  | 3367 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 3368 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 3369 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 3370 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 3371 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 3372 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 3373 | SUCH DAMAGE. | 
|  | 3374 |  | 
|  | 3375 | ------------------------------------------------------------------- | 
|  | 3376 |  | 
|  | 3377 | Copyright (c) 2001-2002 Opsycon AB  (www.opsycon.se / www.opsycon.com) | 
|  | 3378 |  | 
|  | 3379 | Redistribution and use in source and binary forms, with or without | 
|  | 3380 | modification, are permitted provided that the following conditions | 
|  | 3381 | are met: | 
|  | 3382 | 1. Redistributions of source code must retain the above copyright | 
|  | 3383 | notice, this list of conditions and the following disclaimer. | 
|  | 3384 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 3385 | notice, this list of conditions and the following disclaimer in the | 
|  | 3386 | documentation and/or other materials provided with the distribution. | 
|  | 3387 | 3. Neither the name of Opsycon AB nor the names of its contributors | 
|  | 3388 | may be used to endorse or promote products derived from this software | 
|  | 3389 | without specific prior written permission. | 
|  | 3390 |  | 
|  | 3391 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS | 
|  | 3392 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | 
|  | 3393 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 3394 | ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY | 
|  | 3395 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 3396 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 3397 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 3398 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 3399 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 3400 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 3401 | SUCH DAMAGE. | 
|  | 3402 |  | 
|  | 3403 | ------------------------------------------------------------------- | 
|  | 3404 |  | 
|  | 3405 | Copyright (c) 2002 Daniel Hartmeier | 
|  | 3406 | All rights reserved. | 
|  | 3407 |  | 
|  | 3408 | Redistribution and use in source and binary forms, with or without | 
|  | 3409 | modification, are permitted provided that the following conditions | 
|  | 3410 | are met: | 
|  | 3411 |  | 
|  | 3412 | - Redistributions of source code must retain the above copyright | 
|  | 3413 | notice, this list of conditions and the following disclaimer. | 
|  | 3414 | - Redistributions in binary form must reproduce the above | 
|  | 3415 | copyright notice, this list of conditions and the following | 
|  | 3416 | disclaimer in the documentation and/or other materials provided | 
|  | 3417 | with the distribution. | 
|  | 3418 |  | 
|  | 3419 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 
|  | 3420 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 
|  | 3421 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | 
|  | 3422 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | 
|  | 3423 | COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | 
|  | 3424 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | 
|  | 3425 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 
|  | 3426 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | 
|  | 3427 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 3428 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN | 
|  | 3429 | ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | 
|  | 3430 | POSSIBILITY OF SUCH DAMAGE. | 
|  | 3431 |  | 
|  | 3432 | ------------------------------------------------------------------- | 
|  | 3433 |  | 
|  | 3434 | Copyright (c) 2002 Marc Espie. | 
|  | 3435 |  | 
|  | 3436 | Redistribution and use in source and binary forms, with or without | 
|  | 3437 | modification, are permitted provided that the following conditions | 
|  | 3438 | are met: | 
|  | 3439 | 1. Redistributions of source code must retain the above copyright | 
|  | 3440 | notice, this list of conditions and the following disclaimer. | 
|  | 3441 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 3442 | notice, this list of conditions and the following disclaimer in the | 
|  | 3443 | documentation and/or other materials provided with the distribution. | 
|  | 3444 |  | 
|  | 3445 | THIS SOFTWARE IS PROVIDED BY THE OPENBSD PROJECT AND CONTRIBUTORS | 
|  | 3446 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 
|  | 3447 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | 
|  | 3448 | A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OPENBSD | 
|  | 3449 | PROJECT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 
|  | 3450 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 
|  | 3451 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 
|  | 3452 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 
|  | 3453 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 
|  | 3454 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 
|  | 3455 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
|  | 3456 |  | 
|  | 3457 | ------------------------------------------------------------------- | 
|  | 3458 |  | 
|  | 3459 | Copyright (c) 2002 Opsycon AB  (www.opsycon.se / www.opsycon.com) | 
|  | 3460 |  | 
|  | 3461 | Redistribution and use in source and binary forms, with or without | 
|  | 3462 | modification, are permitted provided that the following conditions | 
|  | 3463 | are met: | 
|  | 3464 | 1. Redistributions of source code must retain the above copyright | 
|  | 3465 | notice, this list of conditions and the following disclaimer. | 
|  | 3466 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 3467 | notice, this list of conditions and the following disclaimer in the | 
|  | 3468 | documentation and/or other materials provided with the distribution. | 
|  | 3469 | 3. Neither the name of Opsycon AB nor the names of its contributors | 
|  | 3470 | may be used to endorse or promote products derived from this software | 
|  | 3471 | without specific prior written permission. | 
|  | 3472 |  | 
|  | 3473 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS | 
|  | 3474 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | 
|  | 3475 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 3476 | ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY | 
|  | 3477 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 3478 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 3479 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 3480 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 3481 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 3482 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 3483 | SUCH DAMAGE. | 
|  | 3484 |  | 
|  | 3485 | ------------------------------------------------------------------- | 
|  | 3486 |  | 
|  | 3487 | Copyright (c) 2002 The NetBSD Foundation, Inc. | 
|  | 3488 | All rights reserved. | 
|  | 3489 |  | 
|  | 3490 | This code is derived from software contributed to The NetBSD Foundation | 
|  | 3491 | by Christos Zoulas. | 
|  | 3492 |  | 
|  | 3493 | Redistribution and use in source and binary forms, with or without | 
|  | 3494 | modification, are permitted provided that the following conditions | 
|  | 3495 | are met: | 
|  | 3496 | 1. Redistributions of source code must retain the above copyright | 
|  | 3497 | notice, this list of conditions and the following disclaimer. | 
|  | 3498 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 3499 | notice, this list of conditions and the following disclaimer in the | 
|  | 3500 | documentation and/or other materials provided with the distribution. | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3501 |  | 
|  | 3502 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS | 
|  | 3503 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED | 
|  | 3504 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | 
|  | 3505 | PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS | 
|  | 3506 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | 
|  | 3507 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | 
|  | 3508 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | 
|  | 3509 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | 
|  | 3510 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | 
|  | 3511 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | 
|  | 3512 | POSSIBILITY OF SUCH DAMAGE. | 
|  | 3513 |  | 
|  | 3514 | ------------------------------------------------------------------- | 
|  | 3515 |  | 
|  | 3516 | Copyright (c) 2002 Tim J. Robbins | 
|  | 3517 | All rights reserved. | 
|  | 3518 |  | 
|  | 3519 | Redistribution and use in source and binary forms, with or without | 
|  | 3520 | modification, are permitted provided that the following conditions | 
|  | 3521 | are met: | 
|  | 3522 | 1. Redistributions of source code must retain the above copyright | 
|  | 3523 | notice, this list of conditions and the following disclaimer. | 
|  | 3524 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 3525 | notice, this list of conditions and the following disclaimer in the | 
|  | 3526 | documentation and/or other materials provided with the distribution. | 
|  | 3527 |  | 
|  | 3528 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND | 
|  | 3529 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 3530 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 3531 | ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | 
|  | 3532 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 3533 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 3534 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 3535 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 3536 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 3537 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 3538 | SUCH DAMAGE. | 
|  | 3539 |  | 
|  | 3540 | ------------------------------------------------------------------- | 
|  | 3541 |  | 
| Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 3542 | Copyright (c) 2002 Tim J. Robbins. | 
|  | 3543 | All rights reserved. | 
|  | 3544 |  | 
|  | 3545 | Redistribution and use in source and binary forms, with or without | 
|  | 3546 | modification, are permitted provided that the following conditions | 
|  | 3547 | are met: | 
|  | 3548 | 1. Redistributions of source code must retain the above copyright | 
|  | 3549 | notice, this list of conditions and the following disclaimer. | 
|  | 3550 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 3551 | notice, this list of conditions and the following disclaimer in the | 
|  | 3552 | documentation and/or other materials provided with the distribution. | 
|  | 3553 |  | 
|  | 3554 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND | 
|  | 3555 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 3556 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 3557 | ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | 
|  | 3558 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 3559 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 3560 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 3561 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 3562 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 3563 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 3564 | SUCH DAMAGE. | 
|  | 3565 |  | 
|  | 3566 | ------------------------------------------------------------------- | 
|  | 3567 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3568 | Copyright (c) 2002 Todd C. Miller <Todd.Miller@courtesan.com> | 
|  | 3569 |  | 
|  | 3570 | Permission to use, copy, modify, and distribute this software for any | 
|  | 3571 | purpose with or without fee is hereby granted, provided that the above | 
|  | 3572 | copyright notice and this permission notice appear in all copies. | 
|  | 3573 |  | 
|  | 3574 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | 
|  | 3575 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | 
|  | 3576 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | 
|  | 3577 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | 
|  | 3578 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | 
|  | 3579 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | 
|  | 3580 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 
|  | 3581 |  | 
|  | 3582 | Sponsored in part by the Defense Advanced Research Projects | 
|  | 3583 | Agency (DARPA) and Air Force Research Laboratory, Air Force | 
|  | 3584 | Materiel Command, USAF, under agreement number F39502-99-1-0512. | 
|  | 3585 |  | 
|  | 3586 | ------------------------------------------------------------------- | 
|  | 3587 |  | 
| Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 3588 | Copyright (c) 2002, 2003 Tim J. Robbins. | 
|  | 3589 | All rights reserved. | 
|  | 3590 |  | 
|  | 3591 | Redistribution and use in source and binary forms, with or without | 
|  | 3592 | modification, are permitted provided that the following conditions | 
|  | 3593 | are met: | 
|  | 3594 | 1. Redistributions of source code must retain the above copyright | 
|  | 3595 | notice, this list of conditions and the following disclaimer. | 
|  | 3596 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 3597 | notice, this list of conditions and the following disclaimer in the | 
|  | 3598 | documentation and/or other materials provided with the distribution. | 
|  | 3599 |  | 
|  | 3600 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND | 
|  | 3601 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 3602 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 3603 | ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | 
|  | 3604 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 3605 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 3606 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 3607 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 3608 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 3609 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 3610 | SUCH DAMAGE. | 
|  | 3611 |  | 
|  | 3612 | ------------------------------------------------------------------- | 
|  | 3613 |  | 
|  | 3614 | Copyright (c) 2002-2004 Tim J. Robbins | 
|  | 3615 | All rights reserved. | 
|  | 3616 |  | 
|  | 3617 | Redistribution and use in source and binary forms, with or without | 
|  | 3618 | modification, are permitted provided that the following conditions | 
|  | 3619 | are met: | 
|  | 3620 | 1. Redistributions of source code must retain the above copyright | 
|  | 3621 | notice, this list of conditions and the following disclaimer. | 
|  | 3622 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 3623 | notice, this list of conditions and the following disclaimer in the | 
|  | 3624 | documentation and/or other materials provided with the distribution. | 
|  | 3625 |  | 
|  | 3626 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND | 
|  | 3627 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 3628 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 3629 | ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | 
|  | 3630 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 3631 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 3632 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 3633 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 3634 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 3635 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 3636 | SUCH DAMAGE. | 
|  | 3637 |  | 
|  | 3638 | ------------------------------------------------------------------- | 
|  | 3639 |  | 
|  | 3640 | Copyright (c) 2002-2004 Tim J. Robbins. | 
|  | 3641 | All rights reserved. | 
|  | 3642 |  | 
|  | 3643 | Redistribution and use in source and binary forms, with or without | 
|  | 3644 | modification, are permitted provided that the following conditions | 
|  | 3645 | are met: | 
|  | 3646 | 1. Redistributions of source code must retain the above copyright | 
|  | 3647 | notice, this list of conditions and the following disclaimer. | 
|  | 3648 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 3649 | notice, this list of conditions and the following disclaimer in the | 
|  | 3650 | documentation and/or other materials provided with the distribution. | 
|  | 3651 |  | 
|  | 3652 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND | 
|  | 3653 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 3654 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 3655 | ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | 
|  | 3656 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 3657 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 3658 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 3659 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 3660 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 3661 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 3662 | SUCH DAMAGE. | 
|  | 3663 |  | 
|  | 3664 | ------------------------------------------------------------------- | 
|  | 3665 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3666 | Copyright (c) 2003 Constantin S. Svintsoff <kostik@iclub.nsu.ru> | 
|  | 3667 |  | 
|  | 3668 | Redistribution and use in source and binary forms, with or without | 
|  | 3669 | modification, are permitted provided that the following conditions | 
|  | 3670 | are met: | 
|  | 3671 | 1. Redistributions of source code must retain the above copyright | 
|  | 3672 | notice, this list of conditions and the following disclaimer. | 
|  | 3673 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 3674 | notice, this list of conditions and the following disclaimer in the | 
|  | 3675 | documentation and/or other materials provided with the distribution. | 
|  | 3676 | 3. The names of the authors may not be used to endorse or promote | 
|  | 3677 | products derived from this software without specific prior written | 
|  | 3678 | permission. | 
|  | 3679 |  | 
|  | 3680 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND | 
|  | 3681 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 3682 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 3683 | ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | 
|  | 3684 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 3685 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 3686 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 3687 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 3688 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 3689 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 3690 | SUCH DAMAGE. | 
|  | 3691 |  | 
|  | 3692 | ------------------------------------------------------------------- | 
|  | 3693 |  | 
| Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 3694 | Copyright (c) 2003 David Schultz <das@FreeBSD.ORG> | 
|  | 3695 | All rights reserved. | 
|  | 3696 |  | 
|  | 3697 | Redistribution and use in source and binary forms, with or without | 
|  | 3698 | modification, are permitted provided that the following conditions | 
|  | 3699 | are met: | 
|  | 3700 | 1. Redistributions of source code must retain the above copyright | 
|  | 3701 | notice, this list of conditions and the following disclaimer. | 
|  | 3702 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 3703 | notice, this list of conditions and the following disclaimer in the | 
|  | 3704 | documentation and/or other materials provided with the distribution. | 
|  | 3705 |  | 
|  | 3706 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND | 
|  | 3707 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 3708 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 3709 | ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | 
|  | 3710 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 3711 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 3712 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 3713 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 3714 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 3715 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 3716 | SUCH DAMAGE. | 
|  | 3717 |  | 
|  | 3718 | ------------------------------------------------------------------- | 
|  | 3719 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3720 | Copyright (c) 2003 Networks Associates Technology, Inc. | 
|  | 3721 | All rights reserved. | 
|  | 3722 |  | 
|  | 3723 | Portions of this software were developed for the FreeBSD Project by | 
|  | 3724 | Jacques A. Vidrine, Safeport Network Services, and Network | 
|  | 3725 | Associates Laboratories, the Security Research Division of Network | 
|  | 3726 | Associates, Inc. under DARPA/SPAWAR contract N66001-01-C-8035 | 
|  | 3727 | ("CBOSS"), as part of the DARPA CHATS research program. | 
|  | 3728 |  | 
|  | 3729 | Redistribution and use in source and binary forms, with or without | 
|  | 3730 | modification, are permitted provided that the following conditions | 
|  | 3731 | are met: | 
|  | 3732 | 1. Redistributions of source code must retain the above copyright | 
|  | 3733 | notice, this list of conditions and the following disclaimer. | 
|  | 3734 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 3735 | notice, this list of conditions and the following disclaimer in the | 
|  | 3736 | documentation and/or other materials provided with the distribution. | 
|  | 3737 |  | 
|  | 3738 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND | 
|  | 3739 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 3740 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 3741 | ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | 
|  | 3742 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 3743 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 3744 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 3745 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 3746 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 3747 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 3748 | SUCH DAMAGE. | 
|  | 3749 |  | 
|  | 3750 | ------------------------------------------------------------------- | 
|  | 3751 |  | 
| Nick Kralevich | 5e58ea0 | 2012-09-12 13:21:25 -0700 | [diff] [blame] | 3752 | Copyright (c) 2003 Todd C. Miller <Todd.Miller@courtesan.com> | 
|  | 3753 |  | 
|  | 3754 | Permission to use, copy, modify, and distribute this software for any | 
|  | 3755 | purpose with or without fee is hereby granted, provided that the above | 
|  | 3756 | copyright notice and this permission notice appear in all copies. | 
|  | 3757 |  | 
|  | 3758 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | 
|  | 3759 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | 
|  | 3760 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | 
|  | 3761 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | 
|  | 3762 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | 
|  | 3763 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | 
|  | 3764 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 
|  | 3765 |  | 
|  | 3766 | Sponsored in part by the Defense Advanced Research Projects | 
|  | 3767 | Agency (DARPA) and Air Force Research Laboratory, Air Force | 
|  | 3768 | Materiel Command, USAF, under agreement number F39502-99-1-0512. | 
|  | 3769 |  | 
|  | 3770 | ------------------------------------------------------------------- | 
|  | 3771 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3772 | Copyright (c) 2004 The NetBSD Foundation, Inc. | 
|  | 3773 | All rights reserved. | 
|  | 3774 |  | 
|  | 3775 | This code is derived from software contributed to The NetBSD Foundation | 
|  | 3776 | by Christos Zoulas. | 
|  | 3777 |  | 
|  | 3778 | Redistribution and use in source and binary forms, with or without | 
|  | 3779 | modification, are permitted provided that the following conditions | 
|  | 3780 | are met: | 
|  | 3781 | 1. Redistributions of source code must retain the above copyright | 
|  | 3782 | notice, this list of conditions and the following disclaimer. | 
|  | 3783 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 3784 | notice, this list of conditions and the following disclaimer in the | 
|  | 3785 | documentation and/or other materials provided with the distribution. | 
|  | 3786 | 3. All advertising materials mentioning features or use of this software | 
|  | 3787 | must display the following acknowledgement: | 
|  | 3788 | This product includes software developed by the NetBSD | 
|  | 3789 | Foundation, Inc. and its contributors. | 
|  | 3790 | 4. Neither the name of The NetBSD Foundation nor the names of its | 
|  | 3791 | contributors may be used to endorse or promote products derived | 
|  | 3792 | from this software without specific prior written permission. | 
|  | 3793 |  | 
|  | 3794 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS | 
|  | 3795 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED | 
|  | 3796 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | 
|  | 3797 | PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS | 
|  | 3798 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | 
|  | 3799 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | 
|  | 3800 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | 
|  | 3801 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | 
|  | 3802 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | 
|  | 3803 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | 
|  | 3804 | POSSIBILITY OF SUCH DAMAGE. | 
|  | 3805 |  | 
|  | 3806 | ------------------------------------------------------------------- | 
|  | 3807 |  | 
|  | 3808 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") | 
|  | 3809 | Copyright (c) 1995,1999 by Internet Software Consortium. | 
|  | 3810 |  | 
|  | 3811 | Permission to use, copy, modify, and distribute this software for any | 
|  | 3812 | purpose with or without fee is hereby granted, provided that the above | 
|  | 3813 | copyright notice and this permission notice appear in all copies. | 
|  | 3814 |  | 
|  | 3815 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES | 
|  | 3816 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | 
|  | 3817 | MERCHANTABILITY AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR | 
|  | 3818 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | 
|  | 3819 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | 
|  | 3820 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT | 
|  | 3821 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 
|  | 3822 |  | 
|  | 3823 | ------------------------------------------------------------------- | 
|  | 3824 |  | 
|  | 3825 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") | 
|  | 3826 | Copyright (c) 1995-1999 by Internet Software Consortium | 
|  | 3827 |  | 
|  | 3828 | Permission to use, copy, modify, and distribute this software for any | 
|  | 3829 | purpose with or without fee is hereby granted, provided that the above | 
|  | 3830 | copyright notice and this permission notice appear in all copies. | 
|  | 3831 |  | 
|  | 3832 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES | 
|  | 3833 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | 
|  | 3834 | MERCHANTABILITY AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR | 
|  | 3835 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | 
|  | 3836 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | 
|  | 3837 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT | 
|  | 3838 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 
|  | 3839 |  | 
|  | 3840 | ------------------------------------------------------------------- | 
|  | 3841 |  | 
|  | 3842 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") | 
|  | 3843 | Copyright (c) 1995-1999 by Internet Software Consortium. | 
|  | 3844 |  | 
|  | 3845 | Permission to use, copy, modify, and distribute this software for any | 
|  | 3846 | purpose with or without fee is hereby granted, provided that the above | 
|  | 3847 | copyright notice and this permission notice appear in all copies. | 
|  | 3848 |  | 
|  | 3849 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES | 
|  | 3850 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | 
|  | 3851 | MERCHANTABILITY AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR | 
|  | 3852 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | 
|  | 3853 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | 
|  | 3854 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT | 
|  | 3855 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 
|  | 3856 |  | 
|  | 3857 | ------------------------------------------------------------------- | 
|  | 3858 |  | 
|  | 3859 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") | 
|  | 3860 | Copyright (c) 1996,1999 by Internet Software Consortium. | 
|  | 3861 |  | 
|  | 3862 | Permission to use, copy, modify, and distribute this software for any | 
|  | 3863 | purpose with or without fee is hereby granted, provided that the above | 
|  | 3864 | copyright notice and this permission notice appear in all copies. | 
|  | 3865 |  | 
|  | 3866 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES | 
|  | 3867 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | 
|  | 3868 | MERCHANTABILITY AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR | 
|  | 3869 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | 
|  | 3870 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | 
|  | 3871 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT | 
|  | 3872 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 
|  | 3873 |  | 
|  | 3874 | ------------------------------------------------------------------- | 
|  | 3875 |  | 
|  | 3876 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") | 
|  | 3877 | Copyright (c) 1996-1999 by Internet Software Consortium | 
|  | 3878 |  | 
|  | 3879 | Permission to use, copy, modify, and distribute this software for any | 
|  | 3880 | purpose with or without fee is hereby granted, provided that the above | 
|  | 3881 | copyright notice and this permission notice appear in all copies. | 
|  | 3882 |  | 
|  | 3883 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES | 
|  | 3884 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | 
|  | 3885 | MERCHANTABILITY AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR | 
|  | 3886 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | 
|  | 3887 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | 
|  | 3888 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT | 
|  | 3889 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 
|  | 3890 |  | 
|  | 3891 | ------------------------------------------------------------------- | 
|  | 3892 |  | 
|  | 3893 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") | 
|  | 3894 | Copyright (c) 1996-1999 by Internet Software Consortium. | 
|  | 3895 |  | 
|  | 3896 | Permission to use, copy, modify, and distribute this software for any | 
|  | 3897 | purpose with or without fee is hereby granted, provided that the above | 
|  | 3898 | copyright notice and this permission notice appear in all copies. | 
|  | 3899 |  | 
|  | 3900 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES | 
|  | 3901 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | 
|  | 3902 | MERCHANTABILITY AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR | 
|  | 3903 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | 
|  | 3904 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | 
|  | 3905 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT | 
|  | 3906 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 
|  | 3907 |  | 
|  | 3908 | ------------------------------------------------------------------- | 
|  | 3909 |  | 
|  | 3910 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") | 
|  | 3911 | Copyright (c) 1997,1999 by Internet Software Consortium. | 
|  | 3912 |  | 
|  | 3913 | Permission to use, copy, modify, and distribute this software for any | 
|  | 3914 | purpose with or without fee is hereby granted, provided that the above | 
|  | 3915 | copyright notice and this permission notice appear in all copies. | 
|  | 3916 |  | 
|  | 3917 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES | 
|  | 3918 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | 
|  | 3919 | MERCHANTABILITY AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR | 
|  | 3920 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | 
|  | 3921 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | 
|  | 3922 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT | 
|  | 3923 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 
|  | 3924 |  | 
|  | 3925 | ------------------------------------------------------------------- | 
|  | 3926 |  | 
|  | 3927 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3928 | Copyright (c) 1999 by Internet Software Consortium. | 
|  | 3929 |  | 
|  | 3930 | Permission to use, copy, modify, and distribute this software for any | 
|  | 3931 | purpose with or without fee is hereby granted, provided that the above | 
|  | 3932 | copyright notice and this permission notice appear in all copies. | 
|  | 3933 |  | 
|  | 3934 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES | 
|  | 3935 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | 
|  | 3936 | MERCHANTABILITY AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR | 
|  | 3937 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | 
|  | 3938 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | 
|  | 3939 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT | 
|  | 3940 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 
|  | 3941 |  | 
|  | 3942 | ------------------------------------------------------------------- | 
|  | 3943 |  | 
|  | 3944 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") | 
|  | 3945 | Portions Copyright (c) 1996-1999 by Internet Software Consortium. | 
|  | 3946 |  | 
|  | 3947 | Permission to use, copy, modify, and distribute this software for any | 
|  | 3948 | purpose with or without fee is hereby granted, provided that the above | 
|  | 3949 | copyright notice and this permission notice appear in all copies. | 
|  | 3950 |  | 
|  | 3951 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES | 
|  | 3952 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | 
|  | 3953 | MERCHANTABILITY AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR | 
|  | 3954 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | 
|  | 3955 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | 
|  | 3956 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT | 
|  | 3957 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 
|  | 3958 |  | 
|  | 3959 | ------------------------------------------------------------------- | 
|  | 3960 |  | 
| Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 3961 | Copyright (c) 2004, 2005 David Schultz <das@FreeBSD.ORG> | 
|  | 3962 | All rights reserved. | 
|  | 3963 |  | 
|  | 3964 | Redistribution and use in source and binary forms, with or without | 
|  | 3965 | modification, are permitted provided that the following conditions | 
|  | 3966 | are met: | 
|  | 3967 | 1. Redistributions of source code must retain the above copyright | 
|  | 3968 | notice, this list of conditions and the following disclaimer. | 
|  | 3969 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 3970 | notice, this list of conditions and the following disclaimer in the | 
|  | 3971 | documentation and/or other materials provided with the distribution. | 
|  | 3972 |  | 
|  | 3973 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND | 
|  | 3974 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 3975 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 3976 | ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | 
|  | 3977 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 3978 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 3979 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 3980 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 3981 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 3982 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 3983 | SUCH DAMAGE. | 
|  | 3984 |  | 
|  | 3985 | ------------------------------------------------------------------- | 
|  | 3986 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3987 | Copyright (c) 2005 Tim J. Robbins. | 
|  | 3988 | All rights reserved. | 
|  | 3989 |  | 
|  | 3990 | Redistribution and use in source and binary forms, with or without | 
|  | 3991 | modification, are permitted provided that the following conditions | 
|  | 3992 | are met: | 
|  | 3993 | 1. Redistributions of source code must retain the above copyright | 
|  | 3994 | notice, this list of conditions and the following disclaimer. | 
|  | 3995 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 3996 | notice, this list of conditions and the following disclaimer in the | 
|  | 3997 | documentation and/or other materials provided with the distribution. | 
|  | 3998 |  | 
|  | 3999 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND | 
|  | 4000 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 4001 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 4002 | ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | 
|  | 4003 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 4004 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 4005 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 4006 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 4007 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 4008 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 4009 | SUCH DAMAGE. | 
|  | 4010 |  | 
|  | 4011 | ------------------------------------------------------------------- | 
|  | 4012 |  | 
| Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 4013 | Copyright (c) 2005 by Internet Systems Consortium, Inc. ("ISC") | 
|  | 4014 | Copyright (c) 1995-1999 by Internet Software Consortium | 
|  | 4015 |  | 
|  | 4016 | Permission to use, copy, modify, and distribute this software for any | 
|  | 4017 | purpose with or without fee is hereby granted, provided that the above | 
|  | 4018 | copyright notice and this permission notice appear in all copies. | 
|  | 4019 |  | 
|  | 4020 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES | 
|  | 4021 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | 
|  | 4022 | MERCHANTABILITY AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR | 
|  | 4023 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | 
|  | 4024 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | 
|  | 4025 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT | 
|  | 4026 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 
|  | 4027 |  | 
|  | 4028 | ------------------------------------------------------------------- | 
|  | 4029 |  | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 4030 | Copyright (c) 2007-2008  Michael G Schwern | 
|  | 4031 |  | 
|  | 4032 | This software originally derived from Paul Sheer's pivotal_gmtime_r.c. | 
|  | 4033 |  | 
|  | 4034 | The MIT License: | 
|  | 4035 |  | 
|  | 4036 | Permission is hereby granted, free of charge, to any person obtaining a copy | 
|  | 4037 | of this software and associated documentation files (the "Software"), to deal | 
|  | 4038 | in the Software without restriction, including without limitation the rights | 
|  | 4039 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | 
|  | 4040 | copies of the Software, and to permit persons to whom the Software is | 
|  | 4041 | furnished to do so, subject to the following conditions: | 
|  | 4042 |  | 
|  | 4043 | The above copyright notice and this permission notice shall be included in | 
|  | 4044 | all copies or substantial portions of the Software. | 
|  | 4045 |  | 
|  | 4046 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | 
|  | 4047 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | 
|  | 4048 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | 
|  | 4049 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | 
|  | 4050 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | 
|  | 4051 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | 
|  | 4052 | THE SOFTWARE. | 
|  | 4053 |  | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 4054 | ------------------------------------------------------------------- | 
|  | 4055 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4056 | Copyright (c) 2007-2008  Michael G Schwern | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 4057 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4058 | This software originally derived from Paul Sheer's pivotal_gmtime_r.c. | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 4059 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4060 | The MIT License: | 
|  | 4061 |  | 
|  | 4062 | Permission is hereby granted, free of charge, to any person obtaining a copy | 
|  | 4063 | of this software and associated documentation files (the "Software"), to deal | 
|  | 4064 | in the Software without restriction, including without limitation the rights | 
|  | 4065 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | 
|  | 4066 | copies of the Software, and to permit persons to whom the Software is | 
|  | 4067 | furnished to do so, subject to the following conditions: | 
|  | 4068 |  | 
|  | 4069 | The above copyright notice and this permission notice shall be included in | 
|  | 4070 | all copies or substantial portions of the Software. | 
|  | 4071 |  | 
|  | 4072 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | 
|  | 4073 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | 
|  | 4074 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | 
|  | 4075 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | 
|  | 4076 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | 
|  | 4077 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | 
|  | 4078 | THE SOFTWARE. | 
|  | 4079 |  | 
|  | 4080 | Origin: http://code.google.com/p/y2038 | 
|  | 4081 | Modified for Bionic by the Android Open Source Project | 
| Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 4082 |  | 
|  | 4083 | ------------------------------------------------------------------- | 
|  | 4084 |  | 
|  | 4085 | Copyright (c) 2008  Android Open Source Project (query id randomization) | 
|  | 4086 | Copyright (c) 1985, 1993 | 
|  | 4087 | The Regents of the University of California.  All rights reserved. | 
|  | 4088 |  | 
|  | 4089 | Redistribution and use in source and binary forms, with or without | 
|  | 4090 | modification, are permitted provided that the following conditions | 
|  | 4091 | are met: | 
|  | 4092 | 1. Redistributions of source code must retain the above copyright | 
|  | 4093 | notice, this list of conditions and the following disclaimer. | 
|  | 4094 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 4095 | notice, this list of conditions and the following disclaimer in the | 
|  | 4096 | documentation and/or other materials provided with the distribution. | 
|  | 4097 | 3. All advertising materials mentioning features or use of this software | 
|  | 4098 | must display the following acknowledgement: | 
|  | 4099 | This product includes software developed by the University of | 
|  | 4100 | California, Berkeley and its contributors. | 
|  | 4101 | 4. Neither the name of the University nor the names of its contributors | 
|  | 4102 | may be used to endorse or promote products derived from this software | 
|  | 4103 | without specific prior written permission. | 
|  | 4104 |  | 
|  | 4105 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 4106 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 4107 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 4108 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 4109 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 4110 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 4111 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 4112 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 4113 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 4114 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 4115 | SUCH DAMAGE. | 
|  | 4116 |  | 
|  | 4117 | ------------------------------------------------------------------- | 
| Michael Hope | ea8fad1 | 2012-07-31 16:18:22 +1200 | [diff] [blame] | 4118 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4119 | Copyright (c) 2008 Todd C. Miller <millert@openbsd.org> | 
|  | 4120 |  | 
|  | 4121 | Permission to use, copy, modify, and distribute this software for any | 
|  | 4122 | purpose with or without fee is hereby granted, provided that the above | 
|  | 4123 | copyright notice and this permission notice appear in all copies. | 
|  | 4124 |  | 
|  | 4125 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | 
|  | 4126 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | 
|  | 4127 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | 
|  | 4128 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | 
|  | 4129 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | 
|  | 4130 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | 
|  | 4131 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 
|  | 4132 |  | 
|  | 4133 | ------------------------------------------------------------------- | 
|  | 4134 |  | 
|  | 4135 | Copyright (c) 2009 | 
|  | 4136 | MIPS Technologies, Inc., California. | 
|  | 4137 |  | 
|  | 4138 | Redistribution and use in source and binary forms, with or without | 
|  | 4139 | modification, are permitted provided that the following conditions | 
|  | 4140 | are met: | 
|  | 4141 | 1. Redistributions of source code must retain the above copyright | 
|  | 4142 | notice, this list of conditions and the following disclaimer. | 
|  | 4143 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 4144 | notice, this list of conditions and the following disclaimer in the | 
|  | 4145 | documentation and/or other materials provided with the distribution. | 
|  | 4146 | 3. Neither the name of the MIPS Technologies, Inc., nor the names of its | 
|  | 4147 | contributors may be used to endorse or promote products derived from | 
|  | 4148 | this software without specific prior written permission. | 
|  | 4149 |  | 
|  | 4150 | THIS SOFTWARE IS PROVIDED BY THE MIPS TECHNOLOGIES, INC. ``AS IS'' AND | 
|  | 4151 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 4152 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 4153 | ARE DISCLAIMED.  IN NO EVENT SHALL THE MIPS TECHNOLOGIES, INC. BE LIABLE | 
|  | 4154 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 4155 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 4156 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 4157 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 4158 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 4159 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 4160 | SUCH DAMAGE. | 
|  | 4161 |  | 
|  | 4162 | ------------------------------------------------------------------- | 
|  | 4163 |  | 
|  | 4164 | Copyright (c) 2009 David Schultz <das@FreeBSD.org> | 
|  | 4165 | All rights reserved. | 
|  | 4166 |  | 
| Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame^] | 4167 | Copyright (c) 2011 The FreeBSD Foundation | 
|  | 4168 | All rights reserved. | 
|  | 4169 | Portions of this software were developed by David Chisnall | 
|  | 4170 | under sponsorship from the FreeBSD Foundation. | 
|  | 4171 |  | 
|  | 4172 | Redistribution and use in source and binary forms, with or without | 
|  | 4173 | modification, are permitted provided that the following conditions | 
|  | 4174 | are met: | 
|  | 4175 | 1. Redistributions of source code must retain the above copyright | 
|  | 4176 | notice, this list of conditions and the following disclaimer. | 
|  | 4177 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 4178 | notice, this list of conditions and the following disclaimer in the | 
|  | 4179 | documentation and/or other materials provided with the distribution. | 
|  | 4180 |  | 
|  | 4181 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND | 
|  | 4182 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 4183 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 4184 | ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | 
|  | 4185 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 4186 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 4187 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 4188 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 4189 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 4190 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 4191 | SUCH DAMAGE. | 
|  | 4192 |  | 
|  | 4193 | ------------------------------------------------------------------- | 
|  | 4194 |  | 
|  | 4195 | Copyright (c) 2009 David Schultz <das@FreeBSD.org> | 
|  | 4196 | All rights reserved. | 
|  | 4197 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4198 | Redistribution and use in source and binary forms, with or without | 
|  | 4199 | modification, are permitted provided that the following conditions | 
|  | 4200 | are met: | 
|  | 4201 | 1. Redistributions of source code must retain the above copyright | 
|  | 4202 | notice, this list of conditions and the following disclaimer. | 
|  | 4203 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 4204 | notice, this list of conditions and the following disclaimer in the | 
|  | 4205 | documentation and/or other materials provided with the distribution. | 
|  | 4206 |  | 
|  | 4207 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND | 
|  | 4208 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 4209 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 4210 | ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | 
|  | 4211 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 4212 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 4213 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 4214 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 4215 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 4216 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 4217 | SUCH DAMAGE. | 
|  | 4218 |  | 
|  | 4219 | ------------------------------------------------------------------- | 
|  | 4220 |  | 
| Irina Tirdea | eac9eb4 | 2012-09-08 09:28:30 +0300 | [diff] [blame] | 4221 | Copyright (c) 2009 The NetBSD Foundation, Inc. | 
|  | 4222 |  | 
|  | 4223 | This code is derived from software contributed to The NetBSD Foundation | 
|  | 4224 | by Roy Marples. | 
|  | 4225 |  | 
|  | 4226 | Redistribution and use in source and binary forms, with or without | 
|  | 4227 | modification, are permitted provided that the following conditions | 
|  | 4228 | are met: | 
|  | 4229 | 1. Redistributions of source code must retain the above copyright | 
|  | 4230 | notice, this list of conditions and the following disclaimer. | 
|  | 4231 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 4232 | notice, this list of conditions and the following disclaimer in the | 
|  | 4233 | documentation and/or other materials provided with the distribution. | 
|  | 4234 |  | 
|  | 4235 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR | 
|  | 4236 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES | 
|  | 4237 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. | 
|  | 4238 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, | 
|  | 4239 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | 
|  | 4240 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 
|  | 4241 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 
|  | 4242 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 
|  | 4243 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 
|  | 4244 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
|  | 4245 |  | 
|  | 4246 | ------------------------------------------------------------------- | 
|  | 4247 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4248 | Copyright (c) 2010 MIPS Technologies, Inc. | 
|  | 4249 |  | 
|  | 4250 | All rights reserved. | 
|  | 4251 |  | 
|  | 4252 | Redistribution and use in source and binary forms, with or without | 
|  | 4253 | modification, are permitted provided that the following conditions | 
|  | 4254 | are met: | 
|  | 4255 |  | 
|  | 4256 | Redistributions of source code must retain the above copyright | 
|  | 4257 | notice, this list of conditions and the following disclaimer. | 
|  | 4258 | Redistributions in binary form must reproduce the above copyright | 
|  | 4259 | notice, this list of conditions and the following disclaimer | 
|  | 4260 | in the documentation and/or other materials provided with | 
|  | 4261 | the distribution. | 
|  | 4262 | Neither the name of MIPS Technologies Inc. nor the names of its | 
|  | 4263 | contributors may be used to endorse or promote products derived | 
|  | 4264 | from this software without specific prior written permission. | 
|  | 4265 |  | 
|  | 4266 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 
|  | 4267 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 
|  | 4268 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | 
|  | 4269 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | 
|  | 4270 | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 
|  | 4271 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 
|  | 4272 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 
|  | 4273 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 
|  | 4274 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 
|  | 4275 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 
|  | 4276 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
|  | 4277 |  | 
|  | 4278 | ------------------------------------------------------------------- | 
|  | 4279 |  | 
| Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4280 | Copyright (c) 2010 Todd C. Miller <Todd.Miller@courtesan.com> | 
|  | 4281 |  | 
|  | 4282 | Permission to use, copy, modify, and distribute this software for any | 
|  | 4283 | purpose with or without fee is hereby granted, provided that the above | 
|  | 4284 | copyright notice and this permission notice appear in all copies. | 
|  | 4285 |  | 
|  | 4286 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | 
|  | 4287 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | 
|  | 4288 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | 
|  | 4289 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | 
|  | 4290 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | 
|  | 4291 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | 
|  | 4292 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 
|  | 4293 |  | 
|  | 4294 | ------------------------------------------------------------------- | 
|  | 4295 |  | 
| Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 4296 | Copyright (c) 2010, 2011, 2012, 2013 Intel Corporation | 
| Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4297 | All rights reserved. | 
|  | 4298 |  | 
|  | 4299 | Redistribution and use in source and binary forms, with or without | 
|  | 4300 | modification, are permitted provided that the following conditions are met: | 
|  | 4301 |  | 
|  | 4302 | Redistributions of source code must retain the above copyright notice, | 
|  | 4303 | this list of conditions and the following disclaimer. | 
|  | 4304 |  | 
|  | 4305 | Redistributions in binary form must reproduce the above copyright notice, | 
|  | 4306 | this list of conditions and the following disclaimer in the documentation | 
|  | 4307 | and/or other materials provided with the distribution. | 
|  | 4308 |  | 
|  | 4309 | Neither the name of Intel Corporation nor the names of its contributors | 
|  | 4310 | may be used to endorse or promote products derived from this software | 
|  | 4311 | without specific prior written permission. | 
|  | 4312 |  | 
|  | 4313 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | 
|  | 4314 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | 
|  | 4315 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | 
|  | 4316 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR | 
|  | 4317 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | 
|  | 4318 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 
|  | 4319 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | 
|  | 4320 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 
|  | 4321 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | 
|  | 4322 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
|  | 4323 |  | 
|  | 4324 | ------------------------------------------------------------------- | 
|  | 4325 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4326 | Copyright (c) 2010, Intel Corporation | 
|  | 4327 | All rights reserved. | 
|  | 4328 |  | 
|  | 4329 | Redistribution and use in source and binary forms, with or without | 
|  | 4330 | modification, are permitted provided that the following conditions are met: | 
|  | 4331 |  | 
|  | 4332 | Redistributions of source code must retain the above copyright notice, | 
|  | 4333 | this list of conditions and the following disclaimer. | 
|  | 4334 |  | 
|  | 4335 | Redistributions in binary form must reproduce the above copyright notice, | 
|  | 4336 | this list of conditions and the following disclaimer in the documentation | 
|  | 4337 | and/or other materials provided with the distribution. | 
|  | 4338 |  | 
|  | 4339 | Neither the name of Intel Corporation nor the names of its contributors | 
|  | 4340 | may be used to endorse or promote products derived from this software | 
|  | 4341 | without specific prior written permission. | 
|  | 4342 |  | 
|  | 4343 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | 
|  | 4344 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | 
|  | 4345 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | 
|  | 4346 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR | 
|  | 4347 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | 
|  | 4348 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 
|  | 4349 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | 
|  | 4350 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 
|  | 4351 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | 
|  | 4352 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
|  | 4353 |  | 
|  | 4354 | ------------------------------------------------------------------- | 
|  | 4355 |  | 
| Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 4356 | Copyright (c) 2011 David Chisnall | 
|  | 4357 | All rights reserved. | 
|  | 4358 |  | 
|  | 4359 | Redistribution and use in source and binary forms, with or without | 
|  | 4360 | modification, are permitted provided that the following conditions | 
|  | 4361 | are met: | 
|  | 4362 | 1. Redistributions of source code must retain the above copyright | 
|  | 4363 | notice, this list of conditions and the following disclaimer. | 
|  | 4364 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 4365 | notice, this list of conditions and the following disclaimer in the | 
|  | 4366 | documentation and/or other materials provided with the distribution. | 
|  | 4367 |  | 
|  | 4368 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND | 
|  | 4369 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 4370 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 4371 | ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | 
|  | 4372 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 4373 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 4374 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 4375 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 4376 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 4377 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 4378 | SUCH DAMAGE. | 
|  | 4379 |  | 
|  | 4380 | ------------------------------------------------------------------- | 
|  | 4381 |  | 
| Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame^] | 4382 | Copyright (c) 2011 Ed Schouten <ed@FreeBSD.org> | 
|  | 4383 | David Chisnall <theraven@FreeBSD.org> | 
|  | 4384 | All rights reserved. | 
|  | 4385 |  | 
|  | 4386 | Redistribution and use in source and binary forms, with or without | 
|  | 4387 | modification, are permitted provided that the following conditions | 
|  | 4388 | are met: | 
|  | 4389 | 1. Redistributions of source code must retain the above copyright | 
|  | 4390 | notice, this list of conditions and the following disclaimer. | 
|  | 4391 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 4392 | notice, this list of conditions and the following disclaimer in the | 
|  | 4393 | documentation and/or other materials provided with the distribution. | 
|  | 4394 |  | 
|  | 4395 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND | 
|  | 4396 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 4397 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 4398 | ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | 
|  | 4399 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 4400 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 4401 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 4402 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 4403 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 4404 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 4405 | SUCH DAMAGE. | 
|  | 4406 |  | 
|  | 4407 | ------------------------------------------------------------------- | 
|  | 4408 |  | 
| Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4409 | Copyright (c) 2011 Intel Corporation | 
|  | 4410 | All rights reserved. | 
|  | 4411 |  | 
|  | 4412 | Redistribution and use in source and binary forms, with or without | 
|  | 4413 | modification, are permitted provided that the following conditions are met: | 
|  | 4414 |  | 
|  | 4415 | Redistributions of source code must retain the above copyright notice, | 
|  | 4416 | this list of conditions and the following disclaimer. | 
|  | 4417 |  | 
|  | 4418 | Redistributions in binary form must reproduce the above copyright notice, | 
|  | 4419 | this list of conditions and the following disclaimer in the documentation | 
|  | 4420 | and/or other materials provided with the distribution. | 
|  | 4421 |  | 
|  | 4422 | Neither the name of Intel Corporation nor the names of its contributors | 
|  | 4423 | may be used to endorse or promote products derived from this software | 
|  | 4424 | without specific prior written permission. | 
|  | 4425 |  | 
|  | 4426 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | 
|  | 4427 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | 
|  | 4428 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | 
|  | 4429 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR | 
|  | 4430 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | 
|  | 4431 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 
|  | 4432 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | 
|  | 4433 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 
|  | 4434 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | 
|  | 4435 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
|  | 4436 |  | 
|  | 4437 | ------------------------------------------------------------------- | 
|  | 4438 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4439 | Copyright (c) 2011 The Android Open Source Project | 
|  | 4440 | Copyright (c) 2008 ARM Ltd | 
|  | 4441 | All rights reserved. | 
|  | 4442 |  | 
|  | 4443 | Redistribution and use in source and binary forms, with or without | 
|  | 4444 | modification, are permitted provided that the following conditions | 
|  | 4445 | are met: | 
|  | 4446 | 1. Redistributions of source code must retain the above copyright | 
|  | 4447 | notice, this list of conditions and the following disclaimer. | 
|  | 4448 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 4449 | notice, this list of conditions and the following disclaimer in the | 
|  | 4450 | documentation and/or other materials provided with the distribution. | 
|  | 4451 | 3. The name of the company may not be used to endorse or promote | 
|  | 4452 | products derived from this software without specific prior written | 
|  | 4453 | permission. | 
|  | 4454 |  | 
|  | 4455 | THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED | 
|  | 4456 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | 
|  | 4457 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. | 
|  | 4458 | IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 
|  | 4459 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | 
|  | 4460 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | 
|  | 4461 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF | 
|  | 4462 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | 
|  | 4463 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | 
|  | 4464 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
|  | 4465 |  | 
|  | 4466 | ------------------------------------------------------------------- | 
|  | 4467 |  | 
| Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 4468 | Copyright (c) 2011, 2012, 2013 Intel Corporation | 
|  | 4469 | All rights reserved. | 
|  | 4470 |  | 
|  | 4471 | Redistribution and use in source and binary forms, with or without | 
|  | 4472 | modification, are permitted provided that the following conditions are met: | 
|  | 4473 |  | 
|  | 4474 | Redistributions of source code must retain the above copyright notice, | 
|  | 4475 | this list of conditions and the following disclaimer. | 
|  | 4476 |  | 
|  | 4477 | Redistributions in binary form must reproduce the above copyright notice, | 
|  | 4478 | this list of conditions and the following disclaimer in the documentation | 
|  | 4479 | and/or other materials provided with the distribution. | 
|  | 4480 |  | 
|  | 4481 | Neither the name of Intel Corporation nor the names of its contributors | 
|  | 4482 | may be used to endorse or promote products derived from this software | 
|  | 4483 | without specific prior written permission. | 
|  | 4484 |  | 
|  | 4485 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | 
|  | 4486 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | 
|  | 4487 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | 
|  | 4488 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR | 
|  | 4489 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | 
|  | 4490 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 
|  | 4491 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | 
|  | 4492 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 
|  | 4493 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | 
|  | 4494 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
|  | 4495 |  | 
|  | 4496 | ------------------------------------------------------------------- | 
|  | 4497 |  | 
| Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4498 | Copyright (c) 2011, Intel Corporation | 
|  | 4499 | All rights reserved. | 
|  | 4500 |  | 
|  | 4501 | Redistribution and use in source and binary forms, with or without | 
|  | 4502 | modification, are permitted provided that the following conditions are met: | 
|  | 4503 |  | 
|  | 4504 | Redistributions of source code must retain the above copyright notice, | 
|  | 4505 | this list of conditions and the following disclaimer. | 
|  | 4506 |  | 
|  | 4507 | Redistributions in binary form must reproduce the above copyright notice, | 
|  | 4508 | this list of conditions and the following disclaimer in the documentation | 
|  | 4509 | and/or other materials provided with the distribution. | 
|  | 4510 |  | 
|  | 4511 | Neither the name of Intel Corporation nor the names of its contributors | 
|  | 4512 | may be used to endorse or promote products derived from this software | 
|  | 4513 | without specific prior written permission. | 
|  | 4514 |  | 
|  | 4515 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | 
|  | 4516 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | 
|  | 4517 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | 
|  | 4518 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR | 
|  | 4519 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | 
|  | 4520 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 
|  | 4521 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | 
|  | 4522 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 
|  | 4523 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | 
|  | 4524 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
|  | 4525 |  | 
|  | 4526 | ------------------------------------------------------------------- | 
|  | 4527 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4528 | Copyright (c) 2011, VMware, Inc. | 
|  | 4529 | All rights reserved. | 
|  | 4530 |  | 
|  | 4531 | Redistribution and use in source and binary forms, with or without | 
|  | 4532 | modification, are permitted provided that the following conditions are met: | 
|  | 4533 | Redistributions of source code must retain the above copyright | 
|  | 4534 | notice, this list of conditions and the following disclaimer. | 
|  | 4535 | Redistributions in binary form must reproduce the above copyright | 
|  | 4536 | notice, this list of conditions and the following disclaimer in the | 
|  | 4537 | documentation and/or other materials provided with the distribution. | 
|  | 4538 | Neither the name of the VMware, Inc. nor the names of its contributors | 
|  | 4539 | may be used to endorse or promote products derived from this software | 
|  | 4540 | without specific prior written permission. | 
|  | 4541 |  | 
|  | 4542 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | 
|  | 4543 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 4544 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 4545 | ARE DISCLAIMED. IN NO EVENT SHALL VMWARE, INC. OR CONTRIBUTORS BE LIABLE FOR | 
|  | 4546 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | 
|  | 4547 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 
|  | 4548 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 
|  | 4549 | ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 
|  | 4550 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 
|  | 4551 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
|  | 4552 |  | 
|  | 4553 | ------------------------------------------------------------------- | 
|  | 4554 |  | 
| Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4555 | Copyright (c) 2012, Linaro Limited | 
|  | 4556 | All rights reserved. | 
|  | 4557 |  | 
|  | 4558 | Redistribution and use in source and binary forms, with or without | 
|  | 4559 | modification, are permitted provided that the following conditions are met: | 
|  | 4560 | Redistributions of source code must retain the above copyright | 
|  | 4561 | notice, this list of conditions and the following disclaimer. | 
|  | 4562 | Redistributions in binary form must reproduce the above copyright | 
|  | 4563 | notice, this list of conditions and the following disclaimer in the | 
|  | 4564 | documentation and/or other materials provided with the distribution. | 
|  | 4565 | Neither the name of the Linaro nor the | 
|  | 4566 | names of its contributors may be used to endorse or promote products | 
|  | 4567 | derived from this software without specific prior written permission. | 
|  | 4568 |  | 
|  | 4569 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 
|  | 4570 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 
|  | 4571 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | 
|  | 4572 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | 
|  | 4573 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 
|  | 4574 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 
|  | 4575 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 
|  | 4576 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 
|  | 4577 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 
|  | 4578 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 
|  | 4579 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
|  | 4580 |  | 
|  | 4581 | ------------------------------------------------------------------- | 
|  | 4582 |  | 
| Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame^] | 4583 | Copyright (c) 2012, Linaro Limited | 
|  | 4584 | All rights reserved. | 
|  | 4585 | Copyright (c) 2014, NVIDIA Corporation.  All rights reserved. | 
|  | 4586 |  | 
|  | 4587 | Redistribution and use in source and binary forms, with or without | 
|  | 4588 | modification, are permitted provided that the following conditions are met: | 
|  | 4589 | Redistributions of source code must retain the above copyright | 
|  | 4590 | notice, this list of conditions and the following disclaimer. | 
|  | 4591 | Redistributions in binary form must reproduce the above copyright | 
|  | 4592 | notice, this list of conditions and the following disclaimer in the | 
|  | 4593 | documentation and/or other materials provided with the distribution. | 
|  | 4594 | Neither the name of the Linaro nor the | 
|  | 4595 | names of its contributors may be used to endorse or promote products | 
|  | 4596 | derived from this software without specific prior written permission. | 
|  | 4597 |  | 
|  | 4598 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 
|  | 4599 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 
|  | 4600 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | 
|  | 4601 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | 
|  | 4602 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 
|  | 4603 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 
|  | 4604 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 
|  | 4605 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 
|  | 4606 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 
|  | 4607 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 
|  | 4608 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
|  | 4609 |  | 
|  | 4610 | ------------------------------------------------------------------- | 
|  | 4611 |  | 
| Elliott Hughes | 0493a6f | 2013-03-07 11:48:58 -0800 | [diff] [blame] | 4612 | Copyright (c) 2013 ARM Ltd | 
|  | 4613 | All rights reserved. | 
|  | 4614 |  | 
|  | 4615 | Redistribution and use in source and binary forms, with or without | 
|  | 4616 | modification, are permitted provided that the following conditions | 
|  | 4617 | are met: | 
|  | 4618 | 1. Redistributions of source code must retain the above copyright | 
|  | 4619 | notice, this list of conditions and the following disclaimer. | 
|  | 4620 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 4621 | notice, this list of conditions and the following disclaimer in the | 
|  | 4622 | documentation and/or other materials provided with the distribution. | 
|  | 4623 | 3. The name of the company may not be used to endorse or promote | 
|  | 4624 | products derived from this software without specific prior written | 
|  | 4625 | permission. | 
|  | 4626 |  | 
|  | 4627 | THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED | 
|  | 4628 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | 
|  | 4629 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. | 
|  | 4630 | IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 
|  | 4631 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | 
|  | 4632 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | 
|  | 4633 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF | 
|  | 4634 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | 
|  | 4635 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | 
|  | 4636 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
|  | 4637 |  | 
|  | 4638 | ------------------------------------------------------------------- | 
|  | 4639 |  | 
| Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4640 | Copyright (c) 2013 Antoine Jacoutot <ajacoutot@openbsd.org> | 
|  | 4641 |  | 
|  | 4642 | Permission to use, copy, modify, and distribute this software for any | 
|  | 4643 | purpose with or without fee is hereby granted, provided that the above | 
|  | 4644 | copyright notice and this permission notice appear in all copies. | 
|  | 4645 |  | 
|  | 4646 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | 
|  | 4647 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | 
|  | 4648 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | 
|  | 4649 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | 
|  | 4650 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | 
|  | 4651 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | 
|  | 4652 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 
|  | 4653 |  | 
|  | 4654 | ------------------------------------------------------------------- | 
|  | 4655 |  | 
| Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 4656 | Copyright (c) 2013, Linaro Limited | 
|  | 4657 | All rights reserved. | 
|  | 4658 |  | 
|  | 4659 | Redistribution and use in source and binary forms, with or without | 
|  | 4660 | modification, are permitted provided that the following conditions | 
|  | 4661 | are met: | 
|  | 4662 |  | 
|  | 4663 | Redistributions of source code must retain the above copyright | 
|  | 4664 | notice, this list of conditions and the following disclaimer. | 
|  | 4665 |  | 
|  | 4666 | Redistributions in binary form must reproduce the above copyright | 
|  | 4667 | notice, this list of conditions and the following disclaimer in the | 
|  | 4668 | documentation and/or other materials provided with the distribution. | 
|  | 4669 |  | 
|  | 4670 | Neither the name of Linaro Limited nor the names of its | 
|  | 4671 | contributors may be used to endorse or promote products derived | 
|  | 4672 | from this software without specific prior written permission. | 
|  | 4673 |  | 
|  | 4674 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 
|  | 4675 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 
|  | 4676 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | 
|  | 4677 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | 
|  | 4678 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 
|  | 4679 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 
|  | 4680 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 
|  | 4681 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 
|  | 4682 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 
|  | 4683 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 
|  | 4684 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
|  | 4685 |  | 
|  | 4686 | ------------------------------------------------------------------- | 
|  | 4687 |  | 
| Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame^] | 4688 | Copyright (c) 2014, Intel Corporation | 
|  | 4689 | All rights reserved. | 
|  | 4690 |  | 
|  | 4691 | Redistribution and use in source and binary forms, with or without | 
|  | 4692 | modification, are permitted provided that the following conditions are met: | 
|  | 4693 |  | 
|  | 4694 | Redistributions of source code must retain the above copyright notice, | 
|  | 4695 | this list of conditions and the following disclaimer. | 
|  | 4696 |  | 
|  | 4697 | Redistributions in binary form must reproduce the above copyright notice, | 
|  | 4698 | this list of conditions and the following disclaimer in the documentation | 
|  | 4699 | and/or other materials provided with the distribution. | 
|  | 4700 |  | 
|  | 4701 | Neither the name of Intel Corporation nor the names of its contributors | 
|  | 4702 | may be used to endorse or promote products derived from this software | 
|  | 4703 | without specific prior written permission. | 
|  | 4704 |  | 
|  | 4705 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | 
|  | 4706 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | 
|  | 4707 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | 
|  | 4708 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR | 
|  | 4709 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | 
|  | 4710 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 
|  | 4711 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | 
|  | 4712 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 
|  | 4713 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | 
|  | 4714 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
|  | 4715 |  | 
|  | 4716 | ------------------------------------------------------------------- | 
|  | 4717 |  | 
| Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4718 | Copyright (c) 2014, Linaro Limited | 
|  | 4719 | All rights reserved. | 
|  | 4720 |  | 
|  | 4721 | Redistribution and use in source and binary forms, with or without | 
|  | 4722 | modification, are permitted provided that the following conditions are met: | 
|  | 4723 | Redistributions of source code must retain the above copyright | 
|  | 4724 | notice, this list of conditions and the following disclaimer. | 
|  | 4725 | Redistributions in binary form must reproduce the above copyright | 
|  | 4726 | notice, this list of conditions and the following disclaimer in the | 
|  | 4727 | documentation and/or other materials provided with the distribution. | 
|  | 4728 | Neither the name of the Linaro nor the | 
|  | 4729 | names of its contributors may be used to endorse or promote products | 
|  | 4730 | derived from this software without specific prior written permission. | 
|  | 4731 |  | 
|  | 4732 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 
|  | 4733 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 
|  | 4734 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | 
|  | 4735 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | 
|  | 4736 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 
|  | 4737 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 
|  | 4738 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 
|  | 4739 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 
|  | 4740 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 
|  | 4741 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 
|  | 4742 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
|  | 4743 |  | 
|  | 4744 | ------------------------------------------------------------------- | 
|  | 4745 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4746 | Copyright (c)1999 Citrus Project, | 
|  | 4747 | All rights reserved. | 
|  | 4748 |  | 
|  | 4749 | Redistribution and use in source and binary forms, with or without | 
|  | 4750 | modification, are permitted provided that the following conditions | 
|  | 4751 | are met: | 
|  | 4752 | 1. Redistributions of source code must retain the above copyright | 
|  | 4753 | notice, this list of conditions and the following disclaimer. | 
|  | 4754 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 4755 | notice, this list of conditions and the following disclaimer in the | 
|  | 4756 | documentation and/or other materials provided with the distribution. | 
|  | 4757 |  | 
|  | 4758 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND | 
|  | 4759 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 4760 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 4761 | ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | 
|  | 4762 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 4763 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 4764 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 4765 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 4766 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 4767 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 4768 | SUCH DAMAGE. | 
|  | 4769 |  | 
|  | 4770 | ------------------------------------------------------------------- | 
|  | 4771 |  | 
| Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 4772 | Copyright (c)1999, 2000, 2001 Citrus Project, | 
|  | 4773 | All rights reserved. | 
|  | 4774 |  | 
|  | 4775 | Redistribution and use in source and binary forms, with or without | 
|  | 4776 | modification, are permitted provided that the following conditions | 
|  | 4777 | are met: | 
|  | 4778 | 1. Redistributions of source code must retain the above copyright | 
|  | 4779 | notice, this list of conditions and the following disclaimer. | 
|  | 4780 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 4781 | notice, this list of conditions and the following disclaimer in the | 
|  | 4782 | documentation and/or other materials provided with the distribution. | 
|  | 4783 |  | 
|  | 4784 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND | 
|  | 4785 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 4786 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 4787 | ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | 
|  | 4788 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 4789 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 4790 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 4791 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 4792 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 4793 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 4794 | SUCH DAMAGE. | 
|  | 4795 |  | 
|  | 4796 | ------------------------------------------------------------------- | 
|  | 4797 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4798 | Copyright (c)2001 Citrus Project, | 
|  | 4799 | All rights reserved. | 
|  | 4800 |  | 
|  | 4801 | Redistribution and use in source and binary forms, with or without | 
|  | 4802 | modification, are permitted provided that the following conditions | 
|  | 4803 | are met: | 
|  | 4804 | 1. Redistributions of source code must retain the above copyright | 
|  | 4805 | notice, this list of conditions and the following disclaimer. | 
|  | 4806 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 4807 | notice, this list of conditions and the following disclaimer in the | 
|  | 4808 | documentation and/or other materials provided with the distribution. | 
|  | 4809 |  | 
|  | 4810 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND | 
|  | 4811 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 4812 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 4813 | ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | 
|  | 4814 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 4815 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 4816 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 4817 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 4818 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 4819 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 4820 | SUCH DAMAGE. | 
|  | 4821 |  | 
|  | 4822 | ------------------------------------------------------------------- | 
|  | 4823 |  | 
| Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 4824 | Copyright (c)2003 Citrus Project, | 
|  | 4825 | All rights reserved. | 
|  | 4826 |  | 
|  | 4827 | Redistribution and use in source and binary forms, with or without | 
|  | 4828 | modification, are permitted provided that the following conditions | 
|  | 4829 | are met: | 
|  | 4830 | 1. Redistributions of source code must retain the above copyright | 
|  | 4831 | notice, this list of conditions and the following disclaimer. | 
|  | 4832 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 4833 | notice, this list of conditions and the following disclaimer in the | 
|  | 4834 | documentation and/or other materials provided with the distribution. | 
|  | 4835 |  | 
|  | 4836 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND | 
|  | 4837 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 4838 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 4839 | ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | 
|  | 4840 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 4841 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 4842 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 4843 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 4844 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 4845 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 4846 | SUCH DAMAGE. | 
|  | 4847 |  | 
|  | 4848 | ------------------------------------------------------------------- | 
|  | 4849 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4850 | Copyright 2000 David E. O'Brien, John D. Polstra. | 
|  | 4851 | All rights reserved. | 
|  | 4852 |  | 
|  | 4853 | Redistribution and use in source and binary forms, with or without | 
|  | 4854 | modification, are permitted provided that the following conditions | 
|  | 4855 | are met: | 
|  | 4856 | 1. Redistributions of source code must retain the above copyright | 
|  | 4857 | notice, this list of conditions and the following disclaimer. | 
|  | 4858 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 4859 | notice, this list of conditions and the following disclaimer in the | 
|  | 4860 | documentation and/or other materials provided with the distribution. | 
|  | 4861 |  | 
|  | 4862 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR | 
|  | 4863 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES | 
|  | 4864 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. | 
|  | 4865 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, | 
|  | 4866 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | 
|  | 4867 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 
|  | 4868 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 
|  | 4869 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 
|  | 4870 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 
|  | 4871 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
|  | 4872 |  | 
|  | 4873 | ------------------------------------------------------------------- | 
|  | 4874 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4875 | Copyright 2008  Android Open Source Project (source port randomization) | 
|  | 4876 | Copyright (c) 1985, 1989, 1993 | 
|  | 4877 | The Regents of the University of California.  All rights reserved. | 
|  | 4878 |  | 
|  | 4879 | Redistribution and use in source and binary forms, with or without | 
|  | 4880 | modification, are permitted provided that the following conditions | 
|  | 4881 | are met: | 
|  | 4882 | 1. Redistributions of source code must retain the above copyright | 
|  | 4883 | notice, this list of conditions and the following disclaimer. | 
|  | 4884 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 4885 | notice, this list of conditions and the following disclaimer in the | 
|  | 4886 | documentation and/or other materials provided with the distribution. | 
|  | 4887 | 3. All advertising materials mentioning features or use of this software | 
|  | 4888 | must display the following acknowledgement: | 
|  | 4889 | This product includes software developed by the University of | 
|  | 4890 | California, Berkeley and its contributors. | 
|  | 4891 | 4. Neither the name of the University nor the names of its contributors | 
|  | 4892 | may be used to endorse or promote products derived from this software | 
|  | 4893 | without specific prior written permission. | 
|  | 4894 |  | 
|  | 4895 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 
|  | 4896 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
|  | 4897 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | 4898 | ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
|  | 4899 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 4900 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 4901 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 4902 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 4903 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 4904 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 4905 | SUCH DAMAGE. | 
|  | 4906 |  | 
|  | 4907 | ------------------------------------------------------------------- | 
|  | 4908 |  | 
| Calin Juravle | c4fbf92 | 2014-03-10 11:23:52 +0000 | [diff] [blame] | 4909 | Portions Copyright (C) 2004, 2005, 2008, 2009  Internet Systems Consortium, Inc. ("ISC") | 
|  | 4910 | Portions Copyright (C) 1996-2003  Internet Software Consortium. | 
|  | 4911 |  | 
|  | 4912 | Permission to use, copy, modify, and/or distribute this software for any | 
|  | 4913 | purpose with or without fee is hereby granted, provided that the above | 
|  | 4914 | copyright notice and this permission notice appear in all copies. | 
|  | 4915 |  | 
|  | 4916 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH | 
|  | 4917 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY | 
|  | 4918 | AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, | 
|  | 4919 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM | 
|  | 4920 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE | 
|  | 4921 | OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR | 
|  | 4922 | PERFORMANCE OF THIS SOFTWARE. | 
|  | 4923 |  | 
|  | 4924 | ------------------------------------------------------------------- | 
|  | 4925 |  | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4926 | Portions Copyright (c) 1993 by Digital Equipment Corporation. | 
|  | 4927 |  | 
|  | 4928 | Permission to use, copy, modify, and distribute this software for any | 
|  | 4929 | purpose with or without fee is hereby granted, provided that the above | 
|  | 4930 | copyright notice and this permission notice appear in all copies, and that | 
|  | 4931 | the name of Digital Equipment Corporation not be used in advertising or | 
|  | 4932 | publicity pertaining to distribution of the document or software without | 
|  | 4933 | specific, written prior permission. | 
|  | 4934 |  | 
|  | 4935 | THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL | 
|  | 4936 | WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES | 
|  | 4937 | OF MERCHANTABILITY AND FITNESS.   IN NO EVENT SHALL DIGITAL EQUIPMENT | 
|  | 4938 | CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL | 
|  | 4939 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR | 
|  | 4940 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS | 
|  | 4941 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS | 
|  | 4942 | SOFTWARE. | 
|  | 4943 |  | 
|  | 4944 | ------------------------------------------------------------------- | 
|  | 4945 |  | 
|  | 4946 | Portions Copyright (c) 1995 by International Business Machines, Inc. | 
|  | 4947 |  | 
|  | 4948 | International Business Machines, Inc. (hereinafter called IBM) grants | 
|  | 4949 | permission under its copyrights to use, copy, modify, and distribute this | 
|  | 4950 | Software with or without fee, provided that the above copyright notice and | 
|  | 4951 | all paragraphs of this notice appear in all copies, and that the name of IBM | 
|  | 4952 | not be used in connection with the marketing of any product incorporating | 
|  | 4953 | the Software or modifications thereof, without specific, written prior | 
|  | 4954 | permission. | 
|  | 4955 |  | 
|  | 4956 | To the extent it has a right to do so, IBM grants an immunity from suit | 
|  | 4957 | under its patents, if any, for the use, sale or manufacture of products to | 
|  | 4958 | the extent that such products are used for performing Domain Name System | 
|  | 4959 | dynamic updates in TCP/IP networks by means of the Software.  No immunity is | 
|  | 4960 | granted for any product per se or for any other function of any product. | 
|  | 4961 |  | 
|  | 4962 | THE SOFTWARE IS PROVIDED "AS IS", AND IBM DISCLAIMS ALL WARRANTIES, | 
|  | 4963 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | 
|  | 4964 | PARTICULAR PURPOSE.  IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL, | 
|  | 4965 | DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING | 
|  | 4966 | OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN | 
|  | 4967 | IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES. | 
|  | 4968 |  | 
|  | 4969 | ------------------------------------------------------------------- | 
|  | 4970 |  | 
|  | 4971 | Portions Copyright(C) 1995, Jason Downs.  All rights reserved. | 
|  | 4972 |  | 
|  | 4973 | Redistribution and use in source and binary forms, with or without | 
|  | 4974 | modification, are permitted provided that the following conditions | 
|  | 4975 | are met: | 
|  | 4976 | 1. Redistributions of source code must retain the above copyright | 
|  | 4977 | notice, this list of conditions and the following disclaimer. | 
|  | 4978 | 2. Redistributions in binary form must reproduce the above copyright | 
|  | 4979 | notice, this list of conditions and the following disclaimer in the | 
|  | 4980 | documentation and/or other materials provided with the distribution. | 
|  | 4981 |  | 
|  | 4982 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS | 
|  | 4983 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | 
|  | 4984 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | 
|  | 4985 | DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, | 
|  | 4986 | INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | 
|  | 4987 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | 
|  | 4988 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | 
|  | 4989 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
|  | 4990 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
|  | 4991 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
|  | 4992 | SUCH DAMAGE. | 
|  | 4993 |  | 
|  | 4994 | ------------------------------------------------------------------- | 
|  | 4995 |  | 
|  | 4996 | The author of this software is David M. Gay. | 
|  | 4997 |  | 
| Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 4998 | Copyright (C) 1998 by Lucent Technologies | 
|  | 4999 | All Rights Reserved | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5000 |  | 
| Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 5001 | Permission to use, copy, modify, and distribute this software and | 
|  | 5002 | its documentation for any purpose and without fee is hereby | 
|  | 5003 | granted, provided that the above copyright notice appear in all | 
|  | 5004 | copies and that both that the copyright notice and this | 
|  | 5005 | permission notice and warranty disclaimer appear in supporting | 
|  | 5006 | documentation, and that the name of Lucent or any of its entities | 
|  | 5007 | not be used in advertising or publicity pertaining to | 
|  | 5008 | distribution of the software without specific, written prior | 
|  | 5009 | permission. | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5010 |  | 
| Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 5011 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, | 
|  | 5012 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. | 
|  | 5013 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY | 
|  | 5014 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | 
|  | 5015 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER | 
|  | 5016 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, | 
|  | 5017 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF | 
|  | 5018 | THIS SOFTWARE. | 
|  | 5019 |  | 
|  | 5020 | ------------------------------------------------------------------- | 
|  | 5021 |  | 
|  | 5022 | The author of this software is David M. Gay. | 
|  | 5023 |  | 
|  | 5024 | Copyright (C) 1998, 1999 by Lucent Technologies | 
|  | 5025 | All Rights Reserved | 
|  | 5026 |  | 
|  | 5027 | Permission to use, copy, modify, and distribute this software and | 
|  | 5028 | its documentation for any purpose and without fee is hereby | 
|  | 5029 | granted, provided that the above copyright notice appear in all | 
|  | 5030 | copies and that both that the copyright notice and this | 
|  | 5031 | permission notice and warranty disclaimer appear in supporting | 
|  | 5032 | documentation, and that the name of Lucent or any of its entities | 
|  | 5033 | not be used in advertising or publicity pertaining to | 
|  | 5034 | distribution of the software without specific, written prior | 
|  | 5035 | permission. | 
|  | 5036 |  | 
|  | 5037 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, | 
|  | 5038 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. | 
|  | 5039 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY | 
|  | 5040 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | 
|  | 5041 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER | 
|  | 5042 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, | 
|  | 5043 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF | 
|  | 5044 | THIS SOFTWARE. | 
|  | 5045 |  | 
|  | 5046 | ------------------------------------------------------------------- | 
|  | 5047 |  | 
|  | 5048 | The author of this software is David M. Gay. | 
|  | 5049 |  | 
|  | 5050 | Copyright (C) 1998, 2000 by Lucent Technologies | 
|  | 5051 | All Rights Reserved | 
|  | 5052 |  | 
|  | 5053 | Permission to use, copy, modify, and distribute this software and | 
|  | 5054 | its documentation for any purpose and without fee is hereby | 
|  | 5055 | granted, provided that the above copyright notice appear in all | 
|  | 5056 | copies and that both that the copyright notice and this | 
|  | 5057 | permission notice and warranty disclaimer appear in supporting | 
|  | 5058 | documentation, and that the name of Lucent or any of its entities | 
|  | 5059 | not be used in advertising or publicity pertaining to | 
|  | 5060 | distribution of the software without specific, written prior | 
|  | 5061 | permission. | 
|  | 5062 |  | 
|  | 5063 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, | 
|  | 5064 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. | 
|  | 5065 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY | 
|  | 5066 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | 
|  | 5067 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER | 
|  | 5068 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, | 
|  | 5069 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF | 
|  | 5070 | THIS SOFTWARE. | 
|  | 5071 |  | 
|  | 5072 | ------------------------------------------------------------------- | 
|  | 5073 |  | 
|  | 5074 | The author of this software is David M. Gay. | 
|  | 5075 |  | 
|  | 5076 | Copyright (C) 1998-2000 by Lucent Technologies | 
|  | 5077 | All Rights Reserved | 
|  | 5078 |  | 
|  | 5079 | Permission to use, copy, modify, and distribute this software and | 
|  | 5080 | its documentation for any purpose and without fee is hereby | 
|  | 5081 | granted, provided that the above copyright notice appear in all | 
|  | 5082 | copies and that both that the copyright notice and this | 
|  | 5083 | permission notice and warranty disclaimer appear in supporting | 
|  | 5084 | documentation, and that the name of Lucent or any of its entities | 
|  | 5085 | not be used in advertising or publicity pertaining to | 
|  | 5086 | distribution of the software without specific, written prior | 
|  | 5087 | permission. | 
|  | 5088 |  | 
|  | 5089 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, | 
|  | 5090 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. | 
|  | 5091 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY | 
|  | 5092 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | 
|  | 5093 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER | 
|  | 5094 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, | 
|  | 5095 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF | 
|  | 5096 | THIS SOFTWARE. | 
|  | 5097 |  | 
|  | 5098 | ------------------------------------------------------------------- | 
|  | 5099 |  | 
|  | 5100 | The author of this software is David M. Gay. | 
|  | 5101 |  | 
|  | 5102 | Copyright (C) 1998-2001 by Lucent Technologies | 
|  | 5103 | All Rights Reserved | 
|  | 5104 |  | 
|  | 5105 | Permission to use, copy, modify, and distribute this software and | 
|  | 5106 | its documentation for any purpose and without fee is hereby | 
|  | 5107 | granted, provided that the above copyright notice appear in all | 
|  | 5108 | copies and that both that the copyright notice and this | 
|  | 5109 | permission notice and warranty disclaimer appear in supporting | 
|  | 5110 | documentation, and that the name of Lucent or any of its entities | 
|  | 5111 | not be used in advertising or publicity pertaining to | 
|  | 5112 | distribution of the software without specific, written prior | 
|  | 5113 | permission. | 
|  | 5114 |  | 
|  | 5115 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, | 
|  | 5116 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. | 
|  | 5117 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY | 
|  | 5118 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | 
|  | 5119 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER | 
|  | 5120 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, | 
|  | 5121 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF | 
|  | 5122 | THIS SOFTWARE. | 
|  | 5123 |  | 
|  | 5124 | ------------------------------------------------------------------- | 
|  | 5125 |  | 
|  | 5126 | The author of this software is David M. Gay. | 
|  | 5127 |  | 
|  | 5128 | Copyright (C) 2000 by Lucent Technologies | 
|  | 5129 | All Rights Reserved | 
|  | 5130 |  | 
|  | 5131 | Permission to use, copy, modify, and distribute this software and | 
|  | 5132 | its documentation for any purpose and without fee is hereby | 
|  | 5133 | granted, provided that the above copyright notice appear in all | 
|  | 5134 | copies and that both that the copyright notice and this | 
|  | 5135 | permission notice and warranty disclaimer appear in supporting | 
|  | 5136 | documentation, and that the name of Lucent or any of its entities | 
|  | 5137 | not be used in advertising or publicity pertaining to | 
|  | 5138 | distribution of the software without specific, written prior | 
|  | 5139 | permission. | 
|  | 5140 |  | 
|  | 5141 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, | 
|  | 5142 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. | 
|  | 5143 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY | 
|  | 5144 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | 
|  | 5145 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER | 
|  | 5146 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, | 
|  | 5147 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF | 
|  | 5148 | THIS SOFTWARE. | 
| Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5149 |  | 
|  | 5150 | ------------------------------------------------------------------- | 
|  | 5151 |  |