-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch-patents.html
927 lines (894 loc) · 53.6 KB
/
search-patents.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Patents</title>
<meta charset="utf-8">
<meta name = "format-detection" content = "telephone=no" />
<link rel="icon" href="images/favicon.ico">
<link rel="shortcut icon" href="images/favicon.ico" />
<link rel="stylesheet" href="css/form.css">
<link rel="stylesheet" href="css/thumbs.css">
<link rel="stylesheet" href="css/slider.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/font-awesome.css">
<script src="js/jquery.js"></script>
<script src="js/jquery-migrate-1.2.1.js"></script>
<script src="js/script.js"></script>
<script src="js/superfish.js"></script>
<script src="js/sForm.js"></script>
<script src="js/jquery.ui.totop.js"></script>
<script src="js/jquery.equalheights.js"></script>
<script src="js/jquery.easing.1.3.js"></script>
<script src="js/jquery.iosslider.min.js"></script>
<script>
$(document).ready(function(){
$().UItoTop({ easingType: 'easeOutQuart' });
});
</script>
<!--[if lt IE 8]>
<div style=' clear: both; text-align:center; position: relative;'>
<a href="http://windows.microsoft.com/en-US/internet-explorer/products/ie/home?ocid=ie6_countdown_bannercode">
<img src="http://storage.ie6countdown.com/assets/100/images/banners/warning_bar_0000_us.jpg" border="0" height="42" width="820" alt="You are using an outdated browser. For a faster, safer browsing experience, upgrade for free today." />
</a>
</div>
<![endif]-->
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<link rel="stylesheet" media="screen" href="css/ie.css">
<![endif]-->
</head>
<body class="page1" id="top">
<!--==============================header=================================-->
<header>
<div class="container_12">
<div class="grid_12">
<a href="index.html" class="donate-title pull-left"><b>
Rachana Foundation</b>
</a>
<div class="menu_block ">
<div class="clear"></div>
<nav class="horizontal-nav full-width horizontalNav-notprocessed">
<ul class="sf-menu">
<li class="current"><a href="index.html">Home</a></li>
<li><a href="#about_us">About Us</a></li>
<li>
<div class="dropdown">
<a href="#" data-toggle='dropdown'>Learn About IP</a>
</div>
<ul class='dropdown-menu' role='menu'>
<li>
Intellectual Property Rights
</li><hr>
<li>
Trademarks
</li><hr>
<li>
Patents
</li><hr>
<li>
Industrial Design
</li><hr>
<li>
Copyrights
</li><hr>
<li>
Geographic Locations
</li><hr>
<li>
Other Intellectual Property
</li>
</ul>
</li>
<li><a href="join-us.html">Join Us</a></li>
<li><div class="dropdown">
<a href="#" data-toggle='dropdown'>Resources</a>
</div>
<ul class='dropdown-menu' role='menu'>
<li><a href ="india-ip-legislation.html">India IP Legislation</li><hr>
<li><a href ="ip-database.html">IP Database</a></li><hr>
<li><a href ="wipo-administered-treaties.html">WIPO Administered Treaties</a></li>
</ul>
</li>
<li><a href="report-an-ip-issue.html">Report an IP Issue</a></li>
<li><a href="#">Media</a></li>
<li><a href="#">Blog</a></li>
<li><a href="contacts.html">Contacts</a></li>
</ul>
</nav>
<div class="clear"></div>
</div>
</div>
</div>
</header>
<div class="fluidHeight container_12">
<div class="grid_8">
<h2>Search Patents</h2>
<div class="entry-content">
<p style="text-align: justify;">
<strong style="font-size: 1.17em; line-height: 1.5em;">Paid Sites</strong>
</p>
<ul style="text-align: justify; list-style: inherit;">
<li style="text-align: left;">
<span style="color: #993300;">
Thomson Reuters
</span>
</li>
<li>
<span style="color: #993300;">
<a href="http://www.thomsoninnovation.com/">
Thomson Innovation
</a>
</span>
</li>
<li style="text-align: left;">
<span style="color: #993300;">
Thomson Data Analyzer
</span>
</li>
<li style="text-align: left;">
<span style="color: #993300;">
Cipis.clairvolex.com
</span>
Indian intellectual property information database
</li>
<li style="text-align: left;">
<span style="color: #993300;">
Mapco's
</span>
</li>
<li>
<span style="color: #993300;">
<a href="http://www.derwent.co.uk/">
Derwent
</a>
</span>
</li>
<li>
<span style="color: #993300;">
<a href="http://www.delphion.com/">
Delphion
</a>
</span>
Accessing the Patent Information, Research and analysis Tools.
</li>
<li>
<span style="color: #993300;">
<a href="https://stnweb.cas.org/">
STN
</a>
</span>
Online Database Service Providing global access to Published Research, journal literature, patents , structures , sequences ,properties and other data.
</li>
<li>
<span style="color: #993300;">
Westlaw Patents
</span>
</li>
<li>
<span style="color: #993300;">
Aureka
</span>
</li>
<li>
<span style="color: #993300;">
<a href="http://www.dialog.com/">
Dialog
</a>
</span>
</li>
<li>
<span style="color: #993300;">
<a href="http://www.lexis-nexis.com/">
Lexis-Nexis
</a>
</span>
</li>
<li>
<span style="color: #993300;">
<a href="http://www.getthepatent.com/">
Get The Patent.com
</a>
</span>
</li>
<li>
<span style="color: #993300;">
<a href="http://www.ipdiscover.com/">
IP-Discover
</a>
</span>
</li>
<li>
<span style="color: #993300;">
<a href="http://www.qpat.com/">
Questel Orbit Patent Database
</a>
</span>
Offers a complete suite of online tools that facilitate innovation capture, competitive technological intelligence, prior-art searching, patent portfolio valuation and licensing activities
</li>
<li>
<span style="color: #993300;">
<a href="http://www.ificlaims.com/">
IFI Claims Databases
</a>
</span>
</li>
</ul><br>
<p style="text-align: justify;">
<strong style="font-size: 1.17em; line-height: 1.5em;">Free patents online</strong>
</p>
<ul style="text-align: justify; list-style: inherit; color: #993300;">
<li style="text-align: left;">
<a href="http://www.lens.org/">
IOILens
</a>
</li>
<li style="text-align: left;">
<a href="http://www.uspto.gov/patft/index.html">
U.S.P.T.O. Database
</a>
</li>
<li>
<a href="http://www.nal.usda.gov/bic/Biotech_Patents/">
U.S. Dept. of Agriculture Biotech Patents
</a>
</li>
<li>
<a href="http://www.godunov.com/Bucky/Patents.html">
Fullerene Patent Database
</a>
</li>
<li>
<a href="http://www.surfip.com/">
SurfIP.com
</a>
</li>
<li>
<a href="http://www.ipsearchengine.com/">
Patent Cafe
</a>
</li>
<li>
<a href="http://www.spi.org/">
Software Patent Institute
</a>
</li>
<li>
<a href="http://www.irossco.com/patentsearching.htm">
http://www.irossco.com/patentsearching.htm
</a>
</li>
<li>
<a href="http://intellogist.wordpress.com/2011/04/20/indian-patent-search-alternatives/">http://intellogist.wordpress.com/2011/04/20/indian-patent-search-alternatives/</a>
</li>
</ul><br>
<p style="text-align: justify;">
<strong style="font-size: 1.17em; line-height: 1.5em;">
Non-Patent Databases, Research papers, Journals, online books etc
</strong>
</p>
<ul style="text-align: justify; list-style: inherit;">
<li style="text-align: left;">
<a href="http://scholar.google.com/"><span style="color: #800000;">Google Scholar</span></a></span></li>
<li><span style="color: #800000;"><a href="http://www.sciencedirect.com/"><span style="color: #800000;">Science Direct</span></a> -</span> is a leading full-text scientific database offering journal articles and book chapters from more than 2,500 journals and almost 20,000 books.</li>
<li><span style="color: #800000;"><a style="line-height: 1.5em;" href="http://www.ncbi.nlm.nih.gov/pubmed/"><span style="color: #800000;">Pubmed/Medline</span></a></span><span style="line-height: 1.5em;"><span style="color: #800000;"> -</span> US National Library of Medicine National Institutes of Health</span></li>
<li><span style="line-height: 1.5em; color: #800000;">IP.com</span></li>
</ul><br>
<p style="text-align: justify;">
<strong style="font-size: 1.17em; line-height: 1.5em;">
Domain Specific Databases
</strong>
</p>
<ul style="text-align: justify; list-style: inherit;">
<li style="text-align: left;">
<a href="http://www.ieee.org/"><span style="color: #800000;">IEEE</span></a> -</span> Professional Association for advancement of Technology</li>
<li><span style="color: #800000;"><a href="http://www.acm.org/"><span style="color: #800000;">ACM</span></a> -</span> Association for computing machinery</li>
<li><span style="color: #800000;">ITU – </span><span style="line-height: 1.5em;"> (International Telecommunication Union) is the United Nations specialized agency for information and communication technologies.</span></li>
<li><span style="color: #800000;"><a style="line-height: 1.5em;" href="http://www.cas.org/expertise/cascontent/marpat.html"><span style="color: #800000;">Marpat</span></a></span><span style="line-height: 1.5em;"><span style="color: #800000;"> -</span> Database containing the keys to substances in patents</span></li>
<li><span style="color: #800000;"><span style="line-height: 1.5em;">SciFinder </span><a style="line-height: 1.5em;" href="http://www.cas.org/products/scifinder"><span style="color: #800000;">http://www.cas.org/products/scifinder</span></a></span><span style="line-height: 1.5em;"><span style="color: #800000;"> </span> provides researchers with unlimited access to the world’s largest collection of chemistry and related science information.</span></li>
<li><span style="color: #800000;"><a style="line-height: 1.5em;" href="http://nsdl.org/"><span style="color: #800000;">National Science Library</span></a></span><span style="line-height: 1.5em;"><span style="color: #800000;"> –</span> The National Science Digital Library</span></li>
<li><span style="color: #800000;"><a style="line-height: 1.5em;" href="http://pubchem.ncbi.nlm.nih.gov/search/search.cgi"><span style="color: #800000;">PU- BChem Structure</span></a></span><span style="line-height: 1.5em;"><span style="color: #800000;"> -</span> National center for Biotechnology Information</span></li>
<li><span style="color: #800000;"><a style="line-height: 1.5em;" href="https://stnweb.cas.org/"><span style="color: #800000;">STN</span></a><b style="line-height: 1.5em;"> </b></span></li>
</ul></br>
<p style="text-align: justify;">
<strong style="font-size: 1.17em; line-height: 1.5em;">
Worldwide Patent Offices India
</strong>
</p>
<ul style="text-align: justify; list-style: inherit;">
<li style="text-align: left;">
<span style="color: #800000;">Indian patent office www.ip<b>india</b>.nic.in/ </span><span style="line-height: 1.5em;">Indian Patent Searchable Database Ekaswa comprises three separate search</span><span style="line-height: 1.5em;"> interfaces for its three databases:</span></li>
<li><span style="line-height: 1.5em; color: #800000;">indianpatents.org.in/db/testmaina.asp</span><span style="line-height: 1.5em;"> </span><b style="line-height: 1.5em;">Ekaswa A</b><span style="line-height: 1.5em;">: “Patent applications filed in India as published in the issues of the Gazette of India (Part III, Section 2) from January 1995 to December 2004.”</span></li>
<li><span style="color: #800000;">indianpatents.org.in/db/testmainb.asp</span> <b>Ekaswa B</b>: “Patent applications notified for opposition in the Gazette of India (Part III, Section 2) published from January 1995 to December 2004.”</li>
<li><span style="color: #800000;">indianpatents.org.in/db/testmainc.asp</span> <b>Ekaswa C</b>: “Patent applications published in official Journal of Patent office published from January 2005 onwards.”</li>
<li><span style="color: #800000;"><a href="http://rdpp.csir.res.in/csir_acsir/Home.aspx"><span style="color: #800000;">http://rdpp.csir.res.in/csir_acsir/Home.aspx</span></a> </span> Council of scientific and industrial research, the premier R &D Organization in India.</li>
<li><span style="color: #800000;"> http://ipindiaservices.gov.in/patentsearch/search/index.aspx</span> (Patent application status)</li>
<li><span style="color: #800000;">http://ipindia.nic.in/ipr/patent/patents.htm</span> – (Controller General of Patents)</li>
<li><span style="color: #800000;"><a href="http://www.indianpatents.org.in/db/testmaina.asp"><span style="color: #800000;">http://www.indianpatents.org.in/db/testmaina.asp</span></a></span> Patent Facilitating center under Technology Forecasting and assessment council.<b></b></li>
<li style="text-align: justify;"><span style="color: #800000;"><a href="http://www.indianpatents.org.in/db/testmainc.asp"><span style="color: #800000;">http://www.indianpatents.org.in/db/testmainc.asp</span></a></span> Patent Facilitating centre under Technology Forecasting and assessment council.<b></b></li>
<li style="text-align: justify;"><span style="color: #800000;"></strong><a href="http://pfc.org.in/%20"><span style="color: #800000;">http://pfc.org.in/</span></a></span> Patent Facilitating center under Technology Forecasting and assessment council</li>
<li style="text-align: justify;"><span style="color: #800000;">http://www.ipindia.nic.in/NIIPM</span>/ Office of the Patent Information System, Nagpur Provides for the patent search services. The PIS offers patent information services, patent search services etc on payment of appropriate charges. <span style="line-height: 1.5em;">Their patent search services include</span></li>
<li style="text-align: justify;"><span style="line-height: 1.5em;">State of Art Search</span></li>
<li><span style="line-height: 1.5em;">Bibliographic Search</span></li>
<li><span style="line-height: 1.5em;">English Equivalent Patent Search</span></li>
<li><span style="line-height: 1.5em;">Equivalent Family Patent Search</span></li>
<li><span style="line-height: 1.5em;">Assisted Search</span></li>
</ul></br>
<p><strong> PATENT SEARCH TOOLS AVAILABLE AT PIS, NAGPUR</strong></p>
<table class=" alignleft" width="603" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="text-align: right;" valign="top" width="49"><strong><span style="color: #800000;"> Sl. No.</span></strong></td>
<td valign="top" width="128">
<p align="center"><strong><span style="color: #800000;">Name of the Search Tool</span></strong></p>
</td>
<td valign="top" width="111">
<p align="center"><strong><span style="color: #800000;">Nature of Carrier</span></strong></p>
</td>
<td valign="top" width="149">
<p align="center"><strong><span style="color: #800000;">Contents</span></strong></p>
</td>
<td valign="top" width="166">
<p align="center"><strong><span style="color: #800000;">Range</span></strong></p>
</td>
</tr>
<tr>
<td valign="top" width="49"> 1</td>
<td valign="top" width="128"><span style="line-height: 1.5em;">INPADOC</span></td>
<td valign="top" width="111"><span style="line-height: 1.5em;">MICROFICHE</span></td>
<td valign="top" width="149">Bibliographic data including title of patents from more than 70 countries</td>
<td valign="top" width="166">1968 To Aug. 1998</td>
</tr>
<tr>
<td valign="top" width="49"> <span style="line-height: 1.5em;"> 2</span></td>
<td valign="top" width="128"><span style="line-height: 1.5em;">EPIDOC</span></td>
<td valign="top" width="111">CD-ROM(NDB/PFS/PCS)</td>
<td valign="top" width="149">Bibliographic data including title of patents from more than 70 countries</td>
<td valign="top" width="166">1998 To 2005</td>
</tr>
<tr>
<td valign="top" width="49"><span style="line-height: 1.5em;"> 3</span></td>
<td valign="top" width="128">ESPACE/ACCESSESPACE ACCESS-MIMOSA</td>
<td valign="top" width="111">CD-ROM</td>
<td valign="top" width="149">Bibliographic data and abstracts of EPO patents and Bibliographic data of PCT applications</td>
<td valign="top" width="166">1978 to July 2005</td>
</tr>
<tr>
<td valign="top" width="49"><span style="line-height: 1.5em;"> 4</span></td>
<td valign="top" width="128">ESPACE –ACCESS EUROPE</td>
<td valign="top" width="111">CD-ROM</td>
<td valign="top" width="149">Bibliographic relating to patent application from BE, CH, LU, NL, UK, PT</td>
<td valign="top" width="166">1990 To Dec. 2004</td>
</tr>
<tr>
<td valign="top" width="49">
<p style="text-align: center;"><span style="line-height: 1.5em;">5</span></p>
</td>
<td valign="top" width="128">EPC</td>
<td valign="top" width="111">CD-ROM</td>
<td valign="top" width="149">Bibliographic data from 29 member states</td>
<td valign="top" width="166">2005 To Sept. 2007</td>
</tr>
<tr>
<td valign="top" width="49">
<p style="text-align: center;"><span style="line-height: 1.5em;">6</span></p>
</td>
<td valign="top" width="128">GLOBAL PAT</td>
<td valign="top" width="111">CD-ROM</td>
<td valign="top" width="149">Bibliographic data and abstracts of CH, DE, FR, EP, GB, US, and WO patents</td>
<td valign="top" width="166">1971 To May 2000</td>
</tr>
<tr>
<td valign="top" width="49"><span style="line-height: 1.5em;"> 7</span></td>
<td valign="top" width="128">US-CAPS/APS</td>
<td valign="top" width="111">CD-ROM</td>
<td valign="top" width="149">Bibliographic data and abstracts of US patents</td>
<td valign="top" width="166">1975 To 2004</td>
</tr>
<tr>
<td valign="top" width="49"><span style="line-height: 1.5em;"> 8</span></td>
<td valign="top" width="128">GAZETTE OF INDIA PART III Sec. (2)</td>
<td valign="top" width="111">PAPER</td>
<td valign="top" width="149">Notifications issued by the Patents Office regarding Indian Patents</td>
<td valign="top" width="166">1963 To Dec. 2004</td>
</tr>
<tr>
<td valign="top" width="49">
<p style="text-align: center;"><span style="line-height: 1.5em;">9</span></p>
</td>
<td valign="top" width="128">PATENT ABSTRACT OF JAPAN (PAJ)</td>
<td valign="top" width="111">CD-ROM</td>
<td valign="top" width="149">Bibliographic data and abstracts of Japanese patents</td>
<td valign="top" width="166">1976 Onwards</td>
</tr>
<tr>
<td valign="top" width="49"><span style="line-height: 1.5em;"> 10</span></td>
<td valign="top" width="128">BREF</td>
<td valign="top" width="111">CD-ROM</td>
<td valign="top" width="149">Bibliographic data and abstracts of FR, EP and WO,</td>
<td valign="top" width="166">1978 To Dec. 2007 (in French Language)</td>
</tr>
</tbody>
</table>
<p><strong><span>PATENT DOCUMENTATION (FULL TEXT) </span></strong></p>
<table width="600" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="148">
<p align="center"><span style="color: #800000;"><b>Name of the Country</b></span></p>
</td>
<td valign="top" width="130">
<p style="text-align: left;" align="center"><span style="color: #800000;"><b> Country Code</b></span></p>
</td>
<td valign="top" width="120">
<p style="text-align: left;" align="center"><span style="color: #800000;"><b>Name of Information Carrier</b></span></p>
</td>
<td valign="top" width="202">
<p style="text-align: center;" align="center"><span style="color: #800000;"><b>Range</b></span></p>
</td>
</tr>
<tr>
<td style="text-align: left;" valign="top" width="148">United States of America</td>
<td valign="top" width="130">
<p align="center">USAPAT</p>
<p align="center">
</p></td>
<td valign="top" width="120">MicrofilmCD/DVD-ROM</td>
<td valign="top" width="202">1951 To 19921836 onwards</td>
</tr>
<tr>
<td valign="top" width="148">United Kingdom</td>
<td valign="top" width="130">
<p align="center">GB</p>
</td>
<td valign="top" width="120">MicrofilmCD-ROM</td>
<td valign="top" width="202">1969 To 19921979 To 2008</td>
</tr>
<tr>
<td valign="top" width="148">European Patent Office</td>
<td valign="top" width="130">
<p align="center">EP</p>
</td>
<td valign="top" width="120">MicrofilmCD-ROM</td>
<td valign="top" width="202">1981 To 19841985 To 2005</td>
</tr>
<tr>
<td style="text-align: left;" valign="top" width="148">WIPO – (PCT)</td>
<td valign="top" width="130">
<p align="center">WO</p>
</td>
<td valign="top" width="120">CD-ROM</td>
<td valign="top" width="202">1978 To 2007</td>
</tr>
<tr>
<td style="text-align: left;" valign="top" width="148">Australia</td>
<td valign="top" width="130">
<p align="center">AU</p>
</td>
<td valign="top" width="120">MicroficheCD-ROM</td>
<td valign="top" width="202">1975 To 19971998 To 2004</td>
</tr>
<tr>
<td style="text-align: left;" valign="top" width="148">India</td>
<td valign="top" width="130">
<p align="center">IN</p>
</td>
<td valign="top" width="120">Paper</td>
<td valign="top" width="202">1912 To 1999Patent No. ( 1 T0 182590)</td>
</tr>
<tr>
<td style="text-align: left;" valign="top" width="148">Japan</td>
<td style="text-align: center;" valign="top" width="130">
<p align="center">JP</p>
</td>
<td valign="top" width="120">CD-ROM</td>
<td valign="top" width="202">1994 onwards (in Japanese Language)</td>
</tr>
</tbody>
</table>
<p style="text-align: justify;">
<strong style="font-size: 1.17em; line-height: 1.5em;">
<a href="http://pctgazette.wipo.int/">
WIPO Patent Database
</a>
</strong>
</p>
<ul style="text-align: justify; list-style: inherit;">
<li style="text-align: left;">
<a href="http://www.wipo.int/reference/en/"><span style="color: #800000;">http://www.wipo.int/tisc/en/etutorial.html</span></a></span><span style="color: #800000;"><span style="color: #800000;"><span style="color: #800000;"> <span style="color: #333333; line-height: 1.5em;">e-Tutorial on Using and Exploiting Patent Information</span></span></span></span></li>
<li><span style="color: #800000;"><a href="http://www.wipo.int/reference/en/"><span style="color: #800000;">http://patentscope.wipo.int/search/en/search.jsf</span></a></span><span style="line-height: 1.5em;"> </span><span style="line-height: 1.5em;">Patent Scope search patents</span></li>
<li><span style="color: #800000;"><span style="line-height: 1.5em;"><a href="http://www.wipo.int/research/en/"><span style="color: #800000;">http://www.wipo.int/patentscope/en/</span></a></span><span style="line-height: 1.5em;"> </span><span style="line-height: 1.5em; color: #000000;"> The PATENTSCOPE database provides access to international Patent Cooperation Treaty (PCT) applications in full text format on the day of publication.</span></span></li>
<li style="text-align: justify;"><span style="color: #800000;"><a href="http://www.wipo.int/classifications/ipc/en"><span style="color: #800000;">http://web2.wipo.int/ipcpub/#refresh=page</span></a> </span>International patent classification<span style="line-height: 1.5em;"> system</span></li>
<li><span style="line-height: 1.5em; color: #800000;"><a href="http://www.wipo.int/research/en/"><span style="color: #800000;">http://www.wipo.int/research/en/</span></a></span><span style="line-height: 1.5em;"> database for searching research related work for patents</span></li>
<li><span style="color: #800000;"><a href="http://www.wipo.int/aspi/en/"><span style="color: #800000;">http://www.wipo.int/aspi/en/</span></a></span><span style="text-align: justify; line-height: 1.5em;"> The Access to Specialized Patent Information (ASPI) program is a public-private partnership administered by WIPO. Through the ASPI program,</span><span style="color: #000000;"> <a href="http://www.wipo.int/aspi/en/eligibility.html" target="_self"><span style="color: #000000;">eligible patent offices and academic and research institutions</span></a></span><span style="text-align: justify; line-height: 1.5em;"> </span><span style="text-align: justify; line-height: 1.5em;">in developing countries can receive free or low-cost access to sophisticated tools and services for retrieving and analyzing patent data.</span></li>
<li><span style="line-height: 1.5em; color: #800000;"><a href="http://www.wipo.int/patentscope/en/data/patent_information.html#P82_9518"><span style="color: #800000;">http://www.wipo.int/patentscope/en/data/patent_information.html#P82_9518</span></a> </span><span style="line-height: 1.5em;"> </span><span style="line-height: 1.5em;"> WIPO patent info in brief and various types of searches using patent documentation</span></li>
<li><span style="line-height: 1.5em; color: #800000;">http://www.wipo.int/pctcaselawdb/en<b>/</b></span><span style="line-height: 1.5em;"> PCT law database</span></li>
<li><span style="line-height: 1.5em; color: #800000;"><a href="http://www.wipo.int/pct/en/appguide/ipindex.jsp"><span style="color: #800000;">http://www.wipo.int/pct/en/appguide/ipindex.jsp</span></a></span><span style="line-height: 1.5em;"> The Applicant’s Guide on filling an International phase PCT application</span></li>
<li><span style="line-height: 1.5em; color: #800000;"><a href="http://www.wipo.int/pct/en/appguide/npindex.jsp"><span style="color: #800000;">http://www.wipo.int/pct/en/appguide/npindex.jsp</span></a></span><span style="line-height: 1.5em;"> The Applicant’s Guide on filling a National Phase Application</span></li>
<li><span style="line-height: 1.5em; color: #800000;"><a href="http://www.wipo.int/pct/en/filing/filing.html"><span style="color: #800000;">http://www.wipo.int/pct/en/filing/filing.html</span></a> </span><span style="line-height: 1.5em;">Direct filling of the International application by a PCT contracting State in the International Bureau of WIPO as the receiving office</span></li>
<li><span style="line-height: 1.5em; color: #800000;"><a href="http://www.wipo.int/pct/en/filing/pct_pph.html"><span style="color: #800000;">http://www.wipo.int/pct/en/filing/pct_pph.html</span></a></span><span style="line-height: 1.5em;"> PCT-Patent Prosecution Highway Pilot (PCT-PPH) is an easy protocol for fastening the examination of the patent claims submitted which fastens the examination procedures and thereby stimulates a faster patent grant</span></li>
</ul></br>
<p style="text-align: justify;">
<strong style="font-size: 1.17em; line-height: 1.5em;">
<a href="http://pctgazette.wipo.int/">
External Databases
</a>
</strong>
</p>
<ul style="text-align: justify; list-style: inherit;">
<li style="text-align: left;">
Australia <span style="color: #800000;">http://pericles.ipaustralia.gov.au/ols/auspat/</span></li>
<li>Canada http://brevets-patents.ic.gc.ca/opiccipo/cpd/eng/introduction.html</li>
<li>Chile <span style="color: #800000;">http://ion.inapi.cl:8080/Patente/ConsultaAvanzadaPatentes.aspx</span></li>
<li>China <span style="color: #800000;">http://www.pss-system.gov.cn/sipopublicsearch/ensearch/searchEnHomeIndexAC.do</span></li>
<li>Czech Republic <span style="color: #800000;">http://www.upv.cz/en/client-services/online-databases/patent-and-utility-model-databases.html </span></li>
<li>European Patent Office <span style="color: #800000;">http://www.espacenet.com</span></li>
<li>Eurasian Patent Organization (EAPO) <span style="color: #800000;">http://www.eapatis.com/ensearch/</span></li>
<li>Finland <span style="color: #800000;">http://patent.prh.fi/patinfo/default2.asp</span></li>
<li>France <span style="color: #800000;">http://fr.espacenet.com/</span></li>
<li>Germany <span style="color: #800000;">https://depatisnet.dpma.de/DepatisNet/</span></li>
<li>Hungary <span style="color: #800000;">http://www.hipo.gov.hu/kereso/</span></li>
<li>India <span style="color: #800000;">http://ipindiaservices.gov.in/patentsearch/search/index.aspx</span></li>
<li>Ireland <span style="color: #800000;">http://www.patentsoffice.ie/en/patents_searching.aspx</span></li>
<li>Japan <span style="color: #800000;">http://www.ipdl.inpit.go.jp/homepge.ipdl</span></li>
<li>Latin America <span style="color: #800000;">http://lp.espacenet.com/</span></li>
<li>New Zealand <span style="color: #800000;">http://www.iponz.govt.nz/app/Extra/IP/PT/Qbe.aspx?sid=635310401987053816</span></li>
<li>OHIM (Office for Harmonization in the Internal Market) <span style="color: #800000;">https://oami.europa.eu/ohimportal/en/databases</span></li>
<li>Republic of Korea <span style="color: #800000;">http://www.kipris.or.kr/khome/main.jsp</span></li>
<li><span style="color: #800000;">http://www.koreantk.com/en/</span> (Korean Traditional Knowledge Portal)</li>
<li>Romania <span style="color: #800000;">http://bd.osim.ro/cgi-bin/invsearch8</span></li>
<li>Russian Federation <span style="color: #800000;">http://www1.fips.ru/wps/wcm/connect/content_en/en/informational_resources/databases1</span></li>
<li>Singapore <span style="color: #800000;">https://www.ip2.sg/RPS/WP/CM/SearchSimpleP.aspx?SearchCategory=PT</span></li>
<li>Slovakia <span style="color: #800000;">http://www.upv.sk/?databases-and-registers</span></li>
<li>Slovenia <span style="color: #800000;">http://www2.uil-sipo.si/dse.htm</span></li>
<li>Spain <span style="color: #800000;">http://invenes.oepm.es</span></li>
<li>Switzerland <span style="color: #800000;">https://www.swissreg.ch/</span></li>
<li>Thailand <span style="color: #800000;">http://203.209.117.243/DIP2013/simplesearch.php</span></li>
<li>United Kingdom <span style="color: #800000;">http://www.ipo.gov.uk/types/patent/p-os/p-find.htm</span></li>
<li>United States of America <span style="color: #800000;">http://www.uspto.gov/patft/index.html</span></li>
<li><span style="color: #800000;">http://tess2.uspto.gov/bin/gate.exe?f=login&p_lang=english&p_d=</span><span style="color: #800000;">trek</span></li>
</ul></br>
<p style="text-align: justify;">
<strong style="font-size: 1.17em; line-height: 1.5em;">
<a href="http://ep.espacenet.com/">
EPO
</a>
</strong>
</p>
<ul style="text-align: justify; list-style: inherit;">
<li style="text-align: left;">
<span style="color: #800000;"><a href="http://www.epo.org/index.html"><span style="color: #800000;">http://www.epo.org/index.html</span></a></span><span style="line-height: 1.5em;"> Searching for patents, European patent register , databases, Publication servers, Patent translate Application for patents.</span></li>
<li style="text-align: justify;"><span style="line-height: 1.5em; color: #800000;"><a href="https://register.epo.org/regviewer"><span style="color: #800000;">https://register.epo.org/regviewer</span></a> -</span><span style="line-height: 1.5em;"> European Patent Register.</span></li>
<li style="text-align: justify;"><span style="line-height: 1.5em; color: #800000;"><a href="http://ep.espacenet.com/"><span style="color: #800000;">http://ep.espacenet.com/</span></a></span><span style="line-height: 1.5em;"> Patent search Database, Search Engine.</span></li>
</ul></br>
<p style="text-align: justify;">
<strong style="font-size: 1.17em; line-height: 1.5em;">
<a href="http://www.aripo.org/">
Africa Regional (ARIPO)
</a>
</strong>
</p>
<ul style="text-align: justify; list-style: inherit;">
<li style="text-align: left;">
<span style="color: #800000;"><a href="http://www.aripo.org/"><span style="color: #800000;">http://www.aripo.org/</span></a> </span> Basic information on African region and its 17 members association.</li>
<li><span style="color: #800000;"><a href="http://www.insouth.org/index.php?option=com_content&view=frontpage&Itemid=1"><span style="color: #800000;">http://www.insouth.org/index.php?option=com_content&view=frontpage&Itemid=1</span></a></span> Intellectual network of the south African countries.</li>
</ul></br>
<p style="text-align: justify;">
<strong style="font-size: 1.17em; line-height: 1.5em;">
<a href="http://www.uspto.gov/">
USPTO
</a>
</strong>
</p>
<ul style="text-align: justify; list-style: inherit;">
<li style="text-align: left;">
<a href="http://www.uspto.gov/patents/process/search/index.jsp"><span style="color: #800000;">http://www.uspto.gov/patents/process/search/index.jsp</span></a><span style="color: #800000;"> </span></span>Patent Search , Laws, Regulations, Policies.</li>
</ul></br>
<p style="text-align: justify;">
<strong style="font-size: 1.17em; line-height: 1.5em;">
<a href="http://www.patent.gov.uk/">
UK Patent Office
</a>
</strong>
</p>
<ul style="text-align: justify; list-style: inherit;">
<li style="text-align: left;">
<a href="http://www.ipo.gov.uk/types/hargreaves.htm"><span style="color: #800000;">http://www.ipo.gov.uk/types/hargreaves.htm</span></a></span> Searching Patent , Trademark , Copyright and design Databases, Filing , and resolving the disputes regarding Patents , Trademarks , Copyrights, and Designs.
</li>
</ul></br>
<p style="text-align: justify;">
<strong style="font-size: 1.17em; line-height: 1.5em;">
<a href="http://www.cpo.cn.net/">
People’s Republic of China.
</a>
</strong>
</p>
<ul style="text-align: justify; list-style: inherit;">
<li style="text-align: left;">
<a href="http://www.chinatrademarkoffice.com/about/index.html"><span style="color: #800000;">http://www.chinatrademarkoffice.com/about/index.html</span></a></span> Governmental Agencies offering Trademark , Patent , Copyright and other related services . Search Databases for Trademarks, Copyrights , Patents.
</li>
<li><span style="color: #800000;"><a href="http://english.sipo.gov.cn/about/"><span style="color: #800000;">http://english.sipo.gov.cn/about/</span></a> </span> Patent search , Statistics, Patent Applications , patent Examination.</li>
</ul></br>
<p style="text-align: justify;">
<strong style="font-size: 1.17em; line-height: 1.5em;">
<a href="http://www.jpo.go.jp/">
Japan
</a>
</strong>
</p>
<ul style="text-align: justify; list-style: inherit;">
<li style="text-align: left;">
<a href="http://www.ipdl.inpit.go.jp/homepg_e.ipdl" target="_blank"><span style="color: #800000;">http://www.ipdl.inpit.go.jp/homepg_e.ipdl</span></a></span> The Industrial Property Digital Library (IPDL) offers the public access to IP Gazettes of the JPO free of charge through the Internet.
</li>
</ul>
<p style="text-align: justify;">
<strong style="font-size: 1.17em; line-height: 1.5em;">
The Republic of Korea
</strong>
</p>
<ul style="text-align: justify; list-style: inherit;">
<li style="text-align: left;">
<a href="http://engpat.kipris.or.kr/engpat/searchLogina.do?next=MainSearch"><span style="color: #800000;">http://engpat.kipris.or.kr/engpat/searchLogina.do?next=MainSearch</span></a>
</li>
<li><span style="color: #800000;"><a href="http://www.patentlens.net/daisy/ipsearch/ipsearch/1628/1641/g1/1655.html"><span style="color: #800000;">http://www.patentlens.net/daisy/ipsearch/ipsearch/1628/1641/g1/1655.html</span></a></span><span style="line-height: 1.5em;"><span style="color: #800000;"> </span> Korean patent abstract search in English.</span></li>
<li><span style="color: #800000;"><a href="http://www.kipris.or.kr/enghome/main.jsp"><span style="color: #800000;">http://www.kipris.or.kr/enghome/main.jsp</span></a> <span style="color: #000000;"> <a href="http://eng.kipris.or.kr/eng"><span style="color: #000000;">Korea Intellectual Property Rights Information Service [KIPRIS]</span></a></span></span><span style="color: #000000;"> is the</span><span style="line-height: 1.5em;"> most comprehensive free industrial property information search system in Korea.</span></li>
<li><span style="color: #800000;"><a href="http://k-pion.kipo.go.kr/"><span style="color: #800000;">Korean Patent Information Online Network [K-PION]</span></a></span><span style="line-height: 1.5em;"> K-PION is a Korean-English machine translation service of the Korean Intellectual Property Office.</span></li>
</ul></br>
<p style="text-align: justify;">
<strong style="font-size: 1.17em; line-height: 1.5em;">
<a href="http://www.inpi.gov.br/">
Brazil
</a>
</strong>
</p>
<ul style="text-align: justify; list-style: inherit;">
<li style="text-align: left;">
<span style="color: #993300;">
<a href="https://gru.inpi.gov.br/pPI/jsp/patentes/PatenteSearchBasico.jsp">
https://gru.inpi.gov.br/pPI/jsp/patentes/PatenteSearchBasico.jsp</span>
</a>
</span>
For Patents
</li>
</ul></br>
<p style="text-align: justify;">
<strong style="font-size: 1.17em; line-height: 1.5em;">
<a href="http://www.myipo.gov.my/">
Malaysia
</a>
</strong>
</p>
<ul style="text-align: justify; list-style: inherit;">
<li style="text-align: left;">
<span style="color: #993300;">
<a href="https://iponline.myipo.gov.my/ipo/main/search.cfm">
https://iponline.myipo.gov.my/ipo/main/search.cf
</a>
</span>
Patent search
</li>
</ul></br>
<p style="text-align: justify;">
<strong style="font-size: 1.17em; line-height: 1.5em;">
Canada
</strong>
</p>
<ul style="text-align: justify; list-style: inherit;">
<li style="text-align: left;">
<span style="color: #993300;">
<a href="http://www.cipo.ic.gc.ca/eic/site/cipointernet-internetopic.nsf/eng/wr00012.html">
http://www.cipo.ic.gc.ca/eic/site/cipointernet-internetopic.nsf/eng/wr00012.html
</a>
</span>
Patents Search
</li>
</ul></br>
<p style="text-align: justify;">
<strong style="font-size: 1.17em; line-height: 1.5em;">
<a href="http://www.patent-und-markenamt.de/">
Germany
</a>
</strong>
</p>
<ul style="text-align: justify; list-style: inherit;">
<li style="text-align: left;">
<span style="color: #993300;">
<a href="https://depatisnet.dpma.de/DepatisNet/depatisnet?window=1&space=menu&content=index&action=einsteiger">
https://depatisnet.dpma.de/DepatisNet/depatisnet?window=1&space=menu&content=index&action=einsteiger
</a>
</span>
Beginners patent search
</li>
<li><span style="color: #800000;"><a href="https://depatisnet.dpma.de/ipc/recherche.do"><span style="color: #800000;">https://depatisnet.dpma.de/ipc/recherche.do</span></a> </span>Patent search</li>
<li style="text-align: justify;"><span style="color: #800000;"><a href="https://register.dpma.de/DPMAregister/pat/einsteiger?lang=en"><span style="color: #800000;">https://register.dpma.de/DPMAregister/pat/einsteiger?lang=en</span></a></span></li>
</ul></br>
<p style="text-align: justify;">
<strong style="font-size: 1.17em; line-height: 1.5em;">
<a href="http://www.info.gov.hk/ipd/">
Hong Kong Patent Office
</a>
</strong>
</p>
<ul style="text-align: justify; list-style: inherit;">
<li style="text-align: left;">
<span style="color: #993300;">
<a href="http://www.ip-prd.net/db_patents_e.htm">
http://www.ip-prd.net/db_patents_e.htm
</a>
</span>
Patent search in Guangdong, HongKong, Macao
</li>
</ul></br>
<p style="text-align: justify;">
<strong style="font-size: 1.17em; line-height: 1.5em;">
<a href="http://www.ipaustralia.gov.au/">
IP Australia
</a>
</strong>
</p>
<ul style="text-align: justify; list-style: inherit;">
<li style="text-align: left;">
<span style="color: #993300;">
<a href="http://www.ipaustralia.gov.au/auspat/index.htm">
http://www.ipaustralia.gov.au/auspat/index.htm
</a>
</span>
Search Patents
</li>
</ul></br>
<p style="text-align: justify;">
<strong style="font-size: 1.17em; line-height: 1.5em;">
<a href="http://www.gov.sg/government/web/content/govsg/classic/home+">
Singapore
</a>
</strong>
</p>
<ul style="text-align: justify; list-style: inherit;">
<li style="text-align: left;">
<span style="color: #993300;">
<a href="https://www.ip2.sg/RPS/WP/CM/SearchSimpleP.aspx?SearchCategory=PT">
https://www.ip2.sg/RPS/WP/CM/SearchSimpleP.aspx?SearchCategory=PT
</a>
</span>
Patent search
</li>
</ul>
<p style="text-align: justify;">
<strong style="font-size: 1.17em; line-height: 1.5em;">
Worldwide Patent Offices
</strong>
</p>
<ul style="text-align: justify; list-style: inherit;">
<li style="text-align: left;">
<span style="color: #993300;">
<a href="http://www.uspto.gov/">
The USPTO
</a>
</span>
</li>
<li><span style="color: #800000;"><a href="http://ep.espacenet.com/"><span style="color: #800000;">The EPO</span></a></span></li>
<li><span style="color: #800000;"><a href="http://www.patent.gov.uk/"><span style="color: #800000;">UK Patent Office</span></a></span></li>
<li><span style="color: #800000;"><a href="http://www.patent-und-markenamt.de/"><span style="color: #800000;">German Patent Office</span></a></span></li>
<li><span style="color: #800000;"><a href="http://www.jpo.go.jp/"><span style="color: #800000;">Japanese Patent Office</span></a></span></li>
<li><span style="color: #800000;"><a href="http://cipo.gc.ca/"><span style="color: #800000;">Canadian Intellectual Property Office</span></a></span></li>
<li><span style="color: #800000;"><a href="http://www.info.gov.hk/ipd/"><span style="color: #800000;">Hong Kong Patent Office</span></a></span></li>
<li><span style="color: #800000;"><a href="http://www.rupto.ru/"><span style="color: #800000;">Russian Intellectual Property Information</span></a></span></li>
<li><span style="color: #800000;"><a href="http://www.eapo.org/eng/news/index.html"><span style="color: #800000;">The Eurasian Patent Office</span></a></span></li>
<li><span style="color: #800000;"><a href="http://www.aripo.org/"><span style="color: #800000;">Africa Regional (ARIPO)</span></a></span></li>
<li><span style="color: #800000;"><a href="http://www.ipaustralia.gov.au/" target="home"><span style="color: #800000;">IP Australia</span></a></span></li>
<li><span style="color: #800000;"><a href="http://www.inpi.gov.br/"><span style="color: #800000;">Brazil</span></a></span></li>
<li><span style="color: #800000;"><a href="http://www.bpo.bg/"><span style="color: #800000;">Bulgaria</span></a></span></li>
<li><span style="color: #800000;"><a href="http://www.cpo.cn.net/"><span style="color: #800000;">China, People’s Republic of</span></a></span></li>
<li><span style="color: #800000;"><a href="http://www.ocpi.cu/"><span style="color: #800000;">Cuba</span></a></span></li>
<li><span style="color: #800000;"><a href="http://www.upv.cz/"><span style="color: #800000;">Czech Republic</span></a></span></li>
<li><span style="color: #800000;"><a href="http://www.dkpto.dk/"><span style="color: #800000;">Denmark</span></a></span></li>
<li><span style="color: #800000;"><a href="http://www.prh.fi/"><span style="color: #800000;">Finland</span></a></span></li>
<li><span style="color: #800000;"><a href="http://regbrvfr.inpi.fr/portal"><span style="color: #800000;">France</span></a></span></li>
<li><span style="color: #800000;"><a href="http://www.ufficiobrevetti.it/en/patents/patent_home.htm"><span style="color: #800000;">Italy</span></a></span></li>
<li><span style="color: #800000;"><a href="http://www.jpo.go.jp/"><span style="color: #800000;">Japan</span></a></span></li>
<li><span style="color: #800000;"><a href="http://www.kipo.go.kr/"><span style="color: #800000;">Korea</span></a></span></li>
<li><span style="color: #800000;"><a href="http://www.etat.lu/EC/"><span style="color: #800000;">Luxembourg</span></a></span></li>
<li><span style="color: #800000;"><a href="http://www.myipo.gov.my/"><span style="color: #800000;">Malaysia</span></a></span></li>
<li><span style="color: #800000;"><a href="http://www.impi.gob.mx/"><span style="color: #800000;">Mexico</span></a></span></li>
<li><span style="color: #800000;"><a href="http://www.agepi.md/"><span style="color: #800000;">Moldova</span></a></span></li>
<li><span style="color: #800000;"><a href="http://en.octrooicentrum.nl/"><span style="color: #800000;">Netherlands</span></a></span></li>
<li><span style="color: #800000;"><a href="http://www.iponz.govt.nz/cms"><span style="color: #800000;">New Zealand</span></a></span></li>
<li><span style="color: #800000;"><a href="http://www.indecopi.gob.pe/"><span style="color: #800000;">Peru</span></a></span></li>
<li><span style="color: #800000;"><a href="http://www.ibspan.waw.pl/"><span style="color: #800000;">Poland</span></a></span></li>
<li><span style="color: #800000;"><a href="http://www.inpi.pt/"><span style="color: #800000;">Portugal</span></a></span></li>
<li><span style="color: #800000;"><a href="http://www.osim.ro/"><span style="color: #800000;">Romania</span></a></span></li>
<li><span style="color: #800000;"><a href="http://www.rupto.ru/"><span style="color: #800000;">Russia</span></a></span></li>
<li><span style="color: #800000;"><a href="http://www.gov.sg/government/web/content/govsg/classic/home+"><span style="color: #800000;">Singapore</span></a></span></li>
<li><span style="color: #800000;"><a href="http://www.indprop.gov.sk/"><span style="color: #800000;">Slovak Republic</span></a></span></li>
<li><span style="color: #800000;"><a href="http://www.oepm.es/cs/Satellite?c=Page&cid=1144260495042&classIdioma=_en_us&idPage=1144260495042&pagename=OEPMSite%2FPage%2FtplHome"><span style="color: #800000;">Spain</span></a></span></li>
<li><span style="color: #800000;"><a href="http://www.prv.se/"><span style="color: #800000;">Sweden</span></a></span></li>
<li><span style="color: #800000;"><a href="http://www.ige.ch/"><span style="color: #800000;">Switzerland</span></a></span></li>
<li><span style="color: #800000;"><a href="http://www.wipo.org/"><span style="color: #800000;">WIPO World Intellectual Property Organization</span></a></span></li>
</ul></br>
<p style="text-align: justify;">
<strong style="font-size: 1.17em; line-height: 1.5em;">
US Food and Drug Administration
</strong>
</p>
<ul style="text-align: justify; list-style: inherit;">
<li style="text-align: left;">
<span style="color: #993300;">
<a href="http://www.accessdata.fda.gov/scripts/cder/acronyms/index.cfm">
Acronyms and Abbreviations Search
</a>
</span>
The FDA Acronyms and Abbreviations database provides a quick reference to acronyms and abbreviations related to Food and Drug Administration (FDA) activities.
</li>
<li style="text-align: justify;"><span style="color: #800000;"><a href="http://www.accessdata.fda.gov/scripts/cder/ob/default.cfm"><span style="color: #800000;">Approved Drug Products with Therapeutic Equivalence Evaluations (Orange Book) Search</span></a></span></li>
<li style="text-align: justify;"><span style="color: #800000;"><a href="http://www.accessdata.fda.gov/scripts/cder/bmis/index.cfm"><span style="color: #800000;">Bioresearch Monitoring Information System (BMIS) Search</span></a></span></li>
<li style="text-align: justify;"><span style="color: #800000;"><a href="http://www.accessdata.fda.gov/scripts/cder/cliil/index.cfm"><span style="color: #800000;">Clinical Investigator Inspection List (CLIIL) Search</span></a></span></li>
<li style="text-align: justify;"><span style="color: #800000;"><a href="http://www.accessdata.fda.gov/scripts/cder/dissolution/index.cfm"><span style="color: #800000;">Dissolution Methods Database Search</span></a></span></li>
<li style="text-align: justify;"><span style="color: #800000;"><a href="http://www.accessdata.fda.gov/scripts/cder/drls/default.cfm"><span style="color: #800000;">Drug Establishments Current Registration Site Search</span></a></span></li>
<li style="text-align: justify;"><span style="color: #800000;"><a href="http://www.accessdata.fda.gov/scripts/cder/drugsatfda/index.cfm"><span style="color: #800000;">Drugs@FDA Search</span></a></span></li>
<li style="text-align: justify;"><span style="color: #800000;"><a href="http://www.fda.gov/Drugs/GuidanceComplianceRegulatoryInformation/Surveillance/AdverseDrugEffects/ucm082193.htm"><span style="color: #800000;">FDA Adverse Event Reporting System (FAERS) Quarterly Data Files</span></a> </span><span style="color: #000000;"> Downloadable data files.</span></li>
<li style="text-align: justify;"><span style="color: #800000;"><a href="http://www.accessdata.fda.gov/scripts/cder/iig/index.cfm"><span style="color: #800000;">Inactive Ingredient Search for Approved Drug Products Search</span></a></span></li>
<li style="text-align: justify;"><span style="color: #800000;"><a href="http://www.accessdata.fda.gov/scripts/cder/ndc/default.cfm" target="_blank"><span style="color: #800000;">National Drug Code Directory Search</span></a></span></li>
<li style="text-align: justify;"><span style="color: #800000;"><a href="http://www.accessdata.fda.gov/scripts/cder/pmc/index.cfm"><span style="color: #800000;">Post market Requirements and Commitments Search</span></a></span></li>
</ul>
</div>
</div>
<div class="grid_4">
<h2></h2>
<a href="http://rachanafoundation.org" target="_blank">
<img width="150" height="150" src="images/exponent-150x150.jpg" class="attachment-thumbnail" alt="slideA" />
</a>
</div><!-- #secondary .widget-area -->
</div>
<!--==============================Content=================================-->
<div class="content"><div class="ic"></div>
<div class="container_12">
</div>
</div>
<div class="bottom_block">
<div class="container_12">
<div class="grid_4">
<h3>Stay Informed</h3>
<div class="text1">Subscribe to Our Newsletter</div>
<form id="newsletter">
<div class="rel">
<div class="success">Your subscribe request has been sent!</div>
<label class="email">
<input type="email" value="Enter your Email" >
<span class="error">*This is not a valid email address.</span>
</label>
</div>
<a href="#" class="btn" data-type="submit">Submit</a>
</form>
</div>
<div class="grid_5 prefix_3">
<h3>Stay Connected</h3>
<div class="text1"><span style="color: #993300;"><b>About Us </b></span></div>
<p>
Rachana Foundation is an independent non-profit organization registered under Societies Registration Act and Bombay Public Trust Act. It is based in Mumbai, India. It was conceived by Vasundhara Rao with a mission of raising Intellectual Property awareness in various sections of the society. Vasundhara Rao is a veteran Indian Lawyer with an expertise in Intellectual Property Law and a passion for social work.
</p>
<div class="text1"><span style="color: #993300;"><b>Special Thanks! </b></span></div>
<p>
We express our gratitude to Exponent- Attorneys At Law for their invaluable support and expert guidance.
</p>
<div class="socials">
<a href="#"><div class="fa fa-twitter"></div></a>
<a href="#"><div class="fa fa-facebook"></div></a>
<a href="#"><div class="fa fa-pinterest-square"></div></a>
<a href="#"><div class="fa fa-google-plus"></div></a>
<a href="#"><div class="fa fa-instagram"></div></a>
</div>
</div>
</div>
</div>
<!--==============================footer=================================-->
<footer>
<div class="container_12">
<div class="grid_12">
<div class="copy">
Rachana Foundation © 2014 | <a href="privacy-and-terms-of-use.html">Privacy Policy</a> <br> Website designed by <a href="http://www.Dpower4.com/" rel="nofollow">Dpower4.com</a>
</div>
</div>
</div>
</footer>
<script src="js/jquery.hoverdir.js"></script>
</body>
</html>