-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrbv_org.strongarm.inc
1114 lines (1085 loc) · 62.3 KB
/
rbv_org.strongarm.inc
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
<?php
/**
* @file
* rbv_org.strongarm.inc
*/
/**
* Implements hook_strongarm().
*/
function rbv_org_strongarm() {
$export = array();
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'additional_settings__active_tab_org';
$strongarm->value = 'edit-panelizer';
$export['additional_settings__active_tab_org'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'comment_anonymous_org';
$strongarm->value = 0;
$export['comment_anonymous_org'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'comment_default_mode_org';
$strongarm->value = 1;
$export['comment_default_mode_org'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'comment_default_per_page_org';
$strongarm->value = '50';
$export['comment_default_per_page_org'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'comment_form_location_org';
$strongarm->value = 1;
$export['comment_form_location_org'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'comment_org';
$strongarm->value = '1';
$export['comment_org'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'comment_preview_org';
$strongarm->value = '1';
$export['comment_preview_org'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'comment_subject_field_org';
$strongarm->value = 1;
$export['comment_subject_field_org'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'entity_view_modes';
$strongarm->value = array(
'node' => array(
'vmode_group_content' => array(
'label' => 'VMode group content',
'custom settings' => 1,
),
),
);
$export['entity_view_modes'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'field_bundle_settings_node__org';
$strongarm->value = array(
'view_modes' => array(
'teaser' => array(
'custom_settings' => TRUE,
),
'full' => array(
'custom_settings' => FALSE,
),
'rss' => array(
'custom_settings' => FALSE,
),
'search_index' => array(
'custom_settings' => FALSE,
),
'search_result' => array(
'custom_settings' => FALSE,
),
'diff_standard' => array(
'custom_settings' => FALSE,
),
'token' => array(
'custom_settings' => FALSE,
),
'vmode_group_content' => array(
'custom_settings' => TRUE,
),
'featured' => array(
'custom_settings' => TRUE,
),
'ical' => array(
'custom_settings' => FALSE,
),
),
'extra_fields' => array(
'form' => array(
'title' => array(
'weight' => '6',
),
'path' => array(
'weight' => '1',
),
),
'display' => array(),
),
);
$export['field_bundle_settings_node__org'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'field_bundle_settings_og_membership__rbv_membership_default';
$strongarm->value = array(
'view_modes' => array(
'ical' => array(
'custom_settings' => FALSE,
),
'diff_standard' => array(
'custom_settings' => FALSE,
),
'token' => array(
'custom_settings' => FALSE,
),
),
'extra_fields' => array(
'form' => array(),
'display' => array(),
),
);
$export['field_bundle_settings_og_membership__rbv_membership_default'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'field_bundle_settings_user__user';
$strongarm->value = array(
'view_modes' => array(
'featured' => array(
'custom_settings' => TRUE,
),
'full' => array(
'custom_settings' => TRUE,
),
'ical' => array(
'custom_settings' => FALSE,
),
'diff_standard' => array(
'custom_settings' => FALSE,
),
'token' => array(
'custom_settings' => FALSE,
),
),
'extra_fields' => array(
'form' => array(
'account' => array(
'weight' => '0',
),
'timezone' => array(
'weight' => '5',
),
'wysiwyg' => array(
'weight' => '4',
),
'picture' => array(
'weight' => '5',
),
'locale' => array(
'weight' => '5',
),
),
'display' => array(
'summary' => array(
'default' => array(
'weight' => '2',
'visible' => TRUE,
),
'full' => array(
'weight' => '3',
'visible' => TRUE,
),
),
),
),
);
$export['field_bundle_settings_user__user'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'menu_options_org';
$strongarm->value = array(
0 => 'main-menu',
);
$export['menu_options_org'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'menu_parent_org';
$strongarm->value = 'main-menu:0';
$export['menu_parent_org'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'node_options_org';
$strongarm->value = array(
0 => 'status',
1 => 'revision',
);
$export['node_options_org'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'node_preview_org';
$strongarm->value = '1';
$export['node_preview_org'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'node_submitted_org';
$strongarm->value = 0;
$export['node_submitted_org'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'panelizer_defaults_node_org';
$strongarm->value = array(
'status' => 1,
'view modes' => array(
'page_manager' => array(
'status' => 1,
'default' => 1,
'choice' => 0,
),
'default' => array(
'status' => 0,
'default' => 1,
'choice' => 0,
),
'teaser' => array(
'status' => 0,
'default' => 1,
'choice' => 0,
),
'vmode_group_content' => array(
'status' => 0,
'default' => 1,
'choice' => 0,
),
'featured' => array(
'status' => 0,
'default' => 0,
'choice' => 0,
),
),
);
$export['panelizer_defaults_node_org'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'panelizer_defaults_user_user';
$strongarm->value = array(
'status' => 1,
'view modes' => array(
'page_manager' => array(
'status' => 1,
'default' => 1,
'choice' => 0,
),
'default' => array(
'status' => 0,
'default' => 1,
'choice' => 0,
),
'full' => array(
'status' => 0,
'default' => 1,
'choice' => 0,
),
'featured' => array(
'status' => 0,
'default' => 1,
'choice' => 0,
),
),
);
$export['panelizer_defaults_user_user'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'panelizer_node:org_allowed_layouts';
$strongarm->value = 'O:22:"panels_allowed_layouts":4:{s:9:"allow_new";b:1;s:11:"module_name";s:18:"panelizer_node:org";s:23:"allowed_layout_settings";a:41:{s:8:"flexible";b:0;s:25:"threecol_33_34_33_stacked";b:0;s:14:"twocol_stacked";b:0;s:6:"onecol";b:0;s:25:"threecol_25_50_25_stacked";b:0;s:17:"threecol_33_34_33";b:0;s:17:"threecol_25_50_25";b:0;s:13:"twocol_bricks";b:0;s:6:"twocol";b:0;s:9:"sanderson";b:1;s:8:"bartlett";b:1;s:6:"whelan";b:1;s:7:"hewston";b:1;s:15:"hewston_flipped";b:1;s:4:"webb";b:1;s:5:"sutro";b:1;s:5:"rolph";b:1;s:6:"harris";b:1;s:5:"selby";b:1;s:16:"bartlett_flipped";b:1;s:5:"brown";b:1;s:6:"taylor";b:1;s:17:"sanderson_flipped";b:1;s:15:"brenham_flipped";b:1;s:6:"boxton";b:1;s:12:"webb_flipped";b:1;s:8:"mccoppin";b:1;s:4:"pond";b:1;s:5:"geary";b:1;s:7:"brenham";b:1;s:6:"bryant";b:1;s:4:"burr";b:1;s:22:"bryant_flipped_flipped";b:1;s:15:"moscone_flipped";b:1;s:6:"phelan";b:1;s:12:"burr_flipped";b:1;s:7:"moscone";b:1;s:13:"selby_flipped";b:1;s:14:"taylor_flipped";b:1;s:12:"sutro_double";b:1;s:32:"flexible:rbv_layout_forumsidebar";b:0;}s:10:"form_state";N;}';
$export['panelizer_node:org_allowed_layouts'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'panelizer_node:org_allowed_layouts_default';
$strongarm->value = 0;
$export['panelizer_node:org_allowed_layouts_default'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'panelizer_node:org_allowed_types';
$strongarm->value = array(
'user_profile-user_profile' => 'user_profile-user_profile',
'user_signature-user_signature' => 'user_signature-user_signature',
'user_picture-user_picture' => 'user_picture-user_picture',
'form-form' => 'form-form',
'vocabulary_terms-vocabulary_terms' => 'vocabulary_terms-vocabulary_terms',
'search_result-search_result' => 'search_result-search_result',
'search_form-search_form' => 'search_form-search_form',
'node_comment_form-node_comment_form' => 'node_comment_form-node_comment_form',
'node_comments-node_comments' => 'node_comments-node_comments',
'node_author-node_author' => 'node_author-node_author',
'node_title-node_title' => 'node_title-node_title',
'node_links-node_links' => 'node_links-node_links',
'node_created-node_created' => 'node_created-node_created',
'node_attachments-node_attachments' => 'node_attachments-node_attachments',
'node_body-node_body' => 'node_body-node_body',
'node_type_desc-node_type_desc' => 'node_type_desc-node_type_desc',
'node_content-node_content' => 'node_content-node_content',
'node_updated-node_updated' => 'node_updated-node_updated',
'node_terms-node_terms' => 'node_terms-node_terms',
'node_form_author-node_form_author' => 'node_form_author-node_form_author',
'node_form_log-node_form_log' => 'node_form_log-node_form_log',
'node_form_comment-node_form_comment' => 'node_form_comment-node_form_comment',
'node_form_publishing-node_form_publishing' => 'node_form_publishing-node_form_publishing',
'node_form_title-node_form_title' => 'node_form_title-node_form_title',
'node_form_menu-node_form_menu' => 'node_form_menu-node_form_menu',
'node_form_language-node_form_language' => 'node_form_language-node_form_language',
'node_form_path-node_form_path' => 'node_form_path-node_form_path',
'term_list-term_list' => 'term_list-term_list',
'term_description-term_description' => 'term_description-term_description',
'page_breadcrumb-page_breadcrumb' => 'page_breadcrumb-page_breadcrumb',
'page_slogan-page_slogan' => 'page_slogan-page_slogan',
'page_title-page_title' => 'page_title-page_title',
'page_logo-page_logo' => 'page_logo-page_logo',
'page_help-page_help' => 'page_help-page_help',
'page_tabs-page_tabs' => 'page_tabs-page_tabs',
'page_actions-page_actions' => 'page_actions-page_actions',
'page_messages-page_messages' => 'page_messages-page_messages',
'page_primary_links-page_primary_links' => 'page_primary_links-page_primary_links',
'page_feed_icons-page_feed_icons' => 'page_feed_icons-page_feed_icons',
'page_site_name-page_site_name' => 'page_site_name-page_site_name',
'comment_reply_form-comment_reply_form' => 'comment_reply_form-comment_reply_form',
'node-node' => 'node-node',
'file_content-file_content' => 'file_content-file_content',
'file_display-file_display' => 'file_display-file_display',
'node_create_links-node_create_links' => 'node_create_links-node_create_links',
'membership_links-membership_links' => 'membership_links-membership_links',
'landing_pages-landing_pages' => 'landing_pages-landing_pages',
'overridden_page_templates-overridden_page_templates' => 'overridden_page_templates-overridden_page_templates',
'general_widgets-general_widgets' => 'general_widgets-general_widgets',
'reusable_widgets-reusable_widgets' => 'reusable_widgets-reusable_widgets',
'general_panes-general_panes' => 'general_panes-general_panes',
'menus-menus' => 'menus-menus',
'taxonomy-taxonomy' => 'taxonomy-taxonomy',
'search_current-search_current' => 'search_current-search_current',
'facet-facet' => 'facet-facet',
'search_box-search_box' => 'search_box-search_box',
'pm_existing_pages-pm_existing_pages' => 'pm_existing_pages-pm_existing_pages',
'views_empty-views_empty' => 'views_empty-views_empty',
'views_header-views_header' => 'views_header-views_header',
'views_pager-views_pager' => 'views_pager-views_pager',
'views_row-views_row' => 'views_row-views_row',
'views_exposed-views_exposed' => 'views_exposed-views_exposed',
'views_footer-views_footer' => 'views_footer-views_footer',
'views_attachments-views_attachments' => 'views_attachments-views_attachments',
'views_feed-views_feed' => 'views_feed-views_feed',
'views_view-views_view' => 'views_view-views_view',
'forum_topic_list-forum_topic_list' => 'forum_topic_list-forum_topic_list',
'forum_node_create_list-forum_node_create_list' => 'forum_node_create_list-forum_node_create_list',
'forum_list-forum_list' => 'forum_list-forum_list',
'forum_search-forum_search' => 'forum_search-forum_search',
'node_form_buttons-node_form_buttons' => 0,
'page_secondary_links-page_secondary_links' => 0,
'node_prepopulate-node_prepopulate' => 0,
'panels_layouts-panels_layouts' => 0,
'content-content' => 0,
'theme-theme' => 0,
'users-users' => 0,
'forum_topic_list_sort-forum_topic_list_sort' => 0,
'forum_legend-forum_legend' => 0,
'forum_mark_read-forum_mark_read' => 0,
'forum_tools-forum_tools' => 0,
'forum_topic_legend-forum_topic_legend' => 0,
'forum_statistics-forum_statistics' => 0,
'panelizer_form_default-panelizer_form_default' => 0,
'entity_form_field-comment:comment_body' => 'entity_form_field-comment:comment_body',
'entity_form_field-fieldable_panels_pane:field_quick_links_links' => 'entity_form_field-fieldable_panels_pane:field_quick_links_links',
'entity_form_field-fieldable_panels_pane:field_basic_file_file' => 'entity_form_field-fieldable_panels_pane:field_basic_file_file',
'entity_form_field-fieldable_panels_pane:field_basic_file_text' => 'entity_form_field-fieldable_panels_pane:field_basic_file_text',
'entity_form_field-fieldable_panels_pane:field_basic_image_caption' => 'entity_form_field-fieldable_panels_pane:field_basic_image_caption',
'entity_form_field-fieldable_panels_pane:field_basic_image_image' => 'entity_form_field-fieldable_panels_pane:field_basic_image_image',
'entity_form_field-fieldable_panels_pane:field_basic_text_text' => 'entity_form_field-fieldable_panels_pane:field_basic_text_text',
'entity_form_field-fieldable_panels_pane:field_map_address' => 'entity_form_field-fieldable_panels_pane:field_map_address',
'entity_form_field-fieldable_panels_pane:field_map_information' => 'entity_form_field-fieldable_panels_pane:field_map_information',
'entity_form_field-fieldable_panels_pane:field_basic_table_table' => 'entity_form_field-fieldable_panels_pane:field_basic_table_table',
'entity_form_field-fieldable_panels_pane:field_video_file' => 'entity_form_field-fieldable_panels_pane:field_video_file',
'entity_form_field-fieldable_panels_pane:field_basic_spotlight_items' => 'entity_form_field-fieldable_panels_pane:field_basic_spotlight_items',
'entity_form_field-field_collection_item:field_com_date' => 'entity_form_field-field_collection_item:field_com_date',
'entity_form_field-field_collection_item:field_membership_role' => 'entity_form_field-field_collection_item:field_membership_role',
'entity_form_field-field_collection_item:field_com_description' => 'entity_form_field-field_collection_item:field_com_description',
'entity_form_field-node:field_com_description' => 'entity_form_field-node:field_com_description',
'entity_form_field-node:field_rel_categories' => 'entity_form_field-node:field_rel_categories',
'entity_form_field-node:field_rel_source' => 'entity_form_field-node:field_rel_source',
'entity_form_field-node:field_relpro_project' => 'entity_form_field-node:field_relpro_project',
'entity_form_field-node:og_group_ref' => 'entity_form_field-node:og_group_ref',
'entity_form_field-node:field_com_date' => 'entity_form_field-node:field_com_date',
'entity_form_field-node:body' => 'entity_form_field-node:body',
'entity_form_field-node:field_featured_categories' => 'entity_form_field-node:field_featured_categories',
'entity_form_field-node:field_featured_image' => 'entity_form_field-node:field_featured_image',
'entity_form_field-node:field_featured_status' => 'entity_form_field-node:field_featured_status',
'entity_form_field-node:taxonomy_forums' => 'entity_form_field-node:taxonomy_forums',
'entity_form_field-node:field_com_categories' => 'entity_form_field-node:field_com_categories',
'entity_form_field-node:field_com_tags' => 'entity_form_field-node:field_com_tags',
'entity_form_field-node:field_com_location' => 'entity_form_field-node:field_com_location',
'entity_form_field-node:field_com_logo' => 'entity_form_field-node:field_com_logo',
'entity_form_field-node:field_event_date' => 'entity_form_field-node:field_event_date',
'entity_form_field-node:field_quick_links_links' => 'entity_form_field-node:field_quick_links_links',
'entity_form_field-node:group_access' => 'entity_form_field-node:group_access',
'entity_form_field-node:field_com_social_links' => 'entity_form_field-node:field_com_social_links',
'entity_form_field-node:field_com_email' => 'entity_form_field-node:field_com_email',
'entity_form_field-node:field_com_history' => 'entity_form_field-node:field_com_history',
'entity_form_field-node:field_com_mission' => 'entity_form_field-node:field_com_mission',
'entity_form_field-node:field_com_more_contacts' => 'entity_form_field-node:field_com_more_contacts',
'entity_form_field-node:field_com_tagline' => 'entity_form_field-node:field_com_tagline',
'entity_form_field-node:field_com_telephone' => 'entity_form_field-node:field_com_telephone',
'entity_form_field-node:field_org_type' => 'entity_form_field-node:field_org_type',
'entity_form_field-node:group_group' => 'entity_form_field-node:group_group',
'entity_form_field-node:field_com_scope' => 'entity_form_field-node:field_com_scope',
'entity_form_field-og_membership:og_membership_request' => 'entity_form_field-og_membership:og_membership_request',
'entity_form_field-og_membership:field_membership_period' => 'entity_form_field-og_membership:field_membership_period',
'entity_form_field-relation:endpoints' => 'entity_form_field-relation:endpoints',
'entity_form_field-relation:field_com_date' => 'entity_form_field-relation:field_com_date',
'entity_form_field-relation:field_com_description' => 'entity_form_field-relation:field_com_description',
'entity_form_field-relation:field_rel_collaborations' => 'entity_form_field-relation:field_rel_collaborations',
'entity_form_field-file:field_file_image_alt_text' => 'entity_form_field-file:field_file_image_alt_text',
'entity_form_field-file:field_file_image_title_text' => 'entity_form_field-file:field_file_image_title_text',
'entity_form_field-taxonomy_term:field_featured_image' => 'entity_form_field-taxonomy_term:field_featured_image',
'entity_form_field-user:field_user_about' => 'entity_form_field-user:field_user_about',
'entity_form_field-user:field_user_picture' => 'entity_form_field-user:field_user_picture',
'entity_form_field-user:og_user_node' => 'entity_form_field-user:og_user_node',
'entity_field_extra-fieldable_panels_pane:title' => 'entity_field_extra-fieldable_panels_pane:title',
'entity_field_extra-file:file' => 'entity_field_extra-file:file',
'entity_field_extra-taxonomy_term:description' => 'entity_field_extra-taxonomy_term:description',
'entity_field_extra-user:summary' => 'entity_field_extra-user:summary',
'entity_field-comment:comment_body' => 'entity_field-comment:comment_body',
'entity_field-fieldable_panels_pane:field_quick_links_links' => 'entity_field-fieldable_panels_pane:field_quick_links_links',
'entity_field-fieldable_panels_pane:field_basic_file_file' => 'entity_field-fieldable_panels_pane:field_basic_file_file',
'entity_field-fieldable_panels_pane:field_basic_file_text' => 'entity_field-fieldable_panels_pane:field_basic_file_text',
'entity_field-fieldable_panels_pane:field_basic_image_caption' => 'entity_field-fieldable_panels_pane:field_basic_image_caption',
'entity_field-fieldable_panels_pane:field_basic_image_image' => 'entity_field-fieldable_panels_pane:field_basic_image_image',
'entity_field-fieldable_panels_pane:field_basic_text_text' => 'entity_field-fieldable_panels_pane:field_basic_text_text',
'entity_field-fieldable_panels_pane:field_map_address' => 'entity_field-fieldable_panels_pane:field_map_address',
'entity_field-fieldable_panels_pane:field_map_information' => 'entity_field-fieldable_panels_pane:field_map_information',
'entity_field-fieldable_panels_pane:field_basic_table_table' => 'entity_field-fieldable_panels_pane:field_basic_table_table',
'entity_field-fieldable_panels_pane:field_video_file' => 'entity_field-fieldable_panels_pane:field_video_file',
'entity_field-fieldable_panels_pane:field_basic_spotlight_items' => 'entity_field-fieldable_panels_pane:field_basic_spotlight_items',
'entity_field-field_collection_item:field_com_date' => 'entity_field-field_collection_item:field_com_date',
'entity_field-field_collection_item:field_membership_role' => 'entity_field-field_collection_item:field_membership_role',
'entity_field-field_collection_item:field_com_description' => 'entity_field-field_collection_item:field_com_description',
'entity_field-node:field_com_description' => 'entity_field-node:field_com_description',
'entity_field-node:field_rel_categories' => 'entity_field-node:field_rel_categories',
'entity_field-node:field_rel_source' => 'entity_field-node:field_rel_source',
'entity_field-node:field_relpro_project' => 'entity_field-node:field_relpro_project',
'entity_field-node:og_group_ref' => 'entity_field-node:og_group_ref',
'entity_field-node:field_com_date' => 'entity_field-node:field_com_date',
'entity_field-node:body' => 'entity_field-node:body',
'entity_field-node:field_featured_categories' => 'entity_field-node:field_featured_categories',
'entity_field-node:field_featured_image' => 'entity_field-node:field_featured_image',
'entity_field-node:field_featured_status' => 'entity_field-node:field_featured_status',
'entity_field-node:taxonomy_forums' => 'entity_field-node:taxonomy_forums',
'entity_field-node:field_com_categories' => 'entity_field-node:field_com_categories',
'entity_field-node:field_com_tags' => 'entity_field-node:field_com_tags',
'entity_field-node:field_com_location' => 'entity_field-node:field_com_location',
'entity_field-node:field_com_logo' => 'entity_field-node:field_com_logo',
'entity_field-node:field_event_date' => 'entity_field-node:field_event_date',
'entity_field-node:field_quick_links_links' => 'entity_field-node:field_quick_links_links',
'entity_field-node:group_access' => 'entity_field-node:group_access',
'entity_field-node:field_com_social_links' => 'entity_field-node:field_com_social_links',
'entity_field-node:field_com_email' => 'entity_field-node:field_com_email',
'entity_field-node:field_com_history' => 'entity_field-node:field_com_history',
'entity_field-node:field_com_mission' => 'entity_field-node:field_com_mission',
'entity_field-node:field_com_more_contacts' => 'entity_field-node:field_com_more_contacts',
'entity_field-node:field_com_tagline' => 'entity_field-node:field_com_tagline',
'entity_field-node:field_com_telephone' => 'entity_field-node:field_com_telephone',
'entity_field-node:field_org_type' => 'entity_field-node:field_org_type',
'entity_field-node:group_group' => 'entity_field-node:group_group',
'entity_field-node:field_com_scope' => 'entity_field-node:field_com_scope',
'entity_field-og_membership:og_membership_request' => 'entity_field-og_membership:og_membership_request',
'entity_field-og_membership:field_membership_period' => 'entity_field-og_membership:field_membership_period',
'entity_field-relation:endpoints' => 'entity_field-relation:endpoints',
'entity_field-relation:field_com_date' => 'entity_field-relation:field_com_date',
'entity_field-relation:field_com_description' => 'entity_field-relation:field_com_description',
'entity_field-relation:field_rel_collaborations' => 'entity_field-relation:field_rel_collaborations',
'entity_field-file:field_file_image_alt_text' => 'entity_field-file:field_file_image_alt_text',
'entity_field-file:field_file_image_title_text' => 'entity_field-file:field_file_image_title_text',
'entity_field-taxonomy_term:field_featured_image' => 'entity_field-taxonomy_term:field_featured_image',
'entity_field-user:field_user_about' => 'entity_field-user:field_user_about',
'entity_field-user:field_user_picture' => 'entity_field-user:field_user_picture',
'entity_field-user:og_user_node' => 'entity_field-user:og_user_node',
'token-node:source' => 'token-node:source',
'token-node:log' => 'token-node:log',
'token-node:content-type' => 'token-node:content-type',
'token-node:comment-count' => 'token-node:comment-count',
'token-node:comment-count-new' => 'token-node:comment-count-new',
'token-node:diff' => 'token-node:diff',
'token-node:diff-markdown' => 'token-node:diff-markdown',
'token-node:menu-link' => 'token-node:menu-link',
'token-node:nid' => 'token-node:nid',
'token-node:vid' => 'token-node:vid',
'token-node:title' => 'token-node:title',
'token-node:body' => 'token-node:body',
'token-node:summary' => 'token-node:summary',
'token-node:language' => 'token-node:language',
'token-node:url' => 'token-node:url',
'token-node:edit-url' => 'token-node:edit-url',
'token-node:created' => 'token-node:created',
'token-node:changed' => 'token-node:changed',
'token-node:author' => 'token-node:author',
'token-node:total-count' => 'token-node:total-count',
'token-node:day-count' => 'token-node:day-count',
'token-node:last-view' => 'token-node:last-view',
'token-node:uuid' => 'token-node:uuid',
'token-node:vuuid' => 'token-node:vuuid',
'token-node:original' => 'token-node:original',
'token-node:is-new' => 'token-node:is-new',
'token-node:status' => 'token-node:status',
'token-node:promote' => 'token-node:promote',
'token-node:sticky' => 'token-node:sticky',
'token-node:revision' => 'token-node:revision',
'token-node:comment' => 'token-node:comment',
'token-node:views' => 'token-node:views',
'token-node:day-views' => 'token-node:day-views',
'token-node:relation-collaborates-to-node-reverse' => 'token-node:relation-collaborates-to-node-reverse',
'token-node:relation-collaborates-to-node' => 'token-node:relation-collaborates-to-node',
'token-node:relation-cooperates-with-node' => 'token-node:relation-cooperates-with-node',
'token-node:field-featured-image' => 'token-node:field-featured-image',
'token-node:field-featured-categories' => 'token-node:field-featured-categories',
'token-node:field-featured-status' => 'token-node:field-featured-status',
'token-node:field-com-categories' => 'token-node:field-com-categories',
'token-node:field-com-tags' => 'token-node:field-com-tags',
'token-node:taxonomy-forums' => 'token-node:taxonomy-forums',
'token-node:field-quick-links-links' => 'token-node:field-quick-links-links',
'token-node:field-com-description' => 'token-node:field-com-description',
'token-node:field-com-location' => 'token-node:field-com-location',
'token-node:field-com-logo' => 'token-node:field-com-logo',
'token-node:group-access' => 'token-node:group-access',
'token-node:og-group-ref' => 'token-node:og-group-ref',
'token-node:field-relpro-project' => 'token-node:field-relpro-project',
'token-node:field-event-date' => 'token-node:field-event-date',
'token-node:field-com-date' => 'token-node:field-com-date',
'token-node:field-com-email' => 'token-node:field-com-email',
'token-node:field-com-history' => 'token-node:field-com-history',
'token-node:field-com-mission' => 'token-node:field-com-mission',
'token-node:field-com-more-contacts' => 'token-node:field-com-more-contacts',
'token-node:field-com-tagline' => 'token-node:field-com-tagline',
'token-node:field-com-telephone' => 'token-node:field-com-telephone',
'token-node:field-org-type' => 'token-node:field-org-type',
'token-node:group-group' => 'token-node:group-group',
'token-node:members' => 'token-node:members',
'token-node:members--1' => 'token-node:members--1',
'token-node:members--2' => 'token-node:members--2',
'token-node:members--3' => 'token-node:members--3',
'token-node:field-com-scope' => 'token-node:field-com-scope',
'token-node:field-rel-categories' => 'token-node:field-rel-categories',
'token-node:field-rel-source' => 'token-node:field-rel-source',
'token-node:field_featured_image' => 'token-node:field_featured_image',
'token-node:field_featured_categories' => 'token-node:field_featured_categories',
'token-node:field_featured_status' => 'token-node:field_featured_status',
'token-node:field_quick_links_links' => 'token-node:field_quick_links_links',
'token-node:field_com_categories' => 'token-node:field_com_categories',
'token-node:field_com_date' => 'token-node:field_com_date',
'token-node:field_com_description' => 'token-node:field_com_description',
'token-node:field_com_email' => 'token-node:field_com_email',
'token-node:field_com_history' => 'token-node:field_com_history',
'token-node:field_com_location' => 'token-node:field_com_location',
'token-node:field_com_logo' => 'token-node:field_com_logo',
'token-node:field_com_mission' => 'token-node:field_com_mission',
'token-node:field_com_more_contacts' => 'token-node:field_com_more_contacts',
'token-node:field_com_tagline' => 'token-node:field_com_tagline',
'token-node:field_com_tags' => 'token-node:field_com_tags',
'token-node:field_com_telephone' => 'token-node:field_com_telephone',
'token-node:field_rel_categories' => 'token-node:field_rel_categories',
'token-node:field_rel_source' => 'token-node:field_rel_source',
'token-node:field_org_type' => 'token-node:field_org_type',
'token-node:group_group' => 'token-node:group_group',
'token-node:group_access' => 'token-node:group_access',
'token-node:og_group_ref' => 'token-node:og_group_ref',
'token-node:field_relpro_project' => 'token-node:field_relpro_project',
'token-node:field_event_date' => 'token-node:field_event_date',
'token-node:field_com_scope' => 'token-node:field_com_scope',
'token-node:taxonomy_forums' => 'token-node:taxonomy_forums',
'token-node:field_com_social_links' => 'token-node:field_com_social_links',
'token-content-type:name' => 'token-content-type:name',
'token-content-type:machine-name' => 'token-content-type:machine-name',
'token-content-type:description' => 'token-content-type:description',
'token-content-type:node-count' => 'token-content-type:node-count',
'token-content-type:edit-url' => 'token-content-type:edit-url',
'token-term:edit-url' => 'token-term:edit-url',
'token-term:parents' => 'token-term:parents',
'token-term:root' => 'token-term:root',
'token-term:tid' => 'token-term:tid',
'token-term:name' => 'token-term:name',
'token-term:description' => 'token-term:description',
'token-term:node-count' => 'token-term:node-count',
'token-term:url' => 'token-term:url',
'token-term:vocabulary' => 'token-term:vocabulary',
'token-term:parent' => 'token-term:parent',
'token-term:uuid' => 'token-term:uuid',
'token-term:original' => 'token-term:original',
'token-term:weight' => 'token-term:weight',
'token-term:parents-all' => 'token-term:parents-all',
'token-term:field-featured-image' => 'token-term:field-featured-image',
'token-term:field_featured_image' => 'token-term:field_featured_image',
'token-vocabulary:machine-name' => 'token-vocabulary:machine-name',
'token-vocabulary:edit-url' => 'token-vocabulary:edit-url',
'token-vocabulary:vid' => 'token-vocabulary:vid',
'token-vocabulary:name' => 'token-vocabulary:name',
'token-vocabulary:description' => 'token-vocabulary:description',
'token-vocabulary:node-count' => 'token-vocabulary:node-count',
'token-vocabulary:term-count' => 'token-vocabulary:term-count',
'token-vocabulary:original' => 'token-vocabulary:original',
'token-file:basename' => 'token-file:basename',
'token-file:extension' => 'token-file:extension',
'token-file:size-raw' => 'token-file:size-raw',
'token-file:type' => 'token-file:type',
'token-file:download-url' => 'token-file:download-url',
'token-file:fid' => 'token-file:fid',
'token-file:name' => 'token-file:name',
'token-file:path' => 'token-file:path',
'token-file:mime' => 'token-file:mime',
'token-file:size' => 'token-file:size',
'token-file:url' => 'token-file:url',
'token-file:timestamp' => 'token-file:timestamp',
'token-file:owner' => 'token-file:owner',
'token-file:uuid' => 'token-file:uuid',
'token-file:original' => 'token-file:original',
'token-file:field-file-image-alt-text' => 'token-file:field-file-image-alt-text',
'token-file:field-file-image-title-text' => 'token-file:field-file-image-title-text',
'token-file:field_file_image_alt_text' => 'token-file:field_file_image_alt_text',
'token-file:field_file_image_title_text' => 'token-file:field_file_image_title_text',
'token-user:cancel-url' => 'token-user:cancel-url',
'token-user:one-time-login-url' => 'token-user:one-time-login-url',
'token-user:picture' => 'token-user:picture',
'token-user:roles' => 'token-user:roles',
'token-user:uid' => 'token-user:uid',
'token-user:name' => 'token-user:name',
'token-user:mail' => 'token-user:mail',
'token-user:url' => 'token-user:url',
'token-user:edit-url' => 'token-user:edit-url',
'token-user:last-login' => 'token-user:last-login',
'token-user:created' => 'token-user:created',
'token-user:uuid' => 'token-user:uuid',
'token-user:original' => 'token-user:original',
'token-user:last-access' => 'token-user:last-access',
'token-user:status' => 'token-user:status',
'token-user:theme' => 'token-user:theme',
'token-user:field-user-about' => 'token-user:field-user-about',
'token-user:field-user-picture' => 'token-user:field-user-picture',
'token-user:og-user-node' => 'token-user:og-user-node',
'token-user:field_user_about' => 'token-user:field_user_about',
'token-user:field_user_picture' => 'token-user:field_user_picture',
'token-user:og_user_node' => 'token-user:og_user_node',
'token-current-user:ip-address' => 'token-current-user:ip-address',
'token-menu-link:mlid' => 'token-menu-link:mlid',
'token-menu-link:title' => 'token-menu-link:title',
'token-menu-link:url' => 'token-menu-link:url',
'token-menu-link:parent' => 'token-menu-link:parent',
'token-menu-link:parents' => 'token-menu-link:parents',
'token-menu-link:root' => 'token-menu-link:root',
'token-menu-link:menu' => 'token-menu-link:menu',
'token-menu-link:edit-url' => 'token-menu-link:edit-url',
'token-current-page:title' => 'token-current-page:title',
'token-current-page:url' => 'token-current-page:url',
'token-current-page:page-number' => 'token-current-page:page-number',
'token-url:path' => 'token-url:path',
'token-url:relative' => 'token-url:relative',
'token-url:absolute' => 'token-url:absolute',
'token-url:brief' => 'token-url:brief',
'token-url:unaliased' => 'token-url:unaliased',
'token-url:args' => 'token-url:args',
'token-array:first' => 'token-array:first',
'token-array:last' => 'token-array:last',
'token-array:count' => 'token-array:count',
'token-array:reversed' => 'token-array:reversed',
'token-array:keys' => 'token-array:keys',
'token-array:join' => 'token-array:join',
'token-array:value' => 'token-array:value',
'token-array:join-path' => 'token-array:join-path',
'token-random:number' => 'token-random:number',
'token-random:hash' => 'token-random:hash',
'token-address-field:country' => 'token-address-field:country',
'token-address-field:country-code' => 'token-address-field:country-code',
'token-address-field:administrative-area' => 'token-address-field:administrative-area',
'token-address-field:administrative-area-raw' => 'token-address-field:administrative-area-raw',
'token-address-field:locality' => 'token-address-field:locality',
'token-address-field:postal-code' => 'token-address-field:postal-code',
'token-address-field:thoroughfare' => 'token-address-field:thoroughfare',
'token-address-field:premise' => 'token-address-field:premise',
'token-address-field:organisation' => 'token-address-field:organisation',
'token-address-field:name-line' => 'token-address-field:name-line',
'token-address-field:first-name' => 'token-address-field:first-name',
'token-address-field:last-name' => 'token-address-field:last-name',
'token-address-field:format-mailchimp' => 'token-address-field:format-mailchimp',
'token-comment:cid' => 'token-comment:cid',
'token-comment:hostname' => 'token-comment:hostname',
'token-comment:name' => 'token-comment:name',
'token-comment:mail' => 'token-comment:mail',
'token-comment:homepage' => 'token-comment:homepage',
'token-comment:title' => 'token-comment:title',
'token-comment:body' => 'token-comment:body',
'token-comment:url' => 'token-comment:url',
'token-comment:edit-url' => 'token-comment:edit-url',
'token-comment:created' => 'token-comment:created',
'token-comment:changed' => 'token-comment:changed',
'token-comment:parent' => 'token-comment:parent',
'token-comment:node' => 'token-comment:node',
'token-comment:author' => 'token-comment:author',
'token-comment:uuid' => 'token-comment:uuid',
'token-comment:original' => 'token-comment:original',
'token-comment:subject' => 'token-comment:subject',
'token-comment:status' => 'token-comment:status',
'token-comment:comment-body' => 'token-comment:comment-body',
'token-date-field-value:date' => 'token-date-field-value:date',
'token-date-field-value:to-date' => 'token-date-field-value:to-date',
'token-facetapi_results:keys' => 'token-facetapi_results:keys',
'token-facetapi_results:page-number' => 'token-facetapi_results:page-number',
'token-facetapi_results:page-limit' => 'token-facetapi_results:page-limit',
'token-facetapi_results:page-total' => 'token-facetapi_results:page-total',
'token-facetapi_results:offset' => 'token-facetapi_results:offset',
'token-facetapi_results:start-count' => 'token-facetapi_results:start-count',
'token-facetapi_results:end-count' => 'token-facetapi_results:end-count',
'token-facetapi_results:result-count' => 'token-facetapi_results:result-count',
'token-facetapi_active:active-value' => 'token-facetapi_active:active-value',
'token-facetapi_active:active-value-raw' => 'token-facetapi_active:active-value-raw',
'token-facetapi_active:active-pos' => 'token-facetapi_active:active-pos',
'token-facetapi_active:facet-label' => 'token-facetapi_active:facet-label',
'token-facetapi_active:facet-name' => 'token-facetapi_active:facet-name',
'token-facetapi_facet:facet-label' => 'token-facetapi_facet:facet-label',
'token-facetapi_facet:facet-name' => 'token-facetapi_facet:facet-name',
'token-file-type:name' => 'token-file-type:name',
'token-file-type:machine-name' => 'token-file-type:machine-name',
'token-file-type:count' => 'token-file-type:count',
'token-file-type:edit-url' => 'token-file-type:edit-url',
'token-menu:name' => 'token-menu:name',
'token-menu:machine-name' => 'token-menu:machine-name',
'token-menu:description' => 'token-menu:description',
'token-menu:menu-link-count' => 'token-menu:menu-link-count',
'token-menu:edit-url' => 'token-menu:edit-url',
'token-relation:rid' => 'token-relation:rid',
'token-relation:vid' => 'token-relation:vid',
'token-relation:relation_type' => 'token-relation:relation_type',
'token-relation:relation_type_label' => 'token-relation:relation_type_label',
'token-relation:url' => 'token-relation:url',
'token-relation:edit-url' => 'token-relation:edit-url',
'token-relation:created' => 'token-relation:created',
'token-relation:changed' => 'token-relation:changed',
'token-relation:author' => 'token-relation:author',
'token-relation:original' => 'token-relation:original',
'token-relation:field-com-date' => 'token-relation:field-com-date',
'token-relation:field-com-description' => 'token-relation:field-com-description',
'token-relation:field-rel-collaborations' => 'token-relation:field-rel-collaborations',
'token-relation:endpoints-source-node' => 'token-relation:endpoints-source-node',
'token-relation:endpoints-target-node' => 'token-relation:endpoints-target-node',
'token-relation:field_com_date' => 'token-relation:field_com_date',
'token-relation:field_com_description' => 'token-relation:field_com_description',
'token-relation:endpoints' => 'token-relation:endpoints',
'token-relation:field_rel_collaborations' => 'token-relation:field_rel_collaborations',
'token-site:name' => 'token-site:name',
'token-site:slogan' => 'token-site:slogan',
'token-site:mail' => 'token-site:mail',
'token-site:url' => 'token-site:url',
'token-site:url-brief' => 'token-site:url-brief',
'token-site:login-url' => 'token-site:login-url',
'token-site:current-user' => 'token-site:current-user',
'token-site:current-date' => 'token-site:current-date',
'token-site:current-page' => 'token-site:current-page',
'token-site:og-context--node' => 'token-site:og-context--node',
'token-date:short' => 'token-date:short',
'token-date:medium' => 'token-date:medium',
'token-date:long' => 'token-date:long',
'token-date:custom' => 'token-date:custom',
'token-date:since' => 'token-date:since',
'token-date:raw' => 'token-date:raw',
'token-date:panopoly_time' => 'token-date:panopoly_time',
'token-date:panopoly_day' => 'token-date:panopoly_day',
'token-fieldable_panels_pane:field-basic-file-file' => 'token-fieldable_panels_pane:field-basic-file-file',
'token-fieldable_panels_pane:field-basic-file-text' => 'token-fieldable_panels_pane:field-basic-file-text',
'token-fieldable_panels_pane:field-basic-image-caption' => 'token-fieldable_panels_pane:field-basic-image-caption',
'token-fieldable_panels_pane:field-basic-image-image' => 'token-fieldable_panels_pane:field-basic-image-image',
'token-fieldable_panels_pane:field-basic-text-text' => 'token-fieldable_panels_pane:field-basic-text-text',
'token-fieldable_panels_pane:field-map-address' => 'token-fieldable_panels_pane:field-map-address',
'token-fieldable_panels_pane:field-map-information' => 'token-fieldable_panels_pane:field-map-information',
'token-fieldable_panels_pane:field-quick-links-links' => 'token-fieldable_panels_pane:field-quick-links-links',
'token-fieldable_panels_pane:field-video-file' => 'token-fieldable_panels_pane:field-video-file',
'token-fieldable_panels_pane:field_basic_file_file' => 'token-fieldable_panels_pane:field_basic_file_file',
'token-fieldable_panels_pane:field_basic_file_text' => 'token-fieldable_panels_pane:field_basic_file_text',
'token-fieldable_panels_pane:field_basic_image_caption' => 'token-fieldable_panels_pane:field_basic_image_caption',
'token-fieldable_panels_pane:field_basic_image_image' => 'token-fieldable_panels_pane:field_basic_image_image',
'token-fieldable_panels_pane:field_basic_spotlight_items' => 'token-fieldable_panels_pane:field_basic_spotlight_items',
'token-fieldable_panels_pane:field_basic_table_table' => 'token-fieldable_panels_pane:field_basic_table_table',
'token-fieldable_panels_pane:field_basic_text_text' => 'token-fieldable_panels_pane:field_basic_text_text',
'token-fieldable_panels_pane:field_map_address' => 'token-fieldable_panels_pane:field_map_address',
'token-fieldable_panels_pane:field_map_information' => 'token-fieldable_panels_pane:field_map_information',
'token-fieldable_panels_pane:field_quick_links_links' => 'token-fieldable_panels_pane:field_quick_links_links',
'token-fieldable_panels_pane:field_video_file' => 'token-fieldable_panels_pane:field_video_file',
'token-field_collection_item:uuid' => 'token-field_collection_item:uuid',
'token-field_collection_item:item-id' => 'token-field_collection_item:item-id',
'token-field_collection_item:revision-id' => 'token-field_collection_item:revision-id',
'token-field_collection_item:archived' => 'token-field_collection_item:archived',
'token-field_collection_item:url' => 'token-field_collection_item:url',
'token-field_collection_item:field-com-date' => 'token-field_collection_item:field-com-date',
'token-field_collection_item:field-com-description' => 'token-field_collection_item:field-com-description',
'token-field_collection_item:field-membership-role' => 'token-field_collection_item:field-membership-role',
'token-field_collection_item:field_com_date' => 'token-field_collection_item:field_com_date',
'token-field_collection_item:field_com_description' => 'token-field_collection_item:field_com_description',
'token-field_collection_item:field_membership_role' => 'token-field_collection_item:field_membership_role',
'token-view:name' => 'token-view:name',
'token-view:description' => 'token-view:description',
'token-view:machine-name' => 'token-view:machine-name',
'token-view:title' => 'token-view:title',
'token-view:url' => 'token-view:url',
'token-rules_text:value' => 'token-rules_text:value',
'token-rules_integer:value' => 'token-rules_integer:value',
'token-rules_uri:value' => 'token-rules_uri:value',
'token-rules_token:value' => 'token-rules_token:value',
'token-rules_decimal:value' => 'token-rules_decimal:value',
'token-rules_date:value' => 'token-rules_date:value',
'token-rules_duration:value' => 'token-rules_duration:value',
'token-og_membership_type:id' => 'token-og_membership_type:id',
'token-og_membership_type:description' => 'token-og_membership_type:description',
'token-og_membership_type:status' => 'token-og_membership_type:status',
'token-og_membership_type:module' => 'token-og_membership_type:module',
'token-og_membership_type:language' => 'token-og_membership_type:language',
'token-og_membership:id' => 'token-og_membership:id',
'token-og_membership:type' => 'token-og_membership:type',
'token-og_membership:entity-type' => 'token-og_membership:entity-type',
'token-og_membership:group-type' => 'token-og_membership:group-type',
'token-og_membership:state' => 'token-og_membership:state',
'token-og_membership:created' => 'token-og_membership:created',
'token-og_membership:field-name' => 'token-og_membership:field-name',
'token-og_membership:language' => 'token-og_membership:language',
'token-og_membership:og-membership-request' => 'token-og_membership:og-membership-request',
'token-og_membership:field-membership-period' => 'token-og_membership:field-membership-period',
'token-og_membership:og_membership_request' => 'token-og_membership:og_membership_request',
'token-og_membership:field_membership_period' => 'token-og_membership:field_membership_period',
'token-search_api_server:id' => 'token-search_api_server:id',
'token-search_api_server:name' => 'token-search_api_server:name',
'token-search_api_server:description' => 'token-search_api_server:description',
'token-search_api_server:class' => 'token-search_api_server:class',
'token-search_api_server:enabled' => 'token-search_api_server:enabled',
'token-search_api_index:id' => 'token-search_api_index:id',
'token-search_api_index:name' => 'token-search_api_index:name',
'token-search_api_index:description' => 'token-search_api_index:description',
'token-search_api_index:server-entity' => 'token-search_api_index:server-entity',
'token-search_api_index:enabled' => 'token-search_api_index:enabled',
'token-search_api_index:read-only' => 'token-search_api_index:read-only',
'token-rules_config:id' => 'token-rules_config:id',
'token-rules_config:label' => 'token-rules_config:label',
'token-rules_config:plugin' => 'token-rules_config:plugin',
'token-rules_config:active' => 'token-rules_config:active',
'token-rules_config:weight' => 'token-rules_config:weight',
'token-rules_config:status' => 'token-rules_config:status',
'token-rules_config:dirty' => 'token-rules_config:dirty',
'token-rules_config:module' => 'token-rules_config:module',
'token-rules_config:owner' => 'token-rules_config:owner',
'token-rules_config:access-exposed' => 'token-rules_config:access-exposed',
'token-list<comment>:0' => 'token-list<comment>:0',
'token-list<comment>:1' => 'token-list<comment>:1',
'token-list<comment>:2' => 'token-list<comment>:2',
'token-list<comment>:3' => 'token-list<comment>:3',
'token-list<fieldable_panels_pane>:0' => 'token-list<fieldable_panels_pane>:0',
'token-list<fieldable_panels_pane>:1' => 'token-list<fieldable_panels_pane>:1',
'token-list<fieldable_panels_pane>:2' => 'token-list<fieldable_panels_pane>:2',
'token-list<fieldable_panels_pane>:3' => 'token-list<fieldable_panels_pane>:3',
'token-list<field_collection_item>:0' => 'token-list<field_collection_item>:0',
'token-list<field_collection_item>:1' => 'token-list<field_collection_item>:1',
'token-list<field_collection_item>:2' => 'token-list<field_collection_item>:2',
'token-list<field_collection_item>:3' => 'token-list<field_collection_item>:3',
'token-list<node>:0' => 'token-list<node>:0',
'token-list<node>:1' => 'token-list<node>:1',
'token-list<node>:2' => 'token-list<node>:2',
'token-list<node>:3' => 'token-list<node>:3',
'token-list<file>:0' => 'token-list<file>:0',
'token-list<file>:1' => 'token-list<file>:1',
'token-list<file>:2' => 'token-list<file>:2',
'token-list<file>:3' => 'token-list<file>:3',
'token-list<term>:0' => 'token-list<term>:0',
'token-list<term>:1' => 'token-list<term>:1',
'token-list<term>:2' => 'token-list<term>:2',
'token-list<term>:3' => 'token-list<term>:3',
'token-list<vocabulary>:0' => 'token-list<vocabulary>:0',
'token-list<vocabulary>:1' => 'token-list<vocabulary>:1',
'token-list<vocabulary>:2' => 'token-list<vocabulary>:2',
'token-list<vocabulary>:3' => 'token-list<vocabulary>:3',
'token-list<user>:0' => 'token-list<user>:0',
'token-list<user>:1' => 'token-list<user>:1',
'token-list<user>:2' => 'token-list<user>:2',
'token-list<user>:3' => 'token-list<user>:3',
'token-list<rules_config>:0' => 'token-list<rules_config>:0',
'token-list<rules_config>:1' => 'token-list<rules_config>:1',
'token-list<rules_config>:2' => 'token-list<rules_config>:2',
'token-list<rules_config>:3' => 'token-list<rules_config>:3',
'token-list<date>:0' => 'token-list<date>:0',
'token-list<date>:1' => 'token-list<date>:1',
'token-list<date>:2' => 'token-list<date>:2',
'token-list<date>:3' => 'token-list<date>:3',
'token-node:og-membership' => 0,
'token-node:og-membership--1' => 0,
'token-node:og-membership--2' => 0,
'token-node:og-membership--3' => 0,
'token-node:og-group-ref--og-membership' => 0,
'token-node:og-group-ref--og-membership--1' => 0,
'token-node:og-group-ref--og-membership--2' => 0,
'token-node:og-group-ref--og-membership--3' => 0,
'token-user:og-membership' => 0,
'token-user:og-membership--1' => 0,
'token-user:og-membership--2' => 0,
'token-user:og-membership--3' => 0,
'token-user:og-user-node--og-membership' => 0,
'token-user:og-user-node--og-membership--1' => 0,
'token-user:og-user-node--og-membership--2' => 0,
'token-user:og-user-node--og-membership--3' => 0,
'token-current-page:query' => 0,
'token-fieldable_panels_pane:uuid' => 0,
'token-fieldable_panels_pane:vuuid' => 0,
'token-list<og_membership_type>:0' => 0,
'token-list<og_membership_type>:1' => 0,
'token-list<og_membership_type>:2' => 0,
'token-list<og_membership_type>:3' => 0,
'token-list<og_membership>:0' => 0,
'token-list<og_membership>:1' => 0,
'token-list<og_membership>:2' => 0,
'token-list<og_membership>:3' => 0,
'token-list<relation>:0' => 0,
'token-list<relation>:1' => 0,
'token-list<relation>:2' => 0,
'token-list<relation>:3' => 0,
'token-list<search_api_server>:0' => 0,
'token-list<search_api_server>:1' => 0,
'token-list<search_api_server>:2' => 0,
'token-list<search_api_server>:3' => 0,
'token-list<search_api_index>:0' => 0,
'token-list<search_api_index>:1' => 0,
'token-list<search_api_index>:2' => 0,
'token-list<search_api_index>:3' => 0,
'block-comment-recent' => 'block-comment-recent',
'block-node-syndicate' => 'block-node-syndicate',
'block-node-recent' => 'block-node-recent',
'block-search-form' => 'block-search-form',
'block-system-powered-by' => 'block-system-powered-by',
'block-system-help' => 'block-system-help',
'block-system-navigation' => 'block-system-navigation',
'block-system-user-menu' => 'block-system-user-menu',
'block-calendar-calendar_legend' => 0,
'block-diff-inline' => 0,
'block-facetapi-1Cpx6naJU4Y3YvKVc0vcLK7Yo0ahaN0l' => 0,
'block-facetapi-fA1pg0Ubd1zgx1mvzHkFUGaNoMb4Gs0s' => 0,
'block-facetapi-KUKFiOe98uMHIF2e3Oyo9v926b5amSgB' => 0,
'block-menu-devel' => 0,
'block-shortcut-shortcuts' => 0,
'block-statistics-popular' => 0,
'block-system-management' => 0,
'block-system-main-menu' => 0,