Created
February 20, 2025 19:50
-
-
Save Quper24/aa7483d343693ee4f0451d7582c6e01e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SiiNunit | |
{ | |
bank_data : bank.data.storage | |
{ | |
min_after_loan_repay: 0 | |
loan_offers[]: bank.data.loan1 | |
loan_offers[]: bank.data.loan2 | |
loan_offers[]: bank.data.loan3 | |
loan_offers[]: bank.data.loan4 | |
overdraft_duration: 31 # days | |
overdraft_warn_day: 15 # starting on 3rd day | |
insurance_data: .insurance | |
} | |
insurance_data : .insurance | |
{ | |
coinsurance_fixed_base : 100 | |
coinsurance_fixed_min : 20 | |
coinsurance_fixed_max : 1000 | |
coinsurance_fixed_inc : 50 | |
coinsurance_fixed_dec : 10 | |
coinsurance_ratio_base : 0.1 | |
coinsurance_ratio_min : 0.02 | |
coinsurance_ratio_max : 1.0 | |
coinsurance_ratio_inc : 0.05 | |
coinsurance_ratio_dec : 0.01 | |
} | |
bank_loan_data: bank.data.loan1 | |
{ | |
amount: 10000 | |
interest_rate: 0.12 # 23 % | |
duration: 52 # in weeks | |
} | |
bank_loan_data: bank.data.loan2 | |
{ | |
amount: 50000 | |
interest_rate: 0.10 # 18 % | |
duration: 104 # in weeks | |
} | |
bank_loan_data: bank.data.loan3 | |
{ | |
amount: 200000 | |
interest_rate: 0.08 # 14 % | |
duration: 156 # in weeks | |
} | |
bank_loan_data: bank.data.loan4 | |
{ | |
amount: 500000 | |
interest_rate: 0.06 # 10 % | |
duration: 261 # in weeks | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment