-
Notifications
You must be signed in to change notification settings - Fork 0
/
uca_title_63A.txt
7997 lines (7270 loc) · 967 KB
/
uca_title_63A.txt
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
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Utah Code Annotated - Title 63A - Utah Government Operations Code
=================================================================
Utah Code Annotated - Title 63A - Chapter 1 - Department of Government Operations
*********************************************************************************
Utah Code Annotated § 63A-1-101 Title.
--------------------------------------
Utah Code Annotated § 63A-1-101(1): This title is known as the "Utah Government Operations Code."
Utah Code Annotated § 63A-1-101(2): This chapter is known as "Department of Government Operations."
Utah Code Annotated § 63A-1-102 Purposes.
-----------------------------------------
The department shall:Utah Code Annotated § 63A-1-102(1): provide specialized agency support services commonly needed;
Utah Code Annotated § 63A-1-102(2): provide effective, coordinated management of state government operations services;
Utah Code Annotated § 63A-1-102(3): serve the public interest by providing services in a cost-effective and efficient manner, eliminating unnecessary duplication;
Utah Code Annotated § 63A-1-102(4): enable administrators to respond effectively to technological improvements;
Utah Code Annotated § 63A-1-102(5): emphasize the service role of state administrative service agencies in meeting the service needs of user agencies;
Utah Code Annotated § 63A-1-102(6): use flexibility in meeting the service needs of state agencies; and
Utah Code Annotated § 63A-1-102(7): protect the public interest by ensuring the integrity of the fiscal accounting procedures and policies that govern the operation of agencies and institutions to assure that funds are expended properly and lawfully.
Utah Code Annotated § 63A-1-103 Definitions.
--------------------------------------------
As used in this title:Utah Code Annotated § 63A-1-103(1): "Agency" means a board, commission, institution, department, division, officer, council, office, committee, bureau, or other administrative unit of the state, including the agency head, agency employees, or other persons acting on behalf of or under the authority of the agency head, the Legislature, the courts, or the governor, but does not mean a political subdivision of the state, or any administrative unit of a political subdivision of the state.
Utah Code Annotated § 63A-1-103(2): "Department" means the Department of Government Operations.
Utah Code Annotated § 63A-1-103(3): "Executive director" means the executive director of the Department of Government Operations.
Utah Code Annotated § 63A-1-104 Creation of department.
-------------------------------------------------------
There is created within state government the Department of Government Operations, to be administered by an executive director.
Utah Code Annotated § 63A-1-105 Appointment of executive director -- Compensation.
----------------------------------------------------------------------------------
Utah Code Annotated § 63A-1-105(1): Title 67, Chapter 22, State Officer Compensation The governor shall:
Utah Code Annotated § 63A-1-105(1)(a): appoint the executive director with the advice and consent of the Senate; and
Utah Code Annotated § 63A-1-105(1)(b): Title 67, Chapter 22, State Officer Compensation establish the executive director's salary within the salary range fixed by the Legislature in
Utah Code Annotated § 63A-1-105(2): The executive director shall serve at the pleasure of the governor.
Utah Code Annotated § 63A-1-105.5 Rulemaking authority of executive director.
-----------------------------------------------------------------------------
The executive director may, upon the recommendation of the appropriate division directors or the director of the Office of Administrative Rules, make rules consistent with state and federal law, and in accordance withUtah Code Annotated § 63A-1-105.5(1): services of the department; and
Utah Code Annotated § 63A-1-105.5(2): the provision and use of services furnished to state agencies and institutions.
Utah Code Annotated § 63A-1-106 Federal assistance -- Acceptance -- Approval of applications -- Expenditures necessary for eligibility.
---------------------------------------------------------------------------------------------------------------------------------------
Utah Code Annotated § 63A-1-106(1): The executive director with the approval of the governor may accept on behalf of the state, and bind the state by that acceptance, any fund or service, advanced, offered, or contributed in whole or in part by the federal government for purposes consistent with the powers and duties of the department.
Utah Code Annotated § 63A-1-106(2): All applications for federal grants or other federal assistance in support of any program of the department are subject to the approval of the executive director.
Utah Code Annotated § 63A-1-106(3): If any executive or legislative provisions of the federal government require the expenditure of state funds as a condition to participation by the state in any fund, property, or service, the executive director, with the governor's approval, shall expend whatever funds are necessary out of the money provided by the Legislature for use and disbursement by the department.
Utah Code Annotated § 63A-1-107 Administrative support to building ownership authority.
---------------------------------------------------------------------------------------
The executive director shall provide administrative support and staff services to the State Building Ownership Authority.
Utah Code Annotated § 63A-1-108 Powers and duties of other agencies assigned to executive director.
---------------------------------------------------------------------------------------------------
Powers and duties assigned by other provisions of this title to the Division of Finance, the Division of Facilities Construction and Management, or other agencies or divisions of the department, and not specifically assigned by this chapter, shall be assigned to the executive director with the approval of the governor.
Utah Code Annotated § 63A-1-109 Divisions of department -- Administration.
--------------------------------------------------------------------------
Utah Code Annotated § 63A-1-109(1): 63A-2-101; 63A-3-101; 63A-5b-301; 63A-9-201; 63A-12-101; 63A-16-103; 63A-17-105; 63A-16-201; 63G-3-401 The department is composed of:
Utah Code Annotated § 63A-1-109(1)(a): 63A-2-101; 63A-3-101; 63A-5b-301; 63A-9-201; 63A-12-101; 63A-16-103; 63A-17-105; 63A-16-201 the following divisions:
Utah Code Annotated § 63A-1-109(1)(a)(i): 63A-2-101 the Division of Purchasing and General Services, created in Section
Utah Code Annotated § 63A-1-109(1)(a)(ii): 63A-3-101 the Division of Finance, created in Section
Utah Code Annotated § 63A-1-109(1)(a)(iii): 63A-5b-301 the Division of Facilities Construction and Management, created in Section
Utah Code Annotated § 63A-1-109(1)(a)(iv): 63A-9-201 the Division of Fleet Operations, created in Section
Utah Code Annotated § 63A-1-109(1)(a)(v): 63A-12-101 the Division of Archives and Records Service, created in Section
Utah Code Annotated § 63A-1-109(1)(a)(vi): 63A-16-103 the Division of Technology Services, created in Section
Utah Code Annotated § 63A-1-109(1)(a)(vii): 63A-17-105 the Division of Human Resource Management, created in Section
Utah Code Annotated § 63A-1-109(1)(a)(viii): 63A-16-201 the Division of Risk Management, created in Section
Utah Code Annotated § 63A-1-109(1)(b): 63G-3-401 the Office of Administrative Rules, created in Section
Utah Code Annotated § 63A-1-109(2): (1)(a) Each division described in Subsection
Utah Code Annotated § 63A-1-109.5 Department authority to operate a division or office as an internal service fund agency.
--------------------------------------------------------------------------------------------------------------------------
Subject to Section
Utah Code Annotated § 63A-1-111 Service plans established by each division -- Contents -- Distribution.
-------------------------------------------------------------------------------------------------------
Utah Code Annotated § 63A-1-111(1): Each division and each office of the department shall formulate and establish service plans for each fiscal year.
Utah Code Annotated § 63A-1-111(2): The service plans shall describe:
Utah Code Annotated § 63A-1-111(2)(a): the services to be rendered to state agencies;
Utah Code Annotated § 63A-1-111(2)(b): the methods of providing those services;
Utah Code Annotated § 63A-1-111(2)(c): the standards of performance; and
Utah Code Annotated § 63A-1-111(2)(d): the performance measures used to gauge compliance with those standards.
Utah Code Annotated § 63A-1-111(3): Before the beginning of each fiscal year, the service plans shall be distributed to each state agency that uses the services provided by that division.
Utah Code Annotated § 63A-1-112 Certificates of participation -- Legislative approval required -- Definition -- Exception.
--------------------------------------------------------------------------------------------------------------------------
Utah Code Annotated § 63A-1-112(1):
Utah Code Annotated § 63A-1-112(1)(a): Certificates of participation for either capital facilities or capital improvements may not be issued by the department, its subdivisions, or any other state agency after July 1, 1985, without prior legislative approval.
Utah Code Annotated § 63A-1-112(1)(b): Nothing in this section affects the rights and obligations surrounding certificates of participation that were issued prior to July 1, 1985.
Utah Code Annotated § 63A-1-112(2): (2)(b); 63A-5b-1001
Utah Code Annotated § 63A-1-112(2)(a): As used in this section, "certificate of participation" means an instrument that acts as evidence of the certificate holder's undivided interest in property being lease-purchased, the payment on which is subject to appropriation by the Legislature.
Utah Code Annotated § 63A-1-112(2)(b): (2)(b); 63A-5b-1001
Utah Code Annotated § 63A-1-112(2)(b)(i): (2)(b); 63A-5b-1001 As used in this Subsection
Utah Code Annotated § 63A-1-112(2)(b)(ii): "Certificate of participation" does not include a performance efficiency agreement.
Utah Code Annotated § 63A-1-113 Agency exempt from title.
---------------------------------------------------------
The Utah Housing Corporation is exempt from this title.
Utah Code Annotated § 63A-1-114 Rate committee -- Membership -- Duties.
-----------------------------------------------------------------------
Utah Code Annotated § 63A-1-114(1):
Utah Code Annotated § 63A-1-114(1)(a): There is created a rate committee consisting of the executive directors, commissioners, or superintendents of seven state agencies, which may include the State Board of Education, that use services and pay rates to one of the department internal service funds, or their designee, that the governor appoints for a two-year term.
Utah Code Annotated § 63A-1-114(1)(b): The department may not have a representative on the rate committee.
Utah Code Annotated § 63A-1-114(1)(c):
Utah Code Annotated § 63A-1-114(1)(c)(i): The committee shall elect a chair from the committee's members.
Utah Code Annotated § 63A-1-114(1)(c)(ii): Members of the committee who are state government employees and who do not receive salary, per diem, or expenses from their agency for their service on the committee shall receive no compensation, benefits, per diem, or expenses for the members' service on the committee.
Utah Code Annotated § 63A-1-114(1)(d): The department shall provide staff services to the committee.
Utah Code Annotated § 63A-1-114(2): 63A-1-109; Title 52, Chapter 4, Open and Public Meetings Act; (2)(b)(ii)(B); 63J-1-410; 63J-1-410(4)
Utah Code Annotated § 63A-1-114(2)(a): 63A-1-109 A division described in Section
Utah Code Annotated § 63A-1-114(2)(b): Title 52, Chapter 4, Open and Public Meetings Act; (2)(b)(ii)(B); 63J-1-410 The committee shall:
Utah Code Annotated § 63A-1-114(2)(b)(i): Title 52, Chapter 4, Open and Public Meetings Act conduct meetings in accordance with
Utah Code Annotated § 63A-1-114(2)(b)(ii): (2)(b)(ii)(B) meet at least once each calendar year to:
Utah Code Annotated § 63A-1-114(2)(b)(ii)(A): discuss the service performance of each internal service fund;
Utah Code Annotated § 63A-1-114(2)(b)(ii)(B): review the proposed rate schedules;
Utah Code Annotated § 63A-1-114(2)(b)(ii)(C): (2)(b)(ii)(B) at the rate committee's discretion, approve, increase, or decrease the rate schedules described in Subsection
Utah Code Annotated § 63A-1-114(2)(b)(ii)(D): discuss any prior or potential adjustments to the service level received by state agencies that pay rates to an internal service fund;
Utah Code Annotated § 63A-1-114(2)(b)(iii): 63J-1-410 recommend a proposed rate schedule for each internal service fund to:
Utah Code Annotated § 63A-1-114(2)(b)(iii)(A): the Governor's Office of Planning and Budget; and
Utah Code Annotated § 63A-1-114(2)(b)(iii)(B): 63J-1-410 each legislative appropriations subcommittee that, in accordance with Section
Utah Code Annotated § 63A-1-114(2)(b)(iv): review and approve, increase, or decrease an interim rate when an internal service fund agency begins a new service or introduces a new product between annual general sessions of the Legislature.
Utah Code Annotated § 63A-1-114(2)(c): 63J-1-410(4) The committee may in accordance with Subsection
Utah Code Annotated § 63A-1-116 Appointment of coordinator of resource stewardship -- Duties of the coordinator of resource stewardship.
----------------------------------------------------------------------------------------------------------------------------------------
Utah Code Annotated § 63A-1-116(1): The executive director of the department shall appoint a state coordinator of resource stewardship and establish the coordinator of resource stewardship's salary.
Utah Code Annotated § 63A-1-116(2): The coordinator of resource stewardship shall report to the executive director or the executive director's designee.
Utah Code Annotated § 63A-1-116(3): The coordinator of resource stewardship shall:
Utah Code Annotated § 63A-1-116(3)(a): work with agencies to implement best practices and stewardship measures to improve air quality; and
Utah Code Annotated § 63A-1-116(3)(b): make an annual report on best practices and stewardship efforts to improve air quality to the Natural Resources, Agriculture, and Environment Interim Committee.
Utah Code Annotated § 63A-1-116(4): Each agency will retain absolute discretion whether or not to incorporate any of the practices or measures suggested by the coordinator.
Utah Code Annotated § 63A-1-117 Training and certification requirements.
------------------------------------------------------------------------
The department shall ensure that any training or certification required of a public official or public employee, as those terms are defined in SectionUtah Code Annotated § 63A-1-117(1): under this title;
Utah Code Annotated § 63A-1-117(2): by the department; or
Utah Code Annotated § 63A-1-117(3): by an agency or division within the department.
Utah Code Annotated - Title 63A - Chapter 2 - Division of Purchasing and General Services
*****************************************************************************************
Utah Code Annotated § 63A-2-101 Creation.
-----------------------------------------
There is created the Division of Purchasing and General Services within the department.
Utah Code Annotated § 63A-2-101.5 Definitions.
----------------------------------------------
As used in this chapter:Utah Code Annotated § 63A-2-101.5(1): 63A-2-101 "Division" means the Division of Purchasing and General Services created under Section
Utah Code Annotated § 63A-2-101.5(2): "Federal surplus property" means surplus property of the federal government of the United States.
Utah Code Annotated § 63A-2-101.5(3): "Information technology equipment" means equipment capable of downloading, accessing, manipulating, storing, or transferring electronic data, including:
Utah Code Annotated § 63A-2-101.5(3)(a): a computer;
Utah Code Annotated § 63A-2-101.5(3)(b): a smart phone, electronic tablet, personal digital assistant, or other portable electronic device;
Utah Code Annotated § 63A-2-101.5(3)(c): a digital copier or multifunction printer;
Utah Code Annotated § 63A-2-101.5(3)(d): a flash drive or other portable electronic data storage device;
Utah Code Annotated § 63A-2-101.5(3)(e): a server; and
Utah Code Annotated § 63A-2-101.5(3)(f): any other similar device.
Utah Code Annotated § 63A-2-101.5(4): "Person with a disability" means a person with a severe, chronic disability that:
Utah Code Annotated § 63A-2-101.5(4)(a): is attributable to a mental or physical impairment or a combination of mental and physical impairments; and
Utah Code Annotated § 63A-2-101.5(4)(b): is likely to continue indefinitely.
Utah Code Annotated § 63A-2-101.5(5): "Property act" means the Federal Property and Administrative Services Act of 1949, 40 U.S.C. Sec. 549.
Utah Code Annotated § 63A-2-101.5(6): 63A-2-102 "Purchasing director" means the director of the division appointed under Section
Utah Code Annotated § 63A-2-101.5(7): "Smart phone" means an electronic device that combines a cell phone with a hand-held computer, typically offering Internet access, data storage, and text and email capabilities.
Utah Code Annotated § 63A-2-101.5(8): "State agency" means any executive branch department, division, or other agency of the state.
Utah Code Annotated § 63A-2-101.5(9): 53C-1-201 "State surplus property":
Utah Code Annotated § 63A-2-101.5(9)(a): means state-owned property, whether acquired by purchase, seizure, donation, or otherwise:
Utah Code Annotated § 63A-2-101.5(9)(a)(i): that is no longer being used by the state or no longer usable by the state;
Utah Code Annotated § 63A-2-101.5(9)(a)(ii): that is out of date;
Utah Code Annotated § 63A-2-101.5(9)(a)(iii): that is damaged and cannot be repaired or cannot be repaired at a cost that is less than the property's value;
Utah Code Annotated § 63A-2-101.5(9)(a)(iv): whose useful life span has expired; or
Utah Code Annotated § 63A-2-101.5(9)(a)(v): that the state agency possessing the property determines is not required to meet the needs or responsibilities of the state agency;
Utah Code Annotated § 63A-2-101.5(9)(b): includes:
Utah Code Annotated § 63A-2-101.5(9)(b)(i): a motor vehicle;
Utah Code Annotated § 63A-2-101.5(9)(b)(ii): equipment;
Utah Code Annotated § 63A-2-101.5(9)(b)(iii): furniture;
Utah Code Annotated § 63A-2-101.5(9)(b)(iv): information technology equipment;
Utah Code Annotated § 63A-2-101.5(9)(b)(v): a supply; and
Utah Code Annotated § 63A-2-101.5(9)(b)(vi): an aircraft; and
Utah Code Annotated § 63A-2-101.5(9)(c): 53C-1-201 does not include:
Utah Code Annotated § 63A-2-101.5(9)(c)(i): real property;
Utah Code Annotated § 63A-2-101.5(9)(c)(ii): 53C-1-201 an asset of the School and Institutional Trust Lands Administration, established in Section
Utah Code Annotated § 63A-2-101.5(9)(c)(iii): a firearm or ammunition; or
Utah Code Annotated § 63A-2-101.5(9)(c)(iv): an office or household item made of aluminum, paper, plastic, cardboard, or other recyclable material, without any meaningful value except for recycling purposes.
Utah Code Annotated § 63A-2-101.5(10): "State surplus property contractor" means a person in the private sector under contract with the state to provide one or more services related to the division's program for the management and disposition of state surplus property.
Utah Code Annotated § 63A-2-101.5(11): Part 4, Surplus Property Service "Surplus property program" means the program relating to state surplus property under
Utah Code Annotated § 63A-2-101.5(12): "Surplus property program administrator" means:
Utah Code Annotated § 63A-2-101.5(12)(a): the purchasing director, if the purchasing director administers the surplus property program; or
Utah Code Annotated § 63A-2-101.5(12)(b): the state surplus property contractor, if the state surplus property contractor administers the surplus property program.
Utah Code Annotated § 63A-2-102 Director of division -- Appointment.
--------------------------------------------------------------------
Utah Code Annotated § 63A-2-102(1): The executive director shall appoint the director of the Division of Purchasing and General Services with the approval of the governor.
Utah Code Annotated § 63A-2-102(2): The purchasing director is also the state's chief procurement officer.
Utah Code Annotated § 63A-2-103 Duties and authority of purchasing director -- State agency requirements -- Rate schedule.
--------------------------------------------------------------------------------------------------------------------------
Utah Code Annotated § 63A-2-103(1): The purchasing director:
Utah Code Annotated § 63A-2-103(1)(a): shall operate, manage, and maintain:
Utah Code Annotated § 63A-2-103(1)(a)(i): a central mailing service; and
Utah Code Annotated § 63A-2-103(1)(a)(ii): an electronic central store system for procuring goods and services;
Utah Code Annotated § 63A-2-103(1)(b): shall operate, manage, and maintain the surplus property program; and
Utah Code Annotated § 63A-2-103(1)(c): may establish:
Utah Code Annotated § 63A-2-103(1)(c)(i): a contract administration service, including contract performance surveys; and
Utah Code Annotated § 63A-2-103(1)(c)(ii): other central services.
Utah Code Annotated § 63A-2-103(2): (1)(a); 63A-2-104; (1)(c)(i); (1)(a)
Utah Code Annotated § 63A-2-103(2)(a): (1)(a); 63A-2-104; (1)(c)(i) Each state agency shall:
Utah Code Annotated § 63A-2-103(2)(a)(i): (1)(a); 63A-2-104 subscribe to all of the services described in Subsection
Utah Code Annotated § 63A-2-103(2)(a)(ii): (1)(c)(i) complete contract performance surveys as requested by the purchasing director under Subsection
Utah Code Annotated § 63A-2-103(2)(b): (1)(a) An institution of higher education, the State Board of Education, a school district, or a political subdivision of the state may subscribe to one or more of the services described in Subsection
Utah Code Annotated § 63A-2-103(3): 63A-1-114; 63J-1-410; (3)(a)(iii)
Utah Code Annotated § 63A-2-103(3)(a): 63A-1-114; 63J-1-410 The purchasing director shall:
Utah Code Annotated § 63A-2-103(3)(a)(i): 63A-1-114; 63J-1-410 prescribe a schedule of rates to be charged for all services provided by the division after the purchasing director:
Utah Code Annotated § 63A-2-103(3)(a)(i)(A): 63A-1-114 submits the proposed rates for services provided by the division's internal service fund to the Rate Committee established in Section
Utah Code Annotated § 63A-2-103(3)(a)(i)(B): 63J-1-410 obtains the approval of the Legislature, as required by Section
Utah Code Annotated § 63A-2-103(3)(a)(ii): ensure that the rates are approximately equal to the cost of providing the services; and
Utah Code Annotated § 63A-2-103(3)(a)(iii): annually conduct a market analysis of rates.
Utah Code Annotated § 63A-2-103(3)(b): (3)(a)(iii) A market analysis under Subsection
Utah Code Annotated § 63A-2-104 Delegation of general services to departments or agencies -- Writing required -- Contents -- Termination.
-----------------------------------------------------------------------------------------------------------------------------------------
Utah Code Annotated § 63A-2-104(1): The purchasing director, with the approval of the executive director, may delegate, in writing, the purchasing director's authority to perform or control any general services function to another state agency by contract or other means authorized by law, if:
Utah Code Annotated § 63A-2-104(1)(a): in the judgment of the executive director, the state agency has requested the authority; and
Utah Code Annotated § 63A-2-104(1)(b): the state agency has the necessary resources and skills to perform or control the functions.
Utah Code Annotated § 63A-2-104(2): The purchasing director may delegate the purchasing director's authority only when the delegation would result in net cost savings or improved service delivery to the state as a whole.
Utah Code Annotated § 63A-2-104(3): The written delegation shall contain:
Utah Code Annotated § 63A-2-104(3)(a): a precise definition of each function to be delegated;
Utah Code Annotated § 63A-2-104(3)(b): a clear description of the standards to be met in performing each function delegated;
Utah Code Annotated § 63A-2-104(3)(c): a provision for periodic administrative audits by the department; and
Utah Code Annotated § 63A-2-104(3)(d): a date on which the agreement shall terminate if not previously terminated or renewed.
Utah Code Annotated § 63A-2-104(4): An agreement to delegate functions to a state agency may be terminated by the department if the results of an administrative audit conducted by the department reveal lack of compliance with the terms of the agreement.
Utah Code Annotated § 63A-2-105 Director to approve certain purchases.
----------------------------------------------------------------------
Utah Code Annotated § 63A-2-105(1): A state agency that intends to purchase any mail-related equipment shall submit a purchase request to the purchasing director.
Utah Code Annotated § 63A-2-105(2): The purchasing director shall review a request under Subsection (1) to ensure that:
Utah Code Annotated § 63A-2-105(2)(a): the authority to perform those functions has been appropriately delegated to the state agency under this part;
Utah Code Annotated § 63A-2-105(2)(b): the equipment meets proper specifications; and
Utah Code Annotated § 63A-2-105(2)(c): the benefits from the state agency's purchase of the equipment outweigh the benefits of having the same functions performed by the division.
Utah Code Annotated § 63A-2-106 Background checks for employees.
----------------------------------------------------------------
Utah Code Annotated § 63A-2-106(1): 53-10-201 As used in this section, "bureau" means the Bureau of Criminal Identification created in Section
Utah Code Annotated § 63A-2-106(2): Beginning July 1, 2018, the division shall require all applicants for the following positions to submit to a fingerprint-based local, regional, and national criminal history background check and ongoing monitoring as a condition of employment:
Utah Code Annotated § 63A-2-106(2)(a): assistant directors;
Utah Code Annotated § 63A-2-106(2)(b): contract analysts; and
Utah Code Annotated § 63A-2-106(2)(c): purchasing agents.
Utah Code Annotated § 63A-2-106(3): (2) Each applicant for a position listed in Subsection
Utah Code Annotated § 63A-2-106(4): (3); 53-10-108(4) The division shall require that an individual required to submit to a background check under Subsection
Utah Code Annotated § 63A-2-106(5): 53-10-108(13) For a noncriminal justice background search and registration in accordance with Subsection
Utah Code Annotated § 63A-2-106(5)(a): the applicant's personal identifying information and fingerprints for a criminal history search of applicable local, regional, and national databases; and
Utah Code Annotated § 63A-2-106(5)(b): a request for all information received as a result of the local, regional, and nationwide background check.
Utah Code Annotated § 63A-2-106(6): 53-10-108(15) The division is responsible for the payment of all fees required by Subsection
Utah Code Annotated § 63A-2-106(7): Title 63G, Chapter 3, Utah Administrative Rulemaking Act; 53-10-108(13)(b) The division may make rules in accordance with
Utah Code Annotated § 63A-2-106(7)(a): determine how the division will assess the employment status of an individual upon receipt of background information; and
Utah Code Annotated § 63A-2-106(7)(b): 53-10-108(13)(b) identify the appropriate privacy risk mitigation strategy to be used in accordance with Subsection
Utah Code Annotated § 63A-2-401 State agencies required to participate in surplus property program -- Declaring property to be state surplus property -- Division authority.
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Utah Code Annotated § 63A-2-401(1): Except as otherwise provided in this part, a state agency shall dispose of and acquire state surplus property by participating in the surplus property program.
Utah Code Annotated § 63A-2-401(2): A state agency may declare property that the state agency owns to be state surplus property by making a written determination that the property is state surplus property.
Utah Code Annotated § 63A-2-401(3): The division shall determine the appropriate method for disposing of state surplus property.
Utah Code Annotated § 63A-2-401(4): The division may:
Utah Code Annotated § 63A-2-401(4)(a): establish facilities to store state surplus property at locations throughout the state; and
Utah Code Annotated § 63A-2-401(4)(b): after consultation with the state agency requesting the sale of state surplus property, establish the selling price for the state surplus property.
Utah Code Annotated § 63A-2-401(5): Title 63J, Chapter 1, Budgetary Procedures Act; 63A-2-103(3) As provided in
Utah Code Annotated § 63A-2-401(6): Title 63G, Chapter 3, Utah Administrative Rulemaking Act By following the procedures and requirements of
Utah Code Annotated § 63A-2-404 Acquisition of federal surplus property -- Powers and duties -- Advisory boards and committees -- Expenditures and contracts -- Clearinghouse of information -- Reports.
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Utah Code Annotated § 63A-2-404(1): The division may:
Utah Code Annotated § 63A-2-404(1)(a): acquire from the United States under and in conformance with the property act any federal surplus property under the control of any department or agency of the United States that is usable and necessary for any purposes authorized by federal law;
Utah Code Annotated § 63A-2-404(1)(b): warehouse federal surplus property if it is not real property; and
Utah Code Annotated § 63A-2-404(1)(c): distribute federal surplus property within this state to:
Utah Code Annotated § 63A-2-404(1)(c)(i): tax-supported medical institutions, hospitals, clinics, and health centers;
Utah Code Annotated § 63A-2-404(1)(c)(ii): school systems, schools, colleges, and universities;
Utah Code Annotated § 63A-2-404(1)(c)(iii): other nonprofit medical institutions, hospitals, clinics, health centers, schools, colleges, and universities that are exempt from taxation under Section 501(c)(3) of the United States Internal Revenue Code of 1954;
Utah Code Annotated § 63A-2-404(1)(c)(iv): civil defense organizations;
Utah Code Annotated § 63A-2-404(1)(c)(v): political subdivisions; and
Utah Code Annotated § 63A-2-404(1)(c)(vi): any other types of institutions or activities that are eligible to acquire the federal surplus property under federal law.
Utah Code Annotated § 63A-2-404(2): The division may:
Utah Code Annotated § 63A-2-404(2)(a): receive applications from eligible health and educational institutions for the acquisition of federal surplus real property;
Utah Code Annotated § 63A-2-404(2)(b): investigate the applications;
Utah Code Annotated § 63A-2-404(2)(c): obtain opinions about those applications from the appropriate health or educational authorities of this state;
Utah Code Annotated § 63A-2-404(2)(d): make recommendations about the need of the applicant for the property, the merits of the applicant's proposed use of the property, and the suitability of the property for those purposes; and
Utah Code Annotated § 63A-2-404(2)(e): otherwise assist in the processing of those applications for acquisition of real and related personal property of the United States under the property act.
Utah Code Annotated § 63A-2-404(3): The division may appoint advisory boards or committees.
Utah Code Annotated § 63A-2-404(4): If required by law or regulation of the United States in connection with the disposition of surplus real property and the receipt, warehousing, and distribution of surplus personal property received by the surplus property program from the United States, the surplus property program administrator may:
Utah Code Annotated § 63A-2-404(4)(a): make certifications, take action, and make expenditures;
Utah Code Annotated § 63A-2-404(4)(b): enter into contracts, agreements, and undertakings for and in the name of the state including cooperative agreements with the federal agencies providing for use by and exchange between them of the property, facilities, personnel, and services of each by the other;
Utah Code Annotated § 63A-2-404(4)(c): require reports; and
Utah Code Annotated § 63A-2-404(4)(d): make investigations.
Utah Code Annotated § 63A-2-404(5): The division shall act as the clearinghouse of information for public and private nonprofit institutions, organizations, and agencies eligible to acquire federal surplus real property to:
Utah Code Annotated § 63A-2-404(5)(a): locate both real and personal property available for acquisition from the United States;
Utah Code Annotated § 63A-2-404(5)(b): ascertain the terms and conditions under which that property may be obtained;
Utah Code Annotated § 63A-2-404(5)(c): receive requests from those institutions, organizations, and agencies and transmit to them all available information in reference to that property; and
Utah Code Annotated § 63A-2-404(5)(d): aid and assist those institutions, organizations, and agencies in every way possible in those acquisitions or transactions.
Utah Code Annotated § 63A-2-404(6): The division shall:
Utah Code Annotated § 63A-2-404(6)(a): cooperate with the departments or agencies of the United States;
Utah Code Annotated § 63A-2-404(6)(b): file a state plan of operation;
Utah Code Annotated § 63A-2-404(6)(c): operate according to that plan;
Utah Code Annotated § 63A-2-404(6)(d): take the actions necessary to meet the minimum standards prescribed by the property act;
Utah Code Annotated § 63A-2-404(6)(e): make any reports required by the United States or any of its departments or agencies; and
Utah Code Annotated § 63A-2-404(6)(f): comply with the laws of the United States and the regulations of any of the departments or agencies of the United States governing the allocation of, transfer of, use of, or accounting for any property donated to the state.
Utah Code Annotated § 63A-2-408 Authority of state or local subdivision to receive property -- Revocation of authority of officer.
----------------------------------------------------------------------------------------------------------------------------------
Utah Code Annotated § 63A-2-408(1): Notwithstanding any other provision of law, the governing board or the executive director of any state department, instrumentality, or agency that is not a state agency, or the legislative body of any city, county, school district, or other political subdivision may by order or resolution give any officer or employee the authority to:
Utah Code Annotated § 63A-2-408(1)(a): secure the transfer of state surplus property or federal surplus property through the division under the property act; and
Utah Code Annotated § 63A-2-408(1)(b): obligate the state or political subdivision and its funds to the extent necessary to comply with the terms and conditions of those transfers.
Utah Code Annotated § 63A-2-408(2): The authority conferred upon any officer or employee by an order or resolution remains in effect until:
Utah Code Annotated § 63A-2-408(2)(a): the order or resolution is revoked; and
Utah Code Annotated § 63A-2-408(2)(b): the division has received written notice of the revocation.
Utah Code Annotated § 63A-2-409 Disposal of certain surplus property.
---------------------------------------------------------------------
This part does not apply to disposition by:Utah Code Annotated § 63A-2-409(1): the legislative branch of surplus property that is information technology equipment, if the Legislative Management Committee, by rule, establishes its own policy for disposition, by the legislative branch, of surplus property that is information technology equipment; or
Utah Code Annotated § 63A-2-409(2): the Department of Transportation of surplus personal property that was acquired as part of a transaction or legal action by the Department of Transportation acquiring real property for a state transportation purpose.
Utah Code Annotated § 63A-2-411 Disposal of state surplus property with minimal value.
--------------------------------------------------------------------------------------
Utah Code Annotated § 63A-2-411(1): As used in this section, "item of minimal value" means an item of property that:
Utah Code Annotated § 63A-2-411(1)(a):
Utah Code Annotated § 63A-2-411(1)(a)(i): had an initial purchase price of less than $100; and
Utah Code Annotated § 63A-2-411(1)(a)(ii): does not appreciate in value; or
Utah Code Annotated § 63A-2-411(1)(b): the surplus property program administrator determines to be worth less than $100.
Utah Code Annotated § 63A-2-411(2): Title 63G, Chapter 3, Utah Administrative Rulemaking Act; 63A-2-401 In accordance with
Utah Code Annotated § 63A-2-411(3): Property of a state agency is presumed to be an item of minimal value if the property is not purchased after the surplus property program administrator offers the property for sale to the public at a price above $100.
Utah Code Annotated § 63A-2-501 Definitions.
--------------------------------------------
As used in this part:Utah Code Annotated § 63A-2-501(1): 63A-2-502 "Advisory council" means the Educational Interpretation and Translation Services Procurement Advisory Council established in Section
Utah Code Annotated § 63A-2-501(2): 63A-2-502 "Contract" means a contract entered into by the division for interpretation or translation services in accordance with Section
Utah Code Annotated § 63A-2-501(3): 53E-1-102 "Local education agency" or "LEA" means the same as that term is defined in Section
Utah Code Annotated § 63A-2-501(4): "State board" means the State Board of Education.
Utah Code Annotated § 63A-2-502 Educational Interpretation and Translation Services Procurement Advisory Council.
-----------------------------------------------------------------------------------------------------------------
Utah Code Annotated § 63A-2-502(1): There is established the Educational Interpretation and Translation Services Procurement Advisory Council to provide advice to the purchasing director regarding the language-access needs of LEAs, students learning English, and the families of students learning English.
Utah Code Annotated § 63A-2-502(2): 9-21-201 The advisory council shall consist of the following members:
Utah Code Annotated § 63A-2-502(2)(a): the purchasing director or the director's designee;
Utah Code Annotated § 63A-2-502(2)(b): an individual representing the state board, appointed by the state superintendent of public instruction;
Utah Code Annotated § 63A-2-502(2)(c): the purchasing director for the state board or the director's designee;
Utah Code Annotated § 63A-2-502(2)(d): 9-21-201 an individual representing the Division of Multicultural Affairs created in Section
Utah Code Annotated § 63A-2-502(2)(e): appointed by the cochairs:
Utah Code Annotated § 63A-2-502(2)(e)(i): one or more employees of the state board who manage or administer services or programs for a student learning English and the student's parents;
Utah Code Annotated § 63A-2-502(2)(e)(ii): an administrator from an LEA with a high density of students learning English;
Utah Code Annotated § 63A-2-502(2)(e)(iii): an administrator from an LEA with a low density of students learning English;
Utah Code Annotated § 63A-2-502(2)(e)(iv): a teacher, counselor, or other licensed LEA staff, from a school with a high density of students learning English;
Utah Code Annotated § 63A-2-502(2)(e)(v): a teacher, counselor, or other licensed LEA staff, from a school with a low density of students learning English;
Utah Code Annotated § 63A-2-502(2)(e)(vi): an individual who works to assist students learning English or minority students navigate school and community resources, such as a refugee liaison;
Utah Code Annotated § 63A-2-502(2)(e)(vii): an LEA procurement agent;
Utah Code Annotated § 63A-2-502(2)(e)(viii): an individual representing a community organization that directly serves parents and their children learning English; and
Utah Code Annotated § 63A-2-502(2)(e)(ix): a parent who is a person learning English and also the parent of a student learning English who is enrolled in an LEA.
Utah Code Annotated § 63A-2-502(3): (2)(b)
Utah Code Annotated § 63A-2-502(3)(a): (2)(b) The purchasing director and the individual representing the state board, as described in Subsection
Utah Code Annotated § 63A-2-502(3)(b): Each advisory council member shall serve until a successor is duly appointed.
Utah Code Annotated § 63A-2-502(4): The division shall provide staff support to facilitate the function of the council.
Utah Code Annotated § 63A-2-502(5): 63A-3-106; 63A-3-107; 63A-3-106; 63A-3-107
Utah Code Annotated § 63A-2-502(5)(a): A member of the advisory council may not receive compensation or benefits for the council member's service.
Utah Code Annotated § 63A-2-502(5)(b): 63A-3-106; 63A-3-107; 63A-3-106; 63A-3-107 An advisory council member may receive per diem and travel expenses in accordance with:
Utah Code Annotated § 63A-2-502(5)(b)(i): 63A-3-106 Section
Utah Code Annotated § 63A-2-502(5)(b)(ii): 63A-3-107 Section
Utah Code Annotated § 63A-2-502(5)(b)(iii): 63A-3-106; 63A-3-107 rules made by the Division of Finance in accordance with Sections
Utah Code Annotated § 63A-2-502(6): (6)(a)(i)(A)
Utah Code Annotated § 63A-2-502(6)(a): (6)(a)(i)(A) Before the commencement of each school year, the state board shall collect and provide to the advisory council the following information for each LEA:
Utah Code Annotated § 63A-2-502(6)(a)(i): (6)(a)(i)(A) a list of preferred languages of:
Utah Code Annotated § 63A-2-502(6)(a)(i)(A): students learning English; and
Utah Code Annotated § 63A-2-502(6)(a)(i)(B): (6)(a)(i)(A) parents and families of the students described in Subsection
Utah Code Annotated § 63A-2-502(6)(a)(ii): the frequency by which each language of a student learning English is preferred.
Utah Code Annotated § 63A-2-502(6)(b): Before the commencement of each school year after July 1, 2024, the state board shall, for each LEA, collect and provide to the advisory council the list of preferred methods of communication and frequency by which each method is preferred by parents and the parents' children learning English.
Utah Code Annotated § 63A-2-502(7): (6); (7)(a)(iii)
Utah Code Annotated § 63A-2-502(7)(a): (6) Before the commencement of each school year, the advisory council shall advise the purchasing director on:
Utah Code Annotated § 63A-2-502(7)(a)(i): (6) the needs of the LEAs for interpretation and translation services, as described in Subsection
Utah Code Annotated § 63A-2-502(7)(a)(ii): the appropriate points of contact at the state board and each LEA that should receive information regarding the availability and use of procured interpretation and translation contracts; and
Utah Code Annotated § 63A-2-502(7)(a)(iii): the form, manner, and content of information that is to be disseminated to the state board, each LEA, and LEA administrators and principals, regarding the availability and use of procured interpretation and translation contracts.
Utah Code Annotated § 63A-2-502(7)(b): (7)(a)(iii) The advisory council shall include in the information described in Subsection
Utah Code Annotated § 63A-2-502(7)(b)(i): a notice of available contracts;
Utah Code Annotated § 63A-2-502(7)(b)(ii): the language and types of services offered under each contract;
Utah Code Annotated § 63A-2-502(7)(b)(iii): the requisite procedures for accessing the services stipulated within the contracts;
Utah Code Annotated § 63A-2-502(7)(b)(iv): a list of additional translation and interpretation materials, including posters or flyers, provided through a contract;
Utah Code Annotated § 63A-2-502(7)(b)(v): an opportunity to provide feedback on contracts, including contact information for the division purchasing agent;
Utah Code Annotated § 63A-2-502(7)(b)(vi): the estimated and actual cost to each LEA for use of interpretation and translation services; and
Utah Code Annotated § 63A-2-502(7)(b)(vii): the availability of alternative procurement mechanisms that are independent of the division and available contracts.
Utah Code Annotated § 63A-2-502(8): The advisory council shall report to the Education Interim Committee no later than November 1 each year on the existing use and efficacy of all contracts.
Utah Code Annotated - Title 63A - Chapter 3 - Division of Finance
*****************************************************************
Utah Code Annotated § 63A-3-101 Creation.
-----------------------------------------
There is created within the department the Division of Finance, to be administered by a director.
Utah Code Annotated § 63A-3-102 Director of division -- Appointment.
--------------------------------------------------------------------
Utah Code Annotated § 63A-3-102(1): The executive director shall appoint the director of the Division of Finance with the approval of the governor.
Utah Code Annotated § 63A-3-102(2): The director of the Division of Finance shall serve at the pleasure of the executive director.
Utah Code Annotated § 63A-3-102(3): The director of the Division of Finance is the state's chief fiscal officer and the state's accounting officer.
Utah Code Annotated § 63A-3-103 Duties of director of division -- Application to institutions of higher education.
------------------------------------------------------------------------------------------------------------------
Utah Code Annotated § 63A-3-103(1): 63A-1-109.5; 63A-1-114; 63A-1-114; 67-3-12 The director of the Division of Finance shall:
Utah Code Annotated § 63A-3-103(1)(a): define fiscal procedures relating to approval and allocation of funds;
Utah Code Annotated § 63A-3-103(1)(b): provide for the accounting control of funds;
Utah Code Annotated § 63A-3-103(1)(c): promulgate rules that:
Utah Code Annotated § 63A-3-103(1)(c)(i): establish procedures for maintaining detailed records of all types of leases;
Utah Code Annotated § 63A-3-103(1)(c)(ii): account for all types of leases in accordance with generally accepted accounting principles;
Utah Code Annotated § 63A-3-103(1)(c)(iii): require the performance of a lease with an option to purchase study by state agencies prior to any lease with an option to purchase acquisition of capital equipment; and
Utah Code Annotated § 63A-3-103(1)(c)(iv): require that the completed lease with an option to purchase study be approved by the director of the Division of Finance;
Utah Code Annotated § 63A-3-103(1)(d): 63A-1-109.5; 63A-1-114; 63A-1-114 if the department operates the Division of Finance as an internal service fund agency in accordance with Section
Utah Code Annotated § 63A-3-103(1)(d)(i): 63A-1-114 the proposed rate and fee schedule as required by Section
Utah Code Annotated § 63A-3-103(1)(d)(ii): other information or analysis requested by the Rate Committee;
Utah Code Annotated § 63A-3-103(1)(e): oversee the Office of State Debt Collection;
Utah Code Annotated § 63A-3-103(1)(f): 67-3-12 publish the state's current constitutional debt limit on the public finance website established by the state auditor in accordance with Section
Utah Code Annotated § 63A-3-103(1)(g): prescribe other fiscal functions required by law or under the constitutional authority of the governor to transact all executive business for the state.
Utah Code Annotated § 63A-3-103(2): Title 63A, Chapter 3, Part 1, General Provisions; Title 63A, Chapter 3, Part 2, Accounting System; Title 53B, State System of Higher Education
Utah Code Annotated § 63A-3-103(2)(a): Title 63A, Chapter 3, Part 1, General Provisions; Title 63A, Chapter 3, Part 2, Accounting System; Title 53B, State System of Higher Education Institutions of higher education are subject to the provisions of
Utah Code Annotated § 63A-3-103(2)(b): Institutions of higher education shall submit financial data for the past fiscal year conforming to generally accepted accounting principles to the director of the Division of Finance.
Utah Code Annotated § 63A-3-103(3): The Division of Finance shall prepare financial statements and other reports in accordance with legal requirements and generally accepted accounting principles for the state auditor's examination and certification:
Utah Code Annotated § 63A-3-103(3)(a): not later than 60 days after a request from the state auditor; and
Utah Code Annotated § 63A-3-103(3)(b): at the end of each fiscal year.
Utah Code Annotated § 63A-3-104 Appropriation for contingency purposes -- Procedure for allotment -- Legislative intent.
------------------------------------------------------------------------------------------------------------------------
Utah Code Annotated § 63A-3-104(1):
Utah Code Annotated § 63A-3-104(1)(a): The Legislature shall determine the amount to be appropriated for contingency purposes, as well as the limits on the amount of any one allotment or total allotments to any one agency.
Utah Code Annotated § 63A-3-104(1)(b): In advance of making any such allotment, the governor shall notify the Legislature through the Office of the Legislative Fiscal Analyst, of his or her intent to do so, of the amount to be allotted, and the justification for the allotment.
Utah Code Annotated § 63A-3-104(2): It is the intent of the Legislature that such transfers be made only for unforeseeable emergencies, and allotments shall not be made to correct poor budgetary practices or for purposes having no existing appropriation or authorization.
Utah Code Annotated § 63A-3-105 Securities deposited with state treasurer -- Release.
-------------------------------------------------------------------------------------
Utah Code Annotated § 63A-3-105(1): The director of the Division of Finance shall collect and deposit with the state treasurer all stocks, evidences of indebtedness, bonds, and securities of every kind and nature belonging to the state or any of its departments.
Utah Code Annotated § 63A-3-105(2): (1) The state treasurer shall keep a complete record of the items deposited under Subsection
Utah Code Annotated § 63A-3-106 Per diem rates for board members.
-----------------------------------------------------------------
Utah Code Annotated § 63A-3-106(1): 63A-3-107; (1)(d)(ii); 63G-2-103; 53G-7-1101; 53B-1-102 As used in this section and Section
Utah Code Annotated § 63A-3-106(1)(a): "Board" means a board, commission, council, committee, task force, or similar body established to perform a governmental function.
Utah Code Annotated § 63A-3-106(1)(b): "Board member" means a person appointed or designated by statute to serve on a board.
Utah Code Annotated § 63A-3-106(1)(c): "Executive branch" means an agency within the executive branch of state government.
Utah Code Annotated § 63A-3-106(1)(d): (1)(d)(ii); 63G-2-103; 53G-7-1101
Utah Code Annotated § 63A-3-106(1)(d)(i): (1)(d)(ii); 63G-2-103 "Governmental entity" has the same meaning, except as provided in Subsection
Utah Code Annotated § 63A-3-106(1)(d)(ii): 53G-7-1101 "Governmental entity" does not include an association as defined in Section
Utah Code Annotated § 63A-3-106(1)(e): 53B-1-102 "Higher education" means a state institution of higher education, as defined under Section
Utah Code Annotated § 63A-3-106(1)(f): "Officer" means a person who is elected or appointed to an office or position within a governmental entity.
Utah Code Annotated § 63A-3-106(1)(g): "Official meeting" means a meeting of a board that is called in accordance with statute.
Utah Code Annotated § 63A-3-106(2): Title 63G, Chapter 3, Utah Administrative Rulemaking Act In accordance with
Utah Code Annotated § 63A-3-106(3): (2); (3)(b); (3)(a); (b); (3)(a) Unless otherwise provided by statute, a per diem rate established under Subsection
Utah Code Annotated § 63A-3-106(3)(a): (3)(b) within the executive branch, except as provided under Subsection
Utah Code Annotated § 63A-3-106(3)(b): within higher education, unless higher education pays the costs of the per diem;
Utah Code Annotated § 63A-3-106(3)(c): (3)(a); (b) on a board that is:
Utah Code Annotated § 63A-3-106(3)(c)(i): (3)(a); (b) not included under Subsection
Utah Code Annotated § 63A-3-106(3)(c)(ii): created by a statute that adopts the per diem rates by reference to:
Utah Code Annotated § 63A-3-106(3)(c)(ii)(A): this section; and
Utah Code Annotated § 63A-3-106(3)(c)(ii)(B): the rule authorized by this section; and
Utah Code Annotated § 63A-3-106(3)(d): (3)(a) within a government entity that is not included under Subsection
Utah Code Annotated § 63A-3-106(3)(d)(i): this section; or
Utah Code Annotated § 63A-3-106(3)(d)(ii): the rule establishing the per diem rates.
Utah Code Annotated § 63A-3-106(4): 63A-3-107; (4)(a); (4)
Utah Code Annotated § 63A-3-106(4)(a): 63A-3-107 Unless otherwise provided by statute, a board member who is not a legislator may receive per diem under this section and travel expenses under Section
Utah Code Annotated § 63A-3-106(4)(b): (4)(a); (4) Notwithstanding Subsection
Utah Code Annotated § 63A-3-106(5): A board member may decline to receive per diem for the board member's service.
Utah Code Annotated § 63A-3-106(6): 36-2-2; Title 5, Legislative Compensation and Expenses Compensation and expenses of a board member who is a legislator are governed by Section
Utah Code Annotated § 63A-3-107 Travel expenses of board members and state officers and employees.
--------------------------------------------------------------------------------------------------
Utah Code Annotated § 63A-3-107(1): Title 63G, Chapter 3, Utah Administrative Rulemaking Act In accordance with
Utah Code Annotated § 63A-3-107(2): (1); (2)(b); (2)(a); (b); (2)(a) Unless otherwise provided by statute, a travel expense rule established under Subsection
Utah Code Annotated § 63A-3-107(2)(a): (2)(b) a board member, an officer, or employee of the executive branch, except as provided under Subsection
Utah Code Annotated § 63A-3-107(2)(b): a board member, an officer, or employee of higher education, unless higher education pays the costs of the travel expenses;
Utah Code Annotated § 63A-3-107(2)(c): (2)(a); (b) a board member who:
Utah Code Annotated § 63A-3-107(2)(c)(i): (2)(a); (b) is not included under Subsection
Utah Code Annotated § 63A-3-107(2)(c)(ii): serves on a board created by a statute that adopts the travel expense rates by reference to:
Utah Code Annotated § 63A-3-107(2)(c)(ii)(A): this section; and
Utah Code Annotated § 63A-3-107(2)(c)(ii)(B): the rule authorized by this section; and
Utah Code Annotated § 63A-3-107(2)(d): (2)(a) a government entity that is not included under Subsection
Utah Code Annotated § 63A-3-107(2)(d)(i): this section; or
Utah Code Annotated § 63A-3-107(2)(d)(ii): the rule establishing the travel expense provisions.
Utah Code Annotated § 63A-3-107(3): The Division of Finance shall make the travel expense rules on the basis of:
Utah Code Annotated § 63A-3-107(3)(a): a mileage allowance; and
Utah Code Annotated § 63A-3-107(3)(b): reimbursement for other travel expenses incurred.
Utah Code Annotated § 63A-3-107(4): The travel expense rules may specify an exception to a travel expense rule or allow the director of the Division of Finance to make an exception to a travel expense rule, when justified by the executive director of the executive branch agency or department, to meet special circumstances encountered in official attendance at a conference, convention, meeting, or other official business, as determined by the director of the Division of Finance.
Utah Code Annotated § 63A-3-107(5): An officer or employee of the executive branch may not incur obligations for travel outside the state without the advance approval of the executive director or a designee of the executive director of an executive branch department or agency.
Utah Code Annotated § 63A-3-107(6): A board member may decline to receive travel expenses for the board member's service.
Utah Code Annotated § 63A-3-107(7): 36-2-2; Title 5, Legislative Compensation and Expenses Compensation and expenses of a board member who is a legislator are governed by Section
Utah Code Annotated § 63A-3-109 Contribution dependent accounts -- Annual report.
---------------------------------------------------------------------------------
Utah Code Annotated § 63A-3-109(1): Title 41, Chapter 1a, Motor Vehicle Act; Title 59, Chapter 10, Part 13, Individual Income Tax Contribution Act; 51-5-4 As used in this section:
Utah Code Annotated § 63A-3-109(1)(a): Title 41, Chapter 1a, Motor Vehicle Act; Title 59, Chapter 10, Part 13, Individual Income Tax Contribution Act
Utah Code Annotated § 63A-3-109(1)(a)(i): "Contribution" means a voluntary donation of money or other valuable property to a state fund or account.
Utah Code Annotated § 63A-3-109(1)(a)(ii): Title 41, Chapter 1a, Motor Vehicle Act; Title 59, Chapter 10, Part 13, Individual Income Tax Contribution Act "Contribution" does not include:
Utah Code Annotated § 63A-3-109(1)(a)(ii)(A): a fee or tax levied by a state entity; or
Utah Code Annotated § 63A-3-109(1)(a)(ii)(B): Title 41, Chapter 1a, Motor Vehicle Act; Title 59, Chapter 10, Part 13, Individual Income Tax Contribution Act a voluntary donation made under
Utah Code Annotated § 63A-3-109(1)(b): 51-5-4
Utah Code Annotated § 63A-3-109(1)(b)(i): "Contribution dependent account" means a state fund or account that:
Utah Code Annotated § 63A-3-109(1)(b)(i)(A): receives at least 50% of the fund's or account's revenue from contributions; and
Utah Code Annotated § 63A-3-109(1)(b)(i)(B): is not intended to be used to directly provide services exclusively to a person who makes a contribution to the fund or account.
Utah Code Annotated § 63A-3-109(1)(b)(ii): 51-5-4 "Contribution dependent account" does not include a fiduciary fund as defined in Section
Utah Code Annotated § 63A-3-109(2): The Division of Finance shall annually prepare a report that:
Utah Code Annotated § 63A-3-109(2)(a): lists each contribution dependent account that did not receive at least $30,000 in contributions during at least one of the three fiscal years before the day on which the report is compiled; and
Utah Code Annotated § 63A-3-109(2)(b): recommends that the Legislature close each contribution dependent account listed in the report.
Utah Code Annotated § 63A-3-109(3): (2) The Division of Finance shall present the report described in Subsection
Utah Code Annotated § 63A-3-110 Personal use expenditures for state officers and employees.
-------------------------------------------------------------------------------------------
Utah Code Annotated § 63A-3-110(1): Title 63H, Independent State Entities; 51-7-3 As used in this section:
Utah Code Annotated § 63A-3-110(1)(a): "Employee" means a person who is not an elected or appointed officer and who is employed on a full- or part-time basis by a governmental entity.
Utah Code Annotated § 63A-3-110(1)(b): Title 63H, Independent State Entities "Governmental entity" means:
Utah Code Annotated § 63A-3-110(1)(b)(i): an executive branch agency of the state, the offices of the governor, lieutenant governor, state auditor, attorney general, and state treasurer, the State Board of Education, and the Utah Board of Higher Education;
Utah Code Annotated § 63A-3-110(1)(b)(ii): the Office of the Legislative Auditor General, the Office of the Legislative Fiscal Analyst, the Office of Legislative Research and General Counsel, the Legislature, and legislative committees;
Utah Code Annotated § 63A-3-110(1)(b)(iii): courts, the Judicial Council, the Administrative Office of the Courts, and similar administrative units in the judicial branch; or
Utah Code Annotated § 63A-3-110(1)(b)(iv): Title 63H, Independent State Entities independent state entities created under
Utah Code Annotated § 63A-3-110(1)(c): "Officer" means a person who is elected or appointed to an office or position within a governmental entity.
Utah Code Annotated § 63A-3-110(1)(d):
Utah Code Annotated § 63A-3-110(1)(d)(i): "Personal use expenditure" means an expenditure made without the authority of law that:
Utah Code Annotated § 63A-3-110(1)(d)(i)(A): is not directly related to the performance of an activity as a state officer or employee;
Utah Code Annotated § 63A-3-110(1)(d)(i)(B): primarily furthers a personal interest of a state officer or employee or a state officer's or employee's family, friend, or associate; and
Utah Code Annotated § 63A-3-110(1)(d)(i)(C): would constitute taxable income under federal law.
Utah Code Annotated § 63A-3-110(1)(d)(ii): "Personal use expenditure" does not include:
Utah Code Annotated § 63A-3-110(1)(d)(ii)(A): a de minimis or incidental expenditure; or
Utah Code Annotated § 63A-3-110(1)(d)(ii)(B): a state vehicle or a monthly stipend for a vehicle that an officer or employee uses to travel to and from the officer or employee's official duties, including a minimal allowance for a detour as provided by the state.
Utah Code Annotated § 63A-3-110(1)(e): 51-7-3 "Public funds" means the same as that term is defined in Section
Utah Code Annotated § 63A-3-110(2): A state officer or employee may not:
Utah Code Annotated § 63A-3-110(2)(a): use public funds for a personal use expenditure; or
Utah Code Annotated § 63A-3-110(2)(b): incur indebtedness or liability on behalf of, or payable by, a governmental entity for a personal use expenditure.
Utah Code Annotated § 63A-3-110(3): (2); (3)(b) If the Division of Finance or the responsible governmental entity determines that a state officer or employee has intentionally made a personal use expenditure in violation of Subsection
Utah Code Annotated § 63A-3-110(3)(a): require the state officer or employee to deposit the amount of the personal use expenditure into the fund or account from which:
Utah Code Annotated § 63A-3-110(3)(a)(i): the personal use expenditure was disbursed; or
Utah Code Annotated § 63A-3-110(3)(a)(ii): payment for the indebtedness or liability for a personal use expenditure was disbursed;
Utah Code Annotated § 63A-3-110(3)(b): require the state officer or employee to remit an administrative penalty in an amount equal to 50% of the personal use expenditure to the Division of Finance; and
Utah Code Annotated § 63A-3-110(3)(c): (3)(b) deposit the money received under Subsection
Utah Code Annotated § 63A-3-110(4): (2); Title 63G, Chapter 3, Utah Administrative Rulemaking Act; (4)(a)
Utah Code Annotated § 63A-3-110(4)(a): (2) Any state officer or employee who has been found by a governmental entity to have made a personal use expenditure in violation of Subsection
Utah Code Annotated § 63A-3-110(4)(b): Title 63G, Chapter 3, Utah Administrative Rulemaking Act; (4)(a) In accordance with
Utah Code Annotated § 63A-3-110(5): (5)(b); (2); (3); (4); (4)(b); (2)
Utah Code Annotated § 63A-3-110(5)(a): (5)(b); (2); (3) Subject to Subsection
Utah Code Annotated § 63A-3-110(5)(b): (4); (4)(b); (2) If the state officer or employee has requested an appeal under Subsection
Utah Code Annotated § 63A-3-110(6): Nothing in this chapter immunizes a state officer or employee from or precludes any criminal prosecution or civil or employment action for an unlawful personal use expenditure.
Utah Code Annotated § 63A-3-110(7): 76-8-402 A state officer or employee who is convicted of misusing public money or public property under Section
Utah Code Annotated § 63A-3-112 Digital user asset collection.
--------------------------------------------------------------
Utah Code Annotated § 63A-3-112(1): 70A-8-101; 63G-7-102 As used in this section:
Utah Code Annotated § 63A-3-112(1)(a): "Agency" means a state government entity that receives payments for services or fees and is eligible to enter into a contract for payment services with the division.
Utah Code Annotated § 63A-3-112(1)(b): "Agency payment" means a payment that is due directly to an agency and that the agency collects either directly or through a third-party payment processor with whom the division has a contract.
Utah Code Annotated § 63A-3-112(1)(c): "Digital asset" means a representation of economic, proprietary, or access rights that is stored in a computer readable format.
Utah Code Annotated § 63A-3-112(1)(d): 70A-8-101 "Digital security" means a digital asset which constitutes a security, as that term is defined in Section
Utah Code Annotated § 63A-3-112(1)(e):
Utah Code Annotated § 63A-3-112(1)(e)(i): "Digital user asset" means a digital asset that is used or bought primarily for consumptive, personal, or household purposes.
Utah Code Annotated § 63A-3-112(1)(e)(ii): "Digital user asset" includes an open blockchain token.
Utah Code Annotated § 63A-3-112(1)(e)(iii): "Digital user asset" does not include a digital security.
Utah Code Annotated § 63A-3-112(1)(f): "Participating agency" means an agency that meets the division's requirements to accept payments made through a service provider with whom the division has a contract.
Utah Code Annotated § 63A-3-112(1)(g): 63G-7-102 "Political subdivision" means the same as that term is defined in Section
Utah Code Annotated § 63A-3-112(1)(h): "Political subdivision payment" means a payment that is due directly to a political subdivision and that the political subdivision collects either directly or through a third-party payment processor with whom the political subdivision has a contract.
Utah Code Annotated § 63A-3-112(1)(i): "Service provider" means a person with demonstrated experience exchanging digital user assets for legal tender.
Utah Code Annotated § 63A-3-112(2): The division shall contract with a service provider to provide a service to process an agency payment for a participating agency by:
Utah Code Annotated § 63A-3-112(2)(a): taking the payment in the form of a digital user asset; and
Utah Code Annotated § 63A-3-112(2)(b): converting the digital user asset into legal tender to pay the agency payment.
Utah Code Annotated § 63A-3-112(3): (2); (2); (2)
Utah Code Annotated § 63A-3-112(3)(a): (2) When contracting with a service provider to provide the service described in Subsection
Utah Code Annotated § 63A-3-112(3)(b): (2) The division may contract with more than one service provider to provide the service described in Subsection
Utah Code Annotated § 63A-3-112(3)(c): (2) Nothing in this section shall be interpreted to require the division to provide the service described in Subsection
Utah Code Annotated § 63A-3-112(4): 63J-1-504; (2)
Utah Code Annotated § 63A-3-112(4)(a): The person paying the agency payment bears responsibility for any costs the service provider charges for the service provider's service.
Utah Code Annotated § 63A-3-112(4)(b): 63J-1-504; (2) The division may collect a fee established in accordance with the procedures and requirements of Section
Utah Code Annotated § 63A-3-112(5): (2) The division shall contract to provide the service described in Subsection
Utah Code Annotated § 63A-3-112(6): Title 63G, Chapter 3, Utah Administrative Rulemaking Act The division shall, in accordance with
Utah Code Annotated § 63A-3-112(6)(a): establish standards that a person must meet to be eligible to enter into a contract as a service provider; and
Utah Code Annotated § 63A-3-112(6)(b): establish requirements an agency must meet to be a participating agency.
Utah Code Annotated § 63A-3-112(7): A political subdivision may enter into an agreement with the division for the division to contract with a service provider to, on behalf of the political subdivision:
Utah Code Annotated § 63A-3-112(7)(a): provide a service to collect a political subdivision payment in the form of a digital user asset; and
Utah Code Annotated § 63A-3-112(7)(b): convert the digital user asset into legal tender to pay the political subdivision payment.
Utah Code Annotated § 63A-3-112(8): Nothing in this section shall be interpreted to impose liability upon the person paying the agency payment or a participating agency for a change in value of the digital user asset after the moment of payment to the service provider.
Utah Code Annotated § 63A-3-201 Appointment of accounting and other officers and employees by director of the Division of Finance -- Delegation of powers and duties by director -- Background checks.
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Utah Code Annotated § 63A-3-201(1): With the approval of the executive director, the director of the Division of Finance shall appoint an accounting officer and other administrative officers that are necessary to efficiently and economically perform the functions of the Division of Finance.
Utah Code Annotated § 63A-3-201(2): The director of the Division of Finance may:
Utah Code Annotated § 63A-3-201(2)(a): organize the division and employ other assistants to discharge the functions of the division;
Utah Code Annotated § 63A-3-201(2)(b): delegate to assistants, officers, and employees any of the powers and duties of the office subject to his or her control and subject to any conditions he may prescribe; and
Utah Code Annotated § 63A-3-201(2)(c): delegate the powers and duties of the office only by written order filed with the lieutenant governor.
Utah Code Annotated § 63A-3-201(3): (3); 53B-1-102(1); Title 63G, Chapter 3, Utah Administrative Rulemaking Act
Utah Code Annotated § 63A-3-201(3)(a): (3); 53B-1-102(1) As used in this Subsection
Utah Code Annotated § 63A-3-201(3)(a)(i): "Public employee" means a person employed by a state agency.
Utah Code Annotated § 63A-3-201(3)(a)(ii): "Public funds" means money, funds, and accounts, regardless of the source from which the money, funds, and accounts are derived, that are owned, held, or administered by a state agency.
Utah Code Annotated § 63A-3-201(3)(a)(iii): "Public funds position" means employment with a state agency that requires:
Utah Code Annotated § 63A-3-201(3)(a)(iii)(A): physical or electronic access to public funds;
Utah Code Annotated § 63A-3-201(3)(a)(iii)(B): performing internal control functions or accounting;
Utah Code Annotated § 63A-3-201(3)(a)(iii)(C): creating reports on public funds; or
Utah Code Annotated § 63A-3-201(3)(a)(iii)(D): using, operating, or accessing state systems that account for or help account for public funds.
Utah Code Annotated § 63A-3-201(3)(a)(iv): 53B-1-102(1) "State agency" means:
Utah Code Annotated § 63A-3-201(3)(a)(iv)(A): an executive branch agency; or
Utah Code Annotated § 63A-3-201(3)(a)(iv)(B): 53B-1-102(1) a state educational institution with the exception of an institution defined in Subsection
Utah Code Annotated § 63A-3-201(3)(b): The Division of Finance may require that a public employee who applies for or holds a public funds position:
Utah Code Annotated § 63A-3-201(3)(b)(i): submit a fingerprint card in a form acceptable to the division;
Utah Code Annotated § 63A-3-201(3)(b)(ii): consent to a criminal background check by:
Utah Code Annotated § 63A-3-201(3)(b)(ii)(A): the Federal Bureau of Investigation;
Utah Code Annotated § 63A-3-201(3)(b)(ii)(B): the Utah Bureau of Criminal Identification; or
Utah Code Annotated § 63A-3-201(3)(b)(ii)(C): another agency of any state that performs criminal background checks; or
Utah Code Annotated § 63A-3-201(3)(b)(iii): consent to a credit history report, subject to the requirements of the Fair Credit Reporting Act, 15 U.S.C. Sec. 1681 et seq.
Utah Code Annotated § 63A-3-201(3)(c): The Bureau of Criminal Identification shall provide all the results from the state, regional, and nationwide criminal history background checks to the division.
Utah Code Annotated § 63A-3-201(3)(d): Title 63G, Chapter 3, Utah Administrative Rulemaking Act The Division of Finance may, in accordance with
Utah Code Annotated § 63A-3-202.1 Definitions.
----------------------------------------------
As used in this part, "accounting system" means:Utah Code Annotated § 63A-3-202.1(1): a system that integrates into the state's general ledger accounting system;
Utah Code Annotated § 63A-3-202.1(2): a system used to summarize information that is manually entered into the state's general ledger accounting system;
Utah Code Annotated § 63A-3-202.1(3): a system used to collect and maintain:
Utah Code Annotated § 63A-3-202.1(3)(a): detailed financial information on each individual transaction or event; or
Utah Code Annotated § 63A-3-202.1(3)(b): information used to present the funds and activities of the state;
Utah Code Annotated § 63A-3-202.1(4): a system used to determine and demonstrate financial compliance with legal, federal, audit, and contractual provisions; or
Utah Code Annotated § 63A-3-202.1(5): a system similar to a system described in Subsections (1) through (4).
Utah Code Annotated § 63A-3-202.5 Comprehensive state accounting system -- Approval of agency accounting systems -- Cost accounting systems required.
-----------------------------------------------------------------------------------------------------------------------------------------------------
Utah Code Annotated § 63A-3-202.5(1): The director of the Division of Finance shall establish a comprehensive state accounting system.
Utah Code Annotated § 63A-3-202.5(2): Officers, departments, agencies, and institutions of Utah may create and maintain accounting systems only with the approval of the director.
Utah Code Annotated § 63A-3-202.5(3): The director may, with the approval of the executive director, require any department or institution to install and maintain a cost accounting system that will disclose the unit cost of material or service produced or performed by a department.
Utah Code Annotated § 63A-3-203 Accounting control over state departments and agencies -- Prescription and approval of financial forms and accounting systems.
--------------------------------------------------------------------------------------------------------------------------------------------------------------
Utah Code Annotated § 63A-3-203(1): The director of the Division of Finance shall:
Utah Code Annotated § 63A-3-203(1)(a): exercise accounting control over all state departments and agencies except institutions of higher education; and
Utah Code Annotated § 63A-3-203(1)(b): prescribe the manner and method of certifying that funds are available and adequate to meet all contracts and obligations.
Utah Code Annotated § 63A-3-203(2): The director shall audit all claims against the state for which an appropriation is made.
Utah Code Annotated § 63A-3-203(3):
Utah Code Annotated § 63A-3-203(3)(a): The director shall prescribe:
Utah Code Annotated § 63A-3-203(3)(a)(i): all forms of requisitions, receipts, vouchers, bills, or claims to be used by all state departments and agencies; and
Utah Code Annotated § 63A-3-203(3)(a)(ii): all forms to be used by the division.
Utah Code Annotated § 63A-3-203(3)(b): Before approving the forms in Subsection (3)(a), the director shall obtain approval from the state auditor that the forms will adequately facilitate the post-audit of public accounts.
Utah Code Annotated § 63A-3-203(4): Before implementation by any state agency, the director of the Division of Finance shall review and approve any accounting system developed by a state agency.
Utah Code Annotated § 63A-3-203(5): If a state agency does not obtain the approval described in Subsection (4), the director may:
Utah Code Annotated § 63A-3-203(5)(a): require the state agency to cease all development activity related to the accounting system; and
Utah Code Annotated § 63A-3-203(5)(b):
Utah Code Annotated § 63A-3-203(5)(b)(i): establish conditions of future development of the accounting system; or
Utah Code Annotated § 63A-3-203(5)(b)(ii): deny implementation of the accounting system.
Utah Code Annotated § 63A-3-204 Financial control system -- Financial reports as to state funds -- Information required of executive directors of state departments.
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
Utah Code Annotated § 63A-3-204(1): The director of the Division of Finance shall:
Utah Code Annotated § 63A-3-204(1)(a): maintain a financial control system according to generally accepted accounting principles;
Utah Code Annotated § 63A-3-204(1)(b): record the constituent elements of the General Fund and of each special fund in proper relationship to each other; and
Utah Code Annotated § 63A-3-204(1)(c): keep all accounts in balance.
Utah Code Annotated § 63A-3-204(2): The director of the Division of Finance shall prepare and submit to the governor and to the Legislature, when requested, reports showing:
Utah Code Annotated § 63A-3-204(2)(a): the condition of the General Fund and each special fund of the state;
Utah Code Annotated § 63A-3-204(2)(b): the available cash resources of the General Fund and each special fund of the state;
Utah Code Annotated § 63A-3-204(2)(c): as to each fund:
Utah Code Annotated § 63A-3-204(2)(c)(i): the estimated revenue and anticipated time of collection;
Utah Code Annotated § 63A-3-204(2)(c)(ii): the current encumbrances, future obligations, and estimated date they accrue;
Utah Code Annotated § 63A-3-204(2)(c)(iii): appropriations;
Utah Code Annotated § 63A-3-204(2)(c)(iv): obligations;
Utah Code Annotated § 63A-3-204(2)(c)(v): monthly allotments;
Utah Code Annotated § 63A-3-204(2)(c)(vi): unencumbered allotments; and
Utah Code Annotated § 63A-3-204(2)(c)(vii): reserves and surpluses;
Utah Code Annotated § 63A-3-204(2)(d): the capital assets and liability accounts of the state; and
Utah Code Annotated § 63A-3-204(2)(e): the valuation account of all other state property.
Utah Code Annotated § 63A-3-204(3): (2) The executive director of each department of state government and all institutions of higher education shall submit statements containing the information and data necessary to enable the director of the Division of Finance to submit to the governor the reports required by Subsection
Utah Code Annotated § 63A-3-205 Revolving loan funds -- Standards and procedures.
---------------------------------------------------------------------------------
Utah Code Annotated § 63A-3-205(1): 73-10-24; 73-10-8; 73-10-22; Title 19, Chapter 1, Part 4, Clean Fuels and Emission Reduction Technology Program Act; 73-10c-5; 4-18-106; 4-19-105; 35A-8-303; 19-6-409; 35A-8-1602; 35A-8-1704; 11-45-201 As used in this section, "revolving loan fund" means:
Utah Code Annotated § 63A-3-205(1)(a): 73-10-24 the Water Resources Conservation and Development Fund, created in Section
Utah Code Annotated § 63A-3-205(1)(b): 73-10-8 the Water Resources Construction Fund, created in Section
Utah Code Annotated § 63A-3-205(1)(c): 73-10-22 the Water Resources Cities Water Loan Fund, created in Section
Utah Code Annotated § 63A-3-205(1)(d): Title 19, Chapter 1, Part 4, Clean Fuels and Emission Reduction Technology Program Act the Clean Fuel Conversion Funds, created in
Utah Code Annotated § 63A-3-205(1)(e): 73-10c-5 the Water Development Security Fund and its subaccounts, created in Section
Utah Code Annotated § 63A-3-205(1)(f): 4-18-106 the Agriculture Resource Development Fund, created in Section
Utah Code Annotated § 63A-3-205(1)(g): 4-19-105 the Utah Rural Rehabilitation Fund, created in Section
Utah Code Annotated § 63A-3-205(1)(h): 35A-8-303 the Permanent Community Impact Fund, created in Section
Utah Code Annotated § 63A-3-205(1)(i): 19-6-409 the Petroleum Storage Tank Fund, created in Section
Utah Code Annotated § 63A-3-205(1)(j): 35A-8-1602 the Uintah Basin Revitalization Fund, created in Section
Utah Code Annotated § 63A-3-205(1)(k): 35A-8-1704 the Navajo Revitalization Fund, created in Section
Utah Code Annotated § 63A-3-205(1)(l): 11-45-201 the Energy Efficiency Fund, created in Section
Utah Code Annotated § 63A-3-205(2): The division shall for each revolving loan fund make rules establishing standards and procedures governing:
Utah Code Annotated § 63A-3-205(2)(a): payment schedules and due dates;
Utah Code Annotated § 63A-3-205(2)(b): interest rate effective dates;
Utah Code Annotated § 63A-3-205(2)(c): loan documentation requirements; and
Utah Code Annotated § 63A-3-205(2)(d): interest rate calculation requirements.
Utah Code Annotated § 63A-3-301 Definitions.
--------------------------------------------
As used in this part:Utah Code Annotated § 63A-3-301(1): "Account receivable" or "receivable" means any amount due the state or any other governmental entity within the state as a result of a judgment, citation, tax, or administrative order, or for which materials or services have been provided but for which payment has not been received by the servicing unit.
Utah Code Annotated § 63A-3-301(2): "Debtor" means a party that owes, or is alleged to owe, an account receivable.
Utah Code Annotated § 63A-3-301(3): 63A-3-101 "Division" means the Division of Finance, created in Section
Utah Code Annotated § 63A-3-301(4): 63A-3-307 "Lien" means the lien described in Section
Utah Code Annotated § 63A-3-301(5): "Local agency" means a nonprofit entity organized by participating political subdivisions to act on behalf of the participating political subdivisions with respect to the office's efforts to collect accounts receivable of participating political subdivisions through administrative offsets.
Utah Code Annotated § 63A-3-301(6): "Mail" means United States Postal Service first class mail to the intended recipient's last known address.
Utah Code Annotated § 63A-3-301(7): "Participating political subdivision" means a political subdivision that has entered into an agreement with a local agency authorizing the local agency to act on behalf of the political subdivision with respect to the office's efforts to collect accounts receivable of the political subdivision through administrative offsets.
Utah Code Annotated § 63A-3-301(8): 63G-7-102 "Political subdivision" means the same as that term is defined in Section
Utah Code Annotated § 63A-3-302 Unpaid accounts receivable -- Political subdivision agreement with local agency.
----------------------------------------------------------------------------------------------------------------
Utah Code Annotated § 63A-3-302(1): (1)(b); (c); Title 59, Chapter 2, Property Tax Act
Utah Code Annotated § 63A-3-302(1)(a): (1)(b); (c) Except as provided in Subsections
Utah Code Annotated § 63A-3-302(1)(b): A governmental entity within the state that is a health care provider may not proceed under this part when the account receivable is for a medical material or service and the debtor:
Utah Code Annotated § 63A-3-302(1)(b)(i): has made a payment arrangement with the health care provider; and
Utah Code Annotated § 63A-3-302(1)(b)(ii): is current on payments under the payment arrangement.
Utah Code Annotated § 63A-3-302(1)(c): Title 59, Chapter 2, Property Tax Act The state, a governmental entity within the state, or a local agency acting on behalf of a political subdivision within the state may proceed under this part on an account receivable that is for a property tax imposed under
Utah Code Annotated § 63A-3-302(2): (2)(a); 63A-3-305; 63A-3-306
Utah Code Annotated § 63A-3-302(2)(a): A political subdivision may enter into an agreement with a local agency under which the local agency, for a reasonable fee that the political subdivision and local agency agree upon, prepares and submits the political subdivision's accounts receivable for collection as provided in this part.
Utah Code Annotated § 63A-3-302(2)(b): (2)(a); 63A-3-305; 63A-3-306 Notwithstanding an agreement under Subsection
Utah Code Annotated § 63A-3-302(2)(b)(i): establish an agreement with the division for submitting delinquent accounts receivable under this part; and
Utah Code Annotated § 63A-3-302(2)(b)(ii): 63A-3-305; 63A-3-306 with respect to the accounts receivable that the participating political subdivision submits through a local agency for collection under this part:
Utah Code Annotated § 63A-3-302(2)(b)(ii)(A): 63A-3-305 receive and respond to an administrative hearing requested under Section
Utah Code Annotated § 63A-3-302(2)(b)(ii)(B): 63A-3-306 administer an adjudicative proceeding required under Section
Utah Code Annotated § 63A-3-303 Notice to debtor -- Contents -- Joint filers.
-----------------------------------------------------------------------------
Utah Code Annotated § 63A-3-303(1): 63A-3-307 For each instance when the state or any other governmental entity executes, or intends to execute, on a lien created by Section
Utah Code Annotated § 63A-3-303(2): The notice required by Subsection (1) shall contain:
Utah Code Annotated § 63A-3-303(2)(a): the date and amount of the receivable;
Utah Code Annotated § 63A-3-303(2)(b): a demand for immediate payment of the amount;
Utah Code Annotated § 63A-3-303(2)(c): a statement of the right of the debtor to file a written response to the notice, to request a hearing within 21 days of the date of the notice, to be represented at the hearing, and to appeal any decision of the hearing examiner;
Utah Code Annotated § 63A-3-303(2)(d): the time within which a written response must be received from the debtor;
Utah Code Annotated § 63A-3-303(2)(e): a statement notifying the debtor that the state may obtain an order and execute upon income tax overpayments or refunds of the debtor if:
Utah Code Annotated § 63A-3-303(2)(e)(i): the debtor fails to timely respond to the notice; or
Utah Code Annotated § 63A-3-303(2)(e)(ii): a hearing is held and the hearing officer decides against the debtor;
Utah Code Annotated § 63A-3-303(2)(f): the address to which the debtor may send a written request for a hearing; and
Utah Code Annotated § 63A-3-303(2)(g): the amount of the tax overpayment, refund, or other funds subject to a lien under this part, on which the state or governmental entity executes or intends to execute the lien.
Utah Code Annotated § 63A-3-303(3): Notwithstanding Subsection (1), if the Office of State Debt Collection has agreed to collect a receivable, the Office of State Debt Collection may send the notice required by Subsection (1) instead of the entity to which the receivable is owed.
Utah Code Annotated § 63A-3-303(4): Unless otherwise prohibited by law, the state or other governmental entity shall also send the notice required under this section to each individual who is a joint filer with a debtor of an affected tax filing, if the state or other governmental entity attempting to levy a debtor's tax overpayment, refund, or other funds subject to a lien under this part is aware of the joint filer.
Utah Code Annotated § 63A-3-304 Effect of nonpayment or failure to respond.
---------------------------------------------------------------------------
Utah Code Annotated § 63A-3-304(1): 63A-3-303 If a written request for a hearing is not received by the state or other governmental entity within 21 days after the date of the notice required by Section
Utah Code Annotated § 63A-3-304(1)(a): may levy the debtor's income tax overpayment, refund, or other funds subject to a lien under this part, that is specified in the notice, up to the amount of the receivable, plus interest, penalties, and collection costs allowed by law, to apply to the receivable specified in the notice; and
Utah Code Annotated § 63A-3-304(1)(b): is not required to return to the debtor the income tax overpayment, refund, or other funds subject to a lien under which the state or other governmental entity levies.
Utah Code Annotated § 63A-3-304(2): 63A-3-307 If a debtor pays a delinquent receivable in full before the state or other governmental entity applies to the delinquent receivable an amount levied under this part, the state or other governmental entity shall release the levied amount to the debtor, if the levied amount is being held due to a lien created under Section
Utah Code Annotated § 63A-3-305 Hearing requested -- Notice to debtor.
----------------------------------------------------------------------
Utah Code Annotated § 63A-3-305(1): 63A-3-303 If a written response is received by the state or other governmental entity within 21 days from the date of the notice required by Section
Utah Code Annotated § 63A-3-305(1)(a): set a hearing date within 28 days of the receipt of the response; and
Utah Code Annotated § 63A-3-305(1)(b): mail written notice of the hearing to the debtor at least 14 days before the date of the hearing.
Utah Code Annotated § 63A-3-305(2):
Utah Code Annotated § 63A-3-305(2)(a): Notwithstanding Subsection (1), the state or other governmental entity is not required to set a hearing if the state or governmental entity releases its lien.
Utah Code Annotated § 63A-3-305(2)(b): The state or other governmental entity may release a lien on a specific tax overpayment, a specific refund, or a specific amount of funds, without the release affecting subsequent or previous levies or liens under this part.
Utah Code Annotated § 63A-3-305(2)(c): Each instance the state or other governmental entity, in response to a written request for a hearing from a debtor, releases a lien under this section, the state or other governmental entity releasing the lien shall, within a reasonable amount of time, send written notice to the debtor indicating that the lien has been released and to which year or years the release applies.
Utah Code Annotated § 63A-3-305(3): A written request for hearing received under this part is a request for agency action under Title 63G, Chapter 4, Administrative Procedures Act.
Utah Code Annotated § 63A-3-305(4): This part does not prevent a debtor from challenging a debt through other lawful means that may be available to a debtor.
Utah Code Annotated § 63A-3-305(5): A written request under this part is the sole manner to dispute a levy under this part.
Utah Code Annotated § 63A-3-306 Hearing examiner -- Procedures -- Adjudicative proceedings.
-------------------------------------------------------------------------------------------
Utah Code Annotated § 63A-3-306(1):
Utah Code Annotated § 63A-3-306(1)(a): A hearing requested under this part shall be held before a hearing examiner designated by the state or other governmental entity setting the hearing.
Utah Code Annotated § 63A-3-306(1)(b): The hearing examiner may not be an officer or employee of the entity in state government responsible for collecting or administering the account.
Utah Code Annotated § 63A-3-306(2): The state or other governmental entity shall comply with the procedures and requirements of Title 63G, Chapter 4, Administrative Procedures Act, in its adjudicative proceedings.
Utah Code Annotated § 63A-3-306(3): 63A-3-307 If a hearing examiner determines a receivable is owed, in whole or in part:
Utah Code Annotated § 63A-3-306(3)(a): 63A-3-307 the state or other governmental entity may levy the debtor's income tax overpayment, refund, or other funds subject to a lien under this part, as specified in the notice to the debtor, up to the amount of the receivable determined to be owed, plus interest, penalties, and collection costs allowed by law and collect the balance, including as provided in Section
Utah Code Annotated § 63A-3-306(3)(b): the state or other governmental entity may charge the debtor reasonable, actual collection costs for amounts charged by the hearing examiner for the debtor's hearing.
Utah Code Annotated § 63A-3-307 Liens.
--------------------------------------
Utah Code Annotated § 63A-3-307(1): The following shall constitute a lien in the amount of the receivable plus interest, penalties, and collection costs allowed by law against any state income tax overpayment, refund, or other funds in possession of the state or other governmental entity, that are due or to become due the debtor:
Utah Code Annotated § 63A-3-307(1)(a): a judgment, citation, tax, or administrative order issued by any agency, court, or other authority of the state, or by any political subdivision;
Utah Code Annotated § 63A-3-307(1)(b): an amount, that has at any point been unpaid for 90 days or more, due the state or other governmental entity for which materials or services have been provided but for which payment has not been received by the servicing unit; or
Utah Code Annotated § 63A-3-307(1)(c): an amount, that:
Utah Code Annotated § 63A-3-307(1)(c)(i): the debtor is statutorily required to pay to the state or other governmental entity; and
Utah Code Annotated § 63A-3-307(1)(c)(ii): has, at any point, been unpaid for at least 90 days.
Utah Code Annotated § 63A-3-307(2): 59-10-529 The lien created by this section shall, for the purposes of Section
Utah Code Annotated § 63A-3-307(3): Nothing under Title 63G, Chapter 7, Part 6, Legal Actions Under this Chapter - Procedures, Requirements, Damages, and Limitations on Judgments, prohibits the state or other governmental entity from executing on a lien under this section.
Utah Code Annotated § 63A-3-308 Judicial review -- Effect on lien.
------------------------------------------------------------------
Utah Code Annotated § 63A-3-308(1): Agency and judicial review of decisions from hearings conducted under this part are subject to review in accordance with Title 63G, Chapter 4, Administrative Procedures Act.
Utah Code Annotated § 63A-3-308(2): The state or other governmental entity may retain in its possession a debtor's tax overpayment, refund, or other funds subject to a lien under this part, while a decision from a hearing conducted under this part is being reviewed by an agency, court, or other authority of the state pursuant to Title 63G, Chapter 4, Administrative Procedures Act.
Utah Code Annotated § 63A-3-310 Rules for implementing part.
------------------------------------------------------------
The division may make rules, in accordance with
Utah Code Annotated § 63A-3-401.5 Definitions.
----------------------------------------------
As used in this part:Utah Code Annotated § 63A-3-401.5(1): "Borrower" means a person who borrows money from an infrastructure fund for an infrastructure project.
Utah Code Annotated § 63A-3-401.5(2): 63A-3-402 "Fairpark district development fund" means the infrastructure fund created in Subsection
Utah Code Annotated § 63A-3-401.5(3): 11-58-201; 11-59-201; 11-70-201; 63H-1-201 "Independent political subdivision" means:
Utah Code Annotated § 63A-3-401.5(3)(a): 11-58-201 the Utah Inland Port Authority created in Section
Utah Code Annotated § 63A-3-401.5(3)(b): 11-59-201 the Point of the Mountain State Land Authority created in Section
Utah Code Annotated § 63A-3-401.5(3)(c): 11-70-201 the Utah Fairpark Area Investment and Restoration District created in Section
Utah Code Annotated § 63A-3-401.5(3)(d): 63H-1-201 the Military Installation Development Authority created in Section
Utah Code Annotated § 63A-3-401.5(4): 63A-3-402 "Infrastructure fund" means a fund created in Subsection
Utah Code Annotated § 63A-3-401.5(5): "Infrastructure loan" means a loan of infrastructure fund money to finance an infrastructure project.
Utah Code Annotated § 63A-3-401.5(6): "Infrastructure project" means a project to acquire, construct, reconstruct, rehabilitate, equip, or improve public infrastructure and improvements:
Utah Code Annotated § 63A-3-401.5(6)(a): within a project area; or
Utah Code Annotated § 63A-3-401.5(6)(b): outside a project area, if the respective loan approval body determines by resolution that the public infrastructure and improvements are of benefit to the project area.
Utah Code Annotated § 63A-3-401.5(7): 11-58-102 "Inland port" means the same as that term is defined in Section
Utah Code Annotated § 63A-3-401.5(8): 63A-3-402 "Inland port fund" means the infrastructure fund created in Subsection
Utah Code Annotated § 63A-3-401.5(9): 63A-3-402 "Military development fund" means the infrastructure fund created in Subsection
Utah Code Annotated § 63A-3-401.5(10): 63A-3-402 "Point of the mountain fund" means the infrastructure fund created in Subsection
Utah Code Annotated § 63A-3-401.5(11): 11-58-102; 11-59-102; 11-70-101; 63H-1-102 "Project area" means:
Utah Code Annotated § 63A-3-401.5(11)(a): 11-58-102 the same as that term is defined in Section
Utah Code Annotated § 63A-3-401.5(11)(b): 11-59-102 the point of the mountain state land, as defined in Section
Utah Code Annotated § 63A-3-401.5(11)(c): 11-70-101 the same as that term is defined in Section
Utah Code Annotated § 63A-3-401.5(11)(d): 63H-1-102 the same as that term is defined in Section
Utah Code Annotated § 63A-3-401.5(12): 11-58-102; 11-70-101; 63H-1-102 "Property tax revenue" means:
Utah Code Annotated § 63A-3-401.5(12)(a): 11-58-102 property tax differential, as defined in Section
Utah Code Annotated § 63A-3-401.5(12)(b): 11-70-101 enhanced property tax revenue, as defined in Section
Utah Code Annotated § 63A-3-401.5(12)(c): 63H-1-102 property tax allocation, as defined in Section
Utah Code Annotated § 63A-3-401.5(13): 11-58-102; 11-59-102; 11-70-101; 63H-1-102 "Public infrastructure and improvements" means:
Utah Code Annotated § 63A-3-401.5(13)(a): 11-58-102 the same as that term is defined in Section
Utah Code Annotated § 63A-3-401.5(13)(b): 11-59-102 publicly owned infrastructure and improvements, as defined in Section
Utah Code Annotated § 63A-3-401.5(13)(c): 11-70-101 the same as that term is defined in Section
Utah Code Annotated § 63A-3-401.5(13)(d): 63H-1-102 the same as that term is defined in Section
Utah Code Annotated § 63A-3-401.5(14): 11-58-301; 11-59-301; 11-70-301; 63H-1-104 "Respective loan approval body" means:
Utah Code Annotated § 63A-3-401.5(14)(a): 11-58-301 the board created in Section
Utah Code Annotated § 63A-3-401.5(14)(b): 11-59-301 the board created in Section
Utah Code Annotated § 63A-3-401.5(14)(c): 11-70-301 the board created in Section
Utah Code Annotated § 63A-3-401.5(14)(d): 63H-1-104 the committee created in Section
Utah Code Annotated § 63A-3-402 Infrastructure funds established -- Purpose of funds -- Use of money in funds.
--------------------------------------------------------------------------------------------------------------
Utah Code Annotated § 63A-3-402(1): There are created, as enterprise revolving loan funds:
Utah Code Annotated § 63A-3-402(1)(a): the inland port infrastructure revolving loan fund;
Utah Code Annotated § 63A-3-402(1)(b): the point of the mountain infrastructure revolving loan fund;
Utah Code Annotated § 63A-3-402(1)(c): the fairpark area development revolving loan fund; and
Utah Code Annotated § 63A-3-402(1)(d): the military development infrastructure revolving loan fund.
Utah Code Annotated § 63A-3-402(2): The purpose of each infrastructure fund is to provide funding, through infrastructure loans, for infrastructure projects undertaken by a borrower.
Utah Code Annotated § 63A-3-402(3):
Utah Code Annotated § 63A-3-402(3)(a): Money in an infrastructure fund may be used only to provide loans for infrastructure projects.
Utah Code Annotated § 63A-3-402(3)(b): The division may not loan money in an infrastructure fund without the approval of:
Utah Code Annotated § 63A-3-402(3)(b)(i): the respective loan approval body; and
Utah Code Annotated § 63A-3-402(3)(b)(ii): the Executive Appropriations Committee of the Legislature, for a loan from the inland port fund, the point of the mountain fund, or the fairpark area development fund.
Utah Code Annotated § 63A-3-403 Money in infrastructure funds.
--------------------------------------------------------------
Utah Code Annotated § 63A-3-403(1): Money in each of the infrastructure funds shall be kept separate and accounted for separately from money in the other infrastructure funds.
Utah Code Annotated § 63A-3-403(2): 72-2-202 Each infrastructure fund includes money:
Utah Code Annotated § 63A-3-403(2)(a): appropriated to that fund by the Legislature;
Utah Code Annotated § 63A-3-403(2)(b): 72-2-202 transferred to the fund from the State Infrastructure Bank Fund created in Section
Utah Code Annotated § 63A-3-403(2)(c): from federal, state, or other public grants or contributions;
Utah Code Annotated § 63A-3-403(2)(d): that an independent political subdivision transfers to the fund from other money available to the independent political subdivision;
Utah Code Annotated § 63A-3-403(2)(e): contributed or granted to the infrastructure fund from a private source; and
Utah Code Annotated § 63A-3-403(2)(f): collected from repayments of loans of infrastructure fund money.
Utah Code Annotated § 63A-3-403(3): (2); 63A-3-404; 63B-27-101(3)(a) In addition to money identified in Subsection
Utah Code Annotated § 63A-3-403(4):
Utah Code Annotated § 63A-3-403(4)(a): Each infrastructure fund shall earn interest.
Utah Code Annotated § 63A-3-403(4)(b): All interest earned on infrastructure fund money shall be deposited into the respective infrastructure fund and included in the money of the infrastructure fund available to be loaned.
Utah Code Annotated § 63A-3-403(5): Title 51, Chapter 7, State Money Management Act The state treasurer shall invest infrastructure fund money as provided in
Utah Code Annotated § 63A-3-404 Loan agreement.
-----------------------------------------------
Utah Code Annotated § 63A-3-404(1): (1)(a); (1)(b)(i)
Utah Code Annotated § 63A-3-404(1)(a): A borrower that borrows money from an infrastructure fund shall enter into a loan agreement with the division for repayment of the money.
Utah Code Annotated § 63A-3-404(1)(b): (1)(a); (1)(b)(i)
Utah Code Annotated § 63A-3-404(1)(b)(i): (1)(a) A loan agreement under Subsection
Utah Code Annotated § 63A-3-404(1)(b)(i)(A): bonds, notes, or another evidence of indebtedness validly issued under state law; or
Utah Code Annotated § 63A-3-404(1)(b)(i)(B): revenue generated from an infrastructure project.
Utah Code Annotated § 63A-3-404(1)(b)(ii): (1)(b)(i) The security provided under Subsection
Utah Code Annotated § 63A-3-404(1)(c): The respective loan approval body may determine that property tax revenue or revenue from the infrastructure project for which the infrastructure loan is obtained is sufficient security for an infrastructure loan.
Utah Code Annotated § 63A-3-404(2): An infrastructure loan shall bear interest at a rate not to exceed .5% above bond market interest rates available to the state.
Utah Code Annotated § 63A-3-404(3): (3)(b)
Utah Code Annotated § 63A-3-404(3)(a): (3)(b) Subject to Subsection
Utah Code Annotated § 63A-3-404(3)(b): If the security for an infrastructure loan is property tax revenue, the repayment terms of the infrastructure loan agreement shall allow sufficient time for the property tax revenue to generate sufficient money to cover payments under the infrastructure loan.
Utah Code Annotated § 63A-3-404(4): An infrastructure loan agreement may provide for a portion of the loan proceeds to be applied to a reserve fund to secure repayment of the infrastructure loan.
Utah Code Annotated § 63A-3-404(5): (5)(a)(ii)
Utah Code Annotated § 63A-3-404(5)(a): If a borrower fails to comply with the terms of an infrastructure loan agreement, the division may:
Utah Code Annotated § 63A-3-404(5)(a)(i): seek any legal or equitable remedy to obtain:
Utah Code Annotated § 63A-3-404(5)(a)(i)(A): compliance with the agreement; or
Utah Code Annotated § 63A-3-404(5)(a)(i)(B): the payment of damages; and
Utah Code Annotated § 63A-3-404(5)(a)(ii): request a state agency with money due to the borrower to withhold payment of the money to the borrower and instead to pay the money to the division to pay any amount due under the infrastructure loan agreement.
Utah Code Annotated § 63A-3-404(5)(b): (5)(a)(ii) A state agency that receives a request from the division under Subsection
Utah Code Annotated § 63A-3-404(6): Upon approval from the respective loan approval body the division shall loan money from an infrastructure fund according to the terms established by the respective loan approval body.
Utah Code Annotated § 63A-3-404(7): 63B-27-101(3)(a); 63B-27-101(3)(a); (7)(b)(ii); 63B-27-101(3)(a)(i); 72-2-124
Utah Code Annotated § 63A-3-404(7)(a): The division shall administer and enforce an infrastructure loan according to the terms of the infrastructure loan agreement.
Utah Code Annotated § 63A-3-404(7)(b): 63B-27-101(3)(a); 63B-27-101(3)(a); (7)(b)(ii); 63B-27-101(3)(a)(i); 72-2-124
Utah Code Annotated § 63A-3-404(7)(b)(i): 63B-27-101(3)(a) Beginning May 5, 2021, the division shall assume responsibility from the State Infrastructure Bank Fund for servicing the loan under Subsection
Utah Code Annotated § 63A-3-404(7)(b)(ii): 63B-27-101(3)(a) Payments due on or after October 1, 2021, under the loan under Subsection
Utah Code Annotated § 63A-3-404(7)(b)(iii): (7)(b)(ii); 63B-27-101(3)(a)(i); 72-2-124 Notwithstanding Subsection
Utah Code Annotated § 63A-3-501 Definitions.
--------------------------------------------
As used in this part:Utah Code Annotated § 63A-3-501(1):
Utah Code Annotated § 63A-3-501(1)(a): "Accounts receivable" or "receivables" means any amount due to a state agency from an entity for which payment has not been received by the state agency that is servicing the debt.
Utah Code Annotated § 63A-3-501(1)(b): "Accounts receivable" includes:
Utah Code Annotated § 63A-3-501(1)(b)(i): unpaid fees, licenses, taxes, loans, overpayments, fines, forfeitures, surcharges, costs, contracts, interest, penalties, third-party claims, sale of goods, sale of services, claims, and damages;
Utah Code Annotated § 63A-3-501(1)(b)(ii): a civil accounts receivable; and
Utah Code Annotated § 63A-3-501(1)(b)(iii): a civil judgment of restitution.
Utah Code Annotated § 63A-3-501(1)(c): "Accounts receivable" does not include a criminal accounts receivable.
Utah Code Annotated § 63A-3-501(2): "Administrative offset" means:
Utah Code Annotated § 63A-3-501(2)(a): a reduction of an individual's tax refund or other payments due to the individual to reduce or eliminate accounts receivable that the individual owes to a state agency; and
Utah Code Annotated § 63A-3-501(2)(b): a reduction of an entity's tax refund or other payments due to the entity to reduce or eliminate accounts receivable that the entity owes to a state agency.
Utah Code Annotated § 63A-3-501(3): 77-32b-102 "Civil accounts receivable" means the same as that term is defined in Section
Utah Code Annotated § 63A-3-501(4): 77-32b-102 "Civil judgment of restitution" means the same as that term is defined in Section
Utah Code Annotated § 63A-3-501(5): 77-32b-102 "Criminal accounts receivable" means the same as that term is defined in Section
Utah Code Annotated § 63A-3-501(6): "Entity" means an individual, a corporation, partnership, or other organization that pays taxes to, or does business, with the state.
Utah Code Annotated § 63A-3-501(7): 63A-3-502 "Office" means the Office of State Debt Collection created in Section
Utah Code Annotated § 63A-3-501(8): "Past due" means any accounts receivable that the state has not received by the payment due date.
Utah Code Annotated § 63A-3-501(9): 63G-7-102 "Political subdivision" means the same as that term is defined in Section
Utah Code Annotated § 63A-3-501(10): 77-38b-102 "Restitution" means the same as that term is defined in Section
Utah Code Annotated § 63A-3-501(11): 63A-3-502(7)(g); 34A-2-704; 34A-1-405; Title 34A, Chapter 2, Workers' Compensation Act; Title 34A, Chapter 3, Utah Occupational Disease Act
Utah Code Annotated § 63A-3-501(11)(a): "State agency" includes:
Utah Code Annotated § 63A-3-501(11)(a)(i): an executive branch agency;
Utah Code Annotated § 63A-3-501(11)(a)(ii): the legislative branch of state government; and
Utah Code Annotated § 63A-3-501(11)(a)(iii): the judicial branches of state government, including justice courts.
Utah Code Annotated § 63A-3-501(11)(b): 63A-3-502(7)(g); 34A-2-704; 34A-1-405; Title 34A, Chapter 2, Workers' Compensation Act; Title 34A, Chapter 3, Utah Occupational Disease Act "State agency" does not include:
Utah Code Annotated § 63A-3-501(11)(b)(i): any institution of higher education;
Utah Code Annotated § 63A-3-501(11)(b)(ii): 63A-3-502(7)(g) except in Subsection
Utah Code Annotated § 63A-3-501(11)(b)(iii): 34A-2-704; 34A-1-405; Title 34A, Chapter 2, Workers' Compensation Act; Title 34A, Chapter 3, Utah Occupational Disease Act the administrator of the Uninsured Employers' Fund appointed by the Labor Commissioner under Section
Utah Code Annotated § 63A-3-501(11)(b)(iii)(A): 34A-1-405 Section
Utah Code Annotated § 63A-3-501(11)(b)(iii)(B): Title 34A, Chapter 2, Workers' Compensation Act
Utah Code Annotated § 63A-3-501(11)(b)(iii)(C): Title 34A, Chapter 3, Utah Occupational Disease Act
Utah Code Annotated § 63A-3-501(12): "Writing-off" means the removal of an accounts receivable from an agency's accounts receivable records but does not necessarily eliminate further collection efforts.
Utah Code Annotated § 63A-3-502 Office of State Debt Collection created -- Duties.
----------------------------------------------------------------------------------
Utah Code Annotated § 63A-3-502(1): The state and each state agency shall comply with:
Utah Code Annotated § 63A-3-502(1)(a): the requirements of this chapter; and
Utah Code Annotated § 63A-3-502(1)(b): any rules established by the Office of State Debt Collection.
Utah Code Annotated § 63A-3-502(2): There is created the Office of State Debt Collection in the Division of Finance.
Utah Code Annotated § 63A-3-502(3): 77-18-114; 51-9-402; 63A-3-506; 78A-5-110; 77-32b-103; 63A-3-502.5 The office shall:
Utah Code Annotated § 63A-3-502(3)(a): have overall responsibility for collecting and managing state receivables;
Utah Code Annotated § 63A-3-502(3)(b): assist the Division of Finance to develop consistent policies governing the collection and management of state receivables;
Utah Code Annotated § 63A-3-502(3)(c): oversee and monitor state receivables to ensure that state agencies are:
Utah Code Annotated § 63A-3-502(3)(c)(i): implementing all appropriate collection methods;
Utah Code Annotated § 63A-3-502(3)(c)(ii): following established receivables guidelines; and
Utah Code Annotated § 63A-3-502(3)(c)(iii): accounting for and reporting receivables in the appropriate manner;
Utah Code Annotated § 63A-3-502(3)(d): assist the Division of Finance to develop policies, procedures, and guidelines for accounting, reporting, and collecting money owed to the state;
Utah Code Annotated § 63A-3-502(3)(e): provide information, training, and technical assistance to each state agency on various collection-related topics;
Utah Code Annotated § 63A-3-502(3)(f): write an inclusive receivables management and collection manual for use by each state agency;
Utah Code Annotated § 63A-3-502(3)(g): prepare quarterly and annual reports of the state's receivables;
Utah Code Annotated § 63A-3-502(3)(h): create or coordinate a state accounts receivable database;
Utah Code Annotated § 63A-3-502(3)(i): develop reasonable criteria to gauge state agencies' efforts in maintaining an effective accounts receivable program;
Utah Code Annotated § 63A-3-502(3)(j): identify any state agency that is not making satisfactory progress toward implementing collection techniques and improving accounts receivable collections;
Utah Code Annotated § 63A-3-502(3)(k): coordinate information, systems, and procedures between each state agency to maximize the collection of past-due accounts receivable;
Utah Code Annotated § 63A-3-502(3)(l): establish an automated cash receipt process between each state agency;
Utah Code Annotated § 63A-3-502(3)(m): assist the Division of Finance to establish procedures for writing off accounts receivable for accounting and collection purposes;
Utah Code Annotated § 63A-3-502(3)(n): establish standard time limits after which an agency will delegate responsibility to collect state receivables to the office or the office's designee;
Utah Code Annotated § 63A-3-502(3)(o): be a real party in interest for:
Utah Code Annotated § 63A-3-502(3)(o)(i): an account receivable referred to the office by any state agency; and
Utah Code Annotated § 63A-3-502(3)(o)(ii): a civil judgment of restitution entered on a civil judgment docket by a court;
Utah Code Annotated § 63A-3-502(3)(p): 77-18-114; 51-9-402; 63A-3-506; 78A-5-110 allocate money collected for a judgment entered on the civil judgment docket under Section
Utah Code Annotated § 63A-3-502(3)(q): 77-32b-103 if a criminal accounts receivable is transferred to the office under Subsection
Utah Code Annotated § 63A-3-502(3)(r): 63A-3-502.5 provide a debtor online access to the debtor's accounts receivable or criminal accounts receivable in accordance with Section
Utah Code Annotated § 63A-3-502(3)(s): establish a written policy for each of the following:
Utah Code Annotated § 63A-3-502(3)(s)(i): the settling of an accounts receivable, including any amount of restitution owed to a victim in a civil judgment of restitution if the victim approves of the settlement;
Utah Code Annotated § 63A-3-502(3)(s)(ii): allowing a debtor to pay off a single debt as part of an accounts receivable even if the debtor has a balance on another debt as part of an accounts receivable or criminal accounts receivable;
Utah Code Annotated § 63A-3-502(3)(s)(iii): setting a payment deadline for settlement agreements and for obtaining an extension of a settlement agreement deadline; and
Utah Code Annotated § 63A-3-502(3)(s)(iv): reducing administrative costs when a settlement has been reached;
Utah Code Annotated § 63A-3-502(3)(t): consult with a state agency on whether:
Utah Code Annotated § 63A-3-502(3)(t)(i): the office may agree to a settlement for an amount that is less than the debtor's principal amount; and
Utah Code Annotated § 63A-3-502(3)(t)(ii): the state agency may retain authority to negotiate a settlement with a debtor; and
Utah Code Annotated § 63A-3-502(3)(u): provide the terms and conditions of any payment arrangement that the debtor has made with a state agency or the office when:
Utah Code Annotated § 63A-3-502(3)(u)(i): the payment arrangement is created; or
Utah Code Annotated § 63A-3-502(3)(u)(ii): the debtor requests a copy of the terms and conditions.
Utah Code Annotated § 63A-3-502(4): 63G-2-206; 77-38b-204; 15-1-4; 63G-2-206 The office may: