content
stringlengths 0
181M
| language
stringclasses 54
values |
---|---|
[package]
name = "console"
version = "0.1.0"
authors = ["Alex McArther <[email protected]>"]
[dependencies]
itertools = "*"
cgmath = "0.10"
specs = "0.7.0"
glutin = "0.6.1"
lazy_static = "0.2.1"
uuid = { version = "0.2.2", features = ["serde", "v4"] }
[dependencies.client_state]
path = "../../core/client_state"
[dependencies.pause]
path = "../../core/pause"
[dependencies.pubsub]
path = "../../../pubsub"
[dependencies.common]
path = "../../../common"
[dependencies.automatic_system_installer]
path = "../../infra/automatic_system_installer"
|
TOML
|
package com.cookbook.cbook.service;
import com.cookbook.cbook.entity.Recipe;
import org.springframework.stereotype.Repository;
import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;
import javax.transaction.Transactional;
//@Repository
//@Transactional
public class RecipeDAOService {
@PersistenceContext
private EntityManager entityManager;
public long insert(Recipe recipe){
entityManager.persist(recipe);
return recipe.getId();
}
}
|
Java
|
(* Auto-generated from "game_descr.atd" *)
(** A position in the initial array. *)
type tile_pos = Game_descr_t.tile_pos
type tile = Game_descr_t.tile
type rule_descr = Game_descr_t.rule_descr = {
name: string;
flags: string list option
}
(** Player 0 is east and so on. *)
type round_player = Game_descr_t.round_player
type round_event = Game_descr_t.round_event =
Init of tile option Ag_util.ocaml_array
| Wall_breaker_roll of int
| Break_wall_roll of int
| Deal
| Draw of round_player
| Discard of (round_player * tile_pos)
| Mahjong of round_player
| Concealed_kong of (round_player * tile_pos list)
| Small_kong of (round_player * tile_pos)
| Chow of (round_player * tile_pos list)
| Pong of (round_player * tile_pos list)
| Kong of (round_player * tile_pos list)
| No_action of round_player
type ai_conf = Game_descr_t.ai_conf = { name: string; force: int }
type player_kind = Game_descr_t.player_kind = Human | AI of ai_conf
type player_idx = Game_descr_t.player_idx
type player_descr = Game_descr_t.player_descr = {
name: string;
kind: player_kind
}
type game_event = Game_descr_t.game_event =
Set_rule of rule_descr
| Player of player_descr
| East_seat of player_idx
| Init_score of float
| Round_event of round_event
| End_round
| New_round
| End_game
type game = Game_descr_t.game = {
game_events: game_event list;
current_round: round_event list
}
val write_tile_pos :
Bi_outbuf.t -> tile_pos -> unit
(** Output a JSON value of type {!tile_pos}. *)
val string_of_tile_pos :
?len:int -> tile_pos -> string
(** Serialize a value of type {!tile_pos}
into a JSON string.
@param len specifies the initial length
of the buffer used internally.
Default: 1024. *)
val read_tile_pos :
Yojson.Safe.lexer_state -> Lexing.lexbuf -> tile_pos
(** Input JSON data of type {!tile_pos}. *)
val tile_pos_of_string :
string -> tile_pos
(** Deserialize JSON data of type {!tile_pos}. *)
val write_tile :
Bi_outbuf.t -> tile -> unit
(** Output a JSON value of type {!tile}. *)
val string_of_tile :
?len:int -> tile -> string
(** Serialize a value of type {!tile}
into a JSON string.
@param len specifies the initial length
of the buffer used internally.
Default: 1024. *)
val read_tile :
Yojson.Safe.lexer_state -> Lexing.lexbuf -> tile
(** Input JSON data of type {!tile}. *)
val tile_of_string :
string -> tile
(** Deserialize JSON data of type {!tile}. *)
val write_rule_descr :
Bi_outbuf.t -> rule_descr -> unit
(** Output a JSON value of type {!rule_descr}. *)
val string_of_rule_descr :
?len:int -> rule_descr -> string
(** Serialize a value of type {!rule_descr}
into a JSON string.
@param len specifies the initial length
of the buffer used internally.
Default: 1024. *)
val read_rule_descr :
Yojson.Safe.lexer_state -> Lexing.lexbuf -> rule_descr
(** Input JSON data of type {!rule_descr}. *)
val rule_descr_of_string :
string -> rule_descr
(** Deserialize JSON data of type {!rule_descr}. *)
val write_round_player :
Bi_outbuf.t -> round_player -> unit
(** Output a JSON value of type {!round_player}. *)
val string_of_round_player :
?len:int -> round_player -> string
(** Serialize a value of type {!round_player}
into a JSON string.
@param len specifies the initial length
of the buffer used internally.
Default: 1024. *)
val read_round_player :
Yojson.Safe.lexer_state -> Lexing.lexbuf -> round_player
(** Input JSON data of type {!round_player}. *)
val round_player_of_string :
string -> round_player
(** Deserialize JSON data of type {!round_player}. *)
val write_round_event :
Bi_outbuf.t -> round_event -> unit
(** Output a JSON value of type {!round_event}. *)
val string_of_round_event :
?len:int -> round_event -> string
(** Serialize a value of type {!round_event}
into a JSON string.
@param len specifies the initial length
of the buffer used internally.
Default: 1024. *)
val read_round_event :
Yojson.Safe.lexer_state -> Lexing.lexbuf -> round_event
(** Input JSON data of type {!round_event}. *)
val round_event_of_string :
string -> round_event
(** Deserialize JSON data of type {!round_event}. *)
val write_ai_conf :
Bi_outbuf.t -> ai_conf -> unit
(** Output a JSON value of type {!ai_conf}. *)
val string_of_ai_conf :
?len:int -> ai_conf -> string
(** Serialize a value of type {!ai_conf}
into a JSON string.
@param len specifies the initial length
of the buffer used internally.
Default: 1024. *)
val read_ai_conf :
Yojson.Safe.lexer_state -> Lexing.lexbuf -> ai_conf
(** Input JSON data of type {!ai_conf}. *)
val ai_conf_of_string :
string -> ai_conf
(** Deserialize JSON data of type {!ai_conf}. *)
val write_player_kind :
Bi_outbuf.t -> player_kind -> unit
(** Output a JSON value of type {!player_kind}. *)
val string_of_player_kind :
?len:int -> player_kind -> string
(** Serialize a value of type {!player_kind}
into a JSON string.
@param len specifies the initial length
of the buffer used internally.
Default: 1024. *)
val read_player_kind :
Yojson.Safe.lexer_state -> Lexing.lexbuf -> player_kind
(** Input JSON data of type {!player_kind}. *)
val player_kind_of_string :
string -> player_kind
(** Deserialize JSON data of type {!player_kind}. *)
val write_player_idx :
Bi_outbuf.t -> player_idx -> unit
(** Output a JSON value of type {!player_idx}. *)
val string_of_player_idx :
?len:int -> player_idx -> string
(** Serialize a value of type {!player_idx}
into a JSON string.
@param len specifies the initial length
of the buffer used internally.
Default: 1024. *)
val read_player_idx :
Yojson.Safe.lexer_state -> Lexing.lexbuf -> player_idx
(** Input JSON data of type {!player_idx}. *)
val player_idx_of_string :
string -> player_idx
(** Deserialize JSON data of type {!player_idx}. *)
val write_player_descr :
Bi_outbuf.t -> player_descr -> unit
(** Output a JSON value of type {!player_descr}. *)
val string_of_player_descr :
?len:int -> player_descr -> string
(** Serialize a value of type {!player_descr}
into a JSON string.
@param len specifies the initial length
of the buffer used internally.
Default: 1024. *)
val read_player_descr :
Yojson.Safe.lexer_state -> Lexing.lexbuf -> player_descr
(** Input JSON data of type {!player_descr}. *)
val player_descr_of_string :
string -> player_descr
(** Deserialize JSON data of type {!player_descr}. *)
val write_game_event :
Bi_outbuf.t -> game_event -> unit
(** Output a JSON value of type {!game_event}. *)
val string_of_game_event :
?len:int -> game_event -> string
(** Serialize a value of type {!game_event}
into a JSON string.
@param len specifies the initial length
of the buffer used internally.
Default: 1024. *)
val read_game_event :
Yojson.Safe.lexer_state -> Lexing.lexbuf -> game_event
(** Input JSON data of type {!game_event}. *)
val game_event_of_string :
string -> game_event
(** Deserialize JSON data of type {!game_event}. *)
val write_game :
Bi_outbuf.t -> game -> unit
(** Output a JSON value of type {!game}. *)
val string_of_game :
?len:int -> game -> string
(** Serialize a value of type {!game}
into a JSON string.
@param len specifies the initial length
of the buffer used internally.
Default: 1024. *)
val read_game :
Yojson.Safe.lexer_state -> Lexing.lexbuf -> game
(** Input JSON data of type {!game}. *)
val game_of_string :
string -> game
(** Deserialize JSON data of type {!game}. *)
|
OCaml
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/background_learn"
tools:context=".AddNewItemActivity" >
<ImageButton
android:id="@+id/add_item_btn_camera"
android:layout_width="200dp"
android:layout_height="200dp"
android:layout_above="@+id/add_item_layout_description"
android:layout_centerHorizontal="true"
android:layout_marginBottom="@dimen/add_item_margin_bottom"
android:background="@android:color/transparent"
android:contentDescription="@string/description_camera_image_button"
android:scaleType="fitCenter"
android:src="@drawable/btn_take_picture" />
<LinearLayout
android:id="@+id/add_item_layout_description"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerInParent="true" >
<EditText
android:id="@+id/add_item_edt_description"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/add_item_margin_bottom"
android:background="@color/white_transparent"
android:ems="20"
android:hint="@string/add_item_hint"
android:inputType="text" >
</EditText>
<Spinner
android:id="@+id/add_item_spinner_list_subject"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/add_item_screen_spinner_margin_left"
android:gravity="center_horizontal" />
</LinearLayout>
<LinearLayout
android:id="@+id/add_item_layout_record_play"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/add_item_layout_description"
android:layout_centerHorizontal="true"
android:layout_marginTop="@dimen/add_item_btn_record_margin_top"
android:paddingBottom="@dimen/add_item_margin_bottom" >
<ImageButton
android:id="@+id/add_item_btn_record"
android:layout_width="60dp"
android:layout_height="60dp"
android:background="@android:color/transparent"
android:contentDescription="@string/description_camera_image_button"
android:src="@drawable/record" />
<ImageButton
android:id="@+id/add_item_btn_recording"
android:layout_width="60dp"
android:layout_height="60dp"
android:background="@android:color/transparent"
android:contentDescription="@string/description_camera_image_button"
android:src="@drawable/stop"
android:visibility="gone" />
<ImageButton
android:id="@+id/add_item_btn_play"
android:layout_width="60dp"
android:layout_height="60dp"
android:background="@android:color/transparent"
android:contentDescription="@string/description_save_item"
android:paddingLeft="@dimen/add_item_btn_record_margin_left"
android:src="@drawable/play" />
<ImageButton
android:id="@+id/add_item_btn_playing"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
android:contentDescription="@string/description_camera_image_button"
android:paddingLeft="@dimen/add_item_btn_record_margin_left"
android:src="@drawable/stop"
android:visibility="gone" />
</LinearLayout>
<ImageButton
android:id="@+id/add_item_btn_save"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/add_item_layout_record_play"
android:layout_centerHorizontal="true"
android:background="@android:color/transparent"
android:contentDescription="@string/description_save_item"
android:src="@drawable/btn_save" />
</RelativeLayout>
|
XML
|
import java.math.BigInteger
fun main(args: Array<String>) {
val x = BigInteger.valueOf(5).pow(Math.pow(4.0, 3.0 * 3.0).toInt())
val y = x.toString()
val len = y.length
println("5^4^3^2 = ${y.substring(0, 20)}...${y.substring(len - 20)} and has $len digits")
}
|
Kotlin
|
{
"hits": 0,
"timeRestore": false,
"description": "",
"title": "Packetbeat Dashboard",
"panelsJSON": "[{\"col\":1,\"id\":\"Web-transactions\",\"row\":5,\"size_x\":3,\"size_y\":2,\"type\":\"visualization\"},{\"col\":4,\"id\":\"DB-transactions\",\"row\":5,\"size_x\":3,\"size_y\":2,\"type\":\"visualization\"},{\"col\":7,\"id\":\"Cache-transactions\",\"row\":5,\"size_x\":3,\"size_y\":2,\"type\":\"visualization\"},{\"col\":10,\"id\":\"RPC-transactions\",\"row\":5,\"size_x\":3,\"size_y\":2,\"type\":\"visualization\"},{\"col\":1,\"id\":\"Response-times-percentiles\",\"row\":10,\"size_x\":6,\"size_y\":3,\"type\":\"visualization\"},{\"col\":1,\"id\":\"Errors-count-over-time\",\"row\":13,\"size_x\":6,\"size_y\":3,\"type\":\"visualization\"},{\"col\":7,\"id\":\"Errors-vs-successful-transactions\",\"row\":10,\"size_x\":6,\"size_y\":3,\"type\":\"visualization\"},{\"col\":7,\"id\":\"Latency-histogram\",\"row\":13,\"size_x\":6,\"size_y\":3,\"type\":\"visualization\"},{\"col\":4,\"id\":\"Client-locations\",\"row\":1,\"size_x\":9,\"size_y\":4,\"type\":\"visualization\"},{\"col\":1,\"id\":\"Response-times-repartition\",\"row\":7,\"size_x\":12,\"size_y\":3,\"type\":\"visualization\"},{\"id\":\"Navigation\",\"type\":\"visualization\",\"size_x\":3,\"size_y\":4,\"col\":1,\"row\":1}]",
"version": 1,
"kibanaSavedObjectMeta": {
"searchSourceJSON": "{\"filter\":[{\"query\":{\"query_string\":{\"analyze_wildcard\":true,\"query\":\"*\"}}}]}"
}
}
|
JSON
|
package com.cagnosolutions.app.main.user
import groovy.transform.CompileStatic
import javax.persistence.Entity
import javax.persistence.GeneratedValue
import javax.persistence.Id
import javax.persistence.Table
/**
* Created by Scott Cagno.
* Copyright Cagno Solutions. All rights reserved.
*/
@CompileStatic
@Entity
@Table(name = "user")
class User {
@Id
@GeneratedValue
Long id
String name, email, username, password, role = "ROLE_USER"
Long creation, lastSeen
short active = 1
}
|
Groovy
|
class Colors
COLORS = {
:red => 1,
:green => 2,
:yellow => 3,
:blue => 4,
:purple => 5,
:sea => 6,
:white => 7
}
class << self
def default_terminal_colors
@default_terminal_colors ||= "\e[0m"
end
def process(data)
begin
_process(data)
ensure
STDOUT.flush
reset!
end
end
def reset!
STDOUT.write("\e[0m")
STDOUT.flush
end
def _process(data)
# Backrounds
if m = data.match(%r{<(.*?) bg=(.*?)>(.*?)<\/(.*?)>}m)
COLORS.each do |k,v|
t = data.match(%r{<(.*?) bg=#{k}>(.*?)<\/(.*?)>}m)
data.gsub!(%r{<(.*?) bg=#{k}>(.*?)<\/(.*?)>}m, "\e[1m\e[4#{v}m<\\1>\\2</\\1>#{default_terminal_colors}")
end
end
# Colored text
COLORS.each do |k,v|
data.gsub!(%r{<#{k}>(.*?)</#{k}>}m, "\e[1m\e[3#{v}m\\1#{default_terminal_colors}")
end
data.gsub!(%r{<b>(.*?)</b>}m, "\e[1m\\1#{default_terminal_colors}")
data.gsub!(%r{<line>}m, "---------------------------------------")
data.gsub!(%r{<banner>(.*?)</banner>}m, "\e[33m\e[44m\e[1m\\1#{default_terminal_colors}")
return data
end
end
end
|
Ruby
|
/*
$Id$
*======================================================================
*
* DISCLAIMER
*
* This material was prepared as an account of work sponsored by an
* agency of the United States Government. Neither the United States
* Government nor the United States Department of Energy, nor Battelle,
* nor any of their employees, MAKES ANY WARRANTY, EXPRESS OR IMPLIED, OR
* ASSUMES ANY LEGAL LIABILITY OR RESPONSIBILITY FOR THE ACCURACY,
* COMPLETENESS, OR USEFULNESS OF ANY INFORMATION, APPARATUS, PRODUCT,
* SOFTWARE, OR PROCESS DISCLOSED, OR REPRESENTS THAT ITS USE WOULD NOT
* INFRINGE PRIVATELY OWNED RIGHTS.
*
* ACKNOWLEDGMENT
*
* This software and its documentation were produced with Government
* support under Contract Number DE-AC06-76RLO-1830 awarded by the United
* States Department of Energy. The Government retains a paid-up
* non-exclusive, irrevocable worldwide license to reproduce, prepare
* derivative works, perform publicly and display publicly by or for the
* Government, including the right to distribute to other Government
* contractors.
*
*======================================================================
*
* -- PEIGS routine (version 2.1) --
* Pacific Northwest Laboratory
* July 28, 1995
*
*======================================================================
*/
#include <stdio.h>
#include <math.h>
#include "globalp.c.h"
#define max(a,b) ((a) > (b) ? (a) : (b))
void sonenrm ( n, colA, mapA, norm, iwork, work, info)
Integer *n, *mapA, *iwork, *info;
DoublePrecision **colA, *work, *norm;
{
/******************************************************
*
* C subroutine sonenrm
*
* This routines computes the one norm of a column
* distributed symmetric matrix in packed storage format
*
Arguments
---------
In the following:
INTEGER = "pointer to Integer"
DOUBLE PRECISION = "pointer to DoublePrecision"
me = this processor's id (= mxmynd_())
nprocs = number of allocated processors ( = mxnprc_())
nvecsA = number of entries in mapA equal to me
(= count_list( me, mapA, n ))
sDP = sizeof( DoublePrecision )
n....... (input) INTEGER
size of the matrix A
colA ... (input) array of pointers to DoublePrecision,
length (nvecsA)
The part of matrix A owned by this processer stored
in packed format, i.e., colA[i] points to the diagonal
element of the i-th column (or equivalently row) of A
owned by this processor, i = 0 to nvecsA-1.
mapA ... (input) INTEGER array, length (n)
The i-th column (or equivalently row) of A is
owned by processor mapA[i], i = 0 to n-1.
norm ... (output) DOUBLE PRECISION
The one-norm of A
iwork... (workspace) INTEGER array, length( n+nvecsA )
work.... (workspace) DOUBLE PRECISION array,
length( n + 1 + mxlbuf_() / sDP + 1 )
info.... (output) INTEGER
= 0, not currently used
*/
static Integer IONE = 1;
Integer ll, nprocs, i, me, nvecsA, *mapvecA;
Integer *proclist, jj, k, ii;
Integer *iscrat;
DoublePrecision scl;
DoublePrecision *normvec, *workMX;
extern DoublePrecision dasum_ ();
extern void gsum00();
extern void fil_dbl_list ();
extern Integer mxmynd_();
extern Integer fil_mapvec_();
extern Integer reduce_list2();
extern void fil_dbl_lst();
me = mxmynd_ ();
*info = 0;
ll = *n;
*norm = 0.e0;
iscrat = iwork;
mapvecA = iscrat;
nvecsA = fil_mapvec_ ( &me, &ll, mapA, mapvecA);
iscrat += nvecsA;
if ( nvecsA == 0 )
return;
proclist = iscrat;
nprocs = reduce_list2( *n, mapA, proclist);
iscrat += nprocs;
normvec = work;
workMX = work + *n + 1;
fil_dbl_lst ( *n, normvec, 0.0e0); /* zero out normvec */
for ( i = 0; i < nvecsA; i++ ) {
jj = mapvecA[i];
ii = ll - jj;
scl = dasum_ ( &ii, colA[i], &IONE );
normvec[jj] = scl;
}
for ( i = 0; i < nvecsA; i++ ) {
jj = mapvecA[i];
for ( k = 1; k < *n-jj; k++ )
normvec[jj+k] += fabs( colA[i][k] );
}
gsum00( (char *) normvec, ll * sizeof(DoublePrecision), 5, 10, proclist[0], nprocs, proclist, workMX);
scl = 0.0e0;
for ( i = 0; i < ll; i++ )
scl = max( normvec[i], scl);
*norm = scl;
return;
}
|
C
|
#############################################################################
#
# XFOIL
#
# Copyright (C) 2000 Mark Drela
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
#############################################################################
cmake_minimum_required(VERSION 3.5)
project(xfoil LANGUAGES C Fortran VERSION 6.97)
if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
set(CMAKE_BUILD_TYPE Release CACHE STRING
"Choose the type of build; options are Debug Release RelWithDebInfo MinSizeRel"
FORCE)
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY
STRINGS
Debug
Release
RelWithDebInfo
MinSizeRel)
endif()
include(CTest)
if(CMAKE_Fortran_COMPILER_ID STREQUAL GNU)
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -std=legacy")
endif()
option(DOUBLE_PRECISION
"Make the real and complex types eight bytes long" OFF)
if(DOUBLE_PRECISION)
if(CMAKE_Fortran_COMPILER_ID STREQUAL Intel)
if(WIN32)
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} /real-size:64")
else()
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -real-size 64")
endif()
elseif(CMAKE_Fortran_COMPILER_ID STREQUAL GNU)
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fdefault-real-8")
endif()
endif()
include(GNUInstallDirs)
set(ORRS_DIR "${CMAKE_SOURCE_DIR}/orrs")
add_subdirectory(orrs)
add_subdirectory(osrc)
add_subdirectory(plotlib)
add_subdirectory(src)
set(XFOIL_DOCS version_notes.txt xfoil_doc.txt)
install(FILES ${XFOIL_DOCS} DESTINATION ${CMAKE_INSTALL_DOCDIR})
include(CMakePackageConfigHelpers)
configure_package_config_file(xfoil-config.cmake.in xfoil-config.cmake.in
INSTALL_DESTINATION ${CMAKE_INSTALL_DATADIR}/${PROJECT_NAME}
PATH_VARS CMAKE_INSTALL_BINDIR
NO_SET_AND_CHECK_MACRO NO_CHECK_REQUIRED_COMPONENTS_MACRO)
file(GENERATE
OUTPUT xfoil-config.cmake
INPUT "${CMAKE_CURRENT_BINARY_DIR}/xfoil-config.cmake.in")
write_basic_package_version_file(xfoil-config-version.cmake
COMPATIBILITY SameMajorVersion)
install(FILES
"${CMAKE_CURRENT_BINARY_DIR}/xfoil-config.cmake"
"${CMAKE_CURRENT_BINARY_DIR}/xfoil-config-version.cmake"
DESTINATION ${CMAKE_INSTALL_DATADIR}/${PROJECT_NAME})
include(CPack)
|
CMake
|
\relax
\catcode`:\active
\catcode`;\active
\catcode`!\active
\catcode`?\active
\catcode`"\active
\ifx\hyper@anchor\@undefined
\global \let \oldcontentsline\contentsline
\gdef \contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}}
\global \let \oldnewlabel\newlabel
\gdef \newlabel#1#2{\newlabelxx{#1}#2}
\gdef \newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}}
\AtEndDocument{\let \contentsline\oldcontentsline
\let \newlabel\oldnewlabel}
\else
\global \let \hyper@last\relax
\fi
\@input{FrontBackMatter/Titlepage.aux}
\reset@newl@bel
\select@language{french}
\@writefile{toc}{\select@language{french}}
\@writefile{lof}{\select@language{french}}
\@writefile{lot}{\select@language{french}}
\providecommand\mph@setcol[2]{}
\@writefile{toc}{\vspace {-\cftbeforepartskip }}
\@writefile{lof}{\deactivateaddvspace }
\@writefile{lot}{\deactivateaddvspace }
\@writefile{lol}{\deactivateaddvspace }
\select@language{american}
\@writefile{toc}{\select@language{american}}
\@writefile{lof}{\select@language{american}}
\@writefile{lot}{\select@language{american}}
\@input{FrontBackMatter/Titleback.aux}
\@input{FrontBackMatter/Dedication.aux}
\mph@setcol{ii:iv}{\mph@nr}
\@input{FrontBackMatter/Abstract.aux}
\mph@setcol{ii:vi}{\mph@nr}
\@input{FrontBackMatter/Publication.aux}
\mph@setcol{ii:viii}{\mph@nr}
\@input{FrontBackMatter/Acknowledgments.aux}
\mph@setcol{ii:x}{\mph@nr}
\@input{FrontBackMatter/Contents.aux}
\@writefile{toc}{\contentsline {part}{i\hspace {1em}\spacedlowsmallcaps {Some Kind of Manual}}{1}{part.1}}
\mph@setcol{ii:1}{\mph@nr}
\mph@setcol{ii:2}{\mph@nr}
\@input{Chapters/Chapter01.aux}
\@writefile{toc}{\contentsline {part}{ii\hspace {1em}\spacedlowsmallcaps {The Showcase}}{9}{part.2}}
\mph@setcol{ii:9}{\mph@nr}
\mph@setcol{ii:10}{\mph@nr}
\@input{Chapters/Chapter02.aux}
\@input{Chapters/Chapter03.aux}
\@writefile{toc}{\contentsline {part}{iii\hspace {1em}\spacedlowsmallcaps {Appendix}}{19}{part.3}}
\mph@setcol{ii:19}{\mph@nr}
\mph@setcol{ii:20}{\mph@nr}
\@input{Chapters/Chapter0A.aux}
\@input{FrontBackMatter/Bibliography.aux}
\@input{FrontBackMatter/Colophon.aux}
\mph@setcol{ii:24}{\mph@nr}
\@input{FrontBackMatter/Declaration.aux}
\gdef\mph@lastpage{26}
\csname mph@do@warn\endcsname
\global\@altsecnumformattrue
|
TeX
|
(ns leiningen.new.thing-babel
(:require
[leiningen.new.templates :as tpl]
[leiningen.core.main :as main]
[clojure.string :as str])
(:import
[java.util Locale Calendar]))
(def licenses
{"asl" {:name "Apache Software License 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0"}
"epl" {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"}
"mit" {:name "MIT License" :url "http://opensource.org/licenses/MIT"}})
(def render (tpl/renderer "thing-babel"))
(defn group-name
"Replace hyphens with underscores."
[^String s]
(let [idx (.indexOf s "/")]
(when (pos? idx)
(subs s 0 idx))))
(defn opts-info
[opts ks]
(doseq [[k desc] (partition 2 ks)]
(main/info (format "%-24s: %s" desc (str (opts k))))))
(defn thing-babel
"Literal programming template for org-mode babel projects"
[name & args]
(let [opts (->> args
(partition 2)
(map #(vector (keyword (first %)) (second %)))
(into {}))
{:keys [author license target url]
:or {author (System/getProperty "user.name")
license "epl"
target "babel"
url "https://github.com/"}} opts
tangle-target (if (and (seq target) (not= \/ (last target)))
(str target \/)
target)
target (if (empty? target) "project root" target)
group (group-name name)
license (.toLowerCase license)
opts (merge
{:name (tpl/project-name name)
:group group
:fqname name
:sanitized (tpl/name-to-path name)
:author author
:url url
:desc "FIXME: write description"
:license-name (get-in licenses [license :name])
:license-url (get-in licenses [license :url])
:ns-root (tpl/sanitize-ns name)
:ns-root-path (tpl/name-to-path name)
:tangle-target tangle-target
:target target
:tzone (-> (Locale/getDefault)
(Calendar/getInstance)
(.get Calendar/ZONE_OFFSET)
(/ (* 1000 60 60)))}
opts)]
(main/info (str "Generating fresh literate programming project: " name))
(opts-info opts
[:name "generated project dir"
:group "artefact group ID"
:url "project url"
:author "project author"
:author-url "author url"
:email "author email"
:tzone "author timezone"
:license-name "license"
:desc "description"
:tangle-target "path for gen sources"
:ns-root "project root namespace"])
(tpl/->files opts
["README.org" (render "readme-tpl.org" opts)]
["src/setup.org" (render "setup.org" opts)]
["src/core.org" (render "core.org" opts)]
["src/libraryofbabel.org" (render "libraryofbabel.org" opts)]
["test/core.org" (render "test.org" opts)]
["tangle.sh" (render "tangle.sh") :executable true]
["tangle-all.sh" (render "tangle-all.sh") :executable true])))
|
Clojure
|
-- Category: Database Engine Configuration
SET NOCOUNT ON;
SELECT
CONVERT(nvarchar(128), SERVERPROPERTY('ServerName')) AS ServerName,
[name] AS [EndpointName],
COALESCE(SUSER_NAME(principal_id), '') AS [Owner],
COALESCE([protocol_desc], '') AS [ProtocolDesc],
COALESCE([type_desc], '') AS [PayloadType],
COALESCE([state_desc], '') AS [StateDesc],
[is_admin_endpoint] AS [Is AdminEndpoint]
FROM sys.endpoints
WHERE [endpoint_id] > 5;
|
PLSQL
|
package chap06
import com.cra.figaro.library.atomic.discrete.Geometric
import com.cra.figaro.library.atomic.continuous.{Beta, Normal}
import com.cra.figaro.library.collection.VariableSizeArray
import com.cra.figaro.algorithm.sampling.Importance
import com.cra.figaro.language.Universe
import com.cra.figaro.language.Flip
object NewProducts {
def runExperiment(rNDLevel: Double) {
Universe.createNew()
val numNewProducts = Geometric(rNDLevel)
val productQuality = VariableSizeArray(numNewProducts, i => Beta(1, i + 1))
val productSalesRaw = productQuality.chain(Normal(_, 0.5))
val productSales = productSalesRaw.map(_.max(0))
val totalSales = productSales.foldLeft(0.0)(_ + _)
val algorithm = Importance(totalSales)
algorithm.start()
Thread.sleep(5000)
algorithm.stop()
println("With R&D at " + rNDLevel + ", expected sales will be " + algorithm.mean(totalSales))
algorithm.kill()
}
def main(args: Array[String]) {
for { i <- 0.05 to 1.0 by 0.1 } { runExperiment(i) }
}
}
|
Scala
|
FROM elixir:1.17.1-otp-26
# Single RUN statement, otherwise intermediate images are created
# https://docs.docker.com/develop/develop-images/dockerfile_best-practices/#run
RUN apt-get update &&\
apt-get install -y libmagic-dev cmake libimage-exiftool-perl ffmpeg &&\
mix local.hex --force &&\
mix local.rebar --force
|
Dockerfile
|
# Random samples from determinantal point processes
"""
Computes a random sample from the determinantal point process defined by the
spectral factorization object `L`.
Inputs:
`L`: `Eigen` factorization object of an N x N matrix
Output:
`Y`: A `Vector{Int}` with entries in [1:N].
References:
Algorithm 18 of \\cite{HKPV05}, as described in Algorithm 1 of \\cite{KT12}.
@article{HKPV05,
author = {Hough, J Ben and Krishnapur, Manjunath and Peres, Yuval and Vir\'{a}g, B\'{a}lint},
doi = {10.1214/154957806000000078},
journal = {Probability Surveys},
pages = {206--229},
title = {Determinantal Processes and Independence},
volume = {3},
year = {2005}
archivePrefix = {arXiv},
eprint = {0503110},
}
@article{KT12,
author = {Kulesza, Alex and Taskar, Ben},
doi = {10.1561/2200000044},
journal = {Foundations and Trends in Machine Learning},
number = {2-3},
pages = {123--286},
title = {Determinantal Point Processes for Machine Learning},
volume = {5},
year = {2012},
archivePrefix = {arXiv},
eprint = {1207.6083},
}
TODO Check loss of orthogonality - a tip from Zelda Mariet
"""
function rand(L::LinearAlgebra.Eigen{S,T}) where {S<:Real,T}
N = length(L.values)
J = Int[]
for n=1:N
λ = L.values[n]
rand() < λ/(λ+1) && push!(J, n)
end
V = L.vectors[:, J]
Y = Int[]
nV = size(V, 2)
while true
# Select i from 𝒴=[1:N] (ground set) with probabilities
# Pr(i) = 1/|V| Σ_{v∈V} (v⋅eᵢ)²
#Compute selection probabilities
Pr = zeros(N)
for i=1:N
for j=1:nV #TODO this loop is a bottleneck - why?
Pr[i] += (V[i,j])^2 #ith entry of jth eigenvector
end
Pr[i] /= nV
end
@assert abs(1-sum(Pr)) < N*eps() #Check normalization
#Simple discrete sampler
i, ρ = N, rand()
for j=1:N
if ρ < Pr[j]
i = j
break
else
ρ -= Pr[j]
end
end
push!(Y, i)
nV == 1 && break #Done
#V = V⊥ #an orthonormal basis for the subspace of V ⊥ eᵢ
V[i, :] = 0 #Project out eᵢ
V = full(qrfact!(V)[:Q])[:, 1:nV-1]
nV = size(V, 2)
end
return Y
end
|
Julia
|
del *.log
del *.syntax
del *.av
del oop\*.log
del oop\*.syntax
del oop\*.av
"..\shell_project\ori.exe" -f "..\test\consts.php" -nologo
"..\shell_project\ori.exe" -f "..\test\vars.php" -nologo
"..\shell_project\ori.exe" -f "..\test\operators.php" -nologo
"..\shell_project\ori.exe" -f "..\test\globals.php" -nologo
"..\shell_project\ori.exe" -f "..\test\core.php" -nologo
"..\shell_project\ori.exe" -f "..\test\math.php" -nologo
"..\shell_project\ori.exe" -f "..\test\arrays.php" -nologo
"..\shell_project\ori.exe" -f "..\test\cycles.php" -nologo
"..\shell_project\ori.exe" -f "..\test\foreach.php" -nologo
"..\shell_project\ori.exe" -f "..\test\core_string.php" -nologo
"..\shell_project\ori.exe" -f "..\test\core_array.php" -nologo
"..\shell_project\ori.exe" -f "..\test\evals.php" -nologo
"..\shell_project\ori.exe" -f "..\test\functions.php" -nologo
"..\shell_project\ori.exe" -f "..\test\typed.php" -nologo
"..\shell_project\ori.exe" -f "..\test\leak.php" -nologo
"..\shell_project\ori.exe" -f "..\test\complex1.php" -nologo
"..\shell_project\ori.exe" -f "..\test\oop\constants.php"
"..\shell_project\ori.exe" -f "..\test\oop\static_vars.php"
pause
|
Batchfile
|
%Schools Out!
subject(english).
subject(gym).
subject(history).
subject(math).
subject(science).
state(california).
state(florida).
state(maine).
state(oregon).
state(virginia).
activity(antiquing).
activity(camping).
activity(sightseeing).
activity(spelunking).
activity(water_skiing).
name(appleton).
name(gross).
name(knight).
name(mcEvoy).
name(parnell).
solve :-
subject(Appleton_subject),
subject(Gross_subject),
subject(Knight_subject),
subject(Mcevoy_subject),
subject(Parnell_subject),
all_different([Appleton_subject, Gross_subject, Knight_subject, Mcevoy_subject, Parnell_subject]),
state(Appleton_state),
state(Gross_state),
state(Knight_state),
state(Mcevoy_state),
state(Parnell_state),
all_different([Appleton_state, Gross_state, Knight_state, Mcevoy_state, Parnell_state]),
activity(Appleton_activity), activity(Gross_activity), activity(Knight_activity), activity(Mcevoy_activity), activity(Parnell_activity),
all_different([Appleton_activity, Gross_activity, Knight_activity, Mcevoy_activity, Parnell_activity]),
Groupings = [ [appleton, Appleton_subject, Appleton_state, Appleton_activity],
[gross, Gross_subject, Gross_state, Gross_activity],
[knight, Knight_subject, Knight_state, Knight_activity],
[mcevoy, Mcevoy_subject, Mcevoy_state, Mcevoy_activity],
[parnell, Parnell_subject, Parnell_state, Parnell_activity] ],
%Clue One
%Gross_subject = math || Gross_subject = science
%if Gross_activity = antiquing -> Gross_state = florida
%else Gross_state = california
%member(name, subject, state, activity)
( member([gross, math, _, _], Groupings) ; member([gross, science, _, _], Groupings) ),
( member([gross, _, florida, antiquing], Groupings) ; member([gross, _, california, _], Groupings) ),
%Clue Two
%person_subject = science && person_activity = water_skiing
%person_state = florida || person_state = california
%Mcevoy_subject = history && Mcevoy_state = maine || Mcevoy_state = oregon
( member([_, science, florida, water_skiing], Groupings) ; member([_, science, california, water_skiing], Groupings) ),
( member([mcevoy, history, maine, _], Groupings) ; member([mcevoy, history, oregon, _], Groupings) ),
%Clue Three
%(Appleton_state = virginia && Appleton_subject = english) || Parnell_state = virginia
%Parnell_activity = spelunking
( member([appleton, english, virginia, _], Groupings) ; member([parnell, _, virginia, _], Groupings) ),
member([parnell, _, _, spelunking], Groupings),
%Clue Four
%person_state = maine && person_subject != gym && person_activity != sightseeing
\+ member([_, _, maine, sightseeing], Groupings),
\+ member([_, gym, maine, _], Groupings),
%Clue Five
%Gross_activity != camping
%woman_activity = antiquing
%member([gross, _, _, _], Groupings), \+ member([_, _, _, camping], Groupings),
\+ member([gross, _, _, camping], Groupings),
( member([gross, _, _, antiquing], Groupings) ;
member([appleton, _, _, antiquing], Groupings) ;
member([parnell, _, _, antiquing], groupings) ),
tell(appleton, Appleton_subject, Appleton_state, Appleton_activity),
tell(gross, Gross_subject, Gross_state, Gross_activity),
tell(knight, Knight_subject, Knight_state, Knight_activity),
tell(mcevoy, Mcevoy_subject, Mcevoy_state, Mcevoy_activity),
tell(parnell, Parnell_subject, Parnell_state, Parnell_activity).
all_different([H | T]) :- member(H,T), !, fail.
all_different([_ | T]) :- all_different(T).
all_different([_]).
tell(N, SUB, ST, A) :-
write(N), write(' who teaches '),
write(SUB), write(' is vacationing to '),
write(ST), write(' and their activity is '),
write(A), nl.
|
Prolog
|
//
// PopoverViewControllerTests
// ApptivatorTests
//
import XCTest
@testable import Apptivator
class PopoverViewControllerTests: XCTestCase {}
|
Swift
|
defmodule Explorer.Repo.Migrations.ChangeBlockSizeToNullable do
use Ecto.Migration
def up do
alter table(:blocks) do
modify(:size, :integer, null: true)
end
end
def down do
alter table(:blocks) do
modify(:size, :integer, null: false)
end
end
end
|
Elixir
|
#
# %CopyrightBegin%
#
# Copyright Ericsson AB 1998-2011. All Rights Reserved.
#
# The contents of this file are subject to the Erlang Public License,
# Version 1.1, (the "License"); you may not use this file except in
# compliance with the License. You should have received a copy of the
# Erlang Public License along with this software. If not, it can be
# retrieved online at http://www.erlang.org/.
#
# Software distributed under the License is distributed on an "AS IS"
# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
# the License for the specific language governing rights and limitations
# under the License.
#
# %CopyrightEnd%
#
#
include $(ERL_TOP)/make/target.mk
include $(ERL_TOP)/make/$(TARGET)/otp.mk
CC = @CC@
LIBS = @LIBS@
LIBDIR = ../priv/lib/$(TARGET)
OBJDIR = ../priv/obj/$(TARGET)
INCDIR = ../include
ERL_INTERFACE_FLAGS = \
-I$(ERL_TOP)/lib/erl_interface/include \
-I$(ERL_TOP)/lib/erl_interface/src
# ----------------------------------------------------
# Application version
# ----------------------------------------------------
include ../vsn.mk
VSN=$(IC_VSN)
# ----------------------------------------------------
# Release directory specification
# ----------------------------------------------------
RELSYSDIR = $(RELEASE_PATH)/lib/ic-$(VSN)
# ----------------------------------------------------
# File Specs
# ----------------------------------------------------
IDL_FILES = \
$(INCDIR)/erlang.idl
ifeq ($(findstring win32,$(TARGET)),win32)
USING_MINGW=@MIXED_CYGWIN_MINGW@
ifeq ($(USING_MINGW),yes)
AR_OUT = rcv
CC_FLAGS =
LIBRARY = $(LIBDIR)/libic.a
SKIP_BUILDING_BINARIES := false
else
LIBRARY = $(LIBDIR)/ic.lib
AR_OUT = -out:
CC_FLAGS = -MT
endif
ifeq ($(HOST_OS),)
HOST_OS := $(shell $(ERL_TOP)/erts/autoconf/config.guess)
endif
ifeq ($(findstring solaris,$(HOST_OS)),solaris)
SKIP_BUILDING_BINARIES := true
endif
else
AR_OUT = rcv
CC_FLAGS = @DED_CFLAGS@
LIBRARY = $(LIBDIR)/libic.a
SKIP_BUILDING_BINARIES := false
endif
C_FILES = \
ic.c \
ic_tmo.c \
oe_ei_encode_version.c \
oe_ei_encode_long.c \
oe_ei_encode_ulong.c \
oe_ei_encode_double.c \
oe_ei_encode_char.c \
oe_ei_encode_string.c \
oe_ei_encode_atom.c \
oe_ei_encode_pid.c \
oe_ei_encode_port.c \
oe_ei_encode_ref.c \
oe_ei_encode_term.c \
oe_ei_encode_tuple_header.c \
oe_ei_encode_list_header.c \
oe_ei_encode_longlong.c \
oe_ei_encode_ulonglong.c \
oe_ei_encode_wchar.c \
oe_ei_encode_wstring.c \
oe_ei_decode_longlong.c \
oe_ei_decode_ulonglong.c \
oe_ei_decode_wchar.c \
oe_ei_decode_wstring.c \
oe_ei_code_erlang_binary.c
H_FILES = $(INCDIR)/ic.h
OBJ_FILES= $(C_FILES:%.c=$(OBJDIR)/%.o)
ALL_CFLAGS = @CFLAGS@ @DEFS@ -I$(INCDIR) $(ERL_INTERFACE_FLAGS) $(CFLAGS)
# ----------------------------------------------------
# Targets
# ----------------------------------------------------
ifeq ($(SKIP_BUILDING_BINARIES), true)
debug opt:
else
debug opt: $(LIBRARY)
endif
clean:
rm -f $(LIBRARY) $(OBJ_FILES)
rm -f core *~
docs:
# ----------------------------------------------------
# Special Build Targets
# ----------------------------------------------------
_create_dirs := $(shell mkdir -p $(OBJDIR) $(LIBDIR))
$(LIBRARY): $(OBJ_FILES)
-$(AR) $(AR_OUT) $@ $(OBJ_FILES)
-$(RANLIB) $@
$(OBJDIR)/%.o: %.c
$(CC) $(CC_FLAGS) -c -o $@ $(ALL_CFLAGS) $<
# ----------------------------------------------------
# Release Target
# ----------------------------------------------------
include $(ERL_TOP)/make/otp_release_targets.mk
release_spec: opt
$(INSTALL_DIR) $(RELSYSDIR)/c_src
$(INSTALL_DIR) $(RELSYSDIR)/include
$(INSTALL_DIR) $(RELSYSDIR)/priv/lib
$(INSTALL_DATA) ic.c ic_tmo.c $(RELSYSDIR)/c_src
$(INSTALL_DATA) $(IDL_FILES) $(H_FILES) $(RELSYSDIR)/include
$(INSTALL_DATA) $(LIBRARY) $(RELSYSDIR)/priv/lib
release_docs_spec:
|
Makefile
|
(ns argumentica.db.file-transaction-log
(:require (argumentica [transaction-log :as transaction-log])
[me.raynes.fs :as fs]
[clojure.java.io :as io]
[clojure.edn :as edn]
[clojure.string :as string]
[argumentica.util :as util])
(:import [java.nio.file Files Paths OpenOption LinkOption]
[java.nio.file.attribute FileAttribute])
(:use clojure.test))
(defrecord FileTransactionLog [log-file-path state-atom]
java.io.Closeable
(close [this]
(.close (:output-stream @state-atom))))
(defn log-to-string [log]
(string/join "\n"
(map pr-str
log)))
(defn reset-log-file! [log-file-path log]
(let [temporary-log-file-path (str log-file-path ".new")]
(spit temporary-log-file-path
(log-to-string log))
(fs/rename temporary-log-file-path
log-file-path)))
(defn read-and-fix-log! [log-file-path]
(with-open [reader (io/reader log-file-path)]
(loop [lines (line-seq reader)
log (sorted-map)]
(if-let [line (first lines)]
(if-let [[transaction-number statements] (try (edn/read-string line)
(catch Exception exception
(reset-log-file! log-file-path log)
nil))]
(recur (rest lines)
(assoc log transaction-number statements))
log)
log))))
(defn create [log-file-path]
(->FileTransactionLog log-file-path
(atom {:in-memory-log (if (fs/exists? log-file-path)
(read-and-fix-log! log-file-path)
(sorted-map))
:output-stream (io/output-stream log-file-path
:append true)})))
(defn write-to-log-file! [output-stream transaction-number statements]
(.write output-stream
(.getBytes (prn-str [transaction-number statements])
"UTF-8"))
(.flush output-stream))
(defn add-transaction! [state transaction-number statements]
(when (not (:is-transient? state))
(write-to-log-file! (:output-stream state)
transaction-number
statements))
(update state
:in-memory-log
assoc
transaction-number
statements))
(deftest test-log-to-string
(is (= "[1 [[1 :name :set \"Foo 1\"] [2 :name :set \"Foo 2\"]]]\n[2 [[1 :name :set \"Bar 1\"] [2 :name :set \"Bar 2\"]]]"
(log-to-string (sorted-map 1 [[1 :name :set "Foo 1"]
[2 :name :set "Foo 2"]]
2 [[1 :name :set "Bar 1"]
[2 :name :set "Bar 2"]])))))
(defn truncate! [state log-file-path first-preserved-transaction-number]
(let [truncated-log (util/filter-sorted-map-keys (:in-memory-log state)
(fn [transaction-number]
(<= first-preserved-transaction-number
transaction-number)))]
(when (not (:is-transient? state))
(.close (:output-stream state))
(reset-log-file! log-file-path truncated-log))
(-> state
(assoc :in-memory-log truncated-log)
(cond-> (:is-transient? state)
(assoc :output-stream (io/output-stream log-file-path :append true))))))
(defn synchronously-apply-to-state! [file-transaction-log function & arguments]
(locking (:state-atom file-transaction-log)
(apply swap!
(:state-atom file-transaction-log)
function
arguments))
file-transaction-log)
(defmethod transaction-log/truncate! FileTransactionLog
[this first-preserved-transaction-number]
(synchronously-apply-to-state! this
truncate!
(:log-file-path this)
first-preserved-transaction-number))
(defmethod transaction-log/last-transaction-number FileTransactionLog
[this]
(first (last (:in-memory-log @(:state-atom this)))))
(defmethod transaction-log/add!-method FileTransactionLog
[this transaction-number statements]
(synchronously-apply-to-state! this
add-transaction!
transaction-number
statements))
(defn transient? [file-transaction-log]
(:is-transient? @(:state-atom file-transaction-log)))
(defn close! [file-transaction-log]
(if (not (transient? file-transaction-log))
(.close (:output-stream @(:state-atom file-transaction-log)))))
(defmethod transaction-log/close! FileTransactionLog
[this]
(close! this))
(defmethod transaction-log/subseq FileTransactionLog
[this first-transaction-number]
(subseq (:in-memory-log @(:state-atom this))
>=
first-transaction-number))
(defmethod transaction-log/make-transient! FileTransactionLog
[file-transaction-log]
(assert (not (transient? file-transaction-log)))
(synchronously-apply-to-state! file-transaction-log
(fn [state]
(close! file-transaction-log)
(fs/delete (:log-file-path file-transaction-log))
(assoc state :is-transient? true))))
(defmethod transaction-log/make-persistent! FileTransactionLog
[file-transaction-log]
(assert (transient? file-transaction-log))
(synchronously-apply-to-state! file-transaction-log
(fn [state]
(reset-log-file! (:log-file-path file-transaction-log)
(:in-memory-log state))
(assoc state
:is-transient? false
:output-stream (io/output-stream (:log-file-path file-transaction-log)
:append true)))))
(comment
(write-to-log-file! "data/temp/log"
3
[[1 :name :set "Foo 4"]])
(read-and-fix-log! "data/temp/log")
(with-open [log (create "data/temp/log")]
(doto log
#_(transaction-log/make-transient!)
(transaction-log/add! #{[1 :name :set "Bar 1"]
[2 :name :set "Bar 2"]})
(transaction-log/add! #{[1 :name :set "Baz 1"]})
#_(transaction-log/truncate! 2)
(transaction-log/add! #{[1 :name :set "Foo 2"]})
#_(transaction-log/make-persistent!))
#_(prn (transaction-log/subseq log 2))
#_(prn (transaction-log/last-transaction-number log))))
|
Clojure
|
package leafnodes
import (
"github.com/botmetrics/go-botmetrics/Godeps/_workspace/src/github.com/onsi/ginkgo/internal/failer"
"github.com/botmetrics/go-botmetrics/Godeps/_workspace/src/github.com/onsi/ginkgo/types"
"time"
)
type SuiteNode interface {
Run(parallelNode int, parallelTotal int, syncHost string) bool
Passed() bool
Summary() *types.SetupSummary
}
type simpleSuiteNode struct {
runner *runner
outcome types.SpecState
failure types.SpecFailure
runTime time.Duration
}
func (node *simpleSuiteNode) Run(parallelNode int, parallelTotal int, syncHost string) bool {
t := time.Now()
node.outcome, node.failure = node.runner.run()
node.runTime = time.Since(t)
return node.outcome == types.SpecStatePassed
}
func (node *simpleSuiteNode) Passed() bool {
return node.outcome == types.SpecStatePassed
}
func (node *simpleSuiteNode) Summary() *types.SetupSummary {
return &types.SetupSummary{
ComponentType: node.runner.nodeType,
CodeLocation: node.runner.codeLocation,
State: node.outcome,
RunTime: node.runTime,
Failure: node.failure,
}
}
func NewBeforeSuiteNode(body interface{}, codeLocation types.CodeLocation, timeout time.Duration, failer *failer.Failer) SuiteNode {
return &simpleSuiteNode{
runner: newRunner(body, codeLocation, timeout, failer, types.SpecComponentTypeBeforeSuite, 0),
}
}
func NewAfterSuiteNode(body interface{}, codeLocation types.CodeLocation, timeout time.Duration, failer *failer.Failer) SuiteNode {
return &simpleSuiteNode{
runner: newRunner(body, codeLocation, timeout, failer, types.SpecComponentTypeAfterSuite, 0),
}
}
|
Go
|
help: ## Print documentation
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
ghcid: ## Run ghcid with the cardano-sl-explorer package
ghcid \
--command "stack ghci cardano-sl-explorer --ghci-options=-fno-code"
ghcid-test: ## Have ghcid run the test suite on successful recompile
ghcid \
--command "stack ghci cardano-sl-explorer:lib cardano-sl-explorer:test:cardano-explorer-test --ghci-options=-fobject-code" \
--test "Main.main"
.PHONY: ghcid ghcid-test help
|
Makefile
|
# Copyright (c) 2016, Ruslan Baratov
# All rights reserved.
cmake_minimum_required(VERSION 3.0)
# Emulate HunterGate:
# * https://github.com/hunter-packages/gate
include("../common.cmake")
project(download-fixesproto)
# download fixesproto
hunter_add_package(fixesproto)
|
CMake
|
/******************************************************************************
* (C) Copyright 2011 KALRAY SA All Rights Reserved
*
* MODULE: mmu_proc_dcache_master_seq_lib.sv
* DEVICE: MMU_PROC_DCACHE VIP
* PROJECT:
* AUTHOR:
* DATE:
*
* ABSTRACT:
*
*******************************************************************************/
`ifndef MMU_PROC_DCACHE_MASTER_SEQ_LIB_SV
`define MMU_PROC_DCACHE_MASTER_SEQ_LIB_SV
//------------------------------------------------------------------------------
//
// CLASS: mmu_proc_dcache_master_base_sequence
//
//------------------------------------------------------------------------------
class mmu_proc_dcache_master_base_sequence extends uvm_sequence #(mmu_proc_dcache_transfer);
typedef mmu_proc_dcache_master_sequencer mmu_proc_dcache_master_sequencer_t;
typedef mmu_proc_dcache_transfer mmu_proc_dcache_transfer_t;
`uvm_object_param_utils(mmu_proc_dcache_master_base_sequence)
string v_name;
// new - constructor
function new(string name="mmu_proc_dcache_master_base_sequence");
super.new(name);
endfunction : new
// Raise in pre_body so the objection is only raised for root sequences.
// There is no need to raise for sub-sequences since the root sequence
// will encapsulate the sub-sequence.
virtual task pre_body();
m_sequencer.uvm_report_info(get_type_name(), $psprintf("%s pre_body() raising an uvm_test_done objection", get_sequence_path()), UVM_HIGH);
uvm_test_done.raise_objection(this);
endtask
// Drop the objection in the post_body so the objection is removed when
// the root sequence is complete.
virtual task post_body();
m_sequencer.uvm_report_info(get_type_name(), $psprintf("%s post_body() dropping an uvm_test_done objection", get_sequence_path()), UVM_HIGH);
uvm_test_done.drop_objection(this);
endtask // post_body
endclass : mmu_proc_dcache_master_base_sequence
//------------------------------------------------------------------------------
//
// CLASS: mmu_proc_dcache_standby_seq
//
//------------------------------------------------------------------------------
class mmu_proc_dcache_standby_seq extends mmu_proc_dcache_master_base_sequence;
`uvm_object_param_utils(mmu_proc_dcache_standby_seq)
// new - constructor
function new(string name="mmu_proc_dcache_standby_seq");
super.new(name);
endfunction : new
// Implment behavior sequence
virtual task body();
endtask // body
endclass : mmu_proc_dcache_standby_seq
//------------------------------------------------------------------------------
// Example sequence
// CLASS: mmu_proc_dcache_trial_seq
//
//------------------------------------------------------------------------------
class proc_dcache_seq extends mmu_proc_dcache_master_base_sequence;
`uvm_object_param_utils(proc_dcache_seq)
// Add sequence parameters
int unsigned lreq_lat;
logic [40:0] le1_dcache_virt_addr_i;
e1_dcache_opc_t le1_dcache_opc_i;
logic le1_glob_acc_i;
logic [3:0] le1_dcache_size_i;
logic le1_non_trapping_i;
// new - constructor
function new(string name="mmu_proc_dcache_trial_seq");
super.new(name);
endfunction : new
mmu_proc_dcache_transfer_t mmu_proc_dcache_trans;
// Implment behavior sequence
virtual task body();
`uvm_info(get_type_name(), $psprintf("Start sequence mmu_proc_dcache_trial_seq"), UVM_LOW)
$cast(mmu_proc_dcache_trans, create_item(mmu_proc_dcache_transfer_t::type_id::get(), m_sequencer, "mmu_proc_dcache_trans"));
start_item(mmu_proc_dcache_trans);
mmu_proc_dcache_trans.v_name = v_name;
if (!(mmu_proc_dcache_trans.randomize() with {
// Transmit sequence paramaters
mmu_proc_dcache_trans.req_lat ==lreq_lat;
mmu_proc_dcache_trans.e1_dcache_virt_addr_i == le1_dcache_virt_addr_i;
// mmu_proc_dcache_trans.e1_glob_acc_i == le1_glob_acc_i;
mmu_proc_dcache_trans.e1_dcache_size_i == le1_dcache_size_i;
mmu_proc_dcache_trans.e1_non_trapping_i == le1_non_trapping_i;
mmu_proc_dcache_trans.e1_dcache_opc == le1_dcache_opc_i;
}))
`uvm_fatal(get_type_name(), $psprintf("mmu_proc_dcache_trial_seq: randomization error"))
finish_item(mmu_proc_dcache_trans);
`uvm_info(get_type_name(), "End sequence mmu_proc_dcache_trial_seq", UVM_LOW)
endtask // body
endclass : proc_dcache_seq
`endif
|
Coq
|
<#
.SYNOPSIS
Function to retrieve the size of a directory and the number of files and directories inside of it.
.DESCRIPTION
Function to retrieve the size of a directory and the number of files and directories inside of it.
.PARAMETER Path
In the parameter Path you can specify the directory you want to query. This can be both a local or remote (UNC) path.
.PARAMETER OutputFormat
In the parameter OutputFormat you can specify the format in which the directory size should be outputted. Possible formats are KB, MB and GB. The default is GB.
.PARAMETER NoRecurse
When using the switch NoRecurse the function will only query the directory specified in the Path parameter and will not query child directories and files.
.EXAMPLE
PS C:\>Get-FSDirectorySize -Path C:\Windows
This command will retrieve the size (in GB) of the directory C:\Windows and the number of files and directories insides of it.
.NOTES
Author : Ingvald Belmans
Website : http://www.supersysadmin.com
Version : 1.0
Changelog:
- 1.0 (2015-12-31) Initial version.
.LINK
http://www.supersysadmin.com
#>
function Get-FSDirectorySize
{
[CmdletBinding()]
Param
(
[Parameter(
Mandatory=$true,
ValueFromPipeline=$true,
ValueFromPipelineByPropertyName=$true
)
]
[String]
$Path,
[validateset('KB','MB','GB')]
[string]
$OutputFormat = "GB",
[switch]
$NoRecurse
)
Begin
{
}
Process
{
Write-Verbose -Message "Testing if path '$Path' exists."
if (Test-Path -Path $Path)
{
Write-Verbose -Message "Path '$Path' exists."
$DirectorySize = @()
$DirectorySizeObject = New-Object -TypeName System.Object
if ($NoRecurse)
{
Write-Verbose -Message "Performing a non-recursive search on path '$Path'."
$QueryDirectory = Get-ChildItem -Path $Path -ErrorVariable QueryDirectoryErrors -ErrorAction SilentlyContinue
}
else
{
Write-Verbose -Message "Performing a recursive search on path '$Path'."
$QueryDirectory = Get-ChildItem -Path $Path -Recurse -ErrorVariable QueryDirectoryErrors -ErrorAction SilentlyContinue
}
foreach ($QueryDirectoryError in $QueryDirectoryErrors)
{
Write-Warning -Message $QueryDirectoryError
}
$DirectorySizeObject | Add-Member -MemberType NoteProperty -Name "Directory" -Value $Path
Write-Verbose -Message "Calculating size of path '$Path'."
$QueryDirectorySize = $QueryDirectory | Measure-Object -Property Length -Sum
if ($OutputFormat -eq "KB")
{
Write-Verbose -Message "Setting OutputFormat to KB."
$QueryDirectorySizeFormattedHeader = "Size(KB)"
$QueryDirectorySizeFormatted = "{0:N2}" -f ($QueryDirectorySize.Sum / 1KB)
}
elseif ($OutputFormat -eq "MB")
{
Write-Verbose -Message "Setting OutputFormat to MB."
$QueryDirectorySizeFormattedHeader = "Size(MB)"
$QueryDirectorySizeFormatted = "{0:N2}" -f ($QueryDirectorySize.Sum / 1MB)
}
elseif ($OutputFormat -eq "GB")
{
Write-Verbose -Message "Setting OutputFormat to GB."
$QueryDirectorySizeFormattedHeader = "Size(GB)"
$QueryDirectorySizeFormatted = "{0:N2}" -f ($QueryDirectorySize.Sum / 1GB)
}
$DirectorySizeObject | Add-Member -MemberType NoteProperty -Name $QueryDirectorySizeFormattedHeader -Value $QueryDirectorySizeFormatted
Write-Verbose -Message "Calculating amount of directories in path '$Path'."
$QueryDirectoryDirectories = $QueryDirectory | Where-Object -FilterScript {$_.PSIsContainer -eq $true}
$DirectorySizeObject | Add-Member -MemberType NoteProperty -Name "Directories" -Value $QueryDirectoryDirectories.Count
Write-Verbose -Message "Calculating amount of files in path '$Path'."
$QueryDirectoryFiles = $QueryDirectory | Where-Object -FilterScript {$_.PSIsContainer -eq $false}
$DirectorySizeObject | Add-Member -MemberType NoteProperty -Name "Files" -Value $QueryDirectoryFiles.Count
$DirectorySize += $DirectorySizeObject
Write-Output -InputObject $DirectorySize
}
else
{
Write-Warning -Message "Path '$path' does not exist."
break
}
}
End
{
}
}
|
PowerShell
|
\hypertarget{class_image_app_1_1migrations_1_10003__auto__20180818__1425_1_1_migration}{}\section{Image\+App.\+migrations.0003\+\_\+auto\+\_\+20180818\+\_\+1425.Migration Class Reference}
\label{class_image_app_1_1migrations_1_10003__auto__20180818__1425_1_1_migration}\index{Image\+App.\+migrations.\+0003\+\_\+auto\+\_\+20180818\+\_\+1425.\+Migration@{Image\+App.\+migrations.\+0003\+\_\+auto\+\_\+20180818\+\_\+1425.\+Migration}}
Inheritance diagram for Image\+App.\+migrations.0003\+\_\+auto\+\_\+20180818\+\_\+1425.Migration\+:\begin{figure}[H]
\begin{center}
\leavevmode
\includegraphics[height=2.000000cm]{class_image_app_1_1migrations_1_10003__auto__20180818__1425_1_1_migration}
\end{center}
\end{figure}
\subsection*{Static Public Attributes}
\begin{DoxyCompactItemize}
\item
list \mbox{\hyperlink{class_image_app_1_1migrations_1_10003__auto__20180818__1425_1_1_migration_a33c13fdbeb1e5e28d03d1a1fc391dad3}{dependencies}}
\item
list \mbox{\hyperlink{class_image_app_1_1migrations_1_10003__auto__20180818__1425_1_1_migration_aae609b480f1a2542bd52396572fc1574}{operations}}
\end{DoxyCompactItemize}
\subsection{Member Data Documentation}
\mbox{\Hypertarget{class_image_app_1_1migrations_1_10003__auto__20180818__1425_1_1_migration_a33c13fdbeb1e5e28d03d1a1fc391dad3}\label{class_image_app_1_1migrations_1_10003__auto__20180818__1425_1_1_migration_a33c13fdbeb1e5e28d03d1a1fc391dad3}}
\index{Image\+App\+::migrations\+::0003\+\_\+auto\+\_\+20180818\+\_\+1425\+::\+Migration@{Image\+App\+::migrations\+::0003\+\_\+auto\+\_\+20180818\+\_\+1425\+::\+Migration}!dependencies@{dependencies}}
\index{dependencies@{dependencies}!Image\+App\+::migrations\+::0003\+\_\+auto\+\_\+20180818\+\_\+1425\+::\+Migration@{Image\+App\+::migrations\+::0003\+\_\+auto\+\_\+20180818\+\_\+1425\+::\+Migration}}
\subsubsection{\texorpdfstring{dependencies}{dependencies}}
{\footnotesize\ttfamily list Image\+App.\+migrations.\+0003\+\_\+auto\+\_\+20180818\+\_\+1425.\+Migration.\+dependencies\hspace{0.3cm}{\ttfamily [static]}}
{\bfseries Initial value\+:}
\begin{DoxyCode}
= [
(\textcolor{stringliteral}{'ImageApp'}, \textcolor{stringliteral}{'0002\_image\_imagefile'}),
]
\end{DoxyCode}
\mbox{\Hypertarget{class_image_app_1_1migrations_1_10003__auto__20180818__1425_1_1_migration_aae609b480f1a2542bd52396572fc1574}\label{class_image_app_1_1migrations_1_10003__auto__20180818__1425_1_1_migration_aae609b480f1a2542bd52396572fc1574}}
\index{Image\+App\+::migrations\+::0003\+\_\+auto\+\_\+20180818\+\_\+1425\+::\+Migration@{Image\+App\+::migrations\+::0003\+\_\+auto\+\_\+20180818\+\_\+1425\+::\+Migration}!operations@{operations}}
\index{operations@{operations}!Image\+App\+::migrations\+::0003\+\_\+auto\+\_\+20180818\+\_\+1425\+::\+Migration@{Image\+App\+::migrations\+::0003\+\_\+auto\+\_\+20180818\+\_\+1425\+::\+Migration}}
\subsubsection{\texorpdfstring{operations}{operations}}
{\footnotesize\ttfamily list Image\+App.\+migrations.\+0003\+\_\+auto\+\_\+20180818\+\_\+1425.\+Migration.\+operations\hspace{0.3cm}{\ttfamily [static]}}
{\bfseries Initial value\+:}
\begin{DoxyCode}
= [
migrations.RenameField(
model\_name=\textcolor{stringliteral}{'image'},
old\_name=\textcolor{stringliteral}{'imageFile'},
new\_name=\textcolor{stringliteral}{'imageField'},
),
]
\end{DoxyCode}
The documentation for this class was generated from the following file\+:\begin{DoxyCompactItemize}
\item
Web\+Project/\+Cell\+Segmentation/\+Image\+App/migrations/\mbox{\hyperlink{0003__auto__20180818__1425_8py}{0003\+\_\+auto\+\_\+20180818\+\_\+1425.\+py}}\end{DoxyCompactItemize}
|
TeX
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# no more "zero" integer division bugs!:P
# import argparse
import os
import sys
import numpy as np # array
import time
import emcee
# import h5py
# import random
# import constants as cst # local constants module
# from scipy.stats import norm as scipy_norm
from . import ancillary as anc
import matplotlib as mpl
import matplotlib.pyplot as plt
anc.set_rcParams()
def compute_convergence(
chains, fit_names, log_folder, plots_folder, n_cv=10, n_thin=1, figsize=(5, 5)
):
os.makedirs(log_folder, exist_ok=True)
log_file = os.path.join(log_folder, "log_convergence.txt")
with open(log_file, "w") as olog:
anc.print_both("", output=olog)
anc.print_both(" ======================== ", output=olog)
anc.print_both(" CONVERGENCE PLOTS", output=olog)
anc.print_both(" ======================== ", output=olog)
anc.print_both("", output=olog)
n_steps, n_walkers, n_fit = np.shape(chains)
if n_cv < 1:
n_cv = 10
step = int((n_steps - 10) / n_cv)
steps = np.rint(np.linspace(step, n_steps, endpoint=True, num=n_cv)).astype(int)
expected_acf = np.zeros((n_fit)).astype(int)
expected_steps = np.zeros((n_fit)).astype(int)
for ifit, iname in enumerate(fit_names):
anc.print_both("\nParameter {}".format(iname), output=olog)
fig, axs = plt.subplots(nrows=3, ncols=1, sharex=False, figsize=figsize)
fig.suptitle(iname)
ax = axs[0]
# anc.print_both("Gelman-Rubin", output=olog)
gr = np.zeros((n_cv)) + 100
for istep in range(n_cv):
gr[istep] = anc.GelmanRubin(chains[: steps[istep], :, ifit])
ax.plot(
steps,
gr,
color="black",
marker="o",
ms=4,
mec="white",
mew=0.3,
ls="-",
lw=0.7,
zorder=5,
)
ax.axhline(1.01, color="gray", ls="--", lw=0.7, zorder=4)
ax.set_ylim(0.95, 1.2)
ax.set_ylabel("G-R ($\^{R}$)")
ax.set_xlabel("steps $\\times {}$".format(n_thin))
ax = axs[1]
# anc.print_both("Geweke", output=olog)
lower_interval, z_score = anc.geweke_test(
chains[:, :, ifit], start_frac=0.01, n_sel_steps=n_cv
)
for i_c in range(0, n_walkers):
ax.plot(
lower_interval,
z_score[:, i_c],
marker="o",
ms=2,
mec="None",
ls="-",
lw=0.4,
label="walker {:d}".format(i_c + 1),
alpha=0.6,
)
# ax.legend(loc='best', fontsize=3)
ax.axhline(
+2.0,
color="lightgray",
ls="-",
lw=0.7,
)
ax.axhline(
-2.0,
color="lightgray",
ls="-",
lw=0.7,
)
ax.set_ylabel("Geweke")
ax.set_xlabel("steps $\\times {}$".format(n_thin))
ax.set_ylim(-3, +3)
ax = axs[2]
# anc.print_both("ACF", output=olog)
tolerance = 50
integrated_ACF = emcee.autocorr.integrated_time(
chains[:, :, ifit], tol=tolerance, quiet=True
)
acf_len = int(np.nanmax(integrated_ACF))
n_expected = acf_len * tolerance
anc.print_both(
"ACF {}x{} expected chain long as n = {}x{} (current {} steps)".format(
acf_len, n_thin, n_expected, n_thin, n_steps
),
output=olog,
)
expected_steps[ifit] = n_expected
expected_acf[ifit] = acf_len
n_acf = acf_len * tolerance
n_acf = 10
acf_steps = np.rint(
np.linspace(acf_len // 2, n_steps, endpoint=True, num=n_acf)
).astype(int)
tau_est = np.zeros((n_acf))
for i_acf, n_s in enumerate(acf_steps):
acf_mean = np.zeros((n_s))
for iw in range(0, n_walkers):
acf = emcee.autocorr.function_1d(chains[:n_s, iw, ifit])
acf_mean += acf
acf_mean /= n_walkers
c = 5
taus = 2.0 * np.cumsum(acf_mean) - 1.0
window = emcee.autocorr.auto_window(taus, c)
tau_est[i_acf] = taus[window]
ax.plot(
acf_steps,
tau_est,
color="C0",
marker="o",
ms=2,
mec="None",
ls="-",
lw=0.5,
label="$\\tau$",
zorder=6,
)
ax.axhline(
acf_len,
color="black",
ls="-",
lw=0.7,
label="ACF = ${}\\times{}$".format(acf_len, n_thin),
zorder=5,
)
ax.plot(
acf_steps,
acf_steps / tolerance,
color="gray",
marker="None",
ls="--",
lw=0.5,
label="$\\tau = N/({}\\times{})$".format(tolerance, n_thin),
zorder=4,
)
ax.legend(loc="best", fontsize=4)
ax.set_ylabel("ACF")
ax.set_xlabel("steps $\\times {}$".format(n_thin))
plt.tight_layout()
fig.align_ylabels(axs)
out_file = os.path.join(
plots_folder, "{:03d}_{}_convergence.png".format(ifit, iname)
)
fig.savefig(out_file, dpi=300, bbox_inches="tight")
plt.close(fig)
anc.print_both("", output=olog)
anc.print_both(
"All expected steps for each parameter needed to reach full convergence:\n{}".format(
expected_steps
),
output=olog,
)
anc.print_both(
"All expected ACF len for each parameter needed to reach full convergence:\n{}".format(
expected_acf
),
output=olog,
)
imax_acf = np.argmax(expected_acf)
anc.print_both(
"MAX ACF = {} ==> needed chains of {} steps\n".format(
expected_acf[imax_acf], expected_steps[imax_acf]
),
output=olog,
)
# close olog
return
def full_statistics(
chains,
# post,
flat_post,
names,
pars,
lnp_post,
output_folder,
olog=None,
ilast=0,
n_burn=0,
n_thin=1,
show_plot=False,
figsize=(8, 8),
):
# 68.27% (15.87th-84.13th) ==> alpha = 1. - 0.6827 = 0.3173
# 95.44% ( 2.28th-97.72th) ==> alpha = 1. - 0.9544 = 0.0456
# 99.74% ( 0.13th-99.87th) ==> alpha = 1. - 0.9974 = 0.0026
cred1 = 0.6827
scred1 = "{:.2f}".format(100 * cred1)
cred2 = 0.9544
scred2 = "{:.2f}".format(100 * cred2)
cred3 = 0.9974
scred3 = "{:.2f}".format(100 * cred3)
lsize = 10
tsize = lsize - 3
n_steps, n_walkers, n_par = np.shape(chains)
print("### n_steps, n_walkers, n_par = {}, {}, {}".format(n_steps, n_walkers, n_par))
n_gr = 10
if n_steps <= n_gr:
n_gr = n_steps
step = 1
else:
step = int((n_steps - 10) / n_gr)
steps = np.rint(np.linspace(step, n_steps, endpoint=True, num=n_gr)).astype(int)
expected_acf = np.zeros((n_par)).astype(int)
expected_steps = np.zeros((n_par)).astype(int)
for ipar, pname in enumerate(names):
p = pars[ipar]
anc.print_both("Parameter {}".format(pname), output=olog)
if (
pname[0] == "w"
or pname[0:2] == "mA"
or pname[0:2] == "lN"
or "lambda" in pname
):
pmod = p%360.0
patg = anc.get_arctan_angle(pmod)
pmin, pmax = flat_post[:, ipar].min(), flat_post[:, ipar].max()
if np.logical_and(patg >= pmin, patg <= pmax):
p = patg
else:
p = pmod
hdi1 = anc.hpd(flat_post[:, ipar], cred=cred1)
hdi2 = anc.hpd(flat_post[:, ipar], cred=cred2)
hdi3 = anc.hpd(flat_post[:, ipar], cred=cred3)
err = np.array(hdi1) - p
med = np.median(flat_post[:, ipar])
warn = ""
if err[0] > 0 or err[1] < 0:
warn = "!!WARNING MAP OUT OF HDI{}%!!".format(cred1)
fig = plt.figure(figsize=figsize, layout="constrained")
spec = fig.add_gridspec(3, 3)
axs = []
# TOP-LEFT ==== Gelman-Rubin
topl = fig.add_subplot(spec[0, 0])
topl.tick_params(axis="x", labelrotation=0, labelsize=tsize)
topl.tick_params(axis="y", labelrotation=45, labelsize=tsize)
gr = np.zeros((n_gr)) + 100
for istep, vstep in enumerate(steps):
# gr[istep] = anc.GelmanRubin(chains[:vstep, :, ipar])
gr[istep] = anc.GelmanRubin_PyORBIT(chains[:vstep, :, ipar])
topl.plot(
steps,
gr,
color="black",
marker="o",
ms=4,
mec="white",
mew=0.3,
ls="-",
lw=0.7,
zorder=5,
)
topl.axhline(1.01, color="gray", ls="--", lw=0.7, zorder=4)
ylim0 = topl.get_ylim()
topl.set_ylim(max(0.95, ylim0[0]), min(1.2, ylim0[1]))
# topl.set_ylabel("G-R ($\^{R}$)", fontsize=lsize)
topl.set_xlabel("steps $\\times {}$".format(n_thin), fontsize=lsize)
axs.append(topl)
# TOP-CENTRE ==== Geweke
topc = fig.add_subplot(spec[0, 1])
topc.tick_params(axis="x", labelrotation=0, labelsize=tsize)
topc.tick_params(axis="y", labelrotation=45, labelsize=tsize)
lower_interval, z_score = anc.geweke_test(
chains[:, :, ipar], start_frac=0.01, n_sel_steps=n_gr
)
for i_c in range(0, n_walkers):
topc.plot(
lower_interval,
z_score[:, i_c],
marker="o",
ms=2,
mec="None",
ls="-",
lw=0.4,
# label="walker {:d}".format(i_c + 1),
alpha=0.6,
)
topc.axhline(
+2.0,
color="lightgray",
ls="-",
lw=0.7,
)
topc.axhline(
-2.0,
color="lightgray",
ls="-",
lw=0.7,
)
topc.set_ylim(-3, +3)
# topc.set_ylabel("Geweke", fontsize=lsize)
topc.set_xlabel("steps $\\times {}$".format(n_thin), fontsize=lsize)
axs.append(topc)
# TOP-RIGHT ==== ACF
topr = fig.add_subplot(spec[0, 2])
topr.tick_params(axis="x", labelrotation=0, labelsize=tsize)
topr.tick_params(axis="y", labelrotation=45, labelsize=tsize)
tolerance = 50
integrated_ACF = emcee.autocorr.integrated_time(
chains[:, :, ipar], tol=tolerance, quiet=True
)
print("integrated_ACF ",integrated_ACF)
acf_len = np.rint(np.nanmax(integrated_ACF)).astype(int)
print("acf_len ",acf_len)
n_expected = acf_len * tolerance
print("n_expected ",n_expected)
anc.print_both(
"ACF {}x{} expected chain long as n = {}x{} (current {} steps)".format(
acf_len, n_thin, n_expected, n_thin, n_steps
),
output=olog,
)
expected_steps[ipar] = n_expected
print("expected_steps[ipar] ",expected_steps[ipar])
expected_acf[ipar] = acf_len
print("expected_acf[ipar] ",expected_acf[ipar])
n_acf = 10
acf_start = acf_len // 2
if acf_start < 1:
acf_start = 1
acf_steps = np.rint(
np.linspace(acf_start, n_steps, endpoint=True, num=n_acf)
).astype(int)
print("acf_steps ",acf_steps)
tau_est = np.zeros((n_acf))
for i_acf, n_s in enumerate(acf_steps):
acf_mean = np.zeros((n_s))
for iw in range(0, n_walkers):
acf = emcee.autocorr.function_1d(chains[:n_s, iw, ipar])
acf_mean += acf
acf_mean /= n_walkers
c = 5
taus = 2.0 * np.cumsum(acf_mean) - 1.0
window = emcee.autocorr.auto_window(taus, c)
tau_est[i_acf] = taus[window]
topr.plot(
acf_steps,
tau_est,
color="C0",
marker="o",
ms=2,
mec="None",
ls="-",
lw=0.5,
label="$\\tau$",
zorder=6,
)
topr.axhline(
acf_len,
color="black",
ls="-",
lw=0.7,
label="ACF = ${}\\times{}$".format(acf_len, n_thin),
zorder=5,
)
topr.plot(
acf_steps,
acf_steps / tolerance,
color="gray",
marker="None",
ls="--",
lw=0.5,
label="$\\tau = N/({}\\times{})$".format(tolerance, n_thin),
zorder=4,
)
topr.legend(loc="best", fontsize=tsize - 2)
# topr.set_ylabel("ACF", fontsize=lsize)
topr.set_xlabel("steps $\\times {}$".format(n_thin), fontsize=lsize)
axs.append(topr)
# MIDLEFT ==== trace full chains
midl = fig.add_subplot(spec[1, 0])
midl.tick_params(axis="x", labelrotation=0, labelsize=tsize)
midl.tick_params(axis="y", labelrotation=45, labelsize=tsize)
midl.plot(chains[:, :, ipar], ls="-", lw=0.2, alpha=0.3)
midl.axvline(n_burn, color="gray", ls="-", lw=1.3, alpha=0.7)
midl.axhline(p, color="C1", ls="-", lw=1.4, alpha=0.7)
# midl.set_ylabel("{} (full)".format(pname), fontsize=lsize)
midl.set_xlabel("steps $\\times {}$".format(n_thin), fontsize=lsize)
axs.append(midl)
# MIDCENTRE ==== trace posterior chains
midc = fig.add_subplot(spec[1, 1])
midc.tick_params(axis="x", labelrotation=0, labelsize=tsize)
midc.tick_params(axis="y", labelrotation=45, labelsize=tsize)
midc.plot(chains[:, :, ipar], ls="-", lw=0.2, alpha=0.3)
midc.axvspan(
0, n_burn, facecolor="gray", edgecolor="None", ls="-", lw=1.3, alpha=0.5
)
midc.axvline(n_burn, color="gray", ls="-", lw=1.3, alpha=0.7)
midc.axhline(p, color="C1", ls="-", lw=1.4, alpha=0.7)
y = flat_post[:, ipar]
dy = np.ptp(y)
midc.set_ylim([y.min() - 0.03 * dy, y.max() + 0.03 * dy])
midc.set_xlabel("steps $\\times {}$".format(n_thin), fontsize=lsize)
axs.append(midc)
# MIDRIGHT ==== posterior distribution
midr = fig.add_subplot(spec[1, 2])
midr.tick_params(axis="x", labelbottom=False)
midr.tick_params(axis="y", labelleft=False)
midr.hist(
flat_post[:, ipar],
bins=33,
color="black",
density=False,
orientation="horizontal",
zorder=3,
)
midr.axhline(
p, color="C1", ls="-", lw=1.3, alpha=1.0, label="MAP", zorder=5
)
midr.axhline(
hdi1[0],
color="C2",
ls="--",
lw=0.95,
alpha=1.0,
label="HDI{}%".format(scred1),
zorder=4,
)
midr.axhline(hdi1[1], color="C2", ls="--", lw=0.95, alpha=1.0, zorder=4)
midr.axhline(
hdi2[0],
color="C3",
ls="--",
lw=0.50,
alpha=1.0,
label="HDI{}%".format(scred2),
zorder=4,
)
midr.axhline(hdi2[1], color="C3", ls="--", lw=0.50, alpha=1.0, zorder=5)
midr.axhline(
hdi3[0],
color="C4",
ls="--",
lw=0.50,
alpha=1.0,
label="HDI{}%".format(scred3),
zorder=4,
)
midr.axhline(hdi3[1], color="C4", ls="--", lw=0.50, alpha=1.0, zorder=6)
midr.axhline(
med, color="C0", ls="--", lw=1.0, alpha=1.0, label="MEDIAN", zorder=6
)
# midr.legend(loc='best', fontsize=tsize-3)
axs.append(midr)
# BOTTOM ==== lnP = f(par)
bot = fig.add_subplot(spec[2, :])
bot.tick_params(axis="x", labelrotation=0, labelsize=tsize)
bot.tick_params(axis="y", labelrotation=45, labelsize=tsize)
# bot.set_title(pname, fontsize=lsize+1)
bot.plot(
flat_post[:, ipar],
lnp_post,
color="black",
marker="o",
ms=1,
mec="None",
ls="",
alpha=0.33,
zorder=2,
)
bot.axvline(
p, color="C1", ls="-", lw=1.3, alpha=1.0, label="MAP", zorder=5
)
bot.axvline(
hdi1[0],
color="C2",
ls="--",
lw=0.95,
alpha=1.0,
label="HDI{}%".format(scred1),
zorder=4,
)
bot.axvline(hdi1[1], color="C2", ls="--", lw=0.95, alpha=1.0, zorder=4)
bot.axvline(
hdi2[0],
color="C3",
ls="--",
lw=0.50,
alpha=1.0,
label="HDI{}%".format(scred2),
zorder=4,
)
bot.axvline(hdi2[1], color="C3", ls="--", lw=0.50, alpha=1.0, zorder=5)
bot.axvline(
hdi3[0],
color="C4",
ls="--",
lw=0.50,
alpha=1.0,
label="HDI{}%".format(scred3),
zorder=4,
)
bot.axvline(hdi3[1], color="C4", ls="--", lw=0.50, alpha=1.0, zorder=6)
bot.axvline(
med, color="C0", ls="--", lw=1.0, alpha=1.0, label="MEDIAN", zorder=6
)
bot.legend(
# loc='center left',
# bbox_to_anchor=(1.01, 0.5),
loc="best",
fontsize=tsize - 3,
)
bot.set_ylabel("$\ln\mathcal{P}$", fontsize=lsize)
bot.set_xlabel("{} (posterior)".format(pname), fontsize=lsize)
axs.append(bot)
plt.tight_layout()
# fig.align_ylabels(axs)
# save figure
output_file = os.path.join(
output_folder, "{:03d}_{}.png".format(ipar + ilast, pname)
)
anc.print_both("Saving {}".format(output_file), output=olog)
fig.savefig(output_file, dpi=300, bbox_inches="tight")
if show_plot:
plt.show()
plt.close(fig)
return expected_acf, expected_steps
def log_probability_trace(
log_prob, lnprob_posterior, plot_folder, n_burn=0, n_thin=1, show_plot=False, figsize=(8, 8), olog=None
):
lsize = 10
tsize = lsize - 3
map_lnprob = np.max(lnprob_posterior)
fig = plt.figure(figsize=figsize, layout="constrained")
spec = fig.add_gridspec(3, 1)
axs = []
top = fig.add_subplot(spec[0, 0])
top.tick_params(axis="x", labelrotation=45, labelsize=tsize, labelbottom=False)
top.tick_params(axis="y", labelrotation=45, labelsize=tsize)
top.plot(log_prob, ls="-", lw=0.2, alpha=0.3)
top.axvline(n_burn, color="gray", ls="-", lw=1.3, alpha=0.7)
top.axhline(map_lnprob, color="C1", ls="-", lw=1.2, alpha=0.7)
top.set_ylabel("$\ln\mathcal{P}$ (full)")
axs.append(top)
mid = fig.add_subplot(spec[1, 0])
mid.tick_params(axis="x", labelrotation=45, labelsize=tsize)
mid.tick_params(axis="y", labelrotation=45, labelsize=tsize)
mid.plot(log_prob, ls="-", lw=0.2, alpha=0.3)
mid.axvline(n_burn, color="gray", ls="-", lw=1.3, alpha=0.7)
mid.axhline(map_lnprob, color="C1", ls="-", lw=1.2, alpha=0.7)
mid.set_ylabel("$\ln\mathcal{P}$ (post.)")
mid.set_xlabel("steps $\\times {}$".format(n_thin))
dlnP = np.ptp(lnprob_posterior)
mid.set_ylim(
[lnprob_posterior.min() - 0.03 * dlnP, lnprob_posterior.max() + 0.03 * dlnP]
)
axs.append(mid)
bot = fig.add_subplot(spec[2, 0])
bot.tick_params(axis="x", labelrotation=45, labelsize=tsize)
bot.tick_params(axis="y", labelrotation=45, labelsize=tsize, labelleft=False)
bot.hist(
lnprob_posterior,
bins=33,
color="black",
density=False,
orientation="vertical",
zorder=3,
)
bot.axvline(map_lnprob, color="C1", ls="-", lw=1.2, alpha=0.7)
bot.set_xlabel("$\ln\mathcal{P}$ (post.)")
axs.append(bot)
plt.tight_layout()
fig.align_ylabels(axs)
output_file = os.path.join(plot_folder, "lnprob_trace.png")
anc.print_both("\nSaving {}".format(output_file), output=olog)
fig.savefig(output_file, dpi=300, bbox_inches="tight")
if show_plot:
plt.show()
plt.close(fig)
return
|
Python
|
CREATE PROCEDURE UpdateCreditLimitWrapper
AS
BEGIN
DECLARE @Retries INT = 1 ;
WHILE @Retries <= 10
BEGIN
BEGIN TRY
EXEC dbo.UpdateCreditLimit ;
END TRY
BEGIN CATCH
WAITFOR DELAY '00:00:01' ;
SET @Retries = @Retries + 1 ;
END CATCH
END
END
|
PLSQL
|
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
// Package iam provides the client and types for making API
// requests to AWS Identity and Access Management.
//
// AWS Identity and Access Management (IAM) is a web service that you can use
// to manage users and user permissions under your AWS account. This guide provides
// descriptions of IAM actions that you can call programmatically. For general
// information about IAM, see AWS Identity and Access Management (IAM) (http://aws.amazon.com/iam/).
// For the user guide for IAM, see Using IAM (http://docs.aws.amazon.com/IAM/latest/UserGuide/).
//
// AWS provides SDKs that consist of libraries and sample code for various programming
// languages and platforms (Java, Ruby, .NET, iOS, Android, etc.). The SDKs
// provide a convenient way to create programmatic access to IAM and AWS. For
// example, the SDKs take care of tasks such as cryptographically signing requests
// (see below), managing errors, and retrying requests automatically. For information
// about the AWS SDKs, including how to download and install them, see the Tools
// for Amazon Web Services (http://aws.amazon.com/tools/) page.
//
// We recommend that you use the AWS SDKs to make programmatic API calls to
// IAM. However, you can also use the IAM Query API to make direct calls to
// the IAM web service. To learn more about the IAM Query API, see Making Query
// Requests (http://docs.aws.amazon.com/IAM/latest/UserGuide/IAM_UsingQueryAPI.html)
// in the Using IAM guide. IAM supports GET and POST requests for all actions.
// That is, the API does not require you to use GET for some actions and POST
// for others. However, GET requests are subject to the limitation size of a
// URL. Therefore, for operations that require larger sizes, use a POST request.
//
// Signing Requests
//
// Requests must be signed using an access key ID and a secret access key. We
// strongly recommend that you do not use your AWS account access key ID and
// secret access key for everyday work with IAM. You can use the access key
// ID and secret access key for an IAM user or you can use the AWS Security
// Token Service to generate temporary security credentials and use those to
// sign requests.
//
// To sign requests, we recommend that you use Signature Version 4 (http://docs.aws.amazon.com/general/latest/gr/signature-version-4.html).
// If you have an existing application that uses Signature Version 2, you do
// not have to update it to use Signature Version 4. However, some operations
// now require Signature Version 4. The documentation for operations that require
// version 4 indicate this requirement.
//
// Additional Resources
//
// For more information, see the following:
//
// * AWS Security Credentials (http://docs.aws.amazon.com/general/latest/gr/aws-security-credentials.html).
// This topic provides general information about the types of credentials
// used for accessing AWS.
//
// * IAM Best Practices (http://docs.aws.amazon.com/IAM/latest/UserGuide/IAMBestPractices.html).
// This topic presents a list of suggestions for using the IAM service to
// help secure your AWS resources.
//
// * Signing AWS API Requests (http://docs.aws.amazon.com/general/latest/gr/signing_aws_api_requests.html).
// This set of topics walk you through the process of signing a request using
// an access key ID and secret access key.
//
// See https://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08 for more information on this service.
//
// See iam package documentation for more information.
// https://docs.aws.amazon.com/sdk-for-go/api/service/iam/
//
// Using the Client
//
// To contact AWS Identity and Access Management with the SDK use the New function to create
// a new service client. With that client you can make API requests to the service.
// These clients are safe to use concurrently.
//
// See the SDK's documentation for more information on how to use the SDK.
// https://docs.aws.amazon.com/sdk-for-go/api/
//
// See aws.Config documentation for more information on configuring SDK clients.
// https://docs.aws.amazon.com/sdk-for-go/api/aws/#Config
//
// See the AWS Identity and Access Management client IAM for more
// information on creating client for this service.
// https://docs.aws.amazon.com/sdk-for-go/api/service/iam/#New
package iam
|
Go
|
part of serverManager;
class MessageProcessor {
Logger _log = new Logger('MessageProcessor');
Manager _manager;
List<MessageProcessorInterface> _processors = [];
MessageProcessor(Manager this._manager);
void registerProcessor(MessageProcessorInterface mp) {
mp.manager = _manager;
_processors.add(mp);
}
void process(Message message, String idClient) {
for (var processor in _processors) {
if (processor.canProcess(message, idClient)) {
processor.process(message, idClient);
}
}
}
}
|
Dart
|
--[[ WoTD License -
This software is provided as free and open source by the
team of The WoTD Team. This script was written and is
protected by the GPL v2. Please give credit where credit
is due, if modifying, redistributing and/or using this
software. Thank you.
Thank: WoTD Team; for the Script
~~End of License... Please Stand By...
-- WoTD Team, Janurary 19, 2010. ]]
function ScryerCavalier_OnEnterCombat(Unit,Event)
Unit:CastSpell(30931)
Unit:registerEvent("ScryerCavalier_Spellbreaker", 24000, 0)
end
function ScryerCavalier_Spellbreaker(Unit,Event)
Unit:FullCastSpellOnTarget(35871, Unit:GetClosestPlayer())
end
function ScryerCavalier_OnLeaveCombat(Unit,Event)
Unit:RemoveEvents()
end
function ScryerCavalier_OnDied(Unit,Event)
Unit:RemoveEvents()
end
RegisterUnitEvent(22967, 1, "ScryerCavalier_OnEnterCombat")
RegisterUnitEvent(22967, 2, "ScryerCavalier_OnLeaveCombat")
RegisterUnitEvent(22967, 4, "ScryerCavalier_OnDied")
|
Lua
|
FROM busybox
ADD index.html /www/index.html
EXPOSE 8000
CMD httpd -p 8000 -h /www; tail -f /dev/null
|
Dockerfile
|
Sub.pair <-
function(z, t, Mat, i, j){
alpha=0.05
n1 <- Sub.n(z, t, Mat, i)
n2 <- Sub.n(z, t, Mat, j)
m2 <- sum(z[which(Mat[,i] == 1 & Mat[,j] == 1)])
M <- sum(z)
M12 <- M - sum(z[which(Mat[,i] == 0 & Mat[,j] == 0)])
PetN <- n1 * n2 / m2
ChpN <- (n1 + 1) * (n2 + 1) / (m2 +1) - 1
VarN <- (n1 + 1) * (n2 + 1) * (n1 - m2) * (n2 - m2) / ((m2 + 1)^2 * (m2 + 2))
SEN <- sqrt(VarN)
C <- exp(qnorm(1 - alpha / 2) * sqrt(log(1 + VarN / (ChpN - M12)^2)))
ChpN.L <- M12 + (ChpN - M12) / C
ChpN.U <- M12 + (ChpN - M12) * C
Nij <- cbind(PetN, ChpN, SEN , ChpN.L, ChpN.U)
colnames(Nij) <- c("Petersen","Chapman","se","cil","ciu")
rownames(Nij) <- paste("pa", i, j, sep="")
return(Nij)
}
|
R
|
{
"_args": [
[
{
"raw": "is-unc-path@^0.1.1",
"scope": null,
"escapedName": "is-unc-path",
"name": "is-unc-path",
"rawSpec": "^0.1.1",
"spec": ">=0.1.1 <0.2.0",
"type": "range"
},
"/home/lfernandes/ng2/code/first_app/angular2-reddit-base/node_modules/is-relative"
]
],
"_from": "is-unc-path@>=0.1.1 <0.2.0",
"_id": "[email protected]",
"_inCache": true,
"_installable": true,
"_location": "/is-unc-path",
"_nodeVersion": "0.12.4",
"_npmUser": {
"name": "jonschlinkert",
"email": "[email protected]"
},
"_npmVersion": "2.10.1",
"_phantomChildren": {},
"_requested": {
"raw": "is-unc-path@^0.1.1",
"scope": null,
"escapedName": "is-unc-path",
"name": "is-unc-path",
"rawSpec": "^0.1.1",
"spec": ">=0.1.1 <0.2.0",
"type": "range"
},
"_requiredBy": [
"/is-relative"
],
"_resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-0.1.1.tgz",
"_shasum": "ab2533d77ad733561124c3dc0f5cd8b90054c86b",
"_shrinkwrap": null,
"_spec": "is-unc-path@^0.1.1",
"_where": "/home/lfernandes/ng2/code/first_app/angular2-reddit-base/node_modules/is-relative",
"author": {
"name": "Jon Schlinkert",
"url": "https://github.com/jonschlinkert"
},
"bugs": {
"url": "https://github.com/jonschlinkert/is-unc-path/issues"
},
"dependencies": {
"unc-path-regex": "^0.1.0"
},
"description": "Returns true if a filepath is a windows UNC file path.",
"devDependencies": {
"mocha": "*",
"should": "*"
},
"directories": {},
"dist": {
"shasum": "ab2533d77ad733561124c3dc0f5cd8b90054c86b",
"tarball": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-0.1.1.tgz"
},
"engines": {
"node": ">=0.10.0"
},
"files": [
"index.js"
],
"homepage": "https://github.com/jonschlinkert/is-unc-path",
"keywords": [
"absolute",
"expression",
"file",
"filepath",
"match",
"matching",
"path",
"regex",
"regexp",
"regular",
"unc",
"win",
"windows"
],
"license": "MIT",
"main": "index.js",
"maintainers": [
{
"name": "jonschlinkert",
"email": "[email protected]"
}
],
"name": "is-unc-path",
"optionalDependencies": {},
"readme": "ERROR: No README data found!",
"repository": {
"type": "git",
"url": "git+https://github.com/jonschlinkert/is-unc-path.git"
},
"scripts": {
"test": "mocha"
},
"version": "0.1.1"
}
|
JSON
|
######################################################
##### Purge all existing firewall rules (if any) #####
######################################################
resources { 'firewall':
purge => true,
}
#####################################################
##### Default rules defined before custom rules #####
#####################################################
class pre {
Firewall {
require => undef,
}
# Default firewall rules
firewall { '000 accept all icmp':
proto => 'icmp',
action => 'accept',
}->
firewall { '001 accept all to lo interface':
proto => 'all',
iniface => 'lo',
action => 'accept',
}->
firewall { '002 reject local traffic not on loopback interface':
iniface => '! lo',
proto => 'all',
destination => '127.0.0.1/8',
action => 'reject',
}->
firewall { '003 accept related established rules':
proto => 'all',
state => ['RELATED', 'ESTABLISHED'],
action => 'accept',
}
}
######################################################
##### Custom rules defined between default rules #####
######################################################
# firewall { '004 custom rule example':
# proto => 'all',
# state => ['RELATED', 'ESTABLISHED'],
# action => 'accept',
# }
#
# firewall { '005 custom rule example':
# proto => 'all',
# state => ['RELATED', 'ESTABLISHED'],
# action => 'accept',
# }
#
# firewall { '006 custom rule example':
# proto => 'all',
# state => ['RELATED', 'ESTABLISHED'],
# action => 'drop',
# }
####################################################
##### Default rules defined after custom rules #####
####################################################
class post {
firewall { '999 drop all':
proto => 'all',
action => 'drop',
before => undef,
}
}
Firewall {
before => Class['post'],
require => Class['pre'],
}
class { ['pre', 'post']: }
class { 'firewall': }
|
Pascal
|
# make sure we have vala
find_package (Vala REQUIRED)
# make sure we use vala
include (ValaVersion)
# make sure it's the desired version of vala
ensure_vala_version ("0.16" MINIMUM)
configure_file (${CMAKE_SOURCE_DIR}/config.vala.cmake ${CMAKE_BINARY_DIR}/config.vala)
# files we want to compile
include (ValaPrecompile)
vala_precompile (VALA_C ${EXEC_NAME}
${CMAKE_BINARY_DIR}/config.vala
Const.vala
GameView.vala
InGameGUI.vala
MainWindow.vala
Map.vala
Tile.vala
Building/Building.vala
Building/Fountain.vala
Building/House.vala
Building/Road.vala
Building/Farm.vala
Building/Prefecture.vala
Building/Engineer.vala
Building/Market.vala
PACKAGES
gtk+-3.0
OPTIONS
--target-glib=2.32
--thread
)
# tell cmake what to call the executable we just made
add_executable (${EXEC_NAME} ${VALA_C})
# install the binaries we just made
install (TARGETS ${EXEC_NAME} RUNTIME DESTINATION bin)
|
CMake
|
#!/usr/bin/env python
"""
This script generates the index-pattern for Kibana from
the fields.yml file.
"""
import yaml
import argparse
import string
import re
import json
import os
import errno
import sys
unique_fields = []
def fields_to_json(section, path, output):
if not section["fields"]:
return
for field in section["fields"]:
if path == "":
newpath = field["name"]
else:
newpath = path + "." + field["name"]
if "type" in field and field["type"] == "group":
fields_to_json(field, newpath, output)
else:
field_to_json(field, newpath, output)
def field_to_json(desc, path, output,
indexed=True, analyzed=False, doc_values=True,
searchable=True, aggregatable=True):
global unique_fields
if path in unique_fields:
print("ERROR: Field {} is duplicated. Please delete it and try again. Fields already are {}".format(
path, ", ".join(unique_fields)))
sys.exit(1)
else:
unique_fields.append(path)
field = {
"name": path,
"count": 0,
"scripted": False,
"indexed": indexed,
"analyzed": analyzed,
"doc_values": doc_values,
"searchable": searchable,
"aggregatable": aggregatable,
}
# find the kibana types based on the field type
if "type" in desc:
if desc["type"] in ["half_float", "scaled_float", "float", "integer", "long", "short", "byte"]:
field["type"] = "number"
elif desc["type"] in ["text", "keyword"]:
field["type"] = "string"
if desc["type"] == "text":
field["aggregatable"] = False
elif desc["type"] == "date":
field["type"] = "date"
elif desc["type"] == "geo_point":
field["type"] = "geo_point"
else:
field["type"] = "string"
output["fields"].append(field)
if "format" in desc:
output["fieldFormatMap"][path] = {
"id": desc["format"],
}
def fields_to_index_pattern(args, input):
docs = yaml.load(input)
if docs is None:
print("fields.yml is empty. Cannot generate index-pattern")
return
output = {
"fields": [],
"fieldFormatMap": {},
"timeFieldName": "@timestamp",
"title": args.index,
}
for k, section in enumerate(docs["fields"]):
fields_to_json(section, "", output)
# add meta fields
field_to_json({"name": "_id", "type": "keyword"}, "_id", output,
indexed=False, analyzed=False, doc_values=False,
searchable=False, aggregatable=False)
field_to_json({"name": "_type", "type": "keyword"}, "_type", output,
indexed=False, analyzed=False, doc_values=False,
searchable=True, aggregatable=True)
field_to_json({"name": "_index", "type": "keyword"}, "_index", output,
indexed=False, analyzed=False, doc_values=False,
searchable=False, aggregatable=False)
field_to_json({"name": "_score", "type": "integer"}, "_score", output,
indexed=False, analyzed=False, doc_values=False,
searchable=False, aggregatable=False)
output["fields"] = json.dumps(output["fields"])
output["fieldFormatMap"] = json.dumps(output["fieldFormatMap"])
return output
def get_index_pattern_name(index):
allow = string.ascii_letters + string.digits + "_"
return re.sub('[^%s]' % allow, '', index)
if __name__ == "__main__":
parser = argparse.ArgumentParser(
description="Generates the index-pattern for a Beat.")
parser.add_argument("--index", help="The name of the index-pattern")
parser.add_argument("--beat", help="Local Beat directory")
parser.add_argument("--libbeat", help="Libbeat local directory")
args = parser.parse_args()
fields_yml = args.beat + "/_meta/fields.generated.yml"
# Not all beats have a fields.generated.yml. Fall back to fields.yml
if not os.path.isfile(fields_yml):
fields_yml = args.beat + "/_meta/fields.yml"
# generate the index-pattern content
with open(fields_yml, 'r') as f:
fields = f.read()
# Prepend beat fields from libbeat
with open(args.libbeat + "/_meta/fields.generated.yml") as f:
fields = f.read() + fields
# with open(target, 'w') as output:
output = fields_to_index_pattern(args, fields)
# dump output to a json file
fileName = get_index_pattern_name(args.index)
target_dir = os.path.join(args.beat, "_meta", "kibana", "index-pattern")
target_file = os.path.join(target_dir, fileName + ".json")
try:
os.makedirs(target_dir)
except OSError as exception:
if exception.errno != errno.EEXIST:
raise
output = json.dumps(output, indent=2)
with open(target_file, 'w') as f:
f.write(output)
print("The index pattern was created under {}".format(target_file))
|
Python
|
# This file is responsible for configuring your application
# and its dependencies with the aid of the Mix.Config module.
#
# This configuration file is loaded before any dependency and
# is restricted to this project.
use Mix.Config
# Configures the endpoint
config :connectdemo, Connectdemo.Endpoint,
url: [host: "localhost"],
root: Path.dirname(__DIR__),
secret_key_base: "K5eic+a0gdMLFa0fC63CUzYDMuqMSos8KfujAuSZkIcMEQG7rrng6klOcpvfVzlx",
render_errors: [accepts: ~w(html json)],
pubsub: [name: Connectdemo.PubSub,
adapter: Phoenix.PubSub.PG2]
# Configures Elixir's Logger
config :logger, :console,
format: "$time $metadata[$level] $message\n",
metadata: [:request_id]
# Import environment specific config. This must remain at the bottom
# of this file so it overrides the configuration defined above.
import_config "#{Mix.env}.exs"
# Configure phoenix generators
config :phoenix, :generators,
migration: true,
binary_id: false
|
Elixir
|
# This file is a part of Julia. License is MIT: https://julialang.org/license
# Tests for /base/stacktraces.jl
using Serialization, Base.StackTraces
let
@noinline child() = stacktrace()
@noinline parent() = child()
@noinline grandparent() = parent()
line_numbers = @__LINE__() .- [3, 2, 1]
stack = grandparent()
# Basic tests.
@assert length(stack) >= 3 "Compiler has unexpectedly inlined functions"
@test [:child, :parent, :grandparent] == [f.func for f in stack[1:3]]
for (line, frame) in zip(line_numbers, stack[1:3])
@test [Symbol(@__FILE__), line] == [frame.file, frame.line]
end
@test [false, false, false] == [f.from_c for f in stack[1:3]]
# Test remove_frames!
stack = StackTraces.remove_frames!(grandparent(), :parent)
@test stack[1] == StackFrame(:grandparent, @__FILE__, line_numbers[3])
stack = StackTraces.remove_frames!(grandparent(), [:child, :something_nonexistent])
@test stack[1:2] == [
StackFrame(:parent, @__FILE__, line_numbers[2]),
StackFrame(:grandparent, @__FILE__, line_numbers[3])
]
b = PipeBuffer()
frame = stack[1]
serialize(b, frame)
frame2 = deserialize(b)
@test frame !== frame2
@test frame == frame2
@test frame.linfo !== nothing
@test frame2.linfo === nothing
end
# Test from_c
let (default, with_c, without_c) = (stacktrace(), stacktrace(true), stacktrace(false))
@test default == without_c
@test length(with_c) > length(without_c)
@test !isempty(filter(frame -> frame.from_c, with_c))
@test isempty(filter(frame -> frame.from_c, without_c))
end
@test StackTraces.lookup(C_NULL) == [StackTraces.UNKNOWN] == StackTraces.lookup(C_NULL + 1) == StackTraces.lookup(C_NULL - 1)
let ct = current_task()
# After a task switch, there should be nothing in catch_backtrace
yieldto(@task yieldto(ct))
@test catch_backtrace() == StackFrame[]
@noinline bad_function() = throw(UndefVarError(:nonexistent))
@noinline function try_stacktrace()
try
bad_function()
catch
return stacktrace()
end
end
@noinline function try_catch()
try
bad_function()
catch
return stacktrace(catch_backtrace())
end
end
line_numbers = @__LINE__() .- [15, 10, 5]
# Test try...catch with stacktrace
@test try_stacktrace()[1] == StackFrame(:try_stacktrace, @__FILE__, line_numbers[2])
# Test try...catch with catch_backtrace
@test try_catch()[1:2] == [
StackFrame(:bad_function, @__FILE__, line_numbers[1]),
StackFrame(:try_catch, @__FILE__, line_numbers[3])
]
end
module inlined_test
using Test
@inline g(x) = (x == 3 && throw("a"); x)
@inline h(x) = (x == 3 && g(x); x)
f(x) = (y = h(x); y)
trace = (try; f(3); catch; stacktrace(catch_backtrace()); end)[1:3]
can_inline = Bool(Base.JLOptions().can_inline)
for (frame, func, inlined) in zip(trace, [g,h,f], (can_inline, can_inline, false))
@test frame.func === typeof(func).name.mt.name
# broken until #50082 can be addressed
mi = isa(frame.linfo, Core.CodeInstance) ? frame.linfo.def : frame.linfo
@test mi.def.module === which(func, (Any,)).module broken=inlined
@test mi.def === which(func, (Any,)) broken=inlined
@test mi.specTypes === Tuple{typeof(func), Int} broken=inlined
# line
@test frame.file === Symbol(@__FILE__)
@test !frame.from_c
@test frame.inlined === inlined
end
end
let src = Meta.lower(Main, quote let x = 1 end end).args[1]::Core.CodeInfo
li = ccall(:jl_method_instance_for_thunk, Ref{Core.MethodInstance}, (Any, Any), src, @__MODULE__)
sf = StackFrame(:a, :b, 3, li, false, false, 0)
repr = string(sf)
@test repr == "Toplevel MethodInstance thunk at b:3"
end
let li = typeof(fieldtype).name.mt.cache.func::Core.MethodInstance,
sf = StackFrame(:a, :b, 3, li, false, false, 0),
repr = string(sf)
@test repr == "fieldtype(...) at b:3"
end
let ctestptr = cglobal((:ctest, "libccalltest")),
ctest = StackTraces.lookup(ctestptr)
@test length(ctest) == 1
@test ctest[1].func === :ctest
@test ctest[1].linfo === nothing
@test ctest[1].from_c
@test ctest[1].pointer === UInt64(ctestptr)
end
# issue #19655
let st = stacktrace(empty!(backtrace()))
# not in a `catch`, so should return an empty StackTrace
@test isempty(st)
@test isa(st, StackTrace)
end
module StackTracesTestMod
unfiltered_stacktrace() = stacktrace()
filtered_stacktrace() = StackTraces.remove_frames!(stacktrace(), StackTracesTestMod)
end
# Test that `removes_frames!` can correctly remove frames from within the module
trace = StackTracesTestMod.unfiltered_stacktrace()
@test occursin("unfiltered_stacktrace", string(trace))
trace = StackTracesTestMod.filtered_stacktrace()
@test !occursin("filtered_stacktrace", string(trace))
let bt, topline = @__LINE__
try
let x = 1
y = 2x
z = 2z-1
end
catch
bt = stacktrace(catch_backtrace())
end
@test bt[1].line == topline+4
end
# Accidental incorrect phi block computation in interpreter
global global_false_bool = false
let bt, topline = @__LINE__
try
let
global read_write_global_bt_test, global_false_bool
if global_false_bool
end
(read_write_global_bt_test, (read_write_global_bt_test=2;))
end
catch
bt = stacktrace(catch_backtrace())
end
@test bt[1].line == topline+6
end
# issue #28990
let bt
try
eval(Expr(:toplevel, LineNumberNode(42, :foo), :(error("blah"))))
catch
bt = stacktrace(catch_backtrace())
end
@test bt[2].line == 42
@test bt[2].file === :foo
end
@noinline f33065(x; b=1.0, a="") = error()
@noinline f33065(x, y; b=1.0, a="", c...) = error()
let bt
try
f33065(0.0f0)
catch
bt = stacktrace(catch_backtrace())
end
@test any(s->startswith(string(s), "f33065(x::Float32; b::Float64, a::String)"), bt)
try
f33065(0.0f0, b=:x)
catch
bt = stacktrace(catch_backtrace())
end
@test any(s->startswith(string(s), "f33065(x::Float32; b::Symbol, a::String)"), bt)
try
f33065(0.0f0, 0.0f0, z=0)
catch
bt = stacktrace(catch_backtrace())
end
@test any(s->startswith(string(s), "f33065(x::Float32, y::Float32; b::Float64, a::String, c::"), bt)
end
struct F49231{a,b,c,d,e,f,g} end
(::F49231)(a,b,c) = error("oops")
@testset "type_depth_limit" begin
tdl = Base.type_depth_limit
str = repr(typeof(view([1, 2, 3], 1:2)))
@test tdl(str, 0, maxdepth = 1) == "SubArray{…}"
@test tdl(str, 0, maxdepth = 2) == "SubArray{$Int, 1, Vector{…}, Tuple{…}, true}"
@test tdl(str, 0, maxdepth = 3) == "SubArray{$Int, 1, Vector{$Int}, Tuple{UnitRange{…}}, true}"
@test tdl(str, 0, maxdepth = 4) == "SubArray{$Int, 1, Vector{$Int}, Tuple{UnitRange{$Int}}, true}"
@test tdl(str, 3) == "SubArray{…}"
@test tdl(str, 44) == "SubArray{…}"
@test tdl(str, 45) == "SubArray{$Int, 1, Vector{…}, Tuple{…}, true}"
@test tdl(str, 59) == "SubArray{$Int, 1, Vector{…}, Tuple{…}, true}"
@test tdl(str, 60) == "SubArray{$Int, 1, Vector{$Int}, Tuple{UnitRange{…}}, true}"
@test tdl(str, 100) == "SubArray{$Int, 1, Vector{$Int}, Tuple{UnitRange{$Int}}, true}"
str = repr(Vector{V} where V<:AbstractVector{T} where T<:Real)
@test tdl(str, 0, maxdepth = 1) == "Vector{…} where {…}"
@test tdl(str, 0, maxdepth = 2) == "Vector{V} where {T<:Real, V<:AbstractVector{…}}"
@test tdl(str, 0, maxdepth = 3) == "Vector{V} where {T<:Real, V<:AbstractVector{T}}"
@test tdl(str, 20) == "Vector{…} where {…}"
@test tdl(str, 46) == "Vector{…} where {…}"
@test tdl(str, 47) == "Vector{V} where {T<:Real, V<:AbstractVector{T}}"
str = "F49231{Vector,Val{('}','}')},Vector{Vector{Vector{Vector}}},Tuple{Int,Int,Int,Int,Int,Int,Int},Int,Int,Int}"
@test tdl(str, 105) == "F49231{Vector,Val{('}','}')},Vector{Vector{Vector{…}}},Tuple{Int,Int,Int,Int,Int,Int,Int},Int,Int,Int}"
@test tdl(str, 85) == "F49231{Vector,Val{…},Vector{…},Tuple{…},Int,Int,Int}"
# Stacktrace
a = UInt8(81):UInt8(160)
b = view(a, 1:64)
c = reshape(b, (8, 8))
d = reinterpret(reshape, Float64, c)
sqrteach(a) = [sqrt(x) for x in a]
st = try
sqrteach(d)
catch e
stacktrace(catch_backtrace())
end
str = sprint(Base.show_backtrace, st, context = (:limit=>true, :stacktrace_types_limited => Ref(false), :color=>true, :displaysize=>(50,105)))
@test contains(str, "[5] \e[0m\e[1mcollect_to!\e[22m\e[0m\e[1m(\e[22m\e[90mdest\e[39m::\e[0mVector\e[90m{…}\e[39m, \e[90mitr\e[39m::\e[0mBase.Generator\e[90m{…}\e[39m, \e[90moffs\e[39m::\e[0m$Int, \e[90mst\e[39m::\e[0mTuple\e[90m{…}\e[39m\e[0m\e[1m)\e[22m\n\e[90m")
st = try
F49231{Vector,Val{'}'},Vector{Vector{Vector{Vector}}},Tuple{Int,Int,Int,Int,Int,Int,Int},Int,Int,Int}()(1,2,3)
catch e
stacktrace(catch_backtrace())
end
str = sprint(Base.show_backtrace, st, context = (:limit=>true, :stacktrace_types_limited => Ref(false), :color=>true, :displaysize=>(50,132)))
@test contains(str, "[2] \e[0m\e[1m(::$F49231{Vector, Val{…}, Vector{…}, NTuple{…}, $Int, $Int, $Int})\e[22m\e[0m\e[1m(\e[22m\e[90ma\e[39m::\e[0m$Int, \e[90mb\e[39m::\e[0m$Int, \e[90mc\e[39m::\e[0m$Int\e[0m\e[1m)\e[22m\n\e[90m")
end
@testset "Base.StackTraces docstrings" begin
@test isempty(Docs.undocumented_names(StackTraces))
end
|
Julia
|
#include "TTree.h"
#include "TFile.h"
#include "TH1.h"
#include "TCanvas.h"
#include "TMath.h"
#include "TRandom3.h"
#include <iostream>
#include <sstream>
/*
* THINGS TO CHECK BEFORE YOU RUN
* 1. Energy
* 2. Position
* 3. Binning
* 4. Title
*/
double ENERGY = 1000.; //energy in MeV (if known)
double XPOS = 13.;
double YPOS = -0.4999;
double CRYStoMM = 50.;
vector<vector<pair<int, double> > >::iterator vv_iter;
vector<pair<int, double> >::iterator v_iter;
// Changes x and y coordinates in crystal units to the crystal ID
int CoordtoID(int x, int y)
{
return(y+17)*35+(x+17);
}
// Gets x position from crystalID
int IDtoX(int crystalID)
{
return crystalID%35-17;
}
//Gets y position from crystalID
int IDtoY(int crystalID)
{
return crystalID/35-17;
}
// Returns distance between two crystals as defined by minimal path
int dist(int crysFID, int crysSID)
{
return TMath::Max(TMath::Abs(IDtoX(crysFID)-IDtoX(crysSID)),
TMath::Abs(IDtoY(crysFID)-IDtoY(crysSID)));
}
int crystalNumOptimized(vector<pair<int, double> > *shower)
{
double energySum(0.);
double next(0.);
int n(0);
vector<pair<int, double> >::iterator a;
for (a=shower->begin(); a!=shower->end(); ++a)
{
if (n<1) {n++; energySum+= a->second;}
else
{
next=a->second;
if (next/(energySum) < .5/a->second)
{return n;}
else
{energySum+= next;
n++;
}
}
}
return n;
}
// Returns the total energy in all crystals of a shower
double clusterDep(vector<pair<int, double> > *shower)
{
double totEnergy(0.);
for (v_iter=shower->begin(); v_iter!=shower->end(); v_iter++)
{totEnergy+=v_iter->second;}
return totEnergy;
}
//checks if a shower is already in the cluster
// ROOT really hates this method.
bool findVector (vector<vector<pair<int, double> > > *detector,
vector<pair<int, double> > shower)
{
// Look through detector
vector<vector<pair<int, double> > >::iterator a;
for (a=detector->begin(); a!=detector->end(); ++a)
{ // remember that crystal ID's are ordered, and touching clusters have
// the same crystalIDs
if ((a->front()).first==(shower.front()).first) return true;
}
return false;
}
bool findPair (vector<vector<pair<int, double> > > *detector)
{
vector<vector<pair<int, double> > >::iterator a;
vector<vector<pair<int, double> > >::iterator b;
vector<pair<int, double> >::iterator c;
vector<pair<int, double> >::iterator d;
for (a=detector->begin(); a!=detector->end()-1; a++)
{
for (b=a+1; b!=detector->end(); b++)
{
for (c=a->begin(); c!=a->end(); c++)
{for (d=b->begin(); d!=b->end(); d++)
if (c->first==d->first) {return true;}
}
}
}
return false;
}
pair<double, pair<double, double> > reconstruct(vector<pair<int, double> > shower)
{
double energy(0.), xPos(0.), yPos(0.);
//looks at crystals in the shower
for (v_iter=shower.begin(); v_iter!=shower.end(); ++v_iter)
{
energy+= v_iter->second;
xPos+=IDtoX(v_iter->first)*v_iter->second;
yPos+=IDtoY(v_iter->first)*v_iter->second;
}
//takes weighted average
xPos/=energy; yPos/=energy;
pair<double, double> position(xPos, yPos);
pair<double, pair<double, double> > photon(energy, position);
return photon;
}
vector<pair<int, double> > generateBumpMap(double bumpEnergy, double address[],
vector<pair<int, double> > shower)
{
vector<pair<int, double> > hitMap;
int ID(0.);
for (v_iter=shower.begin(); v_iter!=shower.end(); v_iter++)
{
if (v_iter->second > bumpEnergy) {
int counter(0);
ID = v_iter->first;
for (int x=-1; x<2; x++) {
for (int y=-1; y<2; y++) {
int ngbrID = CoordtoID(IDtoX(ID)+x, IDtoY(ID)+y);
if (address[ID] > address[ngbrID])
{ counter++;}
else
{}
}
}
if (counter ==8) {hitMap.push_back(*v_iter);}
}
}
return hitMap;
}
pair<int, double> reconstructID (vector<pair<int, double> > shower)
{
pair<double, pair<double, double> > photon = reconstruct(shower);
int xVal = (int) photon.second.first+.5;
int yVal = (int) photon.second.second+.5;
pair<int, double> reconstructed(CoordtoID(xVal, yVal), photon.first);
return reconstructed;
}
//Sorts energies from largest to smallest
vector<pair<int, double> > energySort(vector<pair<int, double> > shower)
{
vector<pair<double, int> > energy;
for (v_iter=shower.begin(); v_iter!=shower.end(); v_iter++)
{
pair<double, int> flipped(v_iter->second, v_iter->first);
energy.push_back(flipped);
}
std::map<double, int> myMap(energy.begin(), energy.end()+1);
map<double, int>::iterator m;
vector<pair<int, double> > sorted;
for (m=myMap.end(); m!=myMap.begin(); --m)
{
pair<int, double> orderHit(m->second, m->first);
sorted.push_back(orderHit);
}
sorted.erase(sorted.begin(), sorted.begin()+1);
return sorted;
}
vector<pair<int,double> > * DFS(pair<int, double> start, double energyThreshLo, vector<pair<int, double> > * shower,
double address[])
{
shower->push_back(start);
for (int x=-1; x<2; x++) {
for (int y=-1; y<2; y++) {
int ngbrID = CoordtoID(IDtoX(start.first)+x, IDtoY(start.first)+y);
double ngbrEn = address[ngbrID];
pair<int, double> ngbr(ngbrID, ngbrEn);
if (ngbrEn>energyThreshLo)
{
vector<int> showerID;
//no method for searching pairs
for (int f=0; f<shower->size(); f++) {showerID.push_back(((*shower)[f]).first);}
if (std::find(showerID.begin(), showerID.end(), ngbrID)!=showerID.end())
{continue;}
// if it has enough energy and has not been counted
else { shower = DFS(ngbr, energyThreshLo, shower,address);}
}
}
}
//put crystals in correct order to make other methods simpler
std::sort(shower->begin(), shower->end());
return shower;
}
void resolutionPlots()
{
cout << "Starting plots..." << endl;
TRandom3* randomGen = new TRandom3(12191982);
TFile* file = new TFile("complete.root");
TTree* tree = (TTree *)file->Get("Signal");
int nEvents = tree->GetEntries();
double addresses[1225] = {};
for (int k=0; k<1225; k++){
std::stringstream ss2;
ss2 << k;
string str = "Crystal_"+ss2.str();
const char* charstr = str.c_str();
tree->SetBranchAddress(charstr, &addresses[k]);
}
double b1, b2;
double energyThreshHi = 5.;
double energyThreshLo = 0.;
TH1D* energyReso = new TH1D("energyReso", "Energy_resolution", 400, -200, 199);
TH1D* posResoX = new TH1D("posResoX", "XPosition_resolution", 80, -40, 39);
TH1D* posResoY = new TH1D("posResoY", "YPosition_resolution", 80, -40, 39);
//iterate through all events
for (int i = 0; i < nEvents; i++)
{
tree->GetEntry(i);
vector<pair<int, double> > geant; //stores all geant data
vector<pair<int, double> > hitMap; //stores all hits above threshold
for(int w = 0; w < 1225; w++)
{
pair<int, double> hit(w, addresses[w]);
geant.push_back(hit);
if (addresses[w] > energyThreshHi)
{ hitMap.push_back(hit);}
}
vector<vector<pair<int, double> > > clusters;
for (v_iter=hitMap.begin(); v_iter!=hitMap.end(); v_iter++)
{
vector<pair<int, double> > shower;
clusters.push_back(*DFS(*v_iter,
energyThreshLo,
&shower,
addresses));
}
vector<vector<pair<int, double> > > detector;
for (vv_iter=clusters.begin(); vv_iter!=clusters.end(); ++vv_iter)
{
if (vv_iter==clusters.begin())
{detector.push_back(*vv_iter);}
else
{
if (!findVector(&detector, *vv_iter))
{detector.push_back(*vv_iter);}
}
}
//unclustering
vector<vector<pair<int, double> > > detector2;
for (vv_iter=detector.begin(); vv_iter!=detector.end(); vv_iter++)
{
vector<pair<int, double> > localMax;
localMax = generateBumpMap(energyThreshHi, addresses, *vv_iter);
if (localMax.size()==0) {continue; }
//First Case: only one bump, treat as one photon.
if (localMax.size() ==1)
{detector2.push_back(*vv_iter);
continue;}
pair<int, double> coe = reconstructID(*vv_iter);
localMax = energySort(localMax);
//Second Case: many bumps, but centered logically, treat as one photon.
if (false)
{detector2.push_back(*vv_iter);
continue;}
//Hopefully optimized for a two pronged event
else
{
for (int q=0; q<2; q++)
{
vector<pair<int, double> > newShower;
int ind = (q+1)%2;
b1 = localMax[q].second;
b2 = localMax[ind].second;
vector<pair<int, double> >::iterator a;
for (a=vv_iter->begin(); a!=vv_iter->end(); ++a)
{
double energy(0.);
int d1 = dist(localMax[q].first, a->first);
int d2 = dist(localMax[ind].first, a->first);
energy = a->second*b1*pow(.1, d1-1)/(b1*pow(.1, d1-1)+b2*pow(.1, d2-1));
pair<int, double> newHit(a->first, energy);
newShower.push_back(newHit);
}
}
}
}
vector<vector<pair<int, double> > > ordered;
int num(0);
for (vv_iter=detector2.begin(); vv_iter!=detector2.end(); ++vv_iter)
{
vector<pair<int, double> > shower = energySort(*vv_iter);
num = crystalNumOptimized(&shower);
if (shower.size()>num)
{shower.erase(shower.begin()+num, shower.end());}
ordered.push_back(shower);
}
pair<double, pair<double, double> > photon;
for (vv_iter=ordered.begin(); vv_iter!=ordered.end(); ++vv_iter)
{
photon = reconstruct(*vv_iter);
energyReso->Fill(photon.first-ENERGY);
posResoX->Fill((photon.second.first-XPOS)*CRYStoMM);
posResoY->Fill((photon.second.second-YPOS)*CRYStoMM);
}
}
energyReso->GetXaxis()->SetTitle("Energy Resolution:= (measrued-expected) in MeV");
posResoX->GetXaxis()->SetTitle("Position Resolution:=(measured-expected) in mm");
posResoY->GetXaxis()->SetTitle("Position Resolution:=(measured-expected) in mm");
if (XPOS-.2<0)
{
energyReso->SetTitle("Energy Resolution (Center)");
posResoX->SetTitle("X Position Resolution (Center)");
posResoY->SetTitle("Y Position Resolution (Center)");
}
else if (YPOS>13.4)
{
energyReso->SetTitle("Energy Resolution (Corner)");
posResoX->SetTitle("X Position Resolution (Corner)");
posResoY->SetTitle("Y Position Resolution (Corner)");
}
else
{
energyReso->SetTitle("Energy Resolution (Side)");
posResoX->SetTitle("X Position Resolution (Side)");
posResoY->SetTitle("Y Position Resolution (Side)");
}
TCanvas* canvas = new TCanvas("canvas", "canvas", 1000, 500);
canvas->Divide(3,1);
canvas->cd(1); energyReso->Draw();
canvas->cd(2); posResoX->Draw();
canvas->cd(3); posResoY->Draw();
}
|
C
|
private let table: [UInt16] = [
0x0000, 0xc0c1, 0xc181, 0x0140, 0xc301, 0x03c0, 0x0280, 0xc241,
0xc601, 0x06c0, 0x0780, 0xc741, 0x0500, 0xc5c1, 0xc481, 0x0440,
0xcc01, 0x0cc0, 0x0d80, 0xcd41, 0x0f00, 0xcfc1, 0xce81, 0x0e40,
0x0a00, 0xcac1, 0xcb81, 0x0b40, 0xc901, 0x09c0, 0x0880, 0xc841,
0xd801, 0x18c0, 0x1980, 0xd941, 0x1b00, 0xdbc1, 0xda81, 0x1a40,
0x1e00, 0xdec1, 0xdf81, 0x1f40, 0xdd01, 0x1dc0, 0x1c80, 0xdc41,
0x1400, 0xd4c1, 0xd581, 0x1540, 0xd701, 0x17c0, 0x1680, 0xd641,
0xd201, 0x12c0, 0x1380, 0xd341, 0x1100, 0xd1c1, 0xd081, 0x1040,
0xf001, 0x30c0, 0x3180, 0xf141, 0x3300, 0xf3c1, 0xf281, 0x3240,
0x3600, 0xf6c1, 0xf781, 0x3740, 0xf501, 0x35c0, 0x3480, 0xf441,
0x3c00, 0xfcc1, 0xfd81, 0x3d40, 0xff01, 0x3fc0, 0x3e80, 0xfe41,
0xfa01, 0x3ac0, 0x3b80, 0xfb41, 0x3900, 0xf9c1, 0xf881, 0x3840,
0x2800, 0xe8c1, 0xe981, 0x2940, 0xeb01, 0x2bc0, 0x2a80, 0xea41,
0xee01, 0x2ec0, 0x2f80, 0xef41, 0x2d00, 0xedc1, 0xec81, 0x2c40,
0xe401, 0x24c0, 0x2580, 0xe541, 0x2700, 0xe7c1, 0xe681, 0x2640,
0x2200, 0xe2c1, 0xe381, 0x2340, 0xe101, 0x21c0, 0x2080, 0xe041,
0xa001, 0x60c0, 0x6180, 0xa141, 0x6300, 0xa3c1, 0xa281, 0x6240,
0x6600, 0xa6c1, 0xa781, 0x6740, 0xa501, 0x65c0, 0x6480, 0xa441,
0x6c00, 0xacc1, 0xad81, 0x6d40, 0xaf01, 0x6fc0, 0x6e80, 0xae41,
0xaa01, 0x6ac0, 0x6b80, 0xab41, 0x6900, 0xa9c1, 0xa881, 0x6840,
0x7800, 0xb8c1, 0xb981, 0x7940, 0xbb01, 0x7bc0, 0x7a80, 0xba41,
0xbe01, 0x7ec0, 0x7f80, 0xbf41, 0x7d00, 0xbdc1, 0xbc81, 0x7c40,
0xb401, 0x74c0, 0x7580, 0xb541, 0x7700, 0xb7c1, 0xb681, 0x7640,
0x7200, 0xb2c1, 0xb381, 0x7340, 0xb101, 0x71c0, 0x7080, 0xb041,
0x5000, 0x90c1, 0x9181, 0x5140, 0x9301, 0x53c0, 0x5280, 0x9241,
0x9601, 0x56c0, 0x5780, 0x9741, 0x5500, 0x95c1, 0x9481, 0x5440,
0x9c01, 0x5cc0, 0x5d80, 0x9d41, 0x5f00, 0x9fc1, 0x9e81, 0x5e40,
0x5a00, 0x9ac1, 0x9b81, 0x5b40, 0x9901, 0x59c0, 0x5880, 0x9841,
0x8801, 0x48c0, 0x4980, 0x8941, 0x4b00, 0x8bc1, 0x8a81, 0x4a40,
0x4e00, 0x8ec1, 0x8f81, 0x4f40, 0x8d01, 0x4dc0, 0x4c80, 0x8c41,
0x4400, 0x84c1, 0x8581, 0x4540, 0x8701, 0x47c0, 0x4680, 0x8641,
0x8201, 0x42c0, 0x4380, 0x8341, 0x4100, 0x81c1, 0x8081, 0x4040,
]
func crc16(input: UInt8, crc: UInt16) -> UInt16 {
let index = Int(UInt16(crc & 0xff) ^ UInt16(input))
let t1 = UInt16(crc >> 8)
let t2: UInt16 = table[index]
return t1 ^ t2
}
func crc16(input: [UInt8]) -> UInt16 {
var crc: UInt16 = 0
for byte in input {
crc = crc16(input: byte, crc: crc)
}
return crc
}
|
Swift
|
[Version]
Major=7
Minor=0
[Main]
Type=temporal
CalculateFlow=yes
CalculateScalar=no
Equations=incompressible
TermAdvection=convective
TermViscous=explicit
TermDiffusion=explicit
SpaceOrder2=CompactDirect6
TimeOrder=RungeKuttaExplicit4
TimeStep=-0.016000
TimeCFL=1.20000
[Iteration]
Start=0
End=10
Restart=10
Statistics=5
IteraLog=1
ObsLog=Ekman
[Control]
FlowLimit=no
ScalLimit=yes
[Parameters]
Reynolds=25000
Schmidt=1.0
Rossby=1.0
Froude=0.01
[ViscChange]
Time=0.01
[Grid]
Imax=128
Imax(*)=64
Jmax=96
Jmax(*)=96
Kmax=128
Kmax(*)=64
XUniform=yes
YUniform=no
ZUniform=yes
XPeriodic=yes
YPeriodic=no
ZPeriodic=yes
[Flow]
VelocityX=0.0
VelocityY=0.0
VelocityZ=0.0
Density=1.0
ProfileVelocityX=Ekman
YMeanRelativeVelocityX=0.0
ThickVelocityX=0.004
DeltaVelocityX=1.0
[Scalar]
ProfileScalar1=Erf
ThickScalar1=0.0006
DeltaScalar1=2.0
YMeanRelativeScalar1=0.0
MeanScalar1=1.0
[Gravity]
Type=Linear
Parameters=0.0
Vector=0.0,0.0,0.0
[Rotation]
Type=normalized
[BoundaryConditions]
VelocityJmin=noslip
VelocityJmax=freeslip
Scalar1Jmin=dirichlet
Scalar1Jmax=neumann
[BufferZone]
Type=none
LoadBuffer=no
PointsUJmax=20
PointsSJmax=20
ParametersU=1.57,2.0
ParametersS=1.57,2.0
[Statistics]
Averages=yes
Spectrums=no
Correlations=no
Pdfs=no
Intermittency=no
[IniFields]
Velocity=PotentialBroadband
Scalar=None
ForceDilatation=no
ProfileIniK=GaussianSurface
YMeanIniK=0.0
ThickIniK=0.004
NormalizeK=0.00015
[Broadband]
f0=19.89
Sigma=3.32
Spectrum=gaussian
Distribution=gaussian
[IniGridOx]
periodic=yes
segments=1
points_1=129
scales_1=0.135
opts_1=uniform
[IniGridOy]
periodic=no
segments=1
points_1=96
scales_1=0.201972656
opts_1=tanh
vals_1=0.21,6.0,0.0168, 0,-0.75,-0.06
[IniGridOz]
periodic=yes
segments=1
points_1=129
scales_1=0.135
opts_1=uniform
#[PostProcessing]
Files=0
ParamVisuals=0,1,2,3,9,11,14
ParamSpectra=2
ParamTransform=3
ParamFFormat=1
ParamPdfs=1
Subdomain=1,2048,1,192,1,2048
Partition=0
Format=ensight
|
INI
|
@echo off
wcl386 -zq -l=stub32x lfb.asm
sc -bs -q lfb
del *.obj
|
Batchfile
|
TOP=../../
include $(TOP)/mk/boilerplate.mk
include $(TOP)/mk/test.mk
|
Makefile
|
#' One stage joint meta function
#'
#' Function to allow a one stage joint model (data from all studies analysed in
#' one model) to be fitted to data from multiple studies. The function allows
#' one longitudinal and one time-to-event outcome, and can accommodate baseline
#' hazard stratified or not stratified by study, as well as random effects at
#' the individual level and the study level. Currently only zero mean random
#' effects only proportional association supported - see Wulfsohn and Tsiatis
#' 1997
#'
#' @param data an object of class jointdata containing the variables named in
#' the model formulae
#' @param long.formula a formula object with the response varaible, and the
#' covariates to include in the longitudinal sub-model
#' @param long.rand.ind a vector of character strings to indicate what variables
#' to assign individual level random effects to. A maximum of three
#' individual level random effects can be assigned. To assign a random
#' intercept include 'int' in the vector. To not include an individual level
#' random intercept include 'noint' in the vector. For example to fit a model
#' with individual level random intercept and random slope set
#' \code{long.rand.ind = c('int', 'time')}, where \code{'time'} is the
#' longitudinal time variable in the \code{data}.
#' @param long.rand.stud a vector of character strings to indicate what
#' variables to assign study level random effects to. If no study level
#' random effects then this either not specified in function call or set to
#' \code{NULL}. If a study level random intercept is required, include the
#' name of the study membership variable for example \code{long.rand.stud =
#' 'study'}.
#' @param sharingstrct currently must be set to \code{'randprop'}. This gives a
#' model that shares the zero mean random effects (at both individual and
#' study level if specified) between the sub-models. Separate association
#' parameters are calculated for the linear combination of random effects at
#' each level. There are plans to expand to more sharing structures in the
#' future.
#' @param surv.formula a formula object with the survival time, censoring
#' indicator and the covariates to include in the survival sub-model. The
#' response must be a survival object as returned by the
#' \code{\link[survival]{Surv}} function.
#' @param gpt the number of quadrature points across which the integration with
#' respect to the random effects will be performed. If random effects are
#' specified at both the individual and the study level, the same number of
#' quadrature points is used in both cases. Defaults to \code{gpt = 5}.
#' @param lgpt the number of quadrature points which the log-likelihood is
#' evaluated over following a model fit. This defaults to \code{lgpt = 7}.
#' @param max.it the maximum number of iterations of the EM algorithm that the
#' function will perform. Defaults to \code{max.it = 350} although more
#' iterations could be required for large complex datasets.
#' @param tol the tolerance level used to determine convergence in the EM
#' algorithm. Defaults to \code{tol = 0.001}.
#' @param study.name a character string denoting the name of the variable in the
#' baseline dataset in \code{data} holding study membership, for example
#' \code{study.name = 'study'}.
#' @param strat logical value: if \code{TRUE} then the survival sub-model is
#' calculated with a baseline stratified by study. Otherwise baseline is
#' unstratified
#' @param longsep logical value: if \code{TRUE} then parameter estimates, model
#' fit and the log-likelihood from a separate linear mixed model analysis of
#' the longitudinal data are returned (see the \code{\link[lme4]{lmer}}
#' function). The separate longitudinal model fit has the same specification
#' as the longitudinal sub-model of the joint model.
#' @param survsep logical value: if \code{TRUE} then parameter estimates, model
#' fit and log-likelihood from a separate analysis of the survival data using
#' the Cox Proportional Hazards model are returned (see
#' \code{\link[survival]{coxph}} function for more details). This survival
#' fit has the same specification (apart from the association structure) as
#' the survival sub-model in the joint model.
#' @param bootrun logical value: if \code{TRUE} then the log-likelihood for the
#' model is not calculated. This option is available so that when
#' bootstrapping to obtain standard errors, as the log-likelihood is not
#' needed, it is not calculated, thus speeding up the bootstrapping process.
#' @param print.detail logical value: if \code{TRUE} then details of the
#' parameter estimates at each iteration of the EM algorithm are printed to
#' the console.
#'
#' @section Details: The \code{jointmeta1} function fits a one stage joint model
#' to survival and longitudinal data from multiple studies. This model is an
#' extension of the model proposed by Wulfsohn and Tsiatis (1997). The model
#' must contain at least one individual level random effect (specified using
#' the \code{long.rand.ind} argument). The model can also contain study level
#' random effects (specified using the \code{long.rand.stud} argument), which
#' can differ from the individual level random effects. The maximum number of
#' random effects that can be specified at each level is three. Note that the
#' fitting and bootstrapping time increases as the number of included random
#' effects increases. The model can also include a baseline hazard stratified
#' by study, or can utilise a common baseline across the studies in the
#' dataset. Interaction terms can be specified in either the longitudinal or
#' the survival sub-model.
#'
#' The longitudinal sub-model is a mixed effects model. If both individual
#' level and study level random effects are included in the function call,
#' then the sub-model has the following format:
#'
#' \deqn{Y_{kij} = X_{1kij}\beta_{1} + Z^{(2)}_{1kij}b^{(2)}_{ki} +
#' Z^{(3)}_{1kij}b^{(3)}_{k} + \epsilon_{kij}}
#'
#' Otherwise, if only individual level random effects are included in the
#' function call, then the longitudinal sub-model has the following format:
#'
#' \deqn{Y_{kij} = X_{1kij}\beta_{1} + Z^{(2)}_{1kij}b^{(2)}_{ki} +
#' \epsilon_{kij}}
#'
#' In the above equation, \eqn{Y} represents the longitudinal outcome and
#' \eqn{X_1} represents the design matrix for the longitudinal fixed effects.
#' The subscript 1 is used to distinguish between items from the longitudinal
#' sub-model and items from the survival sub-model (which contain a subscript
#' 2). The design matrices for random effects are represented using \eqn{Z},
#' fixed effect coefficients are represented by \eqn{\beta}, random effects by
#' \eqn{b} and the measurement error by \eqn{\epsilon}. Study membership is
#' represented by the subscript \eqn{k} whilst individuals are identified by
#' \eqn{i} and time points at which they are measured by \eqn{j}. The
#' longitudinal outcome is assumed continuous.
#'
#' Currently this function only supports one linking structure between the
#' sub-models, namely a random effects only proportional sharing structure. In
#' this structure, the zero mean random effects from the longitudinal
#' sub-model are inserted into the survival sub-model, with a common
#' association parameter for each level of random effects. Therefore the
#' survival sub-model (for a case without baseline stratified by study) takes
#' the following format:
#'
#' \deqn{\lambda_{ki}(t) = \lambda_{0}(t)exp(X_{2ki}\beta_{2} +
#' \alpha^{(2)}(Z^{(2)}_{1ki}b^{(2)}_{ki}) +
#' \alpha^{(3)}(Z^{(3)}_{1ki}b^{(3)}_{k})) }
#'
#' Otherwise, if only individual level random effects are included in the
#' function call, this reduces to:
#'
#' \deqn{\lambda_{ki}(t) = \lambda_{0}(t)exp(X_{2ki}\beta_{2} +
#' \alpha^{(2)}(Z^{(2)}_{1ki}b^{(2)}_{ki}) }
#'
#' In the above equation, \eqn{\lambda_{ki}(t)} represents the survival time
#' of the individual \eqn{i} in study \eqn{k}, and \eqn{\lambda_{0}(t)}
#' represents the baseline hazard. If a stratified baseline hazard were
#' specified this would be replaced by \eqn{\lambda_{0k}(t)}. The design
#' matrix for the fixed effects in the survival sub-model is represented by
#' \eqn{X_{2ki}}, with fixed effect coefficients represented by
#' \eqn{\beta_{2}}. Association parameters quantifying the link between the
#' sub-models are represented by \eqn{\alpha} terms.
#'
#' The model is fitted using an EM algorithm, starting values for which are
#' extracted from initial separate longitudinal and survival fits. Pseudo
#' adaptive Gauss - Hermite quadrature is used to evaluate functions of the
#' random effects in the EM algorithm, see Rizopoulos 2012.
#'
#'
#' @return An object of class jointmeta1 See \code{\link{jointmeta1.object}}
#'
#' @export
#'
#' @import survival stats
#'
#' @references Wulfsohn, M.S. and A.A. Tsiatis, A Joint Model for Survival and
#' Longitudinal Data Measured with Error. 1997, International Biometric
#' Society. p. 330
#'
#' Rizopoulos, D. (2012) Fast fitting of joint models for longitudinal and
#' event time data using a pseudo-adaptive Gaussian quadrature rule.
#' Computational Statistics & Data Analysis 56 (3) p.491-501
#'
#'
#'
#'
#' @examples
#' #change example data to jointdata object
#' jointdat2<-tojointdata(longitudinal = simdat2$longitudinal,
#' survival = simdat2$survival, id = 'id',longoutcome = 'Y',
#' timevarying = c('time','ltime'),
#' survtime = 'survtime', cens = 'cens',time = 'time')
#'
#' #set variables to factors
#' jointdat2$baseline$study <- as.factor(jointdat2$baseline$study)
#' jointdat2$baseline$treat <- as.factor(jointdat2$baseline$treat)
#'
#' #fit multi-study joint model
#' #note: for demonstration purposes only - max.it restricted to 5
#' #model would need more iterations to truely converge
#' onestagefit<-jointmeta1(data = jointdat2, long.formula = Y ~ 1 + time +
#' + treat + study, long.rand.ind = c('int', 'time'),
#' long.rand.stud = c('treat'),
#' sharingstrct = 'randprop',
#' surv.formula = Surv(survtime, cens) ~ treat,
#' study.name = 'study', strat = TRUE, max.it=5)
#'
jointmeta1 <- function(data, long.formula, long.rand.ind, long.rand.stud = NULL,
sharingstrct = c("randprop", "randsep", "value", "slope", "valandslope"),
surv.formula, gpt, lgpt, max.it, tol, study.name, strat = F, longsep = F,
survsep = F, bootrun = F, print.detail = F) {
if (class(data) != "jointdata") {
stop("Data should be supplied in jointdata format -
run tojointdata function if not in jointfdataformat")
}
if (sharingstrct != "randprop") {
stop("Currently only randprop sharing structure supported")
}
Call <- match.call()
id.name <- data$subj.col
time.long <- data$time.col
long.formula <- as.formula(long.formula)
long.formula.orig <- long.formula
surv.formula <- as.formula(surv.formula)
if (missing(gpt)) {
gpt <- 5
}
if (missing(lgpt)) {
lgpt <- 7
}
if (missing(max.it)) {
max.it <- 350
}
if (missing(tol)) {
tol <- 0.001
}
if (missing(bootrun)) {
bootrun <- FALSE
}
if (missing(sharingstrct)) {
stop("No sharing structure specified")
}
if ((sharingstrct %in% c("randprop", "randsep", "value", "slope", "valandslope")) ==
FALSE) {
stop("Invalid sharing structure specified")
}
if (sharingstrct != "randprop") {
stop("Currently jointmeta only supports randprop sharing structures")
}
if (missing(long.rand.ind) == TRUE) {
stop("Please specify at least one random effect
at the individual level in long.rand.ind")
}
if (length(long.rand.ind) == 0) {
stop("Please specify at least one random effect
at the individual level in long.rand.ind")
}
if (length(which(("noint" == long.rand.ind) == F)) == 0) {
stop("Please specify at least one random effect
at the individual level in long.rand.ind")
}
if (("int" %in% long.rand.ind) == TRUE) {
if (("noint" %in% long.rand.ind) == TRUE) {
stop("Both the option for no random intercept (noint)
and random intercept (int) specified in long.rand.ind")
}
}
if (("int" %in% long.rand.ind) == TRUE) {
long.rand.ind[which((long.rand.ind %in% "int") == TRUE)] <- "(Intercept)"
if (which(long.rand.ind %in% "(Intercept)") != 1) {
long.rand.ind <- long.rand.ind[-which(long.rand.ind %in% "(Intercept)")]
long.rand.ind <- c("(Intercept)", long.rand.ind)
}
}
if (missing(study.name)) {
stop("Please supply name of study indicator variable to
\"study.name\" in the function call")
}
if (is.null(long.rand.stud) == F) {
if (study.name %in% long.rand.stud) {
if (which(long.rand.stud %in% study.name) != 1) {
long.rand.stud <- long.rand.stud[-which(long.rand.stud %in%
study.name)]
long.rand.stud <- c(study.name, long.rand.stud)
}
}
}
studies <- as.character(unique(data$baseline[[study.name]]))
numstudies <- length(studies)
if (any(sapply(data$baseline, "class") == "factor")) {
data$baseline <- droplevels(data$baseline)
}
longdat2 <- merge(data$longitudinal, data$baseline, by = id.name, sort = FALSE)
long.frame <- model.frame(long.formula, data = longdat2, na.action = na.pass)
long.cov <- model.matrix(long.formula, long.frame)
long.terms <- terms(long.formula, data = longdat2)
long.names <- colnames(long.cov)
rll <- !is.na(data$longitudinal[[names(long.frame[1])]])
for (i in 1:length(rll)) {
if (length(which(is.na(long.cov[i, ]))) > 0) {
rll[i] <- FALSE
}
}
q <- 0
for (count in 1:length(long.rand.ind)) {
if (long.rand.ind[count] != "noint") {
q <- q + 1
if (length(which(grepl(long.rand.ind[count], colnames(long.cov)) ==
TRUE)) == 0) {
if (grepl(".", long.rand.ind[count])) {
temp <- unlist(strsplit(long.rand.ind[count], "."))
combs <- expand.grid(1:length(temp), 1:length(temp))
present <- FALSE
for (i in 1:nrow(combs)) {
if (!(combs[i, 1] == combs[i, 2])) {
if (length(which(grepl(paste(temp[combs[i, 1]], temp[combs[i,
2]], sep = "."), colnames(long.cov))) == TRUE) >
0) {
present <- TRUE
long.rand.ind[count] <- paste(temp[combs[i, 1]],
temp[combs[i, 2]], sep = ".")
}
}
}
}
if (!present) {
stop("Individual level random effects included
in model with no corresponding fixed effect")
}
}
}
}
if (q > 3) {
stop("Model only supports maximum of three individual level random effects")
}
if (is.null(long.rand.stud) == FALSE) {
r <- 0
for (count in 1:length(long.rand.stud)) {
if (long.rand.stud[count] != study.name) {
r <- r + 1
if (length(which(grepl(long.rand.stud[count], colnames(long.cov)) ==
TRUE)) == 0) {
if (grepl(".", long.rand.stud[count])) {
temp <- unlist(strsplit(long.rand.stud[count], "."))
combs <- expand.grid(1:length(temp), 1:length(temp))
present <- FALSE
for (i in 1:nrow(combs)) {
if (!(combs[i, 1] == combs[i, 2])) {
if (length(which(grepl(paste(temp[combs[i, 1]],
temp[combs[i, 2]], sep = "."), colnames(long.cov))) ==
TRUE) > 0) {
present <- TRUE
long.rand.stud[count] <- paste(temp[combs[i,
1]], temp[combs[i, 2]], sep = ".")
}
}
}
}
if (!present) {
stop("Study level random effects included
in model with no corresponding fixed effect")
}
}
} else {
r <- r + 1
}
}
if (r > 3) {
stop("Model only supports maximum of three study level random effects")
}
} else {
r <- NULL
}
longdat <- cbind(data$longitudinal[[id.name]][rll], long.frame[, 1][rll],
data$longitudinal[[time.long]][rll], longdat2[[study.name]][rll],
long.cov[rll, ])
longdat <- as.data.frame(longdat)
missingids <- unique(data$longitudinal[[id.name]][!rll])
names(longdat) <- c(id.name, names(long.frame)[1], time.long, study.name,
long.names)
long.formula <- as.formula(paste(as.character(long.formula)[2], "~",
paste(names(longdat)[5:ncol(longdat)], collapse = " + "), sep = ""))
p1 <- length(5:ncol(longdat))
notinteractionterms <- names(longdat[, 5:ncol(longdat)])[!(grepl(":",
names(longdat[, 5:ncol(longdat)])))]
for (count in 1:length(long.rand.ind)) {
if (length(grep(paste("^", long.rand.ind[count], "$", sep = ""),
notinteractionterms)) > 0) {
long.rand.ind[count] <- notinteractionterms[grep(paste("^",
long.rand.ind[count], "$", sep = ""), notinteractionterms)]
} else if (length(grep(paste("^", long.rand.ind[count], "$", sep = ""),
notinteractionterms)) == 0) {
if (long.rand.ind[count] %in% colnames(data$baseline)) {
if (class(data$baseline[, which(colnames(data$baseline) ==
long.rand.ind[count])]) == "factor") {
formtemp <- as.formula(paste("~", colnames(data$baseline)[which(colnames(data$baseline) ==
long.rand.ind[count])]))
matrixtemp <- model.matrix(formtemp, data$baseline)
long.rand.ind[count] <- colnames(matrixtemp)[2:ncol(matrixtemp)]
}
} else if (long.rand.ind[count] %in% colnames(data$longitudinal)) {
if (class(data$longitudinal[, which(colnames(data$longitudinal) ==
long.rand.ind[count])]) == "factor") {
formtemp <- as.formula(paste("~", colnames(data$longitudinal)[which(colnames(data$longitudinal) ==
long.rand.ind[count])]))
matrixtemp <- model.matrix(formtemp, data$longitudinal)
long.rand.ind[count] <- colnames(matrixtemp)[2:ncol(matrixtemp)]
}
}
}
}
q <- length(long.rand.ind)
if (q > 3) {
stop("Model only supports maximum of three individual level random effects")
}
if (is.null(long.rand.stud) == FALSE) {
for (count in 1:length(long.rand.stud)) {
if (long.rand.stud[count] != study.name) {
if (length(grep(paste("^", long.rand.stud[count], "$",
sep = ""), notinteractionterms)) > 0) {
long.rand.stud[count] <- notinteractionterms[grep(paste("^",
long.rand.stud[count], "$", sep = ""), notinteractionterms)]
} else if (length(grep(paste("^", long.rand.stud[count],
"$", sep = ""), notinteractionterms)) == 0) {
if (long.rand.stud[count] %in% colnames(data$baseline)) {
if (class(data$baseline[, which(colnames(data$baseline) ==
long.rand.stud[count])]) == "factor") {
formtemp <- as.formula(paste("~", colnames(data$baseline)[which(colnames(data$baseline) ==
long.rand.stud[count])]))
matrixtemp <- model.matrix(formtemp, data$baseline)
long.rand.stud[count] <- colnames(matrixtemp)[2:ncol(matrixtemp)]
}
} else if (long.rand.stud[count] %in% colnames(data$longitudinal)) {
if (class(data$longitudinal[, which(colnames(data$longitudinal) ==
long.rand.stud[count])]) == "factor") {
formtemp <- as.formula(paste("~", colnames(data$longitudinal)[which(colnames(data$longitudinal) ==
long.rand.stud[count])]))
matrixtemp <- model.matrix(formtemp, data$longitudinal)
long.rand.stud[count] <- colnames(matrixtemp)[2:ncol(matrixtemp)]
}
}
}
}
}
r <- length(long.rand.stud)
if (r > 3) {
stop("Model only supports maximum of three study level random effects")
}
}
surv.frame <- model.frame(surv.formula, data = cbind(data$survival,
data$baseline))
srv <- model.extract(surv.frame, "response")
surv.terms <- terms(surv.formula, data = cbind(data$survival, data$baseline))
attr(surv.terms, "intercept") <- 1
surv.cov <- model.matrix(surv.terms, data = cbind(data$survival, data$baseline))
namestemp <- colnames(surv.cov)
surv.cov <- as.matrix(surv.cov[, -1])
colnames(surv.cov) <- namestemp[-1]
rss <- as.integer(row.names(surv.cov))
survdat <- cbind(data$survival[[id.name]][rss], srv[rss, 1], srv[rss,
2], data$baseline[[study.name]][rss], surv.cov)
survdat <- as.data.frame(survdat)
names(survdat) <- c(id.name, surv.formula[2][[1]][[2]], surv.formula[2][[1]][[3]],
study.name, colnames(surv.cov))
if (dim(survdat)[2] > 4) {
survdat[, 5:dim(survdat)[2]] <- scale(survdat[, 5:dim(survdat)[2]],
scale = FALSE)
}
survdat2 <- data.frame(data$survival[[id.name]][rss], srv[rss, 1],
srv[rss, 2], data$baseline[[study.name]][rss], surv.frame[, -1])
if (ncol(survdat) > 4) {
surv.formula <- as.formula(paste(as.character(surv.formula)[2],
"~", paste(names(survdat)[5:ncol(survdat)], collapse = " + "),
sep = ""))
names(survdat2) <- c(id.name, surv.formula[2][[1]][[2]], surv.formula[2][[1]][[3]],
study.name, colnames(surv.frame)[2:ncol(surv.frame)])
} else {
surv.formula <- as.formula(paste(as.character(surv.formula)[2],
"~ 1", sep = ""))
names(survdat2) <- c(id.name, surv.formula[2][[1]][[2]], surv.formula[2][[1]][[3]],
study.name, colnames(surv.cov))
}
survdat[, 4] <- survdat2[, 4]
if (ncol(survdat) > 4) {
p2 <- length(5:ncol(survdat))
} else {
p2 <- 0
}
rll2 <- rep(TRUE, nrow(survdat2))
for (i in 1:length(rll2)) {
if (length(which(is.na(survdat2[i, ]))) > 0) {
rll2[i] <- FALSE
}
}
if (length(which(rll2 == FALSE)) > 0) {
missingids <- c(missingids, survdat2[!rll2, 1])
}
if (length(missingids) > 0) {
survdat <- survdat[!(survdat[, 1] %in% missingids), ]
survdat2 <- survdat2[!(survdat[, 1] %in% missingids), ]
longdat2 <- longdat2[!(longdat2[, 1] %in% missingids), ]
}
sorted <- sortDat(longdat, survdat, longdat2, survdat2)
longdat <- as.data.frame(sorted$long.s)
survdat <- as.data.frame(sorted$surv.s)
longdat2 <- as.data.frame(sorted$long.s2)
survdat2 <- as.data.frame(sorted$surv.s2)
if (is.null(long.rand.stud)) {
ldaests <- longst(longdat = longdat, long.formula.orig = long.formula,
long.rand.ind = long.rand.ind, longdat2 = longdat2, id.name = id.name,
study.name = study.name, studies = studies)
} else {
ldaests <- longst(longdat = longdat, long.formula.orig = long.formula,
long.rand.ind = long.rand.ind, long.rand.stud = long.rand.stud,
longdat2 = longdat2, id.name = id.name, study.name = study.name,
studies = studies)
}
if (strat) {
survests <- survst(survdat = survdat, surv.formula = surv.formula,
survdat2 = survdat2, strat = strat, study.name = study.name)
} else {
survests <- survst(survdat = survdat, surv.formula = surv.formula,
survdat2 = survdat2, strat = strat, study.name = study.name)
}
sep.ll <- ldaests$log.like + survests$log.like[2]
sep.loglik <- list(seplhood = sep.ll, sepy = ldaests$log.like, sepn = survests$log.like[2])
paraests <- c(ldaests, survests)
if (sharingstrct == "randprop") {
if (bootrun == FALSE) {
message("Running EM algorithm...")
}
jointfit <- EMalgRandprop(data = data, longdat = longdat, survdat = survdat,
long.rand.ind = long.rand.ind, long.rand.stud = long.rand.stud,
id.name = id.name, study.name = study.name, gpt = gpt, max.it = max.it,
tol = tol, time.long = time.long, surv.formula = surv.formula,
long.formula = long.formula, long.formula.orig = long.formula.orig,
paraests = paraests, studies = studies, p1 = p1, p2 = p2, strat = strat,
print.detail = print.detail, bootrun = bootrun, q = q, r = r)
likeests <- c(jointfit, list(rs = survests$rs, sf = survests$sf))
beta1 <- jointfit$beta1
rownames(beta1) <- rownames(paraests$beta1)
if (p2 > 0) {
beta2 <- jointfit$beta2[1:p2, ]
names(beta2) <- names(paraests$beta2)
} else {
beta2 <- NULL
}
fixed <- list(longitudinal = beta1, survival = beta2)
D <- jointfit$D
random_ind <- jointfit$random2
ids.bystudy <- lapply(1:numstudies, function(u) {
survdat[which(survdat[, 4] == studies[u]), 1]
})
random_ind <- lapply(1:numstudies, function(u) {
randtemp <- random_ind[[u]]
colnames(randtemp) <- paste("b2_", 0:(ncol(randtemp) - 1),
sep = "")
rownames(randtemp) <- ids.bystudy[[u]]
randtemp
})
random <- list(random_ind = random_ind)
if ("(Intercept)" %in% long.rand.ind) {
long.rand.ind2 <- long.rand.ind
long.rand.ind2[which(long.rand.ind2 == "(Intercept)")] <- "1"
long.rand.ind.form <- paste(long.rand.ind2, collapse = " + ")
}
if ("noint" %in% long.rand.ind) {
long.rand.ind2 <- long.rand.ind[-which(long.rand.ind == "noint")]
long.rand.ind.form <- paste("-1", long.rand.ind2, sep = " + ")
}
n.bystudy <- jointfit$n.bystudy
if (is.null(long.rand.stud) == FALSE) {
A <- jointfit$A
latent <- jointfit$beta2[(p2 + 1):(p2 + 2), ]
names(latent) <- c(paste("gamma_ind_", 0, sep = ""), paste("gamma_stud_",
0, sep = ""))
random_stud <- jointfit$random3
colnames(random_stud) <- paste("b3_", 0:(ncol(random_stud) -
1), sep = "")
rownames(random_stud) <- studies
random$random_stud <- random_stud
randstart.stud.l <- paraests$randstart.stud
randstart.stud.cov.l <- paraests$randstart.stud.cov
if (study.name %in% long.rand.stud) {
long.rand.stud2 <- long.rand.stud
long.rand.stud2[which(long.rand.stud2 == study.name)] <- "1"
long.rand.stud.form <- paste(long.rand.stud2, collapse = " + ")
} else {
long.rand.stud.form <- paste("-1", paste(long.rand.stud,
collapse = " + "), sep = " + ")
}
} else {
latent <- jointfit$beta2[(p2 + 1), ]
names(latent) <- paste("gamma_ind_", 0, sep = "")
randstart.stud.l <- NULL
randstart.stud.cov.l <- NULL
}
coefficients <- list(fixed = fixed, random = random, latent = latent)
if (bootrun == FALSE) {
message("Calculating log-likelihood...")
jointll <- jlike(data = data, longdat = longdat, survdat = survdat,
q = q, likeests = likeests, lgpt = lgpt, studies = studies,
p1 = p1, p2 = p2, long.rand.ind = long.rand.ind, randstart.ind = paraests$randstart.ind,
randstart.ind.cov = paraests$randstart.ind.cov, r = r,
long.rand.stud = long.rand.stud, randstart.stud = randstart.stud.l,
randstart.stud.cov = randstart.stud.cov.l, strat = strat,
study.name = study.name, id.name = id.name)
numpara <- p1 + p2 + (q^2) + 2
if (!is.null(long.rand.stud)) {
numpara <- numpara + (r^2) + 1
}
AIC <- (2 * numpara) - (2 * jointll$log.like)
loglik <- list(jointlhood = jointll$log.like, jointy = jointll$longlog.like,
jointn = jointll$survlog.like)
} else {
loglik <- "Not Calculated"
AIC <- "Not Calculated"
}
sepests <- list(longests = sep(ldaests, longsep), survests = sep(survests,
survsep))
formulae <- list(lformula = long.formula, sformula = surv.formula,
rand_ind_formula = as.formula(paste("~", long.rand.ind.form,
sep = "")))
rand_cov <- list(D = jointfit$D)
if (is.null(long.rand.stud) == FALSE) {
formulae$rand_stud_formula <- as.formula(paste("~", long.rand.stud.form,
sep = ""))
rand_cov$A <- jointfit$A
}
nobs <- table(longdat[[study.name]])
names(nobs) <- studies
results <- list(coefficients = coefficients, sigma.e = jointfit$sigma.e,
rand_cov = rand_cov, hazard = jointfit$haz, loglik = loglik,
numIter = jointfit$iters, convergence = jointfit$conv, sharingstrct = sharingstrct,
sepests = sepests, sep.loglik = sep.loglik, data = data, Call = Call,
numstudies = numstudies, n.bystudy = n.bystudy,
missingids = missingids, nobs = nobs, AIC = AIC)
class(results) <- "jointmeta1"
results
}
}
|
R
|
# Be sure to restart your server when you modify this file.
Mrug::Application.config.session_store :cookie_store, key: '_mrug_session'
|
Ruby
|
`timescale 1ns / 1ps
////////////////////////////////////////////////////////////////////////////////
// Company:
// Engineer:
//
// Create Date: 16:09:39 02/15/2016
// Design Name: rca
// Module Name: E:/FPGA/Assignment8feb/rca_tester.v
// Project Name: Assignment8feb
// Target Device:
// Tool versions:
// Description:
//
// Verilog Test Fixture created by ISE for module: rca
//
// Dependencies:
//
// Revision:
// Revision 0.01 - File Created
// Additional Comments:
//
////////////////////////////////////////////////////////////////////////////////
module rca_tester;
// Inputs
reg [7:0] a;
reg [7:0] b;
reg cin;
integer i;
// Outputs
wire [7:0] sum;
wire cout;
// Instantiate the Unit Under Test (UUT)
rca uut (
.a(a),
.b(b),
.cin(cin),
.sum(sum),
.cout(cout)
);
always@(a or b) begin
$monitor("a = %b, b = %b, cin = %b,cout = %b , sum = %b", a, b, cin, cout, sum);
end
initial begin
// Initialize Inputs
a = 0;
b = 0;
cin = 0;
end
initial begin
$monitor("a = %b, b = %b, cin = %b,cout = %b , sum = %b", a, b, cin, cout, sum);
end
always@(a or b)
begin
for(i = 0;i<256*256;i=i+1)
#1{a,b} = i;
#10 $stop;
end
/*#10 a = $random;b = $random;
#10 a = $random;b = $random;
#10 a = $random;b = $random;
#10 a = $random;b = $random;
#10 a = $random;b = $random;
#10 a = $random;b = $random;
#10 a = $random;b = $random;
#10 a = $random;b = $random;
#10 a = $random;b = $random;
#10 a = $random;b = $random;
*/
// Wait 100 ns for global reset to finish
// Add stimulus here
endmodule
|
Coq
|
FROM balenalib/aarch64-ubuntu:jammy-run
LABEL io.balena.device-type="forecr-dsb-ornx-orin-nano-8gb"
RUN echo "deb https://repo.download.nvidia.com/jetson/common r36.3 main" >> /etc/apt/sources.list.d/nvidia.list \
&& echo "deb https://repo.download.nvidia.com/jetson/t234 r36.3 main" >> /etc/apt/sources.list.d/nvidia.list \
&& apt-key adv --fetch-key http://repo.download.nvidia.com/jetson/jetson-ota-public.asc \
&& mkdir -p /opt/nvidia/l4t-packages/ && touch /opt/nvidia/l4t-packages/.nv-l4t-disable-boot-fw-update-in-preinstall
RUN apt-get update && apt-get install -y --no-install-recommends \
less \
kmod \
nano \
net-tools \
ifupdown \
iputils-ping \
i2c-tools \
usbutils \
&& rm -rf /var/lib/apt/lists/*
RUN [ ! -d /.balena/messages ] && mkdir -p /.balena/messages; echo 'Here are a few details about this Docker image (For more information please visit https://www.balena.io/docs/reference/base-images/base-images/): \nArchitecture: ARM v8 \nOS: Ubuntu jammy \nVariant: run variant \nDefault variable(s): UDEV=off \nExtra features: \n- Easy way to install packages with `install_packages <package-name>` command \n- Run anywhere with cross-build feature (for ARM only) \n- Keep the container idling with `balena-idle` command \n- Show base image details with `balena-info` command' > /.balena/messages/image-info
|
Dockerfile
|
function Start-Icinga()
{
Start-IcingaService -Service 'icinga2';
Start-IcingaForWindows;
}
|
PowerShell
|
TruncateHtml.configure do |config|
end
|
Ruby
|
/**
* Copyright 2011-2013 Zuse Institute Berlin
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.zib.scalaris.examples.wikipedia.plugin;
import javax.servlet.ServletConfig;
import de.zib.scalaris.examples.wikipedia.WikiServletContext;
/**
* Simple plug-in interface for plug-ins in the {@link de.zib.scalaris.examples.wikipedia.bliki.WikiServlet} class.
*
* Note: this API is not stable and will probably change in future.
*
* @author Nico Kruber, [email protected]
*/
public interface WikiPlugin {
/**
* Initialises the plugin.
*
* @param servlet
* the servlet using the plugin
* @param config
* servlet config object
*/
public void init(WikiServletContext servlet, ServletConfig config);
}
|
Java
|
# encoding: UTF-8
# This file is auto-generated from the current state of the database. Instead
# of editing this file, please use the migrations feature of Active Record to
# incrementally modify your database, and then regenerate this schema definition.
#
# Note that this schema.rb definition is the authoritative source for your
# database schema. If you need to create the application database on another
# system, you should be using db:schema:load, not running all the migrations
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
# you'll amass, the slower it'll run and the greater likelihood for issues).
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20170416024256) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
create_table "connected_apps", force: :cascade do |t|
t.string "name"
t.string "token"
t.string "token_secret"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end
create_table "tweets", force: :cascade do |t|
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.string "text"
t.float "location", default: [], array: true
t.string "keywords", default: [], array: true
t.string "hashtags", default: [], array: true
t.string "sentiment_type"
t.float "sentiment_value"
end
end
|
Ruby
|
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package org.ngsutils.fuzzy
import org.ngsutils.ontology.GOManager
import org.ngsutils.ontology.OntologyAnnotation
import org.ngsutils.ontology.FMBGOntologyWrap
/**
*
* @author victor
*/
class FMBSimilarity {
IFMBOntologyWrap ontology
def logObjectList
/**
*
*/
def setOntologyWrap(ontObj) {
if( ontObj instanceof GOManager ) {
ontology = new FMBGOntologyWrap(goManager:ontObj)
}
}
/**
* Fuzzy Based Measure of Similarity (FMS)
*
* @param a1 : an OntologyAnnotation
* @param a2 : an OntologyAnnotation
*/
double fms(OntologyAnnotation a1, OntologyAnnotation a2) {
// build densities map for each set
def gdens = [a1,a2].collect{ a->
def map = [:]
a.terms.each{ t-> map[t] = ontology.getDensity(a.product,t) }
map
}
// intersection set
def inters = gdens[0].intersect(gdens[1])
// calculate sugeno measures
def suglm = gdens.collect{ new SugenoLambdaMeasure(it.values()) }
return sugenoSum(inters.values() as List, suglm[0], suglm[1])
}
/**
* Augmented Fuzzy Based Measure of Similarity (AFMS)
*
* @param a1 : an OntologyAnnotation
* @param a2 : an OntologyAnnotation
*/
double afms(OntologyAnnotation a1, OntologyAnnotation a2) {
// 1 - get the map of nearest common ancestors (NCA) of every pair
def nca = [:]
a1.terms.each{ t1->
double ev1 = ontology.getEvidence(a1.product,t1)
a2.terms.each{ t2->
def res = ontology.getNCAncestor(t1,t2)
if(res) {
double ev2 = ontology.getEvidence(a2.product,t2)
double dens = ontology.getDensity(res)*Math.min(ev1,ev2)
if( dens>0.0 ){ nca[res] = dens }
}
}
}
// remove redundant ancestors
def ncaTerms = nca.keySet()
def ncaRedundant = ncaTerms.findAll{ontology.isAncestor(it, ncaTerms)}
ncaRedundant.each{nca.remove(it)}
// 2 - build augmented sets
def gdens = [a1,a2].collect{ a->
def map = [:]
a.terms.each{ t-> map[t] = ontology.getDensity(a.product,t) }
map
}
def annotations = gdens.collect{it.clone()} // clone annotations
// intersection set
def inters = gdens[0].intersect(gdens[1])
inters += nca
// 3 - calculate sugeno measures
(0..1).each{ gdens[it]+=nca }
def suglm = gdens.collect{ new SugenoLambdaMeasure(it.values()) }
double similarity = sugenoSum(inters.values() as List, suglm[0], suglm[1])
appendToLog(a1.id, a2.id, annotations, nca, similarity)
return similarity
}
/**
*
*/
protected double sugenoSum(intDens, suglm1, suglm2) {
if( !intDens ){ return 0.0 }
if( intDens.size()==1 ){ return intDens[0] }
return (Math.min(suglm1.value(intDens),1.0) + Math.min(suglm2.value(intDens),1.0)) * 0.5
}
/**
*
*/
protected void appendToLog(feat1, feat2, annotations, nca, similarity) {
if( logObjectList==null ) {
return
}
def makeFeat = { name, terms ->
['name': name, 'annotations': terms.keySet().collect{['id': it, 'ic': terms[it]]}]
}
def inters = annotations[0].intersect(annotations[1])
def simObject = [
'product1': makeFeat(feat1, annotations[0]),
'product2': makeFeat(feat2, annotations[1]),
'nearestCommonAncestors': nca.keySet().collect{['id': it, 'ic': nca[it]]},
'intersection': inters.keySet().collect{['id': it, 'ic': inters[it]]},
'similarity': similarity
]
logObjectList << simObject
}
/**
* append a zero similarity object to log
*/
public void appendZeroToLog(OntologyAnnotation a1, OntologyAnnotation a2) {
if( logObjectList==null ) {
return
}
def simObject = [
'product1': ['name': a1.id],
'product2': ['name': a2.id],
'nearestCommonAncestors': [],
'intersection': [],
'similarity': 0.0d
]
logObjectList << simObject
}
}
|
Groovy
|
WIKIMETATEMPLATE=admin/templates/BeanConfigMetaTemplate
TITLE=Global GWiki Settings
NOINDEX=true
|
INI
|
(cl:in-package dasl_mocap-msg)
(cl:export '(LINEAR-VAL
LINEAR
ANGULAR-VAL
ANGULAR
))
|
Common Lisp
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.8"/>
<title>NonAdMD: src/harmonicbath.f90 File Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
$(window).load(resizeHeight);
</script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { searchBox.OnSelectItem(0); });
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
extensions: ["tex2jax.js"],
jax: ["input/TeX","output/HTML-CSS"],
});
</script><script src="http://cdn.mathjax.org/mathjax/latest/MathJax.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="Logo.gif"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">NonAdMD
 <span id="projectnumber">0.1.44</span>
</div>
<div id="projectbrief">alpha-stable</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.8 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Welcome</span></a></li>
<li><a href="annotated.html"><span>Data Types List</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li><a href="http://www.ucd.ie/physics"><span>UCD Physics</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File List</span></a></li>
<li><a href="globals.html"><span>File Members</span></a></li>
</ul>
</div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('harmonicbath_8f90.html','');});
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark"> </span>Variables</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(5)"><span class="SelectionMark"> </span>Pages</a></div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="header">
<div class="summary">
<a href="#nested-classes">Data Types</a> </div>
<div class="headertitle">
<div class="title">harmonicbath.f90 File Reference</div> </div>
</div><!--header-->
<div class="contents">
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a>
Data Types</h2></td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">module  </td><td class="memItemRight" valign="bottom"><a class="el" href="classharmonicbath__class.html">harmonicbath_class</a></td></tr>
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">Harmonic bath(s) of classical non-interacting particles. <a href="classharmonicbath__class.html#details">More...</a><br /></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">type  </td><td class="memItemRight" valign="bottom"><a class="el" href="structharmonicbath__class_1_1harmonicbath.html">harmonicbath_class::harmonicbath</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">interface  </td><td class="memItemRight" valign="bottom"><a class="el" href="interfaceharmonicbath__class_1_1new.html">harmonicbath_class::new</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">interface  </td><td class="memItemRight" valign="bottom"><a class="el" href="interfaceharmonicbath__class_1_1kill.html">harmonicbath_class::kill</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">interface  </td><td class="memItemRight" valign="bottom"><a class="el" href="interfaceharmonicbath__class_1_1display.html">harmonicbath_class::display</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">interface  </td><td class="memItemRight" valign="bottom"><a class="el" href="interfaceharmonicbath__class_1_1save.html">harmonicbath_class::save</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">interface  </td><td class="memItemRight" valign="bottom"><a class="el" href="interfaceharmonicbath__class_1_1update.html">harmonicbath_class::update</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">interface  </td><td class="memItemRight" valign="bottom"><a class="el" href="interfaceharmonicbath__class_1_1resample.html">harmonicbath_class::resample</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">interface  </td><td class="memItemRight" valign="bottom"><a class="el" href="interfaceharmonicbath__class_1_1check.html">harmonicbath_class::check</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
</table>
</div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="navelem"><a class="el" href="dir_68267d1309a1af8e8297ef4c3efbcdba.html">src</a></li><li class="navelem"><a class="el" href="harmonicbath_8f90.html">harmonicbath.f90</a></li>
<li class="footer">Generated on Thu Apr 20 2017 11:23:08 for NonAdMD by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.8 </li>
</ul>
</div>
</body>
</html>
|
HTML
|
/** <module> Common utilities for the task-parallel scheduler
@author Dylan Meysmans <[email protected]>
@license MIT
@version 0.1.0
*/
:- module(utilities, [cores/1,
tasks/1,
depends_on/2,
schedule_for_task_core/3,
augmented_less/2]).
%! cores(+Cs:list) is semidet.
%! cores(-Cs:list) is det.
%
% Succeeds if Cs is the list of cores that the system can schedule tasks on.
% You need not instantiate Cs, if you do not, it is instantiated to the list of cores.
cores(Cs) :-
findall(C, user:core(C), Cs).
%! tasks(+Ts:list) is semidet.
%! tasks(-Ts:list) is det.
%
% Succeeds if Ts is the list of tasks that the system needs schedule.
% You need not instantiate Ts, if you do not, it is instantiated to the list of tasks.
tasks(Ts) :-
findall(T, user:task(T), Ts).
%! depends_on(+T, +D) is semidet.
%
% Succeeds if T directly or indirectly depends on D.
% Represents the reflexive and transitive closure of the dependency relation.
depends_on(T, T).
depends_on(T, D) :-
T \== D,
user:depends_on(T, D, _).
depends_on(T, D) :-
T \== D,
not(user:depends_on(T, D, _)),
user:depends_on(T, V, _),
depends_on(V, D).
%! schedule_for_task_core(+T, +Ss:list, -S:schedule) is semidet.
%
% Instantiates S to the schedule for the core on which T is scheduled in Ss.
schedule_for_task_core(T, Ss, schedule(C,Ts)) :-
member(schedule(C,Ts), Ss),
memberchk(T, Ts).
%! augmented_less(+M, +N) is semidet.
%
% Succeeds if </2 succeeds for M and N, unless M is the atom infinity.
augmented_less(infinity, _) :-
fail.
augmented_less(M, infinity) :-
M \== infinity.
augmented_less(M, N) :-
M \== infinity,
N \== infinity,
M < N.
|
Prolog
|
@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem ##
@rem Grails JVM Bootstrap for Windows ##
@rem ##
@rem ##########################################################################
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
set CLASS=org.grails.wrapper.GrailsWrapper
if exist "%USERPROFILE%/.groovy/preinit.bat" call "%USERPROFILE%/.groovy/preinit.bat"
@rem Determine the command interpreter to execute the "CD" later
set COMMAND_COM="cmd.exe"
if exist "%SystemRoot%\system32\cmd.exe" set COMMAND_COM="%SystemRoot%\system32\cmd.exe"
if exist "%SystemRoot%\command.com" set COMMAND_COM="%SystemRoot%\command.com"
@rem Use explicit find.exe to prevent cygwin and others find.exe from being used
set FIND_EXE="find.exe"
if exist "%SystemRoot%\system32\find.exe" set FIND_EXE="%SystemRoot%\system32\find.exe"
if exist "%SystemRoot%\command\find.exe" set FIND_EXE="%SystemRoot%\command\find.exe"
:check_JAVA_HOME
@rem Make sure we have a valid JAVA_HOME
if not "%JAVA_HOME%" == "" goto have_JAVA_HOME
echo.
echo ERROR: Environment variable JAVA_HOME has not been set.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
echo.
goto end
:have_JAVA_HOME
@rem Remove trailing slash from JAVA_HOME if found
if "%JAVA_HOME:~-1%"=="\" SET JAVA_HOME=%JAVA_HOME:~0,-1%
@rem Validate JAVA_HOME
%COMMAND_COM% /C DIR "%JAVA_HOME%" 2>&1 | %FIND_EXE% /I /C "%JAVA_HOME%" >nul
if not errorlevel 1 goto check_GRAILS_HOME
echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
echo.
goto end
:check_GRAILS_HOME
@rem Define GRAILS_HOME if not set
if "%GRAILS_HOME%" == "" set GRAILS_HOME=%DIRNAME%..
@rem Remove trailing slash from GRAILS_HOME if found
if "%GRAILS_HOME:~-1%"=="\" SET GRAILS_HOME=%GRAILS_HOME:~0,-1%
:init
for %%x in ("%USERPROFILE%") do set SHORTHOME=%%~fsx
if "x%GRAILS_AGENT_CACHE_DIR%" == "x" set GRAILS_AGENT_CACHE_DIR=%SHORTHOME%/.grails/2.4.4/
set SPRINGLOADED_PARAMS="profile=grails;cacheDir=%GRAILS_AGENT_CACHE_DIR%"
if not exist "%GRAILS_AGENT_CACHE_DIR%" mkdir "%GRAILS_AGENT_CACHE_DIR%"
if "%GRAILS_NO_PERMGEN%" == "" (
type "%JAVA_HOME%\include\classfile_constants.h" 2>nul | findstr /R /C:"#define JVM_CLASSFILE_MAJOR_VERSION 5[23]" >nul
if not errorlevel 1 set GRAILS_NO_PERMGEN=1
)
set AGENT_STRING=-javaagent:grailsWrapper/springloaded-1.2.1.RELEASE.jar -Xverify:none -Dspringloaded.synchronize=true -Djdk.reflect.allowGetCallerClass=true -Dspringloaded=\"%SPRINGLOADED_PARAMS%\"
set DISABLE_RELOADING=
if "%GRAILS_OPTS%" == "" (
set GRAILS_OPTS=-server -Xmx768M -Xms64M -Dfile.encoding=UTF-8
if not "%GRAILS_NO_PERMGEN%" == "1" (
set GRAILS_OPTS=-server -Xmx768M -Xms64M -XX:PermSize=32m -XX:MaxPermSize=256m -Dfile.encoding=UTF-8
)
)
@rem Get command-line arguments, handling Windows variants
if "%@eval[2+2]" == "4" goto 4NT_args
@rem Slurp the command line arguments.
set CMD_LINE_ARGS=
set CP=
set INTERACTIVE=true
:win9xME_args_slurp
if "x%~1" == "x" goto execute
set CURR_ARG=%~1
if "%CURR_ARG:~0,2%" == "-D" (
set CMD_LINE_ARGS=%CMD_LINE_ARGS% %~1=%~2
shift
shift
goto win9xME_args_slurp
)
if "x%~1" == "x-cp" (
set CP=%~2
shift
shift
goto win9xME_args_slurp
)
if "x%~1" == "x-debug" (
set JAVA_OPTS=%JAVA_OPTS% -Xdebug -Xnoagent -Dgrails.full.stacktrace=true -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005
shift
goto win9xME_args_slurp
)
if "x%~1" == "x-classpath" (
set CP=%~2
shift
shift
goto win9xME_args_slurp
)
if "x%~1" == "x-reloading" (
set AGENT=%AGENT_STRING%
shift
goto win9xME_args_slurp
)
if "x%~1" == "xrun-app" (
set AGENT=%AGENT_STRING%
set INTERACTIVE=
set CMD_LINE_ARGS=%CMD_LINE_ARGS% %1
shift
goto win9xME_args_slurp
)
if "x%~1" == "x-noreloading" (
set DISABLE_RELOADING=true
shift
goto win9xME_args_slurp
)
set INTERACTIVE=
set CMD_LINE_ARGS=%CMD_LINE_ARGS% %1
shift
goto win9xME_args_slurp
:4NT_args
@rem Get arguments from the 4NT Shell from JP Software
set CMD_LINE_ARGS=%$
:execute
@rem Setup the command line
set STARTER_CLASSPATH=grailsWrapper/grails-wrapper-runtime-2.4.4.jar;grailsWrapper;.
if exist "%USERPROFILE%/.groovy/init.bat" call "%USERPROFILE%/.groovy/init.bat"
@rem Setting a classpath using the -cp or -classpath option means not to use
@rem the global classpath. Groovy behaves then the same as the java interpreter
if "x" == "x%CLASSPATH%" goto after_classpath
set CP=%CP%;%CLASSPATH%
:after_classpath
if "x%DISABLE_RELOADING%" == "xtrue" (
set AGENT=
) else (
if "x%INTERACTIVE%" == "xtrue" (
set AGENT=%AGENT_STRING%
)
)
set STARTER_MAIN_CLASS=org.grails.wrapper.GrailsWrapper
set STARTER_CONF=%GRAILS_HOME%\conf\groovy-starter.conf
set JAVA_EXE=%JAVA_HOME%\bin\java.exe
set TOOLS_JAR=%JAVA_HOME%\lib\tools.jar
set JAVA_OPTS=%GRAILS_OPTS% %JAVA_OPTS% %AGENT%
set JAVA_OPTS=%JAVA_OPTS% -Dprogram.name="%PROGNAME%"
set JAVA_OPTS=%JAVA_OPTS% -Dgrails.home="%GRAILS_HOME%"
set JAVA_OPTS=%JAVA_OPTS% -Dgrails.version=2.4.4
set JAVA_OPTS=%JAVA_OPTS% -Dbase.dir=.
set JAVA_OPTS=%JAVA_OPTS% -Dtools.jar="%TOOLS_JAR%"
set JAVA_OPTS=%JAVA_OPTS% -Dgroovy.starter.conf="%STARTER_CONF%"
if exist "%USERPROFILE%/.groovy/postinit.bat" call "%USERPROFILE%/.groovy/postinit.bat"
@rem Execute Grails
CALL "%JAVA_EXE%" %JAVA_OPTS% -classpath "%STARTER_CLASSPATH%" %STARTER_MAIN_CLASS% --main %CLASS% --conf "%STARTER_CONF%" --classpath "%CP%" "%CMD_LINE_ARGS%"
:end
@rem End local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" endlocal
@rem Optional pause the batch file
if "%GROOVY_BATCH_PAUSE%" == "on" pause
|
Batchfile
|
*{
padding: 0;
margin: 0;
font-family: sans-serif;
font-size: 14px;
}
body{
height: 100vh;
}
li{ list-style: none; }
|
CSS
|
SRC=src
BUILD_VERSION=v$(VERSION)
RELEASE_DIR=$(SRC)/_build/releases
TARGETS=centos ubuntu darwin
build-all:
@echo "Building dependencies for MIX_ENV=staging..."
@cd $(SRC); MIX_ENV=staging mix compile
@echo "Building dependencies for MIX_ENV=dev..."
@cd $(SRC); MIX_ENV=dev mix compile
@echo "Building dependencies for MIX_ENV=test..."
@cd $(SRC); MIX_ENV=test mix compile
@echo "Tar everything up..."
@cd $(SRC); tar zcf builds.tgz _build/staging _build/dev _build/test deps/
$(TARGETS): $(RELEASE_DIR) build-all build-version-file
@mv $(SRC)/builds.tgz $(RELEASE_DIR)/[email protected]
build-version-file:
@echo "$(BUILD_VERSION)" > $(RELEASE_DIR)/$(BUILD_VERSION)
$(RELEASE_DIR):
@mkdir -p $@
|
Makefile
|
(ns ws-ldn-10.ex01
(:require
[thi.ng.math.core :as m]
[thi.ng.geom.core :as g]
[thi.ng.geom.vector :as v]
[thi.ng.geom.circle :as c]
[thi.ng.geom.rect :as r]
[thi.ng.geom.polygon :as poly]
[thi.ng.geom.svg.core :as svg]
[thi.ng.geom.svg.adapter :as svgadapt]
[thi.ng.color.core :as col]))
(defn svg-doc
[width body]
(->> body
(svg/svg {:width width :height width})
(svgadapt/all-as-svg)
(svg/serialize)))
(defn ex01
[width num r1 r2]
(->> (for [i (butlast (m/norm-range num))
:let [pos (-> (v/vec2 r1 (* m/TWO_PI i))
(g/as-cartesian)
(m/madd [1 0.5] (/ width 2)))]]
(c/circle pos r2))
(svg/group {:stroke "blue" :fill "none"})
(svg-doc width)))
;; (spit "ex01-200.svg" (ex01 600 100 200 90))
(defn ex02
[width num r1 shape-fn]
(->> (for [i (butlast (m/norm-range num))
:let [theta (* m/TWO_PI i)
pos (-> (v/vec2 r1 theta)
(g/as-cartesian)
(m/madd [1 0.5] (/ width 2)))]]
(shape-fn pos theta))
(svg/group {:stroke "rgba(0,0,255,0.25)" :fill "none"})
(svg-doc width)))
(defn shape
[res radius]
(let [proto (-> (c/circle radius)
(g/center)
(g/as-polygon res))]
(fn [pos theta]
(-> proto
(g/rotate (* 2 theta))
(g/translate pos)))))
(defn star-shape
[res r1 r2]
(let [proto (poly/cog r2 res [(/ r1 r2) 1])]
(fn [pos theta]
(-> proto
(g/rotate (* 2 theta))
(g/translate pos)))))
;; (spit "ex02-100.svg" (ex02 600 200 200 (shape 3 90)))
(defn ex03
[{:keys [width num radius shape bg color]}]
(->> (for [i (butlast (m/norm-range num))
:let [theta (* m/TWO_PI i)
pos (-> (v/vec2 (radius theta) theta)
(g/as-cartesian)
(m/madd [1 1] (/ width 2)))]]
(shape pos theta))
(svg/group
{:stroke (or color "rgba(0,0,255,0.25)") :fill "none"}
(if bg (svg/rect [0 0] width width {:fill bg})))
(svg-doc width)))
(defn waveform
[min max freq]
(let [offset (m/mix* min max 0.5)
delta (- max offset)]
(fn [theta]
(+ offset (* delta (Math/sin (* freq theta)))))))
(comment
(spit "ex03.svg"
(ex03 {:width 600
:num 400
:radius (waveform 100 200 4)
:shape (shape 3 90)}))
(spit "ex03.svg"
(ex03 {:width 600
:num 600
:radius (waveform 50 200 8)
:shape (star-shape 5 25 90)
:color "rgba(255,250,240, 0.25)"
:bg "#001"})))
(defn ex04
[{:keys [width num radius shape dist bg color]}]
(->> (for [i (butlast (m/norm-range num))
:let [theta (* m/TWO_PI i)
pos (-> (v/vec2 (radius theta) theta)
(g/as-cartesian)
(m/madd [1 1] (/ width 2)))]]
(g/sample-uniform (shape pos theta) dist false))
;; concatenate all points into single seq
(mapcat identity)
;; represent each as small dot
(map #(c/circle % 1.5))
(svg/group
{:fill (or color "rgba(0,0,255,0.25)") :stroke "none"}
(if bg (svg/rect [0 0] width width {:fill bg})))
(svg-doc width)))
(comment
(spit "ex04.svg"
(ex04 {:width 600
:num 1000
:radius (waveform 50 200 8)
:dist 40
:shape (star-shape 5 25 90)
:color (col/hsva 1/6 0.15 1 0.25)
:bg "#001"}))
)
|
Clojure
|
-- File : hello2-8.lua
-- Purpose : Demonstration of Luerl interface.
-- See : ./examples/hello/hello2.erl
function old() print "(33) old" end
print "(32) News!"
|
Lua
|
export * from './FaviconsGenerator';
export * from './types';
export * from './extensions';
export * from './getHtmlHeadersMarkup';
|
TypeScript
|
/*
* This file and its contents are supplied under the terms of the
* Common Development and Distribution License ("CDDL"), version 1.0.
* You may only use this file in accordance with the terms of version
* 1.0 of the CDDL.
*
* A full copy of the text of the CDDL should have accompanied this
* source. A copy of the CDDL is also available via the Internet at
* http://www.illumos.org/license/CDDL.
*/
/*
* Copyright 2024 Oxide Computer Company
*/
/*
* AVX-512 VBMI instruction decoding. This also has tests for some of the vperm
* variants that are part of AVX512VL.
*/
.text
.align 16
.globl libdis_test
.type libdis_test, @function
libdis_test:
vpermb %xmm0, %xmm1, %xmm2
vpermb %xmm7, %xmm4, %xmm5{%k1}
vpermb %xmm2, %xmm4, %xmm3{%k2}{z}
vpermb (%eax), %xmm1, %xmm2
vpermb 0x10(%eax), %xmm4, %xmm5{%k1}
vpermb 0x12345(%eax), %xmm4, %xmm3{%k2}{z}
vpermb (%eax,%ebx,4), %xmm1, %xmm2
vpermb 0x14(%eax,%ecx,8), %xmm4, %xmm5{%k1}
vpermb %ymm0, %ymm1, %ymm2
vpermb %ymm7, %ymm4, %ymm5{%k1}
vpermb %ymm2, %ymm4, %ymm3{%k2}{z}
vpermb (%eax), %ymm1, %ymm2
vpermb 0x10(%eax), %ymm4, %ymm5{%k1}
vpermb 0x12345(%eax), %ymm4, %ymm3{%k2}{z}
vpermb (%eax,%ebx,4), %ymm1, %ymm2
vpermb 0x14(%eax,%ecx,8), %ymm4, %ymm5{%k1}
vpermb %zmm0, %zmm1, %zmm2
vpermb %zmm7, %zmm4, %zmm5{%k1}
vpermb %zmm2, %zmm4, %zmm3{%k2}{z}
vpermb (%eax), %zmm1, %zmm2
vpermb 0x10(%eax), %zmm4, %zmm5{%k1}
vpermb 0x12345(%eax), %zmm4, %zmm3{%k2}{z}
vpermb (%eax,%ebx,4), %zmm1, %zmm2
vpermb 0x14(%eax,%ecx,8), %zmm4, %zmm5{%k1}
vpermw %xmm0, %xmm1, %xmm2
vpermw %xmm7, %xmm4, %xmm5{%k1}
vpermw %xmm2, %xmm4, %xmm3{%k2}{z}
vpermw (%eax), %xmm1, %xmm2
vpermw 0x10(%eax), %xmm4, %xmm5{%k1}
vpermw 0x12345(%eax), %xmm4, %xmm3{%k2}{z}
vpermw (%eax,%ebx,4), %xmm1, %xmm2
vpermw 0x14(%eax,%ecx,8), %xmm4, %xmm5{%k1}
vpermw %ymm0, %ymm1, %ymm2
vpermw %ymm7, %ymm4, %ymm5{%k1}
vpermw %ymm2, %ymm4, %ymm3{%k2}{z}
vpermw (%eax), %ymm1, %ymm2
vpermw 0x10(%eax), %ymm4, %ymm5{%k1}
vpermw 0x12345(%eax), %ymm4, %ymm3{%k2}{z}
vpermw (%eax,%ebx,4), %ymm1, %ymm2
vpermw 0x14(%eax,%ecx,8), %ymm4, %ymm5{%k1}
vpermw %zmm0, %zmm1, %zmm2
vpermw %zmm7, %zmm4, %zmm5{%k1}
vpermw %zmm2, %zmm4, %zmm3{%k2}{z}
vpermw (%eax), %zmm1, %zmm2
vpermw 0x10(%eax), %zmm4, %zmm5{%k1}
vpermw 0x12345(%eax), %zmm4, %zmm3{%k2}{z}
vpermw (%eax,%ebx,4), %zmm1, %zmm2
vpermw 0x14(%eax,%ecx,8), %zmm4, %zmm5{%k1}
vpermi2b %xmm0, %xmm1, %xmm2
vpermi2b %xmm7, %xmm4, %xmm5{%k1}
vpermi2b %xmm2, %xmm4, %xmm3{%k2}{z}
vpermi2b (%eax), %xmm1, %xmm2
vpermi2b 0x10(%eax), %xmm4, %xmm5{%k1}
vpermi2b 0x12345(%eax), %xmm4, %xmm3{%k2}{z}
vpermi2b (%eax,%ebx,4), %xmm1, %xmm2
vpermi2b 0x14(%eax,%ecx,8), %xmm4, %xmm5{%k1}
vpermi2b %ymm0, %ymm1, %ymm2
vpermi2b %ymm7, %ymm4, %ymm5{%k1}
vpermi2b %ymm2, %ymm4, %ymm3{%k2}{z}
vpermi2b (%eax), %ymm1, %ymm2
vpermi2b 0x10(%eax), %ymm4, %ymm5{%k1}
vpermi2b 0x12345(%eax), %ymm4, %ymm3{%k2}{z}
vpermi2b (%eax,%ebx,4), %ymm1, %ymm2
vpermi2b 0x14(%eax,%ecx,8), %ymm4, %ymm5{%k1}
vpermi2b %zmm0, %zmm1, %zmm2
vpermi2b %zmm7, %zmm4, %zmm5{%k1}
vpermi2b %zmm2, %zmm4, %zmm3{%k2}{z}
vpermi2b (%eax), %zmm1, %zmm2
vpermi2b 0x10(%eax), %zmm4, %zmm5{%k1}
vpermi2b 0x12345(%eax), %zmm4, %zmm3{%k2}{z}
vpermi2b (%eax,%ebx,4), %zmm1, %zmm2
vpermi2b 0x14(%eax,%ecx,8), %zmm4, %zmm5{%k1}
vpermi2w %xmm0, %xmm1, %xmm2
vpermi2w %xmm7, %xmm4, %xmm5{%k1}
vpermi2w %xmm2, %xmm4, %xmm3{%k2}{z}
vpermi2w (%eax), %xmm1, %xmm2
vpermi2w 0x10(%eax), %xmm4, %xmm5{%k1}
vpermi2w 0x12345(%eax), %xmm4, %xmm3{%k2}{z}
vpermi2w (%eax,%ebx,4), %xmm1, %xmm2
vpermi2w 0x14(%eax,%ecx,8), %xmm4, %xmm5{%k1}
vpermi2w %ymm0, %ymm1, %ymm2
vpermi2w %ymm7, %ymm4, %ymm5{%k1}
vpermi2w %ymm2, %ymm4, %ymm3{%k2}{z}
vpermi2w (%eax), %ymm1, %ymm2
vpermi2w 0x10(%eax), %ymm4, %ymm5{%k1}
vpermi2w 0x12345(%eax), %ymm4, %ymm3{%k2}{z}
vpermi2w (%eax,%ebx,4), %ymm1, %ymm2
vpermi2w 0x14(%eax,%ecx,8), %ymm4, %ymm5{%k1}
vpermi2w %zmm0, %zmm1, %zmm2
vpermi2w %zmm7, %zmm4, %zmm5{%k1}
vpermi2w %zmm2, %zmm4, %zmm3{%k2}{z}
vpermi2w (%eax), %zmm1, %zmm2
vpermi2w 0x10(%eax), %zmm4, %zmm5{%k1}
vpermi2w 0x12345(%eax), %zmm4, %zmm3{%k2}{z}
vpermi2w (%eax,%ebx,4), %zmm1, %zmm2
vpermi2w 0x14(%eax,%ecx,8), %zmm4, %zmm5{%k1}
vpermi2d %xmm0, %xmm1, %xmm2
vpermi2d %xmm7, %xmm4, %xmm5{%k1}
vpermi2d %xmm2, %xmm4, %xmm3{%k2}{z}
vpermi2d (%eax), %xmm1, %xmm2
vpermi2d 0x10(%eax), %xmm4, %xmm5{%k1}
vpermi2d 0x12345(%eax), %xmm4, %xmm3{%k2}{z}
vpermi2d (%eax,%ebx,4), %xmm1, %xmm2
vpermi2d 0x14(%eax,%ecx,8), %xmm4, %xmm5{%k1}
vpermi2d (%edx){1to4}, %xmm4, %xmm5
vpermi2d 0x73(%edx){1to4}, %xmm4, %xmm5{%k4}
vpermi2d -0x8(%edx){1to4}, %xmm0, %xmm1{%k4}{z}
vpermi2d %ymm0, %ymm1, %ymm2
vpermi2d %ymm7, %ymm4, %ymm5{%k1}
vpermi2d %ymm2, %ymm4, %ymm3{%k2}{z}
vpermi2d (%eax), %ymm1, %ymm2
vpermi2d 0x10(%eax), %ymm4, %ymm5{%k1}
vpermi2d 0x12345(%eax), %ymm4, %ymm3{%k2}{z}
vpermi2d (%eax,%ebx,4), %ymm1, %ymm2
vpermi2d 0x14(%eax,%ecx,8), %ymm4, %ymm5{%k1}
vpermi2d (%edx){1to8}, %ymm4, %ymm5
vpermi2d 0x73(%edx){1to8}, %ymm4, %ymm5{%k4}
vpermi2d -0x8(%edx){1to8}, %ymm0, %ymm1{%k4}{z}
vpermi2d %zmm0, %zmm1, %zmm2
vpermi2d %zmm7, %zmm4, %zmm5{%k1}
vpermi2d %zmm2, %zmm4, %zmm3{%k2}{z}
vpermi2d (%eax), %zmm1, %zmm2
vpermi2d 0x10(%eax), %zmm4, %zmm5{%k1}
vpermi2d 0x12345(%eax), %zmm4, %zmm3{%k2}{z}
vpermi2d (%eax,%ebx,4), %zmm1, %zmm2
vpermi2d 0x14(%eax,%ecx,8), %zmm4, %zmm5{%k1}
vpermi2d (%edx){1to16}, %zmm4, %zmm5
vpermi2d 0x73(%edx){1to16}, %zmm4, %zmm5{%k4}
vpermi2d -0x8(%edx){1to16}, %zmm0, %zmm1{%k4}{z}
vpermi2q %xmm0, %xmm1, %xmm2
vpermi2q %xmm7, %xmm4, %xmm5{%k1}
vpermi2q %xmm2, %xmm4, %xmm3{%k2}{z}
vpermi2q (%eax), %xmm1, %xmm2
vpermi2q 0x10(%eax), %xmm4, %xmm5{%k1}
vpermi2q 0x12345(%eax), %xmm4, %xmm3{%k2}{z}
vpermi2q (%eax,%ebx,4), %xmm1, %xmm2
vpermi2q 0x14(%eax,%ecx,8), %xmm4, %xmm5{%k1}
vpermi2q (%edx){1to2}, %xmm4, %xmm5
vpermi2q 0x73(%edx){1to2}, %xmm4, %xmm5{%k4}
vpermi2q -0x8(%edx){1to2}, %xmm0, %xmm1{%k4}{z}
vpermi2q %ymm0, %ymm1, %ymm2
vpermi2q %ymm7, %ymm4, %ymm5{%k1}
vpermi2q %ymm2, %ymm4, %ymm3{%k2}{z}
vpermi2q (%eax), %ymm1, %ymm2
vpermi2q 0x10(%eax), %ymm4, %ymm5{%k1}
vpermi2q 0x12345(%eax), %ymm4, %ymm3{%k2}{z}
vpermi2q (%eax,%ebx,4), %ymm1, %ymm2
vpermi2q 0x14(%eax,%ecx,8), %ymm4, %ymm5{%k1}
vpermi2q (%edx){1to4}, %ymm4, %ymm5
vpermi2q 0x73(%edx){1to4}, %ymm4, %ymm5{%k4}
vpermi2q -0x8(%edx){1to4}, %ymm0, %ymm1{%k4}{z}
vpermi2q %zmm0, %zmm1, %zmm2
vpermi2q %zmm7, %zmm4, %zmm5{%k1}
vpermi2q %zmm2, %zmm4, %zmm3{%k2}{z}
vpermi2q (%eax), %zmm1, %zmm2
vpermi2q 0x10(%eax), %zmm4, %zmm5{%k1}
vpermi2q 0x12345(%eax), %zmm4, %zmm3{%k2}{z}
vpermi2q (%eax,%ebx,4), %zmm1, %zmm2
vpermi2q 0x14(%eax,%ecx,8), %zmm4, %zmm5{%k1}
vpermi2q (%edx){1to8}, %zmm4, %zmm5
vpermi2q 0x73(%edx){1to8}, %zmm4, %zmm5{%k4}
vpermi2q -0x8(%edx){1to8}, %zmm0, %zmm1{%k4}{z}
vpermt2b %xmm0, %xmm1, %xmm2
vpermt2b %xmm7, %xmm4, %xmm5{%k1}
vpermt2b %xmm2, %xmm4, %xmm3{%k2}{z}
vpermt2b (%eax), %xmm1, %xmm2
vpermt2b 0x10(%eax), %xmm4, %xmm5{%k1}
vpermt2b 0x12345(%eax), %xmm4, %xmm3{%k2}{z}
vpermt2b (%eax,%ebx,4), %xmm1, %xmm2
vpermt2b 0x14(%eax,%ecx,8), %xmm4, %xmm5{%k1}
vpermt2b %ymm0, %ymm1, %ymm2
vpermt2b %ymm7, %ymm4, %ymm5{%k1}
vpermt2b %ymm2, %ymm4, %ymm3{%k2}{z}
vpermt2b (%eax), %ymm1, %ymm2
vpermt2b 0x10(%eax), %ymm4, %ymm5{%k1}
vpermt2b 0x12345(%eax), %ymm4, %ymm3{%k2}{z}
vpermt2b (%eax,%ebx,4), %ymm1, %ymm2
vpermt2b 0x14(%eax,%ecx,8), %ymm4, %ymm5{%k1}
vpermt2b %zmm0, %zmm1, %zmm2
vpermt2b %zmm7, %zmm4, %zmm5{%k1}
vpermt2b %zmm2, %zmm4, %zmm3{%k2}{z}
vpermt2b (%eax), %zmm1, %zmm2
vpermt2b 0x10(%eax), %zmm4, %zmm5{%k1}
vpermt2b 0x12345(%eax), %zmm4, %zmm3{%k2}{z}
vpermt2b (%eax,%ebx,4), %zmm1, %zmm2
vpermt2b 0x14(%eax,%ecx,8), %zmm4, %zmm5{%k1}
vpermt2w %xmm0, %xmm1, %xmm2
vpermt2w %xmm7, %xmm4, %xmm5{%k1}
vpermt2w %xmm2, %xmm4, %xmm3{%k2}{z}
vpermt2w (%eax), %xmm1, %xmm2
vpermt2w 0x10(%eax), %xmm4, %xmm5{%k1}
vpermt2w 0x12345(%eax), %xmm4, %xmm3{%k2}{z}
vpermt2w (%eax,%ebx,4), %xmm1, %xmm2
vpermt2w 0x14(%eax,%ecx,8), %xmm4, %xmm5{%k1}
vpermt2w %ymm0, %ymm1, %ymm2
vpermt2w %ymm7, %ymm4, %ymm5{%k1}
vpermt2w %ymm2, %ymm4, %ymm3{%k2}{z}
vpermt2w (%eax), %ymm1, %ymm2
vpermt2w 0x10(%eax), %ymm4, %ymm5{%k1}
vpermt2w 0x12345(%eax), %ymm4, %ymm3{%k2}{z}
vpermt2w (%eax,%ebx,4), %ymm1, %ymm2
vpermt2w 0x14(%eax,%ecx,8), %ymm4, %ymm5{%k1}
vpermt2w %zmm0, %zmm1, %zmm2
vpermt2w %zmm7, %zmm4, %zmm5{%k1}
vpermt2w %zmm2, %zmm4, %zmm3{%k2}{z}
vpermt2w (%eax), %zmm1, %zmm2
vpermt2w 0x10(%eax), %zmm4, %zmm5{%k1}
vpermt2w 0x12345(%eax), %zmm4, %zmm3{%k2}{z}
vpermt2w (%eax,%ebx,4), %zmm1, %zmm2
vpermt2w 0x14(%eax,%ecx,8), %zmm4, %zmm5{%k1}
vpermt2d %xmm0, %xmm1, %xmm2
vpermt2d %xmm7, %xmm4, %xmm5{%k1}
vpermt2d %xmm2, %xmm4, %xmm3{%k2}{z}
vpermt2d (%eax), %xmm1, %xmm2
vpermt2d 0x10(%eax), %xmm4, %xmm5{%k1}
vpermt2d 0x12345(%eax), %xmm4, %xmm3{%k2}{z}
vpermt2d (%eax,%ebx,4), %xmm1, %xmm2
vpermt2d 0x14(%eax,%ecx,8), %xmm4, %xmm5{%k1}
vpermt2d (%edx){1to4}, %xmm4, %xmm5
vpermt2d 0x73(%edx){1to4}, %xmm4, %xmm5{%k4}
vpermt2d -0x8(%edx){1to4}, %xmm0, %xmm1{%k4}{z}
vpermt2d %ymm0, %ymm1, %ymm2
vpermt2d %ymm7, %ymm4, %ymm5{%k1}
vpermt2d %ymm2, %ymm4, %ymm3{%k2}{z}
vpermt2d (%eax), %ymm1, %ymm2
vpermt2d 0x10(%eax), %ymm4, %ymm5{%k1}
vpermt2d 0x12345(%eax), %ymm4, %ymm3{%k2}{z}
vpermt2d (%eax,%ebx,4), %ymm1, %ymm2
vpermt2d 0x14(%eax,%ecx,8), %ymm4, %ymm5{%k1}
vpermt2d (%edx){1to8}, %ymm4, %ymm5
vpermt2d 0x73(%edx){1to8}, %ymm4, %ymm5{%k4}
vpermt2d -0x8(%edx){1to8}, %ymm0, %ymm1{%k4}{z}
vpermt2d %zmm0, %zmm1, %zmm2
vpermt2d %zmm7, %zmm4, %zmm5{%k1}
vpermt2d %zmm2, %zmm4, %zmm3{%k2}{z}
vpermt2d (%eax), %zmm1, %zmm2
vpermt2d 0x10(%eax), %zmm4, %zmm5{%k1}
vpermt2d 0x12345(%eax), %zmm4, %zmm3{%k2}{z}
vpermt2d (%eax,%ebx,4), %zmm1, %zmm2
vpermt2d 0x14(%eax,%ecx,8), %zmm4, %zmm5{%k1}
vpermt2d (%edx){1to16}, %zmm4, %zmm5
vpermt2d 0x73(%edx){1to16}, %zmm4, %zmm5{%k4}
vpermt2d -0x8(%edx){1to16}, %zmm0, %zmm1{%k4}{z}
vpermt2q %xmm0, %xmm1, %xmm2
vpermt2q %xmm7, %xmm4, %xmm5{%k1}
vpermt2q %xmm2, %xmm4, %xmm3{%k2}{z}
vpermt2q (%eax), %xmm1, %xmm2
vpermt2q 0x10(%eax), %xmm4, %xmm5{%k1}
vpermt2q 0x12345(%eax), %xmm4, %xmm3{%k2}{z}
vpermt2q (%eax,%ebx,4), %xmm1, %xmm2
vpermt2q 0x14(%eax,%ecx,8), %xmm4, %xmm5{%k1}
vpermt2q (%edx){1to2}, %xmm4, %xmm5
vpermt2q 0x73(%edx){1to2}, %xmm4, %xmm5{%k4}
vpermt2q -0x8(%edx){1to2}, %xmm0, %xmm1{%k4}{z}
vpermt2q %ymm0, %ymm1, %ymm2
vpermt2q %ymm7, %ymm4, %ymm5{%k1}
vpermt2q %ymm2, %ymm4, %ymm3{%k2}{z}
vpermt2q (%eax), %ymm1, %ymm2
vpermt2q 0x10(%eax), %ymm4, %ymm5{%k1}
vpermt2q 0x12345(%eax), %ymm4, %ymm3{%k2}{z}
vpermt2q (%eax,%ebx,4), %ymm1, %ymm2
vpermt2q 0x14(%eax,%ecx,8), %ymm4, %ymm5{%k1}
vpermt2q (%edx){1to4}, %ymm4, %ymm5
vpermt2q 0x73(%edx){1to4}, %ymm4, %ymm5{%k4}
vpermt2q -0x8(%edx){1to4}, %ymm0, %ymm1{%k4}{z}
vpermt2q %zmm0, %zmm1, %zmm2
vpermt2q %zmm7, %zmm4, %zmm5{%k1}
vpermt2q %zmm2, %zmm4, %zmm3{%k2}{z}
vpermt2q (%eax), %zmm1, %zmm2
vpermt2q 0x10(%eax), %zmm4, %zmm5{%k1}
vpermt2q 0x12345(%eax), %zmm4, %zmm3{%k2}{z}
vpermt2q (%eax,%ebx,4), %zmm1, %zmm2
vpermt2q 0x14(%eax,%ecx,8), %zmm4, %zmm5{%k1}
vpermt2q (%edx){1to8}, %zmm4, %zmm5
vpermt2q 0x73(%edx){1to8}, %zmm4, %zmm5{%k4}
vpermt2q -0x8(%edx){1to8}, %zmm0, %zmm1{%k4}{z}
vpmultishiftqb %xmm0, %xmm1, %xmm2
vpmultishiftqb %xmm7, %xmm4, %xmm5{%k1}
vpmultishiftqb %xmm2, %xmm4, %xmm3{%k2}{z}
vpmultishiftqb (%eax), %xmm1, %xmm2
vpmultishiftqb 0x10(%eax), %xmm4, %xmm5{%k1}
vpmultishiftqb 0x12345(%eax), %xmm4, %xmm3{%k2}{z}
vpmultishiftqb (%eax,%ebx,4), %xmm1, %xmm2
vpmultishiftqb 0x14(%eax,%ecx,8), %xmm4, %xmm5{%k1}
vpmultishiftqb (%edx){1to2}, %xmm4, %xmm5
vpmultishiftqb 0x73(%edx){1to2}, %xmm4, %xmm5{%k4}
vpmultishiftqb -0x8(%edx){1to2}, %xmm0, %xmm1{%k4}{z}
vpmultishiftqb %ymm0, %ymm1, %ymm2
vpmultishiftqb %ymm7, %ymm4, %ymm5{%k1}
vpmultishiftqb %ymm2, %ymm4, %ymm3{%k2}{z}
vpmultishiftqb (%eax), %ymm1, %ymm2
vpmultishiftqb 0x10(%eax), %ymm4, %ymm5{%k1}
vpmultishiftqb 0x12345(%eax), %ymm4, %ymm3{%k2}{z}
vpmultishiftqb (%eax,%ebx,4), %ymm1, %ymm2
vpmultishiftqb 0x14(%eax,%ecx,8), %ymm4, %ymm5{%k1}
vpmultishiftqb (%edx){1to4}, %ymm4, %ymm5
vpmultishiftqb 0x73(%edx){1to4}, %ymm4, %ymm5{%k4}
vpmultishiftqb -0x8(%edx){1to4}, %ymm0, %ymm1{%k4}{z}
vpmultishiftqb %zmm0, %zmm1, %zmm2
vpmultishiftqb %zmm7, %zmm4, %zmm5{%k1}
vpmultishiftqb %zmm2, %zmm4, %zmm3{%k2}{z}
vpmultishiftqb (%eax), %zmm1, %zmm2
vpmultishiftqb 0x10(%eax), %zmm4, %zmm5{%k1}
vpmultishiftqb 0x12345(%eax), %zmm4, %zmm3{%k2}{z}
vpmultishiftqb (%eax,%ebx,4), %zmm1, %zmm2
vpmultishiftqb 0x14(%eax,%ecx,8), %zmm4, %zmm5{%k1}
vpmultishiftqb (%edx){1to8}, %zmm4, %zmm5
vpmultishiftqb 0x73(%edx){1to8}, %zmm4, %zmm5{%k4}
vpmultishiftqb -0x8(%edx){1to8}, %zmm0, %zmm1{%k4}{z}
.size libdis_test, [.-libdis_test]
|
Assembly
|
package com.gen.lab1.Strategies.Voice
import android.util.Log
import com.gen.lab1.Interfaces.IQuackBehavior
/**
* Created by Fenix on 12.03.2016.
*/
class MuteQuackBehavior : IQuackBehavior {
override fun quack() {
}
}
|
Kotlin
|
module summary
include("ops/summaries.jl")
include("summary_writer.jl")
using .summary_ops
end
|
Julia
|
<?xml version="1.0" encoding="UTF-8"?>
<!--
*** GENERATED FROM project.xml - DO NOT EDIT ***
*** EDIT ../build.xml INSTEAD ***
For the purpose of easier reading the script
is divided into following sections:
- initialization
- compilation
- jar
- execution
- debugging
- javadoc
- test compilation
- test execution
- test debugging
- applet
- cleanup
-->
<project xmlns:j2seproject1="http://www.netbeans.org/ns/j2se-project/1" xmlns:j2seproject3="http://www.netbeans.org/ns/j2se-project/3" xmlns:jaxrpc="http://www.netbeans.org/ns/j2se-project/jax-rpc" basedir=".." default="default" name="ClienteV2-impl">
<fail message="Please build using Ant 1.8.0 or higher.">
<condition>
<not>
<antversion atleast="1.8.0"/>
</not>
</condition>
</fail>
<target depends="test,jar,javadoc" description="Build and test whole project." name="default"/>
<!--
======================
INITIALIZATION SECTION
======================
-->
<target name="-pre-init">
<!-- Empty placeholder for easier customization. -->
<!-- You can override this target in the ../build.xml file. -->
</target>
<target depends="-pre-init" name="-init-private">
<property file="nbproject/private/config.properties"/>
<property file="nbproject/private/configs/${config}.properties"/>
<property file="nbproject/private/private.properties"/>
</target>
<target depends="-pre-init,-init-private" name="-init-user">
<property file="${user.properties.file}"/>
<!-- The two properties below are usually overridden -->
<!-- by the active platform. Just a fallback. -->
<property name="default.javac.source" value="1.4"/>
<property name="default.javac.target" value="1.4"/>
</target>
<target depends="-pre-init,-init-private,-init-user" name="-init-project">
<property file="nbproject/configs/${config}.properties"/>
<property file="nbproject/project.properties"/>
</target>
<target depends="-pre-init,-init-private,-init-user,-init-project,-init-macrodef-property" name="-do-init">
<property name="platform.java" value="${java.home}/bin/java"/>
<available file="${manifest.file}" property="manifest.available"/>
<condition property="splashscreen.available">
<and>
<not>
<equals arg1="${application.splash}" arg2="" trim="true"/>
</not>
<available file="${application.splash}"/>
</and>
</condition>
<condition property="main.class.available">
<and>
<isset property="main.class"/>
<not>
<equals arg1="${main.class}" arg2="" trim="true"/>
</not>
</and>
</condition>
<condition property="profile.available">
<and>
<isset property="javac.profile"/>
<length length="0" string="${javac.profile}" when="greater"/>
<matches pattern="1\.[89](\..*)?" string="${javac.source}"/>
</and>
</condition>
<condition property="do.archive">
<or>
<not>
<istrue value="${jar.archive.disabled}"/>
</not>
<istrue value="${not.archive.disabled}"/>
</or>
</condition>
<condition property="do.mkdist">
<and>
<isset property="do.archive"/>
<isset property="libs.CopyLibs.classpath"/>
<not>
<istrue value="${mkdist.disabled}"/>
</not>
</and>
</condition>
<condition property="do.archive+manifest.available">
<and>
<isset property="manifest.available"/>
<istrue value="${do.archive}"/>
</and>
</condition>
<condition property="do.archive+main.class.available">
<and>
<isset property="main.class.available"/>
<istrue value="${do.archive}"/>
</and>
</condition>
<condition property="do.archive+splashscreen.available">
<and>
<isset property="splashscreen.available"/>
<istrue value="${do.archive}"/>
</and>
</condition>
<condition property="do.archive+profile.available">
<and>
<isset property="profile.available"/>
<istrue value="${do.archive}"/>
</and>
</condition>
<condition property="have.tests">
<or>
<available file="${test.src.dir}"/>
</or>
</condition>
<condition property="have.sources">
<or>
<available file="${src.dir}"/>
</or>
</condition>
<condition property="netbeans.home+have.tests">
<and>
<isset property="netbeans.home"/>
<isset property="have.tests"/>
</and>
</condition>
<condition property="no.javadoc.preview">
<and>
<isset property="javadoc.preview"/>
<isfalse value="${javadoc.preview}"/>
</and>
</condition>
<property name="run.jvmargs" value=""/>
<property name="run.jvmargs.ide" value=""/>
<property name="javac.compilerargs" value=""/>
<property name="work.dir" value="${basedir}"/>
<condition property="no.deps">
<and>
<istrue value="${no.dependencies}"/>
</and>
</condition>
<property name="javac.debug" value="true"/>
<property name="javadoc.preview" value="true"/>
<property name="application.args" value=""/>
<property name="source.encoding" value="${file.encoding}"/>
<property name="runtime.encoding" value="${source.encoding}"/>
<condition property="javadoc.encoding.used" value="${javadoc.encoding}">
<and>
<isset property="javadoc.encoding"/>
<not>
<equals arg1="${javadoc.encoding}" arg2=""/>
</not>
</and>
</condition>
<property name="javadoc.encoding.used" value="${source.encoding}"/>
<property name="includes" value="**"/>
<property name="excludes" value=""/>
<property name="do.depend" value="false"/>
<condition property="do.depend.true">
<istrue value="${do.depend}"/>
</condition>
<path id="endorsed.classpath.path" path="${endorsed.classpath}"/>
<condition else="" property="endorsed.classpath.cmd.line.arg" value="-Xbootclasspath/p:'${toString:endorsed.classpath.path}'">
<and>
<isset property="endorsed.classpath"/>
<not>
<equals arg1="${endorsed.classpath}" arg2="" trim="true"/>
</not>
</and>
</condition>
<condition else="" property="javac.profile.cmd.line.arg" value="-profile ${javac.profile}">
<isset property="profile.available"/>
</condition>
<condition else="false" property="jdkBug6558476">
<and>
<matches pattern="1\.[56]" string="${java.specification.version}"/>
<not>
<os family="unix"/>
</not>
</and>
</condition>
<property name="javac.fork" value="${jdkBug6558476}"/>
<property name="jar.index" value="false"/>
<property name="jar.index.metainf" value="${jar.index}"/>
<property name="copylibs.rebase" value="true"/>
<available file="${meta.inf.dir}/persistence.xml" property="has.persistence.xml"/>
<condition property="junit.available">
<or>
<available classname="org.junit.Test" classpath="${run.test.classpath}"/>
<available classname="junit.framework.Test" classpath="${run.test.classpath}"/>
</or>
</condition>
<condition property="testng.available">
<available classname="org.testng.annotations.Test" classpath="${run.test.classpath}"/>
</condition>
<condition property="junit+testng.available">
<and>
<istrue value="${junit.available}"/>
<istrue value="${testng.available}"/>
</and>
</condition>
<condition else="testng" property="testng.mode" value="mixed">
<istrue value="${junit+testng.available}"/>
</condition>
<condition else="" property="testng.debug.mode" value="-mixed">
<istrue value="${junit+testng.available}"/>
</condition>
</target>
<target name="-post-init">
<!-- Empty placeholder for easier customization. -->
<!-- You can override this target in the ../build.xml file. -->
</target>
<target depends="-pre-init,-init-private,-init-user,-init-project,-do-init" name="-init-check">
<fail unless="src.dir">Must set src.dir</fail>
<fail unless="test.src.dir">Must set test.src.dir</fail>
<fail unless="build.dir">Must set build.dir</fail>
<fail unless="dist.dir">Must set dist.dir</fail>
<fail unless="build.classes.dir">Must set build.classes.dir</fail>
<fail unless="dist.javadoc.dir">Must set dist.javadoc.dir</fail>
<fail unless="build.test.classes.dir">Must set build.test.classes.dir</fail>
<fail unless="build.test.results.dir">Must set build.test.results.dir</fail>
<fail unless="build.classes.excludes">Must set build.classes.excludes</fail>
<fail unless="dist.jar">Must set dist.jar</fail>
</target>
<target name="-init-macrodef-property">
<macrodef name="property" uri="http://www.netbeans.org/ns/j2se-project/1">
<attribute name="name"/>
<attribute name="value"/>
<sequential>
<property name="@{name}" value="${@{value}}"/>
</sequential>
</macrodef>
</target>
<target depends="-init-ap-cmdline-properties" if="ap.supported.internal" name="-init-macrodef-javac-with-processors">
<macrodef name="javac" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${src.dir}" name="srcdir"/>
<attribute default="${build.classes.dir}" name="destdir"/>
<attribute default="${javac.classpath}" name="classpath"/>
<attribute default="${javac.processorpath}" name="processorpath"/>
<attribute default="${build.generated.sources.dir}/ap-source-output" name="apgeneratedsrcdir"/>
<attribute default="${includes}" name="includes"/>
<attribute default="${excludes}" name="excludes"/>
<attribute default="${javac.debug}" name="debug"/>
<attribute default="${empty.dir}" name="sourcepath"/>
<attribute default="${empty.dir}" name="gensrcdir"/>
<element name="customize" optional="true"/>
<sequential>
<property location="${build.dir}/empty" name="empty.dir"/>
<mkdir dir="${empty.dir}"/>
<mkdir dir="@{apgeneratedsrcdir}"/>
<javac debug="@{debug}" deprecation="${javac.deprecation}" destdir="@{destdir}" encoding="${source.encoding}" excludes="@{excludes}" fork="${javac.fork}" includeantruntime="false" includes="@{includes}" source="${javac.source}" sourcepath="@{sourcepath}" srcdir="@{srcdir}" target="${javac.target}" tempdir="${java.io.tmpdir}">
<src>
<dirset dir="@{gensrcdir}" erroronmissingdir="false">
<include name="*"/>
</dirset>
</src>
<classpath>
<path path="@{classpath}"/>
</classpath>
<compilerarg line="${endorsed.classpath.cmd.line.arg}"/>
<compilerarg line="${javac.profile.cmd.line.arg}"/>
<compilerarg line="${javac.compilerargs}"/>
<compilerarg value="-processorpath"/>
<compilerarg path="@{processorpath}:${empty.dir}"/>
<compilerarg line="${ap.processors.internal}"/>
<compilerarg line="${annotation.processing.processor.options}"/>
<compilerarg value="-s"/>
<compilerarg path="@{apgeneratedsrcdir}"/>
<compilerarg line="${ap.proc.none.internal}"/>
<customize/>
</javac>
</sequential>
</macrodef>
</target>
<target depends="-init-ap-cmdline-properties" name="-init-macrodef-javac-without-processors" unless="ap.supported.internal">
<macrodef name="javac" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${src.dir}" name="srcdir"/>
<attribute default="${build.classes.dir}" name="destdir"/>
<attribute default="${javac.classpath}" name="classpath"/>
<attribute default="${javac.processorpath}" name="processorpath"/>
<attribute default="${build.generated.sources.dir}/ap-source-output" name="apgeneratedsrcdir"/>
<attribute default="${includes}" name="includes"/>
<attribute default="${excludes}" name="excludes"/>
<attribute default="${javac.debug}" name="debug"/>
<attribute default="${empty.dir}" name="sourcepath"/>
<attribute default="${empty.dir}" name="gensrcdir"/>
<element name="customize" optional="true"/>
<sequential>
<property location="${build.dir}/empty" name="empty.dir"/>
<mkdir dir="${empty.dir}"/>
<javac debug="@{debug}" deprecation="${javac.deprecation}" destdir="@{destdir}" encoding="${source.encoding}" excludes="@{excludes}" fork="${javac.fork}" includeantruntime="false" includes="@{includes}" source="${javac.source}" sourcepath="@{sourcepath}" srcdir="@{srcdir}" target="${javac.target}" tempdir="${java.io.tmpdir}">
<src>
<dirset dir="@{gensrcdir}" erroronmissingdir="false">
<include name="*"/>
</dirset>
</src>
<classpath>
<path path="@{classpath}"/>
</classpath>
<compilerarg line="${endorsed.classpath.cmd.line.arg}"/>
<compilerarg line="${javac.profile.cmd.line.arg}"/>
<compilerarg line="${javac.compilerargs}"/>
<customize/>
</javac>
</sequential>
</macrodef>
</target>
<target depends="-init-macrodef-javac-with-processors,-init-macrodef-javac-without-processors" name="-init-macrodef-javac">
<macrodef name="depend" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${src.dir}" name="srcdir"/>
<attribute default="${build.classes.dir}" name="destdir"/>
<attribute default="${javac.classpath}" name="classpath"/>
<sequential>
<depend cache="${build.dir}/depcache" destdir="@{destdir}" excludes="${excludes}" includes="${includes}" srcdir="@{srcdir}">
<classpath>
<path path="@{classpath}"/>
</classpath>
</depend>
</sequential>
</macrodef>
<macrodef name="force-recompile" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${build.classes.dir}" name="destdir"/>
<sequential>
<fail unless="javac.includes">Must set javac.includes</fail>
<pathconvert pathsep="${line.separator}" property="javac.includes.binary">
<path>
<filelist dir="@{destdir}" files="${javac.includes}"/>
</path>
<globmapper from="*.java" to="*.class"/>
</pathconvert>
<tempfile deleteonexit="true" property="javac.includesfile.binary"/>
<echo file="${javac.includesfile.binary}" message="${javac.includes.binary}"/>
<delete>
<files includesfile="${javac.includesfile.binary}"/>
</delete>
<delete>
<fileset file="${javac.includesfile.binary}"/>
</delete>
</sequential>
</macrodef>
</target>
<target if="${junit.available}" name="-init-macrodef-junit-init">
<condition else="false" property="nb.junit.batch" value="true">
<and>
<istrue value="${junit.available}"/>
<not>
<isset property="test.method"/>
</not>
</and>
</condition>
<condition else="false" property="nb.junit.single" value="true">
<and>
<istrue value="${junit.available}"/>
<isset property="test.method"/>
</and>
</condition>
</target>
<target name="-init-test-properties">
<property name="test.binaryincludes" value="<nothing>"/>
<property name="test.binarytestincludes" value=""/>
<property name="test.binaryexcludes" value=""/>
</target>
<target if="${nb.junit.single}" name="-init-macrodef-junit-single" unless="${nb.junit.batch}">
<macrodef name="junit" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${includes}" name="includes"/>
<attribute default="${excludes}" name="excludes"/>
<attribute default="**" name="testincludes"/>
<attribute default="" name="testmethods"/>
<element name="customize" optional="true"/>
<sequential>
<property name="junit.forkmode" value="perTest"/>
<junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="${junit.forkmode}" showoutput="true" tempdir="${build.dir}">
<test methods="@{testmethods}" name="@{testincludes}" todir="${build.test.results.dir}"/>
<syspropertyset>
<propertyref prefix="test-sys-prop."/>
<mapper from="test-sys-prop.*" to="*" type="glob"/>
</syspropertyset>
<formatter type="brief" usefile="false"/>
<formatter type="xml"/>
<jvmarg value="-ea"/>
<customize/>
</junit>
</sequential>
</macrodef>
</target>
<target depends="-init-test-properties" if="${nb.junit.batch}" name="-init-macrodef-junit-batch" unless="${nb.junit.single}">
<macrodef name="junit" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${includes}" name="includes"/>
<attribute default="${excludes}" name="excludes"/>
<attribute default="**" name="testincludes"/>
<attribute default="" name="testmethods"/>
<element name="customize" optional="true"/>
<sequential>
<property name="junit.forkmode" value="perTest"/>
<junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="${junit.forkmode}" showoutput="true" tempdir="${build.dir}">
<batchtest todir="${build.test.results.dir}">
<fileset dir="${test.src.dir}" excludes="@{excludes},${excludes}" includes="@{includes}">
<filename name="@{testincludes}"/>
</fileset>
<fileset dir="${build.test.classes.dir}" excludes="@{excludes},${excludes},${test.binaryexcludes}" includes="${test.binaryincludes}">
<filename name="${test.binarytestincludes}"/>
</fileset>
</batchtest>
<syspropertyset>
<propertyref prefix="test-sys-prop."/>
<mapper from="test-sys-prop.*" to="*" type="glob"/>
</syspropertyset>
<formatter type="brief" usefile="false"/>
<formatter type="xml"/>
<jvmarg value="-ea"/>
<customize/>
</junit>
</sequential>
</macrodef>
</target>
<target depends="-init-macrodef-junit-init,-init-macrodef-junit-single, -init-macrodef-junit-batch" if="${junit.available}" name="-init-macrodef-junit"/>
<target if="${testng.available}" name="-init-macrodef-testng">
<macrodef name="testng" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${includes}" name="includes"/>
<attribute default="${excludes}" name="excludes"/>
<attribute default="**" name="testincludes"/>
<attribute default="" name="testmethods"/>
<element name="customize" optional="true"/>
<sequential>
<condition else="" property="testng.methods.arg" value="@{testincludes}.@{testmethods}">
<isset property="test.method"/>
</condition>
<union id="test.set">
<fileset dir="${test.src.dir}" excludes="@{excludes},**/*.xml,${excludes}" includes="@{includes}">
<filename name="@{testincludes}"/>
</fileset>
</union>
<taskdef classname="org.testng.TestNGAntTask" classpath="${run.test.classpath}" name="testng"/>
<testng classfilesetref="test.set" failureProperty="tests.failed" listeners="org.testng.reporters.VerboseReporter" methods="${testng.methods.arg}" mode="${testng.mode}" outputdir="${build.test.results.dir}" suitename="ClienteV2" testname="TestNG tests" workingDir="${work.dir}">
<xmlfileset dir="${build.test.classes.dir}" includes="@{testincludes}"/>
<propertyset>
<propertyref prefix="test-sys-prop."/>
<mapper from="test-sys-prop.*" to="*" type="glob"/>
</propertyset>
<customize/>
</testng>
</sequential>
</macrodef>
</target>
<target name="-init-macrodef-test-impl">
<macrodef name="test-impl" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${includes}" name="includes"/>
<attribute default="${excludes}" name="excludes"/>
<attribute default="**" name="testincludes"/>
<attribute default="" name="testmethods"/>
<element implicit="true" name="customize" optional="true"/>
<sequential>
<echo>No tests executed.</echo>
</sequential>
</macrodef>
</target>
<target depends="-init-macrodef-junit" if="${junit.available}" name="-init-macrodef-junit-impl">
<macrodef name="test-impl" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${includes}" name="includes"/>
<attribute default="${excludes}" name="excludes"/>
<attribute default="**" name="testincludes"/>
<attribute default="" name="testmethods"/>
<element implicit="true" name="customize" optional="true"/>
<sequential>
<j2seproject3:junit excludes="@{excludes}" includes="@{includes}" testincludes="@{testincludes}" testmethods="@{testmethods}">
<customize/>
</j2seproject3:junit>
</sequential>
</macrodef>
</target>
<target depends="-init-macrodef-testng" if="${testng.available}" name="-init-macrodef-testng-impl">
<macrodef name="test-impl" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${includes}" name="includes"/>
<attribute default="${excludes}" name="excludes"/>
<attribute default="**" name="testincludes"/>
<attribute default="" name="testmethods"/>
<element implicit="true" name="customize" optional="true"/>
<sequential>
<j2seproject3:testng excludes="@{excludes}" includes="@{includes}" testincludes="@{testincludes}" testmethods="@{testmethods}">
<customize/>
</j2seproject3:testng>
</sequential>
</macrodef>
</target>
<target depends="-init-macrodef-test-impl,-init-macrodef-junit-impl,-init-macrodef-testng-impl" name="-init-macrodef-test">
<macrodef name="test" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${includes}" name="includes"/>
<attribute default="${excludes}" name="excludes"/>
<attribute default="**" name="testincludes"/>
<attribute default="" name="testmethods"/>
<sequential>
<j2seproject3:test-impl excludes="@{excludes}" includes="@{includes}" testincludes="@{testincludes}" testmethods="@{testmethods}">
<customize>
<classpath>
<path path="${run.test.classpath}"/>
</classpath>
<jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
<jvmarg line="${run.jvmargs}"/>
<jvmarg line="${run.jvmargs.ide}"/>
</customize>
</j2seproject3:test-impl>
</sequential>
</macrodef>
</target>
<target if="${junit.available}" name="-init-macrodef-junit-debug" unless="${nb.junit.batch}">
<macrodef name="junit-debug" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${includes}" name="includes"/>
<attribute default="${excludes}" name="excludes"/>
<attribute default="**" name="testincludes"/>
<attribute default="" name="testmethods"/>
<element name="customize" optional="true"/>
<sequential>
<property name="junit.forkmode" value="perTest"/>
<junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="${junit.forkmode}" showoutput="true" tempdir="${build.dir}">
<test methods="@{testmethods}" name="@{testincludes}" todir="${build.test.results.dir}"/>
<syspropertyset>
<propertyref prefix="test-sys-prop."/>
<mapper from="test-sys-prop.*" to="*" type="glob"/>
</syspropertyset>
<formatter type="brief" usefile="false"/>
<formatter type="xml"/>
<jvmarg value="-ea"/>
<jvmarg line="${debug-args-line}"/>
<jvmarg value="-Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/>
<customize/>
</junit>
</sequential>
</macrodef>
</target>
<target depends="-init-test-properties" if="${nb.junit.batch}" name="-init-macrodef-junit-debug-batch">
<macrodef name="junit-debug" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${includes}" name="includes"/>
<attribute default="${excludes}" name="excludes"/>
<attribute default="**" name="testincludes"/>
<attribute default="" name="testmethods"/>
<element name="customize" optional="true"/>
<sequential>
<property name="junit.forkmode" value="perTest"/>
<junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="${junit.forkmode}" showoutput="true" tempdir="${build.dir}">
<batchtest todir="${build.test.results.dir}">
<fileset dir="${test.src.dir}" excludes="@{excludes},${excludes}" includes="@{includes}">
<filename name="@{testincludes}"/>
</fileset>
<fileset dir="${build.test.classes.dir}" excludes="@{excludes},${excludes},${test.binaryexcludes}" includes="${test.binaryincludes}">
<filename name="${test.binarytestincludes}"/>
</fileset>
</batchtest>
<syspropertyset>
<propertyref prefix="test-sys-prop."/>
<mapper from="test-sys-prop.*" to="*" type="glob"/>
</syspropertyset>
<formatter type="brief" usefile="false"/>
<formatter type="xml"/>
<jvmarg value="-ea"/>
<jvmarg line="${debug-args-line}"/>
<jvmarg value="-Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/>
<customize/>
</junit>
</sequential>
</macrodef>
</target>
<target depends="-init-macrodef-junit-debug,-init-macrodef-junit-debug-batch" if="${junit.available}" name="-init-macrodef-junit-debug-impl">
<macrodef name="test-debug-impl" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${includes}" name="includes"/>
<attribute default="${excludes}" name="excludes"/>
<attribute default="**" name="testincludes"/>
<attribute default="" name="testmethods"/>
<element implicit="true" name="customize" optional="true"/>
<sequential>
<j2seproject3:junit-debug excludes="@{excludes}" includes="@{includes}" testincludes="@{testincludes}" testmethods="@{testmethods}">
<customize/>
</j2seproject3:junit-debug>
</sequential>
</macrodef>
</target>
<target if="${testng.available}" name="-init-macrodef-testng-debug">
<macrodef name="testng-debug" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${main.class}" name="testClass"/>
<attribute default="" name="testMethod"/>
<element name="customize2" optional="true"/>
<sequential>
<condition else="-testclass @{testClass}" property="test.class.or.method" value="-methods @{testClass}.@{testMethod}">
<isset property="test.method"/>
</condition>
<condition else="-suitename ClienteV2 -testname @{testClass} ${test.class.or.method}" property="testng.cmd.args" value="@{testClass}">
<matches pattern=".*\.xml" string="@{testClass}"/>
</condition>
<delete dir="${build.test.results.dir}" quiet="true"/>
<mkdir dir="${build.test.results.dir}"/>
<j2seproject3:debug classname="org.testng.TestNG" classpath="${debug.test.classpath}">
<customize>
<customize2/>
<jvmarg value="-ea"/>
<arg line="${testng.debug.mode}"/>
<arg line="-d ${build.test.results.dir}"/>
<arg line="-listener org.testng.reporters.VerboseReporter"/>
<arg line="${testng.cmd.args}"/>
</customize>
</j2seproject3:debug>
</sequential>
</macrodef>
</target>
<target depends="-init-macrodef-testng-debug" if="${testng.available}" name="-init-macrodef-testng-debug-impl">
<macrodef name="testng-debug-impl" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${main.class}" name="testClass"/>
<attribute default="" name="testMethod"/>
<element implicit="true" name="customize2" optional="true"/>
<sequential>
<j2seproject3:testng-debug testClass="@{testClass}" testMethod="@{testMethod}">
<customize2/>
</j2seproject3:testng-debug>
</sequential>
</macrodef>
</target>
<target depends="-init-macrodef-junit-debug-impl" if="${junit.available}" name="-init-macrodef-test-debug-junit">
<macrodef name="test-debug" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${includes}" name="includes"/>
<attribute default="${excludes}" name="excludes"/>
<attribute default="**" name="testincludes"/>
<attribute default="" name="testmethods"/>
<attribute default="${main.class}" name="testClass"/>
<attribute default="" name="testMethod"/>
<sequential>
<j2seproject3:test-debug-impl excludes="@{excludes}" includes="@{includes}" testincludes="@{testincludes}" testmethods="@{testmethods}">
<customize>
<classpath>
<path path="${run.test.classpath}"/>
</classpath>
<jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
<jvmarg line="${run.jvmargs}"/>
<jvmarg line="${run.jvmargs.ide}"/>
</customize>
</j2seproject3:test-debug-impl>
</sequential>
</macrodef>
</target>
<target depends="-init-macrodef-testng-debug-impl" if="${testng.available}" name="-init-macrodef-test-debug-testng">
<macrodef name="test-debug" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${includes}" name="includes"/>
<attribute default="${excludes}" name="excludes"/>
<attribute default="**" name="testincludes"/>
<attribute default="" name="testmethods"/>
<attribute default="${main.class}" name="testClass"/>
<attribute default="" name="testMethod"/>
<sequential>
<j2seproject3:testng-debug-impl testClass="@{testClass}" testMethod="@{testMethod}">
<customize2>
<syspropertyset>
<propertyref prefix="test-sys-prop."/>
<mapper from="test-sys-prop.*" to="*" type="glob"/>
</syspropertyset>
</customize2>
</j2seproject3:testng-debug-impl>
</sequential>
</macrodef>
</target>
<target depends="-init-macrodef-test-debug-junit,-init-macrodef-test-debug-testng" name="-init-macrodef-test-debug"/>
<!--
pre NB7.2 profiling section; consider it deprecated
-->
<target depends="-profile-pre-init, init, -profile-post-init, -profile-init-macrodef-profile, -profile-init-check" if="profiler.info.jvmargs.agent" name="profile-init"/>
<target if="profiler.info.jvmargs.agent" name="-profile-pre-init">
<!-- Empty placeholder for easier customization. -->
<!-- You can override this target in the ../build.xml file. -->
</target>
<target if="profiler.info.jvmargs.agent" name="-profile-post-init">
<!-- Empty placeholder for easier customization. -->
<!-- You can override this target in the ../build.xml file. -->
</target>
<target if="profiler.info.jvmargs.agent" name="-profile-init-macrodef-profile">
<macrodef name="resolve">
<attribute name="name"/>
<attribute name="value"/>
<sequential>
<property name="@{name}" value="${env.@{value}}"/>
</sequential>
</macrodef>
<macrodef name="profile">
<attribute default="${main.class}" name="classname"/>
<element name="customize" optional="true"/>
<sequential>
<property environment="env"/>
<resolve name="profiler.current.path" value="${profiler.info.pathvar}"/>
<java classname="@{classname}" dir="${profiler.info.dir}" fork="true" jvm="${profiler.info.jvm}">
<jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
<jvmarg value="${profiler.info.jvmargs.agent}"/>
<jvmarg line="${profiler.info.jvmargs}"/>
<env key="${profiler.info.pathvar}" path="${profiler.info.agentpath}:${profiler.current.path}"/>
<arg line="${application.args}"/>
<classpath>
<path path="${run.classpath}"/>
</classpath>
<syspropertyset>
<propertyref prefix="run-sys-prop."/>
<mapper from="run-sys-prop.*" to="*" type="glob"/>
</syspropertyset>
<customize/>
</java>
</sequential>
</macrodef>
</target>
<target depends="-profile-pre-init, init, -profile-post-init, -profile-init-macrodef-profile" if="profiler.info.jvmargs.agent" name="-profile-init-check">
<fail unless="profiler.info.jvm">Must set JVM to use for profiling in profiler.info.jvm</fail>
<fail unless="profiler.info.jvmargs.agent">Must set profiler agent JVM arguments in profiler.info.jvmargs.agent</fail>
</target>
<!--
end of pre NB7.2 profiling section
-->
<target depends="-init-debug-args" name="-init-macrodef-nbjpda">
<macrodef name="nbjpdastart" uri="http://www.netbeans.org/ns/j2se-project/1">
<attribute default="${main.class}" name="name"/>
<attribute default="${debug.classpath}" name="classpath"/>
<attribute default="" name="stopclassname"/>
<sequential>
<nbjpdastart addressproperty="jpda.address" name="@{name}" stopclassname="@{stopclassname}" transport="${debug-transport}">
<classpath>
<path path="@{classpath}"/>
</classpath>
</nbjpdastart>
</sequential>
</macrodef>
<macrodef name="nbjpdareload" uri="http://www.netbeans.org/ns/j2se-project/1">
<attribute default="${build.classes.dir}" name="dir"/>
<sequential>
<nbjpdareload>
<fileset dir="@{dir}" includes="${fix.classes}">
<include name="${fix.includes}*.class"/>
</fileset>
</nbjpdareload>
</sequential>
</macrodef>
</target>
<target name="-init-debug-args">
<property name="version-output" value="java version "${ant.java.version}"/>
<condition property="have-jdk-older-than-1.4">
<or>
<contains string="${version-output}" substring="java version "1.0"/>
<contains string="${version-output}" substring="java version "1.1"/>
<contains string="${version-output}" substring="java version "1.2"/>
<contains string="${version-output}" substring="java version "1.3"/>
</or>
</condition>
<condition else="-Xdebug" property="debug-args-line" value="-Xdebug -Xnoagent -Djava.compiler=none">
<istrue value="${have-jdk-older-than-1.4}"/>
</condition>
<condition else="dt_socket" property="debug-transport-by-os" value="dt_shmem">
<os family="windows"/>
</condition>
<condition else="${debug-transport-by-os}" property="debug-transport" value="${debug.transport}">
<isset property="debug.transport"/>
</condition>
</target>
<target depends="-init-debug-args" name="-init-macrodef-debug">
<macrodef name="debug" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${main.class}" name="classname"/>
<attribute default="${debug.classpath}" name="classpath"/>
<element name="customize" optional="true"/>
<sequential>
<java classname="@{classname}" dir="${work.dir}" fork="true">
<jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
<jvmarg line="${debug-args-line}"/>
<jvmarg value="-Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/>
<jvmarg value="-Dfile.encoding=${runtime.encoding}"/>
<redirector errorencoding="${runtime.encoding}" inputencoding="${runtime.encoding}" outputencoding="${runtime.encoding}"/>
<jvmarg line="${run.jvmargs}"/>
<jvmarg line="${run.jvmargs.ide}"/>
<classpath>
<path path="@{classpath}"/>
</classpath>
<syspropertyset>
<propertyref prefix="run-sys-prop."/>
<mapper from="run-sys-prop.*" to="*" type="glob"/>
</syspropertyset>
<customize/>
</java>
</sequential>
</macrodef>
</target>
<target name="-init-macrodef-java">
<macrodef name="java" uri="http://www.netbeans.org/ns/j2se-project/1">
<attribute default="${main.class}" name="classname"/>
<attribute default="${run.classpath}" name="classpath"/>
<attribute default="jvm" name="jvm"/>
<element name="customize" optional="true"/>
<sequential>
<java classname="@{classname}" dir="${work.dir}" fork="true">
<jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
<jvmarg value="-Dfile.encoding=${runtime.encoding}"/>
<redirector errorencoding="${runtime.encoding}" inputencoding="${runtime.encoding}" outputencoding="${runtime.encoding}"/>
<jvmarg line="${run.jvmargs}"/>
<jvmarg line="${run.jvmargs.ide}"/>
<classpath>
<path path="@{classpath}"/>
</classpath>
<syspropertyset>
<propertyref prefix="run-sys-prop."/>
<mapper from="run-sys-prop.*" to="*" type="glob"/>
</syspropertyset>
<customize/>
</java>
</sequential>
</macrodef>
</target>
<target name="-init-macrodef-copylibs">
<macrodef name="copylibs" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${manifest.file}" name="manifest"/>
<element name="customize" optional="true"/>
<sequential>
<property location="${build.classes.dir}" name="build.classes.dir.resolved"/>
<pathconvert property="run.classpath.without.build.classes.dir">
<path path="${run.classpath}"/>
<map from="${build.classes.dir.resolved}" to=""/>
</pathconvert>
<pathconvert pathsep=" " property="jar.classpath">
<path path="${run.classpath.without.build.classes.dir}"/>
<chainedmapper>
<flattenmapper/>
<filtermapper>
<replacestring from=" " to="%20"/>
</filtermapper>
<globmapper from="*" to="lib/*"/>
</chainedmapper>
</pathconvert>
<taskdef classname="org.netbeans.modules.java.j2seproject.copylibstask.CopyLibs" classpath="${libs.CopyLibs.classpath}" name="copylibs"/>
<copylibs compress="${jar.compress}" excludeFromCopy="${copylibs.excludes}" index="${jar.index}" indexMetaInf="${jar.index.metainf}" jarfile="${dist.jar}" manifest="@{manifest}" rebase="${copylibs.rebase}" runtimeclasspath="${run.classpath.without.build.classes.dir}">
<fileset dir="${build.classes.dir}" excludes="${dist.archive.excludes}"/>
<manifest>
<attribute name="Class-Path" value="${jar.classpath}"/>
<customize/>
</manifest>
</copylibs>
</sequential>
</macrodef>
</target>
<target name="-init-presetdef-jar">
<presetdef name="jar" uri="http://www.netbeans.org/ns/j2se-project/1">
<jar compress="${jar.compress}" index="${jar.index}" jarfile="${dist.jar}">
<j2seproject1:fileset dir="${build.classes.dir}" excludes="${dist.archive.excludes}"/>
</jar>
</presetdef>
</target>
<target name="-init-ap-cmdline-properties">
<property name="annotation.processing.enabled" value="true"/>
<property name="annotation.processing.processors.list" value=""/>
<property name="annotation.processing.processor.options" value=""/>
<property name="annotation.processing.run.all.processors" value="true"/>
<property name="javac.processorpath" value="${javac.classpath}"/>
<property name="javac.test.processorpath" value="${javac.test.classpath}"/>
<condition property="ap.supported.internal" value="true">
<not>
<matches pattern="1\.[0-5](\..*)?" string="${javac.source}"/>
</not>
</condition>
</target>
<target depends="-init-ap-cmdline-properties" if="ap.supported.internal" name="-init-ap-cmdline-supported">
<condition else="" property="ap.processors.internal" value="-processor ${annotation.processing.processors.list}">
<isfalse value="${annotation.processing.run.all.processors}"/>
</condition>
<condition else="" property="ap.proc.none.internal" value="-proc:none">
<isfalse value="${annotation.processing.enabled}"/>
</condition>
</target>
<target depends="-init-ap-cmdline-properties,-init-ap-cmdline-supported" name="-init-ap-cmdline">
<property name="ap.cmd.line.internal" value=""/>
</target>
<target depends="-pre-init,-init-private,-init-user,-init-project,-do-init,-post-init,-init-check,-init-macrodef-property,-init-macrodef-javac,-init-macrodef-test,-init-macrodef-test-debug,-init-macrodef-nbjpda,-init-macrodef-debug,-init-macrodef-java,-init-presetdef-jar,-init-ap-cmdline" name="init"/>
<!--
===================
COMPILATION SECTION
===================
-->
<target name="-deps-jar-init" unless="built-jar.properties">
<property location="${build.dir}/built-jar.properties" name="built-jar.properties"/>
<delete file="${built-jar.properties}" quiet="true"/>
</target>
<target if="already.built.jar.${basedir}" name="-warn-already-built-jar">
<echo level="warn" message="Cycle detected: ClienteV2 was already built"/>
</target>
<target depends="init,-deps-jar-init" name="deps-jar" unless="no.deps">
<mkdir dir="${build.dir}"/>
<touch file="${built-jar.properties}" verbose="false"/>
<property file="${built-jar.properties}" prefix="already.built.jar."/>
<antcall target="-warn-already-built-jar"/>
<propertyfile file="${built-jar.properties}">
<entry key="${basedir}" value=""/>
</propertyfile>
</target>
<target depends="init,-check-automatic-build,-clean-after-automatic-build" name="-verify-automatic-build"/>
<target depends="init" name="-check-automatic-build">
<available file="${build.classes.dir}/.netbeans_automatic_build" property="netbeans.automatic.build"/>
</target>
<target depends="init" if="netbeans.automatic.build" name="-clean-after-automatic-build">
<antcall target="clean"/>
</target>
<target depends="init,deps-jar" name="-pre-pre-compile">
<mkdir dir="${build.classes.dir}"/>
</target>
<target name="-pre-compile">
<!-- Empty placeholder for easier customization. -->
<!-- You can override this target in the ../build.xml file. -->
</target>
<target if="do.depend.true" name="-compile-depend">
<pathconvert property="build.generated.subdirs">
<dirset dir="${build.generated.sources.dir}" erroronmissingdir="false">
<include name="*"/>
</dirset>
</pathconvert>
<j2seproject3:depend srcdir="${src.dir}:${build.generated.subdirs}"/>
</target>
<target depends="init,deps-jar,-pre-pre-compile,-pre-compile, -copy-persistence-xml,-compile-depend" if="have.sources" name="-do-compile">
<j2seproject3:javac gensrcdir="${build.generated.sources.dir}"/>
<copy todir="${build.classes.dir}">
<fileset dir="${src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
</copy>
</target>
<target if="has.persistence.xml" name="-copy-persistence-xml">
<mkdir dir="${build.classes.dir}/META-INF"/>
<copy todir="${build.classes.dir}/META-INF">
<fileset dir="${meta.inf.dir}" includes="persistence.xml orm.xml"/>
</copy>
</target>
<target name="-post-compile">
<!-- Empty placeholder for easier customization. -->
<!-- You can override this target in the ../build.xml file. -->
</target>
<target depends="init,deps-jar,-verify-automatic-build,-pre-pre-compile,-pre-compile,-do-compile,-post-compile" description="Compile project." name="compile"/>
<target name="-pre-compile-single">
<!-- Empty placeholder for easier customization. -->
<!-- You can override this target in the ../build.xml file. -->
</target>
<target depends="init,deps-jar,-pre-pre-compile" name="-do-compile-single">
<fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
<j2seproject3:force-recompile/>
<j2seproject3:javac excludes="" gensrcdir="${build.generated.sources.dir}" includes="${javac.includes}" sourcepath="${src.dir}"/>
</target>
<target name="-post-compile-single">
<!-- Empty placeholder for easier customization. -->
<!-- You can override this target in the ../build.xml file. -->
</target>
<target depends="init,deps-jar,-verify-automatic-build,-pre-pre-compile,-pre-compile-single,-do-compile-single,-post-compile-single" name="compile-single"/>
<!--
====================
JAR BUILDING SECTION
====================
-->
<target depends="init" name="-pre-pre-jar">
<dirname file="${dist.jar}" property="dist.jar.dir"/>
<mkdir dir="${dist.jar.dir}"/>
</target>
<target name="-pre-jar">
<!-- Empty placeholder for easier customization. -->
<!-- You can override this target in the ../build.xml file. -->
</target>
<target depends="init" if="do.archive" name="-do-jar-create-manifest" unless="manifest.available">
<tempfile deleteonexit="true" destdir="${build.dir}" property="tmp.manifest.file"/>
<touch file="${tmp.manifest.file}" verbose="false"/>
</target>
<target depends="init" if="do.archive+manifest.available" name="-do-jar-copy-manifest">
<tempfile deleteonexit="true" destdir="${build.dir}" property="tmp.manifest.file"/>
<copy file="${manifest.file}" tofile="${tmp.manifest.file}"/>
</target>
<target depends="init,-do-jar-create-manifest,-do-jar-copy-manifest" if="do.archive+main.class.available" name="-do-jar-set-mainclass">
<manifest file="${tmp.manifest.file}" mode="update">
<attribute name="Main-Class" value="${main.class}"/>
</manifest>
</target>
<target depends="init,-do-jar-create-manifest,-do-jar-copy-manifest" if="do.archive+profile.available" name="-do-jar-set-profile">
<manifest file="${tmp.manifest.file}" mode="update">
<attribute name="Profile" value="${javac.profile}"/>
</manifest>
</target>
<target depends="init,-do-jar-create-manifest,-do-jar-copy-manifest" if="do.archive+splashscreen.available" name="-do-jar-set-splashscreen">
<basename file="${application.splash}" property="splashscreen.basename"/>
<mkdir dir="${build.classes.dir}/META-INF"/>
<copy failonerror="false" file="${application.splash}" todir="${build.classes.dir}/META-INF"/>
<manifest file="${tmp.manifest.file}" mode="update">
<attribute name="SplashScreen-Image" value="META-INF/${splashscreen.basename}"/>
</manifest>
</target>
<target depends="init,-init-macrodef-copylibs,compile,-pre-pre-jar,-pre-jar,-do-jar-create-manifest,-do-jar-copy-manifest,-do-jar-set-mainclass,-do-jar-set-profile,-do-jar-set-splashscreen" if="do.mkdist" name="-do-jar-copylibs">
<j2seproject3:copylibs manifest="${tmp.manifest.file}"/>
<echo level="info">To run this application from the command line without Ant, try:</echo>
<property location="${dist.jar}" name="dist.jar.resolved"/>
<echo level="info">java -jar "${dist.jar.resolved}"</echo>
</target>
<target depends="init,compile,-pre-pre-jar,-pre-jar,-do-jar-create-manifest,-do-jar-copy-manifest,-do-jar-set-mainclass,-do-jar-set-profile,-do-jar-set-splashscreen" if="do.archive" name="-do-jar-jar" unless="do.mkdist">
<j2seproject1:jar manifest="${tmp.manifest.file}"/>
<property location="${build.classes.dir}" name="build.classes.dir.resolved"/>
<property location="${dist.jar}" name="dist.jar.resolved"/>
<pathconvert property="run.classpath.with.dist.jar">
<path path="${run.classpath}"/>
<map from="${build.classes.dir.resolved}" to="${dist.jar.resolved}"/>
</pathconvert>
<condition else="" property="jar.usage.message" value="To run this application from the command line without Ant, try:${line.separator}${platform.java} -cp ${run.classpath.with.dist.jar} ${main.class}">
<isset property="main.class.available"/>
</condition>
<condition else="debug" property="jar.usage.level" value="info">
<isset property="main.class.available"/>
</condition>
<echo level="${jar.usage.level}" message="${jar.usage.message}"/>
</target>
<target depends="-do-jar-copylibs" if="do.archive" name="-do-jar-delete-manifest">
<delete>
<fileset file="${tmp.manifest.file}"/>
</delete>
</target>
<target depends="init,compile,-pre-pre-jar,-pre-jar,-do-jar-create-manifest,-do-jar-copy-manifest,-do-jar-set-mainclass,-do-jar-set-profile,-do-jar-set-splashscreen,-do-jar-jar,-do-jar-delete-manifest" name="-do-jar-without-libraries"/>
<target depends="init,compile,-pre-pre-jar,-pre-jar,-do-jar-create-manifest,-do-jar-copy-manifest,-do-jar-set-mainclass,-do-jar-set-profile,-do-jar-set-splashscreen,-do-jar-copylibs,-do-jar-delete-manifest" name="-do-jar-with-libraries"/>
<target name="-post-jar">
<!-- Empty placeholder for easier customization. -->
<!-- You can override this target in the ../build.xml file. -->
</target>
<target depends="init,compile,-pre-jar,-do-jar-without-libraries,-do-jar-with-libraries,-post-jar" name="-do-jar"/>
<target depends="init,compile,-pre-jar,-do-jar,-post-jar" description="Build JAR." name="jar"/>
<!--
=================
EXECUTION SECTION
=================
-->
<target depends="init,compile" description="Run a main class." name="run">
<j2seproject1:java>
<customize>
<arg line="${application.args}"/>
</customize>
</j2seproject1:java>
</target>
<target name="-do-not-recompile">
<property name="javac.includes.binary" value=""/>
</target>
<target depends="init,compile-single" name="run-single">
<fail unless="run.class">Must select one file in the IDE or set run.class</fail>
<j2seproject1:java classname="${run.class}"/>
</target>
<target depends="init,compile-test-single" name="run-test-with-main">
<fail unless="run.class">Must select one file in the IDE or set run.class</fail>
<j2seproject1:java classname="${run.class}" classpath="${run.test.classpath}"/>
</target>
<!--
=================
DEBUGGING SECTION
=================
-->
<target depends="init" if="netbeans.home" name="-debug-start-debugger">
<j2seproject1:nbjpdastart name="${debug.class}"/>
</target>
<target depends="init" if="netbeans.home" name="-debug-start-debugger-main-test">
<j2seproject1:nbjpdastart classpath="${debug.test.classpath}" name="${debug.class}"/>
</target>
<target depends="init,compile" name="-debug-start-debuggee">
<j2seproject3:debug>
<customize>
<arg line="${application.args}"/>
</customize>
</j2seproject3:debug>
</target>
<target depends="init,compile,-debug-start-debugger,-debug-start-debuggee" description="Debug project in IDE." if="netbeans.home" name="debug"/>
<target depends="init" if="netbeans.home" name="-debug-start-debugger-stepinto">
<j2seproject1:nbjpdastart stopclassname="${main.class}"/>
</target>
<target depends="init,compile,-debug-start-debugger-stepinto,-debug-start-debuggee" if="netbeans.home" name="debug-stepinto"/>
<target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-single">
<fail unless="debug.class">Must select one file in the IDE or set debug.class</fail>
<j2seproject3:debug classname="${debug.class}"/>
</target>
<target depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-single" if="netbeans.home" name="debug-single"/>
<target depends="init,compile-test-single" if="netbeans.home" name="-debug-start-debuggee-main-test">
<fail unless="debug.class">Must select one file in the IDE or set debug.class</fail>
<j2seproject3:debug classname="${debug.class}" classpath="${debug.test.classpath}"/>
</target>
<target depends="init,compile-test-single,-debug-start-debugger-main-test,-debug-start-debuggee-main-test" if="netbeans.home" name="debug-test-with-main"/>
<target depends="init" name="-pre-debug-fix">
<fail unless="fix.includes">Must set fix.includes</fail>
<property name="javac.includes" value="${fix.includes}.java"/>
</target>
<target depends="init,-pre-debug-fix,compile-single" if="netbeans.home" name="-do-debug-fix">
<j2seproject1:nbjpdareload/>
</target>
<target depends="init,-pre-debug-fix,-do-debug-fix" if="netbeans.home" name="debug-fix"/>
<!--
=================
PROFILING SECTION
=================
-->
<!--
pre NB7.2 profiler integration
-->
<target depends="profile-init,compile" description="Profile a project in the IDE." if="profiler.info.jvmargs.agent" name="-profile-pre72">
<fail unless="netbeans.home">This target only works when run from inside the NetBeans IDE.</fail>
<nbprofiledirect>
<classpath>
<path path="${run.classpath}"/>
</classpath>
</nbprofiledirect>
<profile/>
</target>
<target depends="profile-init,compile-single" description="Profile a selected class in the IDE." if="profiler.info.jvmargs.agent" name="-profile-single-pre72">
<fail unless="profile.class">Must select one file in the IDE or set profile.class</fail>
<fail unless="netbeans.home">This target only works when run from inside the NetBeans IDE.</fail>
<nbprofiledirect>
<classpath>
<path path="${run.classpath}"/>
</classpath>
</nbprofiledirect>
<profile classname="${profile.class}"/>
</target>
<target depends="profile-init,compile-single" if="profiler.info.jvmargs.agent" name="-profile-applet-pre72">
<fail unless="netbeans.home">This target only works when run from inside the NetBeans IDE.</fail>
<nbprofiledirect>
<classpath>
<path path="${run.classpath}"/>
</classpath>
</nbprofiledirect>
<profile classname="sun.applet.AppletViewer">
<customize>
<arg value="${applet.url}"/>
</customize>
</profile>
</target>
<target depends="profile-init,compile-test-single" if="profiler.info.jvmargs.agent" name="-profile-test-single-pre72">
<fail unless="netbeans.home">This target only works when run from inside the NetBeans IDE.</fail>
<nbprofiledirect>
<classpath>
<path path="${run.test.classpath}"/>
</classpath>
</nbprofiledirect>
<junit dir="${profiler.info.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" jvm="${profiler.info.jvm}" showoutput="true">
<env key="${profiler.info.pathvar}" path="${profiler.info.agentpath}:${profiler.current.path}"/>
<jvmarg value="${profiler.info.jvmargs.agent}"/>
<jvmarg line="${profiler.info.jvmargs}"/>
<test name="${profile.class}"/>
<classpath>
<path path="${run.test.classpath}"/>
</classpath>
<syspropertyset>
<propertyref prefix="test-sys-prop."/>
<mapper from="test-sys-prop.*" to="*" type="glob"/>
</syspropertyset>
<formatter type="brief" usefile="false"/>
<formatter type="xml"/>
</junit>
</target>
<!--
end of pre NB72 profiling section
-->
<target if="netbeans.home" name="-profile-check">
<condition property="profiler.configured">
<or>
<contains casesensitive="true" string="${run.jvmargs.ide}" substring="-agentpath:"/>
<contains casesensitive="true" string="${run.jvmargs.ide}" substring="-javaagent:"/>
</or>
</condition>
</target>
<target depends="-profile-check,-profile-pre72" description="Profile a project in the IDE." if="profiler.configured" name="profile" unless="profiler.info.jvmargs.agent">
<startprofiler/>
<antcall target="run"/>
</target>
<target depends="-profile-check,-profile-single-pre72" description="Profile a selected class in the IDE." if="profiler.configured" name="profile-single" unless="profiler.info.jvmargs.agent">
<fail unless="run.class">Must select one file in the IDE or set run.class</fail>
<startprofiler/>
<antcall target="run-single"/>
</target>
<target depends="-profile-test-single-pre72" description="Profile a selected test in the IDE." name="profile-test-single"/>
<target depends="-profile-check" description="Profile a selected test in the IDE." if="profiler.configured" name="profile-test" unless="profiler.info.jvmargs">
<fail unless="test.includes">Must select some files in the IDE or set test.includes</fail>
<startprofiler/>
<antcall target="test-single"/>
</target>
<target depends="-profile-check" description="Profile a selected class in the IDE." if="profiler.configured" name="profile-test-with-main">
<fail unless="run.class">Must select one file in the IDE or set run.class</fail>
<startprofiler/>
<antcal target="run-test-with-main"/>
</target>
<target depends="-profile-check,-profile-applet-pre72" if="profiler.configured" name="profile-applet" unless="profiler.info.jvmargs.agent">
<fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>
<startprofiler/>
<antcall target="run-applet"/>
</target>
<!--
===============
JAVADOC SECTION
===============
-->
<target depends="init" if="have.sources" name="-javadoc-build">
<mkdir dir="${dist.javadoc.dir}"/>
<condition else="" property="javadoc.endorsed.classpath.cmd.line.arg" value="-J${endorsed.classpath.cmd.line.arg}">
<and>
<isset property="endorsed.classpath.cmd.line.arg"/>
<not>
<equals arg1="${endorsed.classpath.cmd.line.arg}" arg2=""/>
</not>
</and>
</condition>
<condition else="" property="bug5101868workaround" value="*.java">
<matches pattern="1\.[56](\..*)?" string="${java.version}"/>
</condition>
<javadoc additionalparam="-J-Dfile.encoding=${file.encoding} ${javadoc.additionalparam}" author="${javadoc.author}" charset="UTF-8" destdir="${dist.javadoc.dir}" docencoding="UTF-8" encoding="${javadoc.encoding.used}" failonerror="true" noindex="${javadoc.noindex}" nonavbar="${javadoc.nonavbar}" notree="${javadoc.notree}" private="${javadoc.private}" source="${javac.source}" splitindex="${javadoc.splitindex}" use="${javadoc.use}" useexternalfile="true" version="${javadoc.version}" windowtitle="${javadoc.windowtitle}">
<classpath>
<path path="${javac.classpath}"/>
</classpath>
<fileset dir="${src.dir}" excludes="${bug5101868workaround},${excludes}" includes="${includes}">
<filename name="**/*.java"/>
</fileset>
<fileset dir="${build.generated.sources.dir}" erroronmissingdir="false">
<include name="**/*.java"/>
<exclude name="*.java"/>
</fileset>
<arg line="${javadoc.endorsed.classpath.cmd.line.arg}"/>
</javadoc>
<copy todir="${dist.javadoc.dir}">
<fileset dir="${src.dir}" excludes="${excludes}" includes="${includes}">
<filename name="**/doc-files/**"/>
</fileset>
<fileset dir="${build.generated.sources.dir}" erroronmissingdir="false">
<include name="**/doc-files/**"/>
</fileset>
</copy>
</target>
<target depends="init,-javadoc-build" if="netbeans.home" name="-javadoc-browse" unless="no.javadoc.preview">
<nbbrowse file="${dist.javadoc.dir}/index.html"/>
</target>
<target depends="init,-javadoc-build,-javadoc-browse" description="Build Javadoc." name="javadoc"/>
<!--
=========================
TEST COMPILATION SECTION
=========================
-->
<target depends="init,compile" if="have.tests" name="-pre-pre-compile-test">
<mkdir dir="${build.test.classes.dir}"/>
</target>
<target name="-pre-compile-test">
<!-- Empty placeholder for easier customization. -->
<!-- You can override this target in the ../build.xml file. -->
</target>
<target if="do.depend.true" name="-compile-test-depend">
<j2seproject3:depend classpath="${javac.test.classpath}" destdir="${build.test.classes.dir}" srcdir="${test.src.dir}"/>
</target>
<target depends="init,deps-jar,compile,-pre-pre-compile-test,-pre-compile-test,-compile-test-depend" if="have.tests" name="-do-compile-test">
<j2seproject3:javac apgeneratedsrcdir="${build.test.classes.dir}" classpath="${javac.test.classpath}" debug="true" destdir="${build.test.classes.dir}" processorpath="${javac.test.processorpath}" srcdir="${test.src.dir}"/>
<copy todir="${build.test.classes.dir}">
<fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
</copy>
</target>
<target name="-post-compile-test">
<!-- Empty placeholder for easier customization. -->
<!-- You can override this target in the ../build.xml file. -->
</target>
<target depends="init,compile,-pre-pre-compile-test,-pre-compile-test,-do-compile-test,-post-compile-test" name="compile-test"/>
<target name="-pre-compile-test-single">
<!-- Empty placeholder for easier customization. -->
<!-- You can override this target in the ../build.xml file. -->
</target>
<target depends="init,deps-jar,compile,-pre-pre-compile-test,-pre-compile-test-single" if="have.tests" name="-do-compile-test-single">
<fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
<j2seproject3:force-recompile destdir="${build.test.classes.dir}"/>
<j2seproject3:javac apgeneratedsrcdir="${build.test.classes.dir}" classpath="${javac.test.classpath}" debug="true" destdir="${build.test.classes.dir}" excludes="" includes="${javac.includes}" processorpath="${javac.test.processorpath}" sourcepath="${test.src.dir}" srcdir="${test.src.dir}"/>
<copy todir="${build.test.classes.dir}">
<fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
</copy>
</target>
<target name="-post-compile-test-single">
<!-- Empty placeholder for easier customization. -->
<!-- You can override this target in the ../build.xml file. -->
</target>
<target depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single,-do-compile-test-single,-post-compile-test-single" name="compile-test-single"/>
<!--
=======================
TEST EXECUTION SECTION
=======================
-->
<target depends="init" if="have.tests" name="-pre-test-run">
<mkdir dir="${build.test.results.dir}"/>
</target>
<target depends="init,compile-test,-pre-test-run" if="have.tests" name="-do-test-run">
<j2seproject3:test includes="${includes}" testincludes="**/*Test.java"/>
</target>
<target depends="init,compile-test,-pre-test-run,-do-test-run" if="have.tests" name="-post-test-run">
<fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
</target>
<target depends="init" if="have.tests" name="test-report"/>
<target depends="init" if="netbeans.home+have.tests" name="-test-browse"/>
<target depends="init,compile-test,-pre-test-run,-do-test-run,test-report,-post-test-run,-test-browse" description="Run unit tests." name="test"/>
<target depends="init" if="have.tests" name="-pre-test-run-single">
<mkdir dir="${build.test.results.dir}"/>
</target>
<target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-do-test-run-single">
<fail unless="test.includes">Must select some files in the IDE or set test.includes</fail>
<j2seproject3:test excludes="" includes="${test.includes}" testincludes="${test.includes}"/>
</target>
<target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single" if="have.tests" name="-post-test-run-single">
<fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
</target>
<target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single,-post-test-run-single" description="Run single unit test." name="test-single"/>
<target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-do-test-run-single-method">
<fail unless="test.class">Must select some files in the IDE or set test.class</fail>
<fail unless="test.method">Must select some method in the IDE or set test.method</fail>
<j2seproject3:test excludes="" includes="${javac.includes}" testincludes="${test.class}" testmethods="${test.method}"/>
</target>
<target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single-method" if="have.tests" name="-post-test-run-single-method">
<fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
</target>
<target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single-method,-post-test-run-single-method" description="Run single unit test." name="test-single-method"/>
<!--
=======================
TEST DEBUGGING SECTION
=======================
-->
<target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-debug-start-debuggee-test">
<fail unless="test.class">Must select one file in the IDE or set test.class</fail>
<j2seproject3:test-debug excludes="" includes="${javac.includes}" testClass="${test.class}" testincludes="${javac.includes}"/>
</target>
<target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-debug-start-debuggee-test-method">
<fail unless="test.class">Must select one file in the IDE or set test.class</fail>
<fail unless="test.method">Must select some method in the IDE or set test.method</fail>
<j2seproject3:test-debug excludes="" includes="${javac.includes}" testClass="${test.class}" testMethod="${test.method}" testincludes="${test.class}" testmethods="${test.method}"/>
</target>
<target depends="init,compile-test" if="netbeans.home+have.tests" name="-debug-start-debugger-test">
<j2seproject1:nbjpdastart classpath="${debug.test.classpath}" name="${test.class}"/>
</target>
<target depends="init,compile-test-single,-debug-start-debugger-test,-debug-start-debuggee-test" name="debug-test"/>
<target depends="init,compile-test-single,-debug-start-debugger-test,-debug-start-debuggee-test-method" name="debug-test-method"/>
<target depends="init,-pre-debug-fix,compile-test-single" if="netbeans.home" name="-do-debug-fix-test">
<j2seproject1:nbjpdareload dir="${build.test.classes.dir}"/>
</target>
<target depends="init,-pre-debug-fix,-do-debug-fix-test" if="netbeans.home" name="debug-fix-test"/>
<!--
=========================
APPLET EXECUTION SECTION
=========================
-->
<target depends="init,compile-single" name="run-applet">
<fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>
<j2seproject1:java classname="sun.applet.AppletViewer">
<customize>
<arg value="${applet.url}"/>
</customize>
</j2seproject1:java>
</target>
<!--
=========================
APPLET DEBUGGING SECTION
=========================
-->
<target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-applet">
<fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>
<j2seproject3:debug classname="sun.applet.AppletViewer">
<customize>
<arg value="${applet.url}"/>
</customize>
</j2seproject3:debug>
</target>
<target depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-applet" if="netbeans.home" name="debug-applet"/>
<!--
===============
CLEANUP SECTION
===============
-->
<target name="-deps-clean-init" unless="built-clean.properties">
<property location="${build.dir}/built-clean.properties" name="built-clean.properties"/>
<delete file="${built-clean.properties}" quiet="true"/>
</target>
<target if="already.built.clean.${basedir}" name="-warn-already-built-clean">
<echo level="warn" message="Cycle detected: ClienteV2 was already built"/>
</target>
<target depends="init,-deps-clean-init" name="deps-clean" unless="no.deps">
<mkdir dir="${build.dir}"/>
<touch file="${built-clean.properties}" verbose="false"/>
<property file="${built-clean.properties}" prefix="already.built.clean."/>
<antcall target="-warn-already-built-clean"/>
<propertyfile file="${built-clean.properties}">
<entry key="${basedir}" value=""/>
</propertyfile>
</target>
<target depends="init" name="-do-clean">
<delete dir="${build.dir}"/>
<delete dir="${dist.dir}" followsymlinks="false" includeemptydirs="true"/>
</target>
<target name="-post-clean">
<!-- Empty placeholder for easier customization. -->
<!-- You can override this target in the ../build.xml file. -->
</target>
<target depends="init,deps-clean,-do-clean,-post-clean" description="Clean build products." name="clean"/>
<target name="-check-call-dep">
<property file="${call.built.properties}" prefix="already.built."/>
<condition property="should.call.dep">
<and>
<not>
<isset property="already.built.${call.subproject}"/>
</not>
<available file="${call.script}"/>
</and>
</condition>
</target>
<target depends="-check-call-dep" if="should.call.dep" name="-maybe-call-dep">
<ant antfile="${call.script}" inheritall="false" target="${call.target}">
<propertyset>
<propertyref prefix="transfer."/>
<mapper from="transfer.*" to="*" type="glob"/>
</propertyset>
</ant>
</target>
</project>
|
XML
|
unit About;
interface
uses WinApi.Windows, System.SysUtils, System.Classes, Vcl.Graphics,
Vcl.Forms, Vcl.Controls, Vcl.StdCtrls, Vcl.Buttons, Vcl.ExtCtrls,
Vcl.Imaging.jpeg;
type
TAboutBox = class(TForm)
Panel1: TPanel;
ProgramIcon: TImage;
ProductName: TLabel;
Version: TLabel;
OKButton: TButton;
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
Label4: TLabel;
private
{ Private declarations }
public
{ Public declarations }
end;
var
AboutBox: TAboutBox;
implementation
{$R *.dfm}
end.
|
Pascal
|
CREATE SEQUENCE IF NOT EXISTS eb_users_id_seq START 1;
--Table: public.eb_users
--DROP TABLE public.eb_users;
CREATE TABLE IF NOT EXISTS public.eb_users
(
id integer NOT NULL DEFAULT nextval('eb_users_id_seq'::regclass),
email text COLLATE pg_catalog."default",
pwd text COLLATE pg_catalog."default",
eb_del boolean DEFAULT false,
firstname text COLLATE pg_catalog."default",
lastname text COLLATE pg_catalog."default",
middlename text COLLATE pg_catalog."default",
dob date,
phnoprimary text COLLATE pg_catalog."default",
phnosecondary text COLLATE pg_catalog."default",
landline text COLLATE pg_catalog."default",
extension text COLLATE pg_catalog."default",
locale text COLLATE pg_catalog."default" NOT NULL,
alternateemail text COLLATE pg_catalog."default",
profileimg bytea,
dateformat text COLLATE pg_catalog."default" NOT NULL DEFAULT 'DD/MM/YYYY'::text,
timezone text COLLATE pg_catalog."default" NOT NULL DEFAULT 'UTC+05:30'::text,
numformat text COLLATE pg_catalog."default" NOT NULL DEFAULT '0,000.00'::text,
timezoneabbre text COLLATE pg_catalog."default" NOT NULL,
timezonefull text COLLATE pg_catalog."default" NOT NULL,
CONSTRAINT eb_users_pkey PRIMARY KEY (id)
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
ALTER TABLE public.eb_users
OWNER to postgres;
--Index: eb_users_id_idx
--DROP INDEX public.eb_users_id_idx;
CREATE UNIQUE INDEX eb_users_id_idx
ON public.eb_users USING btree
(id)
TABLESPACE pg_default;CREATE SEQUENCE IF NOT EXISTS eb_users_id_seq START 1;
--Table: public.eb_users
--DROP TABLE public.eb_users;
CREATE TABLE IF NOT EXISTS public.eb_users
(
id integer NOT NULL DEFAULT nextval('eb_users_id_seq'::regclass),
email text COLLATE pg_catalog."default",
pwd text COLLATE pg_catalog."default",
eb_del boolean DEFAULT false,
firstname text COLLATE pg_catalog."default",
lastname text COLLATE pg_catalog."default",
middlename text COLLATE pg_catalog."default",
dob date,
phnoprimary text COLLATE pg_catalog."default",
phnosecondary text COLLATE pg_catalog."default",
landline text COLLATE pg_catalog."default",
extension text COLLATE pg_catalog."default",
locale text COLLATE pg_catalog."default" NOT NULL,
alternateemail text COLLATE pg_catalog."default",
profileimg bytea,
dateformat text COLLATE pg_catalog."default" NOT NULL DEFAULT 'DD/MM/YYYY'::text,
timezone text COLLATE pg_catalog."default" NOT NULL DEFAULT 'UTC+05:30'::text,
numformat text COLLATE pg_catalog."default" NOT NULL DEFAULT '0,000.00'::text,
timezoneabbre text COLLATE pg_catalog."default" NOT NULL,
timezonefull text COLLATE pg_catalog."default" NOT NULL,
CONSTRAINT eb_users_pkey PRIMARY KEY (id)
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
ALTER TABLE public.eb_users
OWNER to postgres;
--Index: eb_users_id_idx
--DROP INDEX public.eb_users_id_idx;
CREATE UNIQUE INDEX eb_users_id_idx
ON public.eb_users USING btree
(id)
TABLESPACE pg_default;
|
PLSQL
|
{
"_from": "async-foreach@^0.1.3",
"_id": "[email protected]",
"_inBundle": false,
"_integrity": "sha1-NhIfhFwFeBct5Bmpfb6x0W7DRUI=",
"_location": "/async-foreach",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "async-foreach@^0.1.3",
"name": "async-foreach",
"escapedName": "async-foreach",
"rawSpec": "^0.1.3",
"saveSpec": null,
"fetchSpec": "^0.1.3"
},
"_requiredBy": [
"/node-sass"
],
"_resolved": "https://registry.npmjs.org/async-foreach/-/async-foreach-0.1.3.tgz",
"_shasum": "36121f845c0578172de419a97dbeb1d16ec34542",
"_spec": "async-foreach@^0.1.3",
"_where": "/Users/fergusneary/dev/LemonMart/lemon-mart/node_modules/node-sass",
"author": {
"name": "\"Cowboy\" Ben Alman",
"url": "http://benalman.com/"
},
"bugs": {
"url": "https://github.com/cowboy/javascript-sync-async-foreach/issues"
},
"bundleDependencies": false,
"dependencies": {},
"deprecated": false,
"description": "An optionally-asynchronous forEach with an interesting interface.",
"devDependencies": {},
"engines": {
"node": "*"
},
"homepage": "http://github.com/cowboy/javascript-sync-async-foreach",
"keywords": [
"array",
"loop",
"sync",
"async",
"foreach"
],
"main": "lib/foreach",
"name": "async-foreach",
"repository": {
"type": "git",
"url": "git://github.com/cowboy/javascript-sync-async-foreach.git"
},
"version": "0.1.3"
}
|
JSON
|
{
"rulesDirectory": [
"node_modules/codelyzer"
],
"rules": {
"arrow-return-shorthand": true,
"callable-types": true,
"class-name": true,
"comment-format": [
true,
"check-space"
],
"curly": true,
"eofline": true,
"forin": true,
"import-blacklist": [
true,
"rxjs"
],
"import-spacing": true,
"indent": [
true,
"spaces"
],
"interface-over-type-literal": true,
"label-position": true,
"max-line-length": [
true,
140
],
"member-access": false,
"member-ordering": [
true,
{
"order": [
"static-field",
"instance-field",
"static-method",
"instance-method"
]
}
],
"no-arg": true,
"no-bitwise": true,
"no-console": [
true,
"debug",
"info",
"time",
"timeEnd",
"trace"
],
"no-construct": true,
"no-debugger": true,
"no-duplicate-super": true,
"no-empty": false,
"no-empty-interface": true,
"no-eval": true,
"no-inferrable-types": [
true,
"ignore-params"
],
"no-misused-new": true,
"no-non-null-assertion": true,
"no-shadowed-variable": true,
"no-string-literal": false,
"no-string-throw": true,
"no-switch-case-fall-through": true,
"no-trailing-whitespace": true,
"no-unnecessary-initializer": true,
"no-unused-expression": true,
"no-use-before-declare": true,
"no-var-keyword": true,
"object-literal-sort-keys": false,
"one-line": [
true,
"check-open-brace",
"check-catch",
"check-else",
"check-whitespace"
],
"prefer-const": true,
"quotemark": [
true,
"single"
],
"radix": true,
"semicolon": [
true,
"always"
],
"triple-equals": [
true,
"allow-null-check"
],
"typedef-whitespace": [
true,
{
"call-signature": "nospace",
"index-signature": "nospace",
"parameter": "nospace",
"property-declaration": "nospace",
"variable-declaration": "nospace"
}
],
"typeof-compare": true,
"unified-signatures": true,
"variable-name": false,
"whitespace": [
true,
"check-branch",
"check-decl",
"check-operator",
"check-separator",
"check-type"
],
"directive-selector": [
true,
"attribute",
"football",
"camelCase"
],
"component-selector": [
true,
"element",
"football",
"kebab-case"
],
"use-input-property-decorator": true,
"use-output-property-decorator": true,
"use-host-property-decorator": true,
"no-input-rename": true,
"no-output-rename": true,
"use-life-cycle-interface": true,
"use-pipe-transform-interface": true,
"component-class-suffix": true,
"directive-class-suffix": true,
"invoke-injectable": true
}
}
|
JSON
|
#!/usr/bin/env python
if 'climt_lite' in __file__:
Lite = True
else:
Lite = False
try:
try: import matplotlib.pylab as pylab
except: import matplotlib.matlab as pylab
# catch old versions which use set instead of setp
if not hasattr(pylab,'setp'): pylab.setp = pylab.set
# gives right aspect ratio in subplots
pylab.rcParams['image.aspect']='auto'
# increase vertical gap between plots
pylab.rcParams['figure.subplot.hspace']=0.3
# turn on interactive mode
pylab.ion()
gotMatplotlib = True
except:
if not Lite: print '\n ++++ CliMT: WARNING: matplotlib.pylab ' \
+'could not be loaded, so no runtime monitoring !\n'
gotMatplotlib = False
from numpy import *
from utils import squeeze
from state import KnownFields
def _figureSetUp(FieldKeys, Component):
"""
Sets up a figure consisting of up to 4 panels (subplots).
"""
if len(FieldKeys) == 1: SubplotCodes = ['111']
elif len(FieldKeys) == 2: SubplotCodes = ['211','212']
elif len(FieldKeys) == 3: SubplotCodes = ['221','222','223']
elif len(FieldKeys) == 4: SubplotCodes = ['221','222','223','224']
else: raise '\n\n CliMT.plot: not more than 4 fields on 1 plot!'
Subplots = dict(zip(FieldKeys,SubplotCodes))
Figure = {}
for key in FieldKeys:
Subplot = Subplots[key]
exec('pylab.subplot(%s)' % Subplot)
Figure[key] = Panel(Component, key, Subplot)
return Figure
class Plot:
"""
Enables plotting of up to 4 variables.
"""
def __init__(self):
pass
def __call__(self, Component, *FieldKeys):
"""
Plots fields indicated by FieldKeys
"""
if not gotMatplotlib: return
if len(FieldKeys) == 0: return
# Clear figure
pylab.clf()
# FieldKeys was input either as ['a','b' ...] or as 'a','b', ...
if type(FieldKeys[0]) is type([]):
_figureSetUp(FieldKeys[0], Component)
else:
_figureSetUp(list(FieldKeys), Component)
def setFigure(self, FigureNumber=None):
if not gotMatplotlib: return
if FigureNumber is None:
FigureNumber = pylab.get_current_fig_manager().num
pylab.figure(num=FigureNumber)
def closeFigure(self, FigureNumber=None):
if not gotMatplotlib: return
if FigureNumber is None:
FigureNumber = pylab.get_current_fig_manager().num
pylab.close(FigureNumber)
class Monitor:
"""
Enables runtime monitoring of up to 4 fields.
"""
def __init__(self, Component, **kwargs):
"""
"""
if not gotMatplotlib:
self.Monitoring = False
return
# List of fields to monitor
try: self.FieldKeys = kwargs['MonitorFields']
except: self.FieldKeys = []
if type(self.FieldKeys) is not type([]):
self.FieldKeys = []
for key in self.FieldKeys:
assert key in Component.State, \
'\n\n ++++ CliMT.monitor: %s not in component' % key
if rank(Component[key]) == 0:
print '\n\n ++++ CliMT.monitor: WARNING: cannot '\
+'monitor scalar variable %s' % key
self.FieldKeys.pop(self.FieldKeys.index(key))
# Decide if we're doing monitoring
if len(self.FieldKeys) > 0:
self.Monitoring = True
else:
self.Monitoring = False
return
# Frequency of monitor updates (default 6 hours)
if 'MonitorFreq' in kwargs:
self.MonitorFreq = kwargs['MonitorFreq']
else:
self.MonitorFreq = 6.*60.*60.
# Clear monitor (if one already set up by a previous instance)
pylab.clf()
# Set up figure
self.Figure = _figureSetUp(self.FieldKeys, Component)
# Get figure manager
self.manager = pylab.get_current_fig_manager()
def refresh(self, Component):
"""
Update monitor display.
"""
if not gotMatplotlib or not self.Monitoring: return
for key in self.Figure.keys():
Field = Component[key]
Panel = self.Figure[key]
# If Field is 3D, show zonal average
if rank(Field) == 3:
Field = average(Field,axis=2)
Field = squeeze(Field)
# Reset data
if rank(Field) == 1:
if min(Field) == max(Field) == 0.: Field=Field+1.e-7
MinVal = min(Field) - 0.01*abs(min(Field))
MaxVal = max(Field) + 0.01*abs(max(Field))
if Panel.orientation == 0:
Panel.handle.set_xdata(Field)
Panel.axes.set_xlim([MinVal, MaxVal])
else:
Panel.handle.set_ydata(Field)
Panel.axes.set_ylim([MinVal, MaxVal])
if rank(Field) == 2:
if Panel.orientation == 0:
Panel.handle.set_data(Field[::-1])
if Panel.orientation == 1:
Panel.handle.set_data(Field)
# update normalization
Panel.handle.set_norm(None)
# Reset title
day = Component.State.ElapsedTime/86400.
try:
TitleText = Panel.TitleTemplate % day
except:
TitleText = Panel.TitleTemplate % (day, min(ravel(Field)), max(ravel(Field)))
Panel.title.set_text(TitleText)
# Redraw figure
self.manager.canvas.draw()
class Panel:
"""
Configures single panel of monitor display.
"""
def __init__(self, Component, FieldKey, Subplot):
# get Field value
Field = Component.State[FieldKey]
Dims = KnownFields[FieldKey][2]
# Figure out axes
AxisKey = []
if Dims == '2D':
for i in range(2):
if shape(Field)[i] > 1: AxisKey.append(['lat','lon'][i])
if Dims == '3D':
for i in range(3):
if shape(Field)[i] > 1: AxisKey.append(['lev','lat','lon'][i])
# If Field is 3D, show zonal average
Field = squeeze(Field)
if rank(Field) == 3:
Field = average(Field,axis=2)
Field = squeeze(Field)
AxisKey.pop(2)
# Axes names and values
AxisName = []
AxisVal = []
for key in AxisKey:
AxisName.append(Component.Grid.long_name[key])
AxisVal.append(Component.Grid[key])
# Get handles to figure and properties
if len(AxisName) == 1:
if min(Field) == max(Field) == 0.: Field=Field+1.e-7
MinVal = min(Field) - 0.01*abs(min(Field))
MaxVal = max(Field) + 0.01*abs(max(Field))
if AxisKey[0] == 'lev':
pylab.ylabel(AxisName[0])
self.orientation = 0
self.handle = pylab.plot(Field, AxisVal[0], 'bo-').pop(0)
self.axes = pylab.gca()
pylab.xlim(MinVal, MaxVal)
pylab.ylim(AxisVal[0][-1], AxisVal[0][0] )
else:
if Subplot in ['111','212','223','224']: pylab.xlabel(AxisName[0])
self.orientation = 1
self.handle = pylab.plot(AxisVal[0], Field, 'bo-').pop(0)
self.axes = pylab.gca()
pylab.ylim([MinVal, MaxVal])
pylab.xlim([ AxisVal[0][0], AxisVal[0][-1] ])
elif len(AxisName) == 2:
xmin = AxisVal[1][0]
xmax = AxisVal[1][-1]
ymin = AxisVal[0][0]
ymax = AxisVal[0][-1]
if AxisKey[0] == 'lev':
self.orientation = 0
self.handle = pylab.imshow(\
Field[::-1],\
extent=(xmin, xmax, ymin, ymax),\
interpolation='bilinear')
pylab.setp(pylab.gca(), 'xlim',[xmin,xmax], 'ylim',[ymax,ymin])
else:
self.orientation = 1
self.handle = pylab.imshow( \
Field, \
extent=(xmin, xmax, ymin, ymax),\
interpolation='bilinear')
pylab.setp(pylab.gca(), 'xlim',[xmin,xmax], 'ylim',[ymin,ymax])
# write x label only if subplot does not have other subplot underneath
if Subplot in ['111','212','223','224']: pylab.xlabel(AxisName[1])
pylab.ylabel(AxisName[0])
self.handle.set_norm(None)
# Title
self.TitleTemplate = '%s [%s]' % (FieldKey,KnownFields[FieldKey][1]) + ' %6.2f days'
if len(AxisName) == 2: self.TitleTemplate = self.TitleTemplate + '\n min=%g max=%g'
day = Component.State.ElapsedTime/86400.
try:
TitleText = self.TitleTemplate % day
except:
TitleText = self.TitleTemplate % (day, min(ravel(Field)), max(ravel(Field)))
self.title = pylab.title(TitleText)
self.title.set_fontsize(12)
if __name__=='__main__':
import climt
r=climt.radiation(lat=arange(0.,90.,10.))
m=Monitor(r, MonitorFields=['T','Ts'])
for i in range(10):
r.step()
m.refresh(r)
show()
|
Python
|
{waitForAutocomplete} = require '../spec-helper'
describe 'Autocomplete', ->
[mainModule, autocompleteManager, editorView, editor, completionDelay] = []
describe 'Issue 65 - Stop autocomplete after you pass the autocomplete suggestion', ->
beforeEach ->
runs ->
# Set to live completion
atom.config.set('autocomplete-plus.enableAutoActivation', true)
# Set the completion delay
completionDelay = 100
atom.config.set('autocomplete-plus.autoActivationDelay', completionDelay)
completionDelay += 100 # Rendering delay
workspaceElement = atom.views.getView(atom.workspace)
jasmine.attachToDOM(workspaceElement)
waitsForPromise -> atom.workspace.open('sample.js').then (e) ->
editor = e
# Activate the package
waitsForPromise -> atom.packages.activatePackage('autocomplete-plus').then (a) ->
mainModule = a.mainModule
waitsFor ->
mainModule.autocompleteManager?.ready
runs ->
autocompleteManager = mainModule.autocompleteManager
runs ->
editorView = atom.views.getView(editor)
advanceClock(mainModule.autocompleteManager.providerManager.fuzzyProvider.deferBuildWordListInterval)
describe 'when autocomplete is triggered', ->
it 'it hides the suggestion list when the user keeps typing', ->
runs ->
expect(editorView.querySelector('.autocomplete-plus')).not.toExist()
# Trigger an autocompletion
editor.moveToBottom()
editor.insertText('s')
waitForAutocomplete()
runs ->
expect(editorView.querySelector('.autocomplete-plus')).toExist()
editor.insertText('b')
waitForAutocomplete()
runs ->
expect(editorView.querySelector('.autocomplete-plus')).not.toExist()
|
CoffeeScript
|
import { Component } from '@angular/core';
@Component({
moduleId: module.id,
selector: 'app-root',
templateUrl: "./app.component.html",
styleUrls: ['./app.component.css']
})
export class AppComponent {
title = 'app';
}
|
TypeScript
|
package tree
import (
"reflect"
. "github.com/kocircuit/kocircuit/lang/go/gate"
)
func Splay(v interface{}) Tree {
ctx := &SplayCtx{}
return ctx.SplayValue(reflect.ValueOf(v))
}
type SplayCtx struct {
Seen MultiSet `ko:"name=seen"`
}
func (ctx *SplayCtx) Cache(x interface{}) *SplayCtx {
return &SplayCtx{Seen: ctx.Seen.Add(x)}
}
type Splayer interface {
Splay() Tree
}
type Relabeler interface {
Relabel() Label
}
func (ctx *SplayCtx) SplayValue(v reflect.Value) Tree {
var label Label
if v.Kind() != reflect.Invalid && v.CanInterface() {
if g, ok := v.Interface().(Splayer); ok {
return g.Splay()
}
if g, ok := v.Interface().(Relabeler); ok {
label = g.Relabel()
}
}
switch v.Kind() {
case reflect.Invalid:
return NoQuote{String_: "empty"}
case reflect.Ptr: // cache pointers
if ctx.Seen.Count(v.Interface()) > 0 {
return Cycle{}
} else {
return Sometimes{Elem: ctx.Cache(v.Interface()).SplayValue(v.Elem())}
}
case reflect.Interface: // cache interfaces
if ctx.Seen.Count(v.InterfaceData()) > 0 {
return Cycle{}
} else {
return ctx.Cache(v.InterfaceData()).SplayValue(v.Elem())
}
case reflect.Slice, reflect.Array:
if label.IsEmpty() {
label = TypeLabel(v.Type())
}
series := Series{Label: label, Bracket: "()"}
for i := 0; i < v.Len(); i++ {
series.Elem = append(
series.Elem,
IndexTree{Index: i, Tree: ctx.SplayValue(v.Index(i))},
)
}
if len(series.Elem) == 0 {
return NoQuote{String_: "empty"}
}
return series
case reflect.Struct:
if label.IsEmpty() {
label = TypeLabel(v.Type())
}
parallel := Parallel{Label: label, Bracket: "()"}
for _, f := range StripFields(v.Type()) {
if f.IsGoExported() {
parallel.Elem = append(parallel.Elem,
NameTree{
Name: f.Name(),
Monadic: f.IsMonadic(),
Tree: ctx.SplayValue(v.FieldByName(f.GoName())),
},
)
}
}
return parallel
case reflect.Map:
if v.Type().Key() != reflect.TypeOf("") {
return Opaque{}
}
if label.IsEmpty() {
label = TypeLabel(v.Type())
}
parallel := Parallel{Label: label, Bracket: "()"}
for _, k := range v.MapKeys() {
key := KoGoName{Ko: k.String(), Go: k.String()}
parallel.Elem = append(parallel.Elem,
NameTree{
Name: key,
Monadic: false,
Tree: ctx.SplayValue(v.MapIndex(k)),
},
)
}
if len(parallel.Elem) == 0 {
return NoQuote{String_: "empty"}
}
return parallel
case reflect.String:
return GoValue{v}
case reflect.Bool:
return GoValue{v}
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
return GoValue{v}
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
return GoValue{v}
case reflect.Float32, reflect.Float64:
return GoValue{v}
case reflect.Uintptr:
return GoValue{v}
case reflect.UnsafePointer:
return GoValue{v}
case reflect.Complex64, reflect.Complex128:
return GoValue{v}
case reflect.Chan, reflect.Func:
return GoValue{v}
}
panic("o")
}
func StructFieldIsExported(f reflect.StructField) bool {
return f.PkgPath == ""
}
func TypeLabel(t reflect.Type) Label {
return Label{Path: t.PkgPath(), Name: t.Name()}
}
func IsBuiltinKind(kind reflect.Kind) bool {
switch kind {
case reflect.String:
return true
case reflect.Bool:
return true
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
return true
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
return true
case reflect.Float32, reflect.Float64:
return true
case reflect.Uintptr:
return true
case reflect.UnsafePointer:
return true
case reflect.Complex64, reflect.Complex128:
return true
}
return false
}
|
Go
|
-module(option).
-export(
[ some/1
, none/0
, fmap/2
, getOrElse/2
, fold/3
]).
some(Value) -> {option, {some, Value}}.
none() -> {option, none}.
fmap(F, {option, {some, Value}}) -> some(F(Value));
fmap(_, {option, none}) -> none().
getOrElse(_, {option, {some, Value}}) -> Value;
getOrElse(Default, {option, none}) -> Default.
fold(Default, F, Option) -> getOrElse(Default, fmap(F, Option)).
|
Erlang
|
#!/usr/bin/env bash
# Copyright 2015 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
set -o errexit
set -o nounset
set -o pipefail
#set -o xtrace
UTIL_SCRIPT=$(readlink -m "${BASH_SOURCE[0]}")
JUJU_PATH=$(dirname "${UTIL_SCRIPT}")
KUBE_ROOT=$(readlink -m "${JUJU_PATH}/../../")
# Use the config file specified in $KUBE_CONFIG_FILE, or config-default.sh.
source "${JUJU_PATH}/${KUBE_CONFIG_FILE-config-default.sh}"
# This attempts installation of Juju - This really needs to support multiple
# providers/distros - but I'm super familiar with ubuntu so assume that for now.
source "${JUJU_PATH}/prereqs/ubuntu-juju.sh"
export JUJU_REPOSITORY="${JUJU_PATH}/charms"
KUBE_BUNDLE_PATH="${JUJU_PATH}/bundles/local.yaml"
# The directory for the kubectl binary, this is one of the paths in kubectl.sh.
KUBECTL_DIR="${KUBE_ROOT}/platforms/linux/amd64"
function build-local() {
# This used to build the kubernetes project. Now it rebuilds the charm(s)
# living in `cluster/juju/layers`
charm build "${JUJU_PATH}/layers/kubernetes" -o "$JUJU_REPOSITORY" -r --no-local-layers
}
function detect-master() {
local kubestatus
# Capturing a newline, and my awk-fu was weak - pipe through tr -d
kubestatus=$(juju status --format=oneline kubernetes | grep "${KUBE_MASTER_NAME}" | awk '{print $3}' | tr -d "\n")
export KUBE_MASTER_IP=${kubestatus}
export KUBE_SERVER=https://${KUBE_MASTER_IP}:6433
}
function detect-nodes() {
# Run the Juju command that gets the minion private IP addresses.
local ipoutput
ipoutput=$(juju run --application kubernetes "unit-get private-address" --format=json)
# [
# {"MachineId":"2","Stdout":"192.168.122.188\n","UnitId":"kubernetes/0"},
# {"MachineId":"3","Stdout":"192.168.122.166\n","UnitId":"kubernetes/1"}
# ]
# Strip out the IP addresses
while IFS=$'\n' read -r ip;
do KUBE_NODE_IP_ADDRESSES+=("$ip");
done < <("${JUJU_PATH}/return-node-ips.py" "${ipoutput}")
export KUBE_NODE_IP_ADDRESSES
# echo "Kubernetes minions: " ${KUBE_NODE_IP_ADDRESSES[@]} 1>&2
export NUM_NODES=${#KUBE_NODE_IP_ADDRESSES[@]}
}
function kube-up() {
build-local
# Replace the charm directory in the bundle.
sed "s|__CHARM_DIR__|${JUJU_REPOSITORY}|" < "${KUBE_BUNDLE_PATH}.base" > "${KUBE_BUNDLE_PATH}"
# The juju-deployer command will deploy the bundle and can be run
# multiple times to continue deploying the parts that fail.
juju deploy "${KUBE_BUNDLE_PATH}"
source "${KUBE_ROOT}/cluster/common.sh"
# Sleep due to juju bug http://pad.lv/1432759
sleep-status
detect-master
detect-nodes
# Copy kubectl, the cert and key to this machine from master.
(
umask 077
mkdir -p "${KUBECTL_DIR}"
juju scp "${KUBE_MASTER_NAME}:kubectl_package.tar.gz" "${KUBECTL_DIR}"
tar xfz "${KUBECTL_DIR}/kubectl_package.tar.gz" -C "${KUBECTL_DIR}"
)
# Export the location of the kubectl configuration file.
export KUBECONFIG="${KUBECTL_DIR}/kubeconfig"
}
function kube-down() {
local force="${1-}"
local jujuenv
jujuenv=$(juju switch)
juju destroy-model "${jujuenv}" "${force}" || true
# Clean up the generated charm files.
rm -rf "${KUBE_ROOT}/cluster/juju/charms"
# Clean up the kubectl binary and config file.
rm -rf "${KUBECTL_DIR}"
}
function prepare-e2e() {
echo "prepare-e2e() The Juju provider does not need any preparations for e2e." 1>&2
}
function sleep-status() {
local i
local maxtime
local jujustatus
i=0
maxtime=900
jujustatus=''
echo "Waiting up to 15 minutes to allow the cluster to come online... wait for it..." 1>&2
while [[ $i < $maxtime && -z $jujustatus ]]; do
sleep 15
i=$((i + 15))
jujustatus=$("${JUJU_PATH}/identify-leaders.py")
export KUBE_MASTER_NAME=${jujustatus}
done
}
# Execute prior to running tests to build a release if required for environment.
function test-build-release {
echo "test-build-release() " 1>&2
}
# Execute prior to running tests to initialize required structure. This is
# called from hack/e2e.go only when running -up.
function test-setup {
"${KUBE_ROOT}/cluster/kube-up.sh"
}
# Execute after running tests to perform any required clean-up. This is called
# from hack/e2e.go
function test-teardown() {
kube-down "-y"
}
# Verify the prerequisites are statisfied before running.
function verify-prereqs() {
gather_installation_reqs
}
|
Shell
|
package pl.touk.nussknacker.engine.definition.model
import pl.touk.nussknacker.engine.api.component.{
Component,
ComponentAdditionalConfig,
ComponentId,
DesignerWideComponentId
}
import pl.touk.nussknacker.engine.api.process.{
ExpressionConfig,
ProcessConfigCreator,
ProcessObjectDependencies,
WithCategories
}
import pl.touk.nussknacker.engine.definition.component.Components
import pl.touk.nussknacker.engine.definition.component.Components.ComponentDefinitionExtractionMode
import pl.touk.nussknacker.engine.definition.globalvariables.{
ExpressionConfigDefinition,
GlobalVariableDefinitionWithImplementation
}
import pl.touk.nussknacker.engine.modelconfig.ComponentsUiConfig
object ModelDefinitionFromConfigCreatorExtractor {
def extractModelDefinition(
creator: ProcessConfigCreator,
categoryOpt: Option[String],
modelDependencies: ProcessObjectDependencies,
componentsUiConfig: ComponentsUiConfig,
determineDesignerWideId: ComponentId => DesignerWideComponentId,
additionalConfigsFromProvider: Map[DesignerWideComponentId, ComponentAdditionalConfig],
componentDefinitionExtractionMode: ComponentDefinitionExtractionMode
): ModelDefinition = {
val sourceFactories = creator.sourceFactories(modelDependencies).toList
val sinkFactories = creator.sinkFactories(modelDependencies).toList
val services = creator.services(modelDependencies).toList
val customStreamTransformers = creator.customStreamTransformers(modelDependencies).toList
val allComponents = sourceFactories ++ sinkFactories ++ services ++ customStreamTransformers
val expressionConfig = creator.expressionConfig(modelDependencies)
val components = extractFromComponentsList(
allComponents,
categoryOpt,
componentsUiConfig,
determineDesignerWideId,
additionalConfigsFromProvider,
componentDefinitionExtractionMode,
)
val settings = creator.classExtractionSettings(modelDependencies)
ModelDefinition(
components,
toDefinition(expressionConfig, categoryOpt),
settings
)
}
private def extractFromComponentsList(
components: List[(String, WithCategories[Component])],
categoryOpt: Option[String],
componentsUiConfig: ComponentsUiConfig,
determineDesignerWideId: ComponentId => DesignerWideComponentId,
additionalConfigsFromProvider: Map[DesignerWideComponentId, ComponentAdditionalConfig],
componentDefinitionExtractionMode: ComponentDefinitionExtractionMode
): Components = {
Components.fold(
componentDefinitionExtractionMode,
collectAvailableForCategory(components, categoryOpt)
.map { case (componentName, component, componentConfig) =>
Components
.withComponent(
componentName,
component,
componentConfig,
componentsUiConfig,
determineDesignerWideId,
additionalConfigsFromProvider,
componentDefinitionExtractionMode
)
}
)
}
private def toDefinition(
expressionConfig: ExpressionConfig,
categoryOpt: Option[String],
): ExpressionConfigDefinition = {
val filteredVariables = collectAvailableForCategory(expressionConfig.globalProcessVariables.toList, categoryOpt)
val variables = filteredVariables.map { case (name, variable, _) =>
name -> GlobalVariableDefinitionWithImplementation(variable)
}.toMap
ExpressionConfigDefinition(
variables,
expressionConfig.globalImports,
expressionConfig.additionalClasses,
expressionConfig.optimizeCompilation,
expressionConfig.dictionaries,
expressionConfig.hideMetaVariable,
expressionConfig.strictMethodsChecking,
expressionConfig.staticMethodInvocationsChecking,
expressionConfig.methodExecutionForUnknownAllowed,
expressionConfig.dynamicPropertyAccessAllowed,
expressionConfig.spelExpressionExcludeList,
expressionConfig.customConversionsProviders
)
}
private def collectAvailableForCategory[T](list: List[(String, WithCategories[T])], categoryOpt: Option[String]) = {
def availableForCategory(component: WithCategories[_]): Boolean =
component.categories.isEmpty ||
categoryOpt.forall(category => component.categories.exists(_.contains(category)))
list.collect {
case (name, withComponentConfig) if availableForCategory(withComponentConfig) =>
(name, withComponentConfig.value, withComponentConfig.componentConfig)
}
}
}
|
Scala
|
# Copyright (c) 2016, Ruslan Baratov
# All rights reserved.
cmake_minimum_required(VERSION 3.0)
# Emulate HunterGate:
# * https://github.com/hunter-packages/gate
include("../common.cmake")
project(download-dest)
# download dest
hunter_add_package(dest)
# now dest can be used
find_package(dest CONFIG REQUIRED)
add_executable(foo foo.cpp)
target_link_libraries(foo dest::dest)
|
CMake
|
package lscob2b.test.contactus
import lscob2b.data.PageHelper
import lscob2b.data.UserHelper
import lscob2b.pages.ContactUsPage
import lscob2b.pages.HomePage
import lscob2b.pages.LoginPage
import lscob2b.test.data.PropertProvider
class ContactUsPageTest extends PropertProvider{
def setup() {
PageHelper.gotoPageLogout(browser, baseUrl)
}
/**
* Check Translations - Contact Us
*/
def "Verify contact us page fields"() {
setup:
to LoginPage
at LoginPage
clickContactUS()
when:"at Contact Us page"
at ContactUsPage
then:"Verify translations at ContactUsPage"
verifyTrue(masterTemplate.mainContainerLabel.text(), expectedValue("contactus.heading").toUpperCase())
verifyTrue(masterTemplate.introContainerLabel.text(),expectedValue("contactus.intro")) //FAILED
verifyTrue(masterTemplate.requiredMessageText.text().replaceAll(' ""', ""),expectedValue("form.required").replaceAll(' "<span class=mandatory></span>"', ""))
verifyTrue(titleLabel.text(),expectedValue("user.title").toUpperCase())
verifyTrue(firstNameLabel.text(),expectedValue("user.firstName").toUpperCase())
verifyTrue(lastNameLabel.text(),expectedValue("user.lastName").toUpperCase())
verifyTrue(emailLabel.text(),expectedValue("user.email").toUpperCase()) //FAILED
verifyTrue(phoneLabel.text(),expectedValue("user.phone").toUpperCase())
verifyTrue(companyNameLabel.text(),expectedValue("user.companyName").toUpperCase())
verifyTrue(countryLabel.text(),expectedValue("user.country").toUpperCase())
verifyTrue(commentsLabel.text(),expectedValue("user.comments").toUpperCase())
verifyTrue(sendButton.text(),expectedValue("contactus.send").toUpperCase()) //FAILED
verifyTestFailedOrPassed()
}
def "Verify translation of error message with All fields Empty - ContactUsPage "() {
setup:
to LoginPage
at LoginPage
clickContactUS()
when:"at Contact Us page"
at ContactUsPage
then: "click on SEND button"
clickSendButton()
and:"Verify of error messages in ContactUsPage"
verifyTrue(masterTemplate.alertMessageHeader.text(), expectedValue("text.please.note").toUpperCase())
verifyTrue(masterTemplate.alertMessage.text(), expectedValue("contactus.error.message"))
verifyTrue(titleError.text(),expectedValue("contactus.title.invalid"))
verifyTrue(firstNameError.text(),expectedValue("contactus.firstname.invalid"))
verifyTrue(lastNameError.text(),expectedValue("contactus.lastname.invalid"))
verifyTrue(emailError.text(),expectedValue("contactus.email.invalid"))
verifyTrue(phoneError.text(),expectedValue("contactus.phone.invalid"))
verifyTrue(companyNameError.text(),expectedValue("contactus.company.invalid"))
verifyTrue(countryError.text(),expectedValue("contactus.country.invalid"))
//verifyTrue(commentsError.text(),expectedValue("contactus.comments.invalid"))
verifyTestFailedOrPassed()
}
def "Verify SUCCESSFUL SENT message - ContactUsPage"() {
setup:
to LoginPage
at LoginPage
clickContactUS()
when:"at Contact Us page"
at ContactUsPage
then: "fill out the form and request access"
def title = selectTitleOption(2)
fillOutFirstName('Customer')
fillOutlastName('Unit')
fillOutEmail('[email protected]')
fillOutPhone('111-222-3333')
fillOutCompanyName('Levis')
def country = selectCountryOption(234)
fillOutComments('test')
clickSendButton()
and:"Verify translation of message"
verifyTrue(masterTemplate.noteMessageHeader.text(), expectedValue("text.msg.sent.successfully").toUpperCase())
verifyTrue(masterTemplate.noteMessage.text().replaceAll(masterTemplate.noteMessageHeader.text()+"\n",""), expectedValue("text.msg.sent.successfully").toUpperCase()) //FAILED
verifyTestFailedOrPassed()
}
def "Verify translation of error message with Invalid Email Id - ContactUsPage"() {
setup:
to LoginPage
at LoginPage
clickContactUS()
when:"at Contact Us page"
at ContactUsPage
then:"fill out the form and request access"
def title = selectTitleOption(2)
fillOutFirstName('test')
fillOutlastName('test')
fillOutEmail('[email protected]')
fillOutPhone('111-222-3333')
fillOutCompanyName('test')
def country = selectCountryOption(234)
fillOutComments('test')
clickSendButton()
and:"Verify translation of error message"
verifyTrue(masterTemplate.alertMessageHeader.text(), expectedValue("text.please.note").toUpperCase())
verifyTrue(masterTemplate.alertMessage.text(), expectedValue("contactus.serviceerror.message"))
verifyTestFailedOrPassed()
}
// def "Verify translation of SYSTEM ERROR message - ContactUsPage"() {
// setup:
// to LoginPage
// at LoginPage
// clickContactUS()
//
// when:"at Contact Us page"
// at ContactUsPage
//
// then:"fill out the form and request access"
// def title = selectTitleOption(2)
// fillOutFirstName('test')
// fillOutlastName('test')
// fillOutEmail('[email protected]')
// fillOutPhone('111-222-3333')
// fillOutCompanyName('test')
// def country = selectCountryOption(18)
// fillOutComments('test')
// clickSendButton()
//
// and:"Verify translation of error message"
// verifyTrue(masterTemplate.mainContainerLabel.text(),expectedValue("system.error").toUpperCase()) //FAILED
// verifyTrue(masterTemplate.alertMessageHeader.text(), expectedValue("system.error.title").toUpperCase()) //FAILED
// verifyTrue(masterTemplate.alertMessage.text(), expectedValue("system.error.try.again")) //FAILED
// verifyTestFailedOrPassed()
// }
}
|
Groovy
|
# TetrisAI
Juego del Tetris con agentes inteligentes usando aprendizaje por refuerzo
|
GCC Machine Description
|
;
; Entry: E'H'L'=far pointer
; L=byte
SECTION code_clib
SECTION code_l_sccz80
.ASSUME ADL = 0 ; use the 16 bit address, with MBASE
lp_pchar:
push hl
exx
push.l hl
ld.lis hl,2
add.l hl,sp
ld.l (hl),e
pop.l hl
pop de
ld.l (hl),e
ret
|
Assembly
|
2006-12-29,46.200001,46.610001,46.029999,46.18,10810500,36.438334
2006-12-28,45.810001,46.200001,45.810001,46.009998,7100500,36.304194
2006-12-27,45.75,46.25,45.75,46.16,12124100,36.422553
2006-12-26,44.799999,46.290001,44.799999,46.110001,10493300,36.383101
2006-12-22,45.50,45.799999,45.00,45.540001,11098700,35.933342
2006-12-21,45.950001,46.060001,45.610001,45.709999,11281600,36.067479
2006-12-20,46.00,46.130001,45.869999,45.869999,13936800,36.193727
2006-12-19,46.130001,46.240002,45.50,46.09,17349900,36.367319
2006-12-18,46.50,46.799999,46.279999,46.369999,12870200,36.588252
2006-12-15,46.630001,46.889999,46.389999,46.450001,16087800,36.651378
2006-12-14,46.119999,46.610001,45.91,46.52,18438400,36.706611
2006-12-13,45.900002,46.029999,45.799999,45.900002,17372300,36.217401
2006-12-12,45.919998,46.169998,45.580002,45.650002,18002900,35.887579
2006-12-11,46.450001,46.450001,45.919998,46.00,16503200,36.162729
2006-12-08,46.299999,46.619999,46.25,46.349998,10540600,36.437879
2006-12-07,46.700001,46.799999,46.360001,46.369999,14205400,36.453602
2006-12-06,46.490002,46.75,46.360001,46.540001,9839100,36.587249
2006-12-05,46.25,46.549999,46.07,46.48,10470400,36.540079
2006-12-04,46.25,46.509998,45.869999,46.290001,14495900,36.390712
2006-12-01,46.00,46.099998,45.419998,45.869999,25024700,36.060529
2006-11-30,46.50,46.73,46.02,46.099998,24220700,36.241342
2006-11-29,46.889999,47.330002,46.630001,46.889999,12673300,36.862399
2006-11-28,46.529999,46.889999,46.48,46.709999,13365200,36.720892
2006-11-27,47.439999,47.689999,46.549999,46.610001,23502500,36.642279
2006-11-24,47.759998,48.049999,47.549999,47.900002,5081400,37.656408
2006-11-22,47.880001,48.209999,47.759998,48.029999,10822100,37.758605
2006-11-21,47.759998,47.98,47.599998,47.810001,8744200,37.585655
2006-11-20,47.50,48.240002,47.419998,47.720001,12335800,37.514902
2006-11-17,47.75,47.82,47.41,47.50,15820900,37.341948
2006-11-16,47.959999,47.990002,47.50,47.91,11076400,37.664268
2006-11-15,47.77,48.080002,47.580002,47.68,16474300,37.483455
2006-11-14,47.830002,48.200001,47.189999,47.66,28621800,37.467732
2006-11-13,46.470001,46.84,45.970001,46.32,24180600,36.414296
2006-11-10,46.310001,46.689999,46.310001,46.470001,13199000,36.532219
2006-11-09,47.110001,47.209999,46.310001,46.389999,27230600,36.469326
2006-11-08,47.299999,47.509998,47.029999,47.029999,30111600,36.972459
2006-11-07,47.689999,47.990002,47.41,47.650002,17884700,37.459872
2006-11-06,47.740002,48.209999,47.200001,47.490002,17430700,37.334088
2006-11-03,48.299999,48.470001,47.200001,47.529999,18014100,37.365532
2006-11-02,47.669998,48.369999,47.66,48.290001,24382500,37.963005
2006-11-01,49.380001,49.700001,48.650002,48.849998,16787500,38.403245
2006-10-31,49.599998,49.779999,49.119999,49.279999,17582600,38.741288
2006-10-30,49.220001,49.720001,49.099998,49.529999,26087300,38.937824
2006-10-27,51.580002,51.599998,50.630001,50.73,12533200,39.881201
2006-10-26,50.77,51.75,50.650002,51.75,14230000,40.68307
2006-10-25,51.049999,51.779999,50.549999,50.849998,17283400,39.975537
2006-10-24,51.299999,51.900002,51.049999,51.299999,18782300,40.329304
2006-10-23,49.369999,52.150002,49.029999,51.279999,53101600,40.31358
2006-10-20,48.73,49.73,48.650002,49.369999,18955600,38.812041
2006-10-19,48.43,48.990002,48.389999,48.490002,10093000,38.120235
2006-10-18,48.43,48.57,48.16,48.349998,10282600,38.010172
2006-10-17,48.200001,48.32,47.639999,48.279999,11116000,37.955142
2006-10-16,48.310001,48.459999,48.110001,48.32,6618600,37.986588
2006-10-13,48.279999,48.52,48.119999,48.459999,8802100,38.096648
2006-10-12,48.490002,48.669998,48.080002,48.32,12425000,37.986588
2006-10-11,48.029999,48.450001,47.869999,48.310001,10006100,37.978728
2006-10-10,48.490002,48.490002,47.880001,48.119999,9662900,37.829358
2006-10-09,48.189999,48.529999,47.970001,48.220001,9645300,37.907975
2006-10-06,48.419998,48.98,48.240002,48.32,15445600,37.986588
2006-10-05,49.470001,49.470001,48.099998,48.41,25071000,38.057341
2006-10-04,48.310001,49.610001,48.130001,49.549999,24777600,38.953548
2006-10-03,48.459999,49.50,48.060001,49.459999,14986500,38.882794
2006-10-02,48.619999,48.860001,48.029999,48.439999,18006000,38.080925
2006-09-29,49.610001,49.950001,49.310001,49.32,12582300,38.772734
2006-09-28,49.50,49.84,49.029999,49.810001,12772500,39.157947
2006-09-27,49.060001,49.759998,49.040001,49.50,15714800,38.914241
2006-09-26,48.93,49.849998,48.799999,49.25,14979000,38.717704
2006-09-25,48.25,49.00,48.029999,48.82,12196400,38.379661
2006-09-22,47.830002,48.619999,47.599998,48.290001,11771800,37.963005
2006-09-21,48.869999,49.060001,48.209999,48.459999,13051700,38.096648
2006-09-20,48.77,49.02,48.419998,48.869999,13711900,38.418968
2006-09-19,48.240002,48.50,48.00,48.50,11422600,38.128095
2006-09-18,48.02,48.529999,47.66,48.099998,10830500,37.813635
2006-09-15,48.639999,48.84,48.150002,48.220001,17147300,37.907975
2006-09-14,47.84,48.41,47.580002,48.369999,10160500,38.025895
2006-09-13,47.950001,48.369999,47.549999,48.080002,11168800,37.797915
2006-09-12,47.650002,48.639999,47.470001,48.07,18437100,37.790052
2006-09-11,46.700001,47.50,46.299999,47.490002,17148700,37.334088
2006-09-08,45.689999,46.810001,45.549999,46.720001,14053500,36.728755
2006-09-07,45.400002,46.040001,45.299999,45.540001,16007900,35.801102
2006-09-06,45.439999,45.650002,45.150002,45.400002,10109600,35.691042
2006-09-05,45.709999,45.889999,45.360001,45.57,10560300,35.824686
2006-09-01,45.00,45.799999,44.02,45.450001,11383200,35.730349
2006-08-31,44.93,44.98,44.52,44.720001,8784900,35.156463
2006-08-30,44.630001,44.939999,44.200001,44.619999,12154300,35.077846
2006-08-29,44.650002,44.650002,44.060001,44.490002,9858100,34.975649
2006-08-28,44.200001,44.650002,44.16,44.43,11202200,34.92848
2006-08-25,43.599998,44.060001,43.52,43.880001,7720700,34.4961
2006-08-24,43.939999,43.959999,43.66,43.700001,7480100,34.354593
2006-08-23,44.099998,44.150002,43.48,43.759998,10579600,34.40176
2006-08-22,44.200001,44.369999,43.98,44.07,8267400,34.645466
2006-08-21,44.299999,44.380001,44.02,44.09,9482300,34.66119
2006-08-18,44.720001,44.740002,44.299999,44.490002,9083600,34.975649
2006-08-17,44.50,45.00,44.330002,44.630001,12368200,35.085709
2006-08-16,44.549999,44.68,44.049999,44.43,16454100,34.92848
2006-08-15,44.779999,44.889999,44.049999,44.549999,18589400,34.890743
2006-08-14,44.84,45.43,44.73,45.099998,10970900,35.321492
2006-08-11,44.900002,44.939999,44.299999,44.689999,8244500,35.000388
2006-08-10,43.900002,44.939999,43.75,44.889999,12140800,35.157025
2006-08-09,44.779999,44.880001,43.860001,43.900002,10279600,34.381676
2006-08-08,44.82,44.990002,44.369999,44.459999,7690500,34.820256
2006-08-07,44.599998,45.049999,44.50,44.82,7335000,35.102202
2006-08-04,45.150002,45.450001,44.650002,44.869999,9733000,35.141361
2006-08-03,44.27,45.130001,44.169998,44.73,11035500,35.031716
2006-08-02,44.299999,44.43,44.00,44.369999,7989700,34.74977
2006-08-01,44.349998,44.380001,43.790001,44.09,9644300,34.53048
2006-07-31,45.02,45.119999,44.330002,44.50,13463400,34.851584
2006-07-28,43.77,44.540001,43.77,44.459999,12361300,34.820256
2006-07-27,43.970001,44.00,43.470001,43.529999,8706800,34.091897
2006-07-26,44.450001,44.470001,43.630001,43.669998,12347400,34.201542
2006-07-25,44.209999,44.799999,43.939999,44.669998,10678900,34.984724
2006-07-24,44.029999,44.889999,44.029999,44.43,11650200,34.796762
2006-07-21,44.509998,44.509998,43.560001,43.720001,12976300,34.240703
2006-07-20,44.349998,44.610001,44.150002,44.290001,10252400,34.687117
2006-07-19,43.279999,44.330002,43.23,44.200001,17608700,34.61663
2006-07-18,42.759998,43.23,42.310001,43.169998,20375200,33.809951
2006-07-17,43.23,43.93,42.720001,43.02,17697300,33.692476
2006-07-14,43.93,44.029999,42.810001,43.049999,20072300,33.71597
2006-07-13,44.549999,44.619999,43.709999,44.16,26306500,34.585302
2006-07-12,46.209999,46.25,45.110001,45.150002,13258500,35.360653
2006-07-11,46.00,46.209999,45.41,46.130001,13206100,36.128171
2006-07-10,46.25,46.73,46.049999,46.18,7308700,36.16733
2006-07-07,46.48,46.630001,45.880001,46.00,10525400,36.026357
2006-07-06,46.830002,47.139999,46.509998,46.720001,10174000,36.590248
2006-07-05,47.209999,47.34,46.759998,47.02,11523000,36.825202
2006-07-03,47.75,48.049999,47.099998,47.57,9097300,37.255952
2006-06-30,48.700001,48.849998,48.16,48.169998,11119600,37.725859
2006-06-29,48.110001,48.720001,47.91,48.709999,10966900,38.148778
2006-06-28,47.650002,47.93,47.360001,47.919998,7287700,37.530064
2006-06-27,47.950001,48.27,47.57,47.630001,8423100,37.302944
2006-06-26,48.09,48.200001,47.799999,48.07,6776400,37.647543
2006-06-23,48.349998,48.630001,47.759998,47.939999,8247000,37.545728
2006-06-22,48.709999,49.189999,48.27,48.48,8465900,37.968647
2006-06-21,48.299999,49.00,48.299999,48.900002,9969800,38.297585
2006-06-20,48.25,48.59,48.209999,48.43,8699700,37.929488
2006-06-19,48.450001,48.900002,48.00,48.27,11618700,37.804179
2006-06-16,48.560001,49.16,48.200001,48.310001,16742300,37.835507
2006-06-15,47.740002,48.75,47.310001,48.66,15733300,38.10962
2006-06-14,47.560001,47.900002,47.369999,47.709999,10429800,37.365597
2006-06-13,47.09,47.93,47.029999,47.529999,14181300,37.224624
2006-06-12,47.099998,47.419998,46.919998,46.990002,7468900,36.801708
2006-06-09,47.150002,47.490002,47.00,47.130001,7494600,36.911353
2006-06-08,47.09,47.540001,46.84,47.299999,16265400,37.044492
2006-06-07,47.07,47.73,46.919998,47.040001,9688200,36.840866
2006-06-06,47.34,47.490002,46.549999,47.029999,16464300,36.833033
2006-06-05,47.77,48.040001,47.099998,47.189999,12445900,36.958342
2006-06-02,48.169998,48.349998,47.32,47.830002,13776000,37.459581
2006-06-01,48.25,48.57,47.919998,48.389999,13468200,37.89816
2006-05-31,48.48,48.720001,48.099998,48.450001,12049600,37.945152
2006-05-30,48.619999,48.709999,48.23,48.299999,19274000,37.827674
2006-05-26,49.599998,50.00,49.450001,49.650002,17434300,38.884971
2006-05-25,48.82,49.830002,48.650002,49.450001,25807000,38.728334
2006-05-24,47.529999,48.139999,47.369999,48.029999,16235000,37.616215
2006-05-23,47.599998,47.990002,47.50,47.52,11022600,37.216793
2006-05-22,47.290001,47.77,47.099998,47.349998,9915300,37.083651
2006-05-19,47.450001,47.48,46.889999,47.32,13027900,37.060156
2006-05-18,47.02,47.389999,46.650002,47.220001,10941200,36.981839
2006-05-17,47.650002,47.68,46.830002,46.84,15513800,36.684229
2006-05-16,47.869999,48.310001,47.689999,48.07,17685000,37.515967
2006-05-15,46.25,47.560001,46.080002,47.43,17050900,37.016483
2006-05-12,47.259998,47.450001,46.529999,46.540001,11408100,36.321888
2006-05-11,47.900002,47.900002,47.029999,47.25,11204500,36.876003
2006-05-10,47.709999,48.09,47.580002,47.779999,9449800,37.289637
2006-05-09,47.689999,48.169998,47.580002,47.869999,14506900,37.359878
2006-05-08,47.25,47.900002,47.099998,47.57,9878300,37.125745
2006-05-05,46.599998,47.34,46.52,47.25,9080500,36.876003
2006-05-04,46.919998,46.98,46.119999,46.400002,10585300,36.212626
2006-05-03,46.32,46.84,46.290001,46.689999,11793200,36.438953
2006-05-02,46.119999,46.259998,45.900002,46.16,9598300,36.025318
2006-05-01,45.919998,46.580002,45.540001,45.93,18546900,35.845816
2006-04-28,45.580002,45.669998,44.990002,45.029999,15376800,35.143415
2006-04-27,45.779999,46.080002,45.619999,45.639999,12791700,35.619487
2006-04-26,45.75,46.029999,45.669998,45.98,10582300,35.884838
2006-04-25,45.66,45.93,45.50,45.630001,9205900,35.611683
2006-04-24,45.619999,45.740002,45.400002,45.540001,12143600,35.541443
2006-04-21,46.599998,46.599998,45.68,45.82,10118100,35.759967
2006-04-20,46.369999,46.709999,46.259998,46.400002,8844900,36.212626
2006-04-19,46.32,46.700001,46.25,46.470001,10743200,36.267257
2006-04-18,46.139999,46.52,46.07,46.400002,10545900,36.212626
2006-04-17,45.799999,46.279999,45.630001,45.82,9225100,35.759967
2006-04-13,45.959999,46.009998,45.619999,45.77,7199000,35.720945
2006-04-12,45.779999,45.959999,45.650002,45.900002,9285200,35.822404
2006-04-11,45.599998,45.759998,45.27,45.50,9653700,35.510225
2006-04-10,45.98,46.00,45.509998,45.700001,9582500,35.666314
2006-04-07,46.50,46.77,45.810001,46.02,12457500,35.916056
2006-04-06,46.880001,47.09,46.349998,46.560001,8763900,36.337497
2006-04-05,46.580002,46.970001,46.50,46.869999,7763700,36.579433
2006-04-04,46.689999,46.77,46.349998,46.50,8715100,36.290669
2006-04-03,47.27,47.310001,46.529999,46.77,14109000,36.50139
2006-03-31,47.939999,47.939999,47.200001,47.240002,10091000,36.8682
2006-03-30,48.049999,48.18,47.310001,47.66,9793600,37.195985
2006-03-29,47.799999,48.18,47.50,48.049999,8681800,37.500358
2006-03-28,47.950001,48.32,47.66,47.75,10044300,37.266225
2006-03-27,48.189999,48.299999,47.900002,47.950001,8663800,37.422315
2006-03-24,48.700001,48.720001,48.02,48.189999,9726300,37.60962
2006-03-23,48.189999,48.869999,48.049999,48.540001,14733200,37.882777
2006-03-22,47.91,48.220001,47.740002,48.099998,9025800,37.539379
2006-03-21,48.200001,48.450001,47.720001,48.110001,13890300,37.547186
2006-03-20,47.029999,48.07,46.990002,47.759998,19702000,37.274028
2006-03-17,46.599998,46.790001,46.290001,46.689999,12438300,36.438953
2006-03-16,45.560001,46.439999,45.419998,46.360001,18556100,36.181408
2006-03-15,45.50,45.57,45.220001,45.32,13990700,35.369745
2006-03-14,45.189999,45.580002,45.16,45.540001,13714300,35.41033
2006-03-13,45.349998,45.459999,45.220001,45.27,8837700,35.200387
2006-03-10,45.439999,45.48,45.209999,45.330002,9321900,35.247042
2006-03-09,45.200001,45.389999,45.110001,45.240002,7233700,35.177061
2006-03-08,45.200001,45.630001,45.16,45.27,14478100,35.200387
2006-03-07,45.189999,45.360001,45.049999,45.27,11246500,35.200387
2006-03-06,45.490002,45.540001,44.970001,45.119999,9749300,35.083751
2006-03-03,44.869999,45.50,44.860001,45.330002,9508600,35.247042
2006-03-02,45.009998,45.48,44.93,45.060001,12518600,35.037099
2006-03-01,45.360001,45.509998,45.029999,45.150002,12042000,35.10708
2006-02-28,45.57,45.810001,45.220001,45.360001,12302300,35.270368
2006-02-27,45.549999,45.880001,45.549999,45.759998,9051700,35.581392
2006-02-24,45.700001,45.75,45.259998,45.450001,9652200,35.340349
2006-02-23,45.50,45.950001,45.34,45.700001,14826400,35.53474
2006-02-22,45.93,45.990002,45.439999,45.48,9910700,35.363675
2006-02-21,45.709999,46.459999,45.470001,45.740002,15374300,35.565844
2006-02-17,46.630001,46.630001,45.799999,46.099998,15355200,35.845765
2006-02-16,46.849998,47.02,46.349998,46.630001,9074400,36.257876
2006-02-15,46.290001,46.93,45.889999,46.889999,11835300,36.460042
2006-02-14,45.419998,46.639999,45.279999,46.450001,14872400,36.117914
2006-02-13,45.470001,45.82,45.470001,45.509998,7161400,35.387001
2006-02-10,45.599998,45.950001,45.310001,45.75,8037700,35.573618
2006-02-09,45.48,45.970001,45.330002,45.700001,13131800,35.53474
2006-02-08,44.779999,45.509998,44.52,45.400002,12344600,35.301471
2006-02-07,45.00,45.470001,44.68,44.740002,16189800,34.788278
2006-02-06,45.439999,45.509998,45.049999,45.080002,12184800,35.052651
2006-02-03,45.990002,46.209999,45.439999,45.490002,11329500,35.371452
2006-02-02,46.299999,46.48,45.470001,46.279999,18513100,35.985727
2006-02-01,46.049999,46.380001,45.57,46.139999,15193000,35.876868
2006-01-31,46.439999,46.529999,46.029999,46.110001,12925400,35.853542
2006-01-30,46.400002,46.950001,46.209999,46.41,15269000,36.086811
2006-01-27,45.990002,46.52,44.880001,45.84,13385900,35.643599
2006-01-26,46.209999,46.509998,45.830002,46.32,16798500,36.01683
2006-01-25,45.700001,46.169998,45.66,45.970001,18986500,35.744683
2006-01-24,45.549999,45.91,45.50,45.720001,18185800,35.550292
2006-01-23,45.00,45.470001,44.540001,45.25,15611000,35.184835
2006-01-20,45.639999,45.700001,44.810001,45.00,19353600,34.990444
2006-01-19,45.18,45.889999,45.060001,45.799999,18141600,35.612496
2006-01-18,44.650002,45.389999,44.610001,45.18,13191600,35.130406
2006-01-17,45.400002,45.419998,44.700001,44.950001,17117900,34.951566
2006-01-13,45.68,45.889999,45.310001,45.400002,10259300,35.301471
2006-01-12,46.25,46.389999,45.669998,45.740002,11425000,35.565844
2006-01-11,46.060001,46.599998,45.759998,46.57,14179300,36.211221
2006-01-10,45.50,46.029999,45.459999,45.860001,13422200,35.659151
2006-01-09,45.889999,46.150002,45.560001,45.709999,14877400,35.542515
2006-01-06,45.689999,45.880001,45.099998,45.880001,21129800,35.674702
2006-01-05,46.00,46.400002,45.290001,45.689999,20758200,35.526963
2006-01-04,46.240002,46.50,46.099998,46.32,14087200,36.01683
2006-01-03,46.360001,46.66,45.57,46.23,23413500,35.946849
2005-12-30,47.470001,47.470001,46.75,46.799999,10423200,36.390061
2005-12-29,47.869999,48.02,47.419998,47.48,7720600,36.918806
2005-12-28,47.84,48.299999,47.75,47.84,7262500,37.19873
2005-12-27,48.41,48.450001,47.360001,47.73,13065500,37.113197
2005-12-23,48.50,48.580002,48.169998,48.34,7157400,37.587513
2005-12-22,48.650002,48.799999,48.360001,48.599998,6699000,37.789678
2005-12-21,48.849998,48.939999,48.470001,48.650002,7799100,37.828559
2005-12-20,48.84,48.950001,48.439999,48.599998,9339200,37.789678
2005-12-19,49.119999,49.740002,48.900002,48.959999,9458000,38.069602
2005-12-16,49.580002,49.630001,49.049999,49.27,12616000,38.310649
2005-12-15,49.380001,49.549999,48.82,49.259998,9213400,38.302871
2005-12-14,49.459999,49.689999,49.139999,49.509998,12293200,38.497263
2005-12-13,48.400002,49.709999,48.360001,49.470001,20294200,38.349529
2005-12-12,48.349998,48.880001,48.299999,48.68,15462000,37.737114
2005-12-09,47.599998,48.459999,47.580002,48.080002,11183800,37.27199
2005-12-08,47.759998,47.880001,47.50,47.700001,12361400,36.977411
2005-12-07,47.799999,48.060001,47.419998,47.75,10770200,37.01617
2005-12-06,47.41,47.919998,47.32,47.619999,20522000,36.915393
2005-12-05,47.889999,47.889999,47.09,47.139999,20066700,36.543293
2005-12-02,47.830002,48.459999,47.509998,47.970001,10951700,37.186717
2005-12-01,48.59,48.75,47.529999,48.029999,23882800,37.233228
2005-11-30,49.119999,49.18,48.529999,48.560001,11770000,37.64409
2005-11-29,50.009998,50.099998,48.82,49.009998,18482900,37.992931
2005-11-28,50.619999,50.66,49.830002,50.00,16693100,38.760388
2005-11-25,50.689999,50.869999,50.32,50.490002,6317300,39.140241
2005-11-23,50.299999,50.720001,50.07,50.57,11904600,39.202256
2005-11-22,49.34,50.23,48.720001,50.200001,15482700,38.91543
2005-11-21,49.540001,49.799999,49.41,49.619999,9840200,38.465808
2005-11-18,49.66,49.799999,49.009998,49.50,13152800,38.372784
2005-11-17,49.040001,49.299999,48.860001,49.240002,6703500,38.171231
2005-11-16,48.779999,49.200001,48.330002,48.880001,11752200,37.892156
2005-11-15,48.799999,49.119999,48.310001,48.779999,16849600,37.814633
2005-11-14,49.41,49.689999,49.009998,49.299999,13834200,38.217742
2005-11-11,49.16,49.48,48.77,49.00,12118600,37.98518
2005-11-10,48.25,49.299999,48.150002,49.040001,18937600,38.016189
2005-11-09,47.529999,48.369999,47.32,48.200001,13416200,37.365015
2005-11-08,47.799999,47.849998,47.369999,47.610001,7506200,36.907642
2005-11-07,47.919998,48.189999,47.75,48.049999,12175100,37.248732
2005-11-04,47.400002,47.75,47.080002,47.689999,10464700,36.969657
2005-11-03,48.00,48.130001,47.130001,47.450001,16028500,36.783609
2005-11-02,46.75,47.77,46.610001,47.560001,12558400,36.868882
2005-11-01,47.119999,47.23,46.830002,46.990002,11783500,36.427014
2005-10-31,46.099998,47.549999,45.990002,47.310001,22501700,36.67508
2005-10-28,44.990002,45.549999,44.759998,45.50,12353000,35.271953
2005-10-27,45.439999,45.68,44.720001,44.740002,12430300,34.682796
2005-10-26,45.169998,45.98,45.060001,45.580002,11912100,35.333971
2005-10-25,45.959999,46.080002,45.25,45.389999,14979100,35.18668
2005-10-24,46.09,46.349998,45.709999,46.209999,10366800,35.82235
2005-10-21,45.779999,46.099998,45.599998,45.720001,13367300,35.4425
2005-10-20,46.150002,46.57,45.400002,45.599998,18926800,35.349473
2005-10-19,45.130001,46.07,44.779999,45.990002,17058200,35.651806
2005-10-18,45.200001,45.50,45.040001,45.130001,11988100,34.985127
2005-10-17,45.279999,45.290001,44.84,45.240002,9794300,35.0704
2005-10-14,45.18,45.259998,44.599998,45.040001,11857800,34.915358
2005-10-13,44.900002,45.099998,44.610001,44.759998,12455900,34.698298
2005-10-12,45.060001,45.150002,44.599998,44.939999,15741300,34.837836
2005-10-11,44.990002,45.200001,44.549999,45.02,17153300,34.899854
2005-10-10,44.669998,45.00,44.450001,44.540001,18902100,34.527754
2005-10-07,44.02,44.23,43.75,44.029999,12259400,34.132397
2005-10-06,43.950001,44.450001,43.299999,43.93,20465700,34.054877
2005-10-05,43.970001,43.970001,43.50,43.50,14243200,33.721537
2005-10-04,43.759998,44.290001,43.759998,43.849998,13798200,33.992859
2005-10-03,44.150002,44.419998,43.689999,43.759998,16613900,33.92309
2005-09-30,43.48,43.869999,43.349998,43.82,13653300,33.969604
2005-09-29,43.290001,43.580002,43.009998,43.540001,16016000,33.752546
2005-09-28,43.049999,43.400002,42.759998,43.130001,18555900,33.434711
2005-09-27,43.450001,43.450001,42.900002,43.099998,14359500,33.411453
2005-09-26,43.77,43.830002,43.02,43.110001,15623500,33.419207
2005-09-23,43.299999,43.650002,42.869999,43.200001,18215400,33.488976
2005-09-22,42.450001,43.529999,42.310001,43.189999,22190000,33.481222
2005-09-21,43.02,43.139999,42.43,42.490002,27188000,32.938579
2005-09-20,44.080002,44.150002,43.09,43.209999,26317500,33.496727
2005-09-19,44.00,44.240002,43.82,44.009998,34095500,34.116892
2005-09-16,44.209999,44.470001,43.830002,43.869999,96786800,34.008364
2005-09-15,44.700001,44.799999,44.23,44.32,18444400,34.357208
2005-09-14,45.18,45.299999,44.57,44.700001,15362900,34.651787
2005-09-13,46.48,46.48,45.029999,45.07,16434100,34.938613
2005-09-12,45.720001,46.130001,45.549999,45.889999,11434300,35.574284
2005-09-09,45.650002,46.119999,44.900002,45.889999,10780500,35.574284
2005-09-08,45.599998,45.860001,45.32,45.860001,10544300,35.551028
2005-09-07,45.830002,45.98,45.360001,45.860001,13345700,35.551028
2005-09-06,44.849998,45.73,44.799999,45.689999,16944800,35.419241
2005-09-02,45.150002,45.18,44.529999,44.549999,11796400,34.535505
2005-09-01,44.950001,45.139999,44.720001,45.00,16940600,34.884349
2005-08-31,45.290001,45.299999,44.700001,44.959999,21881200,34.85334
2005-08-30,45.360001,45.50,44.75,45.189999,22993500,35.031638
2005-08-29,45.439999,45.950001,45.290001,45.650002,10575800,35.388235
2005-08-26,45.32,46.049999,45.209999,45.700001,14597000,35.426995
2005-08-25,45.830002,45.950001,45.16,45.290001,12566900,35.10916
2005-08-24,46.349998,46.459999,45.470001,45.549999,15640100,35.310713
2005-08-23,46.43,46.650002,46.299999,46.34,8823400,35.923128
2005-08-22,46.860001,47.189999,46.330002,46.669998,10222200,36.178945
2005-08-19,47.380001,47.380001,46.509998,46.580002,14443800,36.109179
2005-08-18,47.18,47.459999,46.50,47.240002,8477200,36.620816
2005-08-17,47.310001,47.610001,47.110001,47.110001,11811600,36.520038
2005-08-16,48.060001,48.200001,47.150002,47.57,29758300,36.760351
2005-08-15,48.82,49.150002,48.50,49.099998,10345200,37.942677
2005-08-12,48.82,49.099998,48.560001,48.700001,10298800,37.633574
2005-08-11,49.029999,49.299999,48.650002,48.950001,9560900,37.826765
2005-08-10,49.310001,49.75,48.759998,48.84,10971100,37.74176
2005-08-09,49.150002,49.560001,49.09,49.220001,7797200,38.035411
2005-08-08,49.48,49.540001,49.099998,49.150002,7226200,37.981318
2005-08-05,49.099998,49.599998,49.029999,49.32,9285300,38.112686
2005-08-04,49.689999,49.84,49.240002,49.290001,9265600,38.089504
2005-08-03,49.529999,49.740002,49.470001,49.68,10585300,38.390882
2005-08-02,49.650002,49.869999,49.450001,49.799999,6330200,38.483612
2005-08-01,49.619999,49.75,49.439999,49.529999,6944300,38.274966
2005-07-29,49.700001,49.990002,49.330002,49.349998,6815700,38.135868
2005-07-28,49.950001,49.98,49.549999,49.82,6516000,38.499068
2005-07-27,49.509998,50.009998,49.450001,49.799999,6693500,38.483612
2005-07-26,49.639999,49.869999,49.52,49.529999,7431800,38.274966
2005-07-25,49.540001,49.869999,49.310001,49.450001,6598700,38.213146
2005-07-22,49.490002,49.720001,49.259998,49.540001,7736600,38.282695
2005-07-21,49.700001,49.700001,49.00,49.389999,12498700,38.16678
2005-07-20,49.549999,50.060001,49.299999,50.00,9158200,38.638166
2005-07-19,49.990002,50.150002,49.560001,49.759998,9577000,38.452701
2005-07-18,50.18,50.349998,49.950001,49.990002,8042500,38.630439
2005-07-15,50.360001,50.419998,49.959999,50.25,9095000,38.831356
2005-07-14,50.32,50.689999,50.110001,50.509998,10083800,39.032274
2005-07-13,49.950001,50.240002,49.889999,50.139999,8771900,38.746352
2005-07-12,49.66,50.23,49.630001,50.09,8652500,38.707714
2005-07-11,49.849998,50.080002,49.599998,49.799999,8881800,38.483612
2005-07-08,49.380001,50.00,49.25,49.900002,9375300,38.56089
2005-07-07,49.049999,49.880001,49.00,49.509998,11715000,38.25951
2005-07-06,49.919998,49.93,49.220001,49.380001,10853400,38.159053
2005-07-05,49.400002,49.900002,49.259998,49.799999,15367800,38.483612
2005-07-01,48.25,48.529999,48.150002,48.279999,9532700,37.309012
2005-06-30,48.34,49.00,48.07,48.200001,10495200,37.247192
2005-06-29,48.599998,49.049999,48.50,48.540001,10296200,37.509932
2005-06-28,47.700001,48.639999,47.66,48.43,9393200,37.424927
2005-06-27,47.369999,47.700001,47.360001,47.52,7980900,36.721713
2005-06-24,47.82,47.849998,47.240002,47.369999,15712200,36.605797
2005-06-23,48.790001,48.889999,47.799999,47.880001,11181000,36.999908
2005-06-22,48.700001,48.93,48.299999,48.790001,10602100,37.703123
2005-06-21,49.00,49.09,48.509998,48.529999,8500700,37.502203
2005-06-20,48.560001,48.959999,48.549999,48.860001,7629200,37.757216
2005-06-17,49.75,49.75,48.630001,48.93,17582900,37.811309
2005-06-16,49.700001,49.950001,49.23,49.349998,10093200,38.135868
2005-06-15,50.009998,50.299999,49.389999,49.849998,15782900,38.52225
2005-06-14,48.419998,49.709999,48.400002,49.68,16154100,38.390882
2005-06-13,48.00,48.709999,47.990002,48.279999,12273300,37.309012
2005-06-10,47.799999,48.029999,47.639999,47.98,8689400,37.077183
2005-06-09,47.549999,48.099998,47.450001,47.82,9485100,36.953541
2005-06-08,47.880001,47.880001,47.299999,47.57,8326000,36.760351
2005-06-07,47.950001,48.09,47.740002,47.759998,8321700,36.907174
2005-06-06,47.349998,48.139999,47.209999,47.73,8885000,36.883993
2005-06-03,48.099998,48.16,47.290001,47.349998,10523500,36.590342
2005-06-02,47.84,48.439999,47.830002,48.220001,9491200,37.262648
2005-06-01,47.25,48.169998,47.240002,47.919998,10936200,37.030816
2005-05-31,47.450001,47.470001,47.130001,47.23,11405800,36.497611
2005-05-27,47.240002,47.32,47.16,47.27,5618600,36.528522
2005-05-26,47.450001,47.50,47.220001,47.310001,7287300,36.559433
2005-05-25,47.52,47.849998,47.139999,47.299999,9483200,36.551704
2005-05-24,47.740002,47.849998,47.560001,47.650002,7895800,36.822173
2005-05-23,47.330002,48.029999,47.27,47.849998,11658500,36.976723
2005-05-20,47.400002,47.439999,47.029999,47.18,10135900,36.458973
2005-05-19,47.830002,47.970001,47.299999,47.509998,10418800,36.713984
2005-05-18,47.09,47.669998,46.970001,47.580002,18465100,36.76808
2005-05-17,47.099998,47.380001,46.93,47.00,16559100,36.203961
2005-05-16,47.130001,47.490002,46.709999,47.220001,11505300,36.373428
2005-05-13,47.400002,47.549999,46.93,47.130001,12544900,36.304101
2005-05-12,46.799999,47.869999,46.599998,47.650002,32523500,36.704656
2005-05-11,48.75,48.939999,48.130001,48.599998,10346300,37.436435
2005-05-10,49.00,49.02,48.540001,48.720001,9501300,37.528873
2005-05-09,48.900002,49.459999,48.900002,49.25,10191500,37.93713
2005-05-06,48.849998,49.150002,48.650002,48.959999,10242300,37.713743
2005-05-05,48.349998,49.220001,48.310001,48.57,10836700,37.413328
2005-05-04,48.400002,48.610001,48.240002,48.450001,12170900,37.320893
2005-05-03,47.57,48.50,47.540001,48.400002,14666900,37.282378
2005-05-02,47.48,47.900002,47.32,47.799999,11673500,36.820198
2005-04-29,47.150002,47.279999,46.200001,47.139999,16996600,36.311802
2005-04-28,47.02,47.59,46.93,47.049999,12062500,36.242476
2005-04-27,46.700001,47.470001,46.650002,47.290001,10899400,36.427348
2005-04-26,47.00,47.18,46.900002,47.00,11741600,36.203961
2005-04-25,47.060001,47.439999,46.900002,47.02,13741200,36.219368
2005-04-22,47.48,47.57,46.650002,46.810001,23246900,36.057606
2005-04-21,47.889999,47.91,47.50,47.779999,10436600,36.804792
2005-04-20,47.400002,47.950001,47.299999,47.349998,13978400,36.473564
2005-04-19,47.75,47.889999,47.18,47.599998,14637100,36.666138
2005-04-18,47.91,47.959999,47.549999,47.880001,15085200,36.881824
2005-04-15,47.970001,48.240002,47.490002,47.700001,17211300,36.74317
2005-04-14,48.400002,49.50,47.919998,47.959999,19744500,36.943446
2005-04-13,48.759998,49.09,48.490002,48.57,12498000,37.413328
2005-04-12,48.200001,48.830002,47.77,48.630001,20094900,37.459546
2005-04-11,48.57,48.700001,48.240002,48.509998,11774800,37.367109
2005-04-08,48.900002,49.040001,48.52,48.57,13173300,37.413328
2005-04-07,49.290001,49.290001,48.459999,48.900002,25792300,37.667527
2005-04-06,49.880001,49.950001,49.349998,49.50,14464500,38.129704
2005-04-05,49.549999,49.790001,49.23,49.669998,13083100,38.260653
2005-04-04,49.330002,49.610001,48.720001,49.41,17573600,38.060377
2005-04-01,50.25,50.50,48.50,48.990002,29161300,37.736854
2005-03-31,50.75,50.889999,50.060001,50.110001,15975900,38.599586
2005-03-30,50.900002,51.18,50.700001,50.84,11150600,39.161902
2005-03-29,50.900002,51.27,50.73,50.77,13902900,39.107982
2005-03-28,50.66,51.18,50.509998,50.990002,12244000,39.277448
2005-03-24,51.02,51.029999,50.52,50.66,12503700,39.023248
2005-03-23,50.900002,51.18,50.580002,50.650002,17582700,39.015547
2005-03-22,51.169998,51.34,50.849998,50.900002,18045000,39.208121
2005-03-21,51.52,51.759998,51.119999,51.169998,22030400,39.416099
2005-03-18,52.34,52.34,51.450001,51.450001,86798700,39.631784
2005-03-17,51.509998,52.43,51.400002,52.330002,19034200,40.309646
2005-03-16,50.919998,51.549999,50.860001,51.330002,17478600,39.539349
2005-03-15,51.549999,51.650002,51.009998,51.029999,13994200,39.192712
2005-03-14,51.779999,51.939999,51.139999,51.299999,15325500,39.400082
2005-03-11,52.23,52.240002,51.470001,51.599998,9248600,39.630491
2005-03-10,52.450001,52.560001,52.07,52.150002,8096500,40.052911
2005-03-09,52.400002,52.59,52.279999,52.450001,10108200,40.28332
2005-03-08,52.599998,52.75,52.25,52.419998,9411100,40.260277
2005-03-07,53.099998,53.360001,52.59,52.779999,10268600,40.53677
2005-03-04,53.209999,53.490002,52.950001,53.099998,11556300,40.78254
2005-03-03,52.799999,53.18,52.669998,52.860001,19475800,40.598214
2005-03-02,52.040001,52.41,51.799999,51.950001,9118200,39.899304
2005-03-01,52.009998,52.310001,51.919998,52.040001,10462800,39.968427
2005-02-28,51.799999,52.290001,51.599998,51.610001,10864900,39.638173
2005-02-25,51.400002,51.490002,51.099998,51.490002,11468000,39.54601
2005-02-24,51.75,51.810001,51.27,51.459999,9931800,39.522967
2005-02-23,52.029999,52.119999,51.240002,51.599998,13645700,39.630491
2005-02-22,52.599998,52.68,51.970001,52.00,11491200,39.937705
2005-02-18,52.810001,53.00,52.639999,52.720001,9764100,40.49069
2005-02-17,52.889999,53.040001,52.330002,52.700001,14965300,40.475329
2005-02-16,52.740002,52.950001,52.540001,52.599998,7572200,40.398524
2005-02-15,52.59,52.959999,52.369999,52.700001,9483500,40.475329
2005-02-14,52.299999,52.509998,52.099998,52.150002,7799400,40.052911
2005-02-11,52.110001,52.630001,52.099998,52.099998,10429600,40.014507
2005-02-10,52.459999,52.830002,52.23,52.259998,9131700,40.137392
2005-02-09,52.860001,53.09,52.27,52.52,8400200,40.337082
2005-02-08,53.299999,53.57,53.200001,53.200001,5760100,40.859345
2005-02-07,53.700001,53.740002,53.450001,53.509998,6241000,41.097433
2005-02-04,53.400002,53.580002,53.130001,53.459999,7447300,41.059032
2005-02-03,53.029999,53.439999,53.02,53.419998,7761800,41.02831
2005-02-02,52.630001,53.299999,52.630001,53.060001,9210600,40.751821
2005-02-01,52.400002,52.950001,52.349998,52.610001,10191700,40.406206
2005-01-31,52.549999,52.900002,52.220001,52.400002,10231500,40.244919
2005-01-28,52.900002,52.919998,52.299999,52.43,11121500,40.267959
2005-01-27,53.060001,53.380001,52.869999,53.080002,6634100,40.767182
2005-01-26,53.349998,53.689999,53.220001,53.279999,7178600,40.920786
2005-01-25,53.189999,53.450001,53.110001,53.279999,6419000,40.920786
2005-01-24,53.02,53.279999,52.77,53.07,8577100,40.7595
2005-01-21,53.34,53.48,53.00,53.009998,8581200,40.713417
2005-01-20,53.720001,54.169998,53.299999,53.369999,9002000,40.989909
2005-01-19,54.290001,54.599998,53.75,53.779999,6947300,41.304802
2005-01-18,53.599998,54.50,53.529999,54.490002,9895600,41.850108
2005-01-14,53.630001,54.060001,53.490002,53.990002,7486700,41.466092
2005-01-13,54.099998,54.200001,53.52,53.639999,9589100,41.197278
2005-01-12,53.59,54.139999,53.400002,54.080002,8336900,41.535215
2005-01-11,53.580002,53.75,53.419998,53.59,6663400,41.158877
2005-01-10,53.799999,54.330002,53.59,53.720001,8654000,41.258722
2005-01-07,54.049999,54.330002,53.75,53.990002,9660300,41.466092
2005-01-06,53.900002,54.189999,53.150002,54.049999,14028800,41.512172
2005-01-05,53.50,53.639999,53.110001,53.290001,8241500,40.928468
2005-01-04,53.77,53.889999,53.02,53.220001,10596700,40.874706
2005-01-03,53.75,54.299999,53.299999,53.349998,16078400,40.974548
2004-12-31,53.07,53.18,52.560001,52.82,8406700,40.567492
2004-12-30,53.630001,53.630001,53.02,53.060001,6585600,40.751821
2004-12-29,53.23,53.490002,53.209999,53.439999,5782200,41.043671
2004-12-28,52.849998,53.400002,52.84,53.23,6617700,40.882385
2004-12-27,53.049999,53.490002,52.73,52.790001,9692300,40.544452
2004-12-23,52.91,53.16,52.549999,52.549999,8369500,40.360122
2004-12-22,52.349998,53.25,52.330002,52.970001,12506000,40.682698
2004-12-21,52.200001,52.599998,52.18,52.599998,9294400,40.398524
2004-12-20,52.290001,52.700001,52.130001,52.200001,9477100,40.091312
2004-12-17,52.139999,52.84,52.00,52.02,17717900,39.953066
2004-12-16,52.799999,52.950001,52.529999,52.75,8849600,40.51373
2004-12-15,53.380001,53.650002,52.799999,53.029999,11717600,40.728778
2004-12-14,52.849998,53.630001,52.77,53.509998,10210500,40.997591
2004-12-13,52.720001,53.18,52.50,52.950001,9796500,40.568539
2004-12-10,52.450001,53.080002,52.43,52.709999,8439000,40.384658
2004-12-09,52.119999,52.889999,52.119999,52.77,11553300,40.430629
2004-12-08,52.25,52.549999,52.099998,52.509998,10574800,40.231424
2004-12-07,52.509998,53.099998,52.330002,52.50,9549500,40.223764
2004-12-06,52.93,52.93,52.52,52.52,9072100,40.239087
2004-12-03,52.91,53.48,52.77,52.93,11286800,40.553216
2004-12-02,52.580002,53.27,52.150002,53.00,16154400,40.606847
2004-12-01,52.50,52.990002,52.349998,52.82,19990300,40.468937
2004-11-30,53.200001,53.23,52.060001,52.060001,27650900,39.886651
2004-11-29,53.75,53.900002,53.099998,53.150002,25158000,40.721773
2004-11-26,55.299999,55.740002,55.299999,55.32,3555200,42.384354
2004-11-24,55.950001,55.950001,55.189999,55.50,7191600,42.522264
2004-11-23,55.450001,55.950001,55.349998,55.650002,8970900,42.637191
2004-11-22,55.48,55.889999,54.830002,55.68,8941000,42.660175
2004-11-19,55.849998,55.849998,55.16,55.25,9847000,42.330723
2004-11-18,56.240002,56.43,55.450001,55.799999,11294700,42.752114
2004-11-17,57.349998,57.349998,55.849998,56.240002,16166700,43.089229
2004-11-16,57.00,57.150002,56.66,56.889999,12232200,43.587236
2004-11-15,56.900002,57.889999,56.779999,57.700001,10319400,44.207832
2004-11-12,56.52,56.93,56.41,56.849998,6491100,43.556589
2004-11-11,56.439999,56.810001,56.119999,56.619999,7085000,43.38037
2004-11-10,56.400002,56.709999,56.049999,56.049999,6305400,42.943656
2004-11-09,56.700001,56.779999,55.950001,56.32,7971400,43.150521
2004-11-08,56.470001,56.970001,56.209999,56.529999,9228300,43.311415
2004-11-05,56.50,56.950001,56.34,56.470001,12389700,43.265447
2004-11-04,54.299999,56.349998,54.18,56.259998,16588400,43.10455
2004-11-03,54.779999,54.860001,53.91,54.48,11109500,41.740774
2004-11-02,53.049999,54.669998,53.049999,54.150002,10796700,41.48794
2004-11-01,53.919998,53.919998,53.490002,53.849998,8974600,41.258088
2004-10-29,53.82,54.310001,53.599998,53.919998,10006800,41.311719
2004-10-28,53.709999,54.34,53.700001,53.990002,8409700,41.365354
2004-10-27,52.509998,53.790001,52.50,53.720001,11725900,41.158488
2004-10-26,52.299999,52.950001,52.23,52.82,8918200,40.468937
2004-10-25,52.150002,52.41,51.91,52.299999,8345200,40.07053
2004-10-22,52.32,52.48,51.939999,51.990002,8629200,39.83302
2004-10-21,52.419998,52.610001,52.009998,52.110001,9691900,39.924959
2004-10-20,52.639999,52.93,52.209999,52.48,8675300,40.20844
2004-10-19,53.02,53.360001,52.610001,52.68,7683500,40.361674
2004-10-18,52.450001,53.169998,52.349998,52.919998,7844300,40.545552
2004-10-15,52.540001,53.080002,52.25,52.529999,9929200,40.246748
2004-10-14,52.619999,52.66,52.060001,52.099998,8650500,39.917296
2004-10-13,53.00,53.32,52.349998,52.549999,7995400,40.262071
2004-10-12,52.52,52.990002,52.52,52.919998,7524500,40.545552
2004-10-11,53.07,53.09,52.50,52.900002,6490300,40.530232
2004-10-08,53.41,53.540001,52.639999,52.849998,11804700,40.491921
2004-10-07,53.48,54.380001,53.48,53.549999,8037500,41.028238
2004-10-06,53.41,53.990002,53.259998,53.98,7806000,41.35769
2004-10-05,53.200001,53.619999,52.919998,53.41,9727300,40.920975
2004-10-04,53.560001,53.98,53.299999,53.310001,8775500,40.84436
2004-10-01,53.50,53.77,52.919998,53.130001,9168000,40.70645
2004-09-30,52.619999,53.450001,52.619999,53.200001,12383800,40.760081
2004-09-29,52.599998,53.029999,52.290001,53.00,12199800,40.606847
2004-09-28,52.720001,52.900002,52.200001,52.779999,8469500,40.438289
2004-09-27,53.009998,53.34,52.509998,52.52,8999100,40.239087
2004-09-24,52.75,53.240002,52.560001,52.810001,7935400,40.461276
2004-09-23,52.259998,52.900002,51.099998,52.540001,13508500,40.254411
2004-09-22,52.02,52.18,51.560001,51.669998,10760400,39.587844
2004-09-21,52.619999,52.799999,52.200001,52.259998,10187200,40.039882
2004-09-20,52.130001,52.349998,52.009998,52.200001,8381400,39.993914
2004-09-17,52.779999,52.970001,52.139999,52.48,16822100,40.20844
2004-09-16,52.799999,53.080002,52.490002,52.77,9734300,40.430629
2004-09-15,53.259998,53.349998,52.580002,52.91,6902300,40.537892
2004-09-14,53.549999,53.610001,53.110001,53.220001,7134900,40.775405
2004-09-13,53.619999,53.91,53.16,53.349998,8686100,40.875004
2004-09-10,52.509998,53.59,52.25,53.450001,9178900,40.951623
2004-09-09,53.080002,53.349998,52.509998,52.57,9019300,40.277395
2004-09-08,53.049999,53.560001,53.00,53.080002,9098600,40.668142
2004-09-07,53.150002,53.43,52.610001,53.290001,9391600,40.829036
2004-09-03,53.25,53.959999,53.099998,53.25,8373600,40.798389
2004-09-02,52.099998,53.18,52.099998,53.119999,12037700,40.698786
2004-09-01,52.459999,52.939999,52.130001,52.630001,7435800,40.323366
2004-08-31,53.209999,53.610001,52.450001,52.669998,8659000,40.354011
2004-08-30,53.549999,53.830002,53.16,53.200001,5506700,40.760081
2004-08-27,53.82,54.02,53.529999,53.560001,4586400,41.035902
2004-08-26,54.00,54.290001,53.830002,53.880001,4747800,41.281075
2004-08-25,53.950001,54.290001,53.57,54.099998,7307200,41.449629
2004-08-24,53.950001,54.18,53.630001,53.860001,6676400,41.265751
2004-08-23,53.82,53.970001,53.240002,53.799999,11165400,41.21978
2004-08-20,54.689999,54.849998,54.400002,54.650002,8795200,41.871024
2004-08-19,54.240002,54.950001,54.029999,54.860001,10535200,42.031918
2004-08-18,54.700001,54.709999,54.110001,54.459999,7682600,41.72545
2004-08-17,54.389999,54.970001,53.720001,54.970001,11527900,42.016592
2004-08-16,53.50,54.299999,53.450001,54.299999,7758600,41.504473
2004-08-13,52.98,53.50,52.849998,53.400002,9930900,40.816555
2004-08-12,52.580002,53.389999,52.48,52.650002,14352600,40.243289
2004-08-11,51.950001,52.189999,51.52,51.630001,8614500,39.463647
2004-08-10,51.700001,52.130001,51.400002,52.110001,7136600,39.830537
2004-08-09,51.200001,51.75,51.080002,51.369999,7222400,39.264913
2004-08-06,52.00,52.02,51.139999,51.330002,11393400,39.234341
2004-08-05,53.00,53.25,52.00,52.049999,9762900,39.784674
2004-08-04,52.490002,53.540001,52.48,53.200001,6906600,40.663684
2004-08-03,53.009998,53.110001,52.529999,52.869999,8858300,40.411445
2004-08-02,53.02,53.73,52.849998,53.18,7131700,40.648396
2004-07-30,53.349998,53.380001,52.529999,53.009998,8957100,40.518454
2004-07-29,54.080002,54.189999,53.130001,53.48,8777900,40.877702
2004-07-28,53.880001,54.060001,52.759998,53.91,9942600,41.206375
2004-07-27,52.98,53.93,52.880001,53.900002,9634900,41.198733
2004-07-26,53.099998,53.139999,52.169998,52.650002,7829800,40.243289
2004-07-23,52.900002,53.889999,52.869999,53.16,9120100,40.633109
2004-07-22,52.75,53.150002,52.16,52.91,10228300,40.44202
2004-07-21,53.360001,53.900002,53.110001,53.119999,10407300,40.602534
2004-07-20,52.50,53.41,52.50,53.25,8733300,40.701901
2004-07-19,52.66,53.299999,52.66,52.860001,9624500,40.403803
2004-07-16,52.75,52.950001,52.25,52.650002,11396400,40.243289
2004-07-15,52.830002,52.939999,52.209999,52.330002,6787900,39.998696
2004-07-14,52.630001,53.299999,52.360001,52.580002,9203000,40.189784
2004-07-13,52.23,53.099998,52.23,53.009998,10684700,40.518454
2004-07-12,51.720001,52.32,51.50,52.209999,8376800,39.906971
2004-07-09,52.200001,52.630001,51.709999,51.759998,9179200,39.563011
2004-07-08,51.900002,52.52,51.810001,52.18,11839200,39.884041
2004-07-07,52.150002,52.759998,52.150002,52.32,9751600,39.99105
2004-07-06,51.799999,52.419998,51.580002,52.080002,10446500,39.807607
2004-07-02,52.00,52.450001,51.509998,51.93,12181600,39.692952
2004-07-01,53.099998,53.200001,51.549999,51.759998,16904300,39.563011
2004-06-30,52.099998,53.00,52.02,52.50,14127100,40.128635
2004-06-29,52.209999,52.509998,51.93,51.98,15237300,39.73117
2004-06-28,52.41,53.259998,52.099998,52.459999,14806500,40.09806
2004-06-25,53.689999,54.09,52.509998,52.509998,13404800,40.136277
2004-06-24,53.580002,53.860001,53.040001,53.150002,10148700,40.625466
2004-06-23,54.060001,54.07,52.59,53.549999,23284800,40.931207
2004-06-22,54.169998,54.75,53.73,54.060001,14241700,41.321029
2004-06-21,55.200001,55.869999,54.869999,54.93,8005500,41.986017
2004-06-18,55.82,56.110001,55.450001,55.619999,12935800,42.513421
2004-06-17,56.00,56.290001,55.68,55.849998,5242800,42.689222
2004-06-16,56.700001,56.709999,56.029999,56.119999,6859500,42.895599
2004-06-15,56.650002,57.00,56.540001,56.709999,8709200,43.346568
2004-06-14,56.700001,56.849998,56.07,56.380001,6351900,43.094333
2004-06-10,57.43,57.610001,56.650002,57.200001,6281500,43.721103
2004-06-09,57.50,57.75,56.990002,57.029999,5774100,43.591162
2004-06-08,57.25,57.830002,57.119999,57.68,6971400,44.087993
2004-06-07,56.709999,57.549999,56.580002,57.50,7013800,43.950409
2004-06-04,57.049999,57.349998,56.380001,56.59,7156600,43.254846
2004-06-03,56.049999,57.470001,56.049999,56.599998,9752800,43.262489
2004-06-02,55.439999,56.689999,55.189999,56.349998,10183500,43.0714
2004-06-01,55.450001,55.700001,54.900002,55.439999,7995200,42.375837
2004-05-28,55.970001,56.049999,55.700001,55.73,6163100,42.597501
2004-05-27,55.50,56.389999,55.50,55.970001,9867400,42.780947
2004-05-26,55.200001,55.48,54.900002,55.279999,6675900,42.25354
2004-05-25,54.84,55.580002,54.509998,55.490002,8567400,42.414057
2004-05-24,55.27,55.68,54.439999,54.990002,9549500,42.03188
2004-05-21,55.00,55.700001,54.84,55.09,8585500,42.108314
2004-05-20,54.779999,55.040001,54.049999,54.84,7449000,41.917225
2004-05-19,55.619999,56.080002,54.75,54.779999,10540100,41.871363
2004-05-18,55.049999,55.639999,55.009998,55.209999,8850600,42.100671
2004-05-17,54.650002,55.25,54.139999,54.700001,8432000,41.711769
2004-05-14,55.299999,55.700001,54.66,55.060001,8573600,41.986289
2004-05-13,55.060001,55.619999,53.799999,55.25,13221100,42.131174
2004-05-12,54.099998,55.09,53.450001,55.060001,12302900,41.986289
2004-05-11,55.220001,55.68,54.220001,54.529999,9647900,41.582133
2004-05-10,53.50,55.349998,53.50,55.220001,14234900,42.108298
2004-05-07,54.439999,55.09,53.599998,53.900002,13930100,41.101725
2004-05-06,55.799999,55.799999,54.419998,54.580002,16024600,41.620263
2004-05-05,55.900002,56.349998,55.84,55.860001,8765400,42.596333
2004-05-04,56.599998,56.759998,55.549999,56.00,12762100,42.70309
2004-05-03,57.00,57.52,56.080002,56.540001,11194000,43.114871
2004-04-30,57.77,58.049999,56.869999,57.00,8538400,43.465645
2004-04-29,58.080002,58.349998,56.990002,57.57,8689700,43.900302
2004-04-28,58.209999,58.720001,57.880001,57.98,8523400,44.212949
2004-04-27,58.150002,59.080002,58.150002,58.599998,8613100,44.685733
2004-04-26,58.77,59.139999,57.959999,58.139999,7017100,44.334958
2004-04-23,58.23,59.119999,58.07,58.970001,6396600,44.96788
2004-04-22,58.25,58.700001,57.720001,58.599998,10065100,44.685733
2004-04-21,57.200001,58.580002,57.200001,58.349998,6540600,44.495094
2004-04-20,58.50,59.150002,58.099998,58.099998,8164300,44.304455
2004-04-19,58.00,58.700001,57.939999,58.369999,7265800,44.510345
2004-04-16,58.200001,58.700001,57.73,58.439999,8850200,44.563724
2004-04-15,57.43,58.099998,57.110001,57.790001,8682600,44.068065
2004-04-14,56.48,57.490002,56.389999,57.419998,10070200,43.785917
2004-04-13,57.400002,57.599998,56.330002,56.470001,13147900,43.061492
2004-04-12,56.799999,57.43,56.799999,57.34,7161800,43.724914
2004-04-08,57.990002,58.099998,56.150002,56.689999,14725900,43.229252
2004-04-07,58.700001,58.790001,57.950001,57.98,10385200,44.212949
2004-04-06,58.50,59.07,58.400002,59.02,6902200,45.006007
2004-04-05,58.560001,59.279999,58.139999,58.639999,8421400,44.716235
2004-04-02,59.00,60.139999,58.299999,58.599998,10625100,44.685733
2004-04-01,58.75,59.689999,58.099998,58.349998,14494400,44.495094
2004-03-31,59.830002,60.07,59.50,59.689999,8472000,45.516918
2004-03-30,59.900002,60.240002,59.810001,60.00,6470300,45.753311
2004-03-29,59.650002,60.450001,59.630001,60.130001,8420400,45.852444
2004-03-26,59.700001,59.959999,59.299999,59.41,6867600,45.303403
2004-03-25,59.25,59.970001,59.16,59.82,11043800,45.616051
2004-03-24,58.290001,59.419998,58.169998,58.580002,9530300,44.670484
2004-03-23,58.16,58.799999,57.93,58.209999,9325000,44.388336
2004-03-22,58.299999,58.50,57.549999,58.099998,9077200,44.304455
2004-03-19,58.849998,59.099998,58.470001,58.599998,8965300,44.685733
2004-03-18,58.150002,59.189999,57.959999,58.939999,9070400,44.945001
2004-03-17,57.970001,59.130001,57.970001,58.349998,7981000,44.495094
2004-03-16,58.200001,58.380001,57.27,57.970001,7986000,44.106193
2004-03-15,58.049999,58.790001,57.669998,57.900002,10799900,44.052934
2004-03-12,57.990002,58.52,57.900002,58.48,9203700,44.494223
2004-03-11,58.310001,58.830002,57.599998,57.900002,14920600,44.052934
2004-03-10,59.950001,60.259998,58.689999,58.759998,13751700,44.707258
2004-03-09,60.200001,60.849998,60.060001,60.279999,9767300,45.863743
2004-03-08,60.049999,60.98,60.02,60.459999,8077800,46.000696
2004-03-05,60.799999,60.810001,60.200001,60.240002,9863800,45.833312
2004-03-04,60.810001,61.310001,60.110001,61.049999,11159600,46.449594
2004-03-03,59.549999,60.59,59.470001,60.360001,10007800,45.924612
2004-03-02,60.400002,60.41,59.48,59.549999,10771900,45.308327
2004-03-01,59.669998,60.52,59.549999,60.450001,10803900,45.993088
2004-02-27,59.400002,60.080002,59.25,59.560001,12633900,45.315937
2004-02-26,59.52,59.73,59.130001,59.400002,10462900,45.194202
2004-02-25,59.75,60.00,59.439999,59.880001,12299400,45.559407
2004-02-24,59.950001,60.00,59.450001,59.950001,13778300,45.612666
2004-02-23,59.439999,60.150002,59.220001,60.049999,20399700,45.688749
2004-02-20,58.700001,59.549999,58.610001,59.43,16842000,45.217026
2004-02-19,58.200001,58.950001,57.700001,58.380001,20616400,44.418139
2004-02-18,57.599998,57.650002,56.689999,57.200001,7989400,43.520342
2004-02-17,57.380001,57.84,56.48,57.52,7694700,43.763812
2004-02-13,57.330002,57.330002,56.189999,56.32,7133200,42.850797
2004-02-12,56.77,57.450001,56.75,56.98,7976000,43.352955
2004-02-11,57.700001,58.299999,56.91,57.07,10602500,43.421431
2004-02-10,57.150002,57.599998,56.82,57.529999,9199800,43.771419
2004-02-09,57.049999,57.540001,57.040001,57.32,8420600,43.611642
2004-02-06,56.50,57.59,56.209999,57.580002,15102100,43.809464
2004-02-05,55.84,56.540001,55.77,56.25,12572400,42.797538
2004-02-04,54.950001,55.950001,54.919998,55.389999,11641500,42.143211
2004-02-03,54.689999,55.150002,54.50,55.009998,8271100,41.854089
2004-02-02,54.200001,54.98,54.150002,54.689999,11783300,41.610619
2004-01-30,54.25,54.700001,53.84,53.849998,7812000,40.971509
2004-01-29,53.380001,54.50,53.23,54.48,10501300,41.450842
2004-01-28,54.439999,54.59,53.130001,53.27,10027500,40.53022
2004-01-27,54.50,54.950001,54.360001,54.43,9527000,41.4128
2004-01-26,54.220001,54.68,53.77,54.610001,9147300,41.549753
2004-01-23,53.48,54.439999,53.080002,54.209999,12559400,41.245414
2004-01-22,53.490002,53.669998,52.950001,53.18,7656000,40.461744
2004-01-21,52.900002,53.529999,52.900002,53.450001,9061200,40.667172
2004-01-20,53.279999,53.450001,52.77,52.950001,7981500,40.28675
2004-01-16,53.650002,53.75,53.130001,53.48,9719600,40.689997
2004-01-15,53.169998,53.639999,52.599998,53.490002,10128000,40.697607
2004-01-14,52.759998,53.18,52.759998,53.139999,7812600,40.431309
2004-01-13,52.389999,52.759998,52.110001,52.759998,8477100,40.142188
2004-01-12,52.599998,52.799999,52.099998,52.509998,8949500,39.951976
2004-01-09,53.150002,53.150002,52.27,52.400002,11081500,39.868286
2004-01-08,54.139999,54.330002,52.900002,53.259998,13433600,40.52261
2004-01-07,53.34,53.509998,52.810001,53.48,12228900,40.689997
2004-01-06,52.349998,53.400002,52.299999,53.34,13314500,40.583479
2004-01-05,52.799999,52.799999,51.580002,52.119999,13451400,39.655247
2004-01-02,53.349998,53.400002,52.130001,52.299999,8793900,39.792199
2003-12-31,52.950001,53.169998,52.700001,53.049999,6764200,40.362833
2003-12-30,52.950001,53.119999,52.52,52.779999,6140200,40.157405
2003-12-29,52.68,52.900002,52.27,52.900002,7835600,40.248708
2003-12-26,52.32,53.029999,52.32,52.52,3119300,39.959586
2003-12-24,52.830002,52.950001,52.259998,52.439999,3627900,39.898717
2003-12-23,52.900002,53.32,52.52,52.77,9912100,40.149798
2003-12-22,52.099998,53.200001,52.080002,53.07,11428700,40.378051
2003-12-19,52.689999,53.009998,52.34,52.349998,14488100,39.830241
2003-12-18,52.889999,53.209999,52.529999,52.599998,15363100,40.020452
2003-12-17,51.310001,52.400002,51.25,51.900002,16365300,39.487863
2003-12-16,51.00,51.490002,50.599998,51.389999,16733300,39.031355
2003-12-15,53.07,53.07,50.50,50.740002,24709700,38.537674
2003-12-12,52.98,53.00,52.009998,52.50,11523500,39.874415
2003-12-11,53.150002,53.540001,52.740002,52.810001,11684400,40.109865
2003-12-10,52.900002,53.25,52.560001,52.950001,9713600,40.216196
2003-12-09,53.50,53.529999,52.549999,52.610001,9983400,39.957962
2003-12-08,53.48,53.599998,53.00,53.400002,10426300,40.557977
2003-12-05,52.849998,53.650002,52.700001,53.48,13538800,40.618737
2003-12-04,53.139999,53.23,52.139999,53.02,17592500,40.269362
2003-12-03,53.290001,53.720001,52.68,52.689999,17702600,40.018721
2003-12-02,54.330002,54.549999,52.990002,53.02,21667700,40.269362
2003-12-01,55.639999,55.66,53.950001,54.50,19745300,41.39344
2003-11-28,55.599998,56.00,55.509998,55.639999,3167600,42.259284
2003-11-26,56.02,56.200001,55.189999,55.700001,7017000,42.304856
2003-11-25,56.00,56.259998,55.759998,56.040001,8085600,42.56309
2003-11-24,55.150002,56.16,55.099998,56.080002,10144800,42.593472
2003-11-21,55.200001,55.23,54.669998,54.810001,8607200,41.62889
2003-11-20,55.150002,55.59,54.959999,55.07,8741100,41.826362
2003-11-19,54.599998,55.34,54.549999,55.209999,7160200,41.932693
2003-11-18,55.009998,55.299999,54.529999,54.720001,10099500,41.560534
2003-11-17,55.00,55.009998,54.360001,55.00,10353100,41.773196
2003-11-14,55.52,55.950001,54.50,55.00,16168500,41.773196
2003-11-13,56.349998,56.400002,55.400002,55.52,27996900,42.168143
2003-11-12,58.279999,58.349998,57.82,57.959999,8613300,44.021353
2003-11-11,58.130001,58.470001,57.939999,58.279999,4936200,44.264397
2003-11-10,58.349998,58.470001,57.830002,58.119999,5579200,44.142875
2003-11-07,58.75,58.799999,58.209999,58.419998,6617700,44.370728
2003-11-06,57.919998,58.700001,57.75,58.610001,7996500,44.515038
2003-11-05,58.66,58.669998,57.759998,57.919998,7967500,43.990972
2003-11-04,58.82,58.900002,58.349998,58.66,7646000,44.553013
2003-11-03,58.77,59.93,58.52,59.040001,5486800,44.841628
2003-10-31,58.799999,59.18,58.759998,58.950001,5913300,44.773272
2003-10-30,58.849998,59.150002,58.540001,58.799999,6114500,44.659344
2003-10-29,58.549999,58.959999,58.32,58.849998,5386600,44.697319
2003-10-28,57.790001,58.77,57.779999,58.759998,8032200,44.628963
2003-10-27,58.110001,58.439999,57.75,57.790001,7014800,43.892237
2003-10-24,58.709999,58.709999,57.00,58.110001,8478400,44.135281
2003-10-23,58.150002,58.75,58.150002,58.700001,6418100,44.583394
2003-10-22,58.970001,58.970001,58.049999,58.240002,5510800,44.234019
2003-10-21,58.849998,59.470001,58.650002,58.970001,5272900,44.788463
2003-10-20,59.00,59.139999,58.549999,59.00,6845900,44.811247
2003-10-17,59.599998,59.630001,58.639999,58.84,7193000,44.689725
2003-10-16,59.169998,59.639999,58.950001,59.389999,6838000,45.107457
2003-10-15,59.34,59.34,58.650002,59.07,6727300,44.864413
2003-10-14,58.869999,59.549999,58.68,59.330002,5283000,45.061888
2003-10-13,58.43,59.189999,58.43,58.950001,4566200,44.773272
2003-10-10,58.450001,58.990002,58.369999,58.419998,4819900,44.370728
2003-10-09,59.18,59.41,58.52,58.959999,8126700,44.780866
2003-10-08,59.00,59.02,58.240002,58.52,5576700,44.446681
2003-10-07,57.740002,58.900002,57.709999,58.900002,7145400,44.735297
2003-10-06,57.57,58.450001,57.490002,57.990002,4122700,44.044141
2003-10-03,57.950001,58.220001,57.369999,57.48,9632800,43.656788
2003-10-02,56.970001,57.139999,56.52,57.060001,6188700,43.337794
2003-10-01,56.02,57.099998,56.009998,57.060001,10932700,43.269436
2003-09-30,56.880001,57.349998,55.799999,55.849998,12824700,42.351873
2003-09-29,57.27,57.349998,56.470001,57.23,8669300,43.398348
2003-09-26,56.700001,57.09,56.610001,56.799999,6575200,43.072273
2003-09-25,56.59,57.48,56.59,56.889999,7543200,43.140521
2003-09-24,57.220001,57.50,56.549999,56.619999,7978800,42.935776
2003-09-23,57.290001,57.91,57.189999,57.619999,6602600,43.69409
2003-09-22,57.689999,57.75,56.75,57.07,9250900,43.277018
2003-09-19,57.540001,58.490002,57.540001,58.139999,8365300,44.088414
2003-09-18,57.610001,58.490002,57.610001,58.490002,7511900,44.353826
2003-09-17,58.169998,58.50,57.59,57.59,6701500,43.671342
2003-09-16,57.970001,58.52,57.700001,58.419998,6259800,44.300742
2003-09-15,57.50,58.049999,57.50,57.75,6077000,43.792672
2003-09-12,57.18,57.529999,56.720001,57.48,7970800,43.587927
2003-09-11,57.099998,57.869999,57.009998,57.50,8395300,43.603093
2003-09-10,56.560001,57.48,56.560001,56.849998,10847200,43.110188
2003-09-09,58.57,58.57,56.900002,57.060001,10107500,43.269436
2003-09-08,58.549999,58.639999,58.049999,58.59,8558000,44.429657
2003-09-05,59.099998,59.209999,58.50,58.889999,10593500,44.65715
2003-09-04,60.049999,60.200001,59.740002,60.080002,9906400,45.559547
2003-09-03,59.950001,60.099998,59.360001,59.98,7628000,45.483714
2003-09-02,58.959999,59.950001,58.919998,59.919998,6733800,45.438214
2003-08-29,59.049999,59.32,58.709999,59.169998,5177400,44.869478
2003-08-28,59.25,59.450001,58.860001,59.299999,4802800,44.968059
2003-08-27,59.25,59.369999,59.099998,59.110001,4992700,44.823981
2003-08-26,58.73,59.349998,58.369999,59.099998,6746000,44.816396
2003-08-25,58.400002,59.099998,58.330002,59.099998,6045400,44.816396
2003-08-22,59.439999,59.48,58.389999,58.400002,6936500,44.285578
2003-08-21,58.759998,59.43,58.709999,59.189999,5906400,44.884644
2003-08-20,58.450001,59.099998,58.41,58.779999,3941900,44.573735
2003-08-19,59.049999,59.049999,58.400002,58.880001,5327000,44.649569
2003-08-18,58.50,59.150002,58.380001,58.919998,6811600,44.679899
2003-08-15,58.049999,58.18,57.75,58.099998,3235400,44.058081
2003-08-14,58.07,58.48,57.75,57.93,6681400,43.929169
2003-08-13,58.50,58.650002,57.849998,58.07,9404700,44.035333
2003-08-12,58.049999,58.799999,57.900002,58.799999,6869900,44.588902
2003-08-11,57.880001,58.299999,57.279999,57.700001,7043200,43.754757
2003-08-08,57.32,57.790001,57.16,57.77,6622600,43.807839
2003-08-07,56.48,57.50,56.279999,57.00,13387900,43.223936
2003-08-06,55.009998,56.240002,55.009998,55.740002,6342800,42.268461
2003-08-05,55.400002,55.950001,55.240002,55.299999,7424700,41.934801
2003-08-04,54.779999,56.099998,54.779999,55.830002,6595600,42.336709
2003-08-01,55.720001,56.00,55.200001,55.27,6373400,41.912052
2003-07-31,56.25,57.25,55.91,55.91,8921300,42.397373
2003-07-30,55.75,56.02,55.369999,55.900002,5359900,42.389791
2003-07-29,56.16,56.279999,55.25,55.490002,7553600,42.078882
2003-07-28,56.189999,56.459999,55.50,56.16,6179900,42.586952
2003-07-25,55.52,56.290001,55.00,56.189999,6218100,42.6097
2003-07-24,57.00,57.00,55.599998,55.630001,7419000,42.185046
2003-07-23,56.919998,56.98,55.970001,56.50,5202600,42.844779
2003-07-22,56.049999,57.119999,56.029999,56.900002,6536900,43.148106
2003-07-21,56.849998,56.959999,55.73,55.959999,6151900,42.435288
2003-07-18,56.400002,57.07,55.959999,57.00,6635200,43.223936
2003-07-17,56.599998,57.080002,55.709999,55.799999,6294300,42.313958
2003-07-16,57.23,57.50,56.34,56.650002,6482300,42.958527
2003-07-15,57.080002,57.700001,56.939999,57.32,7759800,43.466597
2003-07-14,57.299999,57.700001,55.880001,56.650002,9021600,42.958527
2003-07-11,55.75,57.02,55.470001,56.529999,7126600,42.867527
2003-07-10,55.23,55.990002,54.720001,55.630001,7519400,42.185046
2003-07-09,56.700001,56.700001,55.66,55.759998,7307300,42.283625
2003-07-08,56.50,56.77,56.25,56.700001,7175300,42.996442
2003-07-07,55.599998,56.66,55.540001,56.549999,10770300,42.882694
2003-07-03,55.50,56.150002,54.950001,54.959999,4868900,41.676974
2003-07-02,54.759998,55.75,54.759998,55.73,10044600,42.260876
2003-07-01,53.50,54.490002,53.00,54.349998,7440500,41.214401
2003-06-30,54.00,54.57,53.669998,53.669998,7895300,40.698747
2003-06-27,54.50,54.77,53.509998,53.799999,5706800,40.797329
2003-06-26,53.799999,54.400002,53.799999,54.389999,5681600,41.244734
2003-06-25,54.75,55.360001,54.09,54.18,8544300,41.085489
2003-06-24,54.00,54.98,53.950001,54.599998,7409200,41.40398
2003-06-23,54.049999,54.200001,52.669998,53.740002,6252300,40.751832
2003-06-20,54.75,54.810001,53.799999,54.259998,12928500,41.146153
2003-06-19,55.25,55.34,54.32,54.490002,6175100,41.320568
2003-06-18,54.849998,55.240002,54.619999,55.240002,5705600,41.889304
2003-06-17,54.389999,55.380001,54.389999,55.060001,6721200,41.684558
2003-06-16,54.470001,55.25,54.200001,55.25,8703700,41.828401
2003-06-13,55.009998,55.189999,53.959999,54.080002,8265500,40.942624
2003-06-12,55.580002,55.59,54.459999,55.029999,7138300,41.661844
2003-06-11,54.759998,55.389999,53.490002,55.389999,9185300,41.934391
2003-06-10,54.400002,54.900002,54.299999,54.759998,8273500,41.457433
2003-06-09,53.950001,54.259998,53.599998,53.790001,5980000,40.723072
2003-06-06,54.959999,55.310001,53.619999,53.619999,9471700,40.594368
2003-06-05,53.099998,55.259998,53.099998,54.619999,10604400,41.351443
2003-06-04,52.970001,53.990002,52.970001,53.860001,9043700,40.776067
2003-06-03,52.669998,52.849998,52.119999,52.849998,7396300,40.01142
2003-06-02,52.959999,53.439999,52.400002,52.459999,9538600,39.716161
2003-05-30,52.709999,53.52,52.57,52.610001,11122700,39.829723
2003-05-29,53.349998,53.939999,52.560001,52.810001,8332800,39.981139
2003-05-28,52.599998,53.799999,52.599998,53.349998,10737300,40.389957
2003-05-27,52.00,52.599998,51.630001,52.50,15886800,39.746444
2003-05-23,52.75,52.75,52.00,52.00,7154000,39.367907
2003-05-22,52.650002,53.240002,52.580002,52.900002,7459200,40.049276
2003-05-21,52.799999,53.200001,52.57,52.59,6937700,39.814581
2003-05-20,52.48,53.25,52.48,52.810001,9557300,39.981139
2003-05-19,52.639999,53.50,52.209999,52.470001,8629200,39.723733
2003-05-16,53.099998,54.049999,52.919998,52.919998,10481600,40.064415
2003-05-15,53.849998,54.389999,53.43,53.759998,11579800,40.700358
2003-05-14,55.880001,55.98,53.900002,53.900002,12075300,40.806351
2003-05-13,55.759998,56.32,55.48,55.490002,9215700,42.0101
2003-05-12,55.709999,56.950001,55.43,56.700001,7552500,42.926161
2003-05-09,55.450001,55.810001,54.450001,55.799999,6498600,42.244792
2003-05-08,54.630001,55.450001,54.630001,55.009998,9161400,41.646702
2003-05-07,55.91,55.959999,54.98,55.080002,8209100,41.6997
2003-05-06,55.580002,56.240002,55.549999,55.91,7562200,42.32807
2003-05-05,56.150002,56.150002,55.50,55.580002,7315700,42.078237
2003-05-02,55.150002,56.41,55.139999,56.150002,7184600,42.50977
2003-05-01,56.32,56.32,55.130001,55.939999,8090500,42.350782
2003-04-30,57.509998,57.509998,55.889999,56.32,12546800,42.638471
2003-04-29,56.09,57.02,56.040001,56.580002,8434500,42.835312
2003-04-28,55.00,56.41,54.50,56.09,9186800,42.464344
2003-04-25,55.110001,55.48,54.259998,55.00,7411300,41.639132
2003-04-24,55.98,55.98,54.779999,55.110001,6492900,41.722411
2003-04-23,55.400002,55.98,55.400002,55.98,6521300,42.381065
2003-04-22,54.48,56.00,54.400002,55.990002,8804800,42.388638
2003-04-21,55.419998,55.450001,54.77,54.98,6671600,41.62399
2003-04-17,54.540001,55.50,54.369999,55.41,7225800,41.949533
2003-04-16,55.290001,55.490002,54.48,54.540001,7462100,41.290878
2003-04-15,54.299999,55.48,54.07,55.290001,8849200,41.858685
2003-04-14,52.98,54.200001,52.610001,52.650002,7625500,39.860007
2003-04-11,54.099998,54.450001,52.970001,52.98,10802600,40.10984
2003-04-10,53.540001,54.580002,53.23,54.580002,8751900,41.321162
2003-04-09,54.549999,55.060001,53.509998,53.700001,7519100,40.654935
2003-04-08,54.400002,54.849998,54.189999,54.560001,6622900,41.30602
2003-04-07,55.709999,55.709999,54.279999,54.32,8551000,41.124321
2003-04-04,53.799999,54.709999,53.799999,54.599998,6139400,41.336301
2003-04-03,53.799999,54.57,53.799999,54.049999,7014500,40.91991
2003-04-02,53.029999,54.369999,52.799999,54.07,8333000,40.935052
2003-04-01,52.099998,52.599998,51.52,52.419998,8706200,39.685877
2003-03-31,51.669998,52.959999,51.669998,52.029999,8518000,39.390618
2003-03-28,53.029999,53.52,52.68,53.130001,6132000,40.223403
2003-03-27,53.00,53.900002,52.869999,53.540001,6972600,40.533803
2003-03-26,53.310001,53.970001,53.169998,53.330002,6638100,40.374818
2003-03-25,52.619999,53.75,52.57,53.470001,7462100,40.480808
2003-03-24,54.360001,54.360001,52.52,52.52,8444700,39.761586
2003-03-21,53.32,54.860001,52.900002,54.669998,12771200,41.389296
2003-03-20,52.720001,53.34,52.200001,53.110001,7912700,40.208261
2003-03-19,52.560001,53.09,52.029999,53.049999,8942800,40.162835
2003-03-18,51.709999,52.419998,51.490002,52.25,10765100,39.48904
2003-03-17,49.50,51.98,49.360001,51.970001,12380400,39.277425
2003-03-14,49.50,50.209999,49.040001,49.360001,8820000,37.304862
2003-03-13,48.50,49.57,48.209999,49.549999,10811900,37.448457
2003-03-12,46.810001,47.50,46.50,47.50,8465800,35.899127
2003-03-11,47.400002,47.91,46.799999,46.799999,6988800,35.370087
2003-03-10,47.790001,48.240002,47.049999,47.130001,6350800,35.619493
2003-03-07,46.900002,48.200001,46.599998,48.119999,9182800,36.367705
2003-03-06,47.450001,48.52,47.099998,47.400002,9160400,35.823551
2003-03-05,46.91,47.880001,46.799999,47.880001,7945100,36.186321
2003-03-04,48.00,48.00,46.900002,46.900002,6468100,35.445666
2003-03-03,48.599998,48.68,47.77,47.790001,6663400,36.118302
2003-02-28,48.299999,48.75,47.720001,48.060001,7850500,36.32236
2003-02-27,48.049999,48.50,47.650002,48.16,7377800,36.397936
2003-02-26,48.43,48.560001,47.799999,47.830002,6941600,36.148533
2003-02-25,47.279999,48.509998,46.759998,48.43,10072500,36.601995
2003-02-24,48.700001,48.939999,47.639999,47.639999,6894800,36.004935
2003-02-21,48.450001,49.130001,47.900002,48.900002,7836800,36.957208
2003-02-20,48.77,48.880001,47.970001,48.080002,6124100,36.337476
2003-02-19,49.07,49.32,48.310001,48.77,5523200,36.858957
2003-02-18,49.650002,49.790001,48.77,49.080002,9132900,37.093247
2003-02-14,47.639999,49.16,47.32,49.150002,8735900,37.146151
2003-02-13,47.650002,47.950001,47.16,47.639999,8022300,36.004935
2003-02-12,47.419998,48.110001,47.34,47.849998,7739000,36.163646
2003-02-11,47.150002,47.619999,47.02,47.25,7643300,35.710184
2003-02-10,46.799999,47.099998,46.25,47.02,7758300,35.536357
2003-02-07,47.50,47.599998,46.75,46.790001,8193100,35.36253
2003-02-06,48.50,48.50,46.439999,46.790001,8363600,35.36253
2003-02-05,47.599998,47.77,46.650002,46.740002,7409600,35.324743
2003-02-04,48.080002,49.209999,47.00,47.150002,8018400,35.634609
2003-02-03,47.77,48.490002,47.709999,48.07,7407600,36.329917
2003-01-31,47.200001,48.450001,47.150002,47.799999,8744500,36.125858
2003-01-30,48.110001,49.09,47.50,47.57,8250400,35.952031
2003-01-29,48.18,48.529999,47.34,48.099998,8967300,36.352589
2003-01-28,47.099998,48.299999,47.099998,48.18,9656900,36.413052
2003-01-27,47.049999,48.310001,46.919998,47.099998,11255800,35.596818
2003-01-24,48.400002,48.689999,47.189999,47.299999,8425500,35.747972
2003-01-23,48.07,48.759998,47.34,48.57,10896500,36.707802
2003-01-22,49.02,49.59,47.75,48.07,11097600,36.329917
2003-01-21,50.07,50.290001,48.98,49.009998,7827400,37.04034
2003-01-17,50.299999,50.43,49.700001,49.970001,8661200,37.765883
2003-01-16,51.099998,51.23,49.98,50.299999,8086900,38.015286
2003-01-15,51.450001,51.68,50.529999,50.59,6503500,38.23446
2003-01-14,51.00,51.540001,50.700001,51.41,6759600,38.854192
2003-01-13,51.619999,52.18,51.00,51.279999,6920800,38.755941
2003-01-10,51.919998,52.00,51.209999,51.619999,7426600,39.012903
2003-01-09,50.75,52.00,50.75,51.919998,9884800,39.239634
2003-01-08,50.400002,51.360001,49.860001,49.990002,7796900,37.780999
2003-01-07,50.32,50.759998,50.099998,50.459999,6669000,38.136209
2003-01-06,50.200001,50.549999,49.669998,50.189999,7438400,37.93215
2003-01-03,51.610001,51.610001,49.849998,50.00,8389300,37.788555
2003-01-02,50.650002,51.610001,50.52,51.599998,7545500,38.997788
2002-12-31,50.599998,50.619999,49.75,50.509998,7826300,38.173997
2002-12-30,49.16,50.75,49.150002,50.639999,7886000,38.272248
2002-12-27,49.529999,49.98,48.950001,49.16,5689600,37.153707
2002-12-26,49.25,50.650002,49.25,49.759998,7309300,37.607169
2002-12-24,49.299999,49.869999,49.240002,49.700001,4215600,37.561824
2002-12-23,50.529999,50.540001,49.400002,49.59,8539400,37.478689
2002-12-20,50.169998,51.25,50.169998,50.790001,13003400,38.385615
2002-12-19,50.130001,51.200001,50.00,50.16,7750800,37.909478
2002-12-18,50.950001,50.950001,49.950001,50.380001,7738600,38.075749
2002-12-17,51.849998,51.860001,50.849998,50.939999,7243200,38.442295
2002-12-16,50.549999,52.07,50.360001,51.939999,9138400,39.196953
2002-12-13,51.380001,51.380001,50.360001,50.540001,10007300,38.140433
2002-12-12,52.25,52.419998,51.259998,51.380001,8668300,38.774346
2002-12-11,51.799999,52.490002,51.630001,52.00,5828200,39.242234
2002-12-10,51.860001,52.59,51.549999,52.490002,6413000,39.612018
2002-12-09,53.040001,53.040001,51.810001,51.849998,8087800,39.129034
2002-12-06,52.75,53.490002,52.029999,53.040001,8940400,40.027079
2002-12-05,54.439999,54.439999,53.02,53.02,8258000,40.011986
2002-12-04,53.900002,55.130001,53.41,54.439999,8449800,41.083599
2002-12-03,54.380001,54.380001,53.549999,53.93,7852000,40.698725
2002-12-02,55.959999,56.740002,54.25,54.380001,13776600,41.038321
2002-11-29,54.740002,55.16,53.830002,53.900002,4420200,40.676086
2002-11-27,53.25,55.009998,53.25,54.84,8288000,41.385464
2002-11-26,53.400002,53.900002,53.07,53.240002,7896900,40.178011
2002-11-25,53.450001,54.099998,53.02,53.82,9359900,40.615712
2002-11-22,53.959999,54.790001,53.52,53.759998,8124400,40.570431
2002-11-21,54.400002,54.799999,53.810001,53.950001,8441400,40.713818
2002-11-20,53.049999,54.50,53.00,54.400002,7463400,41.053415
2002-11-19,53.689999,53.689999,52.57,52.919998,10348300,39.936518
2002-11-18,55.25,55.50,53.529999,53.68,9040200,40.51006
2002-11-15,55.57,56.200001,55.00,55.490002,11539300,41.875993
2002-11-14,55.049999,55.599998,54.540001,55.57,10737900,41.936364
2002-11-13,53.860001,54.98,53.25,54.98,11655000,41.491115
2002-11-12,53.599998,54.75,53.330002,53.849998,9371300,40.638351
2002-11-11,54.040001,54.040001,53.00,53.00,5925200,39.996892
2002-11-08,54.00,54.799999,53.52,54.029999,7453000,40.774189
2002-11-07,54.349998,54.889999,53.549999,54.00,7455600,40.75155
2002-11-06,54.419998,54.799999,53.50,54.34,8477500,41.008134
2002-11-05,53.459999,54.599998,53.25,54.419998,7564600,41.068506
2002-11-04,54.560001,54.77,53.200001,53.450001,10382900,40.336489
2002-11-01,53.59,54.790001,52.68,54.549999,8762800,41.166612
2002-10-31,53.549999,54.41,52.650002,53.549999,11507000,40.411954
2002-10-30,55.09,55.099998,53.580002,53.799999,16972100,40.600618
2002-10-29,55.00,57.00,54.68,56.470001,10419800,42.615557
2002-10-28,57.43,57.490002,55.68,56.07,7867600,42.313693
2002-10-25,56.48,57.490002,56.16,57.330002,7125200,43.264564
2002-10-24,57.240002,58.02,56.18,56.470001,9814300,42.615557
2002-10-23,56.099998,57.32,55.919998,57.23,10213800,43.189097
2002-10-22,56.41,56.41,54.799999,56.099998,10305500,42.336332
2002-10-21,56.290001,56.73,55.18,56.400002,9546000,42.562732
2002-10-18,55.00,56.50,54.799999,56.279999,11334200,42.472171
2002-10-17,57.450001,57.50,55.00,55.330002,14925800,41.755247
2002-10-16,56.290001,56.799999,55.849998,56.759998,12927800,42.834406
2002-10-15,55.439999,56.290001,55.130001,56.290001,13852700,42.479719
2002-10-14,53.830002,55.00,53.57,54.150002,10187600,40.86475
2002-10-11,51.650002,53.98,51.650002,53.830002,11479700,40.62326
2002-10-10,50.75,52.189999,49.00,51.639999,16921600,38.970556
2002-10-09,52.610001,52.610001,50.700001,50.740002,13308400,38.291366
2002-10-08,50.950001,53.450001,50.759998,52.599998,16556200,39.695028
2002-10-07,51.200001,52.540001,50.00,50.349998,14430800,37.997046
2002-10-04,51.110001,52.279999,49.75,51.75,14745100,39.053569
2002-10-03,51.330002,52.139999,50.200001,51.099998,11297300,38.56304
2002-10-02,51.709999,52.509998,50.68,51.32,11489800,38.729066
2002-10-01,49.240002,51.779999,48.549999,51.709999,14143700,39.023382
2002-09-30,51.25,51.25,48.099998,49.240002,17002700,37.159378
2002-09-27,53.25,53.700001,51.220001,51.240002,11146500,38.668695
2002-09-26,52.50,53.720001,52.080002,53.709999,8175900,40.532699
2002-09-25,52.299999,52.610001,51.139999,52.040001,9919800,39.272421
2002-09-24,51.900002,52.400002,50.869999,51.490002,11366700,38.857359
2002-09-23,53.700001,53.709999,52.07,52.599998,10312600,39.695028
2002-09-20,53.709999,54.900002,53.560001,54.700001,17149400,41.279812
2002-09-19,54.389999,54.91,53.549999,53.700001,7162900,40.525154
2002-09-18,53.650002,55.130001,53.619999,54.380001,8193800,41.038321
2002-09-17,55.900002,55.919998,54.25,54.259998,8168200,40.891163
2002-09-16,54.50,55.25,54.00,54.75,5999800,41.260435
2002-09-13,53.119999,54.970001,52.650002,54.400002,8355200,40.996671
2002-09-12,54.200001,54.209999,52.970001,53.119999,6608400,40.032042
2002-09-11,55.400002,57.00,53.810001,54.200001,7359200,40.845948
2002-09-10,53.650002,54.810001,53.279999,54.779999,8848000,41.283043
2002-09-09,52.650002,53.700001,52.25,53.279999,6632600,40.15262
2002-09-06,51.599998,53.049999,51.599998,52.779999,7414300,39.775813
2002-09-05,51.00,51.389999,50.02,50.939999,11572700,38.38916
2002-09-04,51.869999,52.720001,51.00,52.34,8623000,39.444223
2002-09-03,52.849998,53.150002,51.490002,51.869999,9274400,39.090023
2002-08-30,53.200001,54.00,53.00,53.48,6593400,40.303344
2002-08-29,52.66,53.700001,52.52,53.200001,8449000,40.092332
2002-08-28,52.799999,53.52,52.759998,53.400002,7558000,40.243056
2002-08-27,53.400002,53.400002,52.049999,53.119999,8518500,40.032042
2002-08-26,53.099998,53.639999,52.110001,53.400002,8040400,40.243056
2002-08-23,53.700001,53.900002,52.869999,53.189999,6591800,40.084795
2002-08-22,54.00,54.419998,53.349998,54.25,7542200,40.883628
2002-08-21,54.00,54.299999,52.75,54.09,8920700,40.76305
2002-08-20,54.099998,54.549999,53.099998,53.779999,8399700,40.529428
2002-08-19,53.00,54.790001,52.720001,54.689999,11050000,41.215218
2002-08-16,54.25,54.759998,53.610001,53.790001,9243000,40.536966
2002-08-15,53.049999,54.790001,53.009998,54.709999,13956200,41.23029
2002-08-14,49.349998,52.900002,49.150002,52.619999,14957100,39.655234
2002-08-13,48.41,50.650002,47.450001,48.709999,14450100,36.708599
2002-08-12,48.200001,48.93,47.650002,48.41,7239900,36.482515
2002-08-09,48.650002,49.580002,48.130001,49.200001,9991900,37.077871
2002-08-08,48.549999,49.349998,46.50,49.189999,13516600,37.070334
2002-08-07,48.50,48.50,46.900002,48.380001,9682900,36.459907
2002-08-06,47.900002,48.50,46.400002,47.279999,10310300,35.630929
2002-08-05,46.099998,46.919998,45.549999,45.599998,8422000,34.364855
2002-08-02,47.200001,47.400002,45.189999,46.099998,9885400,34.741662
2002-08-01,49.00,49.169998,46.82,47.400002,12829500,35.721364
2002-07-31,49.299999,49.299999,47.349998,49.18,12722700,37.062799
2002-07-30,49.02,49.700001,48.50,49.119999,10102200,37.017581
2002-07-29,48.189999,49.650002,47.599998,49.529999,10985500,37.326563
2002-07-26,47.00,48.25,46.00,48.18,9082900,36.309183
2002-07-25,47.700001,48.07,45.00,47.00,14451900,35.419917
2002-07-24,44.299999,48.119999,43.720001,47.939999,18988100,36.128315
2002-07-23,45.00,46.900002,44.75,45.099998,15287400,33.988047
2002-07-22,46.25,47.209999,43.990002,44.599998,16834200,33.611239
2002-07-19,47.200001,47.700001,45.610001,46.50,13179300,35.04311
2002-07-18,48.400002,49.540001,47.400002,47.41,12019700,35.728899
2002-07-17,51.00,51.490002,47.50,48.25,18751100,36.361936
2002-07-16,52.25,52.57,49.880001,49.880001,14497700,37.59033
2002-07-15,52.400002,53.48,50.099998,53.439999,12703700,40.273198
2002-07-12,53.93,54.099998,52.59,52.849998,8919300,39.828565
2002-07-11,53.77,54.990002,53.00,54.18,12871600,40.830875
2002-07-10,54.75,55.599998,53.549999,53.759998,8964200,40.514355
2002-07-09,55.66,56.07,54.48,54.650002,8035500,41.185075
2002-07-08,56.150002,56.700001,55.18,55.599998,7639800,41.901007
2002-07-05,55.450001,56.009998,55.23,56.00,3217700,42.202455
2002-07-03,53.299999,55.099998,53.299999,55.040001,7243200,41.478985
2002-07-02,54.41,54.93,53.299999,53.419998,10192500,40.258126
2002-07-01,55.299999,55.830002,54.400002,54.400002,10183200,40.996671
2002-06-28,57.00,57.779999,55.009998,55.009998,15398900,41.456374
2002-06-27,55.799999,57.700001,55.049999,57.700001,8552400,43.483601
2002-06-26,54.299999,56.50,53.75,55.619999,10912100,41.91608
2002-06-25,56.00,57.220001,55.02,55.099998,8646500,41.5242
2002-06-24,55.049999,56.349998,54.23,55.75,10988900,42.014051
2002-06-21,55.50,56.50,54.900002,54.98,15090200,41.433767
2002-06-20,57.349998,57.900002,56.200001,56.50,7163900,42.579262
2002-06-19,58.00,58.75,56.98,57.41,7595400,43.265052
2002-06-18,58.310001,58.880001,57.91,58.549999,6997100,44.067651
2002-06-17,57.099998,58.439999,56.700001,58.310001,8631800,43.887017
2002-06-14,56.450001,57.029999,55.25,56.950001,10511400,42.863413
2002-06-13,57.75,57.759998,56.27,56.50,9523000,42.52472
2002-06-12,56.549999,58.299999,56.240002,58.299999,10561800,43.879489
2002-06-11,56.849998,57.630001,56.380001,56.450001,11423700,42.487088
2002-06-10,55.099998,56.580002,55.060001,56.400002,8559100,42.449456
2002-06-07,53.849998,54.720001,53.759998,54.43,7928900,40.966734
2002-06-06,54.970001,54.98,54.00,54.099998,7554600,40.718359
2002-06-05,54.950001,55.77,54.52,54.959999,10080900,41.365638
2002-06-04,53.00,54.00,52.00,54.00,13781900,40.643095
2002-06-03,54.18,54.669998,52.950001,53.150002,8180000,40.003344
2002-05-31,54.900002,55.580002,54.00,54.099998,11707200,40.718359
2002-05-30,54.099998,54.849998,53.75,53.990002,8196300,40.63557
2002-05-29,54.900002,55.66,54.529999,54.529999,5427400,41.041998
2002-05-28,55.400002,55.630001,53.93,54.790001,6920300,41.237689
2002-05-24,56.560001,56.939999,55.509998,55.52,5011100,41.787123
2002-05-23,56.50,56.759998,55.790001,56.310001,5915900,42.381717
2002-05-22,56.700001,56.799999,55.700001,56.799999,6026900,42.750514
2002-05-21,57.900002,58.119999,56.599998,56.599998,6376800,42.599983
2002-05-20,58.75,58.82,57.700001,57.799999,5031900,43.503164
2002-05-17,58.349998,59.299999,57.959999,58.330002,7547100,43.90207
2002-05-16,57.650002,58.689999,57.439999,58.349998,8016000,43.917121
2002-05-15,57.639999,58.189999,56.639999,56.77,10467000,42.727935
2002-05-14,57.50,58.25,57.049999,57.389999,12505700,43.194577
2002-05-13,53.84,55.279999,53.84,55.040001,6421700,41.425851
2002-05-10,55.240002,55.259998,53.610001,53.66,7436000,40.387194
2002-05-09,55.650002,55.75,53.720001,54.990002,11840200,41.388219
2002-05-08,56.25,56.490002,55.68,56.389999,8317600,42.441928
2002-05-07,54.619999,55.50,54.00,55.009998,8965100,41.40327
2002-05-06,55.610001,56.130001,53.950001,53.990002,7980500,40.63557
2002-05-03,56.450001,56.48,55.080002,55.25,7821600,41.583907
2002-05-02,56.75,57.25,56.18,56.650002,7659000,42.637618
2002-05-01,55.599998,56.799999,54.82,56.799999,8589100,42.750514
2002-04-30,56.099998,56.59,55.459999,55.860001,10411000,42.043024
2002-04-29,55.900002,57.400002,55.799999,56.200001,10053400,42.298925
2002-04-26,57.25,57.299999,55.779999,55.799999,10036100,41.997864
2002-04-25,56.799999,57.110001,56.23,57.00,7330800,42.901044
2002-04-24,57.900002,58.639999,57.32,57.450001,6527500,43.239738
2002-04-23,57.849998,58.439999,57.619999,58.049999,6917900,43.691326
2002-04-22,58.93,59.099998,57.00,57.549999,6438900,43.315001
2002-04-19,58.799999,59.099998,58.139999,58.93,5848200,44.353659
2002-04-18,58.549999,59.419998,56.740002,58.150002,11727300,43.766593
2002-04-17,60.549999,60.549999,58.650002,59.290001,9141200,44.624613
2002-04-16,60.200001,60.709999,59.599998,60.00,7013800,45.158994
2002-04-15,61.049999,61.27,59.52,59.93,5770000,45.106309
2002-04-12,60.700001,61.849998,60.290001,61.23,6488900,46.084753
2002-04-11,60.650002,61.810001,60.009998,60.169998,8567000,45.286943
2002-04-10,60.25,60.700001,59.869999,60.57,7116000,45.588004
2002-04-09,60.099998,60.450001,59.900002,60.099998,6229800,45.234258
2002-04-08,59.00,59.950001,58.52,59.779999,6139300,44.99341
2002-04-05,59.23,59.75,58.779999,59.139999,5321600,44.511715
2002-04-04,58.799999,59.599998,58.720001,59.279999,6853300,44.617085
2002-04-03,59.400002,59.799999,57.75,58.599998,8932800,44.105283
2002-04-02,59.50,59.509998,58.75,58.93,7788800,44.353659
2002-04-01,60.349998,60.360001,58.619999,59.560001,13248900,44.827829
2002-03-28,62.009998,62.169998,61.279999,61.299999,5830000,46.137438
2002-03-27,62.049999,62.299999,61.619999,62.00,6930800,46.664294
2002-03-26,61.349998,62.389999,61.349998,62.169998,6183500,46.792243
2002-03-25,61.849998,62.18,61.279999,61.279999,5917900,46.122385
2002-03-22,62.200001,62.240002,61.57,62.049999,5499200,46.701926
2002-03-21,62.950001,63.189999,61.950001,62.200001,5802400,46.814825
2002-03-20,62.950001,63.439999,62.93,63.18,7102100,47.552421
2002-03-19,63.700001,63.84,63.040001,63.459999,5544900,47.706712
2002-03-18,63.919998,63.939999,62.700001,63.549999,6358800,47.774371
2002-03-15,62.68,63.75,62.450001,63.75,13302500,47.924723
2002-03-14,61.950001,62.59,61.91,62.27,5020200,46.812118
2002-03-13,61.75,62.09,61.299999,61.990002,6178300,46.601626
2002-03-12,61.900002,62.400002,61.889999,62.23,6980900,46.782047
2002-03-11,62.810001,62.810001,62.029999,62.529999,6698200,47.007575
2002-03-08,62.18,62.900002,62.00,62.52,10461200,47.000058
2002-03-07,61.50,61.950001,60.990002,61.700001,9292400,46.383615
2002-03-06,60.970001,61.48,60.299999,60.900002,10196200,45.782207
2002-03-05,62.32,62.59,60.549999,60.759998,12356700,45.676958
2002-03-04,62.950001,63.080002,62.18,62.98,8167600,47.345867
2002-03-01,62.200001,62.810001,62.060001,62.810001,7519600,47.218069
2002-02-28,62.700001,62.880001,61.540001,62.009998,11995700,46.616659
2002-02-27,62.599998,62.849998,61.75,62.25,12977300,46.797083
2002-02-26,60.799999,62.279999,60.450001,62.099998,11650400,46.684317
2002-02-25,60.200001,60.75,60.060001,60.650002,8342500,45.594267
2002-02-22,59.650002,59.950001,58.599998,59.950001,7603200,45.068034
2002-02-21,60.150002,60.869999,59.389999,59.549999,7339600,44.767329
2002-02-20,59.369999,60.200001,58.799999,60.02,8194100,45.120657
2002-02-19,59.400002,60.18,59.200001,59.290001,9060600,44.571873
2002-02-15,60.490002,60.59,59.900002,60.029999,7257600,45.128174
2002-02-14,60.349998,60.59,59.93,60.490002,5986000,45.473986
2002-02-13,60.299999,60.720001,59.880001,60.119999,6399600,45.195832
2002-02-12,59.849998,60.349998,59.799999,60.099998,5323600,45.180797
2002-02-11,59.490002,60.299999,59.380001,60.25,8501000,45.293562
2002-02-08,58.389999,59.150002,58.099998,59.150002,6378800,44.466627
2002-02-07,59.150002,59.75,58.34,58.389999,8419300,43.895287
2002-02-06,58.700001,59.25,58.41,58.880001,6421200,44.263651
2002-02-05,59.040001,59.50,58.450001,58.799999,6626800,44.203509
2002-02-04,59.580002,59.900002,58.650002,58.900002,6514600,44.278687
2002-02-01,59.700001,59.900002,58.75,59.259998,6697000,44.549318
2002-01-31,59.599998,59.98,59.099998,59.98,6861200,45.090586
2002-01-30,57.799999,59.950001,57.75,59.75,10006100,44.917682
2002-01-29,59.080002,59.48,57.91,57.91,7373900,43.534443
2002-01-28,58.700001,59.18,58.32,58.630001,5142700,44.075711
2002-01-25,59.360001,59.48,58.060001,58.400002,7322100,43.902806
2002-01-24,59.860001,59.950001,59.299999,59.669998,7984100,44.85754
2002-01-23,58.400002,59.950001,58.220001,59.860001,10682200,45.000376
2002-01-22,57.119999,58.700001,57.110001,58.009998,9990000,43.609617
2002-01-18,56.549999,56.889999,55.970001,56.349998,7007400,42.361695
2002-01-17,55.849998,57.220001,55.700001,56.759998,7796500,42.669917
2002-01-16,56.869999,56.869999,55.50,55.990002,5506400,42.091064
2002-01-15,55.759998,56.900002,55.310001,56.869999,8086100,42.752611
2002-01-14,55.799999,56.900002,55.759998,55.759998,6713800,41.918157
2002-01-11,56.650002,56.740002,55.529999,55.799999,7271300,41.948228
2002-01-10,56.400002,57.349998,56.259998,57.00,6466400,42.850341
2002-01-09,57.150002,57.529999,56.189999,56.400002,7575800,42.399286
2002-01-08,57.689999,58.00,57.330002,57.84,4370200,43.48182
2002-01-07,57.450001,58.099998,57.209999,57.389999,5360400,43.143527
2002-01-04,57.66,58.259998,57.200001,57.599998,6679700,43.301396
2002-01-03,57.950001,58.299999,57.50,57.98,5957300,43.587066
2002-01-02,57.650002,58.150002,56.990002,58.049999,6677900,43.639689
2001-12-31,58.099998,58.48,57.549999,57.549999,5134700,43.263808
2001-12-28,58.349998,58.740002,58.139999,58.349998,4343400,43.865216
2001-12-27,58.099998,58.599998,57.77,58.369999,4822200,43.880252
2001-12-26,57.75,58.57,57.709999,58.150002,6638900,43.714866
2001-12-24,57.52,57.700001,57.130001,57.130001,2031400,42.94807
2001-12-21,56.84,57.580002,56.529999,57.57,13126800,43.278844
2001-12-20,56.330002,57.139999,56.200001,56.259998,7845000,42.294037
2001-12-19,55.68,56.50,55.349998,56.279999,8212100,42.309072
2001-12-18,55.91,56.099998,55.419998,55.779999,8798500,41.880571
2001-12-17,54.150002,55.849998,53.880001,55.849998,8463200,41.933128
2001-12-14,53.700001,54.41,53.029999,54.060001,6015900,40.589168
2001-12-13,54.080002,54.09,53.099998,53.360001,7847100,40.063596
2001-12-12,54.02,54.700001,53.50,54.330002,5772300,40.791889
2001-12-11,54.119999,54.799999,53.509998,54.080002,6097600,40.604185
2001-12-10,55.099998,55.400002,54.27,54.27,5293400,40.746839
2001-12-07,55.209999,55.599998,54.75,55.34,4602400,41.550213
2001-12-06,55.950001,55.990002,55.41,55.619999,7044300,41.760441
2001-12-05,55.169998,56.57,54.939999,56.57,9031700,42.473718
2001-12-04,54.400002,55.169998,54.200001,55.169998,6865500,41.422573
2001-12-03,55.060001,55.23,54.18,54.580002,7615500,40.979593
2001-11-30,55.00,55.900002,54.900002,55.150002,8414300,41.407559
2001-11-29,55.099998,55.290001,54.50,54.650002,5727700,41.03215
2001-11-28,54.900002,55.759998,54.48,55.00,7469400,41.294935
2001-11-27,55.549999,55.810001,54.830002,55.080002,9664100,41.355002
2001-11-26,55.700001,56.02,55.310001,55.75,7702400,41.858048
2001-11-23,55.07,55.849998,55.060001,55.799999,2307000,41.895588
2001-11-21,55.52,55.610001,54.84,55.119999,4989500,41.385032
2001-11-20,55.700001,55.98,55.110001,55.700001,6336400,41.820508
2001-11-19,54.599998,55.860001,54.599998,55.75,7963900,41.858048
2001-11-16,56.00,56.00,54.650002,55.099998,10558400,41.370016
2001-11-15,55.580002,56.240002,55.279999,56.00,8452000,42.045752
2001-11-14,55.599998,55.799999,55.049999,55.279999,9589300,41.505163
2001-11-13,55.900002,55.950001,54.25,54.259998,10522000,40.739329
2001-11-12,54.549999,55.68,54.00,55.580002,6500700,41.73041
2001-11-09,54.549999,55.25,53.889999,55.099998,5045700,41.370016
2001-11-08,54.599998,55.400002,53.990002,54.50,8584100,40.919527
2001-11-07,54.849998,54.990002,53.400002,53.82,8222400,40.408971
2001-11-06,54.049999,55.099998,53.650002,54.939999,8781200,41.249885
2001-11-05,53.150002,54.299999,52.389999,53.900002,6841200,40.469037
2001-11-02,51.799999,53.18,51.759998,52.970001,5794300,39.770777
2001-11-01,51.200001,52.950001,50.860001,52.240002,8601900,39.222681
2001-10-31,50.700001,52.32,50.650002,51.400002,7034600,38.591995
2001-10-30,51.50,51.75,50.360001,50.599998,7094900,37.991339
2001-10-29,52.900002,53.060001,51.709999,51.900002,6024800,38.967403
2001-10-26,53.150002,53.82,52.50,53.419998,5123700,40.108643
2001-10-25,51.799999,53.299999,51.509998,53.299999,6892800,40.018546
2001-10-24,52.970001,53.189999,52.43,52.48,5230800,39.402876
2001-10-23,53.040001,53.549999,52.150002,52.610001,6188400,39.500483
2001-10-22,52.799999,53.599998,52.080002,53.040001,6544200,39.823334
2001-10-19,52.150002,53.07,51.599998,53.009998,6044500,39.800808
2001-10-18,52.330002,52.799999,51.419998,51.900002,7829100,38.967403
2001-10-17,53.25,53.740002,52.150002,52.220001,6638500,39.207665
2001-10-16,53.48,54.00,52.50,53.139999,6767600,39.898415
2001-10-15,52.619999,53.48,52.41,53.48,6259700,40.153693
2001-10-12,52.849998,53.00,51.799999,52.900002,10740100,39.71822
2001-10-11,53.950001,54.75,52.849998,53.490002,12260600,40.161203
2001-10-10,52.330002,53.700001,52.200001,53.630001,9481900,40.266317
2001-10-09,51.50,52.200001,51.00,52.080002,8068400,39.102551
2001-10-08,52.41,52.41,50.959999,51.110001,6702000,38.374257
2001-10-05,51.52,52.400002,51.00,52.400002,9463200,39.342812
2001-10-04,52.799999,52.950001,51.419998,51.50,10199000,38.667076
2001-10-03,51.889999,53.470001,51.50,52.73,13951800,39.59058
2001-10-02,50.049999,52.00,49.799999,51.599998,11404200,38.742156
2001-10-01,49.50,50.049999,48.139999,49.759998,11988600,37.360653
2001-09-28,49.450001,49.950001,48.810001,49.50,9560200,37.165442
2001-09-27,49.48,49.689999,48.110001,49.389999,9247000,37.082851
2001-09-26,49.349998,49.48,48.619999,49.48,12116300,37.150425
2001-09-25,48.200001,49.099998,48.049999,48.400002,15973800,36.339544
2001-09-24,46.50,47.98,46.009998,47.279999,13901700,35.498627
2001-09-21,44.150002,45.950001,43.900002,44.66,16443600,33.531487
2001-09-20,45.349998,45.939999,45.009998,45.310001,12656400,34.019519
2001-09-19,45.279999,46.080002,44.189999,45.450001,11716600,34.124633
2001-09-18,45.00,46.349998,44.16,45.349998,10510300,33.996991
2001-09-17,44.00,46.099998,42.00,44.00,17501800,32.984954
2001-09-10,45.50,47.00,45.040001,46.23,6726900,34.656691
2001-09-07,46.900002,46.900002,45.119999,46.220001,10431700,34.649196
2001-09-06,48.950001,49.66,47.00,47.369999,10383500,35.511301
2001-09-05,48.32,49.349998,47.00,49.150002,9833200,36.845694
2001-09-04,48.23,49.880001,48.209999,48.450001,7324700,36.320933
2001-08-31,47.700001,49.00,47.700001,48.049999,7555100,36.021069
2001-08-30,49.099998,49.470001,47.240002,47.599998,9639000,35.683722
2001-08-29,50.049999,50.419998,49.029999,49.150002,5440500,36.845694
2001-08-28,49.900002,50.200001,49.700001,50.099998,6149700,37.557867
2001-08-27,51.200001,51.50,50.389999,50.389999,4675000,37.775269
2001-08-24,49.650002,51.00,49.650002,50.950001,7268400,38.195078
2001-08-23,50.049999,50.43,49.50,49.740002,5545200,37.287993
2001-08-22,50.009998,50.540001,49.509998,50.240002,5818100,37.662822
2001-08-21,51.400002,51.619999,49.880001,49.939999,6542700,37.437922
2001-08-20,51.299999,51.619999,50.799999,51.59,4349000,38.674859
2001-08-17,51.50,51.50,50.099998,50.799999,5901700,38.082628
2001-08-16,51.52,52.200001,50.669998,51.689999,6205200,38.749823
2001-08-15,52.32,52.919998,51.82,52.00,6033000,38.982219
2001-08-14,51.25,52.700001,51.130001,52.360001,10067600,39.252096
2001-08-13,53.549999,53.77,51.799999,52.200001,10140400,39.132151
2001-08-10,53.950001,54.00,52.50,53.599998,8245600,40.18167
2001-08-09,54.419998,54.790001,53.299999,54.169998,8539200,40.608975
2001-08-08,54.599998,55.869999,54.400002,54.529999,6387000,40.878852
2001-08-07,54.68,55.279999,54.150002,55.080002,5155500,41.291167
2001-08-06,55.580002,55.580002,54.060001,54.50,5712600,40.856364
2001-08-03,55.900002,55.970001,55.049999,55.389999,4170000,41.523559
2001-08-02,55.439999,56.150002,55.049999,55.990002,5746300,41.973355
2001-08-01,55.400002,56.77,54.950001,55.009998,6168500,41.238688
2001-07-31,55.52,56.50,55.400002,55.900002,7725600,41.905886
2001-07-30,56.00,56.049999,54.189999,55.880001,7168200,41.890893
2001-07-27,55.75,56.00,55.009998,55.41,5169300,41.538552
2001-07-26,55.099998,55.509998,54.18,55.50,8425900,41.606022
2001-07-25,53.099998,55.099998,52.73,55.099998,9512400,41.306157
2001-07-24,53.049999,53.200001,52.50,53.099998,6075300,39.806841
2001-07-23,53.900002,54.27,52.849998,53.029999,5361100,39.754365
2001-07-20,54.00,54.59,53.900002,54.279999,5894900,40.691438
2001-07-19,53.98,54.50,53.810001,54.23,8230700,40.653956
2001-07-18,52.869999,53.98,52.529999,53.98,7180300,40.466541
2001-07-17,53.84,53.849998,52.939999,53.349998,8785400,39.994256
2001-07-16,53.400002,54.049999,53.110001,53.48,11402300,40.091712
2001-07-13,51.849998,53.23,51.130001,52.900002,9845500,39.656912
2001-07-12,50.549999,51.849998,49.950001,51.849998,11705100,38.869769
2001-07-11,48.150002,49.400002,47.619999,48.849998,7910500,36.620795
2001-07-10,48.50,48.669998,47.380001,47.50,6461600,35.608757
2001-07-09,47.48,48.400002,47.049999,48.25,6081800,36.171001
2001-07-06,48.549999,48.560001,46.709999,47.34,6664200,35.488812
2001-07-05,49.349998,49.380001,48.450001,48.599998,5132100,36.43338
2001-07-03,49.700001,49.700001,48.939999,49.220001,3803700,36.89817
2001-07-02,48.950001,49.790001,48.650002,49.75,5491200,37.295488
2001-06-29,49.130001,50.490002,48.599998,48.799999,9306500,36.583312
2001-06-28,48.950001,49.790001,48.950001,49.369999,5013700,37.010617
2001-06-27,49.02,49.720001,48.400002,48.50,5127100,36.358415
2001-06-26,48.549999,49.799999,48.529999,49.099998,6020100,36.808209
2001-06-25,50.549999,50.549999,48.799999,49.00,5707400,36.733244
2001-06-22,50.68,50.75,49.450001,49.98,4833700,37.467909
2001-06-21,49.299999,51.169998,49.299999,50.450001,8943800,37.820249
2001-06-20,49.200001,49.900002,48.98,49.799999,5913000,37.33297
2001-06-19,49.470001,49.490002,48.630001,48.860001,5176800,36.575816
2001-06-18,48.799999,49.59,48.349998,48.52,7122900,36.321298
2001-06-15,49.400002,49.73,48.00,48.150002,14394400,36.044322
2001-06-14,49.900002,50.360001,49.400002,49.50,4554600,37.05491
2001-06-13,50.599998,50.599998,50.060001,50.150002,3523500,37.54149
2001-06-12,50.02,50.970001,49.610001,50.57,4469200,37.855894
2001-06-11,50.950001,51.099998,50.16,50.23,3233500,37.601376
2001-06-08,51.00,51.27,50.75,51.02,3787500,38.192758
2001-06-07,50.07,51.349998,50.07,51.099998,6110300,38.252643
2001-06-06,51.299999,51.709999,50.700001,50.75,4193700,37.99064
2001-06-05,50.740002,51.639999,50.689999,51.299999,5164000,38.40236
2001-06-04,51.549999,51.799999,50.50,50.990002,5619900,38.170301
2001-06-01,51.540001,52.450001,51.450001,51.720001,4155100,38.716767
2001-05-31,52.099998,52.599998,51.27,51.75,5880700,38.739224
2001-05-30,51.220001,52.200001,51.119999,51.470001,5969800,38.529621
2001-05-29,51.950001,51.950001,51.029999,51.209999,5000600,38.334988
2001-05-25,52.98,53.00,51.200001,51.200001,5176200,38.327503
2001-05-24,52.349998,53.240002,52.150002,52.889999,4524500,39.592609
2001-05-23,53.299999,53.880001,52.209999,52.52,5566100,39.315634
2001-05-22,53.209999,53.700001,52.900002,53.52,6793700,40.064218
2001-05-21,52.040001,53.299999,51.560001,53.200001,7752900,39.824671
2001-05-18,51.950001,52.040001,51.41,52.040001,5860900,38.956314
2001-05-17,51.950001,52.220001,51.299999,51.759998,6539500,38.746708
2001-05-16,51.200001,52.119999,51.00,51.650002,9604400,38.664366
2001-05-15,54.349998,54.349998,52.00,52.00,13411700,38.92637
2001-05-14,54.099998,54.75,53.84,54.349998,4800300,40.685541
2001-05-11,53.970001,54.459999,53.349998,54.099998,6529600,40.498395
2001-05-10,53.299999,53.700001,53.209999,53.419998,8215200,39.989358
2001-05-09,52.049999,52.200001,51.299999,51.59,5444300,38.61945
2001-05-08,51.75,51.990002,51.139999,51.98,4437600,38.911398
2001-05-07,52.400002,52.939999,51.849998,52.049999,4717000,38.963798
2001-05-04,52.299999,53.700001,52.009998,53.02,7445400,39.689926
2001-05-03,52.299999,53.450001,52.029999,53.099998,7590700,39.749811
2001-05-02,53.450001,53.450001,52.279999,53.080002,7689800,39.734842
2001-05-01,51.720001,53.549999,51.400002,53.50,7619000,40.049246
2001-04-30,53.299999,53.299999,51.220001,51.740002,6597800,38.731739
2001-04-27,52.099998,53.200001,51.900002,52.830002,7764200,39.547696
2001-04-26,51.00,51.599998,50.549999,51.240002,5189400,38.357447
2001-04-25,51.099998,51.099998,50.029999,50.669998,5408400,37.930752
2001-04-24,50.75,51.09,50.049999,50.099998,8175500,37.504059
2001-04-23,52.049999,52.700001,51.650002,52.040001,5482800,38.956314
2001-04-20,52.490002,52.50,51.400002,51.709999,7266900,38.70928
2001-04-19,51.73,52.720001,51.700001,52.50,7043000,39.300662
2001-04-18,49.950001,52.939999,49.630001,52.73,12996900,39.472836
2001-04-17,48.91,49.439999,48.509998,49.240002,6450800,36.860279
2001-04-16,49.700001,50.220001,48.709999,49.049999,6754500,36.718046
2001-04-12,48.75,49.700001,47.41,49.700001,9872800,37.204627
2001-04-11,50.099998,50.700001,49.259998,50.23,6950300,37.601376
2001-04-10,51.150002,51.639999,50.77,50.84,6986500,38.058012
2001-04-09,51.549999,51.790001,49.799999,50.299999,7287300,37.653776
2001-04-06,50.00,51.32,49.509998,51.240002,7634400,38.357447
2001-04-05,50.549999,50.689999,50.009998,50.540001,7790000,37.833438
2001-04-04,48.720001,50.400002,48.700001,49.869999,7962100,37.331885
2001-04-03,50.849998,51.00,48.77,49.189999,8692100,36.822848
2001-04-02,50.00,50.98,49.50,50.639999,7437900,37.908295
2001-03-30,51.099998,51.240002,49.50,50.50,8308400,37.803494
2001-03-29,49.849998,50.650002,48.419998,50.619999,7754000,37.893323
2001-03-28,50.00,50.130001,48.299999,49.66,6875900,37.174683
2001-03-27,49.599998,50.400002,49.150002,50.290001,9784800,37.646292
2001-03-26,48.900002,49.799999,48.299999,49.599998,6841800,37.129767
2001-03-23,45.849998,47.91,45.200001,47.57,8282000,35.610142
2001-03-22,47.25,47.400002,45.91,46.91,11913900,35.116077
2001-03-21,47.799999,49.77,47.279999,48.310001,8326900,36.164096
2001-03-20,47.360001,49.48,47.360001,47.880001,10035600,35.789804
2001-03-19,46.990002,47.700001,46.700001,47.380001,5855800,35.41606
2001-03-16,47.849998,47.849998,46.560001,46.93,13859800,35.079689
2001-03-15,47.349998,48.490002,46.560001,47.849998,7509700,35.767378
2001-03-14,47.099998,47.970001,46.529999,47.200001,8548900,35.281511
2001-03-13,49.00,49.299999,47.009998,48.799999,7959100,36.477493
2001-03-12,50.25,50.25,48.099998,48.310001,5740200,36.111225
2001-03-09,51.799999,51.799999,50.099998,50.779999,5566500,37.957523
2001-03-08,51.900002,51.900002,50.779999,51.650002,6034400,38.607841
2001-03-07,50.049999,50.950001,49.919998,50.700001,5419900,37.897725
2001-03-06,49.50,49.959999,48.900002,49.549999,5096800,37.038111
2001-03-05,48.939999,49.540001,48.00,48.369999,4568100,36.156073
2001-03-02,47.990002,49.689999,47.50,48.919998,6472400,36.567191
2001-03-01,49.25,49.869999,48.00,48.34,8692800,36.133649
2001-02-28,51.240002,51.299999,49.040001,50.09,7748200,37.441756
2001-02-27,51.599998,51.849998,49.52,50.990002,7047400,38.114498
2001-02-26,50.93,51.369999,50.450001,51.07,6060200,38.174295
2001-02-23,50.00,50.799999,48.049999,50.279999,8081600,37.583778
2001-02-22,51.00,51.00,48.950001,49.700001,9154300,37.150235
2001-02-21,52.549999,52.959999,50.049999,50.209999,8164200,37.531454
2001-02-20,52.200001,54.290001,52.00,53.400002,9336500,39.915947
2001-02-16,51.799999,53.299999,51.560001,52.360001,6659400,39.138558
2001-02-15,53.349998,53.450001,51.650002,52.00,7636600,38.869461
2001-02-14,54.349998,54.349998,53.00,53.00,5095000,39.61695
2001-02-13,53.049999,54.470001,52.029999,54.099998,7423200,40.439188
2001-02-12,51.00,53.48,50.959999,53.450001,7287500,39.953321
2001-02-09,52.310001,53.349998,50.23,50.400002,7911400,37.673479
2001-02-08,54.549999,54.799999,51.560001,52.299999,7967800,39.093707
2001-02-07,53.209999,54.700001,53.200001,54.66,4928400,40.857783
2001-02-06,53.400002,54.490002,52.849998,53.200001,5394000,39.766449
2001-02-05,55.00,55.220001,53.299999,53.84,5604200,40.244842
2001-02-02,55.970001,55.98,54.150002,54.759998,5065000,40.932531
2001-02-01,56.799999,56.799999,54.470001,55.700001,10385300,41.635173
2001-01-31,54.200001,57.00,54.040001,56.799999,10848100,42.45741
2001-01-30,54.209999,54.25,53.16,53.77,5124200,40.192518
2001-01-29,53.700001,54.650002,53.700001,54.200001,5114200,40.513939
2001-01-26,54.9375,54.9375,53.0625,53.625,5230900,40.084131
2001-01-25,53.9375,56.125,52.9375,54.00,9057000,40.36444
2001-01-24,53.4375,53.625,52.3125,53.50,7789400,39.990695
2001-01-23,53.00,53.9375,52.5625,53.375,4917800,39.897259
2001-01-22,52.1875,53.6875,52.00,52.5625,7805700,39.289924
2001-01-19,52.0625,52.6875,50.4375,50.8125,8963300,37.981817
2001-01-18,53.4375,54.50,52.9375,53.0625,6877900,39.663669
2001-01-17,54.5625,54.625,53.5625,53.9375,7814700,40.317722
2001-01-16,53.4375,54.8125,53.1875,54.6875,8331600,40.878339
2001-01-12,52.00,53.75,51.625,52.9375,7322000,39.570232
2001-01-11,51.9375,53.00,50.8125,51.9375,6702400,38.822743
2001-01-10,50.9375,52.0625,50.50,51.6875,9981400,38.63587
2001-01-09,53.50,54.75,52.50,52.75,7210800,39.430078
2001-01-08,53.00,54.8125,52.875,53.9375,8442100,40.317722
2001-01-05,57.125,57.125,53.25,53.9375,9809200,40.317722
2001-01-04,57.00,58.1875,55.875,56.1875,13812300,41.999574
2001-01-03,53.50,58.75,52.9375,58.4375,19957100,43.681425
2001-01-02,53.125,55.0625,52.6875,53.875,8813600,40.271004
2000-12-29,52.6875,55.00,52.6875,53.125,6582300,39.710387
2000-12-28,52.50,54.00,52.50,52.9375,4096300,39.570232
2000-12-27,50.6875,53.4375,50.1875,52.5625,8224300,39.289924
2000-12-26,52.25,52.50,49.00,50.625,6021000,37.841663
2000-12-22,51.75,52.75,50.875,52.50,7484200,39.243206
2000-12-21,49.50,52.25,49.3125,51.75,9380200,38.682588
2000-12-20,48.00,49.75,46.9375,48.9375,8283200,36.580274
2000-12-19,50.625,51.25,47.625,48.00,9128500,35.834653
2000-12-18,50.50,51.1875,49.1875,50.5625,6964800,37.747701
2000-12-15,49.50,50.875,49.50,49.875,13142700,37.234444
2000-12-14,50.3125,51.3125,49.9375,51.0625,7246200,38.120978
2000-12-13,51.9375,52.75,50.0625,50.3125,6558500,37.561062
2000-12-12,50.50,52.125,49.8125,51.875,8344800,38.727555
2000-12-11,53.625,53.8125,50.8125,51.375,11596100,38.354277
2000-12-08,55.0625,55.375,53.75,54.4375,6877000,40.640602
2000-12-07,55.0625,55.9375,54.5625,55.00,7646200,41.06054
2000-12-06,54.625,55.875,53.3125,54.8125,10703100,40.920561
2000-12-05,53.8125,55.3125,53.25,55.25,10380600,41.247179
2000-12-04,50.9375,53.8125,50.375,53.8125,13404100,40.174005
2000-12-01,52.625,52.75,50.6875,51.1875,10723700,38.214298
2000-11-30,51.50,52.1875,50.375,52.1875,11607100,38.960853
2000-11-29,49.25,51.875,49.1875,51.875,9903000,38.727555
2000-11-28,48.75,50.875,48.0625,49.00,9787100,36.581208
2000-11-27,46.9375,49.8125,46.875,49.3125,10650400,36.814507
2000-11-24,45.9375,46.1875,44.6875,45.1875,3482500,33.734966
2000-11-22,47.1875,47.3125,45.875,45.875,4945900,34.248223
2000-11-21,48.125,48.50,46.50,47.125,4389000,35.181417
2000-11-20,48.625,48.625,47.5625,47.875,4379100,35.741333
2000-11-17,48.50,49.5625,47.625,48.5625,6140200,36.25459
2000-11-16,48.75,49.1875,48.125,48.25,5529700,36.021292
2000-11-15,46.625,49.375,46.375,49.00,8646200,36.581208
2000-11-14,47.25,48.4375,46.75,46.875,8533200,34.994778
2000-11-13,43.00,45.4375,42.5625,45.3125,10993000,33.828286
2000-11-10,45.00,45.00,43.1875,43.6875,14914600,32.615133
2000-11-09,48.0625,48.125,46.1875,47.125,8060800,35.181417
2000-11-08,49.00,50.875,48.625,48.75,7622900,36.394569
2000-11-07,49.00,50.00,48.00,48.9375,7137500,36.534548
2000-11-06,48.3125,49.375,47.0625,49.00,7276500,36.581208
2000-11-03,48.4375,49.125,46.8125,47.375,8258500,35.368056
2000-11-02,46.00,50.00,45.50,48.4375,20850500,36.161271
2000-11-01,46.50,48.0625,46.125,46.6875,23272200,34.854799
2000-10-31,44.1875,45.8125,44.00,45.375,14696600,33.874945
2000-10-30,43.375,43.9375,43.125,43.75,13205600,32.661793
2000-10-27,43.4375,44.125,43.25,43.25,12554800,32.288515
2000-10-26,45.875,45.9375,43.375,43.4375,14962100,32.428494
2000-10-25,48.4375,48.4375,45.625,45.9375,8390700,34.294883
2000-10-24,47.5625,48.50,47.25,48.375,5913800,36.114611
2000-10-23,46.5625,47.8125,45.5625,47.3125,6031300,35.321396
2000-10-20,46.875,47.3125,46.0625,46.5625,7153200,34.76148
2000-10-19,46.5625,47.9375,46.125,47.8125,6302900,35.694674
2000-10-18,45.9375,47.00,44.875,46.75,6148400,34.901459
2000-10-17,47.5625,47.9375,45.6875,46.00,6268900,34.341542
2000-10-16,45.25,47.6875,45.1875,47.3125,7098300,35.321396
2000-10-13,43.625,45.125,43.625,45.00,9358200,33.594987
2000-10-12,42.00,44.6875,41.4375,44.125,19439900,32.941751
2000-10-11,46.125,46.375,44.875,45.3125,8390900,33.828286
2000-10-10,45.9375,46.6875,45.375,46.375,6683200,34.621501
2000-10-09,45.6875,46.4375,45.125,45.125,6033800,33.688307
2000-10-06,45.875,45.875,44.625,45.50,11160500,33.968265
2000-10-05,46.375,46.75,45.75,46.0625,8732500,34.388202
2000-10-04,45.6875,47.875,45.50,46.125,11085200,34.434862
2000-10-03,46.1875,46.375,44.125,45.8125,16548400,34.201563
2000-10-02,48.1875,48.625,45.4375,46.25,11174600,34.528181
2000-09-29,48.50,49.50,48.00,48.125,7532900,35.927972
2000-09-28,48.4375,49.875,48.00,48.5625,8137800,36.25459
2000-09-27,47.625,48.375,47.125,48.125,7582800,35.927972
2000-09-26,49.4375,49.4375,46.875,47.375,9409100,35.368056
2000-09-25,50.625,50.6875,48.9375,49.00,5466000,36.581208
2000-09-22,51.9375,51.9375,49.5625,50.50,6726300,37.701041
2000-09-21,48.6875,51.375,48.625,50.00,8645500,37.327763
2000-09-20,49.9375,50.00,48.0625,48.50,9882700,36.207931
2000-09-19,50.625,50.875,49.25,49.875,8573700,37.234444
2000-09-18,51.00,52.6875,50.625,51.125,5211600,38.167638
2000-09-15,52.3125,52.9375,51.4375,52.00,8109100,38.820874
2000-09-14,53.625,53.625,51.875,52.50,4711600,39.194152
2000-09-13,54.25,54.4375,53.00,53.875,4981600,40.220665
2000-09-12,53.5625,54.625,52.9375,54.00,6351100,40.269191
2000-09-11,52.75,54.75,52.6875,54.375,9844600,40.548838
2000-09-08,51.50,52.625,51.00,52.125,7380600,38.870955
2000-09-07,51.1875,52.0625,50.50,51.00,8400600,38.032013
2000-09-06,50.25,51.125,49.875,50.00,8310400,37.286288
2000-09-05,48.9375,50.1875,48.8125,49.75,8031000,37.099856
2000-09-01,47.5625,49.125,47.375,48.75,7661500,36.35413
2000-08-31,48.3125,48.75,47.125,47.625,12236200,35.515189
2000-08-30,48.875,49.00,48.00,48.4375,8155500,36.121091
2000-08-29,49.50,49.9375,48.875,49.4375,5665100,36.866817
2000-08-28,50.0625,50.625,48.625,49.50,7003200,36.913425
2000-08-25,49.625,50.50,49.25,50.50,4877100,37.65915
2000-08-24,49.75,50.125,49.00,49.4375,4967300,36.866817
2000-08-23,49.75,50.1875,49.0625,49.125,6875700,36.633778
2000-08-22,49.00,50.00,48.5625,49.125,7610900,36.633778
2000-08-21,49.25,49.75,47.125,49.00,14148700,36.540562
2000-08-18,49.6875,50.875,49.5625,50.875,7349300,37.938798
2000-08-17,49.5625,50.4375,48.625,50.00,6799800,37.286288
2000-08-16,50.75,50.875,48.75,49.9375,13811000,37.23968
2000-08-15,51.875,52.5625,51.25,51.5625,7953000,38.451484
2000-08-14,52.25,53.0625,52.125,52.875,6032800,39.430249
2000-08-11,51.4375,52.375,51.125,52.125,7534100,38.870955
2000-08-10,53.125,53.25,50.6875,51.00,12380600,38.032013
2000-08-09,54.0625,54.75,52.9375,53.625,17750700,39.989543
2000-08-08,56.4375,57.625,55.0625,57.625,5859800,42.972446
2000-08-07,53.125,55.9375,53.00,55.125,5605200,41.108132
2000-08-04,54.0625,54.0625,52.75,52.9375,5842400,39.476857
2000-08-03,56.50,56.50,53.4375,53.875,8229100,40.175975
2000-08-02,54.50,55.0625,53.8125,54.0625,6734800,40.315798
2000-08-01,54.00,54.9375,53.00,54.50,9055300,40.642053
2000-07-31,58.875,58.875,54.25,55.25,7534300,41.201348
2000-07-28,59.8125,59.9375,57.25,58.6875,5247600,43.76478
2000-07-27,59.375,60.3125,59.00,60.0625,4744800,44.790153
2000-07-26,58.1875,60.125,58.1875,58.75,7322100,43.811388
2000-07-25,57.50,59.3125,57.3125,59.1875,4122000,44.137643
2000-07-24,59.00,59.1875,57.1875,57.4375,5045800,42.832623
2000-07-21,60.3125,60.50,59.25,59.6875,3911000,44.510506
2000-07-20,59.9375,60.8125,59.5625,60.00,4986800,44.743545
2000-07-19,60.1875,60.50,59.375,60.00,3736400,44.743545
2000-07-18,60.9375,61.125,59.75,60.0625,3592100,44.790153
2000-07-17,60.3125,61.25,59.625,60.7187,4610700,45.279498
2000-07-14,59.8125,60.9375,59.375,59.50,4184100,44.370682
2000-07-13,60.50,61.1875,59.125,59.125,4302600,44.091035
2000-07-12,62.0625,62.1875,60.625,61.00,5833600,45.489271
2000-07-11,61.0625,62.75,60.8125,62.00,5897600,46.234997
2000-07-10,61.375,62.9375,60.6875,61.25,8233700,45.675702
2000-07-07,57.9375,62.0625,57.3125,61.5625,10513400,45.908742
2000-07-06,57.9375,58.4375,56.8125,57.50,5757800,42.879231
2000-07-05,57.3125,57.9375,56.5625,57.00,5139800,42.506368
2000-07-03,57.25,57.375,56.125,56.875,2577300,42.413152
2000-06-30,54.125,57.734299,54.0625,57.625,7622200,42.972446
2000-06-29,55.3125,55.375,53.5625,54.125,5290900,40.362406
2000-06-28,56.50,57.1875,55.6875,55.984299,4824100,41.748933
2000-06-27,54.125,57.4375,53.75,56.8125,6554400,42.366544
2000-06-26,54.1875,54.6875,53.75,53.75,3924700,40.082759
2000-06-23,53.6875,54.4375,52.875,53.75,6269600,40.082759
2000-06-22,53.0625,53.4375,51.875,52.50,5667800,39.150602
2000-06-21,54.5625,54.5625,53.375,53.9375,4287300,40.222583
2000-06-20,54.25,54.6875,53.125,54.50,6063800,40.642053
2000-06-19,53.6875,55.00,52.8125,54.375,6001700,40.548838
2000-06-16,54.75,56.125,53.25,53.875,9569700,40.175975
2000-06-15,55.0625,56.1875,54.8125,55.50,5682300,41.387779
2000-06-14,54.9375,55.6875,54.125,55.125,6686800,41.108132
2000-06-13,52.0625,55.00,51.625,55.00,7711700,40.970171
2000-06-12,54.00,54.375,51.8125,52.75,8089200,39.294119
2000-06-09,57.4375,58.00,53.9375,54.00,7283100,40.225259
2000-06-08,57.8125,58.00,56.3125,56.875,3993100,42.366882
2000-06-07,57.75,59.0625,57.75,57.875,3424600,43.111794
2000-06-06,58.8125,58.8125,57.75,58.25,4440100,43.391136
2000-06-05,59.3125,59.75,58.75,59.3125,4360400,44.182605
2000-06-02,58.875,60.0625,58.0625,59.0625,7088100,43.996377
2000-06-01,57.125,57.6875,56.25,57.00,4786400,42.459996
2000-05-31,54.875,60.00,54.50,57.625,7658900,42.925566
2000-05-30,53.0625,54.125,52.6875,53.375,4352700,39.759689
2000-05-26,54.25,55.00,53.125,54.00,3996400,40.225259
2000-05-25,55.8125,56.6875,54.0625,55.00,4619200,40.970171
2000-05-24,55.25,57.00,52.75,56.875,10341500,42.366882
2000-05-23,57.5625,58.375,56.8125,57.1875,4291000,42.599667
2000-05-22,57.6875,57.6875,56.1875,57.375,4628100,42.739338
2000-05-19,56.125,58.75,56.125,57.0625,6357700,42.506553
2000-05-18,56.25,57.9375,56.1875,57.9375,4887900,43.158351
2000-05-17,56.6875,56.75,55.4375,56.375,4592300,41.994426
2000-05-16,57.4375,59.0625,57.1875,58.00,6378700,43.204908
2000-05-15,56.25,57.3125,55.50,57.00,4272300,42.459996
2000-05-12,55.75,57.1875,55.3125,56.8125,4371000,42.320325
2000-05-11,56.9375,57.0625,55.00,56.00,6105300,41.715084
2000-05-10,53.4375,57.125,53.00,56.6875,11245300,42.227211
2000-05-09,54.375,54.875,52.50,53.00,8888200,39.480347
2000-05-08,51.25,52.375,49.50,52.375,7626100,39.014777
2000-05-05,50.1875,52.875,50.1875,51.3125,8640000,38.223308
2000-05-04,53.9375,53.9375,50.4375,51.00,10766900,37.990523
2000-05-03,54.25,54.50,52.75,53.4375,10457300,39.806246
2000-05-02,57.3125,57.8125,56.6875,57.625,4821500,42.925566
2000-05-01,56.375,58.8125,56.1875,57.9375,5109000,43.158351
2000-04-28,56.8125,57.3125,55.375,55.375,5012600,41.249513
2000-04-27,57.625,58.4375,56.50,57.6875,5515000,42.972123
2000-04-26,60.1875,60.75,58.3125,58.75,5202000,43.763592
2000-04-25,58.0625,60.75,57.5625,59.6875,6038300,44.461947
2000-04-24,57.9375,60.625,57.50,58.875,5633700,43.856706
2000-04-20,55.125,57.9375,55.125,57.6875,6090400,42.972123
2000-04-19,54.125,55.50,53.75,54.9375,6255300,40.923614
2000-04-18,54.00,56.3125,53.125,53.875,7661200,40.132145
2000-04-17,55.125,56.375,51.75,54.00,9660500,40.225259
2000-04-14,58.00,58.9375,55.00,55.00,9372700,40.970171
2000-04-13,62.3125,62.3125,59.50,60.0625,7884500,44.741289
2000-04-12,63.4375,64.9375,62.0625,62.4375,7243300,46.510456
2000-04-11,62.875,63.50,61.50,63.375,5355400,47.208811
2000-04-10,61.50,63.6875,61.00,63.5625,5521000,47.348482
2000-04-07,61.25,62.00,60.625,61.50,4013100,45.812101
2000-04-06,59.125,61.25,58.75,61.125,7254200,45.532759
2000-04-05,59.3125,60.125,57.5625,58.25,7066000,43.391136
2000-04-04,61.6875,63.3125,57.50,60.00,13675800,44.694732
2000-04-03,56.625,62.00,56.625,61.1875,11935700,45.579316
2000-03-31,59.25,59.3125,55.50,56.50,9054000,42.08754
2000-03-30,59.75,60.75,58.875,59.00,11570800,43.94982
2000-03-29,55.50,59.375,55.4375,58.75,13596700,43.763592
2000-03-28,54.5625,55.9375,54.50,54.50,5797600,40.597715
2000-03-27,54.6875,55.50,54.25,55.4375,5774900,41.29607
2000-03-24,54.4375,55.6875,54.00,55.50,7952900,41.342627
2000-03-23,54.375,54.5625,53.50,54.00,7025500,40.225259
2000-03-22,56.50,56.50,54.00,55.375,9963500,41.249513
2000-03-21,55.4375,56.625,54.50,56.625,7854600,42.180654
2000-03-20,55.8125,55.8125,53.375,55.125,6769100,41.063285
2000-03-17,54.5625,56.25,54.125,55.75,12637300,41.528856
2000-03-16,52.3125,55.5625,51.625,54.625,19716000,40.690829
2000-03-15,47.4375,51.9375,46.5625,51.50,14670000,38.362979
2000-03-14,47.00,48.8125,46.3125,47.75,9985000,35.524865
2000-03-13,46.25,47.9375,45.875,47.6875,7727900,35.478367
2000-03-10,49.75,49.75,47.4375,47.9375,7005500,35.664361
2000-03-09,49.00,49.4375,46.875,48.9375,7944900,36.408337
2000-03-08,47.3125,49.3125,45.625,48.3125,10018700,35.943352
2000-03-07,49.625,49.625,47.125,47.5625,9724700,35.38537
2000-03-06,52.625,52.6875,48.625,50.50,10493600,37.5708
2000-03-03,52.125,53.3125,51.50,52.625,10790800,39.151749
2000-03-02,52.75,52.875,50.4375,50.5625,15542700,37.617298
2000-03-01,49.875,50.00,47.50,49.00,10165800,36.454836
2000-02-29,47.9375,49.75,47.9375,48.75,17197200,36.268841
2000-02-28,44.5625,46.9375,44.5625,46.1875,17836100,34.362402
2000-02-25,44.3125,45.3125,43.625,44.50,16908500,33.106942
2000-02-24,47.00,47.875,43.4375,47.875,19431900,35.617862
2000-02-23,48.4375,48.50,46.75,47.00,12874400,34.966883
2000-02-22,49.25,49.3125,46.75,48.125,12342600,35.803856
2000-02-18,48.50,49.50,47.25,47.75,19394400,35.524865
2000-02-17,52.9375,53.50,48.00,48.375,24766700,35.98985
2000-02-16,56.50,56.50,52.6875,52.75,13585800,39.244746
2000-02-15,56.9375,58.00,55.00,58.00,9712100,43.150622
2000-02-14,56.6875,58.875,56.50,58.875,5803600,43.801601
2000-02-11,57.4375,57.50,55.625,56.0625,4816700,41.709168
2000-02-10,57.625,58.375,56.8125,57.00,4591600,42.406645
2000-02-09,60.00,60.125,57.3125,57.8125,8216600,43.011126
2000-02-08,57.3125,59.6875,56.875,59.50,8576100,44.266586
2000-02-07,56.625,56.625,54.625,55.75,6043700,41.476675
2000-02-04,57.9375,57.9375,56.00,56.3125,6549700,41.895162
2000-02-03,58.375,58.8125,56.25,58.375,6999000,43.429613
2000-02-02,58.875,60.125,57.9375,58.375,6034600,43.429613
2000-02-01,55.00,59.50,54.9375,58.6875,8359000,43.662105
2000-01-31,54.5625,55.50,54.125,54.75,7972700,40.732699
2000-01-28,58.875,58.875,53.50,55.125,14029400,41.01169
2000-01-27,61.3125,61.50,57.875,59.125,7323300,43.987595
2000-01-26,61.125,62.0625,60.00,61.9375,4538400,46.080028
2000-01-25,59.8125,61.1875,59.50,61.125,6403800,45.475547
2000-01-24,63.4375,63.4375,57.50,59.375,7799900,44.173589
2000-01-21,63.9375,63.9375,62.0625,62.4375,6952500,46.452016
2000-01-20,64.4375,64.50,62.50,63.375,5738100,47.149494
2000-01-19,65.25,65.8125,64.00,64.0625,4819900,47.660978
2000-01-18,63.1875,66.4375,63.0625,65.5625,6442200,48.776942
2000-01-14,64.00,65.9375,64.00,64.50,6312200,47.986467
2000-01-13,66.00,66.125,65.00,65.125,5021000,48.451452
2000-01-12,66.1875,66.75,65.0625,65.0625,4085000,48.404954
2000-01-11,67.0625,67.75,65.625,66.25,4943300,49.288426
2000-01-10,67.25,67.50,65.625,67.25,6714300,50.032402
2000-01-07,64.50,68.9375,64.50,68.50,7976900,50.962372
2000-01-06,63.00,64.5625,62.6875,63.6875,6544500,47.381986
2000-01-05,63.875,64.375,62.1875,63.00,7018700,46.870503
2000-01-04,65.50,65.8125,64.1875,64.3125,6745100,47.846972
2000-01-03,68.375,69.00,65.50,66.8125,8369900,49.706912
1999-12-31,68.3125,70.25,68.25,69.125,2112700,51.427357
1999-12-30,68.125,69.5625,67.8125,67.8125,2643900,50.450888
1999-12-29,69.5625,70.00,67.375,67.375,2517600,50.125399
1999-12-28,68.625,70.1875,68.5625,69.3125,3532000,51.566853
1999-12-27,67.3125,70.125,67.3125,69.4375,5231600,51.65985
1999-12-23,67.00,68.00,66.75,67.375,3847300,50.125399
1999-12-22,64.625,66.0625,64.625,65.6875,3752700,48.869939
1999-12-21,64.00,65.6875,63.5625,64.8125,4629900,48.21896
1999-12-20,66.125,66.4375,63.1875,64.281197,6330600,47.823683
1999-12-17,68.8125,68.875,64.75,65.00,14669900,48.358455
1999-12-16,66.75,68.75,66.00,68.625,8487000,51.055369
1999-12-15,67.00,67.0625,65.125,66.015602,7842800,49.114039
1999-12-14,67.00,68.50,66.9375,67.0625,7505100,49.855708
1999-12-13,65.50,69.1875,64.75,68.00,9391000,50.552666
1999-12-10,62.50,64.50,61.875,63.25,12595800,47.021413
1999-12-09,58.50,62.25,57.625,62.25,8808100,46.277992
1999-12-08,58.8125,59.3125,58.00,58.6562,4600000,43.606284
1999-12-07,59.8125,60.125,58.00,58.00,6361700,43.11845
1999-12-06,58.5625,60.50,58.25,59.578098,5449000,44.291642
1999-12-03,58.1875,59.25,57.9375,59.0625,6172000,43.908336
1999-12-02,59.00,59.1875,57.00,57.671799,5285000,42.874458
1999-12-01,57.6875,59.00,57.6875,58.578098,5319400,43.548221
1999-11-30,58.75,58.9375,57.25,57.625,4376100,42.839667
1999-11-29,58.50,59.375,58.00,59.00,4793000,43.861872
1999-11-26,58.00,58.6875,57.625,58.203098,2297100,43.269438
1999-11-24,56.50,58.50,56.4375,57.9375,5668800,43.071986
1999-11-23,56.625,56.625,55.50,55.9375,6477000,41.585143
1999-11-22,57.1875,57.25,56.125,56.75,6322600,42.189173
1999-11-19,58.375,59.0625,57.75,58.125,4987500,43.211378
1999-11-18,59.1875,59.75,58.50,59.375,5723900,44.140655
1999-11-17,59.375,60.625,58.6875,58.875,6465700,43.768944
1999-11-16,59.50,60.375,58.75,59.875,6215300,44.512366
1999-11-15,59.00,60.6875,58.25,58.9375,9037800,43.815408
1999-11-12,57.9375,58.875,56.875,58.875,5607700,43.768944
1999-11-11,56.875,57.50,56.6875,57.4375,6290200,42.700276
1999-11-10,58.00,58.50,57.125,57.125,6991200,42.467956
1999-11-09,58.00,58.1875,56.5625,58.00,10026300,43.11845
1999-11-08,58.50,59.1875,58.3125,58.50,4881400,43.490161
1999-11-05,57.50,58.75,57.25,58.0625,6239900,43.164914
1999-11-04,56.50,57.00,55.875,56.00,4150600,41.631607
1999-11-03,55.75,56.4375,55.00,55.75,4081300,41.445752
1999-11-02,56.3125,57.125,55.625,56.125,4579600,41.724535
1999-11-01,57.25,57.875,56.125,56.25,4778500,41.817462
1999-10-29,56.9375,58.50,56.3125,56.3125,9685800,41.863926
1999-10-28,54.125,55.9375,54.0625,55.75,9089700,41.445752
1999-10-27,52.75,53.3125,51.50,53.00,7300700,39.401342
1999-10-26,54.50,54.5625,51.50,53.25,13657200,39.587198
1999-10-25,55.9375,56.9375,55.50,55.9375,6902500,41.585143
1999-10-22,55.4375,58.00,55.0625,57.0625,7534000,42.421492
1999-10-21,54.1875,54.9375,53.3125,54.875,5073700,40.795258
1999-10-20,53.375,55.00,52.75,54.8125,5603100,40.748794
1999-10-19,52.625,53.375,52.25,52.6875,5559200,39.169023
1999-10-18,51.125,52.50,49.50,52.125,7225700,38.750849
1999-10-15,51.875,52.25,50.75,50.8125,6979200,37.775108
1999-10-14,51.25,52.9375,50.75,52.375,5331800,38.936704
1999-10-13,53.5625,53.8125,51.25,51.3125,6068700,38.146819
1999-10-12,53.9375,54.4375,53.1875,53.875,4934900,40.051836
1999-10-11,54.8125,55.00,53.9375,53.9375,6749900,40.0983
1999-10-08,51.875,55.375,51.6875,55.375,9488400,41.166969
1999-10-07,51.375,51.50,50.6875,51.3125,4454400,38.146819
1999-10-06,50.5625,51.6875,49.875,51.375,7048300,38.193282
1999-10-05,50.3125,52.625,49.9375,51.25,9211600,38.100355
1999-10-04,48.9375,50.4375,48.8125,50.3125,7629100,37.403397
1999-10-01,48.00,48.375,47.5625,48.3125,6477200,35.916554
1999-09-30,46.125,48.00,46.0625,47.5625,6599200,35.358988
1999-09-29,46.75,46.75,45.5625,45.625,4894100,33.918608
1999-09-28,46.25,47.125,45.6875,46.9375,5213700,34.894349
1999-09-27,47.00,47.4375,46.3125,46.3125,5204700,34.429711
1999-09-24,46.5625,47.50,46.1875,46.50,6339600,34.569102
1999-09-23,47.625,47.8125,46.625,46.6875,5696900,34.708494
1999-09-22,45.8125,47.6875,45.5625,47.25,5396500,35.126668
1999-09-21,45.00,46.0625,44.75,45.75,5844200,34.011536
1999-09-20,46.5625,47.25,46.1875,46.1875,3053600,34.336783
1999-09-17,45.9375,46.8125,45.5625,46.625,6945500,34.66203
1999-09-16,45.5625,45.8125,44.5625,45.3125,5519900,33.686289
1999-09-15,47.625,48.00,45.375,45.50,6166500,33.825681
1999-09-14,47.5625,47.875,46.875,46.9375,3768100,34.857176
1999-09-13,47.125,48.00,46.9375,48.00,3440500,35.64622
1999-09-10,47.875,47.9375,46.875,47.6875,4673000,35.414148
1999-09-09,46.75,47.5625,46.25,47.50,4500100,35.274905
1999-09-08,46.00,47.125,45.75,47.125,4001500,34.996419
1999-09-07,47.4375,47.4375,46.25,46.25,3287800,34.346618
1999-09-03,46.8125,47.5625,46.125,47.5625,5704000,35.32132
1999-09-02,44.00,45.8125,43.5625,45.6875,5377700,33.928889
1999-09-01,44.3125,45.25,43.9375,45.00,4822400,33.418331
1999-08-31,45.9375,45.9375,43.625,44.3125,5459300,32.907774
1999-08-30,46.875,47.00,45.4375,45.50,3630500,33.789646
1999-08-27,47.125,47.3125,46.125,46.6875,3843000,34.671519
1999-08-26,48.00,48.125,46.75,47.3125,4295900,35.135662
1999-08-25,46.9375,48.4375,45.875,48.375,7112100,35.924706
1999-08-24,47.625,48.0625,47.00,47.5625,4652100,35.32132
1999-08-23,46.875,47.8125,46.8125,47.75,5448000,35.460563
1999-08-20,46.4375,46.9375,46.0625,46.6875,4042500,34.671519
1999-08-19,46.00,46.0625,44.875,46.0625,4451300,34.207375
1999-08-18,47.00,47.375,46.3125,46.375,5237800,34.439447
1999-08-17,46.5625,47.00,45.50,46.9375,6341800,34.857176
1999-08-16,44.75,46.00,44.0625,46.00,5220200,34.160961
1999-08-13,44.9375,45.1875,44.5625,44.8125,6839400,33.279088
1999-08-12,44.00,44.8125,43.9375,44.375,6177400,32.954188
1999-08-11,43.625,44.4375,43.3125,43.375,8029000,32.211558
1999-08-10,40.75,43.4375,39.875,42.875,11706800,31.840244
1999-08-09,41.0625,41.0625,40.0625,40.1875,4658400,29.844427
1999-08-06,40.875,42.0625,40.1875,41.25,5416000,30.63347
1999-08-05,41.0625,41.375,38.875,41.375,8057500,30.726299
1999-08-04,41.3125,41.4375,40.8125,40.9375,6211200,30.401399
1999-08-03,42.5625,42.875,41.3125,41.9375,5526100,31.144028
1999-08-02,42.3125,43.50,42.00,42.375,5580600,31.468929
1999-07-30,44.25,44.375,42.25,42.25,6541500,31.3761
1999-07-29,44.00,44.4375,43.00,44.00,6107600,32.675702
1999-07-28,45.00,45.3125,44.625,45.0625,3725400,33.464746
1999-07-27,45.8125,46.00,45.00,45.5625,4335700,33.836061
1999-07-26,44.625,46.1875,44.50,45.625,3914900,33.882475
1999-07-23,45.3125,45.9375,44.5625,44.9375,3684500,33.371917
1999-07-22,45.75,46.1875,44.375,45.1875,5415300,33.557574
1999-07-21,46.6875,47.00,45.4375,45.4375,5942400,33.743232
1999-07-20,48.125,48.25,46.50,46.875,5639900,34.810762
1999-07-19,48.00,48.5625,47.625,48.0625,4332300,35.692635
1999-07-16,47.4375,48.00,47.25,48.00,4077500,35.64622
1999-07-15,48.0625,48.3125,47.375,47.50,3970000,35.274905
1999-07-14,47.75,48.00,47.50,47.625,3043100,35.367734
1999-07-13,47.25,47.75,46.6875,47.5625,4339100,35.32132
1999-07-12,48.375,48.375,47.0625,47.4375,3241100,35.228491
1999-07-09,47.4375,48.00,47.3125,47.9375,4067200,35.599806
1999-07-08,47.00,48.4375,46.25,47.00,7890100,34.903591
1999-07-07,50.00,50.00,47.9375,48.00,6262800,35.64622
1999-07-06,48.875,51.00,48.875,49.1875,7154700,36.528093
1999-07-02,48.125,49.0625,47.9375,48.75,4939000,36.203192
1999-07-01,47.9375,48.3125,46.9375,47.75,6724400,35.460563
1999-06-30,46.5625,48.50,45.375,48.25,8998000,35.831878
1999-06-29,45.9375,46.875,45.50,46.8125,5876200,34.764348
1999-06-28,44.00,45.75,43.8125,45.5625,5609200,33.836061
1999-06-25,43.75,44.25,43.375,43.4375,3669300,32.257973
1999-06-24,43.625,43.875,42.6875,43.3125,6128200,32.165144
1999-06-23,45.00,45.0625,43.6875,44.375,4479300,32.954188
1999-06-22,45.1875,45.50,44.375,44.9375,5067400,33.371917
1999-06-21,43.50,45.50,43.375,45.0625,6274000,33.464746
1999-06-18,43.1875,43.75,42.8125,43.75,10103500,32.490044
1999-06-17,43.6875,44.50,43.5625,43.625,5129600,32.397216
1999-06-16,43.5625,44.5625,43.50,44.375,5609200,32.954188
1999-06-15,43.50,43.75,42.375,42.50,6535800,31.524626
1999-06-14,43.00,43.3125,42.8125,43.125,4037400,31.988223
1999-06-11,43.125,43.75,42.375,42.6875,4866500,31.663705
1999-06-10,43.75,43.875,42.625,43.125,5244400,31.988223
1999-06-09,44.375,44.6875,43.9375,44.125,4532900,32.729979
1999-06-08,45.25,45.50,44.3125,44.375,4567400,32.915418
1999-06-07,45.375,45.75,44.875,45.75,4622700,33.935333
1999-06-04,46.00,46.50,45.5625,46.00,5544400,34.120772
1999-06-03,45.00,46.1875,44.6875,45.50,10474700,33.749894
1999-06-02,43.375,44.375,42.6875,44.375,6623900,32.915418
1999-06-01,42.6875,43.4375,42.1875,43.4375,6995500,32.220022
1999-05-28,41.5625,42.875,41.3125,42.625,5692700,31.617345
1999-05-27,42.125,42.50,41.00,41.125,7760600,30.504712
1999-05-26,42.1875,43.00,41.50,42.9375,8274100,31.849144
1999-05-25,42.9375,43.1875,41.6875,42.375,7335900,31.431906
1999-05-24,44.00,44.125,42.125,42.8125,6423600,31.756425
1999-05-21,44.625,44.875,42.625,43.25,8182700,32.080943
1999-05-20,45.625,46.25,44.4375,44.50,7103400,33.008138
1999-05-19,46.9375,46.9375,45.375,45.6875,4727400,33.888973
1999-05-18,45.875,47.4375,45.25,46.4375,6481700,34.44529
1999-05-17,45.375,46.125,44.9375,45.6875,6274800,33.888973
1999-05-14,46.25,46.50,45.625,46.375,6082100,34.39893
1999-05-13,47.375,47.625,46.5625,47.00,6356300,34.862527
1999-05-12,47.375,47.375,45.50,46.5625,7898900,34.538009
1999-05-11,47.50,47.50,45.875,47.3125,12828200,35.094326
1999-05-10,44.8125,46.50,44.5625,45.1875,8751900,33.518095
1999-05-07,44.625,45.00,43.00,44.75,11371100,33.193577
1999-05-06,44.00,44.1875,41.625,42.875,14788900,31.802784
1999-05-05,44.4375,45.0625,43.0625,45.0625,8254200,33.425375
1999-05-04,46.8125,46.875,43.3125,44.00,11059200,32.63726
1999-05-03,45.875,46.25,44.5625,46.125,7444800,34.213491
1999-04-30,47.00,47.4375,43.1875,46.00,13373500,34.120772
1999-04-29,49.00,49.00,45.5625,46.875,9244000,34.769808
1999-04-28,50.375,51.25,49.0625,49.1875,5927200,36.485118
1999-04-27,51.125,51.375,50.00,50.75,6217400,37.644112
1999-04-26,51.875,51.9375,50.75,50.9375,7521500,37.783191
1999-04-23,50.9375,51.6875,50.50,50.9375,7337700,37.783191
1999-04-22,50.00,50.25,48.4375,50.0625,10244300,37.134155
1999-04-21,48.00,49.125,47.00,48.75,10446900,36.1606
1999-04-20,46.00,48.00,45.25,47.75,13041300,35.418844
1999-04-19,96.00,98.125,88.00,89.75,17572000,33.286296
1999-04-16,96.50,96.5625,92.75,95.00,12714600,35.233405
1999-04-15,98.375,98.875,93.00,97.75,14487600,36.25332
1999-04-14,104.5625,105.125,98.00,98.625,10536600,36.577838
1999-04-13,104.5625,106.8125,103.25,104.5625,9239400,38.779926
1999-04-12,102.25,105.4375,101.625,104.875,9234800,38.895825
1999-04-09,100.50,103.4375,99.625,102.75,8858000,38.10771
1999-04-08,98.50,102.4375,97.50,102.25,9953600,37.922271
1999-04-07,97.00,97.8125,96.1875,97.50,7625600,36.1606
1999-04-06,95.625,97.0625,95.375,95.6875,5777800,35.488384
1999-04-05,94.50,96.6875,93.8125,95.375,6905200,35.372485
1999-04-01,93.4375,94.00,92.50,93.25,4941800,34.584369
1999-03-31,96.375,96.625,92.1875,92.1875,7646200,34.190311
1999-03-30,94.00,95.50,93.75,95.00,6276200,35.233405
1999-03-29,92.3125,95.6875,92.3125,95.00,5912200,35.233405
1999-03-26,91.6875,93.3125,90.125,91.5625,6435200,33.958512
1999-03-25,89.8125,92.25,89.8125,91.875,7758800,34.074412
1999-03-24,90.375,90.9375,88.1875,89.00,8070400,33.008138
1999-03-23,93.0625,93.1875,89.0625,90.50,10157000,33.564455
1999-03-22,94.875,95.00,92.50,93.3125,6070600,34.607549
1999-03-19,98.25,98.25,94.75,94.75,12035400,35.140686
1999-03-18,96.0625,98.375,95.75,98.1875,5842000,36.415579
1999-03-17,96.4375,96.9375,94.6875,96.375,6432800,35.743363
1999-03-16,97.0625,97.1875,95.5625,96.00,6446000,35.567196
1999-03-15,97.00,97.3125,95.25,96.75,7309000,35.845065
1999-03-12,95.9375,96.9375,95.4375,96.375,7326600,35.70613
1999-03-11,94.50,96.375,93.75,95.3125,8498400,35.312483
1999-03-10,94.1875,94.25,93.0625,93.5625,6242600,34.664123
1999-03-09,93.4375,94.25,92.5625,94.00,7327800,34.826213
1999-03-08,94.125,94.125,91.8125,93.4375,8813800,34.617811
1999-03-05,93.00,94.25,91.375,93.25,16618400,34.548344
1999-03-04,87.9375,89.625,87.875,89.375,7094600,33.112689
1999-03-03,86.00,88.3125,86.00,87.375,6846000,32.371706
1999-03-02,86.75,87.375,85.125,85.4375,6628200,31.653878
1999-03-01,87.125,87.1875,83.625,85.875,6811400,31.815968
1999-02-26,86.25,86.50,83.6875,86.125,6884400,31.908591
1999-02-25,85.125,85.8125,83.5625,85.00,7150200,31.491788
1999-02-24,88.1875,89.50,84.1875,84.5625,7942600,31.329698
1999-02-23,88.1875,88.5625,86.75,87.50,6597200,32.418017
1999-02-22,85.4375,88.4375,85.375,88.25,8827200,32.695886
1999-02-19,85.50,85.50,84.5625,84.75,5647000,31.399165
1999-02-18,85.50,86.0625,84.1875,85.375,7021600,31.630722
1999-02-17,86.6875,88.6875,85.0625,85.0625,9659600,31.514944
1999-02-16,85.50,88.00,85.50,87.5625,11188000,32.441173
1999-02-12,85.8125,86.0625,83.00,84.375,5139000,31.260231
1999-02-11,81.00,85.9375,80.625,85.8125,5174000,31.792812
1999-02-10,82.00,82.0625,80.50,80.9375,5221400,29.986666
1999-02-09,85.125,85.125,81.8125,82.125,5561200,30.426625
1999-02-08,84.25,86.375,83.25,85.4375,4608200,31.653878
1999-02-05,85.375,85.75,82.75,84.25,5272800,31.213919
1999-02-04,86.3125,87.3125,83.75,83.75,7244200,31.028673
1999-02-03,83.8125,86.25,83.50,85.75,7312800,31.769657
1999-02-02,83.125,83.9375,80.75,83.625,7929400,30.982362
1999-02-01,85.75,85.75,84.3125,84.50,5731000,31.306542
1999-01-29,86.00,86.4375,85.00,86.00,5802400,31.86228
1999-01-28,85.25,85.4375,84.125,85.125,5726800,31.538099
1999-01-27,84.1875,85.8125,84.00,85.1875,9615200,31.561255
1999-01-26,82.9375,84.50,82.1875,83.5625,6757000,30.959206
1999-01-25,81.8125,82.6875,79.875,82.00,6054000,30.380313
1999-01-22,79.0625,82.25,78.50,82.00,5317800,30.380313
1999-01-21,80.125,81.375,78.875,79.0625,5611600,29.291994
1999-01-20,80.0625,82.50,78.5625,80.25,6802600,29.731953
1999-01-19,80.25,80.9375,78.25,80.0625,5821200,29.662486
1999-01-15,79.8125,80.75,78.75,80.125,6961400,29.685641
1999-01-14,79.75,80.9375,77.875,79.75,7785400,29.546707
1999-01-13,78.00,81.75,77.375,80.625,7274000,29.870887
1999-01-12,80.375,80.75,78.5625,80.375,8229200,29.778264
1999-01-11,83.50,83.8125,80.00,81.625,6481400,30.241379
1999-01-08,84.00,84.4375,82.50,83.50,7174000,30.936051
1999-01-07,83.625,85.0625,83.25,84.125,9254600,31.167608
1999-01-06,82.125,83.125,81.125,82.625,7705200,30.61187
1999-01-05,81.25,81.875,80.50,81.25,5749000,30.102444
1999-01-04,81.625,82.25,79.5625,80.625,7332600,29.870887
1998-12-31,80.1875,81.50,79.5625,81.4375,5282200,30.171912
1998-12-30,82.00,82.00,80.125,80.75,4684400,29.917199
1998-12-29,80.1875,82.75,79.00,81.9375,5532600,30.357157
1998-12-28,81.00,81.1875,79.0625,79.875,4065400,29.593018
1998-12-24,81.50,81.50,80.5625,81.125,1744600,30.056133
1998-12-23,78.875,81.625,78.0625,81.4375,5717200,30.171912
1998-12-22,78.9375,79.1875,78.00,78.3125,4974000,29.014125
1998-12-21,77.625,79.9375,77.5625,78.625,6950800,29.129904
1998-12-18,76.0625,77.75,75.625,77.75,10625000,28.805724
1998-12-17,75.5625,76.375,74.875,76.125,4339000,28.203675
1998-12-16,76.875,77.00,75.0625,75.6875,5115600,28.041585
1998-12-15,75.25,76.875,74.50,76.8125,6712000,28.458388
1998-12-14,75.5625,75.875,74.1875,74.8125,5255800,27.717405
1998-12-11,76.0625,76.4375,75.0625,76.3125,4994400,28.273142
1998-12-10,77.1875,77.1875,75.375,75.75,5558000,28.064741
1998-12-09,76.8125,77.4375,76.0625,76.75,5423000,28.435232
1998-12-08,74.75,76.9375,74.50,76.00,6397800,28.128465
1998-12-07,73.75,76.00,73.25,74.625,5101200,27.619561
1998-12-04,72.6875,74.125,71.625,73.1875,7022200,27.087526
1998-12-03,73.9375,75.1875,71.4375,71.50,5410600,26.462963
1998-12-02,74.5625,75.1875,73.50,74.0625,3768000,27.411374
1998-12-01,74.25,75.4375,73.0625,74.875,5921600,27.712089
1998-11-30,76.75,77.25,75.125,75.3125,6714000,27.874013
1998-11-27,76.00,76.5625,75.625,76.5625,2879000,28.336652
1998-11-25,75.00,76.00,74.25,75.75,4979000,28.035937
1998-11-24,74.9375,75.00,74.25,74.75,4819400,27.665825
1998-11-23,73.9375,74.9375,73.1875,74.9375,5700800,27.735221
1998-11-20,73.8125,73.8125,72.8125,73.75,6256000,27.295714
1998-11-19,74.50,74.50,72.625,73.00,7151600,27.01813
1998-11-18,72.875,73.375,72.25,73.375,6320400,27.156922
1998-11-17,71.0625,72.3125,70.25,71.625,6713600,26.509227
1998-11-16,71.875,71.875,70.00,71.0625,6308000,26.30104
1998-11-13,69.375,70.0625,68.8125,69.6875,4927000,25.792137
1998-11-12,70.00,70.4375,67.75,68.75,5441200,25.445157
1998-11-11,70.50,70.6875,69.5625,69.75,5648000,25.815268
1998-11-10,70.75,71.125,68.8125,70.1875,9373400,25.977192
1998-11-09,71.4375,72.4375,70.0625,70.5625,7620400,26.115984
1998-11-06,70.1875,71.5625,69.50,71.4375,9295400,26.439831
1998-11-05,68.3125,70.25,67.0625,70.25,8379000,26.000324
1998-11-04,67.00,68.625,67.00,68.0625,8176600,25.190706
1998-11-03,68.875,68.875,66.8125,66.875,7066400,24.751198
1998-11-02,69.3125,69.5625,68.0625,68.8125,6830800,25.468289
1998-10-30,68.00,69.4375,67.4375,69.0625,9461600,25.560817
1998-10-29,66.25,67.625,65.3125,67.4375,5707200,24.959386
1998-10-28,63.125,65.9375,62.75,64.8125,5878600,23.987844
1998-10-27,66.00,66.3125,63.00,63.25,7770000,23.409545
1998-10-26,67.1875,67.625,65.375,65.375,5800600,24.196031
1998-10-23,66.8125,68.00,65.875,68.00,5980200,25.167574
1998-10-22,65.125,67.25,64.5625,66.8125,5954400,24.728066
1998-10-21,66.00,66.0625,64.5625,64.9375,8303000,24.034107
1998-10-20,69.00,69.4375,65.375,65.5625,11116200,24.265427
1998-10-19,68.00,68.9375,67.625,68.75,9865400,25.445157
1998-10-16,66.25,67.6875,65.6875,66.625,13891800,24.65867
1998-10-15,61.00,65.00,60.8125,64.625,9908400,23.918448
1998-10-14,59.625,62.25,59.625,61.125,8075000,22.623058
1998-10-13,61.1875,61.1875,59.50,59.9375,4978400,22.183551
1998-10-12,61.9375,61.9375,60.50,60.8125,8764200,22.507398
1998-10-09,58.00,59.625,55.75,59.125,7876600,21.882835
1998-10-08,56.5625,57.125,53.1875,56.8125,13739800,21.026953
1998-10-07,59.50,59.50,58.375,58.75,8343600,21.744043
1998-10-06,60.00,60.625,58.375,59.50,9640800,22.021627
1998-10-05,56.50,58.00,53.8125,57.25,9553200,21.188876
1998-10-02,53.3125,56.25,52.625,55.4375,10221800,20.518049
1998-10-01,54.00,55.00,52.4375,53.125,12650600,19.662167
1998-09-30,57.125,57.125,53.875,54.625,22507800,20.217334
1998-09-29,61.3125,61.625,57.625,58.125,10017600,21.512724
1998-09-28,63.00,63.4375,60.75,61.4375,5617000,22.738718
1998-09-25,62.0625,62.9375,61.4375,61.9375,6634600,22.923773
1998-09-24,64.5625,64.75,60.5625,62.8125,6930600,23.247621
1998-09-23,63.25,64.5625,61.875,64.50,8934000,23.872184
1998-09-22,61.5625,62.375,60.8125,62.375,6117600,23.085697
1998-09-21,59.75,62.00,59.4375,60.6875,7133000,22.461134
1998-09-18,61.75,62.00,60.125,60.5625,10028600,22.41487
1998-09-17,61.50,61.9375,60.50,60.875,6241000,22.53053
1998-09-16,63.00,63.4375,61.4375,62.9375,8883000,23.293885
1998-09-15,61.50,62.6875,61.00,62.50,6982200,23.103094
1998-09-14,63.375,63.375,61.0625,61.1875,6258600,22.617929
1998-09-11,57.9375,61.375,57.625,60.625,7391000,22.410001
1998-09-10,59.1875,60.375,58.00,58.4375,8875800,21.601393
1998-09-09,62.1875,62.9375,60.5625,61.0625,7485400,22.571723
1998-09-08,61.875,62.75,59.8125,62.75,9704000,23.195506
1998-09-04,60.375,60.75,56.5625,58.50,9151800,21.624496
1998-09-03,59.125,60.875,59.0625,60.125,17255800,22.225176
1998-09-02,62.75,63.00,59.875,59.9375,11483600,22.155867
1998-09-01,59.50,62.3125,55.50,61.75,15841200,22.825857
1998-08-31,64.375,65.125,57.50,59.00,14817000,21.80932
1998-08-28,68.00,68.3125,65.25,65.375,12811600,24.165836
1998-08-27,68.25,68.5625,65.50,67.875,10045800,25.08996
1998-08-26,68.125,69.8125,67.9375,69.0625,8020000,25.528919
1998-08-25,68.375,69.3125,67.6875,68.50,8986000,25.320991
1998-08-24,66.4375,67.3125,66.00,67.25,6336200,24.858929
1998-08-21,64.5625,65.625,63.00,65.1875,6727800,24.096527
1998-08-20,63.8125,65.00,63.3125,64.75,5526800,23.934805
1998-08-19,64.625,65.25,63.50,64.00,6893400,23.657568
1998-08-18,62.875,64.3125,62.3125,64.25,7221000,23.74998
1998-08-17,62.375,63.6875,61.1875,62.8125,5601600,23.218609
1998-08-14,65.25,65.625,61.3125,62.375,5743800,23.056888
1998-08-13,66.00,67.375,64.3125,64.3125,5806400,23.773083
1998-08-12,65.9375,66.00,64.875,66.00,9474600,24.396867
1998-08-11,61.125,64.125,61.125,64.00,9502400,23.657568
1998-08-10,61.625,63.9375,61.625,63.0625,5398600,23.311022
1998-08-07,64.00,64.4375,62.0625,62.875,7079000,23.241712
1998-08-06,60.375,64.25,60.25,64.00,7290200,23.657568
1998-08-05,58.375,61.00,57.25,61.00,10617800,22.548619
1998-08-04,61.8125,62.00,58.375,58.375,8289000,21.57829
1998-08-03,62.6875,62.875,61.50,61.625,4769400,22.77965
1998-07-31,64.00,64.375,62.50,63.125,7229800,23.334125
1998-07-30,61.625,64.4375,61.00,63.625,8288600,23.518949
1998-07-29,63.625,64.1875,60.75,60.875,7887800,22.502413
1998-07-28,63.00,64.00,62.00,63.4375,6525600,23.44964
1998-07-27,63.50,63.9375,62.5625,63.875,5834200,23.611362
1998-07-24,63.50,64.4375,62.3125,63.8125,7876400,23.588259
1998-07-23,66.50,67.0625,63.50,63.50,6322000,23.472743
1998-07-22,68.1875,68.8125,66.3125,67.0625,6510800,24.78962
1998-07-21,68.8125,68.875,67.1875,68.00,4978400,25.136166
1998-07-20,69.00,69.0625,68.125,68.8125,3769200,25.436506
1998-07-17,69.00,69.6875,68.5625,69.00,6733600,25.505815
1998-07-16,66.00,68.8125,65.6875,68.75,6544000,25.413403
1998-07-15,66.5625,67.00,65.8125,65.875,5028400,24.350661
1998-07-14,64.4375,66.625,64.25,66.375,5432400,24.535486
1998-07-13,64.50,64.50,63.625,64.0625,4956800,23.680671
1998-07-10,63.375,64.1875,63.00,64.1875,7711400,23.726877
1998-07-09,62.8125,63.50,62.125,63.125,5843000,23.334125
1998-07-08,61.50,62.8125,61.50,62.8125,5519800,23.218609
1998-07-07,61.4375,61.875,61.0625,61.125,4818800,22.594826
1998-07-06,60.625,61.3125,60.25,61.25,5991000,22.641032
1998-07-02,61.1875,61.1875,60.25,60.6875,3471400,22.433104
1998-07-01,61.5625,61.75,59.75,60.50,6572400,22.363795
1998-06-30,62.875,62.875,60.25,60.75,6349800,22.456207
1998-06-29,60.25,62.8125,60.00,62.0625,6961000,22.941372
1998-06-26,59.6875,60.875,59.625,59.6875,3625800,22.063455
1998-06-25,60.3125,60.875,59.3125,60.00,5488800,22.17897
1998-06-24,59.1875,60.3125,58.25,60.125,6731600,22.225176
1998-06-23,57.875,59.1875,57.625,59.1875,5921200,21.87863
1998-06-22,57.75,58.1875,57.25,57.3125,4076400,21.185537
1998-06-19,58.00,58.8125,57.625,57.875,8459200,21.393465
1998-06-18,58.0625,58.625,57.75,58.00,4422400,21.439671
1998-06-17,57.00,59.125,57.00,58.4375,6349000,21.601393
1998-06-16,57.4375,57.625,56.25,57.375,6382400,21.179808
1998-06-15,57.625,58.8125,56.5625,56.5625,6705600,20.879876
1998-06-12,58.3125,59.375,58.3125,58.8125,5171400,21.710456
1998-06-11,59.4375,59.625,57.8125,59.00,5602200,21.779671
1998-06-10,57.8125,59.75,57.5625,59.25,6007000,21.871958
1998-06-09,57.875,59.0625,57.50,58.0625,6158800,21.433596
1998-06-08,57.875,58.1875,57.4375,58.00,4291400,21.410524
1998-06-05,57.25,58.1875,56.75,57.8125,6764400,21.341309
1998-06-04,56.00,57.125,55.375,56.625,6250200,20.902947
1998-06-03,57.25,57.4375,55.5625,56.00,5088000,20.67223
1998-06-02,56.9375,57.4375,56.6875,56.9375,5931200,21.018306
1998-06-01,55.6875,56.50,55.4375,56.50,6474600,20.856804
1998-05-29,56.125,56.3125,55.0625,55.125,5788800,20.349227
1998-05-28,54.875,55.4375,54.25,55.4375,4059000,20.464585
1998-05-27,53.25,55.00,52.50,54.375,6019000,20.072367
1998-05-26,56.375,56.375,53.75,53.75,3815800,19.84165
1998-05-22,56.00,56.25,54.9375,55.50,2882000,20.487657
1998-05-21,55.00,56.25,55.00,55.75,5656600,20.579944
1998-05-20,54.625,54.875,54.1875,54.875,4345600,20.25694
1998-05-19,54.4375,54.6875,53.875,54.3125,3184800,20.049295
1998-05-18,54.1875,54.6875,53.75,54.375,4834800,20.072367
1998-05-15,54.25,54.75,53.875,54.0625,5904000,19.957008
1998-05-14,54.00,54.75,53.875,54.1875,4558400,20.003152
1998-05-13,52.875,54.1875,52.6875,54.125,8313400,19.98008
1998-05-12,52.00,52.875,51.9375,52.75,11826600,19.472503
1998-05-11,50.6875,51.25,50.5625,51.125,4431600,18.872639
1998-05-08,50.625,50.75,50.25,50.50,3565000,18.641922
1998-05-07,50.1875,50.75,49.75,50.625,5911400,18.688066
1998-05-06,50.50,50.875,49.75,49.9375,5002800,18.434277
1998-05-05,51.125,51.125,50.375,50.50,3603000,18.641922
1998-05-04,50.75,51.50,50.625,50.875,4111800,18.780352
1998-05-01,51.25,51.25,50.1875,50.625,4517200,18.688066
1998-04-30,49.75,50.875,49.5625,50.5625,6009600,18.664994
1998-04-29,49.25,49.625,48.1875,49.3125,6325200,18.20356
1998-04-28,50.00,50.1875,49.00,49.125,5217400,18.134345
1998-04-27,49.3125,50.25,49.0625,49.5625,5551200,18.295847
1998-04-24,51.3125,51.5625,49.8125,50.25,4978200,18.549635
1998-04-23,51.75,52.1875,51.0625,51.375,4446800,18.964926
1998-04-22,52.0625,52.50,52.00,52.3125,3217400,19.311001
1998-04-21,52.25,52.625,51.5625,52.3125,5963200,19.311001
1998-04-20,53.25,53.25,52.1875,52.25,3797800,19.287929
1998-04-17,52.8125,53.25,52.25,53.25,5752000,19.657076
1998-04-16,53.9375,53.9375,52.3125,52.5625,5468000,19.403288
1998-04-15,53.375,53.875,52.6875,53.875,6241200,19.887793
1998-04-14,51.50,53.6875,51.4375,53.25,8486400,19.657076
1998-04-13,50.6875,51.4375,50.625,51.1875,5077000,18.895711
1998-04-09,51.125,51.25,50.4375,50.8125,5912000,18.757281
1998-04-08,50.375,50.50,49.875,50.00,6582000,18.457349
1998-04-07,50.25,51.3125,49.9375,50.75,7889400,18.734209
1998-04-06,51.6875,51.6875,49.50,49.625,5277200,18.318919
1998-04-03,51.125,51.6875,51.00,51.50,5483600,19.011069
1998-04-02,51.75,51.75,50.75,50.8125,5831600,18.757281
1998-04-01,50.8125,51.50,50.625,51.50,5923400,19.011069
1998-03-31,50.6875,51.75,50.50,50.8125,6811200,18.757281
1998-03-30,49.875,50.4375,49.875,50.4375,3453800,18.61885
1998-03-27,50.00,50.125,49.125,49.9375,5845200,18.434277
1998-03-26,49.6875,50.25,49.50,49.75,4144400,18.365062
1998-03-25,50.50,50.6875,48.75,49.625,6829200,18.318919
1998-03-24,49.50,50.5625,49.50,50.50,4817000,18.641922
1998-03-23,49.3125,49.8125,49.3125,49.6875,6186000,18.34199
1998-03-20,50.4375,50.5625,49.5625,50.0625,9361200,18.48042
1998-03-19,50.6875,50.75,49.9375,50.375,4440200,18.595779
1998-03-18,51.6875,51.6875,50.3125,50.75,4917400,18.734209
1998-03-17,51.9375,52.00,51.0625,51.4375,4386000,18.959204
1998-03-16,51.5625,51.625,50.875,51.50,4457800,18.982241
1998-03-13,51.375,51.6875,50.875,51.375,6577400,18.936167
1998-03-12,51.1875,51.6875,51.0625,51.3125,4926200,18.91313
1998-03-11,51.3125,51.75,50.6875,50.9375,6608000,18.77491
1998-03-10,52.125,52.25,50.8125,51.00,7720400,18.797947
1998-03-09,50.3125,52.1875,50.3125,51.3125,7855800,18.91313
1998-03-06,50.0625,50.3125,49.8125,50.1875,7873800,18.49847
1998-03-05,48.0625,50.00,48.0625,48.875,11125600,18.014699
1998-03-04,48.6875,48.8125,48.375,48.4375,5384600,17.853442
1998-03-03,46.8125,48.4375,46.625,48.4375,6099800,17.853442
1998-03-02,46.6875,47.25,46.50,46.875,6415400,17.277525
1998-02-27,47.1875,47.1875,46.125,46.3125,5158200,17.070195
1998-02-26,47.5625,47.5625,46.4375,47.25,4847000,17.415745
1998-02-25,47.625,47.9375,47.4375,47.6875,5502800,17.577002
1998-02-24,46.875,47.3125,46.50,46.875,8319800,17.277525
1998-02-23,46.00,46.1875,45.4375,46.1875,6319800,17.024121
1998-02-20,45.3125,45.4375,44.3125,45.375,6095000,16.724644
1998-02-19,45.50,45.50,44.625,45.25,4384400,16.678571
1998-02-18,44.9375,45.625,44.625,45.50,4900600,16.770717
1998-02-17,44.50,45.00,44.50,44.75,4009600,16.494277
1998-02-13,44.00,44.375,43.50,44.1875,4593200,16.286947
1998-02-12,42.875,44.6875,42.625,44.6875,5780000,16.47124
1998-02-11,43.1875,43.1875,42.8125,42.9375,2669200,15.826213
1998-02-10,43.00,43.3125,42.875,43.125,5779600,15.895323
1998-02-09,43.1875,43.1875,42.375,42.50,4626000,15.664956
1998-02-06,43.0625,43.1875,42.6875,43.0625,4221600,15.872286
1998-02-05,43.50,43.875,42.375,42.8125,9032800,15.780139
1998-02-04,41.8125,43.375,41.6875,43.00,8184800,15.849249
1998-02-03,40.625,42.375,40.50,42.00,8837200,15.480662
1998-02-02,40.9375,41.0625,40.1875,40.8125,5903800,15.042965
1998-01-30,40.25,40.6875,39.75,39.8125,3924800,14.674378
1998-01-29,40.625,41.50,40.0625,40.1875,5019200,14.812598
1998-01-28,39.50,40.625,39.50,40.625,6058000,14.973855
1998-01-27,39.00,40.0625,38.875,39.3125,5850000,14.490084
1998-01-26,39.4375,39.6875,38.125,38.6875,4368600,14.259717
1998-01-23,40.125,40.1875,38.75,39.50,4918400,14.559194
1998-01-22,40.125,40.375,39.375,40.00,5741200,14.743488
1998-01-21,41.0625,41.3125,40.00,40.6875,6163400,14.996892
1998-01-20,39.5625,41.9375,39.5625,41.75,7682800,15.388515
1998-01-16,40.1875,40.4375,40.00,40.125,7396200,14.789561
1998-01-15,39.75,39.9375,39.1875,39.9375,4439200,14.720451
1998-01-14,39.6875,39.8125,39.125,39.6875,6507800,14.628304
1998-01-13,39.6875,39.75,38.5625,39.50,5518400,14.559194
1998-01-12,37.5625,39.75,37.5625,39.50,8704000,14.559194
1998-01-09,39.375,39.4375,38.0625,38.1875,6115400,14.075424
1998-01-08,40.00,40.1875,39.0625,39.3125,4866400,14.490084
1998-01-07,39.75,40.0625,39.375,39.875,5268800,14.697414
1998-01-06,39.125,40.0625,39.125,40.00,6729000,14.743488
1998-01-05,39.8125,39.875,39.00,39.75,4562000,14.651341
1998-01-02,39.4375,39.6875,38.8125,39.375,3343000,14.513121
1997-12-31,39.4375,39.625,38.9375,39.4375,3827000,14.536158
1997-12-30,38.50,39.9375,38.50,39.625,4663000,14.605268
1997-12-29,38.00,38.50,37.875,37.9375,2664200,13.983277
1997-12-26,37.125,37.75,37.125,37.5625,1533400,13.845057
1997-12-24,38.125,38.125,36.75,37.1875,3163600,13.706836
1997-12-23,38.375,38.375,37.00,37.1875,4059200,13.706836
1997-12-22,38.4375,39.00,38.00,38.125,3639200,14.052387
1997-12-19,39.1875,39.3125,38.125,38.625,9996600,14.23668
1997-12-18,40.125,40.125,39.375,39.5625,6095200,14.582231
1997-12-17,41.125,41.125,39.9375,40.0625,4561600,14.766525
1997-12-16,41.6875,41.9375,40.3125,40.75,7140200,14.994863
1997-12-15,40.125,41.25,40.0625,41.125,6761200,15.132853
1997-12-12,40.00,40.50,39.75,39.9375,5912400,14.695886
1997-12-11,40.00,40.125,39.0625,39.8125,6202000,14.649889
1997-12-10,39.5625,40.375,39.5625,40.25,4122400,14.810877
1997-12-09,40.50,40.625,39.625,40.0625,3760400,14.741882
1997-12-08,41.0625,41.0625,40.00,40.375,3099000,14.856874
1997-12-05,40.625,41.125,40.5625,40.9375,4433800,15.063858
1997-12-04,41.125,41.25,40.5625,41.0625,4813800,15.109855
1997-12-03,40.875,41.0625,39.875,40.875,5235000,15.04086
1997-12-02,41.00,41.375,40.5625,40.75,5027200,14.994863
1997-12-01,40.25,40.875,40.00,40.875,5108000,15.04086
1997-11-28,40.25,40.375,39.875,40.0625,1746800,14.741882
1997-11-26,39.875,40.0625,39.8125,39.875,3314600,14.672888
1997-11-25,39.8125,40.1875,39.5625,39.5625,5853400,14.557896
1997-11-24,39.75,40.1875,39.50,39.5625,5182600,14.557896
1997-11-21,40.25,40.25,39.6875,40.00,5785200,14.718884
1997-11-20,39.75,40.125,39.6875,39.9375,5102200,14.695886
1997-11-19,39.00,39.9375,38.75,39.4375,6150200,14.5119
1997-11-18,39.8125,39.875,39.125,39.25,6435400,14.442905
1997-11-17,40.00,40.875,39.75,39.8125,10570200,14.649889
1997-11-14,38.875,39.625,38.8125,39.50,8622600,14.534898
1997-11-13,38.25,38.625,38.00,38.375,6268800,14.12093
1997-11-12,36.875,38.3125,36.8125,37.9375,10488800,13.959942
1997-11-11,37.00,37.625,36.875,37.125,4364200,13.660964
1997-11-10,36.625,37.0625,36.50,36.625,4373200,13.476978
1997-11-07,36.25,36.4375,35.75,36.25,4713800,13.338989
1997-11-06,36.0625,37.00,36.0625,36.875,5898400,13.568971
1997-11-05,36.50,36.5625,36.0625,36.0625,4265600,13.269994
1997-11-04,36.1875,36.4375,35.875,36.375,3871400,13.384985
1997-11-03,36.625,36.875,35.9375,36.3125,5115200,13.361987
1997-10-31,35.4375,35.8125,34.25,35.00,4358200,12.879024
1997-10-30,34.125,36.50,34.125,34.75,8361200,12.787031
1997-10-29,34.5625,35.875,34.3125,34.75,7589200,12.787031
1997-10-28,30.375,35.00,30.25,34.5625,15899800,12.718036
1997-10-27,33.8125,34.75,30.9375,32.1875,9108600,11.844102
1997-10-24,35.625,35.625,33.6875,34.0625,5482000,12.53405
1997-10-23,34.625,35.375,34.25,35.125,5362800,12.92502
1997-10-22,36.25,36.5625,35.4375,35.625,4066800,13.109006
1997-10-21,35.375,36.125,35.375,36.0625,4833000,13.269994
1997-10-20,34.6875,35.4375,34.0625,35.4375,4094200,13.040011
1997-10-17,35.50,35.6875,34.00,34.6875,6395600,12.764032
1997-10-16,36.50,36.875,35.0625,35.6875,4598000,13.132005
1997-10-15,35.75,36.6875,35.75,36.125,5505400,13.292992
1997-10-14,36.25,36.25,35.6875,36.00,5402800,13.246996
1997-10-13,35.875,36.0625,35.625,35.6875,3527000,13.132005
1997-10-10,35.1875,36.00,35.0625,35.875,5204600,13.200999
1997-10-09,35.50,35.875,35.25,35.3125,6177400,12.994015
1997-10-08,36.6875,36.6875,35.50,35.9375,6890600,13.223998
1997-10-07,36.625,36.875,36.5625,36.5625,4512200,13.45398
1997-10-06,37.00,37.125,36.6875,36.875,4097000,13.568971
1997-10-03,37.25,37.25,36.5625,37.00,5977600,13.614968
1997-10-02,36.6875,37.0625,36.50,36.875,5407800,13.568971
1997-10-01,36.9375,37.0625,36.75,36.9375,5960800,13.59197
1997-09-30,36.6875,36.875,36.5625,36.625,4639000,13.476978
1997-09-29,36.3125,36.875,36.25,36.75,4080200,13.522975
1997-09-26,36.0625,36.4375,36.0625,36.25,5103600,13.338989
1997-09-25,36.6875,37.00,35.8125,35.9375,5160800,13.223998
1997-09-24,37.3125,37.4375,36.50,36.6875,6026800,13.499977
1997-09-23,38.1875,38.25,36.875,37.0625,6539400,13.637966
1997-09-22,38.25,39.5625,38.0625,38.4062,4088000,14.13241
1997-09-19,37.875,38.4375,37.50,38.25,10006600,14.074933
1997-09-18,38.1875,38.8125,37.75,37.875,5407800,13.936944
1997-09-17,38.3125,38.625,38.00,38.00,5926600,13.98294
1997-09-16,38.75,39.00,38.00,38.25,8188200,14.049911
1997-09-15,38.8125,39.0625,38.1875,38.25,3221000,14.049911
1997-09-12,38.125,39.00,37.1875,38.75,5563200,14.23357
1997-09-11,37.50,38.125,37.0625,38.125,6923200,14.003997
1997-09-10,38.50,39.50,37.50,37.625,7342200,13.820338
1997-09-09,38.4375,39.0625,38.125,38.625,6373600,14.187656
1997-09-08,38.4375,38.50,37.9375,38.3125,3841200,14.072869
1997-09-05,38.125,38.5625,37.00,37.8125,5059000,13.88921
1997-09-04,37.9375,38.6875,37.875,38.0625,5832800,13.981039
1997-09-03,37.625,38.3125,37.5625,38.00,6731000,13.958082
1997-09-02,35.9375,37.6875,35.875,37.6875,6798000,13.843295
1997-08-29,35.375,35.8125,35.1875,35.50,3977400,13.039787
1997-08-28,35.50,36.25,35.25,35.5625,4469000,13.062744
1997-08-27,35.8125,36.3125,35.3125,35.9375,4465600,13.200489
1997-08-26,36.5625,36.9375,35.75,36.0625,4279800,13.246403
1997-08-25,36.25,36.9375,36.00,36.75,4053600,13.498934
1997-08-22,36.00,36.50,35.00,36.25,8065200,13.315275
1997-08-21,37.3125,37.375,36.4375,36.6875,4458800,13.475977
1997-08-20,35.9375,37.5625,35.9375,37.1875,8134600,13.659636
1997-08-19,35.8125,35.9375,35.1875,35.875,5638200,13.177531
1997-08-18,35.1875,35.875,34.8125,35.6875,5781600,13.108659
1997-08-15,35.00,35.9375,34.75,35.0625,11314000,12.879085
1997-08-14,37.0625,37.0625,35.0625,35.8125,6712600,13.154574
1997-08-13,36.50,37.25,35.75,36.9375,9353600,13.567807
1997-08-12,37.125,37.50,35.75,35.9375,7440400,13.200489
1997-08-11,37.1875,37.25,36.4375,37.00,6363800,13.590764
1997-08-08,37.75,38.00,36.1875,37.0625,5889000,13.613721
1997-08-07,38.5625,39.00,37.9375,38.0625,6682600,13.981039
1997-08-06,37.4375,38.4375,37.375,38.375,6216800,14.095826
1997-08-05,37.875,37.9375,37.375,37.625,3881000,13.820338
1997-08-04,36.75,38.25,36.75,37.875,6059400,13.912167
1997-08-01,37.50,37.50,36.25,36.6875,7329000,13.475977
1997-07-31,37.6875,37.875,37.50,37.50,4621800,13.774423
1997-07-30,37.9375,38.0625,37.625,37.875,5946600,13.912167
1997-07-29,38.6875,38.75,37.50,37.75,6814400,13.866252
1997-07-28,38.25,39.125,38.25,38.5625,7858600,14.164698
1997-07-25,37.1875,38.75,37.1875,38.375,10161000,14.095826
1997-07-24,36.8125,37.25,36.3125,37.00,6680200,13.590764
1997-07-23,36.1875,37.125,35.5625,36.50,13508200,13.407105
1997-07-22,35.75,36.1875,35.4375,36.125,9170000,13.269361
1997-07-21,34.875,35.75,34.8125,35.75,10963000,13.131617
1997-07-18,35.25,36.0625,34.625,35.00,8954400,12.856128
1997-07-17,35.75,35.8125,35.375,35.50,7179800,13.039787
1997-07-16,35.6875,36.00,35.5625,35.8125,6320800,13.154574
1997-07-15,35.6875,35.75,35.0625,35.75,5570200,13.131617
1997-07-14,35.5625,35.75,35.3125,35.6875,7645800,13.108659
1997-07-11,35.125,35.50,35.0625,35.4375,6099800,13.01683
1997-07-10,34.00,35.50,34.00,35.0625,10703600,12.879085
1997-07-09,35.0625,35.1875,33.1875,33.625,8805200,12.351066
1997-07-08,35.0625,35.125,34.8125,35.00,4510800,12.856128
1997-07-07,35.6875,36.00,35.00,35.1875,8523600,12.925
1997-07-03,34.8125,35.5625,34.8125,35.4375,6471400,13.01683
1997-07-02,34.00,34.50,33.625,34.50,4709600,12.672469
1997-07-01,33.9375,34.0625,33.625,33.9375,7282000,12.465853
1997-06-30,33.125,33.9375,32.75,33.8125,8478600,12.419938
1997-06-27,33.25,33.3125,32.6875,32.6875,5120400,12.006705
1997-06-26,32.875,33.625,32.6875,33.00,6051600,12.121492
1997-06-25,33.5625,33.8125,32.25,32.6875,9015800,12.006705
1997-06-24,32.625,33.625,32.50,33.5625,5773800,12.328109
1997-06-23,33.50,33.75,32.625,32.625,4654600,11.983748
1997-06-20,33.125,33.75,33.00,33.75,11852000,12.396981
1997-06-19,33.00,33.125,32.875,33.00,5087200,12.121492
1997-06-18,33.00,33.125,32.875,33.00,4703400,12.121492
1997-06-17,33.125,33.50,33.00,33.375,8668400,12.234259
1997-06-16,32.125,33.00,32.125,32.875,7177600,12.050974
1997-06-13,31.75,32.125,31.75,32.00,7488200,11.730226
1997-06-12,31.50,31.75,31.375,31.625,7285000,11.592762
1997-06-11,31.00,31.50,30.875,31.375,7370200,11.50112
1997-06-10,32.00,32.00,31.375,31.375,7141400,11.50112
1997-06-09,31.625,31.875,31.4375,31.875,5852200,11.684404
1997-06-06,30.75,31.375,30.625,31.375,5191600,11.50112
1997-06-05,31.00,31.1875,30.875,31.00,5768400,11.363656
1997-06-04,30.75,31.25,30.625,30.875,7040800,11.317835
1997-06-03,30.50,31.125,30.50,30.875,8021000,11.317835
1997-06-02,30.00,30.625,29.875,30.375,6997600,11.13455
1997-05-30,30.00,30.00,29.75,29.875,4833200,10.951265
1997-05-29,30.00,30.375,29.75,30.125,4498400,11.042908
1997-05-28,29.875,30.125,29.75,30.00,5154200,10.997086
1997-05-27,29.625,30.125,29.50,29.875,3677000,10.951265
1997-05-23,30.00,30.125,29.75,30.125,2977400,11.042908
1997-05-22,30.125,30.25,29.50,29.75,4103600,10.905444
1997-05-21,30.50,30.625,29.875,30.00,7292000,10.997086
1997-05-20,30.25,30.50,30.25,30.50,4256400,11.180371
1997-05-19,30.00,30.50,29.875,30.50,4611400,11.180371
1997-05-16,30.50,30.50,29.875,29.875,9377800,10.951265
1997-05-15,30.00,30.50,29.875,30.50,7079600,11.180371
1997-05-14,30.125,30.25,30.00,30.125,8968600,11.042908
1997-05-13,30.00,30.1875,29.00,30.00,14121800,10.997086
1997-05-12,28.9375,29.875,28.9375,29.75,7276800,10.905444
1997-05-09,29.25,29.25,28.75,29.00,5158800,10.630517
1997-05-08,28.375,29.375,28.375,29.25,10392800,10.722159
1997-05-07,28.625,28.8125,28.00,28.25,6491200,10.35559
1997-05-06,28.25,28.50,28.00,28.375,8031200,10.401411
1997-05-05,28.375,28.625,27.875,28.375,12384400,10.401411
1997-05-02,28.25,28.375,28.125,28.375,5157200,10.401411
1997-05-01,28.00,28.25,27.875,28.25,5320800,10.35559
1997-04-30,27.75,28.50,27.625,28.125,8527800,10.309769
1997-04-29,28.125,28.125,27.375,27.75,5607400,10.172305
1997-04-28,27.00,27.875,27.00,27.75,4159600,10.172305
1997-04-25,27.625,27.75,27.125,27.125,4076000,9.943199
1997-04-24,27.875,28.00,27.50,27.50,4300000,10.080663
1997-04-23,27.875,28.375,27.75,28.00,6237000,10.263947
1997-04-22,27.75,27.875,27.375,27.75,6280000,10.172305
1997-04-21,28.00,28.00,27.625,27.75,5159400,10.172305
1997-04-18,27.875,28.125,27.875,28.125,6279200,10.309769
1997-04-17,28.00,28.125,27.75,27.875,4158400,10.218126
1997-04-16,28.375,28.375,27.875,28.00,9009600,10.263947
1997-04-15,28.00,28.50,27.875,28.50,5905600,10.447232
1997-04-14,27.50,27.875,27.125,27.75,6522600,10.172305
1997-04-11,28.00,28.25,27.625,27.625,6279400,10.126484
1997-04-10,28.375,28.50,28.125,28.375,4903400,10.401411
1997-04-09,28.75,28.875,28.375,28.625,6755200,10.493053
1997-04-08,27.875,28.625,27.625,28.625,6765000,10.493053
1997-04-07,27.75,28.125,27.625,28.00,3966000,10.263947
1997-04-04,27.625,27.875,27.375,27.875,8181200,10.218126
1997-04-03,27.75,27.875,27.50,27.75,10021600,10.172305
1997-04-02,27.625,27.875,27.50,27.75,7122400,10.172305
1997-04-01,27.625,28.00,27.50,27.75,7407400,10.172305
1997-03-31,28.625,29.00,27.625,27.875,12109800,10.218126
1997-03-27,29.50,29.625,28.25,28.875,9004600,10.584696
1997-03-26,29.25,29.625,29.125,29.625,12647400,10.859623
1997-03-25,29.875,29.875,29.125,29.25,16439200,10.722159
1997-03-24,29.875,29.875,29.50,29.75,7407000,10.905444
1997-03-21,29.375,29.875,29.375,29.75,11929800,10.905444
1997-03-20,29.75,29.875,29.25,29.375,11126600,10.76798
1997-03-19,29.625,29.875,29.50,29.875,19190200,10.951265
1997-03-18,29.00,29.125,28.625,29.125,10431200,10.676338
1997-03-17,28.625,29.00,28.125,28.875,8245200,10.584696
1997-03-14,29.00,29.00,27.875,28.75,12985200,10.513948
1997-03-13,29.625,29.625,28.75,29.00,20657000,10.605374
1997-03-12,27.875,28.75,27.75,28.75,20611600,10.513948
1997-03-11,27.50,27.75,27.25,27.75,7779200,10.148245
1997-03-10,27.50,27.6875,27.375,27.375,7255200,10.011107
1997-03-07,27.50,27.6875,27.25,27.25,7154800,9.965394
1997-03-06,27.00,27.375,26.625,27.25,12960200,9.965394
1997-03-05,26.625,26.75,26.25,26.625,5977800,9.73683
1997-03-04,27.125,27.375,26.50,26.50,6146600,9.691117
1997-03-03,26.25,27.125,26.25,27.00,8575000,9.873969
1997-02-28,26.875,26.875,26.375,26.375,7069000,9.645404
1997-02-27,26.75,27.00,26.625,26.75,11399600,9.782543
1997-02-26,26.625,27.00,25.875,26.75,18787800,9.782543
1997-02-25,25.125,26.625,24.75,26.375,22502400,9.645404
1997-02-24,23.875,24.75,23.75,24.625,7419400,9.005425
1997-02-21,23.75,24.125,23.75,24.00,8271800,8.776861
1997-02-20,24.375,24.375,23.50,23.75,8159400,8.685435
1997-02-19,24.625,24.75,24.375,24.375,7270000,8.913999
1997-02-18,24.625,24.875,24.00,24.875,7685600,9.096851
1997-02-14,24.875,24.875,24.375,24.625,6161600,9.005425
1997-02-13,25.00,25.125,24.625,24.875,9932000,9.096851
1997-02-12,24.75,25.00,24.625,25.00,7213600,9.142563
1997-02-11,24.50,24.875,24.375,24.50,8302800,8.959712
1997-02-10,24.125,24.50,24.125,24.50,7459800,8.959712
1997-02-07,24.00,24.00,23.625,23.875,7768400,8.731148
1997-02-06,23.50,23.875,23.375,23.625,7755400,8.639722
1997-02-05,23.625,24.125,23.00,23.125,10028200,8.456871
1997-02-04,23.375,23.50,23.25,23.50,4362400,8.59401
1997-02-03,23.75,23.75,23.25,23.375,5331600,8.548297
1997-01-31,23.25,24.25,23.25,23.75,11413200,8.685435
1997-01-30,23.00,23.25,23.00,23.25,6533000,8.502584
1997-01-29,23.00,23.125,22.875,23.00,5979600,8.411158
1997-01-28,23.00,23.25,22.875,22.875,8685800,8.365446
1997-01-27,22.875,23.00,22.75,22.875,8305400,8.365446
1997-01-24,22.875,23.125,22.75,23.00,7028800,8.411158
1997-01-23,23.00,23.25,22.75,22.75,15109600,8.319733
1997-01-22,22.875,23.125,22.75,23.125,8006800,8.456871
1997-01-21,22.875,23.125,22.75,22.875,10868800,8.365446
1997-01-20,23.50,23.5625,22.875,22.875,5138400,8.365446
1997-01-17,23.25,23.375,22.75,23.375,12106600,8.548297
1997-01-16,23.25,23.25,22.75,23.125,7883000,8.456871
1997-01-15,23.25,23.375,22.875,23.125,7666000,8.456871
1997-01-14,23.75,23.875,23.375,23.50,11452600,8.59401
1997-01-13,24.00,24.125,23.25,23.50,5137400,8.59401
1997-01-10,23.50,24.125,23.50,24.00,7199000,8.776861
1997-01-09,23.625,24.125,23.625,23.875,7612400,8.731148
1997-01-08,24.125,24.25,23.50,23.625,8917000,8.639722
1997-01-07,22.50,23.875,22.50,23.875,13868200,8.731148
1997-01-06,22.875,23.00,22.00,22.125,9480800,8.091169
1997-01-03,23.00,23.125,22.625,22.625,5615400,8.27402
1997-01-02,23.00,23.125,22.50,23.00,7448200,8.411158
|
CSV
|
[EXPERIENCE]
Exp1=1500
Exp2=3000
Exp3=4500
Exp4=6000
Exp5=7500
Exp6=9000
Exp7=10500
Exp8=12000
Exp9=13500
Exp10=15000
Exp11=16500
Exp12=18000
Exp13=19500
Exp14=21000
Exp15=22500
Exp16=24000
Exp17=25500
Exp18=27000
Exp19=28500
Exp20=30000
Exp21=31500
Exp22=33000
Exp23=34500
Exp24=36000
Exp25=37500
Exp26=39000
Exp27=40500
Exp28=42000
Exp29=43500
Exp30=45000
Exp31=46500
Exp32=48000
Exp33=49500
Exp34=51000
Exp35=52500
Exp36=54000
Exp37=55500
Exp38=57000
Exp39=58500
Exp40=60000
Exp41=61500
Exp42=63000
Exp43=64500
Exp44=66000
Exp45=67500
Exp46=69000
Exp47=70500
Exp48=72000
Exp49=73500
Exp50=75000
Exp51=76500
Exp52=78000
Exp53=79500
Exp54=81000
Exp55=82500
Exp56=84000
Exp57=85500
Exp58=87000
Exp59=88500
Exp60=90000
Exp61=91500
Exp62=93000
Exp63=94500
Exp64=96000
Exp65=97500
Exp66=99000
Exp67=100500
Exp68=102000
Exp69=103500
Exp70=105000
Exp71=106500
Exp72=108000
Exp73=109500
Exp74=111000
Exp75=112500
Exp76=114000
Exp77=115500
Exp78=117000
Exp79=118500
Exp80=120000
Exp81=121500
Exp82=123000
Exp83=124500
Exp84=126000
Exp85=127500
Exp86=129000
Exp87=130500
Exp88=132000
Exp89=133500
Exp90=135000
Exp91=136500
Exp92=138000
Exp93=139500
Exp94=141000
Exp95=142500
Exp96=144000
Exp97=145500
Exp98=147000
Exp99=148500
Exp100=150000
Exp101=151500
Exp102=153000
Exp103=154500
Exp104=156000
Exp105=157500
Exp106=159000
Exp107=160500
Exp108=162000
Exp109=163500
Exp110=165000
Exp111=166500
Exp112=168000
Exp113=169500
Exp114=171000
Exp115=172500
Exp116=174000
Exp117=175500
Exp118=177000
Exp119=178500
Exp120=180000
Exp121=181500
Exp122=183000
Exp123=184500
Exp124=186000
Exp125=187500
Exp126=189000
Exp127=190500
Exp128=192000
Exp129=193500
Exp130=195000
Exp131=196500
Exp132=198000
Exp133=199500
Exp134=201000
Exp135=202500
Exp136=204000
Exp137=205500
Exp138=207000
Exp139=208500
Exp140=210000
Exp141=211500
Exp142=213000
Exp143=214500
Exp144=216000
Exp145=217500
Exp146=219000
Exp147=220500
Exp148=222000
Exp149=223500
Exp150=225000
Exp151=226500
Exp152=228000
Exp153=229500
Exp154=231000
Exp155=232500
Exp156=234000
Exp157=235500
Exp158=237000
Exp159=238500
Exp160=240000
Exp161=241500
Exp162=243000
Exp163=244500
Exp164=246000
Exp165=247500
Exp166=249000
Exp167=250500
Exp168=252000
Exp169=253500
Exp170=255000
Exp171=256500
Exp172=258000
Exp173=259500
Exp174=261000
Exp175=262500
Exp176=264000
Exp177=265500
Exp178=267000
Exp179=268500
Exp180=270000
Exp181=271500
Exp182=273000
Exp183=274500
Exp184=276000
Exp185=277500
Exp186=279000
Exp187=280500
Exp188=282000
Exp189=283500
Exp190=285000
Exp191=286500
Exp192=288000
Exp193=289500
Exp194=291000
Exp195=292500
Exp196=294000
Exp197=295500
Exp198=297000
Exp199=298500
Exp200=300000
Exp201=301500
Exp202=303000
Exp203=304500
Exp204=306000
Exp205=307500
Exp206=309000
Exp207=310500
Exp208=312000
Exp209=313500
Exp210=315000
Exp211=316500
Exp212=318000
Exp213=319500
Exp214=321000
Exp215=322500
Exp216=324000
Exp217=325500
Exp218=327000
Exp219=328500
Exp220=330000
Exp221=331500
Exp222=333000
Exp223=334500
Exp224=336000
Exp225=337500
Exp226=339000
Exp227=340500
Exp228=342000
Exp229=343500
Exp230=345000
Exp231=346500
Exp232=348000
Exp233=349500
Exp234=351000
Exp235=352500
Exp236=354000
Exp237=355500
Exp238=357000
Exp239=358500
Exp240=360000
Exp241=361500
Exp242=363000
Exp243=364500
Exp244=366000
Exp245=367500
Exp246=369000
Exp247=370500
Exp248=372000
Exp249=373500
Exp250=375000
Exp251=376500
Exp252=378000
Exp253=379500
Exp254=381000
Exp255=382500
Exp256=384000
Exp257=385500
Exp258=387000
Exp259=388500
Exp260=390000
Exp261=391500
Exp262=393000
Exp263=394500
Exp264=396000
Exp265=397500
Exp266=399000
Exp267=400500
Exp268=402000
Exp269=403500
Exp270=405000
Exp271=406500
Exp272=408000
Exp273=409500
Exp274=411000
Exp275=412500
Exp276=414000
Exp277=415500
Exp278=417000
Exp279=418500
Exp280=420000
Exp281=421500
Exp282=423000
Exp283=424500
Exp284=426000
Exp285=427500
Exp286=429000
Exp287=430500
Exp288=432000
Exp289=433500
Exp290=435000
Exp291=436500
Exp292=438000
Exp293=439500
Exp294=441000
Exp295=442500
Exp296=444000
Exp297=445500
Exp298=447000
Exp299=448500
Exp300=450000
Exp301=451500
Exp302=453000
Exp303=454500
Exp304=456000
Exp305=457500
Exp306=459000
Exp307=460500
Exp308=462000
Exp309=463500
Exp310=465000
Exp311=466500
Exp312=468000
Exp313=469500
Exp314=471000
Exp315=472500
Exp316=474000
Exp317=475500
Exp318=477000
Exp319=478500
Exp320=480000
Exp321=481500
Exp322=483000
Exp323=484500
Exp324=486000
Exp325=487500
Exp326=489000
Exp327=490500
Exp328=492000
Exp329=493500
Exp330=495000
Exp331=496500
Exp332=498000
Exp333=499500
Exp334=501000
Exp335=502500
Exp336=504000
Exp337=505500
Exp338=507000
Exp339=508500
Exp340=510000
Exp341=511500
Exp342=513000
Exp343=514500
Exp344=516000
Exp345=517500
Exp346=519000
Exp347=520500
Exp348=522000
Exp349=523500
Exp350=525000
Exp351=526500
Exp352=528000
Exp353=529500
Exp354=531000
Exp355=532500
Exp356=534000
Exp357=535500
Exp358=537000
Exp359=538500
Exp360=540000
Exp361=541500
Exp362=543000
Exp363=544500
Exp364=546000
Exp365=547500
Exp366=549000
Exp367=550500
Exp368=552000
Exp369=553500
Exp370=555000
Exp371=556500
Exp372=558000
Exp373=559500
Exp374=561000
Exp375=562500
Exp376=564000
Exp377=565500
Exp378=567000
Exp379=568500
Exp380=570000
Exp381=571500
Exp382=573000
Exp383=574500
Exp384=576000
Exp385=577500
Exp386=579000
Exp387=580500
Exp388=582000
Exp389=583500
Exp390=585000
Exp391=586500
Exp392=588000
Exp393=589500
Exp394=591000
Exp395=592500
Exp396=594000
Exp397=595500
Exp398=597000
Exp399=598500
Exp400=600000
Exp401=601500
Exp402=603000
Exp403=604500
Exp404=606000
Exp405=607500
Exp406=609000
Exp407=610500
Exp408=612000
Exp409=613500
Exp410=615000
Exp411=616500
Exp412=618000
Exp413=619500
Exp414=621000
Exp415=622500
Exp416=624000
Exp417=625500
Exp418=627000
Exp419=628500
Exp420=630000
Exp421=631500
Exp422=633000
Exp423=634500
Exp424=636000
Exp425=637500
Exp426=639000
Exp427=640500
Exp428=642000
Exp429=643500
Exp430=645000
Exp431=646500
Exp432=648000
Exp433=649500
Exp434=651000
Exp435=652500
Exp436=654000
Exp437=655500
Exp438=657000
Exp439=658500
Exp440=660000
Exp441=661500
Exp442=663000
Exp443=664500
Exp444=666000
Exp445=667500
Exp446=669000
Exp447=670500
Exp448=672000
Exp449=673500
Exp450=675000
Exp451=676500
Exp452=678000
Exp453=679500
Exp454=681000
Exp455=682500
Exp456=684000
Exp457=685500
Exp458=687000
Exp459=688500
Exp460=690000
Exp461=691500
Exp462=693000
Exp463=694500
Exp464=696000
Exp465=697500
Exp466=699000
Exp467=700500
Exp468=702000
Exp469=703500
Exp470=705000
Exp471=706500
Exp472=708000
Exp473=709500
Exp474=711000
Exp475=712500
Exp476=714000
Exp477=715500
Exp478=717000
Exp479=718500
Exp480=720000
Exp481=721500
Exp482=723000
Exp483=724500
Exp484=726000
Exp485=727500
Exp486=729000
Exp487=730500
Exp488=732000
Exp489=733500
Exp490=735000
Exp491=736500
Exp492=738000
Exp493=739500
Exp494=741000
Exp495=742500
Exp496=744000
Exp497=745500
Exp498=747000
Exp499=748500
Exp500=750000
Exp501=751500
Exp502=753000
Exp503=754500
Exp504=756000
Exp505=757500
Exp506=759000
Exp507=760500
Exp508=762000
Exp509=763500
Exp510=765000
Exp511=766500
Exp512=768000
Exp513=769500
Exp514=771000
Exp515=772500
Exp516=774000
Exp517=775500
Exp518=777000
Exp519=778500
Exp520=780000
Exp521=781500
Exp522=783000
Exp523=784500
Exp524=786000
Exp525=787500
Exp526=789000
Exp527=790500
Exp528=792000
Exp529=793500
Exp530=795000
Exp531=796500
Exp532=798000
Exp533=799500
Exp534=801000
Exp535=802500
Exp536=804000
Exp537=805500
Exp538=807000
Exp539=808500
Exp540=810000
Exp541=811500
Exp542=813000
Exp543=814500
Exp544=816000
Exp545=817500
Exp546=819000
Exp547=820500
Exp548=822000
Exp549=823500
Exp550=825000
Exp551=826500
Exp552=828000
Exp553=829500
Exp554=831000
Exp555=832500
Exp556=834000
Exp557=835500
Exp558=837000
Exp559=838500
Exp560=840000
Exp561=841500
Exp562=843000
Exp563=844500
Exp564=846000
Exp565=847500
Exp566=849000
Exp567=850500
Exp568=852000
Exp569=853500
Exp570=855000
Exp571=856500
Exp572=858000
Exp573=859500
Exp574=861000
Exp575=862500
Exp576=864000
Exp577=865500
Exp578=867000
Exp579=868500
Exp580=870000
Exp581=871500
Exp582=873000
Exp583=874500
Exp584=876000
Exp585=877500
Exp586=879000
Exp587=880500
Exp588=882000
Exp589=883500
Exp590=885000
Exp591=886500
Exp592=888000
Exp593=889500
Exp594=891000
Exp595=892500
Exp596=894000
Exp597=895500
Exp598=897000
Exp599=898500
Exp600=900000
Exp601=901500
Exp602=903000
Exp603=904500
Exp604=906000
Exp605=907500
Exp606=909000
Exp607=910500
Exp608=912000
Exp609=913500
Exp610=915000
Exp611=916500
Exp612=918000
Exp613=919500
Exp614=921000
Exp615=922500
Exp616=924000
Exp617=925500
Exp618=927000
Exp619=928500
Exp620=930000
Exp621=931500
Exp622=933000
Exp623=934500
Exp624=936000
Exp625=937500
Exp626=939000
Exp627=940500
Exp628=942000
Exp629=943500
Exp630=945000
Exp631=946500
Exp632=948000
Exp633=949500
Exp634=951000
Exp635=952500
Exp636=954000
Exp637=955500
Exp638=957000
Exp639=958500
Exp640=960000
Exp641=961500
Exp642=963000
Exp643=964500
Exp644=966000
Exp645=967500
Exp646=969000
Exp647=970500
Exp648=972000
Exp649=973500
Exp650=975000
Exp651=976500
Exp652=978000
Exp653=979500
Exp654=981000
Exp655=982500
Exp656=984000
Exp657=985500
Exp658=987000
Exp659=988500
Exp660=990000
Exp661=991500
Exp662=993000
Exp663=994500
Exp664=996000
Exp665=997500
Exp666=999000
Exp667=1000500
Exp668=1002000
Exp669=1003500
Exp670=1005000
Exp671=1006500
Exp672=1008000
Exp673=1009500
Exp674=1011000
Exp675=1012500
Exp676=1014000
Exp677=1015500
Exp678=1017000
Exp679=1018500
Exp680=1020000
Exp681=1021500
Exp682=1023000
Exp683=1024500
Exp684=1026000
Exp685=1027500
Exp686=1029000
Exp687=1030500
Exp688=1032000
Exp689=1033500
Exp690=1035000
Exp691=1036500
Exp692=1038000
Exp693=1039500
Exp694=1041000
Exp695=1042500
Exp696=1044000
Exp697=1045500
Exp698=1047000
Exp699=1048500
Exp700=1050000
Exp701=1051500
Exp702=1053000
Exp703=1054500
Exp704=1056000
Exp705=1057500
Exp706=1059000
Exp707=1060500
Exp708=1062000
Exp709=1063500
Exp710=1065000
Exp711=1066500
Exp712=1068000
Exp713=1069500
Exp714=1071000
Exp715=1072500
Exp716=1074000
Exp717=1075500
Exp718=1077000
Exp719=1078500
Exp720=1080000
Exp721=1081500
Exp722=1083000
Exp723=1084500
Exp724=1086000
Exp725=1087500
Exp726=1089000
Exp727=1090500
Exp728=1092000
Exp729=1093500
Exp730=1095000
Exp731=1096500
Exp732=1098000
Exp733=1099500
Exp734=1101000
Exp735=1102500
Exp736=1104000
Exp737=1105500
Exp738=1107000
Exp739=1108500
Exp740=1110000
Exp741=1111500
Exp742=1113000
Exp743=1114500
Exp744=1116000
Exp745=1117500
Exp746=1119000
Exp747=1120500
Exp748=1122000
Exp749=1123500
Exp750=1125000
Exp751=1126500
Exp752=1128000
Exp753=1129500
Exp754=1131000
Exp755=1132500
Exp756=1134000
Exp757=1135500
Exp758=1137000
Exp759=1138500
Exp760=1140000
Exp761=1141500
Exp762=1143000
Exp763=1144500
Exp764=1146000
Exp765=1147500
Exp766=1149000
Exp767=1150500
Exp768=1152000
Exp769=1153500
Exp770=1155000
Exp771=1156500
Exp772=1158000
Exp773=1159500
Exp774=1161000
Exp775=1162500
Exp776=1164000
Exp777=1165500
Exp778=1167000
Exp779=1168500
Exp780=1170000
Exp781=1171500
Exp782=1173000
Exp783=1174500
Exp784=1176000
Exp785=1177500
Exp786=1179000
Exp787=1180500
Exp788=1182000
Exp789=1183500
Exp790=1185000
Exp791=1186500
Exp792=1188000
Exp793=1189500
Exp794=1191000
Exp795=1192500
Exp796=1194000
Exp797=1195500
Exp798=1197000
Exp799=1198500
Exp800=1200000
Exp801=1201500
Exp802=1203000
Exp803=1204500
Exp804=1206000
Exp805=1207500
Exp806=1209000
Exp807=1210500
Exp808=1212000
Exp809=1213500
Exp810=1215000
Exp811=1216500
Exp812=1218000
Exp813=1219500
Exp814=1221000
Exp815=1222500
Exp816=1224000
Exp817=1225500
Exp818=1227000
Exp819=1228500
Exp820=1230000
Exp821=1231500
Exp822=1233000
Exp823=1234500
Exp824=1236000
Exp825=1237500
Exp826=1239000
Exp827=1240500
Exp828=1242000
Exp829=1243500
Exp830=1245000
Exp831=1246500
Exp832=1248000
Exp833=1249500
Exp834=1251000
Exp835=1252500
Exp836=1254000
Exp837=1255500
Exp838=1257000
Exp839=1258500
Exp840=1260000
Exp841=1261500
Exp842=1263000
Exp843=1264500
Exp844=1266000
Exp845=1267500
Exp846=1269000
Exp847=1270500
Exp848=1272000
Exp849=1273500
Exp850=1275000
Exp851=1276500
Exp852=1278000
Exp853=1279500
Exp854=1281000
Exp855=1282500
Exp856=1284000
Exp857=1285500
Exp858=1287000
Exp859=1288500
Exp860=1290000
Exp861=1291500
Exp862=1293000
Exp863=1294500
Exp864=1296000
Exp865=1297500
Exp866=1299000
Exp867=1300500
Exp868=1302000
Exp869=1303500
Exp870=1305000
Exp871=1306500
Exp872=1308000
Exp873=1309500
Exp874=1311000
Exp875=1312500
Exp876=1314000
Exp877=1315500
Exp878=1317000
Exp879=1318500
Exp880=1320000
Exp881=1321500
Exp882=1323000
Exp883=1324500
Exp884=1326000
Exp885=1327500
Exp886=1329000
Exp887=1330500
Exp888=1332000
Exp889=1333500
Exp890=1335000
Exp891=1336500
Exp892=1338000
Exp893=1339500
Exp894=1341000
Exp895=1342500
Exp896=1344000
Exp897=1345500
Exp898=1347000
Exp899=1348500
Exp900=1350000
Exp901=1351500
Exp902=1353000
Exp903=1354500
Exp904=1356000
Exp905=1357500
Exp906=1359000
Exp907=1360500
Exp908=1362000
Exp909=1363500
Exp910=1365000
Exp911=1366500
Exp912=1368000
Exp913=1369500
Exp914=1371000
Exp915=1372500
Exp916=1374000
Exp917=1375500
Exp918=1377000
Exp919=1378500
Exp920=1380000
Exp921=1381500
Exp922=1383000
Exp923=1384500
Exp924=1386000
Exp925=1387500
Exp926=1389000
Exp927=1390500
Exp928=1392000
Exp929=1393500
Exp930=1395000
Exp931=1396500
Exp932=1398000
Exp933=1399500
Exp934=1401000
Exp935=1402500
Exp936=1404000
Exp937=1405500
Exp938=1407000
Exp939=1408500
Exp940=1410000
Exp941=1411500
Exp942=1413000
Exp943=1414500
Exp944=1416000
Exp945=1417500
Exp946=1419000
Exp947=1420500
Exp948=1422000
Exp949=1423500
Exp950=1425000
Exp951=1426500
Exp952=1428000
Exp953=1429500
Exp954=1431000
Exp955=1432500
Exp956=1434000
Exp957=1435500
Exp958=1437000
Exp959=1438500
Exp960=1440000
Exp961=1441500
Exp962=1443000
Exp963=1444500
Exp964=1446000
Exp965=1447500
Exp966=1449000
Exp967=1450500
Exp968=1452000
Exp969=1453500
Exp970=1455000
Exp971=1456500
Exp972=1458000
Exp973=1459500
Exp974=1461000
Exp975=1462500
Exp976=1464000
Exp977=1465500
Exp978=1467000
Exp979=1468500
Exp980=1470000
Exp981=1471500
Exp982=1473000
Exp983=1474500
Exp984=1476000
Exp985=1477500
Exp986=1479000
Exp987=1480500
Exp988=1482000
Exp989=1483500
Exp990=1485000
Exp991=1486500
Exp992=1488000
Exp993=1489500
Exp994=1491000
Exp995=1492500
Exp996=1494000
Exp997=1495500
Exp998=1497000
Exp999=1498500
Exp1000=1500000
Exp1001=1501500
Exp1002=1503000
Exp1003=1504500
Exp1004=1506000
Exp1005=1507500
Exp1006=1509000
Exp1007=1510500
Exp1008=1512000
Exp1009=1513500
Exp1010=1515000
Exp1011=1516500
Exp1012=1518000
Exp1013=1519500
Exp1014=1521000
Exp1015=1522500
Exp1016=1524000
Exp1017=1525500
Exp1018=1527000
Exp1019=1528500
Exp1020=1530000
Exp1021=1531500
Exp1022=1533000
Exp1023=1534500
Exp1024=1536000
Exp1025=1537500
Exp1026=1539000
Exp1027=1540500
Exp1028=1542000
Exp1029=1543500
Exp1030=1545000
Exp1031=1546500
Exp1032=1548000
Exp1033=1549500
Exp1034=1551000
Exp1035=1552500
Exp1036=1554000
Exp1037=1555500
Exp1038=1557000
Exp1039=1558500
Exp1040=1560000
Exp1041=1561500
Exp1042=1563000
Exp1043=1564500
Exp1044=1566000
Exp1045=1567500
Exp1046=1569000
Exp1047=1570500
Exp1048=1572000
Exp1049=1573500
Exp1050=1575000
Exp1051=1576500
Exp1052=1578000
Exp1053=1579500
Exp1054=1581000
Exp1055=1582500
Exp1056=1584000
Exp1057=1585500
Exp1058=1587000
Exp1059=1588500
Exp1060=1590000
Exp1061=1591500
Exp1062=1593000
Exp1063=1594500
Exp1064=1596000
Exp1065=1597500
Exp1066=1599000
Exp1067=1600500
Exp1068=1602000
Exp1069=1603500
Exp1070=1605000
Exp1071=1606500
Exp1072=1608000
Exp1073=1609500
Exp1074=1611000
Exp1075=1612500
Exp1076=1614000
Exp1077=1615500
Exp1078=1617000
Exp1079=1618500
Exp1080=1620000
Exp1081=1621500
Exp1082=1623000
Exp1083=1624500
Exp1084=1626000
Exp1085=1627500
Exp1086=1629000
Exp1087=1630500
Exp1088=1632000
Exp1089=1633500
Exp1090=1635000
Exp1091=1636500
Exp1092=1638000
Exp1093=1639500
Exp1094=1641000
Exp1095=1642500
Exp1096=1644000
Exp1097=1645500
Exp1098=1647000
Exp1099=1648500
Exp1100=1650000
Exp1101=1651500
Exp1102=1653000
Exp1103=1654500
Exp1104=1656000
Exp1105=1657500
Exp1106=1659000
Exp1107=1660500
Exp1108=1662000
Exp1109=1663500
Exp1110=1665000
Exp1111=1666500
Exp1112=1668000
Exp1113=1669500
Exp1114=1671000
Exp1115=1672500
Exp1116=1674000
Exp1117=1675500
Exp1118=1677000
Exp1119=1678500
Exp1120=1680000
Exp1121=1681500
Exp1122=1683000
Exp1123=1684500
Exp1124=1686000
Exp1125=1687500
Exp1126=1689000
Exp1127=1690500
Exp1128=1692000
Exp1129=1693500
Exp1130=1695000
Exp1131=1696500
Exp1132=1698000
Exp1133=1699500
Exp1134=1701000
Exp1135=1702500
Exp1136=1704000
Exp1137=1705500
Exp1138=1707000
Exp1139=1708500
Exp1140=1710000
Exp1141=1711500
Exp1142=1713000
Exp1143=1714500
Exp1144=1716000
Exp1145=1717500
Exp1146=1719000
Exp1147=1720500
Exp1148=1722000
Exp1149=1723500
Exp1150=1725000
Exp1151=1726500
Exp1152=1728000
Exp1153=1729500
Exp1154=1731000
Exp1155=1732500
Exp1156=1734000
Exp1157=1735500
Exp1158=1737000
Exp1159=1738500
Exp1160=1740000
Exp1161=1741500
Exp1162=1743000
Exp1163=1744500
Exp1164=1746000
Exp1165=1747500
Exp1166=1749000
Exp1167=1750500
Exp1168=1752000
Exp1169=1753500
Exp1170=1755000
Exp1171=1756500
Exp1172=1758000
Exp1173=1759500
Exp1174=1761000
Exp1175=1762500
Exp1176=1764000
Exp1177=1765500
Exp1178=1767000
Exp1179=1768500
Exp1180=1770000
Exp1181=1771500
Exp1182=1773000
Exp1183=1774500
Exp1184=1776000
Exp1185=1777500
Exp1186=1779000
Exp1187=1780500
Exp1188=1782000
Exp1189=1783500
Exp1190=1785000
Exp1191=1786500
Exp1192=1788000
Exp1193=1789500
Exp1194=1791000
Exp1195=1792500
Exp1196=1794000
Exp1197=1795500
Exp1198=1797000
Exp1199=1798500
Exp1200=1800000
Exp1201=1801500
Exp1202=1803000
Exp1203=1804500
Exp1204=1806000
Exp1205=1807500
Exp1206=1809000
Exp1207=1810500
Exp1208=1812000
Exp1209=1813500
Exp1210=1815000
Exp1211=1816500
Exp1212=1818000
Exp1213=1819500
Exp1214=1821000
Exp1215=1822500
Exp1216=1824000
Exp1217=1825500
Exp1218=1827000
Exp1219=1828500
Exp1220=1830000
Exp1221=1831500
Exp1222=1833000
Exp1223=1834500
Exp1224=1836000
Exp1225=1837500
Exp1226=1839000
Exp1227=1840500
Exp1228=1842000
Exp1229=1843500
Exp1230=1845000
Exp1231=1846500
Exp1232=1848000
Exp1233=1849500
Exp1234=1851000
Exp1235=1852500
Exp1236=1854000
Exp1237=1855500
Exp1238=1857000
Exp1239=1858500
Exp1240=1860000
Exp1241=1861500
Exp1242=1863000
Exp1243=1864500
Exp1244=1866000
Exp1245=1867500
Exp1246=1869000
Exp1247=1870500
Exp1248=1872000
Exp1249=1873500
Exp1250=1875000
Exp1251=1876500
Exp1252=1878000
Exp1253=1879500
Exp1254=1881000
Exp1255=1882500
Exp1256=1884000
Exp1257=1885500
Exp1258=1887000
Exp1259=1888500
Exp1260=1890000
Exp1261=1891500
Exp1262=1893000
Exp1263=1894500
Exp1264=1896000
Exp1265=1897500
Exp1266=1899000
Exp1267=1900500
Exp1268=1902000
Exp1269=1903500
Exp1270=1905000
Exp1271=1906500
Exp1272=1908000
Exp1273=1909500
Exp1274=1911000
Exp1275=1912500
Exp1276=1914000
Exp1277=1915500
Exp1278=1917000
Exp1279=1918500
Exp1280=1920000
Exp1281=1921500
Exp1282=1923000
Exp1283=1924500
Exp1284=1926000
Exp1285=1927500
Exp1286=1929000
Exp1287=1930500
Exp1288=1932000
Exp1289=1933500
Exp1290=1935000
Exp1291=1936500
Exp1292=1938000
Exp1293=1939500
Exp1294=1941000
Exp1295=1942500
Exp1296=1944000
Exp1297=1945500
Exp1298=1947000
Exp1299=1948500
Exp1300=1950000
Exp1301=1951500
Exp1302=1953000
Exp1303=1954500
Exp1304=1956000
Exp1305=1957500
Exp1306=1959000
Exp1307=1960500
Exp1308=1962000
Exp1309=1963500
Exp1310=1965000
Exp1311=1966500
Exp1312=1968000
Exp1313=1969500
Exp1314=1971000
Exp1315=1972500
Exp1316=1974000
Exp1317=1975500
Exp1318=1977000
Exp1319=1978500
Exp1320=1980000
Exp1321=1981500
Exp1322=1983000
Exp1323=1984500
Exp1324=1986000
Exp1325=1987500
Exp1326=1989000
Exp1327=1990500
Exp1328=1992000
Exp1329=1993500
Exp1330=1995000
Exp1331=1996500
Exp1332=1998000
Exp1333=1999500
Exp1334=2001000
Exp1335=2002500
Exp1336=2004000
Exp1337=2005500
Exp1338=2007000
Exp1339=2008500
Exp1340=2010000
Exp1341=2011500
Exp1342=2013000
Exp1343=2014500
Exp1344=2016000
Exp1345=2017500
Exp1346=2019000
Exp1347=2020500
Exp1348=2022000
Exp1349=2023500
Exp1350=2025000
Exp1351=2026500
Exp1352=2028000
Exp1353=2029500
Exp1354=2031000
Exp1355=2032500
Exp1356=2034000
Exp1357=2035500
Exp1358=2037000
Exp1359=2038500
Exp1360=2040000
Exp1361=2041500
Exp1362=2043000
Exp1363=2044500
Exp1364=2046000
Exp1365=2047500
Exp1366=2049000
Exp1367=2050500
Exp1368=2052000
Exp1369=2053500
Exp1370=2055000
Exp1371=2056500
Exp1372=2058000
Exp1373=2059500
Exp1374=2061000
Exp1375=2062500
Exp1376=2064000
Exp1377=2065500
Exp1378=2067000
Exp1379=2068500
Exp1380=2070000
Exp1381=2071500
Exp1382=2073000
Exp1383=2074500
Exp1384=2076000
Exp1385=2077500
Exp1386=2079000
Exp1387=2080500
Exp1388=2082000
Exp1389=2083500
Exp1390=2085000
Exp1391=2086500
Exp1392=2088000
Exp1393=2089500
Exp1394=2091000
Exp1395=2092500
Exp1396=2094000
Exp1397=2095500
Exp1398=2097000
Exp1399=2098500
Exp1400=2100000
Exp1401=2101500
Exp1402=2103000
Exp1403=2104500
Exp1404=2106000
Exp1405=2107500
Exp1406=2109000
Exp1407=2110500
Exp1408=2112000
Exp1409=2113500
Exp1410=2115000
Exp1411=2116500
Exp1412=2118000
Exp1413=2119500
Exp1414=2121000
Exp1415=2122500
Exp1416=2124000
Exp1417=2125500
Exp1418=2127000
Exp1419=2128500
Exp1420=2130000
Exp1421=2131500
Exp1422=2133000
Exp1423=2134500
Exp1424=2136000
Exp1425=2137500
Exp1426=2139000
Exp1427=2140500
Exp1428=2142000
Exp1429=2143500
Exp1430=2145000
Exp1431=2146500
Exp1432=2148000
Exp1433=2149500
Exp1434=2151000
Exp1435=2152500
Exp1436=2154000
Exp1437=2155500
Exp1438=2157000
Exp1439=2158500
Exp1440=2160000
Exp1441=2161500
Exp1442=2163000
Exp1443=2164500
Exp1444=2166000
Exp1445=2167500
Exp1446=2169000
Exp1447=2170500
Exp1448=2172000
Exp1449=2173500
Exp1450=2175000
Exp1451=2176500
Exp1452=2178000
Exp1453=2179500
Exp1454=2181000
Exp1455=2182500
Exp1456=2184000
Exp1457=2185500
Exp1458=2187000
Exp1459=2188500
Exp1460=2190000
Exp1461=2191500
Exp1462=2193000
Exp1463=2194500
Exp1464=2196000
Exp1465=2197500
Exp1466=2199000
Exp1467=2200500
Exp1468=2202000
Exp1469=2203500
Exp1470=2205000
Exp1471=2206500
Exp1472=2208000
Exp1473=2209500
Exp1474=2211000
Exp1475=2212500
Exp1476=2214000
Exp1477=2215500
Exp1478=2217000
Exp1479=2218500
Exp1480=2220000
Exp1481=2221500
Exp1482=2223000
Exp1483=2224500
Exp1484=2226000
Exp1485=2227500
Exp1486=2229000
Exp1487=2230500
Exp1488=2232000
Exp1489=2233500
Exp1490=2235000
Exp1491=2236500
Exp1492=2238000
Exp1493=2239500
Exp1494=2241000
Exp1495=2242500
Exp1496=2244000
Exp1497=2245500
Exp1498=2247000
Exp1499=2248500
Exp1500=2250000
Exp1501=2251500
Exp1502=2253000
Exp1503=2254500
Exp1504=2256000
Exp1505=2257500
Exp1506=2259000
Exp1507=2260500
Exp1508=2262000
Exp1509=2263500
Exp1510=2265000
Exp1511=2266500
Exp1512=2268000
Exp1513=2269500
Exp1514=2271000
Exp1515=2272500
Exp1516=2274000
Exp1517=2275500
Exp1518=2277000
Exp1519=2278500
Exp1520=2280000
Exp1521=2281500
Exp1522=2283000
Exp1523=2284500
Exp1524=2286000
Exp1525=2287500
Exp1526=2289000
Exp1527=2290500
Exp1528=2292000
Exp1529=2293500
Exp1530=2295000
Exp1531=2296500
Exp1532=2298000
Exp1533=2299500
Exp1534=2301000
Exp1535=2302500
Exp1536=2304000
Exp1537=2305500
Exp1538=2307000
Exp1539=2308500
Exp1540=2310000
Exp1541=2311500
Exp1542=2313000
Exp1543=2314500
Exp1544=2316000
Exp1545=2317500
Exp1546=2319000
Exp1547=2320500
Exp1548=2322000
Exp1549=2323500
Exp1550=2325000
Exp1551=2326500
Exp1552=2328000
Exp1553=2329500
Exp1554=2331000
Exp1555=2332500
Exp1556=2334000
Exp1557=2335500
Exp1558=2337000
Exp1559=2338500
Exp1560=2340000
Exp1561=2341500
Exp1562=2343000
Exp1563=2344500
Exp1564=2346000
Exp1565=2347500
Exp1566=2349000
Exp1567=2350500
Exp1568=2352000
Exp1569=2353500
Exp1570=2355000
Exp1571=2356500
Exp1572=2358000
Exp1573=2359500
Exp1574=2361000
Exp1575=2362500
Exp1576=2364000
Exp1577=2365500
Exp1578=2367000
Exp1579=2368500
Exp1580=2370000
Exp1581=2371500
Exp1582=2373000
Exp1583=2374500
Exp1584=2376000
Exp1585=2377500
Exp1586=2379000
Exp1587=2380500
Exp1588=2382000
Exp1589=2383500
Exp1590=2385000
Exp1591=2386500
Exp1592=2388000
Exp1593=2389500
Exp1594=2391000
Exp1595=2392500
Exp1596=2394000
Exp1597=2395500
Exp1598=2397000
Exp1599=2398500
Exp1600=2400000
Exp1601=2401500
Exp1602=2403000
Exp1603=2404500
Exp1604=2406000
Exp1605=2407500
Exp1606=2409000
Exp1607=2410500
Exp1608=2412000
Exp1609=2413500
Exp1610=2415000
Exp1611=2416500
Exp1612=2418000
Exp1613=2419500
Exp1614=2421000
Exp1615=2422500
Exp1616=2424000
Exp1617=2425500
Exp1618=2427000
Exp1619=2428500
Exp1620=2430000
Exp1621=2431500
Exp1622=2433000
Exp1623=2434500
Exp1624=2436000
Exp1625=2437500
Exp1626=2439000
Exp1627=2440500
Exp1628=2442000
Exp1629=2443500
Exp1630=2445000
Exp1631=2446500
Exp1632=2448000
Exp1633=2449500
Exp1634=2451000
Exp1635=2452500
Exp1636=2454000
Exp1637=2455500
Exp1638=2457000
Exp1639=2458500
Exp1640=2460000
Exp1641=2461500
Exp1642=2463000
Exp1643=2464500
Exp1644=2466000
Exp1645=2467500
Exp1646=2469000
Exp1647=2470500
Exp1648=2472000
Exp1649=2473500
Exp1650=2475000
Exp1651=2476500
Exp1652=2478000
Exp1653=2479500
Exp1654=2481000
Exp1655=2482500
Exp1656=2484000
Exp1657=2485500
Exp1658=2487000
Exp1659=2488500
Exp1660=2490000
Exp1661=2491500
Exp1662=2493000
Exp1663=2494500
Exp1664=2496000
Exp1665=2497500
Exp1666=2499000
Exp1667=2500500
Exp1668=2502000
Exp1669=2503500
Exp1670=2505000
Exp1671=2506500
Exp1672=2508000
Exp1673=2509500
Exp1674=2511000
Exp1675=2512500
Exp1676=2514000
Exp1677=2515500
Exp1678=2517000
Exp1679=2518500
Exp1680=2520000
Exp1681=2521500
Exp1682=2523000
Exp1683=2524500
Exp1684=2526000
Exp1685=2527500
Exp1686=2529000
Exp1687=2530500
Exp1688=2532000
Exp1689=2533500
Exp1690=2535000
Exp1691=2536500
Exp1692=2538000
Exp1693=2539500
Exp1694=2541000
Exp1695=2542500
Exp1696=2544000
Exp1697=2545500
Exp1698=2547000
Exp1699=2548500
Exp1700=2550000
Exp1701=2551500
Exp1702=2553000
Exp1703=2554500
Exp1704=2556000
Exp1705=2557500
Exp1706=2559000
Exp1707=2560500
Exp1708=2562000
Exp1709=2563500
Exp1710=2565000
Exp1711=2566500
Exp1712=2568000
Exp1713=2569500
Exp1714=2571000
Exp1715=2572500
Exp1716=2574000
Exp1717=2575500
Exp1718=2577000
Exp1719=2578500
Exp1720=2580000
Exp1721=2581500
Exp1722=2583000
Exp1723=2584500
Exp1724=2586000
Exp1725=2587500
Exp1726=2589000
Exp1727=2590500
Exp1728=2592000
Exp1729=2593500
Exp1730=2595000
Exp1731=2596500
Exp1732=2598000
Exp1733=2599500
Exp1734=2601000
Exp1735=2602500
Exp1736=2604000
Exp1737=2605500
Exp1738=2607000
Exp1739=2608500
Exp1740=2610000
Exp1741=2611500
Exp1742=2613000
Exp1743=2614500
Exp1744=2616000
Exp1745=2617500
Exp1746=2619000
Exp1747=2620500
Exp1748=2622000
Exp1749=2623500
Exp1750=2625000
Exp1751=2626500
Exp1752=2628000
Exp1753=2629500
Exp1754=2631000
Exp1755=2632500
Exp1756=2634000
Exp1757=2635500
Exp1758=2637000
Exp1759=2638500
Exp1760=2640000
Exp1761=2641500
Exp1762=2643000
Exp1763=2644500
Exp1764=2646000
Exp1765=2647500
Exp1766=2649000
Exp1767=2650500
Exp1768=2652000
Exp1769=2653500
Exp1770=2655000
Exp1771=2656500
Exp1772=2658000
Exp1773=2659500
Exp1774=2661000
Exp1775=2662500
Exp1776=2664000
Exp1777=2665500
Exp1778=2667000
Exp1779=2668500
Exp1780=2670000
Exp1781=2671500
Exp1782=2673000
Exp1783=2674500
Exp1784=2676000
Exp1785=2677500
Exp1786=2679000
Exp1787=2680500
Exp1788=2682000
Exp1789=2683500
Exp1790=2685000
Exp1791=2686500
Exp1792=2688000
Exp1793=2689500
Exp1794=2691000
Exp1795=2692500
Exp1796=2694000
Exp1797=2695500
Exp1798=2697000
Exp1799=2698500
Exp1800=2700000
Exp1801=2701500
Exp1802=2703000
Exp1803=2704500
Exp1804=2706000
Exp1805=2707500
Exp1806=2709000
Exp1807=2710500
Exp1808=2712000
Exp1809=2713500
Exp1810=2715000
Exp1811=2716500
Exp1812=2718000
Exp1813=2719500
Exp1814=2721000
Exp1815=2722500
Exp1816=2724000
Exp1817=2725500
Exp1818=2727000
Exp1819=2728500
Exp1820=2730000
Exp1821=2731500
Exp1822=2733000
Exp1823=2734500
Exp1824=2736000
Exp1825=2737500
Exp1826=2739000
Exp1827=2740500
Exp1828=2742000
Exp1829=2743500
Exp1830=2745000
Exp1831=2746500
Exp1832=2748000
Exp1833=2749500
Exp1834=2751000
Exp1835=2752500
Exp1836=2754000
Exp1837=2755500
Exp1838=2757000
Exp1839=2758500
Exp1840=2760000
Exp1841=2761500
Exp1842=2763000
Exp1843=2764500
Exp1844=2766000
Exp1845=2767500
Exp1846=2769000
Exp1847=2770500
Exp1848=2772000
Exp1849=2773500
Exp1850=2775000
Exp1851=2776500
Exp1852=2778000
Exp1853=2779500
Exp1854=2781000
Exp1855=2782500
Exp1856=2784000
Exp1857=2785500
Exp1858=2787000
Exp1859=2788500
Exp1860=2790000
Exp1861=2791500
Exp1862=2793000
Exp1863=2794500
Exp1864=2796000
Exp1865=2797500
Exp1866=2799000
Exp1867=2800500
Exp1868=2802000
Exp1869=2803500
Exp1870=2805000
Exp1871=2806500
Exp1872=2808000
Exp1873=2809500
Exp1874=2811000
Exp1875=2812500
Exp1876=2814000
Exp1877=2815500
Exp1878=2817000
Exp1879=2818500
Exp1880=2820000
Exp1881=2821500
Exp1882=2823000
Exp1883=2824500
Exp1884=2826000
Exp1885=2827500
Exp1886=2829000
Exp1887=2830500
Exp1888=2832000
Exp1889=2833500
Exp1890=2835000
Exp1891=2836500
Exp1892=2838000
Exp1893=2839500
Exp1894=2841000
Exp1895=2842500
Exp1896=2844000
Exp1897=2845500
Exp1898=2847000
Exp1899=2848500
Exp1900=2850000
Exp1901=2851500
Exp1902=2853000
Exp1903=2854500
Exp1904=2856000
Exp1905=2857500
Exp1906=2859000
Exp1907=2860500
Exp1908=2862000
Exp1909=2863500
Exp1910=2865000
Exp1911=2866500
Exp1912=2868000
Exp1913=2869500
Exp1914=2871000
Exp1915=2872500
Exp1916=2874000
Exp1917=2875500
Exp1918=2877000
Exp1919=2878500
Exp1920=2880000
Exp1921=2881500
Exp1922=2883000
Exp1923=2884500
Exp1924=2886000
Exp1925=2887500
Exp1926=2889000
Exp1927=2890500
Exp1928=2892000
Exp1929=2893500
Exp1930=2895000
Exp1931=2896500
Exp1932=2898000
Exp1933=2899500
Exp1934=2901000
Exp1935=2902500
Exp1936=2904000
Exp1937=2905500
Exp1938=2907000
Exp1939=2908500
Exp1940=2910000
Exp1941=2911500
Exp1942=2913000
Exp1943=2914500
Exp1944=2916000
Exp1945=2917500
Exp1946=2919000
Exp1947=2920500
Exp1948=2922000
Exp1949=2923500
Exp1950=2925000
Exp1951=2926500
Exp1952=2928000
Exp1953=2929500
Exp1954=2931000
Exp1955=2932500
Exp1956=2934000
Exp1957=2935500
Exp1958=2937000
Exp1959=2938500
Exp1960=2940000
Exp1961=2941500
Exp1962=2943000
Exp1963=2944500
Exp1964=2946000
Exp1965=2947500
Exp1966=2949000
Exp1967=2950500
Exp1968=2952000
Exp1969=2953500
Exp1970=2955000
Exp1971=2956500
Exp1972=2958000
Exp1973=2959500
Exp1974=2961000
Exp1975=2962500
Exp1976=2964000
Exp1977=2965500
Exp1978=2967000
Exp1979=2968500
Exp1980=2970000
Exp1981=2971500
Exp1982=2973000
Exp1983=2974500
Exp1984=2976000
Exp1985=2977500
Exp1986=2979000
Exp1987=2980500
Exp1988=2982000
Exp1989=2983500
Exp1990=2985000
Exp1991=2986500
Exp1992=2988000
Exp1993=2989500
Exp1994=2991000
Exp1995=2992500
Exp1996=2994000
Exp1997=2995500
Exp1998=2997000
Exp1999=2998500
Exp2000=3000000
Exp2001=3001500
Exp2002=3003000
Exp2003=3004500
Exp2004=3006000
Exp2005=3007500
Exp2006=3009000
Exp2007=3010500
Exp2008=3012000
Exp2009=3013500
Exp2010=3015000
Exp2011=3016500
Exp2012=3018000
Exp2013=3019500
Exp2014=3021000
Exp2015=3022500
Exp2016=3024000
Exp2017=3025500
Exp2018=3027000
Exp2019=3028500
Exp2020=3030000
Exp2021=3031500
Exp2022=3033000
Exp2023=3034500
Exp2024=3036000
Exp2025=3037500
Exp2026=3039000
Exp2027=3040500
Exp2028=3042000
Exp2029=3043500
Exp2030=3045000
Exp2031=3046500
Exp2032=3048000
Exp2033=3049500
Exp2034=3051000
Exp2035=3052500
Exp2036=3054000
Exp2037=3055500
Exp2038=3057000
Exp2039=3058500
Exp2040=3060000
Exp2041=3061500
Exp2042=3063000
Exp2043=3064500
Exp2044=3066000
Exp2045=3067500
Exp2046=3069000
Exp2047=3070500
Exp2048=3072000
Exp2049=3073500
Exp2050=3075000
Exp2051=3076500
Exp2052=3078000
Exp2053=3079500
Exp2054=3081000
Exp2055=3082500
Exp2056=3084000
Exp2057=3085500
Exp2058=3087000
Exp2059=3088500
Exp2060=3090000
Exp2061=3091500
Exp2062=3093000
Exp2063=3094500
Exp2064=3096000
Exp2065=3097500
Exp2066=3099000
Exp2067=3100500
Exp2068=3102000
Exp2069=3103500
Exp2070=3105000
Exp2071=3106500
Exp2072=3108000
Exp2073=3109500
Exp2074=3111000
Exp2075=3112500
Exp2076=3114000
Exp2077=3115500
Exp2078=3117000
Exp2079=3118500
Exp2080=3120000
Exp2081=3121500
Exp2082=3123000
Exp2083=3124500
Exp2084=3126000
Exp2085=3127500
Exp2086=3129000
Exp2087=3130500
Exp2088=3132000
Exp2089=3133500
Exp2090=3135000
Exp2091=3136500
Exp2092=3138000
Exp2093=3139500
Exp2094=3141000
Exp2095=3142500
Exp2096=3144000
Exp2097=3145500
Exp2098=3147000
Exp2099=3148500
Exp2100=3150000
Exp2101=3151500
Exp2102=3153000
Exp2103=3154500
Exp2104=3156000
Exp2105=3157500
Exp2106=3159000
Exp2107=3160500
Exp2108=3162000
Exp2109=3163500
Exp2110=3165000
Exp2111=3166500
Exp2112=3168000
Exp2113=3169500
Exp2114=3171000
Exp2115=3172500
Exp2116=3174000
Exp2117=3175500
Exp2118=3177000
Exp2119=3178500
Exp2120=3180000
Exp2121=3181500
Exp2122=3183000
Exp2123=3184500
Exp2124=3186000
Exp2125=3187500
Exp2126=3189000
Exp2127=3190500
Exp2128=3192000
Exp2129=3193500
Exp2130=3195000
Exp2131=3196500
Exp2132=3198000
Exp2133=3199500
Exp2134=3201000
Exp2135=3202500
Exp2136=3204000
Exp2137=3205500
Exp2138=3207000
Exp2139=3208500
Exp2140=3210000
Exp2141=3211500
Exp2142=3213000
Exp2143=3214500
Exp2144=3216000
Exp2145=3217500
Exp2146=3219000
Exp2147=3220500
Exp2148=3222000
Exp2149=3223500
Exp2150=3225000
Exp2151=3226500
Exp2152=3228000
Exp2153=3229500
Exp2154=3231000
Exp2155=3232500
Exp2156=3234000
Exp2157=3235500
Exp2158=3237000
Exp2159=3238500
Exp2160=3240000
Exp2161=3241500
Exp2162=3243000
Exp2163=3244500
Exp2164=3246000
Exp2165=3247500
Exp2166=3249000
Exp2167=3250500
Exp2168=3252000
Exp2169=3253500
Exp2170=3255000
Exp2171=3256500
Exp2172=3258000
Exp2173=3259500
Exp2174=3261000
Exp2175=3262500
Exp2176=3264000
Exp2177=3265500
Exp2178=3267000
Exp2179=3268500
Exp2180=3270000
Exp2181=3271500
Exp2182=3273000
Exp2183=3274500
Exp2184=3276000
Exp2185=3277500
Exp2186=3279000
Exp2187=3280500
Exp2188=3282000
Exp2189=3283500
Exp2190=3285000
Exp2191=3286500
Exp2192=3288000
Exp2193=3289500
Exp2194=3291000
Exp2195=3292500
Exp2196=3294000
Exp2197=3295500
Exp2198=3297000
Exp2199=3298500
Exp2200=3300000
Exp2201=3301500
Exp2202=3303000
Exp2203=3304500
Exp2204=3306000
Exp2205=3307500
Exp2206=3309000
Exp2207=3310500
Exp2208=3312000
Exp2209=3313500
Exp2210=3315000
Exp2211=3316500
Exp2212=3318000
Exp2213=3319500
Exp2214=3321000
Exp2215=3322500
Exp2216=3324000
Exp2217=3325500
Exp2218=3327000
Exp2219=3328500
Exp2220=3330000
Exp2221=3331500
Exp2222=3333000
Exp2223=3334500
Exp2224=3336000
Exp2225=3337500
Exp2226=3339000
Exp2227=3340500
Exp2228=3342000
Exp2229=3343500
Exp2230=3345000
Exp2231=3346500
Exp2232=3348000
Exp2233=3349500
Exp2234=3351000
Exp2235=3352500
Exp2236=3354000
Exp2237=3355500
Exp2238=3357000
Exp2239=3358500
Exp2240=3360000
Exp2241=3361500
Exp2242=3363000
Exp2243=3364500
Exp2244=3366000
Exp2245=3367500
Exp2246=3369000
Exp2247=3370500
Exp2248=3372000
Exp2249=3373500
Exp2250=3375000
Exp2251=3376500
Exp2252=3378000
Exp2253=3379500
Exp2254=3381000
Exp2255=3382500
Exp2256=3384000
Exp2257=3385500
Exp2258=3387000
Exp2259=3388500
Exp2260=3390000
Exp2261=3391500
Exp2262=3393000
Exp2263=3394500
Exp2264=3396000
Exp2265=3397500
Exp2266=3399000
Exp2267=3400500
Exp2268=3402000
Exp2269=3403500
Exp2270=3405000
Exp2271=3406500
Exp2272=3408000
Exp2273=3409500
Exp2274=3411000
Exp2275=3412500
Exp2276=3414000
Exp2277=3415500
Exp2278=3417000
Exp2279=3418500
Exp2280=3420000
Exp2281=3421500
Exp2282=3423000
Exp2283=3424500
Exp2284=3426000
Exp2285=3427500
Exp2286=3429000
Exp2287=3430500
Exp2288=3432000
Exp2289=3433500
Exp2290=3435000
Exp2291=3436500
Exp2292=3438000
Exp2293=3439500
Exp2294=3441000
Exp2295=3442500
Exp2296=3444000
Exp2297=3445500
Exp2298=3447000
Exp2299=3448500
Exp2300=3450000
Exp2301=3451500
Exp2302=3453000
Exp2303=3454500
Exp2304=3456000
Exp2305=3457500
Exp2306=3459000
Exp2307=3460500
Exp2308=3462000
Exp2309=3463500
Exp2310=3465000
Exp2311=3466500
Exp2312=3468000
Exp2313=3469500
Exp2314=3471000
Exp2315=3472500
Exp2316=3474000
Exp2317=3475500
Exp2318=3477000
Exp2319=3478500
Exp2320=3480000
Exp2321=3481500
Exp2322=3483000
Exp2323=3484500
Exp2324=3486000
Exp2325=3487500
Exp2326=3489000
Exp2327=3490500
Exp2328=3492000
Exp2329=3493500
Exp2330=3495000
Exp2331=3496500
Exp2332=3498000
Exp2333=3499500
Exp2334=3501000
Exp2335=3502500
Exp2336=3504000
Exp2337=3505500
Exp2338=3507000
Exp2339=3508500
Exp2340=3510000
Exp2341=3511500
Exp2342=3513000
Exp2343=3514500
Exp2344=3516000
Exp2345=3517500
Exp2346=3519000
Exp2347=3520500
Exp2348=3522000
Exp2349=3523500
Exp2350=3525000
Exp2351=3526500
Exp2352=3528000
Exp2353=3529500
Exp2354=3531000
Exp2355=3532500
Exp2356=3534000
Exp2357=3535500
Exp2358=3537000
Exp2359=3538500
Exp2360=3540000
Exp2361=3541500
Exp2362=3543000
Exp2363=3544500
Exp2364=3546000
Exp2365=3547500
Exp2366=3549000
Exp2367=3550500
Exp2368=3552000
Exp2369=3553500
Exp2370=3555000
Exp2371=3556500
Exp2372=3558000
Exp2373=3559500
Exp2374=3561000
Exp2375=3562500
Exp2376=3564000
Exp2377=3565500
Exp2378=3567000
Exp2379=3568500
Exp2380=3570000
Exp2381=3571500
Exp2382=3573000
Exp2383=3574500
Exp2384=3576000
Exp2385=3577500
Exp2386=3579000
Exp2387=3580500
Exp2388=3582000
Exp2389=3583500
Exp2390=3585000
Exp2391=3586500
Exp2392=3588000
Exp2393=3589500
Exp2394=3591000
Exp2395=3592500
Exp2396=3594000
Exp2397=3595500
Exp2398=3597000
Exp2399=3598500
Exp2400=3600000
Exp2401=3601500
Exp2402=3603000
Exp2403=3604500
Exp2404=3606000
Exp2405=3607500
Exp2406=3609000
Exp2407=3610500
Exp2408=3612000
Exp2409=3613500
Exp2410=3615000
Exp2411=3616500
Exp2412=3618000
Exp2413=3619500
Exp2414=3621000
Exp2415=3622500
Exp2416=3624000
Exp2417=3625500
Exp2418=3627000
Exp2419=3628500
Exp2420=3630000
Exp2421=3631500
Exp2422=3633000
Exp2423=3634500
Exp2424=3636000
Exp2425=3637500
Exp2426=3639000
Exp2427=3640500
Exp2428=3642000
Exp2429=3643500
Exp2430=3645000
Exp2431=3646500
Exp2432=3648000
Exp2433=3649500
Exp2434=3651000
Exp2435=3652500
Exp2436=3654000
Exp2437=3655500
Exp2438=3657000
Exp2439=3658500
Exp2440=3660000
Exp2441=3661500
Exp2442=3663000
Exp2443=3664500
Exp2444=3666000
Exp2445=3667500
Exp2446=3669000
Exp2447=3670500
Exp2448=3672000
Exp2449=3673500
Exp2450=3675000
Exp2451=3676500
Exp2452=3678000
Exp2453=3679500
Exp2454=3681000
Exp2455=3682500
Exp2456=3684000
Exp2457=3685500
Exp2458=3687000
Exp2459=3688500
Exp2460=3690000
Exp2461=3691500
Exp2462=3693000
Exp2463=3694500
Exp2464=3696000
Exp2465=3697500
Exp2466=3699000
Exp2467=3700500
Exp2468=3702000
Exp2469=3703500
Exp2470=3705000
Exp2471=3706500
Exp2472=3708000
Exp2473=3709500
Exp2474=3711000
Exp2475=3712500
Exp2476=3714000
Exp2477=3715500
Exp2478=3717000
Exp2479=3718500
Exp2480=3720000
Exp2481=3721500
Exp2482=3723000
Exp2483=3724500
Exp2484=3726000
Exp2485=3727500
Exp2486=3729000
Exp2487=3730500
Exp2488=3732000
Exp2489=3733500
Exp2490=3735000
Exp2491=3736500
Exp2492=3738000
Exp2493=3739500
Exp2494=3741000
Exp2495=3742500
Exp2496=3744000
Exp2497=3745500
Exp2498=3747000
Exp2499=3748500
Exp2500=3750000
Exp2501=3751500
Exp2502=3753000
Exp2503=3754500
Exp2504=3756000
Exp2505=3757500
Exp2506=3759000
Exp2507=3760500
Exp2508=3762000
Exp2509=3763500
Exp2510=3765000
Exp2511=3766500
Exp2512=3768000
Exp2513=3769500
Exp2514=3771000
Exp2515=3772500
Exp2516=3774000
Exp2517=3775500
Exp2518=3777000
Exp2519=3778500
Exp2520=3780000
Exp2521=3781500
Exp2522=3783000
Exp2523=3784500
Exp2524=3786000
Exp2525=3787500
Exp2526=3789000
Exp2527=3790500
Exp2528=3792000
Exp2529=3793500
Exp2530=3795000
Exp2531=3796500
Exp2532=3798000
Exp2533=3799500
Exp2534=3801000
Exp2535=3802500
Exp2536=3804000
Exp2537=3805500
Exp2538=3807000
Exp2539=3808500
Exp2540=3810000
Exp2541=3811500
Exp2542=3813000
Exp2543=3814500
Exp2544=3816000
Exp2545=3817500
Exp2546=3819000
Exp2547=3820500
Exp2548=3822000
Exp2549=3823500
Exp2550=3825000
Exp2551=3826500
Exp2552=3828000
Exp2553=3829500
Exp2554=3831000
Exp2555=3832500
Exp2556=3834000
Exp2557=3835500
Exp2558=3837000
Exp2559=3838500
Exp2560=3840000
Exp2561=3841500
Exp2562=3843000
Exp2563=3844500
Exp2564=3846000
Exp2565=3847500
Exp2566=3849000
Exp2567=3850500
Exp2568=3852000
Exp2569=3853500
Exp2570=3855000
Exp2571=3856500
Exp2572=3858000
Exp2573=3859500
Exp2574=3861000
Exp2575=3862500
Exp2576=3864000
Exp2577=3865500
Exp2578=3867000
Exp2579=3868500
Exp2580=3870000
Exp2581=3871500
Exp2582=3873000
Exp2583=3874500
Exp2584=3876000
Exp2585=3877500
Exp2586=3879000
Exp2587=3880500
Exp2588=3882000
Exp2589=3883500
Exp2590=3885000
Exp2591=3886500
Exp2592=3888000
Exp2593=3889500
Exp2594=3891000
Exp2595=3892500
Exp2596=3894000
Exp2597=3895500
Exp2598=3897000
Exp2599=3898500
Exp2600=3900000
Exp2601=3901500
Exp2602=3903000
Exp2603=3904500
Exp2604=3906000
Exp2605=3907500
Exp2606=3909000
Exp2607=3910500
Exp2608=3912000
Exp2609=3913500
Exp2610=3915000
Exp2611=3916500
Exp2612=3918000
Exp2613=3919500
Exp2614=3921000
Exp2615=3922500
Exp2616=3924000
Exp2617=3925500
Exp2618=3927000
Exp2619=3928500
Exp2620=3930000
Exp2621=3931500
Exp2622=3933000
Exp2623=3934500
Exp2624=3936000
Exp2625=3937500
Exp2626=3939000
Exp2627=3940500
Exp2628=3942000
Exp2629=3943500
Exp2630=3945000
Exp2631=3946500
Exp2632=3948000
Exp2633=3949500
Exp2634=3951000
Exp2635=3952500
Exp2636=3954000
Exp2637=3955500
Exp2638=3957000
Exp2639=3958500
Exp2640=3960000
Exp2641=3961500
Exp2642=3963000
Exp2643=3964500
Exp2644=3966000
Exp2645=3967500
Exp2646=3969000
Exp2647=3970500
Exp2648=3972000
Exp2649=3973500
Exp2650=3975000
Exp2651=3976500
Exp2652=3978000
Exp2653=3979500
Exp2654=3981000
Exp2655=3982500
Exp2656=3984000
Exp2657=3985500
Exp2658=3987000
Exp2659=3988500
Exp2660=3990000
Exp2661=3991500
Exp2662=3993000
Exp2663=3994500
Exp2664=3996000
Exp2665=3997500
Exp2666=3999000
Exp2667=4000500
Exp2668=4002000
Exp2669=4003500
Exp2670=4005000
Exp2671=4006500
Exp2672=4008000
Exp2673=4009500
Exp2674=4011000
Exp2675=4012500
Exp2676=4014000
Exp2677=4015500
Exp2678=4017000
Exp2679=4018500
Exp2680=4020000
Exp2681=4021500
Exp2682=4023000
Exp2683=4024500
Exp2684=4026000
Exp2685=4027500
Exp2686=4029000
Exp2687=4030500
Exp2688=4032000
Exp2689=4033500
Exp2690=4035000
Exp2691=4036500
Exp2692=4038000
Exp2693=4039500
Exp2694=4041000
Exp2695=4042500
Exp2696=4044000
Exp2697=4045500
Exp2698=4047000
Exp2699=4048500
Exp2700=4050000
Exp2701=4051500
Exp2702=4053000
Exp2703=4054500
Exp2704=4056000
Exp2705=4057500
Exp2706=4059000
Exp2707=4060500
Exp2708=4062000
Exp2709=4063500
Exp2710=4065000
Exp2711=4066500
Exp2712=4068000
Exp2713=4069500
Exp2714=4071000
Exp2715=4072500
Exp2716=4074000
Exp2717=4075500
Exp2718=4077000
Exp2719=4078500
Exp2720=4080000
Exp2721=4081500
Exp2722=4083000
Exp2723=4084500
Exp2724=4086000
Exp2725=4087500
Exp2726=4089000
Exp2727=4090500
Exp2728=4092000
Exp2729=4093500
Exp2730=4095000
Exp2731=4096500
Exp2732=4098000
Exp2733=4099500
Exp2734=4101000
Exp2735=4102500
Exp2736=4104000
Exp2737=4105500
Exp2738=4107000
Exp2739=4108500
Exp2740=4110000
Exp2741=4111500
Exp2742=4113000
Exp2743=4114500
Exp2744=4116000
Exp2745=4117500
Exp2746=4119000
Exp2747=4120500
Exp2748=4122000
Exp2749=4123500
Exp2750=4125000
Exp2751=4126500
Exp2752=4128000
Exp2753=4129500
Exp2754=4131000
Exp2755=4132500
Exp2756=4134000
Exp2757=4135500
Exp2758=4137000
Exp2759=4138500
Exp2760=4140000
Exp2761=4141500
Exp2762=4143000
Exp2763=4144500
Exp2764=4146000
Exp2765=4147500
Exp2766=4149000
Exp2767=4150500
Exp2768=4152000
Exp2769=4153500
Exp2770=4155000
Exp2771=4156500
Exp2772=4158000
Exp2773=4159500
Exp2774=4161000
Exp2775=4162500
Exp2776=4164000
Exp2777=4165500
Exp2778=4167000
Exp2779=4168500
Exp2780=4170000
Exp2781=4171500
Exp2782=4173000
Exp2783=4174500
Exp2784=4176000
Exp2785=4177500
Exp2786=4179000
Exp2787=4180500
Exp2788=4182000
Exp2789=4183500
Exp2790=4185000
Exp2791=4186500
Exp2792=4188000
Exp2793=4189500
Exp2794=4191000
Exp2795=4192500
Exp2796=4194000
Exp2797=4195500
Exp2798=4197000
Exp2799=4198500
Exp2800=4200000
Exp2801=4201500
Exp2802=4203000
Exp2803=4204500
Exp2804=4206000
Exp2805=4207500
Exp2806=4209000
Exp2807=4210500
Exp2808=4212000
Exp2809=4213500
Exp2810=4215000
Exp2811=4216500
Exp2812=4218000
Exp2813=4219500
Exp2814=4221000
Exp2815=4222500
Exp2816=4224000
Exp2817=4225500
Exp2818=4227000
Exp2819=4228500
Exp2820=4230000
Exp2821=4231500
Exp2822=4233000
Exp2823=4234500
Exp2824=4236000
Exp2825=4237500
Exp2826=4239000
Exp2827=4240500
Exp2828=4242000
Exp2829=4243500
Exp2830=4245000
Exp2831=4246500
Exp2832=4248000
Exp2833=4249500
Exp2834=4251000
Exp2835=4252500
Exp2836=4254000
Exp2837=4255500
Exp2838=4257000
Exp2839=4258500
Exp2840=4260000
Exp2841=4261500
Exp2842=4263000
Exp2843=4264500
Exp2844=4266000
Exp2845=4267500
Exp2846=4269000
Exp2847=4270500
Exp2848=4272000
Exp2849=4273500
Exp2850=4275000
Exp2851=4276500
Exp2852=4278000
Exp2853=4279500
Exp2854=4281000
Exp2855=4282500
Exp2856=4284000
Exp2857=4285500
Exp2858=4287000
Exp2859=4288500
Exp2860=4290000
Exp2861=4291500
Exp2862=4293000
Exp2863=4294500
Exp2864=4296000
Exp2865=4297500
Exp2866=4299000
Exp2867=4300500
Exp2868=4302000
Exp2869=4303500
Exp2870=4305000
Exp2871=4306500
Exp2872=4308000
Exp2873=4309500
Exp2874=4311000
Exp2875=4312500
Exp2876=4314000
Exp2877=4315500
Exp2878=4317000
Exp2879=4318500
Exp2880=4320000
Exp2881=4321500
Exp2882=4323000
Exp2883=4324500
Exp2884=4326000
Exp2885=4327500
Exp2886=4329000
Exp2887=4330500
Exp2888=4332000
Exp2889=4333500
Exp2890=4335000
Exp2891=4336500
Exp2892=4338000
Exp2893=4339500
Exp2894=4341000
Exp2895=4342500
Exp2896=4344000
Exp2897=4345500
Exp2898=4347000
Exp2899=4348500
Exp2900=4350000
Exp2901=4351500
Exp2902=4353000
Exp2903=4354500
Exp2904=4356000
Exp2905=4357500
Exp2906=4359000
Exp2907=4360500
Exp2908=4362000
Exp2909=4363500
Exp2910=4365000
Exp2911=4366500
Exp2912=4368000
Exp2913=4369500
Exp2914=4371000
Exp2915=4372500
Exp2916=4374000
Exp2917=4375500
Exp2918=4377000
Exp2919=4378500
Exp2920=4380000
Exp2921=4381500
Exp2922=4383000
Exp2923=4384500
Exp2924=4386000
Exp2925=4387500
Exp2926=4389000
Exp2927=4390500
Exp2928=4392000
Exp2929=4393500
Exp2930=4395000
Exp2931=4396500
Exp2932=4398000
Exp2933=4399500
Exp2934=4401000
Exp2935=4402500
Exp2936=4404000
Exp2937=4405500
Exp2938=4407000
Exp2939=4408500
Exp2940=4410000
Exp2941=4411500
Exp2942=4413000
Exp2943=4414500
Exp2944=4416000
Exp2945=4417500
Exp2946=4419000
Exp2947=4420500
Exp2948=4422000
Exp2949=4423500
Exp2950=4425000
Exp2951=4426500
Exp2952=4428000
Exp2953=4429500
Exp2954=4431000
Exp2955=4432500
Exp2956=4434000
Exp2957=4435500
Exp2958=4437000
Exp2959=4438500
Exp2960=4440000
Exp2961=4441500
Exp2962=4443000
Exp2963=4444500
Exp2964=4446000
Exp2965=4447500
Exp2966=4449000
Exp2967=4450500
Exp2968=4452000
Exp2969=4453500
Exp2970=4455000
Exp2971=4456500
Exp2972=4458000
Exp2973=4459500
Exp2974=4461000
Exp2975=4462500
Exp2976=4464000
Exp2977=4465500
Exp2978=4467000
Exp2979=4468500
Exp2980=4470000
Exp2981=4471500
Exp2982=4473000
Exp2983=4474500
Exp2984=4476000
Exp2985=4477500
Exp2986=4479000
Exp2987=4480500
Exp2988=4482000
Exp2989=4483500
Exp2990=4485000
Exp2991=4486500
Exp2992=4488000
Exp2993=4489500
Exp2994=4491000
Exp2995=4492500
Exp2996=4494000
Exp2997=4495500
Exp2998=4497000
Exp2999=4498500
Exp3000=4500000
Exp3001=4501500
Exp3002=4503000
Exp3003=4504500
Exp3004=4506000
Exp3005=4507500
Exp3006=4509000
Exp3007=4510500
Exp3008=4512000
Exp3009=4513500
Exp3010=4515000
Exp3011=4516500
Exp3012=4518000
Exp3013=4519500
Exp3014=4521000
Exp3015=4522500
Exp3016=4524000
Exp3017=4525500
Exp3018=4527000
Exp3019=4528500
Exp3020=4530000
Exp3021=4531500
Exp3022=4533000
Exp3023=4534500
Exp3024=4536000
Exp3025=4537500
Exp3026=4539000
Exp3027=4540500
Exp3028=4542000
Exp3029=4543500
Exp3030=4545000
Exp3031=4546500
Exp3032=4548000
Exp3033=4549500
Exp3034=4551000
Exp3035=4552500
Exp3036=4554000
Exp3037=4555500
Exp3038=4557000
Exp3039=4558500
Exp3040=4560000
Exp3041=4561500
Exp3042=4563000
Exp3043=4564500
Exp3044=4566000
Exp3045=4567500
Exp3046=4569000
Exp3047=4570500
Exp3048=4572000
Exp3049=4573500
Exp3050=4575000
Exp3051=4576500
Exp3052=4578000
Exp3053=4579500
Exp3054=4581000
Exp3055=4582500
Exp3056=4584000
Exp3057=4585500
Exp3058=4587000
Exp3059=4588500
Exp3060=4590000
Exp3061=4591500
Exp3062=4593000
Exp3063=4594500
Exp3064=4596000
Exp3065=4597500
Exp3066=4599000
Exp3067=4600500
Exp3068=4602000
Exp3069=4603500
Exp3070=4605000
Exp3071=4606500
Exp3072=4608000
Exp3073=4609500
Exp3074=4611000
Exp3075=4612500
Exp3076=4614000
Exp3077=4615500
Exp3078=4617000
Exp3079=4618500
Exp3080=4620000
Exp3081=4621500
Exp3082=4623000
Exp3083=4624500
Exp3084=4626000
Exp3085=4627500
Exp3086=4629000
Exp3087=4630500
Exp3088=4632000
Exp3089=4633500
Exp3090=4635000
Exp3091=4636500
Exp3092=4638000
Exp3093=4639500
Exp3094=4641000
Exp3095=4642500
Exp3096=4644000
Exp3097=4645500
Exp3098=4647000
Exp3099=4648500
Exp3100=4650000
Exp3101=4651500
Exp3102=4653000
Exp3103=4654500
Exp3104=4656000
Exp3105=4657500
Exp3106=4659000
Exp3107=4660500
Exp3108=4662000
Exp3109=4663500
Exp3110=4665000
Exp3111=4666500
Exp3112=4668000
Exp3113=4669500
Exp3114=4671000
Exp3115=4672500
Exp3116=4674000
Exp3117=4675500
Exp3118=4677000
Exp3119=4678500
Exp3120=4680000
Exp3121=4681500
Exp3122=4683000
Exp3123=4684500
Exp3124=4686000
Exp3125=4687500
Exp3126=4689000
Exp3127=4690500
Exp3128=4692000
Exp3129=4693500
Exp3130=4695000
Exp3131=4696500
Exp3132=4698000
Exp3133=4699500
Exp3134=4701000
Exp3135=4702500
Exp3136=4704000
Exp3137=4705500
Exp3138=4707000
Exp3139=4708500
Exp3140=4710000
Exp3141=4711500
Exp3142=4713000
Exp3143=4714500
Exp3144=4716000
Exp3145=4717500
Exp3146=4719000
Exp3147=4720500
Exp3148=4722000
Exp3149=4723500
Exp3150=4725000
Exp3151=4726500
Exp3152=4728000
Exp3153=4729500
Exp3154=4731000
Exp3155=4732500
Exp3156=4734000
Exp3157=4735500
Exp3158=4737000
Exp3159=4738500
Exp3160=4740000
Exp3161=4741500
Exp3162=4743000
Exp3163=4744500
Exp3164=4746000
Exp3165=4747500
Exp3166=4749000
Exp3167=4750500
Exp3168=4752000
Exp3169=4753500
Exp3170=4755000
Exp3171=4756500
Exp3172=4758000
Exp3173=4759500
Exp3174=4761000
Exp3175=4762500
Exp3176=4764000
Exp3177=4765500
Exp3178=4767000
Exp3179=4768500
Exp3180=4770000
Exp3181=4771500
Exp3182=4773000
Exp3183=4774500
Exp3184=4776000
Exp3185=4777500
Exp3186=4779000
Exp3187=4780500
Exp3188=4782000
Exp3189=4783500
Exp3190=4785000
Exp3191=4786500
Exp3192=4788000
Exp3193=4789500
Exp3194=4791000
Exp3195=4792500
Exp3196=4794000
Exp3197=4795500
Exp3198=4797000
Exp3199=4798500
Exp3200=4800000
Exp3201=4801500
Exp3202=4803000
Exp3203=4804500
Exp3204=4806000
Exp3205=4807500
Exp3206=4809000
Exp3207=4810500
Exp3208=4812000
Exp3209=4813500
Exp3210=4815000
Exp3211=4816500
Exp3212=4818000
Exp3213=4819500
Exp3214=4821000
Exp3215=4822500
Exp3216=4824000
Exp3217=4825500
Exp3218=4827000
Exp3219=4828500
Exp3220=4830000
Exp3221=4831500
Exp3222=4833000
Exp3223=4834500
Exp3224=4836000
Exp3225=4837500
Exp3226=4839000
Exp3227=4840500
Exp3228=4842000
Exp3229=4843500
Exp3230=4845000
Exp3231=4846500
Exp3232=4848000
Exp3233=4849500
Exp3234=4851000
Exp3235=4852500
Exp3236=4854000
Exp3237=4855500
Exp3238=4857000
Exp3239=4858500
Exp3240=4860000
Exp3241=4861500
Exp3242=4863000
Exp3243=4864500
Exp3244=4866000
Exp3245=4867500
Exp3246=4869000
Exp3247=4870500
Exp3248=4872000
Exp3249=4873500
Exp3250=4875000
Exp3251=4876500
Exp3252=4878000
Exp3253=4879500
Exp3254=4881000
Exp3255=4882500
Exp3256=4884000
Exp3257=4885500
Exp3258=4887000
Exp3259=4888500
Exp3260=4890000
Exp3261=4891500
Exp3262=4893000
Exp3263=4894500
Exp3264=4896000
Exp3265=4897500
Exp3266=4899000
Exp3267=4900500
Exp3268=4902000
Exp3269=4903500
Exp3270=4905000
Exp3271=4906500
Exp3272=4908000
Exp3273=4909500
Exp3274=4911000
Exp3275=4912500
Exp3276=4914000
Exp3277=4915500
Exp3278=4917000
Exp3279=4918500
Exp3280=4920000
Exp3281=4921500
Exp3282=4923000
Exp3283=4924500
Exp3284=4926000
Exp3285=4927500
Exp3286=4929000
Exp3287=4930500
Exp3288=4932000
Exp3289=4933500
Exp3290=4935000
Exp3291=4936500
Exp3292=4938000
Exp3293=4939500
Exp3294=4941000
Exp3295=4942500
Exp3296=4944000
Exp3297=4945500
Exp3298=4947000
Exp3299=4948500
Exp3300=4950000
Exp3301=4951500
Exp3302=4953000
Exp3303=4954500
Exp3304=4956000
Exp3305=4957500
Exp3306=4959000
Exp3307=4960500
Exp3308=4962000
Exp3309=4963500
Exp3310=4965000
Exp3311=4966500
Exp3312=4968000
Exp3313=4969500
Exp3314=4971000
Exp3315=4972500
Exp3316=4974000
Exp3317=4975500
Exp3318=4977000
Exp3319=4978500
Exp3320=4980000
Exp3321=4981500
Exp3322=4983000
Exp3323=4984500
Exp3324=4986000
Exp3325=4987500
Exp3326=4989000
Exp3327=4990500
Exp3328=4992000
Exp3329=4993500
Exp3330=4995000
Exp3331=4996500
Exp3332=4998000
Exp3333=4999500
Exp3334=5001000
Exp3335=5002500
Exp3336=5004000
Exp3337=5005500
Exp3338=5007000
Exp3339=5008500
Exp3340=5010000
Exp3341=5011500
Exp3342=5013000
Exp3343=5014500
Exp3344=5016000
Exp3345=5017500
Exp3346=5019000
Exp3347=5020500
Exp3348=5022000
Exp3349=5023500
Exp3350=5025000
Exp3351=5026500
Exp3352=5028000
Exp3353=5029500
Exp3354=5031000
Exp3355=5032500
Exp3356=5034000
Exp3357=5035500
Exp3358=5037000
Exp3359=5038500
Exp3360=5040000
Exp3361=5041500
Exp3362=5043000
Exp3363=5044500
Exp3364=5046000
Exp3365=5047500
Exp3366=5049000
Exp3367=5050500
Exp3368=5052000
Exp3369=5053500
Exp3370=5055000
Exp3371=5056500
Exp3372=5058000
Exp3373=5059500
Exp3374=5061000
Exp3375=5062500
Exp3376=5064000
Exp3377=5065500
Exp3378=5067000
Exp3379=5068500
Exp3380=5070000
Exp3381=5071500
Exp3382=5073000
Exp3383=5074500
Exp3384=5076000
Exp3385=5077500
Exp3386=5079000
Exp3387=5080500
Exp3388=5082000
Exp3389=5083500
Exp3390=5085000
Exp3391=5086500
Exp3392=5088000
Exp3393=5089500
Exp3394=5091000
Exp3395=5092500
Exp3396=5094000
Exp3397=5095500
Exp3398=5097000
Exp3399=5098500
Exp3400=5100000
Exp3401=5101500
Exp3402=5103000
Exp3403=5104500
Exp3404=5106000
Exp3405=5107500
Exp3406=5109000
Exp3407=5110500
Exp3408=5112000
Exp3409=5113500
Exp3410=5115000
Exp3411=5116500
Exp3412=5118000
Exp3413=5119500
Exp3414=5121000
Exp3415=5122500
Exp3416=5124000
Exp3417=5125500
Exp3418=5127000
Exp3419=5128500
Exp3420=5130000
Exp3421=5131500
Exp3422=5133000
Exp3423=5134500
Exp3424=5136000
Exp3425=5137500
Exp3426=5139000
Exp3427=5140500
Exp3428=5142000
Exp3429=5143500
Exp3430=5145000
Exp3431=5146500
Exp3432=5148000
Exp3433=5149500
Exp3434=5151000
Exp3435=5152500
Exp3436=5154000
Exp3437=5155500
Exp3438=5157000
Exp3439=5158500
Exp3440=5160000
Exp3441=5161500
Exp3442=5163000
Exp3443=5164500
Exp3444=5166000
Exp3445=5167500
Exp3446=5169000
Exp3447=5170500
Exp3448=5172000
Exp3449=5173500
Exp3450=5175000
Exp3451=5176500
Exp3452=5178000
Exp3453=5179500
Exp3454=5181000
Exp3455=5182500
Exp3456=5184000
Exp3457=5185500
Exp3458=5187000
Exp3459=5188500
Exp3460=5190000
Exp3461=5191500
Exp3462=5193000
Exp3463=5194500
Exp3464=5196000
Exp3465=5197500
Exp3466=5199000
Exp3467=5200500
Exp3468=5202000
Exp3469=5203500
Exp3470=5205000
Exp3471=5206500
Exp3472=5208000
Exp3473=5209500
Exp3474=5211000
Exp3475=5212500
Exp3476=5214000
Exp3477=5215500
Exp3478=5217000
Exp3479=5218500
Exp3480=5220000
Exp3481=5221500
Exp3482=5223000
Exp3483=5224500
Exp3484=5226000
Exp3485=5227500
Exp3486=5229000
Exp3487=5230500
Exp3488=5232000
Exp3489=5233500
Exp3490=5235000
Exp3491=5236500
Exp3492=5238000
Exp3493=5239500
Exp3494=5241000
Exp3495=5242500
Exp3496=5244000
Exp3497=5245500
Exp3498=5247000
Exp3499=5248500
Exp3500=5250000
Exp3501=5251500
Exp3502=5253000
Exp3503=5254500
Exp3504=5256000
Exp3505=5257500
Exp3506=5259000
Exp3507=5260500
Exp3508=5262000
Exp3509=5263500
Exp3510=5265000
Exp3511=5266500
Exp3512=5268000
Exp3513=5269500
Exp3514=5271000
Exp3515=5272500
Exp3516=5274000
Exp3517=5275500
Exp3518=5277000
Exp3519=5278500
Exp3520=5280000
Exp3521=5281500
Exp3522=5283000
Exp3523=5284500
Exp3524=5286000
Exp3525=5287500
Exp3526=5289000
Exp3527=5290500
Exp3528=5292000
Exp3529=5293500
Exp3530=5295000
Exp3531=5296500
Exp3532=5298000
Exp3533=5299500
Exp3534=5301000
Exp3535=5302500
Exp3536=5304000
Exp3537=5305500
Exp3538=5307000
Exp3539=5308500
Exp3540=5310000
Exp3541=5311500
Exp3542=5313000
Exp3543=5314500
Exp3544=5316000
Exp3545=5317500
Exp3546=5319000
Exp3547=5320500
Exp3548=5322000
Exp3549=5323500
Exp3550=5325000
Exp3551=5326500
Exp3552=5328000
Exp3553=5329500
Exp3554=5331000
Exp3555=5332500
Exp3556=5334000
Exp3557=5335500
Exp3558=5337000
Exp3559=5338500
Exp3560=5340000
Exp3561=5341500
Exp3562=5343000
Exp3563=5344500
Exp3564=5346000
Exp3565=5347500
Exp3566=5349000
Exp3567=5350500
Exp3568=5352000
Exp3569=5353500
Exp3570=5355000
Exp3571=5356500
Exp3572=5358000
Exp3573=5359500
Exp3574=5361000
Exp3575=5362500
Exp3576=5364000
Exp3577=5365500
Exp3578=5367000
Exp3579=5368500
Exp3580=5370000
Exp3581=5371500
Exp3582=5373000
Exp3583=5374500
Exp3584=5376000
Exp3585=5377500
Exp3586=5379000
Exp3587=5380500
Exp3588=5382000
Exp3589=5383500
Exp3590=5385000
Exp3591=5386500
Exp3592=5388000
Exp3593=5389500
Exp3594=5391000
Exp3595=5392500
Exp3596=5394000
Exp3597=5395500
Exp3598=5397000
Exp3599=5398500
Exp3600=5400000
Exp3601=5401500
Exp3602=5403000
Exp3603=5404500
Exp3604=5406000
Exp3605=5407500
Exp3606=5409000
Exp3607=5410500
Exp3608=5412000
Exp3609=5413500
Exp3610=5415000
Exp3611=5416500
Exp3612=5418000
Exp3613=5419500
Exp3614=5421000
Exp3615=5422500
Exp3616=5424000
Exp3617=5425500
Exp3618=5427000
Exp3619=5428500
Exp3620=5430000
Exp3621=5431500
Exp3622=5433000
Exp3623=5434500
Exp3624=5436000
Exp3625=5437500
Exp3626=5439000
Exp3627=5440500
Exp3628=5442000
Exp3629=5443500
Exp3630=5445000
Exp3631=5446500
Exp3632=5448000
Exp3633=5449500
Exp3634=5451000
Exp3635=5452500
Exp3636=5454000
Exp3637=5455500
Exp3638=5457000
Exp3639=5458500
Exp3640=5460000
Exp3641=5461500
Exp3642=5463000
Exp3643=5464500
Exp3644=5466000
Exp3645=5467500
Exp3646=5469000
Exp3647=5470500
Exp3648=5472000
Exp3649=5473500
Exp3650=5475000
Exp3651=5476500
Exp3652=5478000
Exp3653=5479500
Exp3654=5481000
Exp3655=5482500
Exp3656=5484000
Exp3657=5485500
Exp3658=5487000
Exp3659=5488500
Exp3660=5490000
Exp3661=5491500
Exp3662=5493000
Exp3663=5494500
Exp3664=5496000
Exp3665=5497500
Exp3666=5499000
Exp3667=5500500
Exp3668=5502000
Exp3669=5503500
Exp3670=5505000
Exp3671=5506500
Exp3672=5508000
Exp3673=5509500
Exp3674=5511000
Exp3675=5512500
Exp3676=5514000
Exp3677=5515500
Exp3678=5517000
Exp3679=5518500
Exp3680=5520000
Exp3681=5521500
Exp3682=5523000
Exp3683=5524500
Exp3684=5526000
Exp3685=5527500
Exp3686=5529000
Exp3687=5530500
Exp3688=5532000
Exp3689=5533500
Exp3690=5535000
Exp3691=5536500
Exp3692=5538000
Exp3693=5539500
Exp3694=5541000
Exp3695=5542500
Exp3696=5544000
Exp3697=5545500
Exp3698=5547000
Exp3699=5548500
Exp3700=5550000
Exp3701=5551500
Exp3702=5553000
Exp3703=5554500
Exp3704=5556000
Exp3705=5557500
Exp3706=5559000
Exp3707=5560500
Exp3708=5562000
Exp3709=5563500
Exp3710=5565000
Exp3711=5566500
Exp3712=5568000
Exp3713=5569500
Exp3714=5571000
Exp3715=5572500
Exp3716=5574000
Exp3717=5575500
Exp3718=5577000
Exp3719=5578500
Exp3720=5580000
Exp3721=5581500
Exp3722=5583000
Exp3723=5584500
Exp3724=5586000
Exp3725=5587500
Exp3726=5589000
Exp3727=5590500
Exp3728=5592000
Exp3729=5593500
Exp3730=5595000
Exp3731=5596500
Exp3732=5598000
Exp3733=5599500
Exp3734=5601000
Exp3735=5602500
Exp3736=5604000
Exp3737=5605500
Exp3738=5607000
Exp3739=5608500
Exp3740=5610000
Exp3741=5611500
Exp3742=5613000
Exp3743=5614500
Exp3744=5616000
Exp3745=5617500
Exp3746=5619000
Exp3747=5620500
Exp3748=5622000
Exp3749=5623500
Exp3750=5625000
Exp3751=5626500
Exp3752=5628000
Exp3753=5629500
Exp3754=5631000
Exp3755=5632500
Exp3756=5634000
Exp3757=5635500
Exp3758=5637000
Exp3759=5638500
Exp3760=5640000
Exp3761=5641500
Exp3762=5643000
Exp3763=5644500
Exp3764=5646000
Exp3765=5647500
Exp3766=5649000
Exp3767=5650500
Exp3768=5652000
Exp3769=5653500
Exp3770=5655000
Exp3771=5656500
Exp3772=5658000
Exp3773=5659500
Exp3774=5661000
Exp3775=5662500
Exp3776=5664000
Exp3777=5665500
Exp3778=5667000
Exp3779=5668500
Exp3780=5670000
Exp3781=5671500
Exp3782=5673000
Exp3783=5674500
Exp3784=5676000
Exp3785=5677500
Exp3786=5679000
Exp3787=5680500
Exp3788=5682000
Exp3789=5683500
Exp3790=5685000
Exp3791=5686500
Exp3792=5688000
Exp3793=5689500
Exp3794=5691000
Exp3795=5692500
Exp3796=5694000
Exp3797=5695500
Exp3798=5697000
Exp3799=5698500
Exp3800=5700000
Exp3801=5701500
Exp3802=5703000
Exp3803=5704500
Exp3804=5706000
Exp3805=5707500
Exp3806=5709000
Exp3807=5710500
Exp3808=5712000
Exp3809=5713500
Exp3810=5715000
Exp3811=5716500
Exp3812=5718000
Exp3813=5719500
Exp3814=5721000
Exp3815=5722500
Exp3816=5724000
Exp3817=5725500
Exp3818=5727000
Exp3819=5728500
Exp3820=5730000
Exp3821=5731500
Exp3822=5733000
Exp3823=5734500
Exp3824=5736000
Exp3825=5737500
Exp3826=5739000
Exp3827=5740500
Exp3828=5742000
Exp3829=5743500
Exp3830=5745000
Exp3831=5746500
Exp3832=5748000
Exp3833=5749500
Exp3834=5751000
Exp3835=5752500
Exp3836=5754000
Exp3837=5755500
Exp3838=5757000
Exp3839=5758500
Exp3840=5760000
Exp3841=5761500
Exp3842=5763000
Exp3843=5764500
Exp3844=5766000
Exp3845=5767500
Exp3846=5769000
Exp3847=5770500
Exp3848=5772000
Exp3849=5773500
Exp3850=5775000
Exp3851=5776500
Exp3852=5778000
Exp3853=5779500
Exp3854=5781000
Exp3855=5782500
Exp3856=5784000
Exp3857=5785500
Exp3858=5787000
Exp3859=5788500
Exp3860=5790000
Exp3861=5791500
Exp3862=5793000
Exp3863=5794500
Exp3864=5796000
Exp3865=5797500
Exp3866=5799000
Exp3867=5800500
Exp3868=5802000
Exp3869=5803500
Exp3870=5805000
Exp3871=5806500
Exp3872=5808000
Exp3873=5809500
Exp3874=5811000
Exp3875=5812500
Exp3876=5814000
Exp3877=5815500
Exp3878=5817000
Exp3879=5818500
Exp3880=5820000
Exp3881=5821500
Exp3882=5823000
Exp3883=5824500
Exp3884=5826000
Exp3885=5827500
Exp3886=5829000
Exp3887=5830500
Exp3888=5832000
Exp3889=5833500
Exp3890=5835000
Exp3891=5836500
Exp3892=5838000
Exp3893=5839500
Exp3894=5841000
Exp3895=5842500
Exp3896=5844000
Exp3897=5845500
Exp3898=5847000
Exp3899=5848500
Exp3900=5850000
Exp3901=5851500
Exp3902=5853000
Exp3903=5854500
Exp3904=5856000
Exp3905=5857500
Exp3906=5859000
Exp3907=5860500
Exp3908=5862000
Exp3909=5863500
Exp3910=5865000
Exp3911=5866500
Exp3912=5868000
Exp3913=5869500
Exp3914=5871000
Exp3915=5872500
Exp3916=5874000
Exp3917=5875500
Exp3918=5877000
Exp3919=5878500
Exp3920=5880000
Exp3921=5881500
Exp3922=5883000
Exp3923=5884500
Exp3924=5886000
Exp3925=5887500
Exp3926=5889000
Exp3927=5890500
Exp3928=5892000
Exp3929=5893500
Exp3930=5895000
Exp3931=5896500
Exp3932=5898000
Exp3933=5899500
Exp3934=5901000
Exp3935=5902500
Exp3936=5904000
Exp3937=5905500
Exp3938=5907000
Exp3939=5908500
Exp3940=5910000
Exp3941=5911500
Exp3942=5913000
Exp3943=5914500
Exp3944=5916000
Exp3945=5917500
Exp3946=5919000
Exp3947=5920500
Exp3948=5922000
Exp3949=5923500
Exp3950=5925000
Exp3951=5926500
Exp3952=5928000
Exp3953=5929500
Exp3954=5931000
Exp3955=5932500
Exp3956=5934000
Exp3957=5935500
Exp3958=5937000
Exp3959=5938500
Exp3960=5940000
Exp3961=5941500
Exp3962=5943000
Exp3963=5944500
Exp3964=5946000
Exp3965=5947500
Exp3966=5949000
Exp3967=5950500
Exp3968=5952000
Exp3969=5953500
Exp3970=5955000
Exp3971=5956500
Exp3972=5958000
Exp3973=5959500
Exp3974=5961000
Exp3975=5962500
Exp3976=5964000
Exp3977=5965500
Exp3978=5967000
Exp3979=5968500
Exp3980=5970000
Exp3981=5971500
Exp3982=5973000
Exp3983=5974500
Exp3984=5976000
Exp3985=5977500
Exp3986=5979000
Exp3987=5980500
Exp3988=5982000
Exp3989=5983500
Exp3990=5985000
Exp3991=5986500
Exp3992=5988000
Exp3993=5989500
Exp3994=5991000
Exp3995=5992500
Exp3996=5994000
Exp3997=5995500
Exp3998=5997000
Exp3999=5998500
Exp4000=6000000
Exp4001=6001500
Exp4002=6003000
Exp4003=6004500
Exp4004=6006000
Exp4005=6007500
Exp4006=6009000
Exp4007=6010500
Exp4008=6012000
Exp4009=6013500
Exp4010=6015000
Exp4011=6016500
Exp4012=6018000
Exp4013=6019500
Exp4014=6021000
Exp4015=6022500
Exp4016=6024000
Exp4017=6025500
Exp4018=6027000
Exp4019=6028500
Exp4020=6030000
Exp4021=6031500
Exp4022=6033000
Exp4023=6034500
Exp4024=6036000
Exp4025=6037500
Exp4026=6039000
Exp4027=6040500
Exp4028=6042000
Exp4029=6043500
Exp4030=6045000
Exp4031=6046500
Exp4032=6048000
Exp4033=6049500
Exp4034=6051000
Exp4035=6052500
Exp4036=6054000
Exp4037=6055500
Exp4038=6057000
Exp4039=6058500
Exp4040=6060000
Exp4041=6061500
Exp4042=6063000
Exp4043=6064500
Exp4044=6066000
Exp4045=6067500
Exp4046=6069000
Exp4047=6070500
Exp4048=6072000
Exp4049=6073500
Exp4050=6075000
Exp4051=6076500
Exp4052=6078000
Exp4053=6079500
Exp4054=6081000
Exp4055=6082500
Exp4056=6084000
Exp4057=6085500
Exp4058=6087000
Exp4059=6088500
Exp4060=6090000
Exp4061=6091500
Exp4062=6093000
Exp4063=6094500
Exp4064=6096000
Exp4065=6097500
Exp4066=6099000
Exp4067=6100500
Exp4068=6102000
Exp4069=6103500
Exp4070=6105000
Exp4071=6106500
Exp4072=6108000
Exp4073=6109500
Exp4074=6111000
Exp4075=6112500
Exp4076=6114000
Exp4077=6115500
Exp4078=6117000
Exp4079=6118500
Exp4080=6120000
Exp4081=6121500
Exp4082=6123000
Exp4083=6124500
Exp4084=6126000
Exp4085=6127500
Exp4086=6129000
Exp4087=6130500
Exp4088=6132000
Exp4089=6133500
Exp4090=6135000
Exp4091=6136500
Exp4092=6138000
Exp4093=6139500
Exp4094=6141000
Exp4095=6142500
Exp4096=6144000
Exp4097=6145500
Exp4098=6147000
Exp4099=6148500
Exp4100=6150000
Exp4101=6151500
Exp4102=6153000
Exp4103=6154500
Exp4104=6156000
Exp4105=6157500
Exp4106=6159000
Exp4107=6160500
Exp4108=6162000
Exp4109=6163500
Exp4110=6165000
Exp4111=6166500
Exp4112=6168000
Exp4113=6169500
Exp4114=6171000
Exp4115=6172500
Exp4116=6174000
Exp4117=6175500
Exp4118=6177000
Exp4119=6178500
Exp4120=6180000
Exp4121=6181500
Exp4122=6183000
Exp4123=6184500
Exp4124=6186000
Exp4125=6187500
Exp4126=6189000
Exp4127=6190500
Exp4128=6192000
Exp4129=6193500
Exp4130=6195000
Exp4131=6196500
Exp4132=6198000
Exp4133=6199500
Exp4134=6201000
Exp4135=6202500
Exp4136=6204000
Exp4137=6205500
Exp4138=6207000
Exp4139=6208500
Exp4140=6210000
Exp4141=6211500
Exp4142=6213000
Exp4143=6214500
Exp4144=6216000
Exp4145=6217500
Exp4146=6219000
Exp4147=6220500
Exp4148=6222000
Exp4149=6223500
Exp4150=6225000
Exp4151=6226500
Exp4152=6228000
Exp4153=6229500
Exp4154=6231000
Exp4155=6232500
Exp4156=6234000
Exp4157=6235500
Exp4158=6237000
Exp4159=6238500
Exp4160=6240000
Exp4161=6241500
Exp4162=6243000
Exp4163=6244500
Exp4164=6246000
Exp4165=6247500
Exp4166=6249000
Exp4167=6250500
Exp4168=6252000
Exp4169=6253500
Exp4170=6255000
Exp4171=6256500
Exp4172=6258000
Exp4173=6259500
Exp4174=6261000
Exp4175=6262500
Exp4176=6264000
Exp4177=6265500
Exp4178=6267000
Exp4179=6268500
Exp4180=6270000
Exp4181=6271500
Exp4182=6273000
Exp4183=6274500
Exp4184=6276000
Exp4185=6277500
Exp4186=6279000
Exp4187=6280500
Exp4188=6282000
Exp4189=6283500
Exp4190=6285000
Exp4191=6286500
Exp4192=6288000
Exp4193=6289500
Exp4194=6291000
Exp4195=6292500
Exp4196=6294000
Exp4197=6295500
Exp4198=6297000
Exp4199=6298500
Exp4200=6300000
Exp4201=6301500
Exp4202=6303000
Exp4203=6304500
Exp4204=6306000
Exp4205=6307500
Exp4206=6309000
Exp4207=6310500
Exp4208=6312000
Exp4209=6313500
Exp4210=6315000
Exp4211=6316500
Exp4212=6318000
Exp4213=6319500
Exp4214=6321000
Exp4215=6322500
Exp4216=6324000
Exp4217=6325500
Exp4218=6327000
Exp4219=6328500
Exp4220=6330000
Exp4221=6331500
Exp4222=6333000
Exp4223=6334500
Exp4224=6336000
Exp4225=6337500
Exp4226=6339000
Exp4227=6340500
Exp4228=6342000
Exp4229=6343500
Exp4230=6345000
Exp4231=6346500
Exp4232=6348000
Exp4233=6349500
Exp4234=6351000
Exp4235=6352500
Exp4236=6354000
Exp4237=6355500
Exp4238=6357000
Exp4239=6358500
Exp4240=6360000
Exp4241=6361500
Exp4242=6363000
Exp4243=6364500
Exp4244=6366000
Exp4245=6367500
Exp4246=6369000
Exp4247=6370500
Exp4248=6372000
Exp4249=6373500
Exp4250=6375000
Exp4251=6376500
Exp4252=6378000
Exp4253=6379500
Exp4254=6381000
Exp4255=6382500
Exp4256=6384000
Exp4257=6385500
Exp4258=6387000
Exp4259=6388500
Exp4260=6390000
Exp4261=6391500
Exp4262=6393000
Exp4263=6394500
Exp4264=6396000
Exp4265=6397500
Exp4266=6399000
Exp4267=6400500
Exp4268=6402000
Exp4269=6403500
Exp4270=6405000
Exp4271=6406500
Exp4272=6408000
Exp4273=6409500
Exp4274=6411000
Exp4275=6412500
Exp4276=6414000
Exp4277=6415500
Exp4278=6417000
Exp4279=6418500
Exp4280=6420000
Exp4281=6421500
Exp4282=6423000
Exp4283=6424500
Exp4284=6426000
Exp4285=6427500
Exp4286=6429000
Exp4287=6430500
Exp4288=6432000
Exp4289=6433500
Exp4290=6435000
Exp4291=6436500
Exp4292=6438000
Exp4293=6439500
Exp4294=6441000
Exp4295=6442500
Exp4296=6444000
Exp4297=6445500
Exp4298=6447000
Exp4299=6448500
Exp4300=6450000
Exp4301=6451500
Exp4302=6453000
Exp4303=6454500
Exp4304=6456000
Exp4305=6457500
Exp4306=6459000
Exp4307=6460500
Exp4308=6462000
Exp4309=6463500
Exp4310=6465000
Exp4311=6466500
Exp4312=6468000
Exp4313=6469500
Exp4314=6471000
Exp4315=6472500
Exp4316=6474000
Exp4317=6475500
Exp4318=6477000
Exp4319=6478500
Exp4320=6480000
Exp4321=6481500
Exp4322=6483000
Exp4323=6484500
Exp4324=6486000
Exp4325=6487500
Exp4326=6489000
Exp4327=6490500
Exp4328=6492000
Exp4329=6493500
Exp4330=6495000
Exp4331=6496500
Exp4332=6498000
Exp4333=6499500
Exp4334=6501000
Exp4335=6502500
Exp4336=6504000
Exp4337=6505500
Exp4338=6507000
Exp4339=6508500
Exp4340=6510000
Exp4341=6511500
Exp4342=6513000
Exp4343=6514500
Exp4344=6516000
Exp4345=6517500
Exp4346=6519000
Exp4347=6520500
Exp4348=6522000
Exp4349=6523500
Exp4350=6525000
Exp4351=6526500
Exp4352=6528000
Exp4353=6529500
Exp4354=6531000
Exp4355=6532500
Exp4356=6534000
Exp4357=6535500
Exp4358=6537000
Exp4359=6538500
Exp4360=6540000
Exp4361=6541500
Exp4362=6543000
Exp4363=6544500
Exp4364=6546000
Exp4365=6547500
Exp4366=6549000
Exp4367=6550500
Exp4368=6552000
Exp4369=6553500
Exp4370=6555000
Exp4371=6556500
Exp4372=6558000
Exp4373=6559500
Exp4374=6561000
Exp4375=6562500
Exp4376=6564000
Exp4377=6565500
Exp4378=6567000
Exp4379=6568500
Exp4380=6570000
Exp4381=6571500
Exp4382=6573000
Exp4383=6574500
Exp4384=6576000
Exp4385=6577500
Exp4386=6579000
Exp4387=6580500
Exp4388=6582000
Exp4389=6583500
Exp4390=6585000
Exp4391=6586500
Exp4392=6588000
Exp4393=6589500
Exp4394=6591000
Exp4395=6592500
Exp4396=6594000
Exp4397=6595500
Exp4398=6597000
Exp4399=6598500
Exp4400=6600000
Exp4401=6601500
Exp4402=6603000
Exp4403=6604500
Exp4404=6606000
Exp4405=6607500
Exp4406=6609000
Exp4407=6610500
Exp4408=6612000
Exp4409=6613500
Exp4410=6615000
Exp4411=6616500
Exp4412=6618000
Exp4413=6619500
Exp4414=6621000
Exp4415=6622500
Exp4416=6624000
Exp4417=6625500
Exp4418=6627000
Exp4419=6628500
Exp4420=6630000
Exp4421=6631500
Exp4422=6633000
Exp4423=6634500
Exp4424=6636000
Exp4425=6637500
Exp4426=6639000
Exp4427=6640500
Exp4428=6642000
Exp4429=6643500
Exp4430=6645000
Exp4431=6646500
Exp4432=6648000
Exp4433=6649500
Exp4434=6651000
Exp4435=6652500
Exp4436=6654000
Exp4437=6655500
Exp4438=6657000
Exp4439=6658500
Exp4440=6660000
Exp4441=6661500
Exp4442=6663000
Exp4443=6664500
Exp4444=6666000
Exp4445=6667500
Exp4446=6669000
Exp4447=6670500
Exp4448=6672000
Exp4449=6673500
Exp4450=6675000
Exp4451=6676500
Exp4452=6678000
Exp4453=6679500
Exp4454=6681000
Exp4455=6682500
Exp4456=6684000
Exp4457=6685500
Exp4458=6687000
Exp4459=6688500
Exp4460=6690000
Exp4461=6691500
Exp4462=6693000
Exp4463=6694500
Exp4464=6696000
Exp4465=6697500
Exp4466=6699000
Exp4467=6700500
Exp4468=6702000
Exp4469=6703500
Exp4470=6705000
Exp4471=6706500
Exp4472=6708000
Exp4473=6709500
Exp4474=6711000
Exp4475=6712500
Exp4476=6714000
Exp4477=6715500
Exp4478=6717000
Exp4479=6718500
Exp4480=6720000
Exp4481=6721500
Exp4482=6723000
Exp4483=6724500
Exp4484=6726000
Exp4485=6727500
Exp4486=6729000
Exp4487=6730500
Exp4488=6732000
Exp4489=6733500
Exp4490=6735000
Exp4491=6736500
Exp4492=6738000
Exp4493=6739500
Exp4494=6741000
Exp4495=6742500
Exp4496=6744000
Exp4497=6745500
Exp4498=6747000
Exp4499=6748500
Exp4500=6750000
Exp4501=6751500
Exp4502=6753000
Exp4503=6754500
Exp4504=6756000
Exp4505=6757500
Exp4506=6759000
Exp4507=6760500
Exp4508=6762000
Exp4509=6763500
Exp4510=6765000
Exp4511=6766500
Exp4512=6768000
Exp4513=6769500
Exp4514=6771000
Exp4515=6772500
Exp4516=6774000
Exp4517=6775500
Exp4518=6777000
Exp4519=6778500
Exp4520=6780000
Exp4521=6781500
Exp4522=6783000
Exp4523=6784500
Exp4524=6786000
Exp4525=6787500
Exp4526=6789000
Exp4527=6790500
Exp4528=6792000
Exp4529=6793500
Exp4530=6795000
Exp4531=6796500
Exp4532=6798000
Exp4533=6799500
Exp4534=6801000
Exp4535=6802500
Exp4536=6804000
Exp4537=6805500
Exp4538=6807000
Exp4539=6808500
Exp4540=6810000
Exp4541=6811500
Exp4542=6813000
Exp4543=6814500
Exp4544=6816000
Exp4545=6817500
Exp4546=6819000
Exp4547=6820500
Exp4548=6822000
Exp4549=6823500
Exp4550=6825000
Exp4551=6826500
Exp4552=6828000
Exp4553=6829500
Exp4554=6831000
Exp4555=6832500
Exp4556=6834000
Exp4557=6835500
Exp4558=6837000
Exp4559=6838500
Exp4560=6840000
Exp4561=6841500
Exp4562=6843000
Exp4563=6844500
Exp4564=6846000
Exp4565=6847500
Exp4566=6849000
Exp4567=6850500
Exp4568=6852000
Exp4569=6853500
Exp4570=6855000
Exp4571=6856500
Exp4572=6858000
Exp4573=6859500
Exp4574=6861000
Exp4575=6862500
Exp4576=6864000
Exp4577=6865500
Exp4578=6867000
Exp4579=6868500
Exp4580=6870000
Exp4581=6871500
Exp4582=6873000
Exp4583=6874500
Exp4584=6876000
Exp4585=6877500
Exp4586=6879000
Exp4587=6880500
Exp4588=6882000
Exp4589=6883500
Exp4590=6885000
Exp4591=6886500
Exp4592=6888000
Exp4593=6889500
Exp4594=6891000
Exp4595=6892500
Exp4596=6894000
Exp4597=6895500
Exp4598=6897000
Exp4599=6898500
Exp4600=6900000
Exp4601=6901500
Exp4602=6903000
Exp4603=6904500
Exp4604=6906000
Exp4605=6907500
Exp4606=6909000
Exp4607=6910500
Exp4608=6912000
Exp4609=6913500
Exp4610=6915000
Exp4611=6916500
Exp4612=6918000
Exp4613=6919500
Exp4614=6921000
Exp4615=6922500
Exp4616=6924000
Exp4617=6925500
Exp4618=6927000
Exp4619=6928500
Exp4620=6930000
Exp4621=6931500
Exp4622=6933000
Exp4623=6934500
Exp4624=6936000
Exp4625=6937500
Exp4626=6939000
Exp4627=6940500
Exp4628=6942000
Exp4629=6943500
Exp4630=6945000
Exp4631=6946500
Exp4632=6948000
Exp4633=6949500
Exp4634=6951000
Exp4635=6952500
Exp4636=6954000
Exp4637=6955500
Exp4638=6957000
Exp4639=6958500
Exp4640=6960000
Exp4641=6961500
Exp4642=6963000
Exp4643=6964500
Exp4644=6966000
Exp4645=6967500
Exp4646=6969000
Exp4647=6970500
Exp4648=6972000
Exp4649=6973500
Exp4650=6975000
Exp4651=6976500
Exp4652=6978000
Exp4653=6979500
Exp4654=6981000
Exp4655=6982500
Exp4656=6984000
Exp4657=6985500
Exp4658=6987000
Exp4659=6988500
Exp4660=6990000
Exp4661=6991500
Exp4662=6993000
Exp4663=6994500
Exp4664=6996000
Exp4665=6997500
Exp4666=6999000
Exp4667=7000500
Exp4668=7002000
Exp4669=7003500
Exp4670=7005000
Exp4671=7006500
Exp4672=7008000
Exp4673=7009500
Exp4674=7011000
Exp4675=7012500
Exp4676=7014000
Exp4677=7015500
Exp4678=7017000
Exp4679=7018500
Exp4680=7020000
Exp4681=7021500
Exp4682=7023000
Exp4683=7024500
Exp4684=7026000
Exp4685=7027500
Exp4686=7029000
Exp4687=7030500
Exp4688=7032000
Exp4689=7033500
Exp4690=7035000
Exp4691=7036500
Exp4692=7038000
Exp4693=7039500
Exp4694=7041000
Exp4695=7042500
Exp4696=7044000
Exp4697=7045500
Exp4698=7047000
Exp4699=7048500
Exp4700=7050000
Exp4701=7051500
Exp4702=7053000
Exp4703=7054500
Exp4704=7056000
Exp4705=7057500
Exp4706=7059000
Exp4707=7060500
Exp4708=7062000
Exp4709=7063500
Exp4710=7065000
Exp4711=7066500
Exp4712=7068000
Exp4713=7069500
Exp4714=7071000
Exp4715=7072500
Exp4716=7074000
Exp4717=7075500
Exp4718=7077000
Exp4719=7078500
Exp4720=7080000
Exp4721=7081500
Exp4722=7083000
Exp4723=7084500
Exp4724=7086000
Exp4725=7087500
Exp4726=7089000
Exp4727=7090500
Exp4728=7092000
Exp4729=7093500
Exp4730=7095000
Exp4731=7096500
Exp4732=7098000
Exp4733=7099500
Exp4734=7101000
Exp4735=7102500
Exp4736=7104000
Exp4737=7105500
Exp4738=7107000
Exp4739=7108500
Exp4740=7110000
Exp4741=7111500
Exp4742=7113000
Exp4743=7114500
Exp4744=7116000
Exp4745=7117500
Exp4746=7119000
Exp4747=7120500
Exp4748=7122000
Exp4749=7123500
Exp4750=7125000
Exp4751=7126500
Exp4752=7128000
Exp4753=7129500
Exp4754=7131000
Exp4755=7132500
Exp4756=7134000
Exp4757=7135500
Exp4758=7137000
Exp4759=7138500
Exp4760=7140000
Exp4761=7141500
Exp4762=7143000
Exp4763=7144500
Exp4764=7146000
Exp4765=7147500
Exp4766=7149000
Exp4767=7150500
Exp4768=7152000
Exp4769=7153500
Exp4770=7155000
Exp4771=7156500
Exp4772=7158000
Exp4773=7159500
Exp4774=7161000
Exp4775=7162500
Exp4776=7164000
Exp4777=7165500
Exp4778=7167000
Exp4779=7168500
Exp4780=7170000
Exp4781=7171500
Exp4782=7173000
Exp4783=7174500
Exp4784=7176000
Exp4785=7177500
Exp4786=7179000
Exp4787=7180500
Exp4788=7182000
Exp4789=7183500
Exp4790=7185000
Exp4791=7186500
Exp4792=7188000
Exp4793=7189500
Exp4794=7191000
Exp4795=7192500
Exp4796=7194000
Exp4797=7195500
Exp4798=7197000
Exp4799=7198500
Exp4800=7200000
Exp4801=7201500
Exp4802=7203000
Exp4803=7204500
Exp4804=7206000
Exp4805=7207500
Exp4806=7209000
Exp4807=7210500
Exp4808=7212000
Exp4809=7213500
Exp4810=7215000
Exp4811=7216500
Exp4812=7218000
Exp4813=7219500
Exp4814=7221000
Exp4815=7222500
Exp4816=7224000
Exp4817=7225500
Exp4818=7227000
Exp4819=7228500
Exp4820=7230000
Exp4821=7231500
Exp4822=7233000
Exp4823=7234500
Exp4824=7236000
Exp4825=7237500
Exp4826=7239000
Exp4827=7240500
Exp4828=7242000
Exp4829=7243500
Exp4830=7245000
Exp4831=7246500
Exp4832=7248000
Exp4833=7249500
Exp4834=7251000
Exp4835=7252500
Exp4836=7254000
Exp4837=7255500
Exp4838=7257000
Exp4839=7258500
Exp4840=7260000
Exp4841=7261500
Exp4842=7263000
Exp4843=7264500
Exp4844=7266000
Exp4845=7267500
Exp4846=7269000
Exp4847=7270500
Exp4848=7272000
Exp4849=7273500
Exp4850=7275000
Exp4851=7276500
Exp4852=7278000
Exp4853=7279500
Exp4854=7281000
Exp4855=7282500
Exp4856=7284000
Exp4857=7285500
Exp4858=7287000
Exp4859=7288500
Exp4860=7290000
Exp4861=7291500
Exp4862=7293000
Exp4863=7294500
Exp4864=7296000
Exp4865=7297500
Exp4866=7299000
Exp4867=7300500
Exp4868=7302000
Exp4869=7303500
Exp4870=7305000
Exp4871=7306500
Exp4872=7308000
Exp4873=7309500
Exp4874=7311000
Exp4875=7312500
Exp4876=7314000
Exp4877=7315500
Exp4878=7317000
Exp4879=7318500
Exp4880=7320000
Exp4881=7321500
Exp4882=7323000
Exp4883=7324500
Exp4884=7326000
Exp4885=7327500
Exp4886=7329000
Exp4887=7330500
Exp4888=7332000
Exp4889=7333500
Exp4890=7335000
Exp4891=7336500
Exp4892=7338000
Exp4893=7339500
Exp4894=7341000
Exp4895=7342500
Exp4896=7344000
Exp4897=7345500
Exp4898=7347000
Exp4899=7348500
Exp4900=7350000
Exp4901=7351500
Exp4902=7353000
Exp4903=7354500
Exp4904=7356000
Exp4905=7357500
Exp4906=7359000
Exp4907=7360500
Exp4908=7362000
Exp4909=7363500
Exp4910=7365000
Exp4911=7366500
Exp4912=7368000
Exp4913=7369500
Exp4914=7371000
Exp4915=7372500
Exp4916=7374000
Exp4917=7375500
Exp4918=7377000
Exp4919=7378500
Exp4920=7380000
Exp4921=7381500
Exp4922=7383000
Exp4923=7384500
Exp4924=7386000
Exp4925=7387500
Exp4926=7389000
Exp4927=7390500
Exp4928=7392000
Exp4929=7393500
Exp4930=7395000
Exp4931=7396500
Exp4932=7398000
Exp4933=7399500
Exp4934=7401000
Exp4935=7402500
Exp4936=7404000
Exp4937=7405500
Exp4938=7407000
Exp4939=7408500
Exp4940=7410000
Exp4941=7411500
Exp4942=7413000
Exp4943=7414500
Exp4944=7416000
Exp4945=7417500
Exp4946=7419000
Exp4947=7420500
Exp4948=7422000
Exp4949=7423500
Exp4950=7425000
Exp4951=7426500
Exp4952=7428000
Exp4953=7429500
Exp4954=7431000
Exp4955=7432500
Exp4956=7434000
Exp4957=7435500
Exp4958=7437000
Exp4959=7438500
Exp4960=7440000
Exp4961=7441500
Exp4962=7443000
Exp4963=7444500
Exp4964=7446000
Exp4965=7447500
Exp4966=7449000
Exp4967=7450500
Exp4968=7452000
Exp4969=7453500
Exp4970=7455000
Exp4971=7456500
Exp4972=7458000
Exp4973=7459500
Exp4974=7461000
Exp4975=7462500
Exp4976=7464000
Exp4977=7465500
Exp4978=7467000
Exp4979=7468500
Exp4980=7470000
Exp4981=7471500
Exp4982=7473000
Exp4983=7474500
Exp4984=7476000
Exp4985=7477500
Exp4986=7479000
Exp4987=7480500
Exp4988=7482000
Exp4989=7483500
Exp4990=7485000
Exp4991=7486500
Exp4992=7488000
Exp4993=7489500
Exp4994=7491000
Exp4995=7492500
Exp4996=7494000
Exp4997=7495500
Exp4998=7497000
Exp4999=7498500
Exp5000=7500000
|
INI
|
if (CMAKE_VERSION VERSION_LESS 2.8.9)
message(FATAL_ERROR "Qt5 requires at least CMake version 2.8.9")
endif()
if (NOT Qt5_FIND_COMPONENTS)
set(Qt5_NOT_FOUND_MESSAGE "The Qt5 package requires at least one component")
set(Qt5_FOUND False)
return()
endif()
set(_Qt5_FIND_PARTS_REQUIRED)
if (Qt5_FIND_REQUIRED)
set(_Qt5_FIND_PARTS_REQUIRED REQUIRED)
endif()
set(_Qt5_FIND_PARTS_QUIET)
if (Qt5_FIND_QUIETLY)
set(_Qt5_FIND_PARTS_QUIET QUIET)
endif()
get_filename_component(_qt5_install_prefix "${CMAKE_CURRENT_LIST_DIR}/.." ABSOLUTE)
set(_Qt5_NOTFOUND_MESSAGE)
include(${CMAKE_CURRENT_LIST_DIR}/Qt5ModuleLocation.cmake)
foreach(module ${Qt5_FIND_COMPONENTS})
find_package(Qt5${module}
${_Qt5_FIND_PARTS_QUIET}
${_Qt5_FIND_PARTS_REQUIRED}
PATHS ${_qt5_module_paths} NO_DEFAULT_PATH
)
if (NOT Qt5${module}_FOUND)
string(CONFIGURE ${_qt5_module_location_template} _expected_module_location @ONLY)
if (Qt5_FIND_REQUIRED_${module})
set(_Qt5_NOTFOUND_MESSAGE "${_Qt5_NOTFOUND_MESSAGE}Failed to find Qt5 component \"${module}\" config file at \"${_expected_module_location}\"\n")
elseif(NOT Qt5_FIND_QUIETLY)
message(WARNING "Failed to find Qt5 component \"${module}\" config file at \"${_expected_module_location}\"")
endif()
unset(_expected_module_location)
endif()
endforeach()
if (_Qt5_NOTFOUND_MESSAGE)
set(Qt5_NOT_FOUND_MESSAGE "${_Qt5_NOTFOUND_MESSAGE}")
set(Qt5_FOUND False)
endif()
_qt5_Core_check_file_exists("${CMAKE_CURRENT_LIST_DIR}/Qt5ConfigVersion.cmake")
|
CMake
|
//
// Licensed under the terms in License.txt
//
// Copyright 2010 Allen Ding. All rights reserved.
//
#import "KiwiConfiguration.h"
#import "KWBlock.h"
#import "KWVerifying.h"
#import "KWExpectationType.h"
#import "KWExampleNode.h"
#import "KWExampleNodeVisitor.h"
#import "KWReporting.h"
#import "KWExampleGroupDelegate.h"
@class KWCallSite;
@class KWExampleSuite;
@class KWContextNode;
@class KWSpec;
@class KWMatcherFactory;
@interface KWExample : NSObject <KWExampleNodeVisitor, KWReporting> {
id<KWExampleNode> exampleNode;
BOOL passed;
}
@property (nonatomic, retain, readonly) NSMutableArray *lastInContexts;
@property (nonatomic, assign) KWExampleSuite *suite;
- (id)initWithExampleNode:(id<KWExampleNode>)node;
#pragma mark - Adding Verifiers
- (id)addVerifier:(id<KWVerifying>)aVerifier;
- (id)addExistVerifierWithExpectationType:(KWExpectationType)anExpectationType callSite:(KWCallSite *)aCallSite;
- (id)addMatchVerifierWithExpectationType:(KWExpectationType)anExpectationType callSite:(KWCallSite *)aCallSite;
- (id)addAsyncVerifierWithExpectationType:(KWExpectationType)anExpectationType callSite:(KWCallSite *)aCallSite timeout:(NSInteger)timeout;
#pragma mark - Running
- (void)runWithDelegate:(id<KWExampleDelegate>)delegate;
#pragma mark -
#pragma mark Anonymous It Node Descriptions
- (NSString *)generateDescriptionForAnonymousItNode;
#pragma mark -
#pragma mark Checking if last in context
- (BOOL)isLastInContext:(KWContextNode *)context;
#pragma mark -
#pragma mark Full description with context
- (NSString *)descriptionWithContext;
@end
#pragma mark -
#pragma mark Building Example Groups
void describe(NSString *aDescription, KWVoidBlock aBlock);
void context(NSString *aDescription, KWVoidBlock aBlock);
void registerMatchers(NSString *aNamespacePrefix);
void beforeAll(KWVoidBlock aBlock);
void afterAll(KWVoidBlock aBlock);
void beforeEach(KWVoidBlock aBlock);
void afterEach(KWVoidBlock aBlock);
void it(NSString *aDescription, KWVoidBlock aBlock);
void specify(KWVoidBlock aBlock);
void pending_(NSString *aDescription, KWVoidBlock ignoredBlock);
void describeWithCallSite(KWCallSite *aCallSite, NSString *aDescription, KWVoidBlock aBlock);
void contextWithCallSite(KWCallSite *aCallSite, NSString *aDescription, KWVoidBlock aBlock);
void registerMatchersWithCallSite(KWCallSite *aCallSite, NSString *aNamespacePrefix);
void beforeAllWithCallSite(KWCallSite *aCallSite, KWVoidBlock aBlock);
void afterAllWithCallSite(KWCallSite *aCallSite, KWVoidBlock aBlock);
void beforeEachWithCallSite(KWCallSite *aCallSite, KWVoidBlock aBlock);
void afterEachWithCallSite(KWCallSite *aCallSite, KWVoidBlock aBlock);
void itWithCallSite(KWCallSite *aCallSite, NSString *aDescription, KWVoidBlock aBlock);
void pendingWithCallSite(KWCallSite *aCallSite, NSString *aDescription, KWVoidBlock ignoredBlock);
#define PRAGMA(x) _Pragma (#x)
#define PENDING(x) PRAGMA(message ( "Pending: " #x ))
#define pending(title, args...) \
PENDING(title) \
pending_(title, ## args)
#define xit(title, args...) \
PENDING(title) \
pending_(title, ## args)
|
Objective-C++
|
# Global settings
# Style
Screen.backgroundColor = "white"
systemFontSize = 14
systemColorActive = "#0084FF"
systemColorInactive = "#888"
systemBackgroundColorInactive = "#DEDEDE"
#systemFontFamily = ".SF NS Display"
systemFontFamily = "-apple-system"
# statusBar settings
battery = "100%"
systemTime = "9:41 PM"
signal = 5
systemFontColor = "rgba(3,3,3,1)"
name = "Vodafone"
# Users
# Get some data from restdb.io
apikey = "5956382dafce09e87211e986"
query = {}
sort = "sort=serialno&dir=-1"
max = 12
filter = ""
#query = {}
url = "https://fbusers-4494.restdb.io/rest/fbusers"
GETdata = "#{url}?apikey=#{apikey}&max=#{max}&#{sort}&filter=#{filter}&q="+JSON.stringify(query)
# load data from db
users = JSON.parse Utils.domLoadDataSync GETdata
favoriteUsers = []
birthdayUsers = []
activeUsers = []
myDays = []
for user in users
if user.activity == true
activeUsers.push(user)
if user.birthday == true
birthdayUsers.push(user)
if user.favorite == true
favoriteUsers.push(user)
if user.myDay == true
myDays.push(user)
myDays.sort(myDayTime,0)
# Header
header = new Layer
backgroundColor: "white"
width: Screen.width
height: 84
# Status bar
StatusBarLayer = require "StatusBarLayer"
myStatusBar = new StatusBarLayer
# Text
carrier: VodafoneRO
time: 9:4 # if not set, will use local time
percent: <number>
# Show or hide status items
signal: <boolean>
wifi: <boolean>
powered: <boolean>
showPercentage: <boolean>
ipod: <boolean> # also affects signal and carrier
# Colors
style: <string> ("light" || "dark")
foregroundColor: <string> (hex or rgba)
backgroundColor: <string> (hex or rgba)
vibrant: <boolean>
# Behavior
hide: <boolean> # initial visibility
autoHide: <boolean> # hide in landscape where device-appropriate
# Set @1x, @2x or @3x -- usually unnecessary
scaleFactor: <number> (1 || 2 || 3)
statusBar = new Layer
backgroundColor: "transparent"
width: Screen.width
height: 20
parent: header
# Mobile Signal
for i in[0..(signal-1)]
signalDot = new Layer
superLayer: statusBar
height: 6
width: 6
x: Align.left(5 + 7 * i)
y: Align.center(-1)
borderRadius: 25
backgroundColor: systemFontColor
# Carrier
carrier = new TextLayer
superLayer: statusBar
text: name
x: Align.left(signal*7 + 10)
y: Align.center
fontSize: systemFontSize
fontFamily: systemFontFamily
letterSpacing: 0.0
color: systemFontColor
# WiFi
wiFi = new Layer
parent: statusBar
x: Align.left(carrier.maxX+5)
y: Align.center(-1)
width: 13
height: 9.000000000000004
image: "images/Wi-Fi.png"
# Clock
clock = new TextLayer
parent: statusBar
x: Align.center
y: Align.center
fontSize: 12
fontFamily: systemFontFamily
letterSpacing: 0.0
color: systemFontColor
text: systemTime
# Battery
batteryIndicator = new Layer
parent: statusBar
x: Align.right(-5)
y: Align.center(-1)
width: 25
height: 10
image: "images/Battery.png"
batteryPercentage = new TextLayer
parent: statusBar
x: Align.right( - batteryIndicator.width - 10)
y: Align.center
text: battery
fontSize: 12
fontFamily: systemFontFamily
letterSpacing: 0.0
textAlign: "right"
color: systemFontColor
# Search bar
searchBar = new Layer
y: statusBar.height+3
width: Screen.width
backgroundColor: "transparent"
height: 32
parent: header
avatar = new Layer
image: "images/Emma.png"
width: 26
height: 26
superLayer: searchBar
x: Align.left(10)
search = new Layer
width: Screen.width - 100
x: Align.center
superLayer: searchBar
height: 28
borderRadius: 5
backgroundColor: "#{systemBackgroundColorInactive}"
searchPlaceholder = new TextLayer
parent: search
text: "Search"
fontSize: systemFontSize
fontFamily: ".SF NS Display"
letterSpacing: 0.0
x: Align.center
y: Align.center
searchIcon = new Layer
parent: search
image: "images/SearchIcon.png"
height: 12
width: 12
y: Align.center
searchIcon.x = searchPlaceholder.x - (searchIcon.width + 5)
compose = new Layer
image: "images/CreateIcon.png"
x: Align.right(-10)
width: 26
height: 26
superLayer: searchBar
# Tab bar
tabBar = new Layer
y: statusBar.height + searchBar.height + 6
width: Screen.width
height: 32
backgroundColor: "white"
parent: header
messagesTab = new Layer
name: "messagesTab"
parent: tabBar
width: Screen.width / 3
height: tabBar.height - 5
x: Align.left
backgroundColor: "transparent"
messagesTab.states =
active:
style:
"border-bottom": "1px solid #{systemColorActive}"
color: systemColorActive
options:
time: 0.2
inactive:
style:
"border-bottom": "1px solid #{systemBackgroundColorInactive}"
color: systemColorInactive
options:
time: 0.2
messagesTab.states.switch("active")
messagesTabLabel = new TextLayer
text: "Messages"
parent: messagesTab
fontSize: systemFontSize
x: Align.center
messagesTabLabel.states =
active:
color: systemColorActive
inactive:
color: systemColorInactive
messagesTabLabel.states.switch("active")
activeTab = new Layer
name: "activeTab"
parent: tabBar
width: Screen.width / 3
x: Align.center
height: tabBar.height - 5
backgroundColor: "transparent"
activeTab.states =
active:
style:
"border-bottom": "1px solid #{systemColorActive}"
color: systemColorActive
inactive:
style:
"border-bottom": "1px solid #{systemBackgroundColorInactive}"
color: systemColorInactive
activeTab.states.switch("inactive")
activeTabLabel = new TextLayer
text: "Active"
width: activeTab.width
textAlign: "center"
parent: activeTab
fontSize: systemFontSize
x: Align.center
activeTabLabel.states =
active:
color: systemColorActive
inactive:
color: systemColorInactive
groupsTab = new Layer
name: "groupsTab"
parent: tabBar
width: Screen.width / 3
height: tabBar.height - 5
x: Align.right
backgroundColor: "transparent"
groupsTab.states =
active:
style:
"border-bottom": "1px solid #{systemColorActive}"
color: systemColorActive
inactive:
style:
"border-bottom": "1px solid #{systemBackgroundColorInactive}"
color: systemColorInactive
groupsTab.states.switch("inactive")
groupsTabLabel = new TextLayer
text: "Groups"
parent: groupsTab
fontSize: systemFontSize
x: Align.center
color: groupsTab.states.current.color
groupsTabLabel.states =
active:
color: systemColorActive
inactive:
color: systemColorInactive
for layer in tabBar.subLayers
layer.onTap ->
inactiveTabs = tabBar.subLayers.filter (item) -> item isnt @
for tab in inactiveTabs
tab.states.switchInstant("inactive")
tab.subLayers[0].states.switchInstant("inactive")
@.states.switchInstant("active")
@.subLayers[0].states.switchInstant("active")
# Footer
footer = new Layer
y: Align.bottom
height: 50
width: Screen.width
backgroundColor: "white"
style:
"border-top": "1px solid #{systemColorInactive}"
homeButton = new Layer
parent: footer
x: 0
y: Align.center
backgroundColor: "transparent"
width: Screen.width / 5
height: 42
homeLabel = new TextLayer
parent: homeButton
x: Align.center
y: Align.bottom
text: "Home"
fontSize: systemFontSize - 2
fontFamily: systemFontFamily
letterSpacing: 0.1
textAlign: "center"
color: "rgba(0,118,255,1)"
homeIconActive = new Layer
parent: homeButton
x: Align.center
y: 0
width: 24
height: 24
image: "images/homeIconActive.png"
homeNotification = new Layer
parent: homeButton
width: 15
height: 15
borderRadius: 100
backgroundColor: "red"
x: Align.right(-15)
y: Align.top
homeNotificationLabel = new TextLayer
parent: homeNotification
text: activeUsers.length
fontSize: 10
color: "white"
x: Align.center
y: Align.center
callsButton = new Layer
parent: footer
x: Screen.width / 5
y: Align.center
backgroundColor: "transparent"
width: Screen.width / 5
height: 42
callsLabel = new TextLayer
parent: callsButton
x: Align.center
y: Align.bottom
text: "Calls"
fontSize: systemFontSize - 2
fontFamily: systemFontFamily
letterSpacing: 0.1
textAlign: "center"
color: "rgba(146,146,146,1)"
callIcon = new Layer
parent: callsButton
x: Align.center
y: 0
width: 24
height: 24
image: "images/callIcon.png"
circle = new Layer
parent: footer
x: Align.center
y: Align.center(-2)
width: 38
height: 38
borderRadius: 100
backgroundColor: "transparent"
borderColor: systemColorActive
borderWidth: 3
peopleButton = new Layer
parent: footer
x: 3 * Screen.width / 5
y: Align.center
backgroundColor: "transparent"
width: Screen.width / 5
height: 42
peopleLabel = new TextLayer
parent: peopleButton
x: Align.center
y: Align.bottom
text: "People"
fontSize: systemFontSize - 2
fontFamily: systemFontFamily
letterSpacing: 0.1
textAlign: "center"
color: "rgba(146,146,146,1)"
peopleIcon = new Layer
parent: peopleButton
x: Align.center
y: 0
width: 24
height: 24
image: "images/peopleIcon.png"
gamesButton = new Layer
parent: footer
x: 4 * Screen.width / 5
y: Align.center
backgroundColor: "transparent"
width: Screen.width / 5
height: 42
gamesLabel = new TextLayer
parent: gamesButton
y: Align.bottom
x: Align.center
text: "Games"
fontSize: systemFontSize - 2
fontFamily: systemFontFamily
letterSpacing: 0.1
textAlign: "center"
color: "rgba(146,146,146,1)"
gamesIcon = new Layer
parent: gamesButton
x: Align.center
y: 0
width: 24
height: 24
gamesIcon.states =
active:
image: "images/meIconActive.png"
inactive:
image: "images/meIcon.png"
# Home
home = new ScrollComponent
size: Screen.size
backgroundColor: "white"
directionLock: true
scrollHorizontal: false
contentInset:
top: header.height
bottom: footer.height
directionLock: true
# Home Content
# MyDay
myDay = new ScrollComponent
parent: home.content
width: Screen.width
height: 120
scrollVertical: false
directionLock: true
for item in myDays.sort(myDayTime)
myDayItem = new Layer
image: "https://fbusers-4494.restdb.io/media/#{item.image}"
height: 100
y: 15
width: 80
borderRadius: 5
parent: myDay.content
x: 5 + myDays.indexOf(item) * 82
myDayTime = new TextLayer
text: "#{item.myDayTime}m"
parent: myDayItem
fontSize: systemFontSize - 2
color: "white"
fontFamily: systemFontFamily
x: Align.left(2)
y: Align.bottom(-4)
myDayName = new TextLayer
text: "#{item.firstname} #{item.lastname}"
parent: myDayItem
fontSize: systemFontSize
fontWeight: "light"
color: "white"
fontFamily: systemFontFamily
y: Align.bottom(-myDayTime.height - 4)
x: Align.left(2)
# Messages
messages = new Layer
parent: home.content
y: myDay.maxY + 10
width: Screen.width
height: users.length * 67
backgroundColor: "transparent"
for user in users
message = new Layer
parent: messages
width: Screen.width
height: 65
y: users.indexOf(user) * 67
backgroundColor: "transparent"
directionLock: true
message.states =
inactive:
x: 0
active:
x: -190
message.dragabble = true
message.draggable.vertical = false
message.on Events.Move, (offset, layer) ->
if offset.x >0
layer.x = layer.x - offset.x
if offset.x < -190
layer.x = -190
message.on Events.DragEnd, (event, layer) ->
if event.offset.x > - 75
@.animate("inactive")
else @.animate("active")
message.onTap (event) ->
@.animate("inactive")
messageAction = new Layer
parent: message
width: 3 * message.height
x: Screen.width
height: message.height
backgroundColor: "transparent"
messageActionMore = new Layer
parent: messageAction
width: message.height
height: message.height
backgroundColor: systemBackgroundColorInactive
messageActionView = new Layer
parent: messageAction
x: messageActionMore.maxX
width: message.height
height: message.height
backgroundColor: systemColorInactive
messageActionDelete = new Layer
parent: messageAction
x: messageActionView.maxX
width: message.height
height: message.height
backgroundColor: "red"
avatar = new Layer
parent: message
image: "https://fbusers-4494.restdb.io/media/#{user.image}"
width: 50
height: 50
borderRadius: 100
y: Align.center
x: Align.left(5)
activeAvatar = new Layer
parent: avatar
width: 15
height: 15
borderRadius: 100
borderColor: "white"
borderWidth: 2
backgroundColor: "green"
visible: false
x: Align.right
y: Align.bottom
name = new TextLayer
parent: message
text: "#{user.firstname} #{user.lastname}"
fontFamily: systemFontFamily
fontSize: systemFontSize + 3
color: "black"
x: avatar.width + 15
y: Align.center(-8)
messageText = new TextLayer
parent: message
text: "#{user.messageText}"
truncate: true
width: Screen.width / 1.7
fontFamily: systemFontFamily
fontSize: systemFontSize
color: systemColorInactive
x: avatar.width + 15
y: Align.center(8)
messageTime = new TextLayer
parent: message
text: "#{user.messageTime}"
textAlign: "center"
fontFamily: systemFontFamily
fontSize: systemFontSize
truncate: true
color: systemColorInactive
x: Align.right(-5)
y: Align.center(-8)
width: Screen.width / 5
if user.unread
name.fontWeight = "bold"
messageText.color = "black"
messageTime.color = "black"
if user.activity
activeAvatar.visible = true
calls = new ScrollComponent
size: Screen.size
backgroundColor: "white"
directionLock: true
scrollHorizontal: false
contentInset:
top: header.height
bottom: footer.height
directionLock: true
people = new ScrollComponent
size: Screen.size
backgroundColor: "white"
directionLock: true
scrollHorizontal: false
contentInset:
top: header.height
bottom: footer.height
directionLock: true
games = new ScrollComponent
size: Screen.size
backgroundColor: "white"
directionLock: true
scrollHorizontal: false
contentInset:
top: header.height
bottom: footer.height
directionLock: true
# Flow
flow = new FlowComponent
flow.header = header
flow.footer = footer
flow.showNext(home)
callsButton.on Events.Tap, (event) ->
flow.showNext(calls)
homeButton.on Events.Tap, (event) ->
flow.showNext(home)
peopleButton.onTap ->
flow.showNext(people)
gamesButton.onTap ->
flow.showNext(games)
|
CoffeeScript
|
(ns alder.ui.dragging
(:require [om.core :as om :include-macros true]
[schema.core :as s :include-macros true]
[cljs.core.async :refer [>!]]
[alder.geometry :as geometry]
[alder.node :as node])
(:require-macros [cljs.core.async.macros :refer [go]]))
(s/defn start-selection-drag [app mouse-pos :- geometry/Point reply-chan]
(go
(>! (:dragging-chan @app) {:phase :start,
:type :selection,
:mouse-pos mouse-pos,
:reply-chan reply-chan})))
(s/defn start-node-drag [app ref-node-id :- s/Keyword offset :- geometry/Point reply-chan]
(go
(>! (:dragging-chan @app) {:phase :start,
:type :node,
:ref-node-id ref-node-id,
:offset offset,
:reply-chan reply-chan})))
(s/defn start-prototype-node-drag [app
node :- node/NodeSchema
offset :- geometry/Point
reply-chan]
(go
(>! (:dragging-chan @app) {:phase :start,
:type :prototype-node,
:node node,
:offset offset,
:reply-chan reply-chan})))
(s/defn start-slot-drag [app
node-id :- s/Keyword
slot-id :- s/Keyword
position :- geometry/Point
reverse :- s/Bool
reply-chan]
(go
(>! (:dragging-chan @app) {:phase :start
:type :slot-drag
:slot-path [node-id slot-id]
:position position
:reverse reverse
:reply-chan reply-chan})))
(s/defn disconnect-and-start-slot-drag [app
from :- [(s/one s/Keyword "from-node-id")
(s/one s/Keyword "from-slot-id")]
to :- [(s/one s/Keyword "to-node-id")
(s/one s/Keyword "to-slot-id")]
position :- geometry/Point
reply-chan]
(go
(>! (:dragging-chan @app) {:phase :start
:type :slot-drag
:slot-path from
:disconnect-slot-path to
:position position
:reverse false
:reply-chan reply-chan})))
(s/defn mouse-drag [app mouse-pos :- geometry/Point]
(go
(>! (:dragging-chan @app) {:phase :drag, :mouse-pos mouse-pos})))
(s/defn mouse-up [app mouse-pos :- geometry/Point]
(go
(>! (:dragging-chan @app) {:phase :end, :mouse-pos mouse-pos})))
|
Clojure
|
package com.github.mperry.fg
import fj.F
import fj.F2
import fj.F3
import fj.F4
import fj.P1
import groovy.transform.TypeChecked
/**
* Created with IntelliJ IDEA.
* User: MarkPerry
* Date: 22/11/13
* Time: 10:08 PM
* To change this template use File | Settings | File Templates.
*/
@TypeChecked
class F3Extension {
static <A, B, C, D> Closure<D> toClosure(F3<A, B, C, D> f) {
{ A a, B b, C c ->
f.f(a, b, c)
}
}
}
|
Groovy
|
module standpic(input logic [9:0] addr,
input logic stand1, frame_clk,
output logic [0:99]data);
enum logic [2:0] {stand, run1, run2, run3}state, next_state;
logic [4:0] counter;
parameter stand_width = 100;
parameter stand_lenth = 100;
parameter [0:stand_lenth-1][0:stand_width-1] ROM = {
100'b1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111100000011111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000000000011111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111000000000000001111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111110000000000000000111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111100000000000000000011111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111000000000000000000001111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111110000000000000000000000111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000000000000000000000011111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000000000000000000000011111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000000000000000000000011111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000000000000000000000011111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000000000000000000000011111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000000000000000000000011111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000000000000000000000011111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000000000000000000000011111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000000000000000000000011111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111110000000000000000000000111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111110000000000000000000000111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111000000000000000000001111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111100000000000000000011111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111110000000000000000111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111000000000000001111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000000000011111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111100000001111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111100000001111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111000000001111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111110000000001111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000000000111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111000000000000111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111110000000000000011111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111100000000000000011111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111000000000000000001111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111110000000000000000001111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000000000000000000111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111000000011000001000000011111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111110000000010000001100000011111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111110000000110000001100000001111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111100000001110000001110000000111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111100000001110000011111000000111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111000000011110000011111000000011111111111111111111111111111111111111,
100'b1111111111111111111111111111111111000000111110000011111100000001111111111111111111111111111111111111,
100'b1111111111111111111111111111111110000000111110000011111110000001111111111111111111111111111111111111,
100'b1111111111111111111111111111111110000001111100000011111110000000111111111111111111111111111111111111,
100'b1111111111111111111111111111111110000001111100000011111111000000011111111111111111111111111111111111,
100'b1111111111111111111111111111111110000001111100000011111111100000011111111111111111111111111111111111,
100'b1111111111111111111111111111111110000001111100000011111111100000001111111111111111111111111111111111,
100'b1111111111111111111111111111111110000001111100000011111111110000000100001111111111111111111111111111,
100'b1111111111111111111111111111111110000011111100000011111111111000000000001111111111111111111111111111,
100'b1111111111111111111111111111111110000011111100000011111111111000000000000111111111111111111111111111,
100'b1111111111111111111111111111111110000011111100000011111111111110000000000111111111111111111111111111,
100'b1111111111111111111111111111111110000011111100000001111111111111100000011111111111111111111111111111,
100'b1111111111111111111111111111111110000011111100000001111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111110000011111100000001111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111110000011111100000000111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111110000011111100000000111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111110000011111100000000011111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111110000111111100000000011111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111001111111100000000011111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111110000000001111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111110000000001111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111110000000001111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111110000000000111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111110000000000111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111110000000000011111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111110000000000011111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111110000000000011111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111110000000000001111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111110000000000001111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111110000000000001111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111110000001000001111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111110000001000000111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111110000001000000111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111110000011100000111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111110000011100000111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111110000011100000011111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000011100000011111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000011100000011111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000111110000011111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111000000111110000011111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111000000111110000011111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111000001111110000001111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111110000001111110000001111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111110000001111110000001111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111110000011111111000001111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111100000011111111000001111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111100000011111111000001111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111100000111111111000001111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111100000111111111000001111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111000000111111111000000000011111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111000000000001111000000000001111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111000000000000111000000000000111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111000000000000111000000000000111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111100000000000111100000000001111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111100000000001111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
};
parameter [0:stand_lenth-1][0:stand_width-1] ROM1 = {
100'b1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111100000011111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000000000011111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111000000000000001111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111110000000000000000111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111100000000000000000011111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111000000000000000000001111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111110000000000000000000000111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111110000000000000000000000111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111110000000000000000000000111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000000000000000000000011111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000000000000000000000011111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000000000000000000000011111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000000000000000000000011111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000000000000000000000011111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000000000000000000000011111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111110000000000000000000000111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111110000000000000000000000111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111110000000000000000000000111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111000000000000000000001111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111100000000000000000011111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111110000000000000000111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111000000000000001111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000000000011111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111100000001111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111100000001111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111110000000001111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111110000000000111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000000000011111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111000000000000011111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111110000000000000001111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111110000000000000001111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111100000000000000000111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111000000000000000000011111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111110000000000001100000011111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111110000000000001100000001111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000001000001110000001111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111000000010000001111000000111111110000011111111111111111111111111,
100'b1111111111111111111111111111111111110000000110000001111000000111111100000001111111111111111111111111,
100'b1111111111111111111111111111111111110000001110000011111100000011110000000001111111111111111111111111,
100'b1111111111111111111111111111111111100000011110000011111100000001000000000011111111111111111111111111,
100'b1111111111111111111111111111111111000000011110000011111110000000000000000111111111111111111111111111,
100'b1111111111111111111111111111111110000000111110000011111111000000000000001111111111111111111111111111,
100'b1111111111111111111111111111111110000001111100000011111111000000000000111111111111111111111111111111,
100'b1111111111111111111111111111111110000001111100000011111111100000000001111111111111111111111111111111,
100'b1111111111111111111111111111111110000011111100000011111111110000001111111111111111111111111111111111,
100'b1111111111111111111111111111111110000011111100000111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111100000011111100000111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111100000011111100000111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111100000011111100000111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111100000111111100000011111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111100000111111100000011111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111100000111111100000011111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111100000111111100000011111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111100000111111100000001111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111100000111111100000001111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111110001111111100000000011111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000000000111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000000000011111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000000000000111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000000000000001111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111000000000000000000111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111000000111100000000001111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111000000111110000000000111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111000000111111100000000011111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111000001111111111000000001111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111110000001111111111100000000111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111110000001111111111110000000111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111100000011111111111111100000011111111111111111111111111111111,
100'b1111111111111111111111111111111111111111100000011111111111111100000111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111100000111111111111111100000111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111000000111111111111111000000111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111000000111111111111111000000111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111000001111111111111111000001111111111111111111111111111111111,
100'b1111111111111111111111111111111111111110000001111111111111111000001111111111111111111111111111111111,
100'b1111111111111111111111111111111111111110000001111111111111110000001111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000011111111111111110000001111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000011111111111111110000011111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000111111111111111110000011111111111111111111111111111111111,
100'b1111111111111111111111111111111111111000000111111111111111110000011111111111111111111111111111111111,
100'b1111111111111111111111111111111111111000000111111111111111110000000111111111111111111111111111111111,
100'b1111111111111111111111111111111111110000001111111111111111110000000011111111111111111111111111111111,
100'b1111111111111111111111111111111111110000001111111111111111110000000001111111111111111111111111111111,
100'b1111111111111111111111111111111111110000011111111111111111111000000011111111111111111111111111111111,
100'b1111111111111111111111111111111111100000011111111111111111111100000011111111111111111111111111111111,
100'b1111111111111111111111111111111111100000011111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111100000011111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111100000011111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111100000001111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111110000000111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111000000111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111110001111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111};
parameter [0:stand_lenth-1][0:stand_width-1] ROM2 = {
100'b1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111100000011111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000000000011111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111000000000000001111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111110000000000000000111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111100000000000000000011111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111000000000000000000001111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111110000000000000000000000111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111110000000000000000000000111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111110000000000000000000000111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000000000000000000000011111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000000000000000000000011111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000000000000000000000011111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000000000000000000000011111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000000000000000000000011111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000000000000000000000011111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111110000000000000000000000111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111110000000000000000000000111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111110000000000000000000000111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111000000000000000000001111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111100000000000000000011111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111110000000000000000111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111000000000000001111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000000000011111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111100000001111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111100000001111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111110000000001111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111000000000001111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111000000000000000111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111000000000000000000011111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111000000000000000000000000111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111100000000000000000000000000011111111111111111111111111111111111111111,
100'b1111111111111111111111111111110000000000000000000000000000001111111111111100011111111111111111111111,
100'b1111111111111111111111111111000000000000001110000000000000000011111111110000001111111111111111111111,
100'b1111111111111111111111111111000000000001111110000001110000000001111111100000001111111111111111111111,
100'b1111111111111111111111111110000000001111111111000001111000000000011110000000001111111111111111111111,
100'b1111111111111111111111111100000000111111111111000001111110000000000000000000001111111111111111111111,
100'b1111111111111111111111111100000011111111111110000001111111000000000000000000111111111111111111111111,
100'b1111111111111111111111111000000111111111111110000001111111110000000000000011111111111111111111111111,
100'b1111111111111111111111111000000111111111111110000011111111111000000000000111111111111111111111111111,
100'b1111111111111111111111110000001111111111111110000011111111111110000000011111111111111111111111111111,
100'b1111111111111111111111110000001111111111111110000011111111111111000001111111111111111111111111111111,
100'b1111111111111111111111110000011111111111111110000011111111111111111111111111111111111111111111111111,
100'b1111111111111111111111110000011111111111111100000011111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111000111111111111111100000011111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000011111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000011111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000011111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000011111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000011111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000001111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000001111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000000111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000000011111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000000001111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000000000111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000000000011111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111000000000000001111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111000000000000000111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111000000110000000011111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111110000000111000000001111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111110000001111100000000111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111100000011111110000000011111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111000000011111111000000001111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111110000000111111111110000000111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000001111111111111000000011111111111111111111111111111111111,
100'b1111111111111111111111111111111111110000000001111111111111100000001111111111111111111111111111111111,
100'b1111111111111111111111111111111111100000000011111111111111110000000111111111111111111111111111111111,
100'b1111111111111111111111000000011100000000000111111111111111110000000011111111111111111111111111111111,
100'b1111111111111111111100000000000000000000001111111111111111111100000011111111111111111111111111111111,
100'b1111111111111111111000000000000000000000111111111111111111111100000011111111111111111111111111111111,
100'b1111111111111111111000000000000000000001111111111111111111111110000001111111111111111111111111111111,
100'b1111111111111111110000000000000000000111111111111111111111111110000001111111111111111111111111111111,
100'b1111111111111111110000000000000000111111111111111111111111111111000001111111111111111111111111111111,
100'b1111111111111111110000011111111111111111111111111111111111111111000000111111111111111111111111111111,
100'b1111111111111111110000011111111111111111111111111111111111111111000000111111111111111111111111111111,
100'b1111111111111111110000011111111111111111111111111111111111111111100000111111111111111111111111111111,
100'b1111111111111111110000111111111111111111111111111111111111111111100000111111111111111111111111111111,
100'b1111111111111111111101111111111111111111111111111111111111111111100000011111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111111111111111111111110000011111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111111111111111111111110000000000000111111111111111111111,
100'b1111111111111111111111111111111111111111111111111111111111111111110000000000000011111111111111111111,
100'b1111111111111111111111111111111111111111111111111111111111111111111000000000000011111111111111111111,
100'b1111111111111111111111111111111111111111111111111111111111111111111000000000000011111111111111111111,
100'b1111111111111111111111111111111111111111111111111111111111111111111100000000000111111111111111111111,
100'b1111111111111111111111111111111111111111111111111111111111111111111111000000111111111111111111111111,
100'b1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111};
parameter [0:stand_lenth-1][0:stand_width-1] ROM3 = {
100'b1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111100000011111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000000000011111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111000000000000001111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111110000000000000000111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111100000000000000000011111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111000000000000000000001111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111110000000000000000000000111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111110000000000000000000000111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111110000000000000000000000111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000000000000000000000011111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000000000000000000000011111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000000000000000000000011111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000000000000000000000011111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000000000000000000000011111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000000000000000000000011111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111110000000000000000000000111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111110000000000000000000000111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111110000000000000000000000111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111000000000000000000001111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111100000000000000000011111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111110000000000000000111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111000000000000001111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000000000011111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111000000001111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111000000011111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111110000000111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111110000000111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111110000000111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000000111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111000000000111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111000000000111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111110000000000111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111100000000000111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111100000000000111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111000000000000111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111000000000000111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111110000000000000111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000000000000111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000010000000111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111000000110000000111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111000000110000000111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111000000000000000011111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111000000000000000001100001111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000000000000000000000111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000000000000000000000111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111000000000000000000001111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111110000000000000000001111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000110000000111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000011111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000011111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000011111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000011111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000011111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000011111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000011111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000001111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111100000001111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111000000000111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111000000000111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111000000000011111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111000000000011111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111000000000011111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111000000000001111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111000000000001111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111110000001000000111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111110000001000000111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111110000011100000111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111110000011100000011111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111110000011100000011111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111110000000000000000011111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111000000000000000000011111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111110000000000000000000011111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111100000000000000000000111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111100000000000000000001111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111100000000000001111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111100000000000111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111110000000000111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111000000000111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111000000000111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111100000000111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111100000111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111100000111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111100000111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111100000111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111100000111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111100000111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111100000111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111100000000001111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111100000000000111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111100000000000011111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111100000000000011111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111110000000000111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111,
100'b1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111};
always_ff @(posedge frame_clk) begin
state <= next_state;
if(counter == 5'd10)
counter <= 5'b0;
else
counter <= counter + 1'b1;
end
always_comb
begin
next_state = state;
case(state)
stand:
if(counter == 5'd9 && ~stand1)
next_state = run1;
else
next_state = stand;
run1:
if(counter == 5'd9)
next_state = run2;
else if (stand1)
next_state = stand;
else
next_state = run1;
run2:
if(counter == 5'd9)
next_state = run3;
else if (stand1)
next_state = stand;
else
next_state = run2;
run3:
if(counter == 5'd9 && ~stand1)
next_state = run1;
else if (stand1)
next_state = stand;
else
next_state = run3;
endcase
end
always_comb
begin
data = data;
case(state)
stand:
data = ROM[addr][0:99];
run1:
data = ROM1[addr][0:99];
run2:
data = ROM2[addr][0:99];
run3:
data = ROM3[addr][0:99];
endcase
end
endmodule
|
Coq
|
# AUTOMATICALLY GENERATED
# DO NOT EDIT THIS FILE DIRECTLY. Edit /Dockerfile.erb and run /update instead.
FROM alpine:3.21.3
RUN set -ex \
&& apk add --no-cache --virtual .lua-builddeps \
ca-certificates \
curl \
gcc \
libc-dev \
make \
readline-dev \
coreutils \
gnupg \
unzip \
# rundeps
wget \
&& curl -fsSL -o /tmp/lua.tar.gz "https://www.lua.org/ftp/lua-5.2.4.tar.gz" \
&& cd /tmp \
&& echo "b9e2e4aad6789b3b63a056d442f7b39f0ecfca3ae0f1fc0ae4e9614401b69f4b *lua.tar.gz" | sha256sum -c - \
&& mkdir /tmp/lua \
&& tar -xf /tmp/lua.tar.gz -C /tmp/lua --strip-components=1 \
&& cd /tmp/lua \
&& make linux \
&& make install \
&& curl -fsSL -o /tmp/luarocks.tar.gz "https://luarocks.org/releases/luarocks-3.11.1.tar.gz" \
&& curl -fsSL -o /tmp/luarocks.tar.gz.asc "https://luarocks.org/releases/luarocks-3.11.1.tar.gz.asc" \
&& cd /tmp \
&& export GNUPGHOME="$(mktemp -d)" \
&& export GPG_KEYS="8460980B2B79786DE0C7FCC83FD8F43C2BB3C478" \
&& (gpg --batch --keyserver hkp://ha.pool.sks-keyservers.net:80 --recv-keys "$GPG_KEYS" || gpg --batch --keyserver hkp://ipv4.pool.sks-keyservers.net:80 --recv-keys "$GPG_KEYS" || gpg --batch --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys "$GPG_KEYS" || gpg --batch --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys "$GPG_KEYS") \
&& gpg --batch --verify luarocks.tar.gz.asc luarocks.tar.gz \
&& rm -rf "$GNUPGHOME" \
&& mkdir /tmp/luarocks \
&& tar -xf /tmp/luarocks.tar.gz -C /tmp/luarocks --strip-components=1 \
&& cd /tmp/luarocks \
&& ./configure \
&& make \
&& make install \
&& cd / \
&& apk add --no-network --no-cache --virtual .lua-rundeps \
readline \
ca-certificates \
coreutils \
wget \
unzip \
&& apk del --no-network .lua-builddeps \
&& rm -rf /tmp/lua /tmp/lua.tar.gz \
&& rm -rf /tmp/luarocks /tmp/luarocks.tar.gz \
&& luarocks --version \
&& lua -v
CMD ["lua"]
LABEL org.opencontainers.image.source="https://github.com/GUI/lua-docker" \
org.opencontainers.image.licenses="MIT"
|
Dockerfile
|
'menu': [
{
label: 'Packages'
submenu: [
label: 'u2i Hackathon Teaser'
submenu: [
{ label: 'Configure', command: 'u2i-hackathon-teaser:configure' },
{ label: 'Run', command: 'u2i-hackathon-teaser:run' }
]
]
}
]
|
CoffeeScript
|
// =======================================================================
// Department of Electrical and Computer Engineering
// Portland State University
//
// Course name: ECE 593 - Pre-Silicon Validation
// Term & Year: Spring 2017
// Instructor : Tareque Ahmad
//
// Project: Hardware implementation of PDP8
// Instruction Set Architecture (ISA) level simulator
//
// Filename: memory_pdp.sv
// Description: TBD
// Created by: Tareque Ahmad
// Date: May 08, 2017
//
// Copyright: Tareque Ahmad
// =======================================================================
// Package Include
`include "pdp8_pkg.sv"
// Package Import
import pdp8_pkg::*;
module memory_pdp
(
// Global input
input clk,
/* IFU/EXEC request is necessary to tell the memory module what type of request the CPU is making to the memory */
input ifu_rd_req,
input [`ADDR_WIDTH-1:0] ifu_rd_addr,
output [`DATA_WIDTH-1:0] ifu_rd_data,
input exec_rd_req,
input [`ADDR_WIDTH-1:0] exec_rd_addr,
output [`DATA_WIDTH-1:0] exec_rd_data,
input exec_wr_req,
input [`ADDR_WIDTH-1:0] exec_wr_addr,
input [`DATA_WIDTH-1:0] exec_wr_data
);
reg [`DATA_WIDTH-1:0] int_ifu_rd_data;
reg [`DATA_WIDTH-1:0] int_exec_rd_data;
reg [11:0] PDP_memory [0:4095];
// Fill up the memory with known consecutive data
/* Initialized to known number for deterministic testing - useful for deterministic testing to verify if the memory is corrupted or not */
integer k;
initial begin
for (k=0; k<4096; k=k+1) begin
//PDP_memory[k] = `DATA_WIDTH'bz;
PDP_memory[k] = k;
end
end
int file;
// Fill the memory with values taken from a data file
/* Defined in the package - This is the file containing the machine code for the assembly file */
initial begin
file = $fopen(`MEM_FILENAME, "r");
if (file == 0)
$display("\nError: Could not find file %s\n",`MEM_FILENAME);
else
$readmemh(`MEM_FILENAME,PDP_memory); // <- Memory being read is in HEX
end
// Display the contents of memory
integer l;
initial begin
$display("Contents of Mem after reading data file:");
for (l=0; l<4096; l=l+1) begin
$display("%d:%h",l,PDP_memory[l]);
end
end
//////////////////////////////////////////////////////////////////////////////////////////////
// Process IFU read requests
//
//////////////////////////////////////////////////////////////////////////////////////////////
always_ff @(posedge clk) begin
if (ifu_rd_req) begin
int_ifu_rd_data = PDP_memory[ifu_rd_addr];
end
end
//////////////////////////////////////////////////////////////////////////////////////////////
// Process Exec Write requests
//
//////////////////////////////////////////////////////////////////////////////////////////////
always @(posedge clk) begin
if (exec_wr_req) begin
PDP_memory[exec_wr_addr] = exec_wr_data;
end
end
//////////////////////////////////////////////////////////////////////////////////////////////
// Process EXEC read requests
//
//////////////////////////////////////////////////////////////////////////////////////////////
always_ff @(posedge clk) begin
if (exec_rd_req) begin
int_exec_rd_data = PDP_memory[exec_rd_addr];
end
end
assign ifu_rd_data = int_ifu_rd_data;
assign exec_rd_data = int_exec_rd_data;
/*
// Display the contents of memory
integer j;
final begin
$display("Contents of Mem and the end of the simulation :");
for (j=0; j<4096; j=j+1) begin
$display("%d:%h",j,PDP_memory[j]);
end
end
*/
int outfile;
// Fill the memory with values taken from a data file
final begin
outfile = $fopen(`OUT_FILENAME, "w");
if (outfile == 0)
$display("\nError: Could not find file %s\n",`OUT_FILENAME);
else
$writememh(`OUT_FILENAME,PDP_memory);
end
endmodule // memory_pdp
|
Coq
|
#' @method gplot numeric
#' @export
#' @export gplot.numeric
"gplot.numeric" <-
function(x, y, se.y = NULL, xlab, ylab, residuals = NULL, rugplot = FALSE, scale =
0, se = FALSE, xlim = NULL, ylim = NULL, fit = TRUE, ...)
{
if(length(x) != length(y))
stop("x and y do not have the same length; possibly a consequence of an na.action"
)
### Here we check if its a simple linear term; if so, we include a point at the mean of x
if(se && !is.null(se.y) && ylab==paste("partial for",xlab)){
x=c(x,mean(x))
y=c(y,0)
se.y=c(se.y,0)
}
ux <- unique(sort(x))
o <- match(ux, x)
uy <- y[o]
xlim <- range(xlim, ux)
ylim <- range(ylim, uy)
if(rugplot) {
jx <- jitter(x[!is.na(x)])
xlim <- range(c(xlim, jx))
}
if(se && !is.null(se.y)) {
se.upper <- uy + 2 * se.y[o]
se.lower <- uy - 2 * se.y[o]
ylim <- range(c(ylim, se.upper, se.lower))
}
if(!is.null(residuals)) {
if(length(residuals) == length(y)) {
residuals <- y + residuals
ylim <- range(c(ylim, residuals))
}
else {
residuals <- NULL
warning(paste("Residuals do not match x in \"", ylab,
"\" preplot object", sep = ""))
}
}
ylim <- ylim.scale(ylim, scale)
if(!is.null(residuals)) {
plot(x, residuals, xlim = xlim, ylim = ylim, xlab = xlab, ylab
= ylab, ...)
if(fit)
lines(ux, uy)
}
else {
if(fit)
plot(ux, uy, type = "l", xlim = xlim, ylim = ylim,
xlab = xlab, ylab = ylab, ...)
}
if(rugplot)
rug(jx)
if(se) {
lines(ux, se.upper, lty = 3)
lines(ux, se.lower, lty = 3)
}
invisible(diff(ylim))
}
|
R
|
#
# create one new entry on initial install so we always have one to anchor on
#
FIRST_ENTRY_TEXT = 'started up metime'
Meteor.startup ->
if Entries.find({}).count() == 0
Entries.insert
text: FIRST_ENTRY_TEXT
stamp: new Date().getTime()
|
CoffeeScript
|
//
// CandidateTopView.m
// 00Promise
//
// Created by Rangken on 2015. 1. 29..
// Copyright (c) 2015년 SocialInovation. All rights reserved.
//
#import "CandidateTopView.h"
#import "CandidateViewController.h"
@implementation CandidateTopView
- (IBAction)backItemClick:(id)sender
{
[_parent backItemClick:sender];
}
- (IBAction)shareClick:(id)sender
{
[_parent shareClick:sender];
}
@end
|
Objective-C++
|
//! Functions and types for working with CUDA kernels.
use crate::context::{CacheConfig, SharedMemoryConfig};
use crate::error::{CudaResult, ToResult};
use crate::module::Module;
use cuda_driver_sys::CUfunction;
use std::marker::PhantomData;
use std::mem::transmute;
/// Dimensions of a grid, or the number of thread blocks in a kernel launch.
///
/// Each component of a `GridSize` must be at least 1. The maximum size depends on your device's
/// compute capability, but maximums of `x = (2^31)-1, y = 65535, z = 65535` are common. Launching
/// a kernel with a grid size greater than these limits will cause an error.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct GridSize {
/// Width of grid in blocks
pub x: u32,
/// Height of grid in blocks
pub y: u32,
/// Depth of grid in blocks
pub z: u32,
}
impl GridSize {
/// Create a one-dimensional grid of `x` blocks
#[inline]
pub fn x(x: u32) -> GridSize {
GridSize { x, y: 1, z: 1 }
}
/// Create a two-dimensional grid of `x * y` blocks
#[inline]
pub fn xy(x: u32, y: u32) -> GridSize {
GridSize { x, y, z: 1 }
}
/// Create a three-dimensional grid of `x * y * z` blocks
#[inline]
pub fn xyz(x: u32, y: u32, z: u32) -> GridSize {
GridSize { x, y, z }
}
}
impl From<u32> for GridSize {
fn from(x: u32) -> GridSize {
GridSize::x(x)
}
}
impl From<(u32, u32)> for GridSize {
fn from((x, y): (u32, u32)) -> GridSize {
GridSize::xy(x, y)
}
}
impl From<(u32, u32, u32)> for GridSize {
fn from((x, y, z): (u32, u32, u32)) -> GridSize {
GridSize::xyz(x, y, z)
}
}
impl<'a> From<&'a GridSize> for GridSize {
fn from(other: &GridSize) -> GridSize {
other.clone()
}
}
/// Dimensions of a thread block, or the number of threads in a block.
///
/// Each component of a `BlockSize` must be at least 1. The maximum size depends on your device's
/// compute capability, but maximums of `x = 1024, y = 1024, z = 64` are common. In addition, the
/// limit on total number of threads in a block (`x * y * z`) is also defined by the compute
/// capability, typically 1024. Launching a kernel with a block size greater than these limits will
/// cause an error.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct BlockSize {
/// X dimension of each thread block
pub x: u32,
/// Y dimension of each thread block
pub y: u32,
/// Z dimension of each thread block
pub z: u32,
}
impl BlockSize {
/// Create a one-dimensional block of `x` threads
#[inline]
pub fn x(x: u32) -> BlockSize {
BlockSize { x, y: 1, z: 1 }
}
/// Create a two-dimensional block of `x * y` threads
#[inline]
pub fn xy(x: u32, y: u32) -> BlockSize {
BlockSize { x, y, z: 1 }
}
/// Create a three-dimensional block of `x * y * z` threads
#[inline]
pub fn xyz(x: u32, y: u32, z: u32) -> BlockSize {
BlockSize { x, y, z }
}
}
impl From<u32> for BlockSize {
fn from(x: u32) -> BlockSize {
BlockSize::x(x)
}
}
impl From<(u32, u32)> for BlockSize {
fn from((x, y): (u32, u32)) -> BlockSize {
BlockSize::xy(x, y)
}
}
impl From<(u32, u32, u32)> for BlockSize {
fn from((x, y, z): (u32, u32, u32)) -> BlockSize {
BlockSize::xyz(x, y, z)
}
}
impl<'a> From<&'a BlockSize> for BlockSize {
fn from(other: &BlockSize) -> BlockSize {
other.clone()
}
}
/// All supported function attributes for [Function::get_attribute](struct.Function.html#method.get_attribute)
#[repr(u32)]
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
pub enum FunctionAttribute {
/// The maximum number of threads per block, beyond which a launch would fail. This depends on
/// both the function and the device.
MaxThreadsPerBlock = 0,
/// The size in bytes of the statically-allocated shared memory required by this function.
SharedMemorySizeBytes = 1,
/// The size in bytes of the constant memory required by this function
ConstSizeBytes = 2,
/// The size in bytes of local memory used by each thread of this function
LocalSizeBytes = 3,
/// The number of registers used by each thread of this function
NumRegisters = 4,
/// The PTX virtual architecture version for which the function was compiled. This value is the
/// major PTX version * 10 + the minor PTX version, so version 1.3 would return the value 13.
PtxVersion = 5,
/// The binary architecture version for which the function was compiled. Encoded the same way as
/// PtxVersion.
BinaryVersion = 6,
/// The attribute to indicate whether the function has been compiled with user specified
/// option "-Xptxas --dlcm=ca" set.
CacheModeCa = 7,
#[doc(hidden)]
__Nonexhaustive = 8,
}
/// Handle to a global kernel function.
#[derive(Debug)]
pub struct Function<'a> {
inner: CUfunction,
module: PhantomData<&'a Module>,
}
impl<'a> Function<'a> {
pub(crate) fn new(inner: CUfunction, _module: &Module) -> Function {
Function {
inner,
module: PhantomData,
}
}
/// Returns information about a function.
///
/// # Examples
///
/// ```
/// # use rustacuda::*;
/// # use std::error::Error;
/// # fn main() -> Result<(), Box<dyn Error>> {
/// # let _ctx = quick_init()?;
/// # use rustacuda::module::Module;
/// # use std::ffi::CString;
/// # let ptx = CString::new(include_str!("../resources/add.ptx"))?;
/// # let module = Module::load_from_string(&ptx)?;
/// # let name = CString::new("sum")?;
/// use rustacuda::function::FunctionAttribute;
/// let function = module.get_function(&name)?;
/// let shared_memory = function.get_attribute(FunctionAttribute::SharedMemorySizeBytes)?;
/// println!("This function uses {} bytes of shared memory", shared_memory);
/// # Ok(())
/// # }
/// ```
pub fn get_attribute(&self, attr: FunctionAttribute) -> CudaResult<i32> {
unsafe {
let mut val = 0i32;
cuda_driver_sys::cuFuncGetAttribute(
&mut val as *mut i32,
// This should be safe, as the repr and values of FunctionAttribute should match.
::std::mem::transmute(attr),
self.inner,
)
.to_result()?;
Ok(val)
}
}
/// Sets the preferred cache configuration for this function.
///
/// On devices where L1 cache and shared memory use the same hardware resources, this sets the
/// preferred cache configuration for this function. This is only a preference. The
/// driver will use the requested configuration if possible, but is free to choose a different
/// configuration if required to execute the function. This setting will override the
/// context-wide setting.
///
/// This setting does nothing on devices where the size of the L1 cache and shared memory are
/// fixed.
///
/// # Example
///
/// ```
/// # use rustacuda::*;
/// # use std::error::Error;
/// # fn main() -> Result<(), Box<dyn Error>> {
/// # let _ctx = quick_init()?;
/// # use rustacuda::module::Module;
/// # use std::ffi::CString;
/// # let ptx = CString::new(include_str!("../resources/add.ptx"))?;
/// # let module = Module::load_from_string(&ptx)?;
/// # let name = CString::new("sum")?;
/// use rustacuda::context::CacheConfig;
/// let mut function = module.get_function(&name)?;
/// function.set_cache_config(CacheConfig::PreferL1)?;
/// # Ok(())
/// # }
/// ```
pub fn set_cache_config(&mut self, config: CacheConfig) -> CudaResult<()> {
unsafe { cuda_driver_sys::cuFuncSetCacheConfig(self.inner, transmute(config)).to_result() }
}
/// Sets the preferred shared memory configuration for this function.
///
/// On devices with configurable shared memory banks, this function will set this function's
/// shared memory bank size which is used for subsequent launches of this function. If not set,
/// the context-wide setting will be used instead.
///
/// # Example
///
/// ```
/// # use rustacuda::*;
/// # use std::error::Error;
/// # fn main() -> Result<(), Box<dyn Error>> {
/// # let _ctx = quick_init()?;
/// # use rustacuda::module::Module;
/// # use std::ffi::CString;
/// # let ptx = CString::new(include_str!("../resources/add.ptx"))?;
/// # let module = Module::load_from_string(&ptx)?;
/// # let name = CString::new("sum")?;
/// use rustacuda::context::SharedMemoryConfig;
/// let mut function = module.get_function(&name)?;
/// function.set_shared_memory_config(SharedMemoryConfig::EightByteBankSize)?;
/// # Ok(())
/// # }
/// ```
pub fn set_shared_memory_config(&mut self, cfg: SharedMemoryConfig) -> CudaResult<()> {
unsafe { cuda_driver_sys::cuFuncSetSharedMemConfig(self.inner, transmute(cfg)).to_result() }
}
pub(crate) fn to_inner(&self) -> CUfunction {
self.inner
}
}
/// Launch a kernel function asynchronously.
///
/// # Syntax:
///
/// The format of this macro is designed to resemble the triple-chevron syntax used to launch
/// kernels in CUDA C. There are two forms available:
///
/// ```ignore
/// let result = launch!(module.function_name<<<grid, block, shared_memory_size, stream>>>(parameter1, parameter2...));
/// ```
///
/// This will load a kernel called `function_name` from the module `module` and launch it with
/// the given grid/block size on the given stream. Unlike in CUDA C, the shared memory size and
/// stream parameters are not optional. The shared memory size is a number of bytes per thread for
/// dynamic shared memory (Note that this uses `extern __shared__ int x[]` in CUDA C, not the
/// fixed-length arrays created by `__shared__ int x[64]`. This will usually be zero.).
/// `stream` must be the name of a [`Stream`](stream/struct.Stream.html) value.
/// `grid` can be any value which implements [`Into<GridSize>`](function/struct.GridSize.html) (such as
/// `u32` values, tuples of up to three `u32` values, and GridSize structures) and likewise `block`
/// can be any value that implements [`Into<BlockSize>`](function/struct.BlockSize.html).
///
/// NOTE: due to some limitations of Rust's macro system, `module` and `stream` must be local
/// variable names. Paths or function calls will not work.
///
/// The second form is similar:
///
/// ```ignore
/// let result = launch!(function<<<grid, block, shared_memory_size, stream>>>(parameter1, parameter2...));
/// ```
///
/// In this variant, the `function` parameter must be a variable. Use this form to avoid looking up
/// the kernel function for each call.
///
/// # Safety
///
/// Launching kernels must be done in an `unsafe` block. Calling a kernel is similar to calling a
/// foreign-language function, as the kernel itself could be written in C or unsafe Rust. The kernel
/// must accept the same number and type of parameters that are passed to the `launch!` macro. The
/// kernel must not write invalid data (for example, invalid enums) into areas of memory that can
/// be copied back to the host. The programmer must ensure that the host does not access device or
/// unified memory that the kernel could write to until after calling `stream.synchronize()`.
///
/// # Examples
///
/// ```
/// # #[macro_use]
/// # use rustacuda::*;
/// # use std::error::Error;
/// use rustacuda::memory::*;
/// use rustacuda::module::Module;
/// use rustacuda::stream::*;
/// use std::ffi::CString;
///
/// # fn main() -> Result<(), Box<dyn Error>> {
///
/// // Set up the context, load the module, and create a stream to run kernels in.
/// let _ctx = rustacuda::quick_init()?;
/// let ptx = CString::new(include_str!("../resources/add.ptx"))?;
/// let module = Module::load_from_string(&ptx)?;
/// let stream = Stream::new(StreamFlags::NON_BLOCKING, None)?;
///
/// // Create buffers for data
/// let mut in_x = DeviceBuffer::from_slice(&[1.0f32; 10])?;
/// let mut in_y = DeviceBuffer::from_slice(&[2.0f32; 10])?;
/// let mut out_1 = DeviceBuffer::from_slice(&[0.0f32; 10])?;
/// let mut out_2 = DeviceBuffer::from_slice(&[0.0f32; 10])?;
///
/// // This kernel adds each element in `in_x` and `in_y` and writes the result into `out`.
/// unsafe {
/// // Launch the kernel with one block of one thread, no dynamic shared memory on `stream`.
/// let result = launch!(module.sum<<<1, 1, 0, stream>>>(
/// in_x.as_device_ptr(),
/// in_y.as_device_ptr(),
/// out_1.as_device_ptr(),
/// out_1.len()
/// ));
/// // `launch!` returns an error in case anything went wrong with the launch itself, but
/// // kernel launches are asynchronous so errors caused by the kernel (eg. invalid memory
/// // access) will show up later at some other CUDA API call (probably at `synchronize()`
/// // below).
/// result?;
///
/// // Launch the kernel again using the `function` form:
/// let function_name = CString::new("sum")?;
/// let sum = module.get_function(&function_name)?;
/// // Launch with 1x1x1 (1) blocks of 10x1x1 (10) threads, to show that you can use tuples to
/// // configure grid and block size.
/// let result = launch!(sum<<<(1, 1, 1), (10, 1, 1), 0, stream>>>(
/// in_x.as_device_ptr(),
/// in_y.as_device_ptr(),
/// out_2.as_device_ptr(),
/// out_2.len()
/// ));
/// result?;
/// }
///
/// // Kernel launches are asynchronous, so we wait for the kernels to finish executing.
/// stream.synchronize()?;
///
/// // Copy the results back to host memory
/// let mut out_host = [0.0f32; 20];
/// out_1.copy_to(&mut out_host[0..10])?;
/// out_2.copy_to(&mut out_host[10..20])?;
///
/// for x in out_host.iter() {
/// assert_eq!(3.0, *x);
/// }
/// # Ok(())
/// # }
/// ```
///
#[macro_export]
macro_rules! launch {
($module:ident . $function:ident <<<$grid:expr, $block:expr, $shared:expr, $stream:ident>>>( $( $arg:expr),* )) => {
{
let name = std::ffi::CString::new(stringify!($function)).unwrap();
let function = $module.get_function(&name);
match function {
Ok(f) => launch!(f<<<$grid, $block, $shared, $stream>>>( $($arg),* ) ),
Err(e) => Err(e),
}
}
};
($function:ident <<<$grid:expr, $block:expr, $shared:expr, $stream:ident>>>( $( $arg:expr),* )) => {
{
fn assert_impl_devicecopy<T: $crate::memory::DeviceCopy>(_val: T) {}
if false {
$(
assert_impl_devicecopy($arg);
)*
};
$stream.launch(&$function, $grid, $block, $shared,
&[
$(
&$arg as *const _ as *mut ::std::ffi::c_void,
)*
]
)
}
};
}
#[cfg(test)]
mod test {
use super::*;
use crate::memory::CopyDestination;
use crate::memory::DeviceBuffer;
use crate::quick_init;
use crate::stream::{Stream, StreamFlags};
use std::error::Error;
use std::ffi::CString;
#[test]
fn test_launch() -> Result<(), Box<dyn Error>> {
let _context = quick_init();
let ptx_text = CString::new(include_str!("../resources/add.ptx"))?;
let module = Module::load_from_string(&ptx_text)?;
unsafe {
let mut in_x = DeviceBuffer::from_slice(&[2.0f32; 128])?;
let mut in_y = DeviceBuffer::from_slice(&[1.0f32; 128])?;
let mut out: DeviceBuffer<f32> = DeviceBuffer::uninitialized(128)?;
let stream = Stream::new(StreamFlags::NON_BLOCKING, None)?;
launch!(module.sum<<<1, 128, 0, stream>>>(in_x.as_device_ptr(), in_y.as_device_ptr(), out.as_device_ptr(), out.len()))?;
stream.synchronize()?;
let mut out_host = [0f32; 128];
out.copy_to(&mut out_host[..])?;
for x in out_host.iter() {
assert_eq!(3, *x as u32);
}
}
Ok(())
}
}
|
RenderScript
|
-module(hexer_deps_SUITE).
-include_lib("inaka_mixer/include/mixer.hrl").
-mixin([{ hexer_test_utils
, [ init_per_suite/1
, end_per_suite/1
]
}
]).
-export([ all/0
]).
-export([ resolve_basic/1
, resolve_empty/1
, resolve_multiple_lines/1
, resolving_no_hex_deps/1
]).
-spec all() -> [atom()].
all() -> hexer_test_utils:all(?MODULE).
-spec resolve_basic(hexer_test_utils:config()) -> {comment, string()}.
resolve_basic(_Config) ->
ct:comment("Simple Makefile works with hex dependencies"),
create_makefile(
"PROJECT = test \n"
"DEPS = validerl\n"
"dep_validerl = hex 1.0.0\n"
),
ResultBasic = hexer_deps:resolve("."),
Dependecy = validerl,
[ {Dependecy,
[ {<<"app">>, Dependecy}
, {<<"requirement">>, "1.0.0"}
, {<<"optional">>, false}
]}
] = ResultBasic,
ct:comment("Shell/Test Deps should be ignored"),
create_makefile(
"DEPS = validerl \n"
"TEST_DEPS = dep3 dep5\n"
"SHELL_DEPS = dep6 dep7\n"
"\n"
"dep_validerl = hex 1.0.0\n"
"dep_dep2 = hex 0.2.2\n"
"dep_dep3 = hex 3.4.5\n"
"dep_dep5 = git https://github.com/user/dep5 e666999a\n"
"dep_dep6 = git https://github.com/user/dep5 a999666e\n"
),
ResultBasic = hexer_deps:resolve("."),
{comment, ""}.
-spec resolving_no_hex_deps(hexer_test_utils:config()) -> {comment, string()}.
resolving_no_hex_deps(_Config) ->
ct:comment("Simple Makefile doesn't works with NO hex dependencies"),
ErrorDependency = "dep_dep1 = git https://github.com/user/dep5 e666999a",
create_makefile(
"DEPS = dep1 \n"
++ ErrorDependency ++ "\n"
),
ok = try _ = hexer_deps:resolve("."), error
catch _:{hexer_deps, no_hex_dependency} -> ok
end,
ct:comment("Complex Makefile doesn't works with NO hex dependencies"),
ErrorDep1 = "dep_dep1 = git https://github.com/user/dep5 e666999a",
ErrorDep2 = "dep_dep6 = git https://github.com/user/dep5 a999666e",
create_makefile(
"DEPS = dep1 dep6\n"
"TEST_DEPS = dep3 dep5\n"
"SHELL_DEPS = dep7\n"
"\n"
"dep_dep1 = hex 0.1.2\n"
"dep_dep2 = hex 0.2.2\n"
"dep_dep3 = hex 3.4.5\n"
++ ErrorDep1 ++ "\n"
++ ErrorDep2 ++ "\n"
),
ok = try _ = hexer_deps:resolve("."), error
catch _:{hexer_deps, no_hex_dependency} -> ok
end,
{comment, ""}.
-spec resolve_empty(hexer_test_utils:config()) -> {comment, string()}.
resolve_empty(_Config) ->
ct:comment("Empty Makefile should produce no deps"),
create_makefile(""),
[] = hexer_deps:resolve("."),
ct:comment("No hex deps produce no deps"),
create_makefile(
"PROJECT = test \n"
"SHELL_DEPS = dep_dep1 dep_dep2\n"
"dep_dep1 = cp /a/path\n"
"dep_dep2 = git https://github.com/user/dep2 b00b1e5\n"
),
[] = hexer_deps:resolve("."),
ct:comment("Shell/Test Deps should be ignored"),
create_makefile(
"PROJECT = test \n"
"TEST_DEPS = dep3 dep5\n"
"SHELL_DEPS = dep9 dep100\n"
"\n"
"dep_dep2 = git https://github.com/user/dep2 b00b1e5\n"
"dep_dep3 = hex 3.4.5\n"
"dep_dep5 = git https://github.com/user/dep5 e666999a\n"
"dep_dep6 = hex 6.7.8\n"
),
[] = hexer_deps:resolve("."),
{comment, ""}.
-spec resolve_multiple_lines(hexer_test_utils:config()) -> {comment, string()}.
resolve_multiple_lines(_Config) ->
ct:comment("Simple Makefile works"),
create_makefile(
"PROJECT = test \n"
"DEPS = trails \n"
"\n"
"dep_trails = hex 0.1.1\n"
"dep_dep2 = hex 2.4.5\n"
"dep_dep3 = hex 3.4.5\n"
),
ResultMultiple = hexer_deps:resolve("."),
[ {trails,
[ {<<"app">>, trails}
, {<<"requirement">>, "0.1.1"}
, {<<"optional">>, false}
]}
] = ResultMultiple,
ct:comment("Shell/Test Deps should be ignored"),
create_makefile(
"PROJECT = test \n"
"DEPS = tirerl barrel_jiffy \n"
"TEST_DEPS = dep4 dep5\n"
"SHELL_DEPS = dep6 dep7\n"
"\n"
"dep_barrel_jiffy = hex 0.14.5\n"
"dep_tirerl = hex 0.1.9\n"
"dep_dep4 = hex 2.3.4\n"
"dep_dep5 = git https://github.com/user/dep5 e666999a\n"
"dep_dep6 = hex 5.6.7\n"
),
[ {tirerl ,
[ { <<"app">>, tirerl }
, {<<"requirement">>, "0.1.9"}
, {<<"optional">>, false}
]}
, {barrel_jiffy,
[ { <<"app">>, jiffy}
, {<<"requirement">>, "0.14.5"}
, {<<"optional">>, false}
]}] = hexer_deps:resolve("."),
{comment, ""}.
create_makefile(Contents) ->
ok = file:write_file("Makefile", [Contents, "include ../../erlang.mk\n"]).
|
Erlang
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.