-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdbstatefile.xml
99 lines (99 loc) · 2.66 KB
/
dbstatefile.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?xml version="1.0" encoding="UTF-8"?>
<bank>
<users>
<user>
<name>Grahe</name>
<transactions>
<transaction>
<date>2024-11-23</date>
<type>deposit</type>
<amount>41.00</amount>
</transaction>
<transaction>
<date>2024-11-24</date>
<type>deposit</type>
<amount>10.00</amount>
</transaction>
<transaction>
<date>2024-12-01</date>
<type>withdrawal</type>
<amount>6.00</amount>
</transaction>
<transaction>
<date>2024-12-25</date>
<type>deposit</type>
<amount>10.00</amount>
</transaction>
<transaction>
<date>2025-01-19</date>
<type>deposit</type>
<amount>29.50</amount>
</transaction>
<transaction>
<date>2025-01-27</date>
<type>deposit</type>
<amount>12.00</amount>
</transaction>
<transaction>
<date>2025-01-29</date>
<type>deposit</type>
<amount>20.00</amount>
</transaction>
<transaction>
<date>2025-02-09</date>
<type>deposit</type>
<amount>2.00</amount>
</transaction>
<transaction>
<date>2025-02-16</date>
<type>deposit</type>
<amount>54.00</amount>
</transaction>
<transaction>
<date>2025-03-16</date>
<type>deposit</type>
<amount>12.00</amount>
</transaction>
</transactions>
<interestRates>
<interestRate>
<startDate>2024-01-01</startDate>
<endDate>2024-10-31</endDate>
<rate>0.02</rate>
</interestRate>
<interestRate>
<startDate>2024-11-01</startDate>
<endDate>2025-12-31</endDate>
<rate>0.10</rate>
</interestRate>
</interestRates>
</user>
<user>
<name>Charles</name>
<transactions>
<transaction>
<date>2023-01-15</date>
<type>deposit</type>
<amount>200.00</amount>
</transaction>
<transaction>
<date>2023-02-20</date>
<type>withdrawal</type>
<amount>50.00</amount>
</transaction>
</transactions>
<interestRates>
<interestRate>
<startDate>2023-01-01</startDate>
<endDate>2023-02-28</endDate>
<rate>0.01</rate>
</interestRate>
<interestRate>
<startDate>2023-03-01</startDate>
<endDate>2023-12-31</endDate>
<rate>0.025</rate>
</interestRate>
</interestRates>
</user>
</users>
</bank>