1675cf915SPedro F. Giffuni /*
2675cf915SPedro F. Giffuni  * CDDL HEADER START
3675cf915SPedro F. Giffuni  *
4675cf915SPedro F. Giffuni  * The contents of this file are subject to the terms of the
5675cf915SPedro F. Giffuni  * Common Development and Distribution License (the "License").
6675cf915SPedro F. Giffuni  * You may not use this file except in compliance with the License.
7675cf915SPedro F. Giffuni  *
8675cf915SPedro F. Giffuni  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9675cf915SPedro F. Giffuni  * or http://www.opensolaris.org/os/licensing.
10675cf915SPedro F. Giffuni  * See the License for the specific language governing permissions
11675cf915SPedro F. Giffuni  * and limitations under the License.
12675cf915SPedro F. Giffuni  *
13675cf915SPedro F. Giffuni  * When distributing Covered Code, include this CDDL HEADER in each
14675cf915SPedro F. Giffuni  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15675cf915SPedro F. Giffuni  * If applicable, add the following below this CDDL HEADER, with the
16675cf915SPedro F. Giffuni  * fields enclosed by brackets "[]" replaced with your own identifying
17675cf915SPedro F. Giffuni  * information: Portions Copyright [yyyy] [name of copyright owner]
18675cf915SPedro F. Giffuni  *
19675cf915SPedro F. Giffuni  * CDDL HEADER END
20675cf915SPedro F. Giffuni  */
21675cf915SPedro F. Giffuni 
22675cf915SPedro F. Giffuni /*
23675cf915SPedro F. Giffuni  * Copyright (c) 2011, Joyent, Inc. All rights reserved.
24675cf915SPedro F. Giffuni  */
25675cf915SPedro F. Giffuni 
26675cf915SPedro F. Giffuni #pragma D option quiet
27675cf915SPedro F. Giffuni 
28675cf915SPedro F. Giffuni BEGIN
29675cf915SPedro F. Giffuni {
30675cf915SPedro F. Giffuni 	@["Screven"] = llquantize(0, 10, 1, 2, 20, 25);
31675cf915SPedro F. Giffuni 	@["Katz"] = llquantize(1, 10, 1, 2, 20, -100);
32675cf915SPedro F. Giffuni 	@["Kurian"] = llquantize(7, 10, 1, 2, 20, 15);
33675cf915SPedro F. Giffuni 	@["Rozwat"] = llquantize(49, 10, 1, 2, 20, 15);
34675cf915SPedro F. Giffuni 	@["Fowler"] = llquantize(343, 10, 1, 2, 20, 150);
35675cf915SPedro F. Giffuni 
36675cf915SPedro F. Giffuni 	printa(@);
37675cf915SPedro F. Giffuni 	exit(0);
38675cf915SPedro F. Giffuni }
39