-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathall_items.pickle
21899 lines (21899 loc) · 178 KB
/
all_items.pickle
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
(dp1
(V19
VLakshadweep (UT)
tp2
(dp3
s(V14
VHimachal Pradesh
tp4
(dp5
(V211
VHamirpur
tp6
(lp7
(V884
VBhoranj
tp8
a(V931
VBijhri
tp9
a(V2120
VHamirpur
tp10
a(V4046
VNadaun
tp11
a(V5935
VTauni Devi
tp12
a(V6076
VTihra Sujanpur
tp13
as(V297
VKinnaur
tp14
(lp15
(V2653
VKalpa
tp16
a(V4289
VNichar
tp17
a(V4807
VPooh
tp18
as(V509
VSirmaur
tp19
(lp20
(V4086
VNahan
tp21
a(V4406
VPachhad
tp22
a(V4534
VPaonta Sahib
tp23
a(V4980
VRajgarh
tp24
a(V5357
VSangrah
tp25
a(V5568
VShillai
tp26
as(V83
VBilaspur
tp27
(lp28
(V945
VBilaspur Sadar
tp29
a(V1904
VGehrwin
tp30
a(V1950
VGhumarwin
tp31
as(V324
VLahul And Spiti
tp32
(lp33
(V3327
VLahaul
tp34
a(V5756
VSpiti
tp35
as(V268
VKangra
tp36
(lp37
(V414
VBaijnath
tp38
a(V836
VBhawarna
tp39
a(V1487
VDehra Gopipur
tp40
a(V1774
VFatehpur
tp41
a(V2295
VIndora
tp42
a(V2714
VKangra
tp43
a(V3368
VLamba Gaon
tp44
a(V4082
VNagrota Bagwan
tp45
a(V4083
VNagrota Surian
tp46
a(V4358
VNurpur
tp47
a(V4501
VPanchrukhi
tp48
a(V4821
VPragpur
tp49
a(V4955
VRait
tp50
a(V5791
VSullah (Bhedu Mahadev)
tp51
as(V353
VMandi
tp52
(lp53
(V450
VBalh
tp54
a(V1096
VChachiot
tp55
a(V1204
VChauntra
tp56
a(V1573
VDharampur
tp57
a(V1676
VDrang
tp58
a(V2007
VGopalpur
tp59
a(V2795
VKarsog
tp60
a(V3647
VMandi Sadar
tp61
a(V5491
VSeraj
tp62
a(V5808
VSunder Nagar
tp63
as(V317
VKullu
tp64
(lp65
(V204
VAnni
tp66
a(V517
VBanjar
tp67
a(V3239
VKullu
tp68
a(V4072
VNaggar
tp69
a(V4316
VNirmand
tp70
as(V497
VShimla
tp71
(lp72
(V635
VBasantpur
tp73
a(V1201
VChauhara
tp74
a(V1346
VChopal
tp75
a(V2533
VJubbal and Kothai
tp76
a(V3751
VMashobra
tp77
a(V4187
VNarkanda
tp78
a(V5061
VRampur
tp79
a(V5183
VRohru
tp80
a(V6008
VTheog
tp81
as(V99
VChamba
tp82
(lp83
(V811
VBharmour
tp84
a(V824
VBhattiyat
tp85
a(V1131
VChamba
tp86
a(V3820
VMehla
tp87
a(V4516
VPangi
tp88
a(V5306
VSalooni
tp89
a(V6114
VTissa
tp90
as(V516
VSolan
tp91
(lp92
(V1575
VDharampur
tp93
a(V2699
VKandaghat
tp94
a(V3265
VKunihar
tp95
a(V4107
VNalagarh
tp96
a(V5715
VSolan
tp97
as(V567
VUna
tp98
(lp99
(V124
VAmb
tp100
a(V1620
VDhundla
tp101
a(V1803
VGagret
tp102
a(V2160
VHaroli
tp103
a(V6214
VUna
tp104
ass(V8
VDadra And Nagar Haveli
tp105
(dp106
(V124
VDadra And Nagar Haveli
tp107
(lp108
(V141
VAmboli
tp109
a(V1390
VDadra
tp110
a(V1439
VDapada
tp111
a(V1683
VDudhani
tp112
a(V2963
VKhanvel
tp113
a(V3038
VKilwani
tp114
a(V3651
VMandoni
tp115
a(V4198
VNaroli
tp116
a(V5079
VRandha
tp117
a(V5634
VSilvassa
tp118
ass(V30
VSikkim
tp119
(dp120
(V164
VEast
tp121
(lp122
(V1858
VGangtok
tp123
a(V4441
VPakyong
tp124
a(V5194
VRongli
tp125
as(V403
VNorth
tp126
(lp127
(V1362
VChungthang
tp128
a(V3666
VMangan
tp129
as(V588
VWest
tp130
(lp131
(V2093
VGyalshing
tp132
a(V5746
VSoreng
tp133
as(V522
VSouth
tp134
(lp135
(V4123
VNamchi
tp136
a(V5128
VRavongla
tp137
ass(V26
VOdisha
tp138
(dp139
(V265
VKalahandi
tp140
(lp141
(V833
VBhawanipatna
tp142
a(V1587
VDharmagarh
tp143
a(V1986
VGolamunda
tp144
a(V2358
VJaipatna
tp145
a(V2541
VJunagarh
tp146
a(V2612
VKalampur
tp147
a(V2786
VKarlamunda
tp148
a(V2898
VKesinga
tp149
a(V3086
VKoksara
tp150
a(V3378
VLanjigarh
tp151
a(V3452
VM.Rampur
tp152
a(V4193
VNarla
tp153
a(V5966
VTh.Rampur
tp154
as(V188
VGajapati
tp155
(lp156
(V2062
VGumma
tp157
a(V2815
VKasinagar
tp158
a(V3885
VMohana
tp159
a(V4349
VNuagada
tp160
a(V4545
VParalakhemundi
tp161
a(V4902
VR Udayagiri
tp162
a(V5136
VRayagada
tp163
as(V398
VNayagarh
tp164
(lp165
(V803
VBhapur
tp166
a(V1460
VDaspalla
tp167
a(V1860
VGania
tp168
a(V2951
VKhandapara
tp169
a(V4258
VNayagarh
tp170
a(V4350
VNuagaon
tp171
a(V4371
VOdagaon
tp172
a(V5104
VRanpur
tp173
as(V531
VSundargarh
tp174
(lp175
(V463
VBalisankara
tp176
a(V584
VBargaon
tp177
a(V988
VBisra
tp178
a(V1023
VBonaigarh
tp179
a(V2088
VGurundia
tp180
a(V2206
VHemgiri
tp181
a(V3084
VKoira
tp182
a(V3214
VKuanramunda
tp183
a(V3313
VKutra
tp184
a(V3331
VLahunipara
tp185
a(V3388
VLathikata
tp186
a(V3403
VLefripada
tp187
a(V4352
VNuagaon
tp188
a(V4976
VRajgangpur
tp189
a(V5778
VSubdega
tp190
a(V5807
VSundargarh
tp191
a(V5899
VTangarpali
tp192
as(V351
VMalkangiri
tp193
(lp194
(V2637
VKalimela
tp195
a(V2920
VKhairput
tp196
a(V3143
VKorukunda
tp197
a(V3225
VKudumuluguma
tp198
a(V3597
VMalkangiri
tp199
a(V3762
VMathili
tp200
a(V4782
VPodia
tp201
as(V40
VBalasore
tp202
(lp203
(V404
VBahanaga
tp204
a(V443
VBalasore
tp205
a(V455
VBaliapal
tp206
a(V654
VBasta
tp207
a(V870
VBhogarai
tp208
a(V2395
VJaleswar
tp209
a(V2915
VKhaira
tp210
a(V4300
VNilagiri
tp211
a(V4400
VOupada
tp212
a(V5151
VRemuna
tp213
a(V5645
VSimulia
tp214
a(V5747
VSoro
tp215
as(V429
VPhulbani(Kandhamal)
tp216
(lp217
(V467
VBalliguda
tp218
a(V1112
VChakapad
tp219
a(V1448
VDaringbadi
tp220
a(V1791
VG.Udayagiri
tp221
a(V2551
VK.Nuagaon
tp222
a(V2926
VKhajuripada
tp223
a(V3159
VKotgarh
tp224
a(V4735
VPhiringia
tp225
a(V4741
VPhulbani
tp226
a(V4939
VRaikia
tp227
a(V6080
VTikabali
tp228
a(V6151
VTumudibandh
tp229
as(V66
VBhadrak
tp230
(lp231
(V658
VBasudevpur
tp232
a(V758
VBhadrak
tp233
a(V793
VBhandaripokhari
tp234
a(V1030
VBonth
tp235
a(V1151
VChandbali
tp236
a(V1548
VDhamnagar
tp237
a(V6075
VTihidi
tp238
as(V289
VKendrapara
tp239
(lp240
(V308
VAul (Ali)
tp241
a(V1515
VDerabis
tp242
a(V1868
VGaradpur
tp243
a(V2883
VKendrapara
tp244
a(V3516
VMahakalapara
tp245
a(V3740
VMarshaghai
tp246
a(V4633
VPattamundai
tp247
a(V4984
VRajkanika
tp248
a(V4989
VRajnagar
tp249
as(V239
VJajpur
tp250
(lp251
(V349
VBadachana
tp252
a(V601
VBari
tp253
a(V958
VBinjharpur
tp254
a(V1420
VDanagadi
tp255
a(V1463
VDasrathpur
tp256
a(V1593
VDharmasala
tp257
a(V2371
VJajpur
tp258
a(V3138
VKorei
tp259
a(V5115
VRasulpur
tp260
a(V5786
VSukinda
tp261
as(V408
VNuapara
tp262
(lp263
(V999
VBoden
tp264
a(V2972
VKhariar
tp265
a(V3106
VKomna
tp266
a(V4353
VNuapara
tp267
a(V5664
VSinpalli
tp268
as(V23
VAngul
tp269
(lp270
(V194
VAngul
tp271
a(V283
VAthamallik
tp272
a(V492
VBanarpal
tp273
a(V1228
VChendipada
tp274
a(V2718
VKaniha
tp275
a(V3053
VKishorenagar
tp276
a(V4474
VPallahara
tp277
a(V5868
VTalcher
tp278
as(V520
VSonepur
tp279
(lp280
(V957
VBinika
tp281
a(V969
VBirmaharajpur
tp282
a(V1711
VDunguripali
tp283
a(V5731
VSonepur
tp284
a(V5922
VTarava
tp285
a(V6197
VUlunda
tp286
as(V152
VDhenkanal
tp287
(lp288
(V886
VBhuban
tp289
a(V1608
VDhenkanal
tp290
a(V1995
VGondia
tp291
a(V2217
VHindol
tp292
a(V2669
VKamakhyanagar
tp293
a(V2723
VKankadahad
tp294
a(V4374
VOdapada
tp295
a(V4542
VParajang
tp296
as(V396
VNawarangpur
tp297
(lp298
(V1146
VChandahandi
tp299
a(V1385
VDabugam
tp300
a(V2500
VJharigam
tp301
a(V3144
VKosagumuda
tp302
a(V4132
VNandahandi
tp303
a(V4347
VNowrangpur
tp304
a(V4535
VPapadahandi
tp305
a(V4937
VRaighar
tp306
a(V5959
VTentulikhunti
tp307
a(V6205
VUmerkote
tp308
as(V140
VDeogarh
tp309
(lp310
(V610
VBarkote
tp311
a(V5140
VReamal
tp312
a(V6086
VTileibani
tp313
as(V309
VKoraput
tp314
(lp315
(V495
VBandhugaon
tp316
a(V1010
VBoipariguda
tp317
a(V1035
VBoriguma
tp318
a(V1458
VDasmanthpur
tp319
a(V2483
VJeypore
tp320
a(V3132
VKoraput
tp321
a(V3177
VKotpad
tp322
a(V3261
VKundra
tp323
a(V3373
VLamtaput
tp324
a(V3400
VLaxmipur
tp325
a(V4135
VNandapur
tp326
a(V4173
VNarayanpatna
tp327
a(V4817
VPottangi
tp328
a(V5476
VSemiliguda
tp329
as(V54
VBargarh
tp330
(lp331
(V125
VAmbabhona
tp332
a(V303
VAttabira
tp333
a(V585
VBargarh
tp334
a(V616
VBarpali
tp335
a(V820
VBhatli
tp336
a(V837
VBheden
tp337
a(V930
VBijepur
tp338
a(V1810
VGaisilet
tp339
a(V2497
VJharbandh
tp340
a(V4412
VPadampur
tp341
a(V4430
VPaikmal
tp342
a(V5711
VSohella
tp343
as(V296
VKhurda
tp344
(lp345
(V454
VBalianta
tp346
a(V462
VBalipatna
tp347
a(V491
VBanapur
tp348
a(V685
VBegunia
tp349
a(V887
VBhubaneswar
tp350
a(V1015
VBolagarh
tp351
a(V1286
VChilika
tp352
a(V2462
VJatni
tp353
a(V3026
VKhurda
tp354
a(V5900
VTangi
tp355
as(V441
VPuri
tp356
(lp357
(V275
VAstaranga
tp358
a(V1045
VBrahmagiri
tp359
a(V1489
VDelanga
tp360
a(V2001
VGop
tp361
a(V2591
VKakatpur
tp362