-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathschedule.json
More file actions
6038 lines (6038 loc) · 239 KB
/
schedule.json
File metadata and controls
6038 lines (6038 loc) · 239 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
{
"name": "fc2026 Schedule",
"entries": [
{
"id": "5623-0",
"name": "Recharge Room",
"startDate": "2026-01-15T10:00:00-08:00",
"endDate": "2026-01-16T02:00:00-08:00",
"description": "",
"presenters": [],
"type": "Hours",
"location": {
"name": "SJCC: Recharge Room (114)"
}
},
{
"id": "5624-0",
"name": "Con Ops",
"startDate": "2026-01-15T12:00:00-08:00",
"endDate": "2026-01-16T01:00:00-08:00",
"description": "",
"presenters": [],
"type": "Hours",
"location": {
"name": "SJCC: Con Ops"
}
},
{
"id": "5633-0",
"name": "Gaming",
"startDate": "2026-01-15T14:00:00-08:00",
"endDate": "2026-01-19T18:00:00-08:00",
"description": "",
"presenters": [],
"type": "Hours",
"location": {
"name": "Hilton: Gaming (Market)"
}
},
{
"id": "5626-0",
"name": "Pre-Registration Pickup",
"startDate": "2026-01-15T14:00:00-08:00",
"endDate": "2026-01-15T17:00:00-08:00",
"description": "",
"presenters": [],
"type": "Hours",
"location": {
"name": "SJCC: Registration (The Hub)"
}
},
{
"id": "5627-0",
"name": "Zookeepers",
"startDate": "2026-01-15T15:00:00-08:00",
"endDate": "2026-01-16T02:00:00-08:00",
"description": "",
"presenters": [],
"type": "Hours",
"location": {
"name": "SJCC: Zookeepers (SR4)"
}
},
{
"id": "5630-0",
"name": "Registration",
"startDate": "2026-01-15T17:00:00-08:00",
"endDate": "2026-01-15T20:00:00-08:00",
"description": "",
"presenters": [],
"type": "Hours",
"location": {
"name": "SJCC: Registration (The Hub)"
}
},
{
"id": "5539-0",
"name": "Let's Talk Mental Health!",
"startDate": "2026-01-15T17:00:00-08:00",
"endDate": "2026-01-15T18:30:00-08:00",
"description": "Let\u2019s talk mental health! Nicky shares helpful tips, resources, and personal insight into managing anxiety, burnout, and emotional struggles. This panel is all about understanding yourself and supporting others in a positive, encouraging space.",
"presenters": [
{
"name": "Nicky"
},
{
"name": "Rolei"
}
],
"type": "Social",
"location": {
"name": "Hilton: Santa Clara"
},
"maturity": "18+"
},
{
"id": "5438-0",
"name": "Anthropomorphism in Undertale/Deltarune",
"startDate": "2026-01-15T17:00:00-08:00",
"endDate": "2026-01-15T18:30:00-08:00",
"description": "Long ago, two races ruled over Earth: HUMANS and MONSTERS. We know how the intro goes. One day, someone asked: Is there a deeper reason why there\u2019s barely any humans in these games? How does a universe full of monsters end up feeling so human? A somewhat unserious exploration ensues.",
"presenters": [
{
"name": "Rogue Wereshep"
}
],
"type": "Gaming",
"location": {
"name": "Hilton: San Carlos"
}
},
{
"id": "5628-0",
"name": "Art Show: Artist Setup",
"startDate": "2026-01-15T17:00:00-08:00",
"endDate": "2026-01-15T20:00:00-08:00",
"description": "",
"presenters": [],
"type": "Hours",
"location": {
"name": "Hilton: Art Show (Almaden Ballroom)"
}
},
{
"id": "5672-0",
"name": "Gym Meetup",
"startDate": "2026-01-15T17:00:00-08:00",
"endDate": "2026-01-15T18:30:00-08:00",
"description": "Wanna workout before the con starts? Get that body pumping before you make some bad decisions!",
"presenters": [
{
"name": "Cinder"
}
],
"type": "Social",
"location": {
"name": "SJCC: 211A"
}
},
{
"id": "5629-0",
"name": "ANE Portal",
"startDate": "2026-01-15T17:00:00-08:00",
"endDate": "2026-01-18T16:00:00-08:00",
"description": "",
"presenters": [],
"type": "Hours",
"location": {
"name": "Hilton: Santa Clara Foyer"
}
},
{
"id": "5638-0",
"name": "VR Portal",
"startDate": "2026-01-15T18:00:00-08:00",
"endDate": "2026-01-16T00:00:00-08:00",
"description": "",
"presenters": [],
"type": "Hours",
"location": {
"name": "Hilton: Santa Clara Foyer"
}
},
{
"id": "5631-0",
"name": "Chill Space",
"startDate": "2026-01-15T18:00:00-08:00",
"endDate": "2026-01-15T20:30:00-08:00",
"description": "",
"presenters": [],
"type": "Hours",
"location": {
"name": "Marriott: Marriott Stage (Salon I to VI)"
}
},
{
"id": "5755-0",
"name": "Arcade",
"startDate": "2026-01-15T18:00:00-08:00",
"endDate": "2026-01-16T00:00:00-08:00",
"description": "Come play your favorite Japanese arcade and rhythm games (yes, DDR!), courtesy of GameSaru.",
"presenters": [],
"type": "Hours",
"location": {
"name": "SJCC: 220B'C' (Arcade)"
}
},
{
"id": "5632-0",
"name": "Fursuit Lounge",
"startDate": "2026-01-15T18:00:00-08:00",
"endDate": "2026-01-16T02:30:00-08:00",
"description": "",
"presenters": [],
"type": "Hours",
"location": {
"name": "Marriott: Fursuit Lounge (San Carlos)"
}
},
{
"id": "5664-0",
"name": "Shake Your Tails Off\u203c\ufe0f",
"startDate": "2026-01-15T19:00:00-08:00",
"endDate": "2026-01-15T20:30:00-08:00",
"description": "Hear Ye, Hear Ye\u203c\ufe0f\r\nCome one and all to shake what your mama gave you. \r\n\r\nIn today\u2019s lesson with your dance instructor [LuLu]; we will be learning what to do to prep before dancing, learning some new choreography and showing off your moves to your peers.\r\n\r\nWho knows what else could be in store for this panel. \ud83d\udc40\r\nSo come on down and \u201cShake Your Tails Off\u201d\u203c\ufe0f",
"presenters": [
{
"name": "[LuLu]"
}
],
"type": "Social",
"location": {
"name": "SJCC: 211A"
}
},
{
"id": "5673-0",
"name": "Furry Go/Weiqi/Baduk",
"startDate": "2026-01-15T19:00:00-08:00",
"endDate": "2026-01-15T21:00:00-08:00",
"description": "Do you love chess, cunning strategy, or just think the pieces look tasty? Learn the game of Go (\u7881/\u570d\u68cb/\u56f4\u68cb/\ubc14\ub451), the ancient \"surrounding game\" played worldwide. Capture territory\u2014or your opponent\u2014to win. All are welcome, beginners and experienced players alike!",
"presenters": [
{
"name": "Maple Foxdeer"
}
],
"type": "Gaming",
"location": {
"name": "Hilton: Plaza"
}
},
{
"id": "5663-0",
"name": "Swap Meet",
"startDate": "2026-01-15T19:00:00-08:00",
"endDate": "2026-01-15T20:30:00-08:00",
"description": "Bring your goodies to trade with your fellow furs! Art, pins, plushies, what have you - SFW items please.",
"presenters": [
{
"name": "BombyxLad"
}
],
"type": "Social",
"location": {
"name": "Hilton: San Pedro"
}
},
{
"id": "5745-0",
"name": "Fursday Night at The Tech",
"startDate": "2026-01-15T20:00:00-08:00",
"endDate": "2026-01-16T00:00:00-08:00",
"description": "This is a TICKETED EVENT, learn more at www.furcon.org/tech! \r\nOur NEW off-site kickoff event: after-hours access to The Tech and its interactive science exhibits! Fursuit, mingle, and enjoy the field trip vibes on Thursday evening from 8pm-12am.",
"presenters": [
{
"name": "Further Confusion"
}
],
"type": "Social",
"location": {
"name": "Tech: Exhibit Hall"
}
},
{
"id": "5650-0",
"name": "Opening Ceremonies",
"startDate": "2026-01-15T20:30:00-08:00",
"endDate": "2026-01-15T21:00:00-08:00",
"description": "Join us in kicking off Further Confusion 2026: Beach Episode",
"presenters": [
{
"name": "FurCon Executive Team"
}
],
"type": "Event",
"location": {
"name": "Marriott: Marriott Stage (Salon I to VI)"
}
},
{
"id": "5735-0",
"name": "Dancefur Meet and Greet\u203c\ufe0f",
"startDate": "2026-01-15T21:00:00-08:00",
"endDate": "2026-01-15T22:30:00-08:00",
"description": "Come and meet some of your fellow dancefurs from all around\u203c\ufe0f\r\nShare some techniques, ideas and maybe even make some friends\u203c\ufe0f\r\n\r\nWho knows, maybe there might even be a cypher to show off and shake what your mama gave you\u203c\ufe0f \ud83d\udc40",
"presenters": [
{
"name": "[LuLu]"
}
],
"type": "Social",
"location": {
"name": "Hilton: San Carlos"
}
},
{
"id": "5678-0",
"name": "DJ Dance - Acronix",
"startDate": "2026-01-15T21:00:00-08:00",
"endDate": "2026-01-15T22:00:00-08:00",
"description": "Multigenre",
"presenters": [
{
"name": "DJ Acronix"
}
],
"type": "Unknown",
"location": {
"name": "Marriott: Marriott Stage (Salon I to VI)"
}
},
{
"id": "5464-0",
"name": "Watercolor Painting",
"startDate": "2026-01-15T21:00:00-08:00",
"endDate": "2026-01-15T22:30:00-08:00",
"description": "Hang out and paint together. All materials provided!",
"presenters": [
{
"name": "BombyxLad"
}
],
"type": "Arts",
"location": {
"name": "Hilton: San Pedro"
},
"maturity": "Fam"
},
{
"id": "5754-0",
"name": "Pool Toy Party Preview",
"startDate": "2026-01-15T21:00:00-08:00",
"endDate": "2026-01-16T01:00:00-08:00",
"description": "Join us as we're still finishing setting up, to chill among inflatable pooltoys and balloons in this sensory decompression space!",
"presenters": [
{
"name": "Phenod"
}
],
"type": "Event",
"location": {
"name": "Marriott: Willow Glen I-II"
}
},
{
"id": "5603-0",
"name": "Animation Production 101",
"startDate": "2026-01-15T21:00:00-08:00",
"endDate": "2026-01-15T22:30:00-08:00",
"description": "Ever wondered how your favorite animated films got made? Want to know what it takes to get a job making drawings come alive? Then join this panel where we'll cover the production pipeline for all types of animation, from \"All Dogs Go To Heaven\" to \"Zootopia+\" and explore career paths in the animation industry.",
"presenters": [
{
"name": "Dani Yuan"
}
],
"type": "Arts",
"location": {
"name": "Hilton: Santa Clara"
}
},
{
"id": "5651-0",
"name": "All Paws HR Onboarding Session",
"startDate": "2026-01-15T21:00:00-08:00",
"endDate": "2026-01-15T22:00:00-08:00",
"description": "This is a brief meeting for volunteers to get up to speed at-con. New volunteers welcome!\r\n\r\nNote that volunteers do not need to attend both sessions; we will present the same info at each one.",
"presenters": [
{
"name": "FurCon Executive Team"
}
],
"type": "Event",
"location": {
"name": "Marriott: Blossom Hill"
}
},
{
"id": "5679-0",
"name": "DJ Dance - Revelion",
"startDate": "2026-01-15T22:00:00-08:00",
"endDate": "2026-01-15T23:00:00-08:00",
"description": "Progressive House \u00b7 Electro Pop",
"presenters": [
{
"name": "Revelion"
}
],
"type": "Unknown",
"location": {
"name": "Marriott: Marriott Stage (Salon I to VI)"
}
},
{
"id": "5732-0",
"name": "The Banana Chronicles A.I S.II",
"startDate": "2026-01-15T23:00:00-08:00",
"endDate": "2026-01-16T00:30:00-08:00",
"description": "The banana is back baby! In his natural habitat too. The NYSE was too much monkey business for him, so he came back home. The fun is only getting started. Come by and see the banana chronicles! Lets have some fun!",
"presenters": [
{
"name": "Sebastian Mawz"
}
],
"type": "Performance",
"location": {
"name": "Hilton: San Carlos"
},
"maturity": "18+"
},
{
"id": "5680-0",
"name": "DJ Dance - Ajax",
"startDate": "2026-01-15T23:00:00-08:00",
"endDate": "2026-01-16T00:00:00-08:00",
"description": "Techno",
"presenters": [
{
"name": "DJ Ajax"
}
],
"type": "Unknown",
"location": {
"name": "Marriott: Marriott Stage (Salon I to VI)"
}
},
{
"id": "5701-0",
"name": "Hypnosis Hangout",
"startDate": "2026-01-15T23:00:00-08:00",
"endDate": "2026-01-16T00:30:00-08:00",
"description": "A space to meet other swirly minded folks! Whether you're a hypnotist or subject, seasoned swirlist or starting to dip your paws into trance, come join to meet folks involved in the community and learn about this entrancing subject!",
"presenters": [
{
"name": "Dr\u00e6gon \u98db\u9f8d"
}
],
"type": "Social",
"location": {
"name": "Hilton: Santa Clara"
},
"maturity": "18+"
},
{
"id": "5437-0",
"name": "Bingo Social",
"startDate": "2026-01-15T23:00:00-08:00",
"endDate": "2026-01-16T00:30:00-08:00",
"description": "Start off your convention experience with some Bingo! Come and hang out, meet new people, and win some prizes.",
"presenters": [
{
"name": "Midori Hound"
}
],
"type": "Gaming",
"location": {
"name": "Hilton: San Pedro"
}
},
{
"id": "5681-0",
"name": "DJ Dance - Midekai",
"startDate": "2026-01-16T00:00:00-08:00",
"endDate": "2026-01-16T01:00:00-08:00",
"description": "Drum & Bass \u00b7 Halftime \u00b7 Future Beats",
"presenters": [
{
"name": "Midekai"
}
],
"type": "Unknown",
"location": {
"name": "Marriott: Marriott Stage (Salon I to VI)"
}
},
{
"id": "5624-1",
"name": "Con Ops",
"startDate": "2026-01-16T08:30:00-08:00",
"endDate": "2026-01-17T02:30:00-08:00",
"description": "",
"presenters": [],
"type": "Hours",
"location": {
"name": "SJCC: Con Ops"
}
},
{
"id": "5630-1",
"name": "Registration",
"startDate": "2026-01-16T09:00:00-08:00",
"endDate": "2026-01-16T20:00:00-08:00",
"description": "",
"presenters": [],
"type": "Hours",
"location": {
"name": "SJCC: Registration (The Hub)"
}
},
{
"id": "5627-1",
"name": "Zookeepers",
"startDate": "2026-01-16T10:00:00-08:00",
"endDate": "2026-01-17T02:00:00-08:00",
"description": "",
"presenters": [],
"type": "Hours",
"location": {
"name": "SJCC: Zookeepers (SR4)"
}
},
{
"id": "5623-1",
"name": "Recharge Room",
"startDate": "2026-01-16T10:00:00-08:00",
"endDate": "2026-01-17T02:00:00-08:00",
"description": "",
"presenters": [],
"type": "Hours",
"location": {
"name": "SJCC: Recharge Room (114)"
}
},
{
"id": "5710-0",
"name": "Artist Lounge",
"startDate": "2026-01-16T10:00:00-08:00",
"endDate": "2026-01-17T00:00:00-08:00",
"description": "A cozy, social space designed for artists, creatives, and doodlers of all skill levels to relax, make art, and meet each other! Art Supplies are available to borrow and use in the Lounge. Come hang out, be creative and unwind from the con space!",
"presenters": [
{
"name": "Part Time Dragons (Donna Dragon)"
}
],
"type": "Arts",
"location": {
"name": "Marriott: 3B Conference Room"
}
},
{
"id": "5665-0",
"name": "Escape Room ($)",
"startDate": "2026-01-16T10:00:00-08:00",
"endDate": "2026-01-16T11:00:00-08:00",
"description": "Yarrrrrr! Reckon ye've got what it takes to discover the Secret of the Furbidden Treasure? Or perhaps you can save the magical creatures in The Woes of Wyvern Woods! Tickets are $25 per person with a maximum of 10 players per group. Players by themselves or in a small group will be paired up with other like-minded adventurers to a maximum of 10 players per game. For private bookings, a minimum of 5 tickets must be purchased. Also, a portion of every ticket will go to the convention's charity! Purchase tickets online at TwistedTailsEscape.com or at our table during the con. If you have any questions, please contact us directly at info@twistedtailsescape.com. See you soon!",
"presenters": [
{
"name": "Twisted Tails Escape"
}
],
"type": "Gaming",
"location": {
"name": "Hilton: Escape Room (Winchester I)"
}
},
{
"id": "5755-1",
"name": "Arcade",
"startDate": "2026-01-16T10:00:00-08:00",
"endDate": "2026-01-17T01:30:00-08:00",
"description": "Come play your favorite Japanese arcade and rhythm games (yes, DDR!), courtesy of GameSaru.",
"presenters": [],
"type": "Hours",
"location": {
"name": "SJCC: 220B'C' (Arcade)"
}
},
{
"id": "5628-1",
"name": "Art Show: Artist Setup",
"startDate": "2026-01-16T10:00:00-08:00",
"endDate": "2026-01-16T12:00:00-08:00",
"description": "",
"presenters": [],
"type": "Hours",
"location": {
"name": "Hilton: Art Show (Almaden Ballroom)"
}
},
{
"id": "5538-0",
"name": "Phoenix Wright: Mystery Of The Missing Paw",
"startDate": "2026-01-16T11:00:00-08:00",
"endDate": "2026-01-16T12:00:00-08:00",
"description": "In this thrilling mystery sketch the world famous Phoenix Wright in uncovering the disappearance of a priceless artifact, and need the help of the audience to solve the case! \r\n\r\nI have done a slightly similar panel at Further Confusion 2025! and despite the preferences in my availability is pretty flexible! I would prefer a more early time in the day though! here is a link to my panel from last year!\r\n\r\nhttps://youtu.be/QzaAt-bHims?si=izOD2zbDJGzD7c6d",
"presenters": [
{
"name": "NAR"
}
],
"type": "Performance",
"location": {
"name": "Hilton: University"
}
},
{
"id": "5570-0",
"name": "Pok\u00e9mon Play, Trade, Battle!!",
"startDate": "2026-01-16T11:00:00-08:00",
"endDate": "2026-01-16T12:30:00-08:00",
"description": "Calling all trainers! Hazel the Bear and Nema the Dog will be hosting FC's first-ever Pok\u00e9mon VGC/TCG panel! Bring your binders, decks, cards, and games, and meet your fellow trainers to learn the games through playing, trading what you got, and battling with your teams! We will be bringing some spare mats and game supplies to use and extra cards to collect (first-come first first-served), so if you are a fan of Pok\u00e9mon, make sure to stop by!!",
"presenters": [
{
"name": "Hazel B.B."
},
{
"name": "Nema"
}
],
"type": "Gaming",
"location": {
"name": "Hilton: San Pedro"
}
},
{
"id": "5634-0",
"name": "Dealer's Den",
"startDate": "2026-01-16T11:00:00-08:00",
"endDate": "2026-01-16T18:00:00-08:00",
"description": "",
"presenters": [],
"type": "Hours",
"location": {
"name": "SJCC: Dealers Den (LL20BCD/LL21BCDEF)"
}
},
{
"id": "5665-1",
"name": "Escape Room ($)",
"startDate": "2026-01-16T11:00:00-08:00",
"endDate": "2026-01-16T12:00:00-08:00",
"description": "Yarrrrrr! Reckon ye've got what it takes to discover the Secret of the Furbidden Treasure? Or perhaps you can save the magical creatures in The Woes of Wyvern Woods! Tickets are $25 per person with a maximum of 10 players per group. Players by themselves or in a small group will be paired up with other like-minded adventurers to a maximum of 10 players per game. For private bookings, a minimum of 5 tickets must be purchased. Also, a portion of every ticket will go to the convention's charity! Purchase tickets online at TwistedTailsEscape.com or at our table during the con. If you have any questions, please contact us directly at info@twistedtailsescape.com. See you soon!",
"presenters": [
{
"name": "Twisted Tails Escape"
}
],
"type": "Gaming",
"location": {
"name": "Hilton: Escape Room (Winchester I)"
}
},
{
"id": "5542-0",
"name": "FC Benefactors Meet & Greet",
"startDate": "2026-01-16T11:00:00-08:00",
"endDate": "2026-01-16T12:00:00-08:00",
"description": "Hey Benefactors!\r\n\r\nJoin us for an exclusive social gathering just for you.\r\n\r\nMeet fellow benefactors, connect with the convention leadership team, & enjoy a guided behind-the-scenes tour of the con space.\r\n\r\nA perfect chance to network, ask questions, & see how your support brings FC to life.",
"presenters": [
{
"name": "Further Confusion"
}
],
"type": "Social",
"location": {
"name": "Marriott: Guadalupe"
}
},
{
"id": "5449-0",
"name": "Whiskers & Wit: Improv Games For All!",
"startDate": "2026-01-16T11:00:00-08:00",
"endDate": "2026-01-16T12:30:00-08:00",
"description": "Have you ever wanted to play improv but never knew where to start? This is the show for you! Whether you\u2019re an improv pro or an aspiring amateur, we welcome anyone willing to play!\r\n\r\nBe sure to bring cash for the con charity!",
"presenters": [
{
"name": "Sinine Coyote"
}
],
"type": "Performance",
"location": {
"name": "SJCC: Third Stage (211CD)"
}
},
{
"id": "5536-0",
"name": "Puppy Play Panel & Social",
"startDate": "2026-01-16T11:00:00-08:00",
"endDate": "2026-01-16T14:00:00-08:00",
"description": "Do you identify closely with real puppies, kitties, or ponies? Do you envy how puppies live for the moment & let go of all inhibitions with a head pat, kind word, or treat!? Come learn about what pup play is, what you do and don't need, and how much fun you can have. After the panel, you can join in on the fun as we host a mosh! If you've never been to a mosh, picture a dog park but full of human puppies, and maybe a few kitties, too! Hosted by BAY-PAH! For more information about BAY-PAH: https://bay-pah.com!",
"presenters": [
{
"name": "Ezriana Anmut"
}
],
"type": "Social",
"location": {
"name": "Marriott: Blossom Hill"
},
"maturity": "18+"
},
{
"id": "5598-0",
"name": "How to make Furrends",
"startDate": "2026-01-16T11:00:00-08:00",
"endDate": "2026-01-16T12:30:00-08:00",
"description": "Cons are a magical place where people can let loose and have fun. Make the Magic last all year long with this hybrid style panel and meet and greet to get started right away!",
"presenters": [
{
"name": "Pony for Hire"
}
],
"type": "Social",
"location": {
"name": "Hilton: San Carlos"
}
},
{
"id": "5707-0",
"name": "Hoofers !",
"startDate": "2026-01-16T11:00:00-08:00",
"endDate": "2026-01-16T12:00:00-08:00",
"description": "An informal gathering of all things with hoofs ,or not! Come discuss what its like to be a hoofer..horse, giraffe anything that runs on hooves and loves to be in a herd! All are invited!",
"presenters": [
{
"name": "Calafin"
},
{
"name": "Naketa_Orcan"
}
],
"type": "Species",
"location": {
"name": "SJCC: 211A"
}
},
{
"id": "5632-1",
"name": "Fursuit Lounge",
"startDate": "2026-01-16T11:00:00-08:00",
"endDate": "2026-01-17T02:30:00-08:00",
"description": "",
"presenters": [],
"type": "Hours",
"location": {
"name": "Marriott: Fursuit Lounge (San Carlos)"
}
},
{
"id": "5497-0",
"name": "toon trivia!",
"startDate": "2026-01-16T11:00:00-08:00",
"endDate": "2026-01-16T12:30:00-08:00",
"description": "Wanna test your cartoon smarts with other cartoon nerds! Them cartoon trivia is the place for u! Join me and my co-host on a wondrous toon adventure!",
"presenters": [
{
"name": "Spookz the fox"
}
],
"type": "Gaming",
"location": {
"name": "Marriott: Willow Glen III"
}
},
{
"id": "5743-0",
"name": "Adult Dealer's Den",
"startDate": "2026-01-16T11:00:00-08:00",
"endDate": "2026-01-16T18:00:00-08:00",
"description": "",
"presenters": [],
"type": "Hours",
"location": {
"name": "SJCC: AD Dealer's Den (212)"
}
},
{
"id": "5556-0",
"name": "Line Dancing in Line",
"startDate": "2026-01-16T11:00:00-08:00",
"endDate": "2026-01-16T12:30:00-08:00",
"description": "You are standing in a line waiting for registration. Or waiting for the vendor room to open. How many telegram chats can you check? Instead, look up, and here I'll be, teaching how to do line dancing while you stand in line! Yay!",
"presenters": [
{
"name": "Rabscuttle"
}
],
"type": "Performance",
"location": {
"name": "SJCC: Rehearsal Area (220B)"
}
},
{
"id": "5632-2",
"name": "Fursuit Lounge",
"startDate": "2026-01-16T11:00:00-08:00",
"endDate": "2026-01-17T02:30:00-08:00",
"description": "",
"presenters": [],
"type": "Hours",
"location": {
"name": "SJCC: 220C (Fursuit Lounge)"
}
},
{
"id": "5471-0",
"name": "Mindful Improv",
"startDate": "2026-01-16T11:30:00-08:00",
"endDate": "2026-01-16T13:30:00-08:00",
"description": "Learn ways to emotinally connect with your scene partner and discover the story with your heart!\r\nPresented by The Fists of Improv, a local diverse AF improv troupe.\r\n\r\nShorter pocket-program version:\r\nLearn mindfulness-based improv from the heart",
"presenters": [
{
"name": "passLion"
}
],
"type": "Performance",
"location": {
"name": "Marriott: Almaden"
}
},
{
"id": "5731-0",
"name": "Hacker News from 39C3",
"startDate": "2026-01-16T11:30:00-08:00",
"endDate": "2026-01-16T12:30:00-08:00",
"description": "A recap of my favorite hacker talks from the 39th Chaos Communication Congress (CCC) that was held in Hamburg, Germany over Christmas. CCC is like DEF CON or Black Hat, except without corporate influence, and smarter \"old school hacker\" attendees.",
"presenters": [
{
"name": "Ziggy the Hamster"
}
],
"type": "Education",
"location": {
"name": "Hilton: Santa Clara"
}
},
{
"id": "5751-0",
"name": "Pool Toy Party",
"startDate": "2026-01-16T12:00:00-08:00",
"endDate": "2026-01-16T16:00:00-08:00",
"description": "Come vibe and chill talk with friends and bop balloons in this sensory decompression space!",
"presenters": [
{
"name": "Phenod"
}
],
"type": "Event",
"location": {
"name": "Marriott: Willow Glen I-II"
}
},
{
"id": "5665-2",
"name": "Escape Room ($)",
"startDate": "2026-01-16T12:00:00-08:00",
"endDate": "2026-01-16T13:00:00-08:00",
"description": "Yarrrrrr! Reckon ye've got what it takes to discover the Secret of the Furbidden Treasure? Or perhaps you can save the magical creatures in The Woes of Wyvern Woods! Tickets are $25 per person with a maximum of 10 players per group. Players by themselves or in a small group will be paired up with other like-minded adventurers to a maximum of 10 players per game. For private bookings, a minimum of 5 tickets must be purchased. Also, a portion of every ticket will go to the convention's charity! Purchase tickets online at TwistedTailsEscape.com or at our table during the con. If you have any questions, please contact us directly at info@twistedtailsescape.com. See you soon!",
"presenters": [
{
"name": "Twisted Tails Escape"
}
],
"type": "Gaming",
"location": {
"name": "Hilton: Escape Room (Winchester I)"
}
},
{
"id": "5441-0",
"name": "Magic: The Gathering Cube Draft",
"startDate": "2026-01-16T12:00:00-08:00",
"endDate": "2026-01-16T16:00:00-08:00",
"description": "Do you want to play some Magic: The Gathering but you didn't bring your cards? You're in luck!\r\n\r\nFurther Confusion is holding a cube draft! The draft can accommodate a maximum of eight players. Sign-ups will begin in-person in the gaming room approximately one hour before start. Slots are first-come, first-served. Prize support will be supplied.\r\n\r\nFor information on MTG cubes, please visit: https://youtu.be/P_v0CeKyodo\r\nFor information on this specific cube, you can view it at: https://cubecobra.com/cube/overview/wjbu",
"presenters": [
{
"name": "Luxemburg Skunk"
}
],
"type": "Gaming",
"location": {
"name": "Hilton: Gaming (Market)"
}
},
{
"id": "5525-0",
"name": "Coffee with the Charity",
"startDate": "2026-01-16T12:00:00-08:00",
"endDate": "2026-01-16T13:30:00-08:00",
"description": "Join us for coffee, donuts, and friendship bracelet making while you get familiar with The Street Dog Coalition.",
"presenters": [
{
"name": "The Street Dog Coalition"
}
],
"type": "Social",
"location": {
"name": "Marriott: Guadalupe"
}
},
{
"id": "5505-0",
"name": "Fursuit Dance Competition Prelims",
"startDate": "2026-01-16T12:00:00-08:00",
"endDate": "2026-01-16T14:00:00-08:00",
"description": "Come audition for the fursuit dance competition! Note, sign-ups will not be taken on-site, and must have been completed prior to the convention. Up to 24 competitors will make the finals, so come through, and show us the best you can do!",
"presenters": [
{
"name": "Brenda Banks"
}
],
"type": "Performance",
"location": {
"name": "Marriott: Marriott Stage (Salon I to VI)"
}
},
{
"id": "5635-0",
"name": "Art Show",
"startDate": "2026-01-16T12:00:00-08:00",
"endDate": "2026-01-16T18:00:00-08:00",
"description": "",
"presenters": [],
"type": "Hours",
"location": {
"name": "Hilton: Art Show (Almaden Ballroom)"
}
},
{
"id": "5588-0",
"name": "Geocaching 101: The World's Largest Treasure Hunt",
"startDate": "2026-01-16T12:30:00-08:00",
"endDate": "2026-01-16T14:00:00-08:00",
"description": "Learn about the global treasure hunt called Geocaching! We'll get you started with all the info you need to start playing the game, find cool geocaches, and become the best cacher in town! New and old geocachers welcome!",
"presenters": [
{
"name": "Tabbicus"
}
],
"type": "Social",
"location": {
"name": "Hilton: Plaza"
}
},
{
"id": "5461-0",
"name": "A Journey for tea in Taiwan",
"startDate": "2026-01-16T12:30:00-08:00",
"endDate": "2026-01-16T13:30:00-08:00",
"description": "A journey into tea tends to be difficult: finding one's preferred types of tea, reputable vendors, what methods and tips and tricks there are to making tea, all of it may seem opaque. Some of this knowledge is nebulous, hindered by language barriers, and varies with an individual's background. What one knows as a tea drinker in the west, a tea drinker in the east, a merchant, a farmer growing it, all of them have differences. Why not hear from someone who's learn from the ground up, and been on the ground (or in this case, in the mountains) talking to all of them? Here I'll share what I've learned hiking the high cloud-shrouded mountains in Taiwan, in my pursuit to find good tea.",
"presenters": [
{
"name": "Ray Ting (Fox Tea Merchant \u72d0\u72f8\u8336\u5546)"
}
],
"type": "Social",
"location": {
"name": "Hilton: University"
}
},
{
"id": "5426-0",
"name": "Bat Meet and Squeak",
"startDate": "2026-01-16T12:30:00-08:00",
"endDate": "2026-01-16T13:30:00-08:00",
"description": "Bats and bat friends! Come meet up and share interesting bat facts! There will be a group photo afterwards, so bat fursuits are highly encouraged!",
"presenters": [
{
"name": "Aatheus"
}
],
"type": "Species",
"location": {
"name": "SJCC: 211A"
}
},
{
"id": "5637-0",
"name": "Photoshoot",
"startDate": "2026-01-16T13:00:00-08:00",
"endDate": "2026-01-16T17:30:00-08:00",
"description": "",
"presenters": [],
"type": "Hours",
"location": {
"name": "SJCC: 211B (Photoshoot)"
}
},
{
"id": "5592-0",
"name": "Room Party \u2764 Furry Studies",
"startDate": "2026-01-16T13:00:00-08:00",
"endDate": "2026-01-16T14:30:00-08:00",
"description": "The curators of \u201cRoom Party: Furry Art at the Beginning of the World,\u201d the organizers of the second-annual Furry Studies Conference, and the founders of Portland\u2019s Animal-In-Residence program join together to recap these events and answer your questions. How were these events put together? How can you get involved? What\u2019s next for furry art and scholarship?",
"presenters": [
{
"name": "Auryn"
},
{
"name": "Theory"
},
{
"name": "Tommy Bruce"
}
],
"type": "Arts",
"location": {
"name": "Hilton: San Carlos"
}
},
{