##########################################################################
#    This is the charge file for the				         #
#       >>>> South African "Telkom" (Date 14/01/1997) <<<<		 #
#    Derived from the file 'sat-costs.c' written			 #
#    by Tillmann Steinbrecher						 #
#    'sat-costs.c' is a part of 'pppcosts' by Tillmann Steinbrecher	 #
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#
# This file is a part of tcharge, version 1.3, 11MAY98		         #
# Copyright (C) 1997,98 Volker B"orchers (boercher@physik.uni-bremen.de) #
# See file `tcharge.c' for legal affairs.				 #
##########################################################################

## Format for Variables:
#########################
#  VARIABLENAME=VALUE   (One each line, var.-names are not case-sensitive!)

## Comments:
#############
#  * everything after the "comment char" `#' is ignored
#  * you may include empty lines to improve readability

###########################################
## Global Variables ("Per unit billing")  #
###########################################
billing_per_unit = true
billing_per_second = false
unit_price = 0.309
currency_name = "F"
charge_date = "14/1/1997"
decimals = 2
currency_after_charge = true
zone_help_string = "-zone <n>         n = 0) Local (Default), 1) 50-100km, 2) 100-200km, 3) >200km"
# (Sorry, `zone_help_string' MUST be one line!)

## Public holidays:
###################
holidays = 0
# (sorted, comma-separated list of days since January 1, in the
# range 0 to 365. Has to be one line!)
# Holidays 1997:
#   0     January 1
#   Sorry, not more known


##################################################
## Time/Charge Definitions (not case-sensitive)  #
##################################################
## Format:
#     BEGIN
#     "Local" variable declarations (optional)
#     00:00    <sec>  #-> Begin of time band     length of one unit or
#     <hh:mm>  <sec>  #                          the price per second (per
#        .       .    #                              second billing)
#        .       .
#     END

##
## Local (0-50km)
##
BEGIN
# Sunday and saturday
    00:00	480
# Working days
    00:00	480
    08:00	180
    18:00	480
END

##
## Zone 50-100 km
##
BEGIN
# Sunday and saturday
    00:00	75.2
# Working days
    00:00	75.2
    08:00	37.6
    18:00	75.2
END

##
## Zone 100-200 km
##
BEGIN
# Sunday and saturday
    00:00	45.2
# Working days
    00:00	45.2
    08:00	18.8
    18:00	45.2
END

##
## Zone >200 km
##
BEGIN
# Sunday and saturday
    00:00	28.8
# Working days
    00:00	28.8
    08:00	13.6
    18:00	28.8
END

