-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththinker.py
2636 lines (2613 loc) · 227 KB
/
thinker.py
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
import warnings
warnings.filterwarnings("ignore", message=r"\[W008\]", category=UserWarning)
from collections import Counter
import asyncio
import nltk
from nltk.sentiment import SentimentIntensityAnalyzer
import re
import spacy
import RAKE
import time
from heapq import nlargest
import collections
import os.path
from os import path
import os
import sys
import json
import io
import config
async def go(code):
nlp = config.nlp
stop = config.stop
text = code
corp_list, PROPN_list, sentences_list, combined_thoughts = [], [], [], []
corp_list, bi_list, tri_list, rake_list = [], [], [], []
text_list = text.splitlines()
for line in text_list:
line = re.sub('<.*?>', '', line)
corp_list.append(line)
art_title = corp_list[0]
nlp_title = nlp(art_title)
if len(nlp_title) > 15:
tit_sent_list = []
for tit_sent in nlp_title.sents:
tit_sent_list.append(tit_sent)
nlp_title = nlp(tit_sent_list[0].text)
if len(nlp_title) > 15:
cut_0 = nlp_title[0:14]
nlp_title = nlp(cut_0.text)
text_title = nlp_title.text
PROPN_list.append(text_title)
corp_list_joined = ' '.join(corp_list)
doc = nlp(corp_list_joined)
wordsCL = []
for token in doc:
wordsCL.append(token.text)
word_count = str(len(wordsCL))
wordsCL = [word for word in wordsCL if len(word) > 1]
wordsCL = [word.lower() for word in wordsCL]
wordsCL = [word for word in wordsCL if word not in stop and word.isalpha()]
adult = config.adult
adult_breast_enlargement = config.adult_breast_enlargement
adult_condoms = config.adult_condoms
adult_contraception = config.adult_contraception
adult_erection = config.adult_erection
adult_prostitution = config.adult_prostitution
animals_animals = config.animals_animals
animals_birds = config.animals_birds
animals_cats = config.animals_cats
animals_dogs = config.animals_dogs
animals_exotic_animals = config.animals_exotic_animals
animals_exotic_pets = config.animals_exotic_pets
animals_fish_aquaria = config.animals_fish_aquaria
animals_horses = config.animals_horses
animals_pet_food = config.animals_pet_food
animals_pet_products = config.animals_pet_products
animals_pet_supplies = config.animals_pet_supplies
animals_pets = config.animals_pets
animals_pets_amphibians = config.animals_pets_amphibians
animals_pets_fish = config.animals_pets_fish
animals_pets_rabbits = config.animals_pets_rabbits
animals_pets_reptiles = config.animals_pets_reptiles
animals_pets_rodents = config.animals_pets_rodents
animals_veterinarians = config.animals_veterinarians
animals_wildlife = config.animals_wildlife
arts_acting = config.arts_acting
arts_animation = config.arts_animation
arts_anime = config.arts_anime
arts_architecture = config.arts_architecture
arts_art_galleries = config.arts_art_galleries
arts_art_museums = config.arts_art_museums
arts_arts = config.arts_arts
arts_audio_equipment = config.arts_audio_equipment
arts_bars_listings = config.arts_bars_listings
arts_blues_music = config.arts_blues_music
arts_cartoons = config.arts_cartoons
arts_cd_shopping = config.arts_cd_shopping
arts_celebrities = config.arts_celebrities
arts_circus = config.arts_circus
arts_classical_music = config.arts_classical_music
arts_clubs_listings = config.arts_clubs_listings
arts_coloring = config.arts_coloring
arts_comics = config.arts_comics
arts_concerts = config.arts_concerts
arts_conventions = config.arts_conventions
arts_country_music = config.arts_country_music
arts_dance_electronic_music = config.arts_dance_electronic_music
arts_design = config.arts_design
arts_digital_art = config.arts_digital_art
arts_drawing = config.arts_drawing
arts_entertainment = config.arts_entertainment
arts_entertainment_industry = config.arts_entertainment_industry
arts_events_listings = config.arts_events_listings
arts_experimental_music = config.arts_experimental_music
arts_expos = config.arts_expos
arts_festivals = config.arts_festivals
arts_film_festivals = config.arts_film_festivals
arts_film_industry = config.arts_film_industry
arts_flash_trivia = config.arts_flash_trivia
arts_funny_pictures = config.arts_funny_pictures
arts_funny_videos = config.arts_funny_videos
arts_hip_hop = config.arts_hip_hop
arts_humor = config.arts_humor
arts_image_galleries = config.arts_image_galleries
arts_industrial_music = config.arts_industrial_music
arts_jazz_music = config.arts_jazz_music
arts_magic = config.arts_magic
arts_manga = config.arts_manga
arts_memes = config.arts_memes
arts_movie_showtimes = config.arts_movie_showtimes
arts_movie_soundtracks = config.arts_movie_soundtracks
arts_movies = config.arts_movies
arts_music = config.arts_music
arts_music_downloads = config.arts_music_downloads
arts_music_instruction = config.arts_music_instruction
arts_music_instruction_bass = config.arts_music_instruction_bass
arts_music_instruction_drums = config.arts_music_instruction_drums
arts_music_instruction_keyboard = config.arts_music_instruction_keyboard
arts_music_instrument_guitar = config.arts_music_instrument_guitar
arts_music_reference = config.arts_music_reference
arts_music_streams = config.arts_music_streams
arts_music_videos = config.arts_music_videos
arts_nightlife = config.arts_nightlife
arts_occult = config.arts_occult
arts_offbeat = config.arts_offbeat
arts_online_media = config.arts_online_media
arts_online_video = config.arts_online_video
arts_opera = config.arts_opera
arts_painting = config.arts_painting
arts_paranormal = config.arts_paranormal
arts_performing_arts = config.arts_performing_arts
arts_photgraphy = config.arts_photgraphy
arts_political_humor = config.arts_political_humor
arts_pop_music = config.arts_pop_music
arts_radio_music = config.arts_radio_music
arts_recording_industry = config.arts_recording_industry
arts_religious_music = config.arts_religious_music
arts_rock_music = config.arts_rock_music
arts_surveys = config.arts_surveys
arts_trivia = config.arts_trivia
arts_tv = config.arts_tv
arts_tv_commercials = config.arts_tv_commercials
arts_tv_industry = config.arts_tv_industry
arts_tv_shows = config.arts_tv_shows
arts_visual_art = config.arts_visual_art
beauty_beauty = config.beauty_beauty
beauty_beauty_pageants = config.beauty_beauty_pageants
beauty_body_art = config.beauty_body_art
beauty_body_care = config.beauty_body_care
beauty_cosmetic_procedures = config.beauty_cosmetic_procedures
beauty_cosmetic_surgery = config.beauty_cosmetic_surgery
beauty_cosmetics = config.beauty_cosmetics
beauty_cosmetology = config.beauty_cosmetology
beauty_exercise = config.beauty_exercise
beauty_exercise_equipment = config.beauty_exercise_equipment
beauty_face_care = config.beauty_face_care
beauty_fashion = config.beauty_fashion
beauty_fashion_collections = config.beauty_fashion_collections
beauty_fitness = config.beauty_fitness
beauty_fitness_antioxidants = config.beauty_fitness_antioxidants
beauty_hair_care = config.beauty_hair_care
beauty_hair_loss = config.beauty_hair_loss
beauty_hair_removal = config.beauty_hair_removal
beauty_hygiene_products = config.beauty_hygiene_products
beauty_massage = config.beauty_massage
beauty_nail_care = config.beauty_nail_care
beauty_perfumes = config.beauty_perfumes
beauty_skin_care = config.beauty_skin_care
beauty_spas = config.beauty_spas
beauty_weight_loss = config.beauty_weight_loss
books_books = config.books_books
books_children_books = config.books_children_books
books_e_books = config.books_e_books
books_fan_fiction = config.books_fan_fiction
books_literary_classics = config.books_literary_classics
books_poetry = config.books_poetry
books_writers_resources = config.books_writers_resources
business_advertising = config.business_advertising
business_aerospace = config.business_aerospace
business_affiliate_marketing = config.business_affiliate_marketing
business_agricultural_equipment = config.business_agricultural_equipment
business_agriculture = config.business_agriculture
business_alternative_energy = config.business_alternative_energy
business_automotive_industry = config.business_automotive_industry
business_biotech_industry = config.business_biotech_industry
business_business = config.business_business
business_business_capital = config.business_business_capital
business_business_consulting = config.business_business_consulting
business_business_education = config.business_business_education
business_business_fire_security = config.business_business_fire_security
business_business_management = config.business_business_management
business_business_operations = config.business_business_operations
business_business_plans = config.business_business_plans
business_business_presentations = config.business_business_presentations
business_business_services = config.business_business_services
business_business_venture = config.business_business_venture
business_chemical_industry = config.business_chemical_industry
business_cleaning_agents_industry = config.business_cleaning_agents_industry
business_commercial_vehicle = config.business_commercial_vehicle
business_construction = config.business_construction
business_construction_materials = config.business_construction_materials
business_corporate_events = config.business_corporate_events
business_defense_technology = config.business_defense_technology
business_delivery_industry = config.business_delivery_industry
business_e_commerce = config.business_e_commerce
business_editing_services = config.business_editing_services
business_electricity_services = config.business_electricity_services
business_energy_industry = config.business_energy_industry
business_event_planning = config.business_event_planning
business_finance_industry = config.business_finance_industry
business_food_service = config.business_food_service
business_forestry_industry = config.business_forestry_industry
business_freight_industry = config.business_freight_industry
business_gas_industry = config.business_gas_industry
business_heavy_equipment_industry = config.business_heavy_equipment_industry
business_hospitality_industry = config.business_hospitality_industry
business_hospitality_planning = config.business_hospitality_planning
business_industrial_equipment = config.business_industrial_equipment
business_industry = config.business_industry
business_livestock_industry = config.business_livestock_industry
business_logistics_industry = config.business_logistics_industry
business_maintenance_industry = config.business_maintenance_industry
business_manufacturing_industry = config.business_manufacturing_industry
business_maritime_transport = config.business_maritime_transport
business_marketing = config.business_marketing
business_metals_mining_industry = config.business_metals_mining_industry
business_mining_industry = config.business_mining_industry
business_mining_precious_metals_industry = config.business_mining_precious_metals_industry
business_mlm = config.business_mlm
business_moving_industry = config.business_moving_industry
business_nonwovens_industry = config.business_nonwovens_industry
business_office_services = config.business_office_services
business_office_supplies = config.business_office_supplies
business_oil = config.business_oil
business_oil_industry = config.business_oil_industry
business_online_business = config.business_online_business
business_packaging_industry = config.business_packaging_industry
business_parking = config.business_parking
business_pharmaceuticals_industry = config.business_pharmaceuticals_industry
business_plastics_industry = config.business_plastics_industry
business_polymers_industry = config.business_polymers_industry
business_powerwasher = config.business_powerwasher
business_printing_industry = config.business_printing_industry
business_public_relations = config.business_public_relations
business_public_transportation = config.business_public_transportation
business_publishing_industry = config.business_publishing_industry
business_rail_transport = config.business_rail_transport
business_renewable_energy = config.business_renewable_energy
business_retail_equipment = config.business_retail_equipment
business_retail_industry = config.business_retail_industry
business_security = config.business_security
business_small_business = config.business_small_business
business_space_technology = config.business_space_technology
business_textiles_industry = config.business_textiles_industry
business_trade_industry = config.business_trade_industry
business_transportation_industry = config.business_transportation_industry
business_truckin_industry = config.business_truckin_industry
business_urban_transportation = config.business_urban_transportation
business_utilities_industry = config.business_utilities_industry
business_writing_services = config.business_writing_services
computer_bluetooth = config.computer_bluetooth
computers_apple_computer = config.computers_apple_computer
computers_audio_equipment = config.computers_audio_equipment
computers_business_software = config.computers_business_software
computers_c_language = config.computers_c_language
computers_cad_cam = config.computers_cad_cam
computers_camera = config.computers_camera
computers_camera_equipment = config.computers_camera_equipment
computers_car_electronics = config.computers_car_electronics
computers_computer_components = config.computers_computer_components
computers_computer_drives_storage = config.computers_computer_drives_storage
computers_computer_hacking = config.computers_computer_hacking
computers_computer_hardware = config.computers_computer_hardware
computers_computer_networking = config.computers_computer_networking
computers_computer_peripherals = config.computers_computer_peripherals
computers_computer_security = config.computers_computer_security
computers_computers = config.computers_computers
computers_computers_programming = config.computers_computers_programming
computers_computers_software = config.computers_computers_software
computers_consumer_electronics = config.computers_consumer_electronics
computers_data_management = config.computers_data_management
computers_dedicated_server = config.computers_dedicated_server
computers_desktop_computers = config.computers_desktop_computers
computers_drones = config.computers_drones
computers_electronic_components = config.computers_electronic_components
computers_electronics = config.computers_electronics
computers_elm_language = config.computers_elm_language
computers_enterprise_technology = config.computers_enterprise_technology
computers_game_consoles = config.computers_game_consoles
computers_go_language = config.computers_go_language
computers_gps_navigation = config.computers_gps_navigation
computers_hd = config.computers_hd
computers_hosting = config.computers_hosting
computers_image_software = config.computers_image_software
computers_internet_software = config.computers_internet_software
computers_it = config.computers_it
computers_java_language = config.computers_java_language
computers_javascript_language = config.computers_javascript_language
computers_laptops_computers = config.computers_laptops_computers
computers_linux = config.computers_linux
computers_mac = config.computers_mac
computers_mac = config.computers_mac
computers_marketing_software = config.computers_marketing_software
computers_microsoft = config.computers_microsoft
computers_microsoft_windows = config.computers_microsoft_windows
computers_multimedia_software = config.computers_multimedia_software
computers_music_software = config.computers_music_software
computers_network_monitoring = config.computers_network_monitoring
computers_networking_data_formats = config.computers_networking_data_formats
computers_operating_systems = config.computers_operating_systems
computers_pc = config.computers_pc
computers_php_language = config.computers_php_language
computers_power_supplies = config.computers_power_supplies
computers_proxies = config.computers_proxies
computers_python_language = config.computers_python_language
computers_rc_aircraft = config.computers_rc_aircraft
computers_ruby_language = config.computers_ruby_language
computers_rust_language = config.computers_rust_language
computers_scala_language = config.computers_scala_language
computers_sd_card = config.computers_sd_card
computers_seo_software = config.computers_seo_software
computers_software_cracking = config.computers_software_cracking
computers_software_device_drivers = config.computers_software_device_drivers
computers_ssd = config.computers_ssd
computers_surveillance_camera = config.computers_surveillance_camera
computers_swift_language = config.computers_swift_language
computers_torrent = config.computers_torrent
computers_torrent_software = config.computers_torrent_software
computers_utilities_software = config.computers_utilities_software
computers_video_equipment = config.computers_video_equipment
computers_video_software = config.computers_video_software
computers_vpns = config.computers_vpns
computers_wifi = config.computers_wifi
finance_accounting = config.finance_accounting
finance_auditing = config.finance_auditing
finance_auto_insurance = config.finance_auto_insurance
finance_banking = config.finance_banking
finance_billing = config.finance_billing
finance_boat_insurance = config.finance_boat_insurance
finance_car_finance = config.finance_car_finance
finance_commodities_trading = config.finance_commodities_trading
finance_credit = config.finance_credit
finance_credit_cards = config.finance_credit_cards
finance_credit_monitoring = config.finance_credit_monitoring
finance_credit_reporting = config.finance_credit_reporting
finance_cryptocurrencies = config.finance_cryptocurrencies
finance_cryptocurrencies_binance_coin = config.finance_cryptocurrencies_binance_coin
finance_cryptocurrencies_bitcoin = config.finance_cryptocurrencies_bitcoin
finance_cryptocurrencies_bitcoin_cash = config.finance_cryptocurrencies_bitcoin_cash
finance_cryptocurrencies_cardano = config.finance_cryptocurrencies_cardano
finance_cryptocurrencies_chainlink = config.finance_cryptocurrencies_chainlink
finance_cryptocurrencies_dash = config.finance_cryptocurrencies_dash
finance_cryptocurrencies_dogecoin = config.finance_cryptocurrencies_dogecoin
finance_cryptocurrencies_ethereum = config.finance_cryptocurrencies_ethereum
finance_cryptocurrencies_litecoin = config.finance_cryptocurrencies_litecoin
finance_cryptocurrencies_monero = config.finance_cryptocurrencies_monero
finance_cryptocurrencies_nxt = config.finance_cryptocurrencies_nxt
finance_cryptocurrencies_peercoin = config.finance_cryptocurrencies_peercoin
finance_cryptocurrencies_polkadot = config.finance_cryptocurrencies_polkadot
finance_cryptocurrencies_stellar = config.finance_cryptocurrencies_stellar
finance_cryptocurrencies_tether = config.finance_cryptocurrencies_tether
finance_finance = config.finance_finance
finance_finance_grants = config.finance_finance_grants
finance_finance_investing = config.finance_finance_investing
finance_finance_scholarships = config.finance_finance_scholarships
finance_financial_aid = config.finance_financial_aid
finance_financial_planning = config.finance_financial_planning
finance_futures_trading = config.finance_futures_trading
finance_health_insurance = config.finance_health_insurance
finance_home_insurance = config.finance_home_insurance
finance_insurance = config.finance_insurance
finance_invest_home = config.finance_invest_home
finance_investing_bonds = config.finance_investing_bonds
finance_investing_currencies = config.finance_investing_currencies
finance_investing_gold = config.finance_investing_gold
finance_investing_oil = config.finance_investing_oil
finance_investing_precious_metals = config.finance_investing_precious_metals
finance_investing_silver = config.finance_investing_silver
finance_investing_stocks = config.finance_investing_stocks
finance_invoicing = config.finance_invoicing
finance_lending = config.finance_lending
finance_life_insurance = config.finance_life_insurance
finance_loans = config.finance_loans
finance_retirement_pension = config.finance_retirement_pension
finance_retirement_planning = config.finance_retirement_planning
finance_stocks = config.finance_stocks
finance_tax_preparation = config.finance_tax_preparation
food_baked_goods = config.food_baked_goods
food_bbq_cooking = config.food_bbq_cooking
food_bbq_recipes = config.food_bbq_recipes
food_beer = config.food_beer
food_beverage_drinks = config.food_beverage_drinks
food_breakfast_foods = config.food_breakfast_foods
food_candy = config.food_candy
food_coffee = config.food_coffee
food_cooking_recipes = config.food_cooking_recipes
food_dessert_recipes = config.food_dessert_recipes
food_drink = config.food_drink
food_fast_food = config.food_fast_food
food_food = config.food_food
food_food_cooking = config.food_food_cooking
food_food_grains = config.food_food_grains
food_grill_cooking = config.food_grill_cooking
food_grill_recipes = config.food_grill_recipes
food_grocery_retailers = config.food_grocery_retailers
food_grocery_stores = config.food_grocery_stores
food_juice_beverages = config.food_juice_beverages
food_liquor = config.food_liquor
food_meat_foods = config.food_meat_foods
food_pasta = config.food_pasta
food_pizzerias = config.food_pizzerias
food_restaurant_reservations = config.food_restaurant_reservations
food_restaurant_reviews = config.food_restaurant_reviews
food_restaurants = config.food_restaurants
food_seafood = config.food_seafood
food_snack_foods = config.food_snack_foods
food_soft_drinks = config.food_soft_drinks
food_soup_recipes = config.food_soup_recipes
food_spirit_alcohol = config.food_spirit_alcohol
food_stew_recipes = config.food_stew_recipes
food_sweets = config.food_sweets
food_tea = config.food_tea
food_wine = config.food_wine
games_arcade_games = config.games_arcade_games
games_billiards_games = config.games_billiards_games
games_blackjack_games = config.games_blackjack_games
games_board_games = config.games_board_games
games_brainteasers = config.games_brainteasers
games_card_games = config.games_card_games
games_casino_games = config.games_casino_games
games_casual_video_games = config.games_casual_video_games
games_checkers_games = config.games_checkers_games
games_chess_game = config.games_chess_game
games_collectible_card_games = config.games_collectible_card_games
games_collectible_cards = config.games_collectible_cards
games_coloring = config.games_coloring
games_drawing = config.games_drawing
games_dress_up_games = config.games_dress_up_games
games_family_drawing_coloring = config.games_family_drawing_coloring
games_family_dress_up_games = config.games_family_dress_up_games
games_family_games = config.games_family_games
games_gambling = config.games_gambling
games_games = config.games_games
games_lottery = config.games_lottery
games_online_massively_multiplayer_games = config.games_online_massively_multiplayer_games
games_poker_games = config.games_poker_games
games_puzzles = config.games_puzzles
games_roleplaying_games = config.games_roleplaying_games
games_strategy_games = config.games_strategy_games
games_table_games = config.games_table_games
games_video_dance_games = config.games_video_dance_games
games_video_driving_games = config.games_video_driving_games
games_video_fighting_games = config.games_video_fighting_games
games_video_flying_games = config.games_video_flying_games
games_video_game_emulation = config.games_video_game_emulation
games_video_games = config.games_video_games
games_video_puzzle_games = config.games_video_puzzle_games
games_video_racing_games = config.games_video_racing_games
games_video_sandbox_games = config.games_video_sandbox_games
games_video_shooter_games = config.games_video_shooter_games
games_video_simulation_games = config.games_video_simulation_games
games_video_sports_games = config.games_video_sports_games
games_video_strategy_games = config.games_video_strategy_games
games_video_war_games = config.games_video_war_games
games_video_word_games = config.games_video_word_games
games_war_games = config.games_war_games
games_word_games = config.games_word_games
general_alternative_energy = config.general_alternative_energy
general_conservation = config.general_conservation
general_disorder = config.general_disorder
general_energy = config.general_energy
general_masonry = config.general_masonry
general_repair = config.general_repair
general_utilities = config.general_utilities
health_aids = config.health_aids
health_alcohol_testing = config.health_alcohol_testing
health_alcohol_treatment = config.health_alcohol_treatment
health_allergies = config.health_allergies
health_anxiety = config.health_anxiety
health_arthritis = config.health_arthritis
health_assisted_living = config.health_assisted_living
health_cancer = config.health_cancer
health_conditions_ear = config.health_conditions_ear
health_conditions_ear_nose_throat = config.health_conditions_ear_nose_throat
health_conditions_ethroat = config.health_conditions_ethroat
health_conditions_nose = config.health_conditions_nose
health_contacts = config.health_contacts
health_covid = config.health_covid
health_dental_care = config.health_dental_care
health_depression = config.health_depression
health_diabetes = config.health_diabetes
health_diets = config.health_diets
health_disabilities = config.health_disabilities
health_doctors_offices = config.health_doctors_offices
health_drug_testing = config.health_drug_testing
health_drug_treatment = config.health_drug_treatment
health_eating_disorders = config.health_eating_disorders
health_endocrine_conditions = config.health_endocrine_conditions
health_eyeglasses = config.health_eyeglasses
health_genetic_disorders = config.health_genetic_disorders
health_health = config.health_health
health_health_aging = config.health_health_aging
health_health_conditions = config.health_health_conditions
health_health_pharmacy = config.health_health_pharmacy
health_health_quit_smoking = config.health_health_quit_smoking
health_health_records = config.health_health_records
health_heart_conditions = config.health_heart_conditions
health_hiv = config.health_hiv
health_homeopathy = config.health_homeopathy
health_hospitals = config.health_hospitals
health_hypertension = config.health_hypertension
health_immune_system = config.health_immune_system
health_infectious_diseases = config.health_infectious_diseases
health_medical_devices = config.health_medical_devices
health_medical_equipment = config.health_medical_equipment
health_medical_facilities = config.health_medical_facilities
health_medical_procedures = config.health_medical_procedures
health_medical_research = config.health_medical_research
health_medical_services = config.health_medical_services
health_medical_training = config.health_medical_training
health_medications = config.health_medications
health_meditation = config.health_meditation
health_men_health = config.health_men_health
health_mental_health = config.health_mental_health
health_mental_therapy = config.health_mental_therapy
health_neurological_conditions = config.health_neurological_conditions
health_nursing_service = config.health_nursing_service
health_nutrition = config.health_nutrition
health_nutrition_supplements = config.health_nutrition_supplements
health_obesity = config.health_obesity
health_occupational_health = config.health_occupational_health
health_occupational_safety = config.health_occupational_safety
health_oral_care = config.health_oral_care
health_pain_management = config.health_pain_management
health_physical_therapy = config.health_physical_therapy
health_public_health = config.health_public_health
health_reproductive_health = config.health_reproductive_health
health_respiratory_conditions = config.health_respiratory_conditions
health_restricted_diets = config.health_restricted_diets
health_skin_conditions = config.health_skin_conditions
health_sleep_disorders = config.health_sleep_disorders
health_special_diets = config.health_special_diets
health_steroids_abuse = config.health_steroids_abuse
health_stress = config.health_stress
health_substance_abuse = config.health_substance_abuse
health_therapy = config.health_therapy
health_trauma = config.health_trauma
health_treatment_centers = config.health_treatment_centers
health_vision_care = config.health_vision_care
health_vitamins_supplements = config.health_vitamins_supplements
health_women_health = config.health_women_health
hobbies_arts_crafts = config.hobbies_arts_crafts
hobbies_boating = config.hobbies_boating
hobbies_camping = config.hobbies_camping
hobbies_clubs = config.hobbies_clubs
hobbies_contests = config.hobbies_contests
hobbies_crafts = config.hobbies_crafts
hobbies_fiber_crafts = config.hobbies_fiber_crafts
hobbies_fishing = config.hobbies_fishing
hobbies_hiking = config.hobbies_hiking
hobbies_hobbies = config.hobbies_hobbies
hobbies_leisure = config.hobbies_leisure
hobbies_merit_prizes = config.hobbies_merit_prizes
hobbies_model_railroads = config.hobbies_model_railroads
hobbies_model_trains = config.hobbies_model_trains
hobbies_modeling = config.hobbies_modeling
hobbies_organizations = config.hobbies_organizations
hobbies_outdoors = config.hobbies_outdoors
hobbies_paintball = config.hobbies_paintball
hobbies_radio_control = config.hobbies_radio_control
hobbies_seasonal_events = config.hobbies_seasonal_events
hobbies_special_holidays = config.hobbies_special_holidays
hobbies_special_occasions = config.hobbies_special_occasions
hobbies_surfing = config.hobbies_surfing
hobbies_swimming = config.hobbies_swimming
hobbies_textile_crafts = config.hobbies_textile_crafts
hobbies_weddings = config.hobbies_weddings
hobbies_youth_clubs = config.hobbies_youth_clubs
hobbies_youth_organizations = config.hobbies_youth_organizations
hobbies_youth_resources = config.hobbies_youth_resources
home_bed = config.home_bed
home_curtains_treatments = config.home_curtains_treatments
home_dining_furniture = config.home_dining_furniture
home_domestic_services = config.home_domestic_services
home_foundation = config.home_foundation
home_garden = config.home_garden
home_garden_pest_control = config.home_garden_pest_control
home_home = config.home_home
home_home_appliances = config.home_home_appliances
home_home_carpets = config.home_home_carpets
home_home_climate_control = config.home_home_climate_control
home_home_cookware = config.home_home_cookware
home_home_curtains = config.home_home_curtains
home_home_decoration = config.home_home_decoration
home_home_dining_room = config.home_home_dining_room
home_home_diningware = config.home_home_diningware
home_home_dryers = config.home_home_dryers
home_home_fireplaces = config.home_home_fireplaces
home_home_flooring = config.home_home_flooring
home_home_furnishings = config.home_home_furnishings
home_home_furniture = config.home_home_furniture
home_home_garden = config.home_home_garden
home_home_garden_bed_bath_bathroom = config.home_home_garden_bed_bath_bathroom
home_home_garden_domestic_services_cleaning_services = config.home_home_garden_domestic_services_cleaning_services
home_home_garden_laundry = config.home_home_garden_laundry
home_home_garden_yard_patio_lawn_mowers = config.home_home_garden_yard_patio_lawn_mowers
home_home_gardening = config.home_home_gardening
home_home_gym = config.home_home_gym
home_home_hvac = config.home_home_hvac
home_home_improvement = config.home_home_improvement
home_home_improvement_doors = config.home_home_improvement_doors
home_home_improvement_flooring = config.home_home_improvement_flooring
home_home_improvement_plumbing = config.home_home_improvement_plumbing
home_home_improvement_windows = config.home_home_improvement_windows
home_home_kitchen = config.home_home_kitchen
home_home_landscaping = config.home_home_landscaping
home_home_lighting = config.home_home_lighting
home_home_nursery = config.home_home_nursery
home_home_pest_control = config.home_home_pest_control
home_home_playroom = config.home_home_playroom
home_home_plumbing = config.home_home_plumbing
home_home_rugs = config.home_home_rugs
home_home_safety = config.home_home_safety
home_home_saunas = config.home_home_saunas
home_home_security = config.home_home_security
home_home_shelving = config.home_home_shelving
home_home_spas = config.home_home_spas
home_home_storage = config.home_home_storage
home_home_stoves = config.home_home_stoves
home_home_swimming_pools = config.home_home_swimming_pools
home_home_washers = config.home_home_washers
home_home_windows = config.home_home_windows
home_house_finishing = config.home_house_finishing
home_house_painting = config.home_house_painting
home_interior_decor = config.home_interior_decor
home_lamps = config.home_lamps
home_living_room_furniture = config.home_living_room_furniture
home_major_kitchen_appliances = config.home_major_kitchen_appliances
home_patio = config.home_patio
home_patio_funiture = config.home_patio_funiture
home_pest_control = config.home_pest_control
home_power_tools = config.home_power_tools
home_small_kitchen_appliances = config.home_small_kitchen_appliances
home_window_treatments = config.home_window_treatments
home_yard = config.home_yard
internet_affiliate_programs = config.internet_affiliate_programs
internet_cable_providers = config.internet_cable_providers
internet_cable_satellite_providers = config.internet_cable_satellite_providers
internet_communication_equipment = config.internet_communication_equipment
internet_email = config.internet_email
internet_instant_messaging = config.internet_instant_messaging
internet_internet = config.internet_internet
internet_internet_service_providers = config.internet_internet_service_providers
internet_internet_services = config.internet_internet_services
internet_mobile_accessories = config.internet_mobile_accessories
internet_mobile_add_ons = config.internet_mobile_add_ons
internet_mobile_apps = config.internet_mobile_apps
internet_mobile_communications = config.internet_mobile_communications
internet_mobile_phones = config.internet_mobile_phones
internet_opera_browser = config.internet_opera_browser
internet_radio_equipment = config.internet_radio_equipment
internet_search = config.internet_search
internet_seo = config.internet_seo
internet_telecom = config.internet_telecom
internet_telecom_equipment = config.internet_telecom_equipment
internet_text_messaging = config.internet_text_messaging
internet_video_chat = config.internet_video_chat
internet_voice_chat = config.internet_voice_chat
internet_web_design = config.internet_web_design
internet_web_development = config.internet_web_development
internet_web_services = config.internet_web_services
internet_website = config.internet_website
internet_wireless = config.internet_wireless
internet_wireless_accessories = config.internet_wireless_accessories
jobs_career_planning = config.jobs_career_planning
jobs_career_resources = config.jobs_career_resources
jobs_classroom_resources = config.jobs_classroom_resources
jobs_colleges = config.jobs_colleges
jobs_continuing_education = config.jobs_continuing_education
jobs_distance_learning = config.jobs_distance_learning
jobs_homeschooling = config.jobs_homeschooling
jobs_job_education = config.jobs_job_education
jobs_job_listings = config.jobs_job_listings
jobs_jobs = config.jobs_jobs
jobs_jobs_planning = config.jobs_jobs_planning
jobs_jobs_portfolios = config.jobs_jobs_portfolios
jobs_jobs_resources = config.jobs_jobs_resources
jobs_jobs_resumes = config.jobs_jobs_resumes
jobs_k_12 = config.jobs_k_12
jobs_online_courses = config.jobs_online_courses
jobs_primary_schooling_k_12 = config.jobs_primary_schooling_k_12
jobs_remote_education = config.jobs_remote_education
jobs_secondary_schooling = config.jobs_secondary_schooling
jobs_standardized_admissions_tests = config.jobs_standardized_admissions_tests
jobs_teaching_jobs = config.jobs_teaching_jobs
jobs_teaching_resources = config.jobs_teaching_resources
jobs_training_certification = config.jobs_training_certification
jobs_universities = config.jobs_universities
jobs_vocational_education = config.jobs_vocational_education
law_bankruptcy = config.law_bankruptcy
law_crime = config.law_crime
law_dui = config.law_dui
law_emergency_services = config.law_emergency_services
law_government = config.law_government
law_government_laws = config.law_government_laws
law_government_security = config.law_government_security
law_immigration_law = config.law_immigration_law
law_incarceration = config.law_incarceration
law_judiciary = config.law_judiciary
law_justice = config.law_justice
law_law = config.law_law
law_law_courts = config.law_law_courts
law_law_enforcement = config.law_law_enforcement
law_law_military = config.law_law_military
law_lawyers = config.law_lawyers
law_legal = config.law_legal
law_legal_education = config.law_legal_education
law_legal_services = config.law_legal_services
law_public_safety = config.law_public_safety
law_public_safety_services = config.law_public_safety_services
law_security_products = config.law_security_products
law_security_servicess = config.law_security_servicess
law_social_services = config.law_social_services
law_visa_law = config.law_visa_law
news_business_news = config.news_business_news
news_company_news = config.news_company_news
news_disasters = config.news_disasters
news_economics_news = config.news_economics_news
news_financial_news = config.news_financial_news
news_gossip = config.news_gossip
news_health_news = config.news_health_news
news_industry_news = config.news_industry_news
news_investigation_news = config.news_investigation_news
news_markets_news = config.news_markets_news
news_news = config.news_news
news_news_politics = config.news_news_politics
news_news_politics_communism = config.news_news_politics_communism
news_news_politics_democrats = config.news_news_politics_democrats
news_news_politics_fascism = config.news_news_politics_fascism
news_news_politics_green_party = config.news_news_politics_green_party
news_news_politics_libertarian = config.news_news_politics_libertarian
news_news_politics_republicans = config.news_news_politics_republicans
news_news_sports_news = config.news_news_sports_news
news_news_weather = config.news_news_weather
news_scandals = config.news_scandals
news_tabloid = config.news_tabloid
online_animated_gifs = config.online_animated_gifs
online_blogging = config.online_blogging
online_communities = config.online_communities
online_communities_social_networks = config.online_communities_social_networks
online_communities_virtual_worlds = config.online_communities_virtual_worlds
online_design_skins = config.online_design_skins
online_design_themes = config.online_design_themes
online_design_wallpapers = config.online_design_wallpapers
online_file_hosting = config.online_file_hosting
online_file_sharing = config.online_file_sharing
online_free_online = config.online_free_online
online_online_dating = config.online_online_dating
online_online_matrimonial = config.online_online_matrimonial
online_online_personals = config.online_online_personals
online_photo_rating = config.online_photo_rating
online_photo_sharing = config.online_photo_sharing
online_social_network_apps = config.online_social_network_apps
online_social_networks = config.online_social_networks
online_video_sharing = config.online_video_sharing
online_virtual_worlds = config.online_virtual_worlds
real_estate_commercial_properties = config.real_estate_commercial_properties
real_estate_foreclosed_properties = config.real_estate_foreclosed_properties
real_estate_listings_rentals = config.real_estate_listings_rentals
real_estate_listings_residential = config.real_estate_listings_residential
real_estate_real_estate = config.real_estate_real_estate
real_estate_real_estate_land = config.real_estate_real_estate_land
real_estate_real_estate_listings = config.real_estate_real_estate_listings
real_estate_real_estate_lots = config.real_estate_real_estate_lots
real_estate_real_estate_services = config.real_estate_real_estate_services
real_estate_residential_sales = config.real_estate_residential_sales
real_estate_timeshares = config.real_estate_timeshares
real_estate_vacation_properties = config.real_estate_vacation_properties
reference_arabic_resources = config.reference_arabic_resources
reference_autobiographies = config.reference_autobiographies
reference_biographies = config.reference_biographies
reference_business_listings = config.reference_business_listings
reference_calculators = config.reference_calculators
reference_calendars = config.reference_calendars
reference_chinese_resources = config.reference_chinese_resources
reference_dictionaries = config.reference_dictionaries
reference_directories = config.reference_directories
reference_encyclopedias = config.reference_encyclopedias
reference_english_resources = config.reference_english_resources
reference_folklore = config.reference_folklore
reference_foreign_language_resources = config.reference_foreign_language_resources
reference_french_resources = config.reference_french_resources
reference_geographic_reference = config.reference_geographic_reference
reference_german_resources = config.reference_german_resources
reference_hindi_resources = config.reference_hindi_resources
reference_language_resources = config.reference_language_resources
reference_libraries = config.reference_libraries
reference_maps = config.reference_maps
reference_museums = config.reference_museums
reference_myths = config.reference_myths
reference_personal_listings = config.reference_personal_listings
reference_public_records = config.reference_public_records
reference_quotations = config.reference_quotations
reference_reference = config.reference_reference
reference_reference_forms = config.reference_reference_forms
reference_reference_general_reference = config.reference_reference_general_reference
reference_reference_guides = config.reference_reference_guides
reference_reference_history = config.reference_reference_history
reference_reference_humanities = config.reference_reference_humanities
reference_reference_philosophy = config.reference_reference_philosophy
reference_reference_time = config.reference_reference_time
reference_reference_tools = config.reference_reference_tools
reference_resource = config.reference_resource
reference_russian_resources = config.reference_russian_resources
reference_spanish_resources = config.reference_spanish_resources
reference_templates = config.reference_templates
science_astronomy = config.science_astronomy
science_atmospheric_science = config.science_atmospheric_science
science_biology = config.science_biology
science_chemistry = config.science_chemistry
science_climate_change = config.science_climate_change
science_computer_science = config.science_computer_science
science_cosmos = config.science_cosmos
science_dynamics = config.science_dynamics
science_earth_science = config.science_earth_science
science_ecology = config.science_ecology
science_engineering = config.science_engineering
science_geology = config.science_geology
science_global_warming = config.science_global_warming
science_mathematics = config.science_mathematics
science_nasa = config.science_nasa
science_neuroscience = config.science_neuroscience
science_physics = config.science_physics
science_robotics = config.science_robotics
science_science = config.science_science
science_science_earth_sciences = config.science_science_earth_sciences
science_science_environment = config.science_science_environment
science_scientific_institutions = config.science_scientific_institutions
science_statistics = config.science_statistics
science_technology = config.science_technology
sensitive_subjects = config.sensitive_subjects
shopping = config.shopping
shopping_building_toys = config.shopping_building_toys
shopping_cards_greetings = config.shopping_cards_greetings
shopping_classifieds = config.shopping_classifieds
shopping_classifieds_buying = config.shopping_classifieds_buying
shopping_classifieds_selling = config.shopping_classifieds_selling
shopping_consumer_advocacy = config.shopping_consumer_advocacy
shopping_consumer_protection = config.shopping_consumer_protection
shopping_coupons = config.shopping_coupons
shopping_department_stores = config.shopping_department_stores
shopping_discounts = config.shopping_discounts
shopping_dolls = config.shopping_dolls
shopping_dolls_accessories = config.shopping_dolls_accessories
shopping_electronic_cigarettes = config.shopping_electronic_cigarettes
shopping_entertainment_media = config.shopping_entertainment_media
shopping_gifts = config.shopping_gifts
shopping_luxury_goods = config.shopping_luxury_goods
shopping_malls = config.shopping_malls
shopping_marijuana = config.shopping_marijuana
shopping_marijuana_accessories = config.shopping_marijuana_accessories
shopping_media_rentals = config.shopping_media_rentals
shopping_offers = config.shopping_offers
shopping_online_shopping = config.shopping_online_shopping
shopping_online_stores = config.shopping_online_stores
shopping_outdoor_backpacks = config.shopping_outdoor_backpacks
shopping_outdoor_hiking_boots = config.shopping_outdoor_hiking_boots
shopping_outdoor_tents = config.shopping_outdoor_tents
shopping_photo_services = config.shopping_photo_services
shopping_price_comparisons = config.shopping_price_comparisons
shopping_ride_on_toys = config.shopping_ride_on_toys
shopping_ride_on_wagons = config.shopping_ride_on_wagons
shopping_sales = config.shopping_sales
shopping_shopping_antiques = config.shopping_shopping_antiques
shopping_shopping_apparel = config.shopping_shopping_apparel
shopping_shopping_athletic_apparel = config.shopping_shopping_athletic_apparel
shopping_shopping_auctions = config.shopping_shopping_auctions
shopping_shopping_casual_apparel = config.shopping_shopping_casual_apparel
shopping_shopping_children_clothing = config.shopping_shopping_children_clothing
shopping_shopping_children_shopping = config.shopping_shopping_children_shopping
shopping_shopping_clothing_accessories = config.shopping_shopping_clothing_accessories
shopping_shopping_collectibles = config.shopping_shopping_collectibles
shopping_shopping_consumer_resources = config.shopping_shopping_consumer_resources
shopping_shopping_costumes = config.shopping_shopping_costumes
shopping_shopping_eyewear = config.shopping_shopping_eyewear
shopping_shopping_flowers = config.shopping_shopping_flowers
shopping_shopping_footwear = config.shopping_shopping_footwear
shopping_shopping_formal_wear = config.shopping_shopping_formal_wear
shopping_shopping_gifts = config.shopping_shopping_gifts
shopping_shopping_headwear = config.shopping_shopping_headwear
shopping_shopping_media = config.shopping_shopping_media
shopping_shopping_men = config.shopping_shopping_men
shopping_shopping_men_clothing = config.shopping_shopping_men_clothing
shopping_shopping_men_shoe = config.shopping_shopping_men_shoe
shopping_shopping_men_suit = config.shopping_shopping_men_suit
shopping_shopping_men_tie = config.shopping_shopping_men_tie
shopping_shopping_special = config.shopping_shopping_special
shopping_shopping_swimwear = config.shopping_shopping_swimwear
shopping_shopping_toys_die_cast_toy_vehicles = config.shopping_shopping_toys_die_cast_toy_vehicles
shopping_shopping_undergarments = config.shopping_shopping_undergarments
shopping_shopping_women = config.shopping_shopping_women
shopping_shopping_women_clothing = config.shopping_shopping_women_clothing
shopping_smokeless_tobacco = config.shopping_smokeless_tobacco
shopping_smoking_accessories = config.shopping_smoking_accessories
shopping_sports_equipment = config.shopping_sports_equipment
shopping_stuffed_toys = config.shopping_stuffed_toys
shopping_tobacco = config.shopping_tobacco
shopping_tobacco_accessories = config.shopping_tobacco_accessories
shopping_tobacco_cigarettes = config.shopping_tobacco_cigarettes
shopping_tobacco_cigars = config.shopping_tobacco_cigars
shopping_tobacco_pipe = config.shopping_tobacco_pipe
shopping_toys = config.shopping_toys
shopping_vaping = config.shopping_vaping
shopping_video_services = config.shopping_video_services
society_advocacy_labor = config.society_advocacy_labor
society_beliefs = config.society_beliefs
society_bisexual = config.society_bisexual
society_charity = config.society_charity
society_children = config.society_children
society_dating = config.society_dating
society_discrimination_advocacy = config.society_discrimination_advocacy
society_economics = config.society_economics
society_environmental_advocacy = config.society_environmental_advocacy
society_family_relationship_aunt = config.society_family_relationship_aunt
society_family_relationship_boyfriend = config.society_family_relationship_boyfriend
society_family_relationship_brother = config.society_family_relationship_brother
society_family_relationship_father = config.society_family_relationship_father
society_family_relationship_girlfriend = config.society_family_relationship_girlfriend
society_family_relationship_grandchild = config.society_family_relationship_grandchild
society_family_relationship_grandparent = config.society_family_relationship_grandparent
society_family_relationship_husband = config.society_family_relationship_husband
society_family_relationship_mother = config.society_family_relationship_mother
society_family_relationship_parent = config.society_family_relationship_parent
society_family_relationship_sister = config.society_family_relationship_sister
society_family_relationship_uncle = config.society_family_relationship_uncle
society_family_relationship_wife = config.society_family_relationship_wife
society_family_relationships = config.society_family_relationships
society_family_relationships_children = config.society_family_relationships_children
society_gay = config.society_gay
society_guns = config.society_guns
society_human_liberties = config.society_human_liberties
society_human_rights = config.society_human_rights
society_hunger = config.society_hunger
society_identity_advocacy = config.society_identity_advocacy
society_identity_politics = config.society_identity_politics
society_kids_teens_children_interests = config.society_kids_teens_children_interests
society_kids_teens_teen_interests = config.society_kids_teens_teen_interests
society_labor_issues = config.society_labor_issues
society_lesbian = config.society_lesbian
society_lgbtq = config.society_lgbtq
society_mentor = config.society_mentor
society_people = config.society_people
society_philanthropy = config.society_philanthropy
society_political_science = config.society_political_science
society_poverty = config.society_poverty
society_privacy = config.society_privacy
society_queer = config.society_queer
society_relations_advocacy = config.society_relations_advocacy
society_relationship_student = config.society_relationship_student
society_relationship_teacher = config.society_relationship_teacher
society_relationships_marriage = config.society_relationships_marriage
society_religion = config.society_religion
society_responsibility = config.society_responsibility
society_retirement = config.society_retirement
society_self_defense = config.society_self_defense
society_self_improvement = config.society_self_improvement
society_social_advocacy = config.society_social_advocacy
society_social_issues = config.society_social_issues
society_social_justice = config.society_social_justice
society_social_sciences = config.society_social_sciences
society_social_sciences_psychology = config.society_social_sciences_psychology
society_society = config.society_society
society_straight_sexuality = config.society_straight_sexuality
society_subcultures_niche_interests = config.society_subcultures_niche_interests
society_teens = config.society_teens
society_transgender = config.society_transgender
society_troubled_relationships = config.society_troubled_relationships
society_war = config.society_war
sports_american_football = config.sports_american_football
sports_american_soccer = config.sports_american_soccer
sports_animal_sports = config.sports_animal_sports
sports_australian_football = config.sports_australian_football