forked from hashinclude72/python-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfdic_failed_bank_list.html
More file actions
4993 lines (4924 loc) · 275 KB
/
fdic_failed_bank_list.html
File metadata and controls
4993 lines (4924 loc) · 275 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
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
<!DOCTYPE html>
<!-- saved from url=(0057)https://www.fdic.gov/bank/individual/failed/banklist.html -->
<html lang="en-US"><!-- Content language is American English. --><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>FDIC: Failed Bank List</title>
<!-- Meta Tags -->
<meta charset="UTF-8">
<!-- Unicode character encoding -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Turns off IE Compatiblity Mode -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- Makes it so phones don't auto zoom out. -->
<meta name="author" content="DRR">
<meta http-equiv="keywords" name="keywords" content="banks, financial institutions, failed, failure, closing, deposits, depositors, banking services, assuming institution, acquiring institution, claims">
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="./fdic_failed_bank_list_files/responsive.css">
<link rel="stylesheet" type="text/css" href="./fdic_failed_bank_list_files/banklist.css">
</head>
<body>
<meta charset="UTF-8">
<title>FDIC Header Test</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="./fdic_failed_bank_list_files/bootstrap.css">
<link rel="stylesheet" type="text/css" href="./fdic_failed_bank_list_files/header_new.css">
<script src="./fdic_failed_bank_list_files/jquery.min.js"></script>
<script src="./fdic_failed_bank_list_files/respond.js"></script>
<script src="./fdic_failed_bank_list_files/bootstrap.min.js"></script>
<script type="text/javascript">
function findValue(li) {
if( li == null ) return alert("No match!");
// if coming from an AJAX call, let's use the Id as the value
if( !!li.extra ) var sValue = li.extra[0];
// otherwise, let's just display the value in the text box
else var sValue = li.selectValue;
$('#googlesearch').submit();
}
function findValue2(li) {
if( li == null ) return alert("No match!");
// if coming from an AJAX call, let's use the Id as the value
if( !!li.extra ) var sValue = li.extra[0];
// otherwise, let's just display the value in the text box
else var sValue = li.selectValue;
$('#googlesearch2').submit();
}
function selectItem(li) {
findValue(li);
}
function selectItem2(li) {
findValue2(li);
}
$().ready(function() {
function log(event, data, formatted) {
$("<li>").html( !data ? "No match!" : "Selected: " + formatted).appendTo("#result");
}
function formatItem(row) {
return row[0] + " (<strong>id: " + row[1] + "</strong>)";
}
function formatResult(row) {
return row[0].replace(/(<.+?>)/gi, '');
}
/*$("#newSearch").autocomplete("/searchjs.asp", {
width: 179,
autoFill: false,
//delay:10,
minChars:2,
cacheLength: 10,
onFindValue:findValue,
onItemSelect: selectItem,
selectFirst: false
});
$("#search2").autocomplete("/searchjs.asp", {
width: 160,
autoFill: false,
//delay:10,
minChars:2,
cacheLength: 10,
onFindValue:findValue2,
onItemSelect: selectItem2,
selectFirst: false
});*/
});
</script>
<!-- END CODE NEEDED TO MAKE THE SEARCH BOX WORK -->
<a href="https://www.fdic.gov/bank/individual/failed/banklist.html#after_header" class="responsive_header-skip_header" onclick="s_objectID="https://www.fdic.gov/bank/individual/failed/banklist.html#after_header_1";return this.s_oc?this.s_oc(e):true">Skip Header</a>
<header>
<div id="responsive_header">
<div id="responsive_header-right_side">
<ul id="responsive_header-links">
<!-- li id="responsive_header-itunes" title="Visit iTunes on FDIC"><a tabindex="1" href="/podcasts/index.html">iTunes on FDIC</a></li -->
<li id="responsive_header-twitter" title="Visit FDIC on Twitter"><a tabindex="1" href="https://www.fdic.gov/social.html?site=http://twitter.com/FDICgov" onclick="s_objectID="https://www.fdic.gov/social.html?site=http://twitter.com/FDICgov_1";return this.s_oc?this.s_oc(e):true">Visit FDIC on Twitter</a></li>
<li id="responsive_header-facebook" title="Visit FDIC on Facebook"><a tabindex="1" href="https://www.fdic.gov/social.html?site=http://www.facebook.com/FDICgov" onclick="s_objectID="https://www.fdic.gov/social.html?site=http://www.facebook.com/FDICgov_1";return this.s_oc?this.s_oc(e):true">Visit FDIC on Facebook</a></li>
<li id="responsive_header-fdicchannel" title="Visit FDIC on YouTube"><a tabindex="1" href="https://www.fdic.gov/social.html?site=http://www.youtube.com/user/FDICchannel" onclick="s_objectID="https://www.fdic.gov/social.html?site=http://www.youtube.com/user/FDICchannel_1";return this.s_oc?this.s_oc(e):true">Visit FDIC on YouTube</a></li>
<li id="responsive_header-rss" title="FDIC RSS Feed"><a tabindex="1" href="https://www.fdic.gov/rss.html" onclick="s_objectID="https://www.fdic.gov/rss.html_1";return this.s_oc?this.s_oc(e):true">FDIC RSS Feed</a></li>
<li id="responsive_header-subscribe" title="Subscribe to FDIC alerts"><a tabindex="1" href="http://service.govdelivery.com/service/multi_subscribe.html?code=USFDIC" onclick="s_objectID="http://service.govdelivery.com/service/multi_subscribe.html?code=USFDIC_1";return this.s_oc?this.s_oc(e):true">Subscribe to FDIC alerts</a></li>
</ul>
<div id="responsive_header-search"> <a href="https://www.fdic.gov/search/advanced.html" class="search" title="Advanced Search" onclick="s_objectID="https://www.fdic.gov/search/advanced.html_1";return this.s_oc?this.s_oc(e):true">Advanced Search</a>
<form id="googlesearch" action="https://search.fdic.gov/search" method="get" name="Search box for FDIC.gov">
<fieldset>
<div class="form">
<label for="newSearch">Search FDIC.gov</label>
<input tabindex="1" id="newSearch" name="q" class="field" type="text" style="outline: 0 none;" value="Search FDIC..." onblur="if(this.value == '') {this.value = 'Search FDIC...';}" onfocus="if(this.value == 'Search FDIC...') {this.value = '';}">
<label for="searchsubmit">Submit Search Request</label>
<input tabindex="1" id="searchsubmit" class="submit" title="Search Icon" type="submit" value="">
<input value="date:D:L:d1" name="sort" type="hidden">
<input value="xml_no_dtd" name="output" type="hidden">
<input value="UTF-8" name="ie" type="hidden">
<input value="UTF-8" name="oe" type="hidden">
<input value="wwwGOV" name="client" type="hidden">
<input value="wwwGOV" name="proxystylesheet" type="hidden">
<input value="default" name="site" type="hidden">
</div>
</fieldset>
</form>
</div>
</div>
<!-- close right side -->
<a id="responsive_header-fdic_logo" href="https://www.fdic.gov/" title="FDIC Homepage" onclick="s_objectID="https://www.fdic.gov/_1";return this.s_oc?this.s_oc(e):true">FDIC Homepage</a>
<h1>Federal Deposit<br>
Insurance Corporation</h1>
<h2>Each depositor insured to at least $250,000 per insured bank</h2>
<div class="clear"></div>
<div class="nav_container">
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="navbar-brand">Navigation</div>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav">
<li class="active first dropdown"><a href="https://www.fdic.gov/" onclick="s_objectID="https://www.fdic.gov/_2";return this.s_oc?this.s_oc(e):true">Home</a>
<button type="button" class="toggle-btn dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<span class="caret"></span>
<span class="sr-only"></span>
</button>
<ul class="dropdown-menu">
<li><a href="https://www.fdic.gov/about/policies" onclick="s_objectID="https://www.fdic.gov/about/policies_1";return this.s_oc?this.s_oc(e):true">Website Policies</a></li>
<li><a href="https://www.fdic.gov/about/contact/ask/" onclick="s_objectID="https://www.fdic.gov/about/contact/ask/_1";return this.s_oc?this.s_oc(e):true">Contact Us</a></li>
<li><a href="https://www.fdic.gov/quicklinks/spanish.html" onclick="s_objectID="https://www.fdic.gov/quicklinks/spanish.html_1";return this.s_oc?this.s_oc(e):true">En Español</a></li>
<li><a href="https://www.fdic.gov/regulations/laws/forms/" onclick="s_objectID="https://www.fdic.gov/regulations/laws/forms/_1";return this.s_oc?this.s_oc(e):true">Forms</a></li>
<li><a href="https://www.fdic.gov/about/diversity/FDICAccessibilityStatement.html" onclick="s_objectID="https://www.fdic.gov/about/diversity/FDICAccessibilityStatement.html_1";return this.s_oc?this.s_oc(e):true">Accessibility Statement</a></li>
<li class="last_item"><a href="https://www.fdic.gov/help/" onclick="s_objectID="https://www.fdic.gov/help/_1";return this.s_oc?this.s_oc(e):true">Help for First Time Users</a></li>
</ul>
</li>
<li class="dropdown">
<a href="https://www.fdic.gov/deposit/" onclick="s_objectID="https://www.fdic.gov/deposit/_1";return this.s_oc?this.s_oc(e):true">Deposit Insurance</a>
<button type="button" class="toggle-btn dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<span class="caret"></span>
<span class="sr-only"></span>
</button>
<ul class="dropdown-menu">
<li><a href="https://www.fdic.gov/edie/" onclick="s_objectID="https://www.fdic.gov/edie/_1";return this.s_oc?this.s_oc(e):true">EDIE Online Calculator </a><b class="caret-right"></b>
<div class="dropdown_flyout">
<span class="flyout_header">EDIE Online Calculator</span>
<p>Online tool that helps how the insurance rules and limits apply to a depositor's specific group of deposit accounts—what's insured and what portion (if any) exceeds coverage limits at that bank.
</p>
</div>
</li>
<li><a href="http://research.fdic.gov/bankfind" onclick="s_objectID="http://research.fdic.gov/bankfind_1";return this.s_oc?this.s_oc(e):true">BankFind </a><b class="caret-right"></b>
<div class="dropdown_flyout">
<span class="flyout_header">BankFind</span>
<p>Learn if your bank is insured, view locations, track history, and more.</p>
</div>
</li>
<li><a href="https://www.fdic.gov/deposit/deposits/" onclick="s_objectID="https://www.fdic.gov/deposit/deposits/_1";return this.s_oc?this.s_oc(e):true">Understanding Deposit Insurance </a><b class="caret-right"></b>
<ul>
<li><a href="https://www.fdic.gov/deposit/deposits/video.html" onclick="s_objectID="https://www.fdic.gov/deposit/deposits/video.html_1";return this.s_oc?this.s_oc(e):true">Deposit Insurance Videos</a></li>
<li><a href="https://www.fdic.gov/deposit/deposits/faq.html" onclick="s_objectID="https://www.fdic.gov/deposit/deposits/faq.html_1";return this.s_oc?this.s_oc(e):true">Deposit Insurance FAQs</a></li>
<li><a href="https://www.fdic.gov/deposit/deposits/brochures.html" onclick="s_objectID="https://www.fdic.gov/deposit/deposits/brochures.html_1";return this.s_oc?this.s_oc(e):true">Deposit Insurance Brochures</a></li>
<li><a href="https://www.fdic.gov/deposit/insurance/history.html" onclick="s_objectID="https://www.fdic.gov/deposit/insurance/history.html_1";return this.s_oc?this.s_oc(e):true">Deposit Insurance History</a></li>
</ul>
</li>
<li><a href="https://www.fdic.gov/deposit/covered/" onclick="s_objectID="https://www.fdic.gov/deposit/covered/_1";return this.s_oc?this.s_oc(e):true">What's Covered? </a><b class="caret-right"></b>
<ul>
<li><a href="https://www.fdic.gov/deposit/covered/categories.html" onclick="s_objectID="https://www.fdic.gov/deposit/covered/categories.html_1";return this.s_oc?this.s_oc(e):true">How are My Deposit Accounts Insured by the FDIC?</a></li>
<li><a href="https://www.fdic.gov/deposit/covered/trust.html" onclick="s_objectID="https://www.fdic.gov/deposit/covered/trust.html_1";return this.s_oc?this.s_oc(e):true">Revocable and Irrevocable Trust Accounts</a></li>
<li><a href="https://www.fdic.gov/deposit/covered/insured.html" onclick="s_objectID="https://www.fdic.gov/deposit/covered/insured.html_1";return this.s_oc?this.s_oc(e):true">Accounts Covered by the FDIC</a></li>
<li><a href="https://www.fdic.gov/deposit/covered/notinsured.html" onclick="s_objectID="https://www.fdic.gov/deposit/covered/notinsured.html_1";return this.s_oc?this.s_oc(e):true">What's Not Insured</a></li>
</ul>
</li>
<li><a href="https://www.fdic.gov/bank/individual/failed/" onclick="s_objectID="https://www.fdic.gov/bank/individual/failed/_1";return this.s_oc?this.s_oc(e):true">Bank Failures </a><b class="caret-right"></b>
<ul>
<li><a href="https://www.fdic.gov/bank/individual/failed/banklist.html" onclick="s_objectID="https://www.fdic.gov/bank/individual/failed/banklist.html_1";return this.s_oc?this.s_oc(e):true">Failed Bank List</a></li>
<li><a href="https://www.fdic.gov/bank/historical/bank/" onclick="s_objectID="https://www.fdic.gov/bank/historical/bank/_1";return this.s_oc?this.s_oc(e):true">Bank Failures in Brief</a></li>
<li><a href="http://www2.fdic.gov/hsob/SelectRpt.asp?EntryTyp=30" onclick="s_objectID="http://www2.fdic.gov/hsob/SelectRpt.asp?EntryTyp=30_1";return this.s_oc?this.s_oc(e):true">Historical Statistics on Banking - Failures and Assistance Transactions</a></li>
<li><a href="https://www5.fdic.gov/drrip/afi/index.asp" onclick="s_objectID="https://www5.fdic.gov/drrip/afi/index.asp_1";return this.s_oc?this.s_oc(e):true">Is My Account Fully Insured?</a></li>
</ul>
</li>
<li class="last_item" lang="es"><a href="https://www.fdic.gov/deposit/spanishlinks.html" onclick="s_objectID="https://www.fdic.gov/deposit/spanishlinks.html_1";return this.s_oc?this.s_oc(e):true">Recursos del seguro de depósito en español</a></li>
</ul>
</li>
<li class="dropdown">
<a href="https://www.fdic.gov/consumers/" onclick="s_objectID="https://www.fdic.gov/consumers/_1";return this.s_oc?this.s_oc(e):true">Consumer Protection</a>
<button type="button" class="toggle-btn dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<span class="caret"></span>
<span class="sr-only"></span>
</button>
<ul class="dropdown-menu">
<li><a href="https://www.fdic.gov/consumers/assistance/" onclick="s_objectID="https://www.fdic.gov/consumers/assistance/_1";return this.s_oc?this.s_oc(e):true">Consumer Assistance & Information </a><b class="caret-right"></b>
<ul>
<li><a href="https://www.fdic.gov/consumers/assistance/protection/index.html" onclick="s_objectID="https://www.fdic.gov/consumers/assistance/protection/index.html_1";return this.s_oc?this.s_oc(e):true">Consumer Protection Topics</a></li>
<li><a href="https://www.fdic.gov/consumers/assistance/resources.html" onclick="s_objectID="https://www.fdic.gov/consumers/assistance/resources.html_1";return this.s_oc?this.s_oc(e):true">Resources</a></li>
<li><a href="https://www.fdic.gov/consumers/assistance/filecomplaint.html" onclick="s_objectID="https://www.fdic.gov/consumers/assistance/filecomplaint.html_1";return this.s_oc?this.s_oc(e):true">Submit a Complaint</a></li>
<li lang="es"><a href="https://www.fdic.gov/consumers/assistancesp/index.html" onclick="s_objectID="https://www.fdic.gov/consumers/assistancesp/index.html_1";return this.s_oc?this.s_oc(e):true">Temas sobre la protección al consumidor</a></li>
</ul>
</li>
<li><a href="https://www.fdic.gov/consumers/community/" onclick="s_objectID="https://www.fdic.gov/consumers/community/_1";return this.s_oc?this.s_oc(e):true">Community Affairs </a><b class="caret-right"></b>
<ul>
<li><a href="https://www.fdic.gov/consumers/community/program.html" onclick="s_objectID="https://www.fdic.gov/consumers/community/program.html_1";return this.s_oc?this.s_oc(e):true">Community Affairs Program</a></li>
<li><a href="https://www.fdic.gov/consumers/community/AEI/" onclick="s_objectID="https://www.fdic.gov/consumers/community/AEI/_1";return this.s_oc?this.s_oc(e):true">Alliance for Economic Inclusion</a></li>
<li><a href="https://www.fdic.gov/householdsurvey/" onclick="s_objectID="https://www.fdic.gov/householdsurvey/_1";return this.s_oc?this.s_oc(e):true">FDIC National Survey of Unbanked and Underbanked Households</a></li>
</ul>
</li>
<li class="last_item"><a href="https://www.fdic.gov/consumers/education/" onclick="s_objectID="https://www.fdic.gov/consumers/education/_1";return this.s_oc?this.s_oc(e):true">Financial Education & Literacy </a><b class="caret-right"></b>
<ul>
<li><a href="https://www.fdic.gov/consumers/consumer/moneysmart/" onclick="s_objectID="https://www.fdic.gov/consumers/consumer/moneysmart/_1";return this.s_oc?this.s_oc(e):true">Money Smart - A Financial Education Program</a></li>
<li><a href="https://www.fdic.gov/education/torc/index.html" onclick="s_objectID="https://www.fdic.gov/education/torc/index.html_1";return this.s_oc?this.s_oc(e):true">Teacher Online Resource Center</a></li>
<li><a href="http://www.consumerfinance.gov/parents/" onclick="s_objectID="http://www.consumerfinance.gov/parents/_1";return this.s_oc?this.s_oc(e):true">Parents and Caregiver Resource Webpage</a></li>
<li><a href="https://www.fdic.gov/about/learn/learning/aboutfdic.html" onclick="s_objectID="https://www.fdic.gov/about/learn/learning/aboutfdic.html_1";return this.s_oc?this.s_oc(e):true">FDIC Learning Bank</a></li>
<li><a href="https://www.fdic.gov/consumers/consumer/news/index.html" onclick="s_objectID="https://www.fdic.gov/consumers/consumer/news/index.html_1";return this.s_oc?this.s_oc(e):true">FDIC Consumer News</a></li>
<li><a href="https://www.fdic.gov/consumers/assistance/protection/depaccounts/youthsavings/index.html" onclick="s_objectID="https://www.fdic.gov/consumers/assistance/protection/depaccounts/youthsavings/index.html_1";return this.s_oc?this.s_oc(e):true">FDIC Youth Savings Pilot Program</a></li>
<li lang="es"><a href="https://www.fdic.gov/consumers/education/index_esp.html" onclick="s_objectID="https://www.fdic.gov/consumers/education/index_esp.html_1";return this.s_oc?this.s_oc(e):true">Alfabetización de Educación Financiera</a></li>
</ul>
</li>
</ul>
</li>
<li class="dropdown">
<a href="https://www.fdic.gov/bank/" onclick="s_objectID="https://www.fdic.gov/bank/_1";return this.s_oc?this.s_oc(e):true">Industry Analysis</a>
<button type="button" class="toggle-btn dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<span class="caret"></span>
<span class="sr-only"></span>
</button>
<ul class="dropdown-menu">
<li><a href="https://www.fdic.gov/bank/statistical/" onclick="s_objectID="https://www.fdic.gov/bank/statistical/_1";return this.s_oc?this.s_oc(e):true">Bank Data & Statistics </a><b class="caret-right"></b>
<ul>
<li><a href="https://www5.fdic.gov/idasp/advSearchLanding.asp" onclick="s_objectID="https://www5.fdic.gov/idasp/advSearchLanding.asp_1";return this.s_oc?this.s_oc(e):true">Institution Directory</a></li>
<li><a href="https://cdr.ffiec.gov/public/" onclick="s_objectID="https://cdr.ffiec.gov/public/_1";return this.s_oc?this.s_oc(e):true">Central Data Repository (CDR)</a></li>
<li><a href="http://www.ffiec.gov/UBPR.htm" onclick="s_objectID="http://www.ffiec.gov/UBPR.htm_1";return this.s_oc?this.s_oc(e):true">Uniform Bank Performance Reports (UBPR)</a></li>
<li><a href="https://www5.fdic.gov/sod/sodInstBranch.asp?barItem=1" onclick="s_objectID="https://www5.fdic.gov/sod/sodInstBranch.asp?barItem=1_1";return this.s_oc?this.s_oc(e):true">Summary of Deposits</a></li>
<li><a href="https://www5.fdic.gov/sod/sodMarketBank.asp?barItem=2" onclick="s_objectID="https://www5.fdic.gov/sod/sodMarketBank.asp?barItem=2_1";return this.s_oc?this.s_oc(e):true">Deposit Market Share Report</a></li>
<li><a href="https://www.fdic.gov/bank/analytical/stateprofile/" onclick="s_objectID="https://www.fdic.gov/bank/analytical/stateprofile/_1";return this.s_oc?this.s_oc(e):true">FDIC State Profiles</a></li>
<li><a href="https://www.fdic.gov/bank/statistical/stats/" onclick="s_objectID="https://www.fdic.gov/bank/statistical/stats/_1";return this.s_oc?this.s_oc(e):true">Statistics at a Glance</a></li>
</ul>
</li>
<li><a href="https://www.fdic.gov/bank/analytical/" onclick="s_objectID="https://www.fdic.gov/bank/analytical/_1";return this.s_oc?this.s_oc(e):true">Research & Analysis </a><b class="caret-right"></b>
<ul>
<li><a href="https://www.fdic.gov/bank/analytical/qbp/" onclick="s_objectID="https://www.fdic.gov/bank/analytical/qbp/_1";return this.s_oc?this.s_oc(e):true">FDIC Quarterly Banking Profile</a></li>
<li><a href="https://www.fdic.gov/bank/analytical/cfr/" onclick="s_objectID="https://www.fdic.gov/bank/analytical/cfr/_1";return this.s_oc?this.s_oc(e):true">Center for Financial Research</a></li>
<li><a href="https://www.fdic.gov/regulations/resources/cbi/study.html" onclick="s_objectID="https://www.fdic.gov/regulations/resources/cbi/study.html_1";return this.s_oc?this.s_oc(e):true">Community Banking Study</a></li>
</ul>
</li>
<li><a href="https://www.fdic.gov/bank/individual/failed/" onclick="s_objectID="https://www.fdic.gov/bank/individual/failed/_2";return this.s_oc?this.s_oc(e):true">Failed Banks </a><b class="caret-right"></b>
<ul>
<li><a href="https://www.fdic.gov/bank/individual/failed/banklist.html" onclick="s_objectID="https://www.fdic.gov/bank/individual/failed/banklist.html_2";return this.s_oc?this.s_oc(e):true">Failed Bank List</a></li>
<li><a href="https://www.fdic.gov/bank/historical/bank/" onclick="s_objectID="https://www.fdic.gov/bank/historical/bank/_2";return this.s_oc?this.s_oc(e):true">Bank Failures in Brief</a></li>
<li><a href="https://www5.fdic.gov/hsob/SelectRpt.asp?EntryTyp=30" onclick="s_objectID="https://www5.fdic.gov/hsob/SelectRpt.asp?EntryTyp=30_1";return this.s_oc?this.s_oc(e):true">Historical Statistics on Banking - Failures and Assistance Transactions</a></li>
<li><a href="https://www5.fdic.gov/drrip/afi/index.asp" onclick="s_objectID="https://www5.fdic.gov/drrip/afi/index.asp_2";return this.s_oc?this.s_oc(e):true">Is My Account Fully Insured?</a></li>
</ul>
</li>
<li><a href="https://www.fdic.gov/deposit/insurance/" onclick="s_objectID="https://www.fdic.gov/deposit/insurance/_1";return this.s_oc?this.s_oc(e):true">The Deposit Insurance Fund </a><b class="caret-right"></b>
<ul>
<li><a href="https://www.fdic.gov/deposit/insurance/calculator.html" onclick="s_objectID="https://www.fdic.gov/deposit/insurance/calculator.html_1";return this.s_oc?this.s_oc(e):true">Current Assessment Calculators</a></li>
</ul>
</li>
<li><a href="https://www.fdic.gov/deposit/deposits/international/" onclick="s_objectID="https://www.fdic.gov/deposit/deposits/international/_1";return this.s_oc?this.s_oc(e):true">International Deposit Insurance </a><b class="caret-right"></b>
<ul>
<li><a href="http://www.asba-supervision.org/" onclick="s_objectID="http://www.asba-supervision.org/_1";return this.s_oc?this.s_oc(e):true">Association of Supervisors of Banks of the Americas</a></li>
<li><a href="http://www.bis.org/bcbs/" onclick="s_objectID="http://www.bis.org/bcbs/_1";return this.s_oc?this.s_oc(e):true">Basel Committee On Banking Supervision (www.bis.org)</a></li>
<li><a href="http://www.iadi.org/" onclick="s_objectID="http://www.iadi.org/_1";return this.s_oc?this.s_oc(e):true">International Association of Deposit Insurers (www.iadi.org)</a></li>
</ul>
</li>
<li class="last_item"><a href="https://www.fdic.gov/bank/analytical/cfr/" onclick="s_objectID="https://www.fdic.gov/bank/analytical/cfr/_2";return this.s_oc?this.s_oc(e):true">Center for Financial Research </a><b class="caret-right"></b>
<ul>
<li class="last_item"><a href="https://www.fdic.gov/bank/analytical/cfr/2015/wp_2015/workingpapers_2015.html" onclick="s_objectID="https://www.fdic.gov/bank/analytical/cfr/2015/wp_2015/workingpapers_2015.html_1";return this.s_oc?this.s_oc(e):true">Working Papers</a></li>
<li class="last_item"><a href="https://www.fdic.gov/bank/analytical/cfr/research.html" onclick="s_objectID="https://www.fdic.gov/bank/analytical/cfr/research.html_1";return this.s_oc?this.s_oc(e):true">Research Programs</a></li>
<li class="last_item"><a href="https://www.fdic.gov/bank/analytical/cfr/conf_sym.html" onclick="s_objectID="https://www.fdic.gov/bank/analytical/cfr/conf_sym.html_1";return this.s_oc?this.s_oc(e):true">Conferences & Symposia</a></li>
</ul>
</li>
</ul>
</li>
<li class="dropdown">
<a href="https://www.fdic.gov/regulations/" onclick="s_objectID="https://www.fdic.gov/regulations/_1";return this.s_oc?this.s_oc(e):true">Regulations & Examinations</a>
<button type="button" class="toggle-btn dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<span class="caret"></span>
<span class="sr-only"></span>
</button>
<ul class="dropdown-menu">
<li><a href="https://www.fdic.gov/regulations/examinations/" onclick="s_objectID="https://www.fdic.gov/regulations/examinations/_1";return this.s_oc?this.s_oc(e):true">Bank Examinations </a><b class="caret-right"></b>
<ul>
<li><a href="https://www.fdic.gov/regulations/examinations/supervisory/insights/" onclick="s_objectID="https://www.fdic.gov/regulations/examinations/supervisory/insights/_1";return this.s_oc?this.s_oc(e):true">Supervisory Insights</a></li>
<li><a href="https://www.fdic.gov/bank/individual/enforcement/" onclick="s_objectID="https://www.fdic.gov/bank/individual/enforcement/_1";return this.s_oc?this.s_oc(e):true">FDIC Enforcement Decisions & Orders</a></li>
<li><a href="https://www.fdic.gov/regulations/safety/manual/" onclick="s_objectID="https://www.fdic.gov/regulations/safety/manual/_1";return this.s_oc?this.s_oc(e):true">Risk Management Manual of Examination Policies</a></li>
<li><a href="http://www.ffiec.gov/bsa_aml_infobase/default.htm" onclick="s_objectID="http://www.ffiec.gov/bsa_aml_infobase/default.htm_1";return this.s_oc?this.s_oc(e):true">Bank Secrecy Act/Anti-Money Laundering Manual</a></li>
<li><a href="https://www.fdic.gov/regulations/trust/" onclick="s_objectID="https://www.fdic.gov/regulations/trust/_1";return this.s_oc?this.s_oc(e):true">Trust Examination Overview</a></li>
<li><a href="https://www.fdic.gov/regulations/information/information/FFIEC.html" onclick="s_objectID="https://www.fdic.gov/regulations/information/information/FFIEC.html_1";return this.s_oc?this.s_oc(e):true">FFIEC Information Technology Examination Handbook</a></li>
<li><a href="https://www.fdic.gov/regulations/community/community/" onclick="s_objectID="https://www.fdic.gov/regulations/community/community/_1";return this.s_oc?this.s_oc(e):true">CRA Statute & Tools</a></li>
<li><a href="https://www.fdic.gov/regulations/compliance/manual/index.html" onclick="s_objectID="https://www.fdic.gov/regulations/compliance/manual/index.html_1";return this.s_oc?this.s_oc(e):true">Compliance Examination Manual</a></li>
</ul>
</li>
<li><a href="https://www.fdic.gov/regulations/laws/" onclick="s_objectID="https://www.fdic.gov/regulations/laws/_1";return this.s_oc?this.s_oc(e):true">Laws & Regulations </a><b class="caret-right"></b>
<ul>
<li><a href="https://www.fdic.gov/regulations/laws/rules/" onclick="s_objectID="https://www.fdic.gov/regulations/laws/rules/_1";return this.s_oc?this.s_oc(e):true">FDIC Law, Regulations & Related Acts</a></li>
<li><a href="https://www.fdic.gov/news/news/financial/current.html" onclick="s_objectID="https://www.fdic.gov/news/news/financial/current.html_1";return this.s_oc?this.s_oc(e):true">Financial Institution Letters</a></li>
<li><a href="https://www.fdic.gov/regulations/laws/federal/" onclick="s_objectID="https://www.fdic.gov/regulations/laws/federal/_1";return this.s_oc?this.s_oc(e):true">FDIC Federal Register Citations</a></li>
<li><a href="https://www.fdic.gov/regulations/reform/" onclick="s_objectID="https://www.fdic.gov/regulations/reform/_1";return this.s_oc?this.s_oc(e):true">FDIC and Financial Regulatory Reform</a></li>
</ul>
</li>
<li><a href="https://www.fdic.gov/regulations/resources/" onclick="s_objectID="https://www.fdic.gov/regulations/resources/_1";return this.s_oc?this.s_oc(e):true">Resources for Bank Officers & Directors </a><b class="caret-right"></b>
<ul>
<li><a href="https://www.fdic.gov/regulations/resources/director/" onclick="s_objectID="https://www.fdic.gov/regulations/resources/director/_1";return this.s_oc?this.s_oc(e):true">Directors' Resource Center</a></li>
<li><a href="https://www.fdic.gov/regulations/resources/cbi/index.html" onclick="s_objectID="https://www.fdic.gov/regulations/resources/cbi/index.html_1";return this.s_oc?this.s_oc(e):true">Community Banking Initiative</a></li>
<li><a href="https://www.fdic.gov/regulations/resources/rates/" onclick="s_objectID="https://www.fdic.gov/regulations/resources/rates/_1";return this.s_oc?this.s_oc(e):true">Weekly National Rates and Rate Caps</a></li>
<li><a href="https://www.fdic.gov/regulations/resources/signage/" onclick="s_objectID="https://www.fdic.gov/regulations/resources/signage/_1";return this.s_oc?this.s_oc(e):true">Ordering & Using FDIC Signs & Logos</a></li>
</ul>
</li>
<li><a href="https://www.fdic.gov/regulations/cra/" onclick="s_objectID="https://www.fdic.gov/regulations/cra/_1";return this.s_oc?this.s_oc(e):true">Community Reinvestment Act (CRA) </a><b class="caret-right"></b>
<ul>
<li><a href="https://www.fdic.gov/regulations/community/exam/index.html" onclick="s_objectID="https://www.fdic.gov/regulations/community/exam/index.html_1";return this.s_oc?this.s_oc(e):true">Upcoming CRA Examination Schedule</a></li>
<li><a href="https://www.fdic.gov/regulations/community/monthly/index.html" onclick="s_objectID="https://www.fdic.gov/regulations/community/monthly/index.html_1";return this.s_oc?this.s_oc(e):true">Monthly List of Banks Examined for CRA</a></li>
<li><a href="http://www2.fdic.gov/crapes/" onclick="s_objectID="http://www2.fdic.gov/crapes/_1";return this.s_oc?this.s_oc(e):true">CRA Ratings & Performance Evaluations</a></li>
</ul>
</li>
<li><a href="https://www2.fdicconnect.gov/" onclick="s_objectID="https://www2.fdicconnect.gov/_1";return this.s_oc?this.s_oc(e):true">FDICconnect </a><b class="caret-right"></b>
<div class="dropdown_flyout">
<span class="flyout_header">FDICconnect</span>
<p>The secure Internet channel for FDIC-insured institutions to conduct business and exchange information with the FDIC.</p>
</div>
</li>
<li><a href="https://www.fdic.gov/regulations/required/" onclick="s_objectID="https://www.fdic.gov/regulations/required/_1";return this.s_oc?this.s_oc(e):true">Bank Financial Reports</a>
</li>
<li class="last_item"><a href="https://www.fdic.gov/regulations/examiner/" onclick="s_objectID="https://www.fdic.gov/regulations/examiner/_1";return this.s_oc?this.s_oc(e):true">Examiner Training Programs </a><b class="caret-right"></b>
<ul>
<li class="last_item"><a href="https://www.fdic.gov/regulations/examiner/" onclick="s_objectID="https://www.fdic.gov/regulations/examiner/_2";return this.s_oc?this.s_oc(e):true">Risk Management Training Program</a></li>
<li class="last_item"><a href="https://www.fdic.gov/regulations/examiner/" onclick="s_objectID="https://www.fdic.gov/regulations/examiner/_3";return this.s_oc?this.s_oc(e):true">Compliance Training Program</a></li>
<li class="last_item"><a href="https://www.fdic.gov/regulations/examiner/" onclick="s_objectID="https://www.fdic.gov/regulations/examiner/_4";return this.s_oc?this.s_oc(e):true">Continuing IT Training Program</a></li>
</ul>
</li>
</ul>
</li>
<li class="dropdown institution">
<a href="https://www.fdic.gov/buying/" onclick="s_objectID="https://www.fdic.gov/buying/_1";return this.s_oc?this.s_oc(e):true">Institution & Asset Sales</a>
<button type="button" class="toggle-btn dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<span class="caret"></span>
<span class="sr-only"></span>
</button>
<ul class="dropdown-menu">
<li><a href="https://www.fdic.gov/buying/FranchiseMarketing/index.html" onclick="s_objectID="https://www.fdic.gov/buying/FranchiseMarketing/index.html_1";return this.s_oc?this.s_oc(e):true">Failing Bank Acquisitions</a></li>
<li><a href="https://www.fdic.gov/buying/owned/index.html" onclick="s_objectID="https://www.fdic.gov/buying/owned/index.html_1";return this.s_oc?this.s_oc(e):true">Real Estate and Property Marketplace </a><b class="caret-right"></b>
<ul>
<li><a href="https://www.fdic.gov/trusted.html?site=http://www.fdicrealestatelistings.com" onclick="s_objectID="https://www.fdic.gov/trusted.html?site=http://www.fdicrealestatelistings.com_1";return this.s_oc?this.s_oc(e):true">Search for Real Estate</a></li>
<li><a href="https://www.fdic.gov/buying/owned/real/real_est_sales_faq.html" onclick="s_objectID="https://www.fdic.gov/buying/owned/real/real_est_sales_faq.html_1";return this.s_oc?this.s_oc(e):true">Real Estate Sales Frequently Asked Questions</a></li>
<li><a href="https://www.fdic.gov/buying/calendar/event-calendar.html" onclick="s_objectID="https://www.fdic.gov/buying/calendar/event-calendar.html_1";return this.s_oc?this.s_oc(e):true">Asset Sales Event Calendar</a></li>
<li><a href="https://www.fdic.gov/buying/owned/bargain/" onclick="s_objectID="https://www.fdic.gov/buying/owned/bargain/_1";return this.s_oc?this.s_oc(e):true">Bargain Properties</a></li>
</ul>
</li>
<li><a href="https://www.fdic.gov/buying/loan/index.html" onclick="s_objectID="https://www.fdic.gov/buying/loan/index.html_1";return this.s_oc?this.s_oc(e):true">Loan Sales </a><b class="caret-right"></b>
<ul>
<li><a href="https://www.fdic.gov/buying/loan/announcements.html" onclick="s_objectID="https://www.fdic.gov/buying/loan/announcements.html_1";return this.s_oc?this.s_oc(e):true">Loan Sales Announcements</a></li>
<li><a href="https://www.fdic.gov/buying/loan/loansales_faq.html" onclick="s_objectID="https://www.fdic.gov/buying/loan/loansales_faq.html_1";return this.s_oc?this.s_oc(e):true">Loan Sales FAQs</a></li>
</ul>
</li>
<li><a href="https://www.fdic.gov/buying/financial/index.html" onclick="s_objectID="https://www.fdic.gov/buying/financial/index.html_1";return this.s_oc?this.s_oc(e):true">Financial Asset Sales </a><b class="caret-right"></b>
<ul><!--
<li><a href="/buying/financial/investormatchprogram.html">Investor Match Program</a></li>-->
<li><a href="https://www.fdic.gov/buying/financial/qualification_process.html" onclick="s_objectID="https://www.fdic.gov/buying/financial/qualification_process.html_1";return this.s_oc?this.s_oc(e):true">Qualification Process</a></li>
<li><a href="https://www.fdic.gov/buying/financial/smallerpools.html" onclick="s_objectID="https://www.fdic.gov/buying/financial/smallerpools.html_1";return this.s_oc?this.s_oc(e):true">Smaller Dollar Structured Transactions</a></li>
<li><a href="https://www.fdic.gov/buying/financial/factsheet.html" onclick="s_objectID="https://www.fdic.gov/buying/financial/factsheet.html_1";return this.s_oc?this.s_oc(e):true">FDIC Structured Transaction Fact Sheet for Investors</a></li>
</ul>
</li>
<li><a href="https://www.fdic.gov/buying/servicing/index.html" onclick="s_objectID="https://www.fdic.gov/buying/servicing/index.html_1";return this.s_oc?this.s_oc(e):true">Servicing Sales Announcements</a></li>
<li><a href="https://www.fdic.gov/buying/otherasset/failedbank/index.html" onclick="s_objectID="https://www.fdic.gov/buying/otherasset/failedbank/index.html_1";return this.s_oc?this.s_oc(e):true">Other Assets from Failed Banks</a><b class="caret-right"></b>
<div class="dropdown_flyout">
<span class="flyout_header">Other Assets from Failed Banks</span>
<p>The inventory of other assets for sale -- including office furniture, fixtures, and equipment.</p>
</div>
</li>
<li class="last_item"><a href="https://www.fdic.gov/buying/historical/index.html" onclick="s_objectID="https://www.fdic.gov/buying/historical/index.html_1";return this.s_oc?this.s_oc(e):true">Historical Sales </a><b class="caret-right"></b>
<ul>
<li><a href="https://sales.fdic.gov/closedsales/loanSales.asp" onclick="s_objectID="https://sales.fdic.gov/closedsales/loanSales.asp_1";return this.s_oc?this.s_oc(e):true">Closed Loan Sales</a></li>
<li><a href="https://sales.fdic.gov/closedsales/oreSales.asp" onclick="s_objectID="https://sales.fdic.gov/closedsales/oreSales.asp_1";return this.s_oc?this.s_oc(e):true">Closed Real Estate Sales</a></li>
<li><a href="https://www.fdic.gov/buying/historical/loans/index.html" onclick="s_objectID="https://www.fdic.gov/buying/historical/loans/index.html_1";return this.s_oc?this.s_oc(e):true">Sales Summary 1990-2015</a></li>
<li><a href="https://www.fdic.gov/buying/historical/structured/index.html" onclick="s_objectID="https://www.fdic.gov/buying/historical/structured/index.html_1";return this.s_oc?this.s_oc(e):true">Structured Transaction Sales</a></li>
<li><a href="https://www.fdic.gov/buying/historical/mortgage_servicing_assets.html" onclick="s_objectID="https://www.fdic.gov/buying/historical/mortgage_servicing_assets.html_1";return this.s_oc?this.s_oc(e):true">Mortgage Servicing Asset Sales</a></li>
<li><a href="https://www.fdic.gov/buying/historical/structured/oil_gas_sales/index.html" onclick="s_objectID="https://www.fdic.gov/buying/historical/structured/oil_gas_sales/index.html_1";return this.s_oc?this.s_oc(e):true">Sales of Oil and Gas Related Assets</a></li>
</ul>
</li>
</ul>
</li>
<li class="dropdown">
<a href="https://www.fdic.gov/news/" onclick="s_objectID="https://www.fdic.gov/news/_1";return this.s_oc?this.s_oc(e):true">News & Events</a>
<button type="button" class="toggle-btn dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<span class="caret"></span>
<span class="sr-only"></span>
</button>
<ul class="dropdown-menu move-left">
<li><a href="https://www.fdic.gov/news/news/press/current.html" onclick="s_objectID="https://www.fdic.gov/news/news/press/current.html_1";return this.s_oc?this.s_oc(e):true">Press Releases</a></li>
<li><a href="https://www.fdic.gov/news/news/financial/current.html" onclick="s_objectID="https://www.fdic.gov/news/news/financial/current.html_2";return this.s_oc?this.s_oc(e):true">Financial Institution Letters </a></li>
<li><a href="https://www.fdic.gov/news/conferences/" onclick="s_objectID="https://www.fdic.gov/news/conferences/_1";return this.s_oc?this.s_oc(e):true">Conferences & Events</a></li>
<li><a href="https://www.fdic.gov/news/news/speeches/" onclick="s_objectID="https://www.fdic.gov/news/news/speeches/_1";return this.s_oc?this.s_oc(e):true">Speeches & Testimony</a></li>
<li><a href="https://www.fdic.gov/news/letters/" onclick="s_objectID="https://www.fdic.gov/news/letters/_1";return this.s_oc?this.s_oc(e):true">Letters to the Editor/Opinion Editorials</a></li>
</ul>
</li>
<li class="dropdown">
<a href="https://www.fdic.gov/about/" onclick="s_objectID="https://www.fdic.gov/about/_1";return this.s_oc?this.s_oc(e):true">About FDIC</a>
<button type="button" class="toggle-btn dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<span class="caret"></span>
<span class="sr-only"></span>
</button>
<ul class="dropdown-menu pull-right">
<li><a href="https://www.fdic.gov/about/strategic/strategic/mission.html" onclick="s_objectID="https://www.fdic.gov/about/strategic/strategic/mission.html_1";return this.s_oc?this.s_oc(e):true">FDIC Mission, Vision, and Values</a></li>
<li><a href="https://www.fdic.gov/about/history/" onclick="s_objectID="https://www.fdic.gov/about/history/_1";return this.s_oc?this.s_oc(e):true">History of the FDIC</a></li>
<li><a href="https://www.fdic.gov/about/jobs/" onclick="s_objectID="https://www.fdic.gov/about/jobs/_1";return this.s_oc?this.s_oc(e):true">Careers at FDIC</a></li>
<li><a href="https://www.fdic.gov/about/contact/directory/" onclick="s_objectID="https://www.fdic.gov/about/contact/directory/_1";return this.s_oc?this.s_oc(e):true">Organization Directory and Office Contacts</a></li>
<li><a href="https://www.fdic.gov/regulations/resources/ombudsman/" onclick="s_objectID="https://www.fdic.gov/regulations/resources/ombudsman/_1";return this.s_oc?this.s_oc(e):true">Office of the Ombudsman</a></li>
<li><a href="https://www.fdic.gov/buying/goods/" onclick="s_objectID="https://www.fdic.gov/buying/goods/_1";return this.s_oc?this.s_oc(e):true">Doing Business with the FDIC</a></li>
<li class="last_item"><a href="https://www.fdic.gov/about/index.html#5" onclick="s_objectID="https://www.fdic.gov/about/index.html#5_1";return this.s_oc?this.s_oc(e):true">Plans & Reports</a></li>
<li><a href="https://www.fdic.gov/about/diversity/" onclick="s_objectID="https://www.fdic.gov/about/diversity/_1";return this.s_oc?this.s_oc(e):true">Diversity & Inclusion</a></li>
</ul>
</li>
</ul>
</div>
</div></nav>
</div>
</div>
</header>
<a id="after_header"></a>
<div id="breadcrumbs">
<a href="https://www.fdic.gov/" onclick="s_objectID="https://www.fdic.gov/_3";return this.s_oc?this.s_oc(e):true">Home</a> >
<a href="https://www.fdic.gov/bank/" onclick="s_objectID="https://www.fdic.gov/bank/_2";return this.s_oc?this.s_oc(e):true">Industry Analysis</a> >
<a href="https://www.fdic.gov/bank/individual/failed/" onclick="s_objectID="https://www.fdic.gov/bank/individual/failed/_3";return this.s_oc?this.s_oc(e):true">Failed Banks</a> >
Failed Bank List
</div>
<div id="content" class="failed_bank_list">
<h1 class="page_title">Failed Bank List</h1>
<p>The FDIC is often appointed as receiver for failed banks. This page contains useful information for the customers and vendors of these banks. This includes information on the acquiring bank (if applicable), how your accounts and loans are affected, and how vendors can file claims against the receivership. <a href="https://www5.fdic.gov/drrip/cs/index.asp" onclick="s_objectID="https://www5.fdic.gov/drrip/cs/index.asp_1";return this.s_oc?this.s_oc(e):true">Failed Financial Institution Contact Search</a> displays point of contact information related to failed banks.</p>
<p>This list includes banks which have failed since October 1,2000. To search for banks that failed prior to those on this page, visit this link: <a href="https://www5.fdic.gov/hsob/SelectRpt.asp?EntryTyp=30&Header=1" onclick="s_objectID="https://www5.fdic.gov/hsob/SelectRpt.asp?EntryTyp=30&Header=1_1";return this.s_oc?this.s_oc(e):true">Failures and Assistance Transactions</a></p>
<div class="table_wrapper">
<p class="small_screen_warning">Due to the small screen size some information is no longer visible.<br>Full information available when viewed on a larger screen.</p>
<p><em>Click arrows next to headers to sort in Ascending or Descending order.</em> <a class="data" href="https://www.fdic.gov/bank/individual/failed/banklist.csv" onclick="s_objectID="https://www.fdic.gov/bank/individual/failed/banklist.csv_1";return this.s_oc?this.s_oc(e):true">Download Data</a></p>
<div class="dataTables_wrapper" id="table_wrapper"><div class="top"><div id="table_filter" class="dataTables_filter">Search: <input type="text"></div><div id="table_length" class="dataTables_length">Show <select size="1" name="table_length"><option value="10">10</option><option value="25" selected="selected">25</option><option value="50">50</option><option value="100">100</option><option value="-1">All</option></select> entries</div></div><div class="clear"></div><div class="title"><div class="dataTables_info" id="table_info">Showing 1 to 547 of 547 entries</div><div class="dataTables_paginate paging_full_numbers" id="table_paginate"><span class="first paginate_button" id="table_first">First</span><span class="previous paginate_button" id="table_previous">Previous</span><span></span><span class="next paginate_button" id="table_next">Next</span><span class="last paginate_button" id="table_last">Last</span></div></div><div class="clear"></div><table id="table" class="tablesorter">
<colgroup><col class="col1">
<col class="col2">
<col class="col3">
<col class="col4">
<col class="col5">
<col class="col6">
</colgroup><thead>
<tr>
<th id="institution" scope="col" class="bank sorting">Bank Name</th>
<th id="city" scope="col" class="city sorting">City</th>
<th id="state" scope="col" class="st sorting">ST</th>
<th id="cert" scope="col" class="cert sorting">CERT</th>
<th id="ai" scope="col" class="ai sorting">Acquiring Institution</th>
<th id="closing" scope="col" class="closing sorting">Closing Date</th>
<th id="updated" scope="col" class="updated sorting">Updated Date</th>
</tr>
</thead>
<tbody><tr class="odd">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/alliedbank.html" onclick="s_objectID="https://www.fdic.gov/bank/individual/failed/alliedbank.html_1";return this.s_oc?this.s_oc(e):true">Allied Bank</a></td>
<td class="city">Mulberry</td>
<td class="state">AR</td>
<td class="cert">91</td>
<td class="ai">Today's Bank</td>
<td class="closing">September 23, 2016</td>
<td class="updated">November 17, 2016</td>
</tr><tr class="even">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/woodburybank.html" onclick="s_objectID="https://www.fdic.gov/bank/individual/failed/woodburybank.html_1";return this.s_oc?this.s_oc(e):true">The Woodbury Banking Company</a></td>
<td class="city">Woodbury</td>
<td class="state">GA</td>
<td class="cert">11297</td>
<td class="ai">United Bank</td>
<td class="closing">August 19, 2016</td>
<td class="updated">November 17, 2016</td>
</tr><tr class="odd">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/firstcornerstone.html" onclick="s_objectID="https://www.fdic.gov/bank/individual/failed/firstcornerstone.html_1";return this.s_oc?this.s_oc(e):true">First CornerStone Bank</a></td>
<td class="city">King of Prussia</td>
<td class="state">PA</td>
<td class="cert">35312 </td>
<td class="ai">First-Citizens Bank & Trust Company</td>
<td class="closing">May 6, 2016</td>
<td class="updated">September 6, 2016</td>
</tr><tr class="even">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/trustco.html" onclick="s_objectID="https://www.fdic.gov/bank/individual/failed/trustco.html_1";return this.s_oc?this.s_oc(e):true">Trust Company Bank</a></td>
<td class="city">Memphis</td>
<td class="state">TN</td>
<td class="cert">9956</td>
<td class="ai">The Bank of Fayette County</td>
<td class="closing">April 29, 2016</td>
<td class="updated">September 6, 2016</td>
</tr><tr class="odd">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/nmsbank.html" onclick="s_objectID="https://www.fdic.gov/bank/individual/failed/nmsbank.html_1";return this.s_oc?this.s_oc(e):true">North Milwaukee State Bank</a></td>
<td class="city">Milwaukee</td>
<td class="state">WI</td>
<td class="cert">20364</td>
<td class="ai">First-Citizens Bank & Trust Company</td>
<td class="closing">March 11, 2016</td>
<td class="updated">June 16, 2016</td>
</tr><tr class="even">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/hometownnatl.html" onclick="s_objectID="https://www.fdic.gov/bank/individual/failed/hometownnatl.html_1";return this.s_oc?this.s_oc(e):true">Hometown National Bank</a></td>
<td class="city">Longview</td>
<td class="state">WA</td>
<td class="cert">35156</td>
<td class="ai">Twin City Bank</td>
<td class="closing">October 2, 2015</td>
<td class="updated">April 13, 2016</td>
</tr><tr class="odd">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/bankofgeorgia.html" onclick="s_objectID="https://www.fdic.gov/bank/individual/failed/bankofgeorgia.html_1";return this.s_oc?this.s_oc(e):true">The Bank of Georgia</a></td>
<td class="city">Peachtree City</td>
<td class="state">GA</td>
<td class="cert">35259</td>
<td class="ai">Fidelity Bank</td>
<td class="closing">October 2, 2015</td>
<td class="updated">October 24, 2016</td>
</tr><tr class="even">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/premier-co.html" onclick="s_objectID="https://www.fdic.gov/bank/individual/failed/premier-co.html_1";return this.s_oc?this.s_oc(e):true">Premier Bank</a></td>
<td class="city">Denver</td>
<td class="state">CO</td>
<td class="cert">34112</td>
<td class="ai">United Fidelity Bank, fsb</td>
<td class="closing">July 10, 2015</td>
<td class="updated">August 17, 2016</td>
</tr><tr class="odd">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/edgebrook.html" onclick="s_objectID="https://www.fdic.gov/bank/individual/failed/edgebrook.html_1";return this.s_oc?this.s_oc(e):true">Edgebrook Bank</a></td>
<td class="city">Chicago</td>
<td class="state">IL</td>
<td class="cert">57772</td>
<td class="ai">Republic Bank of Chicago</td>
<td class="closing">May 8, 2015</td>
<td class="updated">July 12, 2016</td>
</tr><tr class="even">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/doral.html" onclick="s_objectID="https://www.fdic.gov/bank/individual/failed/doral.html_1";return this.s_oc?this.s_oc(e):true">Doral Bank</a><br>
<a href="https://www.fdic.gov/bank/individual/failed/doral_spanish.html" onclick="s_objectID="https://www.fdic.gov/bank/individual/failed/doral_spanish.html_1";return this.s_oc?this.s_oc(e):true">En Espanol</a></td>
<td class="city">San Juan</td>
<td class="state">PR</td>
<td class="cert">32102</td>
<td class="ai">Banco Popular de Puerto Rico</td>
<td class="closing">February 27, 2015</td>
<td class="updated">May 13, 2015</td>
</tr><tr class="odd">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/capitolcity.html" onclick="s_objectID="https://www.fdic.gov/bank/individual/failed/capitolcity.html_1";return this.s_oc?this.s_oc(e):true">Capitol City Bank & Trust Company</a></td>
<td class="city">Atlanta</td>
<td class="state">GA</td>
<td class="cert"> 33938 </td>
<td class="ai">First-Citizens Bank & Trust Company</td>
<td class="closing">February 13, 2015</td>
<td class="updated">April 21, 2015</td>
</tr><tr class="even">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/highlandcomm.html" onclick="s_objectID="https://www.fdic.gov/bank/individual/failed/highlandcomm.html_1";return this.s_oc?this.s_oc(e):true">Highland Community Bank</a></td>
<td class="city">Chicago</td>
<td class="state">IL</td>
<td class="cert"> 20290 </td>
<td class="ai">United Fidelity Bank, fsb</td>
<td class="closing">January 23, 2015</td>
<td class="updated">April 21, 2015</td>
</tr><tr class="odd">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/fnbcrestview.html" onclick="s_objectID="https://www.fdic.gov/bank/individual/failed/fnbcrestview.html_1";return this.s_oc?this.s_oc(e):true">First National Bank of Crestview </a></td>
<td class="city">Crestview</td>
<td class="state">FL</td>
<td class="cert"> 17557 </td>
<td class="ai">First NBC Bank</td>
<td class="closing">January 16, 2015</td>
<td class="updated">January 15, 2016</td>
</tr><tr class="even">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/northernstar.html" onclick="s_objectID="https://www.fdic.gov/bank/individual/failed/northernstar.html_1";return this.s_oc?this.s_oc(e):true">Northern Star Bank</a></td>
<td class="city">Mankato</td>
<td class="state">MN</td>
<td class="cert">34983</td>
<td class="ai">BankVista</td>
<td class="closing">December 19, 2014</td>
<td class="updated">January 6, 2016</td>
</tr><tr class="odd">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/elpaseo.html" onclick="s_objectID="https://www.fdic.gov/bank/individual/failed/elpaseo.html_1";return this.s_oc?this.s_oc(e):true">Frontier Bank, FSB D/B/A El Paseo Bank</a></td>
<td class="city">Palm Desert</td>
<td class="state">CA</td>
<td class="cert">34738</td>
<td class="ai">Bank of Southern California, N.A.</td>
<td class="closing">November 7, 2014</td>
<td class="updated">November 10, 2016</td>
</tr><tr class="even">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/nrbc.html" onclick="s_objectID="https://www.fdic.gov/bank/individual/failed/nrbc.html_1";return this.s_oc?this.s_oc(e):true">The National Republic Bank of Chicago</a></td>
<td class="city">Chicago</td>
<td class="state">IL</td>
<td class="cert">916</td>
<td class="ai">State Bank of Texas</td>
<td class="closing">October 24, 2014</td>
<td class="updated">January 6, 2016</td>
</tr><tr class="odd">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/nbrs.html" onclick="s_objectID="https://www.fdic.gov/bank/individual/failed/nbrs.html_1";return this.s_oc?this.s_oc(e):true">NBRS Financial</a></td>
<td class="city">Rising Sun</td>
<td class="state">MD</td>
<td class="cert">4862</td>
<td class="ai">Howard Bank</td>
<td class="closing">October 17, 2014</td>
<td class="updated">March 26, 2015</td>
</tr><tr class="even">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/greenchoice.html" onclick="s_objectID="https://www.fdic.gov/bank/individual/failed/greenchoice.html_1";return this.s_oc?this.s_oc(e):true">GreenChoice Bank, fsb</a></td>
<td class="city">Chicago</td>
<td class="state">IL</td>
<td class="cert">28462</td>
<td class="ai">Providence Bank, LLC</td>
<td class="closing">July 25, 2014</td>
<td class="updated">July 28, 2015</td>
</tr><tr class="odd">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/eastside.html" onclick="s_objectID="https://www.fdic.gov/bank/individual/failed/eastside.html_1";return this.s_oc?this.s_oc(e):true">Eastside Commercial Bank</a></td>
<td class="city">Conyers</td>
<td class="state">GA</td>
<td class="cert">58125</td>
<td class="ai">Community & Southern Bank</td>
<td class="closing">July 18, 2014</td>
<td class="updated">July 11, 2016</td>
</tr><tr class="even">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/freedomstate.html" onclick="s_objectID="https://www.fdic.gov/bank/individual/failed/freedomstate.html_1";return this.s_oc?this.s_oc(e):true">The Freedom State Bank </a></td>
<td class="city">Freedom</td>
<td class="state">OK</td>
<td class="cert">12483</td>
<td class="ai">Alva State Bank & Trust Company </td>
<td class="closing">June 27, 2014</td>
<td class="updated">March 25, 2016</td>
</tr><tr class="odd">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/valleybankfl.html" onclick="s_objectID="https://www.fdic.gov/bank/individual/failed/valleybankfl.html_1";return this.s_oc?this.s_oc(e):true">Valley Bank</a></td>
<td class="city">Fort Lauderdale</td>
<td class="state">FL</td>
<td class="cert">21793</td>
<td class="ai">Landmark Bank, National Association </td>
<td class="closing">June 20, 2014</td>
<td class="updated">June 29, 2015</td>
</tr><tr class="even">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/valleybankil.html" onclick="s_objectID="https://www.fdic.gov/bank/individual/failed/valleybankil.html_1";return this.s_oc?this.s_oc(e):true">Valley Bank</a></td>
<td class="city">Moline</td>
<td class="state">IL</td>
<td class="cert">10450</td>
<td class="ai">Great Southern Bank </td>
<td class="closing">June 20, 2014</td>
<td class="updated">June 26, 2015</td>
</tr><tr class="odd">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/slaviefederal.html" onclick="s_objectID="https://www.fdic.gov/bank/individual/failed/slaviefederal.html_1";return this.s_oc?this.s_oc(e):true">Slavie Federal Savings Bank</a></td>
<td class="city">Bel Air</td>
<td class="state">MD</td>
<td class="cert">32368</td>
<td class="ai">Bay Bank, FSB</td>
<td class="closing">May 30, 2014</td>
<td class="updated">June 15, 2015</td>
</tr><tr class="even">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/columbiasavings.html" onclick="s_objectID="https://www.fdic.gov/bank/individual/failed/columbiasavings.html_1";return this.s_oc?this.s_oc(e):true">Columbia Savings Bank</a></td>
<td class="city">Cincinnati</td>
<td class="state">OH</td>
<td class="cert">32284</td>
<td class="ai">United Fidelity Bank, fsb</td>
<td class="closing">May 23, 2014</td>
<td class="updated">November 10, 2016</td>
</tr><tr class="odd">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/aztecamerica.html" onclick="s_objectID="https://www.fdic.gov/bank/individual/failed/aztecamerica.html_1";return this.s_oc?this.s_oc(e):true">AztecAmerica Bank </a><br>
<a href="https://www.fdic.gov/bank/individual/failed/aztecamerica_spanish.html" onclick="s_objectID="https://www.fdic.gov/bank/individual/failed/aztecamerica_spanish.html_1";return this.s_oc?this.s_oc(e):true">En Espanol</a></td>
<td class="city">Berwyn</td>
<td class="state">IL</td>
<td class="cert">57866</td>
<td class="ai">Republic Bank of Chicago</td>
<td class="closing">May 16, 2014</td>
<td class="updated">October 20, 2016</td>
</tr><tr class="even">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/allendale.html">Allendale County Bank</a></td>
<td class="city">Fairfax</td>
<td class="state">SC</td>
<td class="cert">15062</td>
<td class="ai">Palmetto State Bank</td>
<td class="closing">April 25, 2014</td>
<td class="updated">July 18, 2014</td>
</tr><tr class="odd">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/vantagebank.html">Vantage Point Bank</a></td>
<td class="city">Horsham</td>
<td class="state">PA</td>
<td class="cert">58531</td>
<td class="ai">First Choice Bank</td>
<td class="closing">February 28, 2014</td>
<td class="updated">March 3, 2015</td>
</tr><tr class="even">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/millenniumbank.html">Millennium Bank, National Association </a></td>
<td class="city">Sterling</td>
<td class="state">VA</td>
<td class="cert">35096</td>
<td class="ai">WashingtonFirst Bank</td>
<td class="closing">February 28, 2014</td>
<td class="updated">March 03, 2015</td>
</tr><tr class="odd">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/syringabank.html">Syringa Bank</a></td>
<td class="city">Boise</td>
<td class="state">ID</td>
<td class="cert">34296</td>
<td class="ai">Sunwest Bank</td>
<td class="closing">January 31, 2014</td>
<td class="updated">April 12, 2016</td>
</tr><tr class="even">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/bankofunion.html">The Bank of Union</a></td>
<td class="city">El Reno</td>
<td class="state">OK</td>
<td class="cert">17967</td>
<td class="ai">BancFirst</td>
<td class="closing">January 24, 2014</td>
<td class="updated">March 25, 2016</td>
</tr><tr class="odd">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/dupage.html">DuPage National Bank</a></td>
<td class="city">West Chicago</td>
<td class="state">IL</td>
<td class="cert">5732</td>
<td class="ai">Republic Bank of Chicago</td>
<td class="closing">January 17, 2014</td>
<td class="updated">October 20, 2016</td>
</tr><tr class="even">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/texascomm.html">Texas Community Bank, National Association</a></td>
<td class="city">The Woodlands</td>
<td class="state">TX</td>
<td class="cert">57431</td>
<td class="ai">Spirit of Texas Bank, SSB</td>
<td class="closing">December 13, 2013</td>
<td class="updated">December 29, 2014</td>
</tr><tr class="odd">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/jacksoncty.html">Bank of Jackson County</a></td>
<td class="city">Graceville</td>
<td class="state">FL</td>
<td class="cert">14794</td>
<td class="ai">First Federal Bank of Florida</td>
<td class="closing">October 30, 2013</td>
<td class="updated">October 20, 2016</td>
</tr><tr class="even">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/firstnatl-tx.html">First National Bank also operating as The
National Bank of El Paso</a> <br>
<a href="https://www.fdic.gov/bank/individual/failed/firstnatl-tx_spanish.html">En Espanol </a></td>
<td class="city">Edinburg</td>
<td class="state">TX</td>
<td class="cert">14318</td>
<td class="ai">PlainsCapital Bank</td>
<td class="closing">September 13, 2013</td>
<td class="updated">May 27, 2015</td>
</tr><tr class="odd">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/commbank-ct.html">The Community's Bank</a></td>
<td class="city">Bridgeport</td>
<td class="state">CT</td>
<td class="cert">57041</td>
<td class="ai">No Acquirer</td>
<td class="closing">September 13, 2013</td>
<td class="updated">December 7, 2015</td>
</tr><tr class="even">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/sunrisebank-az.html">Sunrise Bank of Arizona</a></td>
<td class="city">Phoenix</td>
<td class="state">AZ</td>
<td class="cert">34707</td>
<td class="ai">First Fidelity Bank, National Association</td>
<td class="closing">August 23, 2013</td>
<td class="updated">September 12, 2014</td>
</tr><tr class="odd">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/communitysouth.html">Community South Bank</a></td>
<td class="city">Parsons</td>
<td class="state">TN</td>
<td class="cert">19849</td>
<td class="ai">CB&S Bank, Inc.</td>
<td class="closing">August 23, 2013</td>
<td class="updated">September 12, 2014</td>
</tr><tr class="even">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/bankofwausau.html">Bank of Wausau</a></td>
<td class="city">Wausau</td>
<td class="state">WI</td>
<td class="cert">35016</td>
<td class="ai">Nicolet National Bank</td>
<td class="closing">August 9, 2013</td>
<td class="updated">October 24, 2013</td>
</tr><tr class="odd">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/firstcommswb.html">First Community Bank of Southwest Florida (also operating as Community Bank of Cape Coral)</a></td>
<td class="city">Fort Myers</td>
<td class="state">FL</td>
<td class="cert">34943</td>
<td class="ai">C1 Bank</td>
<td class="closing">August 2, 2013</td>
<td class="updated">August 4, 2014</td>
</tr><tr class="even">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/mountain-tn.html">Mountain National Bank</a></td>
<td class="city">Sevierville</td>
<td class="state">TN</td>
<td class="cert">34789</td>
<td class="ai">First Tennessee Bank, National Association </td>
<td class="closing">June 7, 2013</td>
<td class="updated">February 4, 2016</td>
</tr><tr class="odd">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/1stcommerce.html">1st Commerce Bank</a></td>
<td class="city">North Las Vegas</td>
<td class="state">NV</td>
<td class="cert">58358</td>
<td class="ai">Plaza Bank</td>
<td class="closing">June 6, 2013</td>
<td class="updated">July 12, 2013</td>
</tr><tr class="even">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/kenosha.html">Banks of Wisconsin d/b/a Bank of Kenosha</a></td>
<td class="city">Kenosha</td>
<td class="state">WI</td>
<td class="cert">35386</td>
<td class="ai">North Shore Bank, FSB</td>
<td class="closing">May 31, 2013</td>
<td class="updated">June 2, 2014</td>
</tr><tr class="odd">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/centralaz.html">Central Arizona Bank</a></td>
<td class="city">Scottsdale</td>
<td class="state">AZ</td>
<td class="cert">34527</td>
<td class="ai">Western State Bank</td>
<td class="closing">May 14, 2013</td>
<td class="updated">December 7, 2015</td>
</tr><tr class="even">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/sunrisebank.html">Sunrise Bank</a></td>
<td class="city">Valdosta</td>
<td class="state">GA</td>
<td class="cert">58185</td>
<td class="ai">Synovus Bank</td>
<td class="closing">May 10, 2013</td>
<td class="updated">June 26, 2014</td>
</tr><tr class="odd">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/pisgahcommbk.html">Pisgah Community Bank</a></td>
<td class="city">Asheville</td>
<td class="state">NC</td>
<td class="cert">58701</td>
<td class="ai">Capital Bank, N.A.</td>
<td class="closing">May 10, 2013</td>
<td class="updated">August 8, 2016</td>
</tr><tr class="even">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/douglascb.html">Douglas County Bank</a></td>
<td class="city">Douglasville</td>
<td class="state">GA</td>
<td class="cert">21649</td>
<td class="ai">Hamilton State Bank</td>
<td class="closing">April 26, 2013</td>
<td class="updated">April 25, 2014</td>
</tr><tr class="odd">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/parkway.html">Parkway Bank</a></td>
<td class="city">Lenoir</td>
<td class="state">NC</td>
<td class="cert">57158</td>
<td class="ai">CertusBank, National Association</td>
<td class="closing">April 26, 2013</td>
<td class="updated">October 20, 2016</td>
</tr><tr class="even">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/chipola.html">Chipola Community Bank</a></td>
<td class="city">Marianna</td>
<td class="state">FL</td>
<td class="cert">58034</td>
<td class="ai">First Federal Bank of Florida</td>
<td class="closing">April 19, 2013</td>
<td class="updated">September 21, 2015</td>
</tr><tr class="odd">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/heritagebank-fl.html">Heritage Bank of North Florida</a></td>
<td class="city">Orange Park</td>
<td class="state">FL</td>
<td class="cert">26680</td>
<td class="ai">FirstAtlantic Bank</td>
<td class="closing">April 19, 2013</td>
<td class="updated">August 8, 2016</td>
</tr><tr class="even">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/firstfederal-ky.html">First Federal Bank</a></td>
<td class="city">Lexington</td>
<td class="state">KY</td>
<td class="cert">29594</td>
<td class="ai">Your Community Bank</td>
<td class="closing">April 19, 2013</td>
<td class="updated">April 24, 2014</td>
</tr><tr class="odd">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/goldcanyon.html">Gold Canyon Bank</a></td>
<td class="city">Gold Canyon</td>
<td class="state">AZ</td>
<td class="cert">58066</td>
<td class="ai">First Scottsdale Bank, National Association</td>
<td class="closing">April 5, 2013</td>
<td class="updated">October 7, 2015</td>
</tr><tr class="even">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/frontier-ga.html">Frontier Bank</a></td>
<td class="city">LaGrange</td>
<td class="state">GA</td>
<td class="cert">16431</td>
<td class="ai">HeritageBank of the South</td>
<td class="closing">March 8, 2013</td>
<td class="updated">March 2, 2016</td>
</tr><tr class="odd">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/covenant-il.html">Covenant Bank</a></td>
<td class="city">Chicago</td>
<td class="state">IL</td>
<td class="cert">22476</td>
<td class="ai">Liberty Bank and Trust Company</td>
<td class="closing">February 15, 2013</td>
<td class="updated">September 21, 2015</td>
</tr><tr class="even">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/1stregents.html">1st Regents Bank</a></td>
<td class="city">Andover</td>
<td class="state">MN</td>
<td class="cert">57157</td>
<td class="ai">First Minnesota Bank</td>
<td class="closing">January 18, 2013</td>
<td class="updated">July 12, 2016</td>
</tr><tr class="odd">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/westside.html">Westside Community Bank</a></td>
<td class="city">University Place</td>
<td class="state">WA</td>
<td class="cert">33997</td>
<td class="ai">Sunwest Bank</td>
<td class="closing">January 11, 2013</td>
<td class="updated">August 8, 2016</td>
</tr><tr class="even">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/cmbkozarks.html">Community Bank of the Ozarks</a></td>
<td class="city">Sunrise Beach</td>
<td class="state">MO</td>
<td class="cert">27331</td>
<td class="ai">Bank of Sullivan</td>
<td class="closing">December 14, 2012</td>
<td class="updated">April 4, 2014</td>
</tr><tr class="odd">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/hometown.html">Hometown Community Bank</a></td>
<td class="city">Braselton</td>
<td class="state">GA</td>
<td class="cert">57928</td>
<td class="ai">CertusBank, National Association</td>
<td class="closing">November 16, 2012</td>
<td class="updated">January 6, 2016</td>
</tr><tr class="even">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/cfnb.html">Citizens First National Bank</a></td>
<td class="city">Princeton</td>
<td class="state">IL</td>
<td class="cert">3731</td>
<td class="ai">Heartland Bank and Trust Company</td>
<td class="closing">November 2, 2012</td>
<td class="updated">November 22, 2013</td>
</tr><tr class="odd">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/heritage_fl.html">Heritage Bank of Florida</a></td>
<td class="city">Lutz</td>
<td class="state">FL</td>
<td class="cert">35009</td>
<td class="ai">Centennial Bank</td>
<td class="closing">November 2, 2012</td>
<td class="updated">March 21, 2014</td>
</tr><tr class="even">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/novabank.html">NOVA Bank</a></td>
<td class="city">Berwyn</td>
<td class="state">PA</td>
<td class="cert">27148</td>
<td class="ai">No Acquirer</td>
<td class="closing">October 26, 2012</td>
<td class="updated">January 24, 2013</td>
</tr><tr class="odd">
<td class="institution"><a href="https://www.fdic.gov/bank/individual/failed/excelbank.html">Excel Bank</a></td>