-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfinancial.php
More file actions
395 lines (370 loc) · 12.9 KB
/
financial.php
File metadata and controls
395 lines (370 loc) · 12.9 KB
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
<!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/html; charset=UTF-8" />
<title>Financial | 2014 Annual Report on Philanthropy</title>
<?php include("includes/header.php"); ?>
<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>
<!-- PURPOSE GIFTS -->
<script type="text/javascript">
$(function () {
var chart;
$(document).ready(function() {
chart = new Highcharts.Chart({
colors: ['#4897f1', '#0d233a', '#8bbc21', '#aa1919', '#33c6e7', '#624289', '#ffa85c', '#3D96AE', '#AA4643','#FFCC33'],
chart: {
renderTo: 'purpose2011',
plotBackgroundColor: null,
backgroundColor:'rgba(255, 255, 255, 0.0)',
plotBorderWidth: null,
plotShadow: false
},
exporting: { enabled: false },
title: {
text: ''
},
credits: {
enabled: false
},
tooltip: {
formatter: function() {
return '<b>'+ this.point.name +'</b> '+ Math.round(this.percentage*100)/100 +'%';
}
},
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
dataLabels: {
enabled: false,
color: '#000000',
connectorColor: '#000000',
formatter: function() {
return '<b>'+ this.point.name +'</b> '+ Math.round(this.percentage) +'%';
}
}
}
},
series: [{
type: 'pie',
name: 'Giving Breakdown',
data: [
['Arts Division', 1.00],
['Campus Life', 3.00],
['Engineering', 12.00],
['Humanities', 2.00],
['Library', 2.00],
['Office of the Chancellor', 3.00],
['Phys. and Bio. Sciences', 55.00],
['Social Sciences', 17.00],
['Undergrad. education', 4.00]
]
}]
});
});
});
</script>
<!-- END PURPOSE GIFTS -->
<!-- PRIVATE GIFTS -->
<script type="text/javascript">
$(function () {
var chart;
$(document).ready(function() {
chart = new Highcharts.Chart({
colors: ['#4897f1', '#0d233a', '#8bbc21', '#aa1919', '#33c6e7', '#624289'],
chart: {
renderTo: 'private2011',
plotBackgroundColor: null,
backgroundColor:'rgba(255, 255, 255, 0.0)',
plotBorderWidth: null,
plotShadow: false
},
exporting: { enabled: false },
title: {
text: ''
},
credits: {
enabled: false
},
tooltip: {
formatter: function() {
return '<b>'+ this.point.name +'</b> '+ Math.round(this.percentage*100)/100 +'%';
}
},
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
dataLabels: {
enabled: false,
color: '#000000',
connectorColor: '#000000',
formatter: function() {
return '<b>'+ this.point.name +'</b> '+ Math.round(this.percentage) +'%';
}
}
}
},
series: [{
type: 'pie',
name: 'Giving Breakdown',
data: [
['Alumni', 16.00],
['Parents', 2.00],
['Friends of the Campus', 20.00],
['Foundations', 42.00],
['Corporations', 17.00],
['Other Organizations', 2.00]
]
}]
});
});
});
</script>
<!-- END PRIVATE GIFTS -->
<!-- ENDOWNMENT PERFORMANCE -->
<script type="text/javascript">
$(function () {
var chart;
$(document).ready(function() {
chart = new Highcharts.Chart({
chart: {
renderTo: 'endownment',
backgroundColor: 'rgba(255, 255, 255, 0.0)',
},
exporting: { enabled: false },
title: {
text: ''
},
xAxis: {
categories: ['2006-7', '2007-8', '2008-9', '2009-10', '2010-11', '2011-12', '2012-13']
},
yAxis: {
title: {
text: '%'
}
},
tooltip: {
formatter: function() {
return ''+
this.series.name +': '+ this.y +'%';
}
},
credits: {
enabled: false
},
series: [{
type: 'column',
name: 'UCSC Endowment Performance',
data: [20, -1.93, -17.74, 10.87, 20.17, -0.36, 11.96]
}, {
type: 'column',
name: 'UCSC Endowment Benchmark',
data: [18, -.17, -13.99, 9.55, 17.90, -2.28, 10.12]
}, {
type: 'spline',
name: 'Annual Rate of Inflation',
data: [ 0, 4.30, -0.14, 1.05, 3.56, 1.66, 1.60]
}]
});
});
});
</script>
<!-- END ENDOWNMENT PERFORMANCE -->
<script type="text/javascript">
$(function () {
var chart;
$(document).ready(function() {
chart = new Highcharts.Chart({
chart: {
renderTo: 'trust',
backgroundColor:'rgba(255, 255, 255, 0.0)',
type: 'area'
},
exporting: { enabled: false },
title: {
text: '',
},
credits: {
enabled: false
},
subtitle: {
text: '',
},
xAxis: {
categories: ['2007-8', '2008-9', '2009-10', '2010-11', '20011-12','2012-13'],
tickmarkPlacement: 'on',
title: {
enabled: false
}
},
yAxis: {
title: {
text: 'Millions'
},
labels: {
formatter: function() {
return this.value / 1000000;
}
}
},
tooltip: {
formatter: function() {
return ''+
this.x +': $'+ Highcharts.numberFormat(this.y, 0, ',') ;
}
},
plotOptions: {
area: {
stacking: 'normal',
lineColor: '#666666',
lineWidth: 1,
marker: {
lineWidth: 1,
lineColor: '#666666'
}
}
},
series: [{
name: 'Trust/Unitrust',
data: [4016203,4398122,2831102,4185690,4140690, 3857593]
}, {
name: 'UC Regent Endowments',
data: [61754931,48393960,53234889,64314588,61543703,62778390]
}, {
name: 'Foundation Endowments',
data: [53203304,41718225,46277090,55450901,55956352,61488542]
}]
});
});
});
</script>
<!-- PAYOUT -->
<script type="text/javascript">
$(function () {
var chart;
$(document).ready(function() {
chart = new Highcharts.Chart({
chart: {
renderTo: 'payout',
backgroundColor:'rgba(255, 255, 255, 0.0)',
type: 'area'
},
exporting: { enabled: false },
title: {
text: '',
},
credits: {
enabled: false
},
subtitle: {
text: '',
},
xAxis: {
categories: ['2006-7', '2007-8', '2008-9', '2009-10', '2010-11', '20011-12', '20012-13'],
tickmarkPlacement: 'on',
title: {
enabled: false
}
},
yAxis: {
title: {
text: 'Millions'
},
labels: {
formatter: function() {
return this.value / 1000000;
}
}
},
tooltip: {
formatter: function() {
return ''+
this.x +': $'+ Highcharts.numberFormat(this.y, 0, ',') ;
}
},
plotOptions: {
area: {
stacking: 'normal',
lineColor: '#666666',
lineWidth: 1,
marker: {
lineWidth: 1,
lineColor: '#666666'
}
}
},
series: [{
name: 'Payouts Amount',
color: '#89A54E',
data: [4248949,4507966,3312914,3312914,4069886,5089655, 4409448 ]
}]
});
});
});
</script>
<div class="content">
<h1>Financial Information</h1>
<div class="desc-text ">Financial data in this report was compiled prior to the completion of the 2013-14 fiscal-year audit of the UC Santa Cruz Foundation. Copies of the Foundation's audited financial statement are available upon request.</div>
<div class="right-noborder">
<h3>Source of Private Funds: 2014<br />
(Total: $50,047,934.37)</h3>
<div id="private2011" style="width: 460px; margin: -25px 0 -12px 0; padding: 0; float: right;"></div>
<ul>
<li><div class="blue"></div>
Alumni $8,145,413.31</li>
<li><div class="red"></div>
Parents $1,144,982.86</li>
<li><div class="green"></div>
Friends of the Campus $9,885,011.13</li>
<li><div class="purple"></div>
Foundations $21,010,892.35</li>
<li><div class="cyan"></div>
Corporations $8,752,994.22</li>
<li><div class="orange"></div>
Other Organizations $1,108,640.50</li>
</ul>
</div>
<div class="left-noborder">
<h3>Purpose of Private Funds: 2014<br />
(Total: $50,047,934.37)</h3>
<div id="purpose2011" style="width: 460px; margin: -25px 0 -25px 0; padding: 0;"></div>
<ul>
<li><div class="blue"></div>
Arts Division $635,227.77</li>
<li><div class="red"></div>
Campus Life $1,683,073.30</li>
<li><div class="green"></div>
Engineering $6,053,266.92</li>
<li><div class="purple"></div>
Humanities $940,271.68</li>
<li><div class="cyan"></div>
Library $882,650.10</li>
<li><div class="orange"></div>
Office of the Chancellor $1,748,810.82</li>
<li><div class="light-purple"></div>
Phys. and Bio. Sciences $27,650,757.95</li>
<li><div class="brown"></div>
Social Sciences $8,461,847.55</li>
<li><div class="magenta"></div>
Undergrad. education $1,992,028.28</li>
<li class="last">*Other purposes includes gifts to library operations or endowment, unrestricted campus endowment, and other non-academic units such as the campus art galleries, radio station, Arboretum, and Friends or campus support groups.</li>
</ul>
</div>
<!--<div class="container" style="margin-top: 80px">
<h3 style="color:#00458c !important">UC Santa Cruz Endowment Performance: 2006-2013
</h3>(Total percentage return for fiscal year ending June 30)
<div id="endownment" style="min-width: 940px; height: 400px; margin: 0 auto"></div>
</div> -->
<!-- <div class="container" style="margin-top: 80px">
<h3 style="color:#00458c !important">Growth of Endowment/Trust/Unitrust</h3>
<div id="trust" style="width: 940px; height: 400px; margin: 0 auto"></div>
</div> -->
<!--<div class="container" style="margin-top: 80px">
<h3 style="color:#00458c !important">Endowment Payouts to Campus</h3>
<div id="payout" style="width: 940px; height: 400px; margin: 0 auto"></div>
</div>
</div> -->
<div class="clear"></div>
<?php include("includes/footer.php"); ?>