updf 2.0:
- much faster - native text selection - ui improvements
This commit is contained in:
@@ -1,64 +0,0 @@
|
||||
ABOUT
|
||||
|
||||
MuPDF is a lightweight PDF and XPS viewer and parser/rendering library.
|
||||
|
||||
The renderer in MuPDF is tailored for high quality anti-aliased graphics. It
|
||||
renders text with metrics and spacing accurate to within fractions of a pixel
|
||||
for the highest fidelity in reproducing the look of a printed page on screen.
|
||||
|
||||
MuPDF is also small, fast, and yet complete. We support PDF 1.7 with
|
||||
transparency, encryption, hyperlinks, annotations, search and many other bells
|
||||
and whistles. MuPDF can also read XPS documents (OpenXPS / ECMA-388).
|
||||
|
||||
We don't support interactive features such as form filling, javascript and
|
||||
transitions. MuPDF is written modularly, so such features can be added on by
|
||||
integrators if they so desire.
|
||||
|
||||
LICENSE
|
||||
|
||||
MuPDF is Copyright 2006-2011 Artifex Software, Inc.
|
||||
|
||||
This program is free software: you can redistribute it and/or modify it under
|
||||
the terms of the GNU General Public License as published by the Free Software
|
||||
Foundation, either version 3 of the License, or (at your option) any later
|
||||
version.
|
||||
|
||||
This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along with
|
||||
this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
For commercial licensing please contact sales@artifex.com.
|
||||
|
||||
COMPILING
|
||||
|
||||
If you are compiling from source you will need several third party libraries:
|
||||
freetype2, jbig2dec, libjpeg, openjpeg, and zlib. We have prepared a package
|
||||
(mupdf-thirdparty.zip) that you can unzip in the mupdf source tree if you don't
|
||||
have them installed on your system.
|
||||
|
||||
You must unpack mupdf-thirdparty.zip to build using the Visual Studio project.
|
||||
|
||||
DOWNLOAD
|
||||
|
||||
The latest development source is available directly from the git repository:
|
||||
|
||||
git clone http://mupdf.com/repos/mupdf.git
|
||||
|
||||
INSTALLING
|
||||
|
||||
Typing "make prefix=/usr/local install" will install the binaries, man-pages,
|
||||
static libraries and header files on your system.
|
||||
|
||||
REPORTING BUGS AND PROBLEMS
|
||||
|
||||
The MuPDF developers hang out on IRC in the #ghostscript channel on irc.freenode.net.
|
||||
|
||||
Report bugs on the ghostscript bugzilla, with MuPDF as the selected component.
|
||||
|
||||
http://bugs.ghostscript.com/
|
||||
|
||||
If you are reporting a problem with PDF parsing, please include the problematic
|
||||
file as an attachment.
|
||||
@@ -1,23 +0,0 @@
|
||||
CC = kos32-gcc
|
||||
LD = kos32-ld
|
||||
|
||||
SDK_DIR = $(abspath ../../../sdk)
|
||||
LDFLAGS = -static -nostdlib -T $(SDK_DIR)/sources/newlib/app.lds --image-base 0
|
||||
|
||||
CFLAGS = -c -fno-ident -O2 -fomit-frame-pointer -fno-ident -U__WIN32__ -U_Win32 -U_WIN32 -U__MINGW32__ -UWIN32
|
||||
|
||||
INCLUDES = -I $(SDK_DIR)/sources/newlib/libc/include -I $(SDK_DIR)/sources/freetype/include -I $(SDK_DIR)/sources/zlib -I ../fitz -I ../pdf
|
||||
LIBPATH = -L $(SDK_DIR)/lib -L /home/autobuild/tools/win32/mingw32/lib -L ../lib
|
||||
|
||||
APPS_SRC := kolibri.c kos_main.c pdfapp.c
|
||||
|
||||
default: $(patsubst %.c,%.o,$(APPS_SRC))
|
||||
$(LD) $(LDFLAGS) $(LIBPATH) --subsystem native -o updf kolibri.o pdfapp.o kos_main.o -lmupdf -lfitz -lgcc -lfitz -ldraw -ljpeg -ljbig2dec -lfreetype -lopenjpeg -lz.dll -lc.dll
|
||||
objcopy updf -O binary
|
||||
|
||||
|
||||
%.o : %.c Makefile $(APPS_SRC)
|
||||
$(CC) $(CFLAGS) $(INCLUDES) -o $@ $<
|
||||
|
||||
clean:
|
||||
rm *.o
|
||||
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.5 KiB |
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
@@ -1,10 +1,10 @@
|
||||
/*==== INCLUDES ====*/
|
||||
|
||||
#include "fitz.h"
|
||||
#include "mupdf.h"
|
||||
#include "mupdf/fitz.h"
|
||||
#include "pdfapp.h"
|
||||
#include "icons/allbtns.h"
|
||||
#include "kolibri.h"
|
||||
#include <string.h>
|
||||
|
||||
|
||||
/*==== DATA ====*/
|
||||
@@ -14,6 +14,11 @@ static pdfapp_t gapp;
|
||||
char debugstr[256];
|
||||
char do_not_blit=0;
|
||||
|
||||
// MuPDF 0.9 defined these in fitz.h; 1.19 does not (it uses fz_mini/etc).
|
||||
#define MIN(a,b) ((a) < (b) ? (a) : (b))
|
||||
#define MAX(a,b) ((a) > (b) ? (a) : (b))
|
||||
#define ABS(x) ((x) < 0 ? -(x) : (x))
|
||||
|
||||
#define TOOLBAR_HEIGHT 34
|
||||
struct proc_info Form;
|
||||
|
||||
@@ -22,6 +27,7 @@ struct proc_info Form;
|
||||
|
||||
#define SCROLL_STEP 50 // pixels moved per scroll gesture (arrow key / wheel notch)
|
||||
#define PAGE_GAP 14 // gray gap between pages, like in a word processor
|
||||
#define SIDE_MARGIN 8 // small side gap when fitting a page to the width
|
||||
|
||||
// keyboard scancodes (layout-independent, from fn 2 bits 16-23)
|
||||
#define SC_ESC 0x01
|
||||
@@ -32,6 +38,7 @@ struct proc_info Form;
|
||||
#define SC_RBRACKET 0x1B // ]
|
||||
#define SC_G 0x22
|
||||
#define SC_L 0x26
|
||||
#define SC_W 0x11 // fit page to width
|
||||
#define SC_NUM_MINUS 0x4A // keypad -
|
||||
#define SC_NUM_PLUS 0x4E // keypad +
|
||||
#define SC_HOME 0x47
|
||||
@@ -55,7 +62,7 @@ static int sb_drag_off; // pointer offset inside the runner while draggi
|
||||
// mouse interaction on the page: left = select text, right = drag (pan)
|
||||
static char sel_dragging; // left button held, building a selection
|
||||
static char sel_has; // a highlighted selection is on screen
|
||||
static int sel_x0, sel_y0; // selection anchor, device coordinates
|
||||
static fz_point sel_anchor; // selection start, in page space
|
||||
static char pan_dragging; // right button held, panning the page
|
||||
static int pan_last_my; // last pointer y while panning
|
||||
|
||||
@@ -63,7 +70,8 @@ static int pan_last_my; // last pointer y while panning
|
||||
#define PAGE_CACHE_N 3
|
||||
static fz_pixmap *cache_pix[PAGE_CACHE_N];
|
||||
static int cache_no[PAGE_CACHE_N];
|
||||
static int cache_res = -1, cache_rot = -1, cache_gray = -1;
|
||||
static float cache_res = -1;
|
||||
static int cache_rot = -1, cache_gray = -1;
|
||||
|
||||
short show_area_w = 65;
|
||||
short show_area_x;
|
||||
@@ -71,6 +79,8 @@ short show_area_x;
|
||||
char key_mode_enter_page_number;
|
||||
int new_page_number;
|
||||
|
||||
static char fit_pending = 1; // fit the page to width on the first draw
|
||||
|
||||
const char *help[] = {
|
||||
"Keys:",
|
||||
" ",
|
||||
@@ -81,6 +91,7 @@ const char *help[] = {
|
||||
"Down arrow - scroll down",
|
||||
"Up arrow - scroll up",
|
||||
"+/- - zoom in/out",
|
||||
"w - fit page to width",
|
||||
"[ or l - rotate page 90 deg to the left",
|
||||
"] or r - rotate page 90 deg to the right",
|
||||
"g - grayscale on/off",
|
||||
@@ -111,53 +122,18 @@ void DrawScrollbar(void);
|
||||
void ScrollToDocPos(int pos);
|
||||
void ScrollbarMouse(void);
|
||||
void ClearSelection(void);
|
||||
int ClientToPageDev(int mx, int my, int *dx, int *dy);
|
||||
int ClientToPagePoint(int mx, int my, fz_point *pt);
|
||||
void CopySelectionToClipboard(void);
|
||||
void ProcessPageMouse(void);
|
||||
void FitPageWidth(void);
|
||||
|
||||
|
||||
// not implemented yet
|
||||
void wincursor(pdfapp_t *app, int curs) { }
|
||||
void winhelp(pdfapp_t *app) { }
|
||||
void winresize(pdfapp_t *app, int w, int h) { }
|
||||
void windocopy(pdfapp_t *app) { }
|
||||
void winopenuri(pdfapp_t *app, char *buf) { }
|
||||
void winrepaintsearch(pdfapp_t *app) { }
|
||||
|
||||
|
||||
void winwarn(pdfapp_t *app, char *msg)
|
||||
{
|
||||
fprintf(stderr, "mupdf: %s\n", msg);
|
||||
}
|
||||
|
||||
|
||||
void winerror(pdfapp_t *app, fz_error error)
|
||||
{
|
||||
fz_catch(error, "aborting");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
|
||||
char *winpassword(pdfapp_t *app, char *filename)
|
||||
{
|
||||
char *r = "";
|
||||
return r;
|
||||
random();
|
||||
}
|
||||
|
||||
|
||||
// The MuPDF 1.19 glue (pdfapp.c) only calls back into winrepaint().
|
||||
void wintitle(pdfapp_t *app, char *s, char param[])
|
||||
{
|
||||
sprintf(Title,"%s - uPDF", strrchr(param, '/') + 1 );
|
||||
}
|
||||
|
||||
|
||||
void winreloadfile(pdfapp_t *app)
|
||||
{
|
||||
//pdfapp_close(app);
|
||||
//pdfapp_open(app, filename, 0, 1);
|
||||
}
|
||||
|
||||
void winclose(pdfapp_t *app)
|
||||
{
|
||||
pdfapp_close(&gapp);
|
||||
@@ -185,7 +161,7 @@ void FlushPageCache(void)
|
||||
int i;
|
||||
for (i = 0; i < PAGE_CACHE_N; i++)
|
||||
{
|
||||
if (cache_pix[i]) fz_drop_pixmap(cache_pix[i]);
|
||||
if (cache_pix[i]) fz_drop_pixmap(gapp.ctx, cache_pix[i]);
|
||||
cache_pix[i] = NULL;
|
||||
cache_no[i] = 0;
|
||||
}
|
||||
@@ -223,9 +199,9 @@ void StashPixmap(int pageno, fz_pixmap *pix)
|
||||
slot = 0;
|
||||
for (i = 1; i < PAGE_CACHE_N; i++)
|
||||
if (ABS(cache_no[i] - pageno) > ABS(cache_no[slot] - pageno)) slot = i;
|
||||
fz_drop_pixmap(cache_pix[slot]);
|
||||
fz_drop_pixmap(gapp.ctx, cache_pix[slot]);
|
||||
}
|
||||
cache_pix[slot] = fz_keep_pixmap(pix);
|
||||
cache_pix[slot] = fz_keep_pixmap(gapp.ctx, pix);
|
||||
cache_no[slot] = pageno;
|
||||
}
|
||||
|
||||
@@ -250,7 +226,7 @@ fz_pixmap *GetPageImage(int pageno)
|
||||
slot = 0;
|
||||
for (i = 1; i < PAGE_CACHE_N; i++)
|
||||
if (ABS(cache_no[i] - gapp.pageno) > ABS(cache_no[slot] - gapp.pageno)) slot = i;
|
||||
fz_drop_pixmap(cache_pix[slot]);
|
||||
fz_drop_pixmap(gapp.ctx, cache_pix[slot]);
|
||||
cache_pix[slot] = NULL;
|
||||
}
|
||||
cache_pix[slot] = pdfapp_renderpage(&gapp, pageno);
|
||||
@@ -296,7 +272,7 @@ void BlitPageSlice(fz_pixmap *pix, int vy, int srcy, int h)
|
||||
srcy,
|
||||
pix->w,
|
||||
pix->h,
|
||||
pix->w * pix->n, // stride
|
||||
pix->stride, // row stride (1.19 pixmap)
|
||||
pix->samples // image
|
||||
);
|
||||
}
|
||||
@@ -491,56 +467,45 @@ void ClearSelection(void)
|
||||
sel_dragging = 0;
|
||||
}
|
||||
|
||||
// map a client point to device coordinates inside the current page.
|
||||
// Coordinates are clamped to the page; the return value tells whether
|
||||
// the original point was actually within the page rectangle.
|
||||
int ClientToPageDev(int mx, int my, int *dx, int *dy)
|
||||
// map a client point to a page-space point (what MuPDF's selection API
|
||||
// wants). Coordinates are clamped to the page; the return value tells
|
||||
// whether the original point was actually within the page rectangle.
|
||||
int ClientToPagePoint(int mx, int my, fz_point *pt)
|
||||
{
|
||||
int wc = PageCenterX(gapp.image);
|
||||
int px = mx - wc; // pixel x within the page
|
||||
int py = my - TOOLBAR_HEIGHT + gapp.pany; // pixel y within the page
|
||||
int px = mx - wc; // pixel col within the page
|
||||
int py = my - TOOLBAR_HEIGHT + gapp.pany; // pixel row within the page
|
||||
int inside = (px >= 0 && px < gapp.image->w && py >= 0 && py < gapp.image->h);
|
||||
|
||||
if (px < 0) px = 0; else if (px > gapp.image->w) px = gapp.image->w;
|
||||
if (py < 0) py = 0; else if (py > gapp.image->h) py = gapp.image->h;
|
||||
*dx = px + gapp.image->x;
|
||||
*dy = py + gapp.image->y;
|
||||
*pt = pdfapp_devtopage(&gapp, px, py);
|
||||
return inside;
|
||||
}
|
||||
|
||||
// UTF-8 encode a single code point (<= 0xFFFF); returns bytes written
|
||||
static int utf8_put(unsigned c, char *out)
|
||||
{
|
||||
if (c < 0x80) { out[0] = c; return 1; }
|
||||
if (c < 0x800) { out[0] = 0xC0 | (c >> 6); out[1] = 0x80 | (c & 0x3F); return 2; }
|
||||
out[0] = 0xE0 | (c >> 12);
|
||||
out[1] = 0x80 | ((c >> 6) & 0x3F);
|
||||
out[2] = 0x80 | (c & 0x3F);
|
||||
return 3;
|
||||
}
|
||||
|
||||
// extract the selected text and push it to the KolibriOS clipboard
|
||||
// copy the selected text (UTF-8, from MuPDF) to the KolibriOS clipboard
|
||||
// (fn 54: 12-byte header {size, type=text, encoding=UTF-8} + data)
|
||||
void CopySelectionToClipboard(void)
|
||||
{
|
||||
static unsigned short ucs[4096];
|
||||
static char clip[12 + 4096 * 3 + 1];
|
||||
int i, n = 0;
|
||||
static char clip[12 + 65536];
|
||||
char *text;
|
||||
int n, total;
|
||||
|
||||
int total;
|
||||
|
||||
pdfapp_oncopy(&gapp, ucs, 4096);
|
||||
for (i = 0; ucs[i]; i++)
|
||||
n += utf8_put(ucs[i], clip + 12 + n);
|
||||
if (n == 0)
|
||||
text = pdfapp_copyselection(&gapp);
|
||||
if (!text)
|
||||
return;
|
||||
n = strlen(text);
|
||||
if (n > 65535) n = 65535;
|
||||
if (n == 0) { fz_free(gapp.ctx, text); return; }
|
||||
|
||||
total = 12 + n;
|
||||
// 12-byte header, little-endian, written byte-wise to avoid aliasing
|
||||
clip[0] = total; clip[1] = total >> 8; clip[2] = total >> 16; clip[3] = total >> 24;
|
||||
clip[4] = clip[5] = clip[6] = clip[7] = 0; // type: text
|
||||
clip[8] = clip[9] = clip[10] = clip[11] = 0; // encoding: 0 = UTF-8
|
||||
memcpy(clip + 12, text, n);
|
||||
kol_clip_set(total, clip);
|
||||
fz_free(gapp.ctx, text);
|
||||
}
|
||||
|
||||
// left button = select text, right button = grab & drag the page.
|
||||
@@ -552,7 +517,6 @@ void ProcessPageMouse(void)
|
||||
int my = (short)(mp & 0xFFFF);
|
||||
int btn = kol_mouse_btn();
|
||||
int left = btn & 1, right = btn & 2;
|
||||
int dx, dy;
|
||||
|
||||
/* --- right button: grab & drag (hand tool) --- */
|
||||
if (right)
|
||||
@@ -585,23 +549,22 @@ void ProcessPageMouse(void)
|
||||
/* --- left button: text selection --- */
|
||||
if (left && mx >= 0 && mx < ViewW() && my >= TOOLBAR_HEIGHT)
|
||||
{
|
||||
int inside = ClientToPageDev(mx, my, &dx, &dy);
|
||||
fz_point pt;
|
||||
int inside = ClientToPagePoint(mx, my, &pt);
|
||||
if (!sel_dragging)
|
||||
{
|
||||
if (!inside) return; // start only on the page itself
|
||||
ClearSelection();
|
||||
winblit(&gapp);
|
||||
sel_x0 = dx;
|
||||
sel_y0 = dy;
|
||||
sel_anchor = pt;
|
||||
sel_dragging = 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (sel_has) pdfapp_invertselection(&gapp); // lift old highlight
|
||||
gapp.selr.x0 = MIN(sel_x0, dx);
|
||||
gapp.selr.x1 = MAX(sel_x0, dx);
|
||||
gapp.selr.y0 = MIN(sel_y0, dy);
|
||||
gapp.selr.y1 = MAX(sel_y0, dy);
|
||||
gapp.sel_a = sel_anchor;
|
||||
gapp.sel_b = pt;
|
||||
gapp.sel_valid = 1;
|
||||
pdfapp_invertselection(&gapp);
|
||||
sel_has = 1;
|
||||
winblit(&gapp);
|
||||
@@ -640,7 +603,7 @@ void GoToPage(int n, int new_pany)
|
||||
|
||||
if (cached)
|
||||
{
|
||||
if (gapp.image) fz_drop_pixmap(gapp.image);
|
||||
if (gapp.image) fz_drop_pixmap(gapp.ctx, gapp.image);
|
||||
gapp.image = cached;
|
||||
pdfapp_showpage(&gapp, 1, 0, 0); // reload page_list/text/links only
|
||||
}
|
||||
@@ -756,6 +719,11 @@ void DrawMainWindow(void)
|
||||
kol_btn_define(show_area_x-1, 5, show_area_w+1, 23, 20 + BT_HIDE, 0xA4A4A4);
|
||||
kol_paint_bar(show_area_x, 5, show_area_w, 1, 0xA4A4A4);
|
||||
kol_paint_bar(show_area_x, 28, show_area_w, 1, 0xA4A4A4);
|
||||
if (fit_pending && gapp.image) // open the document fitted to width
|
||||
{
|
||||
FitPageWidth();
|
||||
fit_pending = 0;
|
||||
}
|
||||
ClearSelection();
|
||||
NormalizeScrollPos();
|
||||
winblit(&gapp);
|
||||
@@ -801,6 +769,23 @@ void RunApp(char app[], char param[])
|
||||
kol_file_70(&r);
|
||||
}
|
||||
|
||||
// Scale the page so it fills the view width minus a small side margin,
|
||||
// re-rendering the current page. Neighbours re-render lazily (the cache
|
||||
// is keyed on resolution). Called once on open and bound to the 'w' key.
|
||||
void FitPageWidth(void)
|
||||
{
|
||||
int target;
|
||||
if (!gapp.image || gapp.image->w <= 0 || Form.cwidth == 0)
|
||||
return;
|
||||
target = ViewW() - 2 * SIDE_MARGIN;
|
||||
if (target < 50)
|
||||
return;
|
||||
gapp.resolution = gapp.resolution * (float)target / gapp.image->w;
|
||||
if (gapp.resolution < 18) gapp.resolution = 18;
|
||||
if (gapp.resolution > 1200) gapp.resolution = 1200;
|
||||
pdfapp_showpage(&gapp, 0, 1, 0); /* re-render current page, no repaint */
|
||||
}
|
||||
|
||||
void PageZoomIn(void)
|
||||
{
|
||||
int oldh = gapp.image->h;
|
||||
@@ -868,7 +853,6 @@ int main (int argc, char* argv[])
|
||||
char buf[128];
|
||||
int resolution = 72;
|
||||
int pageno = 1;
|
||||
fz_accelerate();
|
||||
pdfapp_init(&gapp);
|
||||
gapp.scrw = 600;
|
||||
gapp.scrh = 400;
|
||||
@@ -889,17 +873,21 @@ int main (int argc, char* argv[])
|
||||
case evReDraw:
|
||||
// gapp.shrinkwrap = 2;
|
||||
kol_paint_start();
|
||||
kol_wnd_define(screen_max_x / 2 - 350-50+kos_random(50),
|
||||
screen_max_y / 2 - 300-50+kos_random(50),
|
||||
700, 600, 0x73000000, 0x800000FF, Title);
|
||||
kol_wnd_define(
|
||||
(screen_max_x - (screen_max_y*8/10)) / 2 -15+kos_random(30),
|
||||
screen_max_y/20+kos_random(20),
|
||||
screen_max_y*8/10,
|
||||
screen_max_y*9/10,
|
||||
0x73000000, 0x800000FF, Title
|
||||
);
|
||||
kol_paint_end();
|
||||
kol_process_info(-1, (char*)&Form);
|
||||
|
||||
if (Form.window_state & 4) continue; // if Rolled-up
|
||||
|
||||
// Minimal size (640x480)
|
||||
if (Form.width < 640) kol_wnd_change(-1, -1, 640, -1);
|
||||
if (Form.height < 480) kol_wnd_change(-1, -1, -1, 480);
|
||||
if ((Form.width < 639) && (screen_max_x >= 639)) kol_wnd_change(-1, -1, 639, -1);
|
||||
if ((Form.height < 479) && (screen_max_y >= 479)) kol_wnd_change(-1, -1, -1, 479);
|
||||
|
||||
DrawMainWindow();
|
||||
break;
|
||||
@@ -927,6 +915,7 @@ int main (int argc, char* argv[])
|
||||
case SC_HOME: pdfapp_onkey(&gapp, 'g'); break; // first page
|
||||
case SC_END: pdfapp_onkey(&gapp, 'G'); break; // last page
|
||||
case SC_G: pdfapp_onkey(&gapp, 'c'); break; // grayscale on/off
|
||||
case SC_W: FitPageWidth(); NormalizeScrollPos(); winblit(&gapp); break; // fit width
|
||||
case SC_L:
|
||||
case SC_LBRACKET: PageRotateLeft(); break;
|
||||
case SC_R:
|
||||
@@ -950,10 +939,10 @@ int main (int argc, char* argv[])
|
||||
if(butt==13) //show help
|
||||
{
|
||||
kol_paint_bar(0, TOOLBAR_HEIGHT, Form.cwidth, Form.cheight - TOOLBAR_HEIGHT, 0xF2F2F2);
|
||||
kos_text(20, TOOLBAR_HEIGHT + 20, 0x90000000, "uPDF for KolibriOS v1.5", 0);
|
||||
kos_text(21, TOOLBAR_HEIGHT + 20, 0x90000000, "uPDF for KolibriOS v1.5", 0);
|
||||
kos_text(20, TOOLBAR_HEIGHT + 20, 0x81000000, "uPDF for KolibriOS v2.0", 0);
|
||||
kos_text(21, TOOLBAR_HEIGHT + 20, 0x81000000, "uPDF for KolibriOS v2.0", 0);
|
||||
for (ii=0; help[ii]!=0; ii++) {
|
||||
kos_text(20, TOOLBAR_HEIGHT + 60 + ii * 15, 0x80000000, help[ii], 0);
|
||||
kos_text(20, TOOLBAR_HEIGHT + 60 + ii * 20, 0x90000000, help[ii], 0);
|
||||
}
|
||||
}
|
||||
if(butt==14) pdfapp_onkey(&gapp, '['); //previous page
|
||||
|
||||
+217
-1141
File diff suppressed because it is too large
Load Diff
@@ -1,108 +1,65 @@
|
||||
/*
|
||||
* Utility object for handling a pdf application / view
|
||||
* Takes care of PDF loading and displaying and navigation,
|
||||
* uses a number of callbacks to the GUI app.
|
||||
* uPDF glue layer for MuPDF 1.19 (KolibriOS port).
|
||||
* Bridges the KolibriOS GUI (kos_main.c) to the fz_context-based API.
|
||||
* Keeps the same function names the GUI expects, so the continuous-scroll,
|
||||
* scrollbar, drag-pan and selection code needs only minimal changes.
|
||||
*/
|
||||
|
||||
#define MINRES 54
|
||||
#define MAXRES 300
|
||||
#ifndef PDFAPP_H
|
||||
#define PDFAPP_H
|
||||
|
||||
#include "mupdf/fitz.h"
|
||||
|
||||
typedef struct pdfapp_s pdfapp_t;
|
||||
|
||||
enum { ARROW, HAND, WAIT };
|
||||
|
||||
extern void winwarn(pdfapp_t*, char *s);
|
||||
extern void winerror(pdfapp_t*, fz_error error);
|
||||
extern void wintitle(pdfapp_t*, char *title, char param[]);
|
||||
extern void winresize(pdfapp_t*, int w, int h);
|
||||
extern void winrepaint(pdfapp_t*);
|
||||
extern void winrepaintsearch(pdfapp_t*);
|
||||
extern char *winpassword(pdfapp_t*, char *filename);
|
||||
extern void winopenuri(pdfapp_t*, char *s);
|
||||
extern void wincursor(pdfapp_t*, int curs);
|
||||
extern void windocopy(pdfapp_t*);
|
||||
extern void winreloadfile(pdfapp_t*);
|
||||
extern void windrawstring(pdfapp_t*, int x, int y, char *s);
|
||||
extern void winclose(pdfapp_t*);
|
||||
extern void winhelp(pdfapp_t*);
|
||||
|
||||
struct pdfapp_s
|
||||
{
|
||||
/* current document params */
|
||||
char *doctitle;
|
||||
pdf_xref *xref;
|
||||
pdf_outline *outline;
|
||||
/* MuPDF state */
|
||||
fz_context *ctx;
|
||||
fz_document *doc;
|
||||
fz_page *page; /* current page object */
|
||||
fz_pixmap *image; /* current page rendered as BGRA */
|
||||
fz_stext_page *stext; /* current page text, for selection */
|
||||
fz_matrix ctm; /* page-space -> device(pixmap) transform */
|
||||
|
||||
int pagecount;
|
||||
fz_glyph_cache *cache;
|
||||
char *doctitle;
|
||||
|
||||
/* current view params */
|
||||
int resolution;
|
||||
int rotate;
|
||||
fz_pixmap *image;
|
||||
int grayscale;
|
||||
/* view state */
|
||||
int pagecount;
|
||||
int pageno; /* 1-based */
|
||||
float resolution; /* dpi; 72 == 100% */
|
||||
int rotate; /* degrees */
|
||||
int grayscale;
|
||||
|
||||
/* current page params */
|
||||
int pageno;
|
||||
fz_rect page_bbox;
|
||||
float page_rotate;
|
||||
fz_display_list *page_list;
|
||||
fz_text_span *page_text;
|
||||
pdf_link *page_links;
|
||||
/* scroll offset (managed by the GUI) */
|
||||
int panx, pany;
|
||||
|
||||
/* snapback history */
|
||||
int hist[256];
|
||||
int histlen;
|
||||
int marks[10];
|
||||
/* text selection, in page space */
|
||||
fz_point sel_a, sel_b;
|
||||
int sel_valid;
|
||||
|
||||
/* window system sizes */
|
||||
int winw, winh;
|
||||
int scrw, scrh;
|
||||
int shrinkwrap;
|
||||
|
||||
/* event handling state */
|
||||
char number[256];
|
||||
int numberlen;
|
||||
|
||||
int ispanning;
|
||||
int panx, pany;
|
||||
|
||||
int iscopying;
|
||||
int selx, sely;
|
||||
/* TODO - While sely keeps track of the relative change in
|
||||
* cursor position between two ticks/events, beyondy shall keep
|
||||
* track of the relative change in cursor position from the
|
||||
* point where the user hits a scrolling limit. This is ugly.
|
||||
* Used in pdfapp.c:pdfapp_onmouse.
|
||||
*/
|
||||
int beyondy;
|
||||
fz_bbox selr;
|
||||
|
||||
/* search state */
|
||||
int isediting;
|
||||
char search[512];
|
||||
int hit;
|
||||
int hitlen;
|
||||
|
||||
/* client context storage */
|
||||
void *userdata;
|
||||
/* legacy fields the GUI still sets during init */
|
||||
int scrw, scrh, shrinkwrap, fd, reload;
|
||||
};
|
||||
|
||||
/* lifecycle */
|
||||
void pdfapp_init(pdfapp_t *app);
|
||||
void pdfapp_open(pdfapp_t *app, char *filename, int fd, int reload);
|
||||
void pdfapp_close(pdfapp_t *app);
|
||||
|
||||
char *pdfapp_version(pdfapp_t *app);
|
||||
char *pdfapp_usage(pdfapp_t *app);
|
||||
|
||||
void pdfapp_showpage(pdfapp_t *app, int loadpage, int drawpage, int repaint);
|
||||
/* rendering */
|
||||
void pdfapp_showpage(pdfapp_t *app, int loadpage, int drawpage, int repaint);
|
||||
fz_pixmap *pdfapp_renderpage(pdfapp_t *app, int pageno);
|
||||
|
||||
/* input: zoom/rotate/grayscale/navigation, same key codes as before
|
||||
( + - L R c g G [ ] ) */
|
||||
void pdfapp_onkey(pdfapp_t *app, int c);
|
||||
void pdfapp_onmouse(pdfapp_t *app, int x, int y, int btn, int modifiers, int state);
|
||||
void pdfapp_oncopy(pdfapp_t *app, unsigned short *ucsbuf, int ucslen);
|
||||
void pdfapp_onresize(pdfapp_t *app, int w, int h);
|
||||
|
||||
void pdfapp_invert(pdfapp_t *app, fz_bbox rect);
|
||||
void pdfapp_inverthit(pdfapp_t *app);
|
||||
void pdfapp_invertselection(pdfapp_t *app);
|
||||
/* selection: a/b are in page space; the GUI supplies them from clicks */
|
||||
void pdfapp_invertselection(pdfapp_t *app); /* toggle highlight in image */
|
||||
char *pdfapp_copyselection(pdfapp_t *app); /* fz-allocated UTF-8, or NULL */
|
||||
|
||||
/* map a device pixel (relative to the current image) to a page-space point */
|
||||
fz_point pdfapp_devtopage(pdfapp_t *app, int px, int py);
|
||||
|
||||
#endif
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
#!/bin/bash
|
||||
# Build the uPDF KolibriOS application (GUI) against the MuPDF 1.19 libs.
|
||||
# Prereq: build_kos.sh, build_third.sh, link.sh (libs in build/obj).
|
||||
set -e
|
||||
export PATH="/c/MinGW/msys/1.0/home/autobuild/tools/win32/bin:$PATH"
|
||||
HERE="$(cd "$(dirname "$0")" && pwd)"
|
||||
SRC="$HERE/../mupdf-1.19.0-source"
|
||||
APP="$HERE/../apps"
|
||||
SDK=/c/Kolibri/git/contrib/sdk
|
||||
TOOL=/c/MinGW/msys/1.0/home/autobuild/tools/win32
|
||||
OBJ="$HERE/obj"
|
||||
|
||||
INC="-I $SRC/include -I $HERE/shim -I $SDK/sources/newlib/libc/include -I $SDK/sources/freetype/include"
|
||||
CF="-c -fno-ident -O2 -fomit-frame-pointer -U__WIN32__ -U_WIN32 -U__MINGW32__ -UWIN32"
|
||||
|
||||
echo "compiling app..."
|
||||
kos32-gcc $CF $INC -o "$OBJ/app_kolibri.o" "$APP/kolibri.c"
|
||||
kos32-gcc $CF $INC -o "$OBJ/app_pdfapp.o" "$APP/pdfapp.c"
|
||||
kos32-gcc $CF $INC -o "$OBJ/app_kos_main.o" "$APP/kos_main.c"
|
||||
|
||||
echo "linking uPDF..."
|
||||
kos32-ld -static -nostdlib -T "$SDK/sources/newlib/app.lds" --image-base 0 --subsystem native \
|
||||
-L "$SDK/lib" -L "$TOOL/lib" \
|
||||
-o "$HERE/uPDF" \
|
||||
"$OBJ/app_kos_main.o" "$OBJ/app_pdfapp.o" "$OBJ/app_kolibri.o" "$OBJ/kosshim.o" \
|
||||
"$OBJ/libmupdf.a" "$OBJ/libthird.a" \
|
||||
-lc.dll -lgcc
|
||||
kos32-objcopy "$HERE/uPDF" -O binary
|
||||
echo "built: build/uPDF ($(wc -c < "$HERE/uPDF") bytes) magic=$(head -c 8 "$HERE/uPDF")"
|
||||
@@ -0,0 +1,64 @@
|
||||
#!/bin/bash
|
||||
# Experimental KolibriOS build of MuPDF 1.19.0 (PDF-only, minimal deps).
|
||||
# Compiles fitz + pdf core with kos32-gcc, reports what fails.
|
||||
set -u
|
||||
export PATH="/c/MinGW/msys/1.0/home/autobuild/tools/win32/bin:$PATH"
|
||||
|
||||
HERE="$(cd "$(dirname "$0")" && pwd)"
|
||||
SRC="$HERE/../mupdf-1.19.0-source"
|
||||
SDK=/c/Kolibri/git/contrib/sdk
|
||||
OBJ="$HERE/obj"
|
||||
mkdir -p "$OBJ"
|
||||
|
||||
# PDF only. #if-style features are set to 0; #ifdef-style OUTPUT features
|
||||
# (DOCX/ODT/OCR) must stay UNDEFINED to be disabled - do not pass them.
|
||||
# TOFU (+SIL) drops all non-CJK Noto fonts; TOFU_CJK/SYMBOL/EMOJI drop the rest,
|
||||
# leaving only the base14 URW fonts we actually ship.
|
||||
DEFS="-DFZ_ENABLE_XPS=0 -DFZ_ENABLE_SVG=0 -DFZ_ENABLE_CBZ=0 -DFZ_ENABLE_IMG=0 \
|
||||
-DFZ_ENABLE_HTML=0 -DFZ_ENABLE_EPUB=0 -DFZ_ENABLE_ICC=0 -DFZ_ENABLE_JPX=0 \
|
||||
-DFZ_ENABLE_JS=0 -DTOFU -DTOFU_CJK -DTOFU_SYMBOL -DTOFU_EMOJI -DTOFU_SIL"
|
||||
|
||||
INC="-I $SRC/include -I $SRC/source/fitz -I $SRC/generated -I $HERE/shim \
|
||||
-I $SDK/sources/newlib/libc/include \
|
||||
-I $SDK/sources/freetype/include \
|
||||
-I $SRC/thirdparty/zlib \
|
||||
-I $SRC/thirdparty/jbig2dec \
|
||||
-I $SRC/thirdparty/libjpeg \
|
||||
-I $SRC/scripts/libjpeg \
|
||||
-I $SRC/thirdparty/gumbo-parser/src"
|
||||
|
||||
CFLAGS="-c -fno-ident -O2 -fomit-frame-pointer -U__WIN32__ -U_WIN32 -U__MINGW32__ -UWIN32"
|
||||
|
||||
# sources we do NOT want:
|
||||
# harfbuzz.c - no harfbuzz (PDF needs no text shaping)
|
||||
# output-docx.c - DOCX writer, needs the 'extract' thirdparty (disabled)
|
||||
SKIP="harfbuzz.c output-docx.c"
|
||||
|
||||
ok=0; fail=0
|
||||
: > "$HERE/fail.log"
|
||||
for dir in fitz pdf; do
|
||||
for f in "$SRC/source/$dir"/*.c; do
|
||||
base=$(basename "$f")
|
||||
case " $SKIP " in *" $base "*) continue;; esac
|
||||
if kos32-gcc $CFLAGS $DEFS $INC -o "$OBJ/${dir}_${base%.c}.o" "$f" 2>>"$HERE/fail.log"; then
|
||||
ok=$((ok+1))
|
||||
else
|
||||
fail=$((fail+1))
|
||||
echo "FAIL $dir/$base" | tee -a "$HERE/fail.log" >/dev/null
|
||||
echo "FAIL $dir/$base"
|
||||
fi
|
||||
done
|
||||
done
|
||||
|
||||
# gumbo-parser (HTML5 parser used by fitz/xml.c) - pure C, 11 files
|
||||
GINC="-I $SRC/thirdparty/gumbo-parser/src -I $SDK/sources/newlib/libc/include"
|
||||
for f in "$SRC/thirdparty/gumbo-parser/src"/*.c; do
|
||||
base=$(basename "$f")
|
||||
if kos32-gcc $CFLAGS $GINC -o "$OBJ/gumbo_${base%.c}.o" "$f" 2>>"$HERE/fail.log"; then
|
||||
ok=$((ok+1))
|
||||
else
|
||||
fail=$((fail+1)); echo "FAIL gumbo/$base"
|
||||
fi
|
||||
done
|
||||
|
||||
echo "=== compiled OK: $ok, FAILED: $fail ==="
|
||||
@@ -0,0 +1,46 @@
|
||||
#!/bin/bash
|
||||
# Compile MuPDF 1.19.0 thirdparty deps + base14 font resources for KolibriOS.
|
||||
# File lists are read straight from the upstream Makelists so we build exactly
|
||||
# MuPDF's chosen subset. Reports failures; does not archive yet.
|
||||
set -u
|
||||
export PATH="/c/MinGW/msys/1.0/home/autobuild/tools/win32/bin:$PATH"
|
||||
|
||||
HERE="$(cd "$(dirname "$0")" && pwd)"
|
||||
SRC="$HERE/../mupdf-1.19.0-source"
|
||||
SDK=/c/Kolibri/git/contrib/sdk
|
||||
OBJ="$HERE/obj"
|
||||
mkdir -p "$OBJ"
|
||||
|
||||
CFLAGS="-c -fno-ident -O2 -fomit-frame-pointer -U__WIN32__ -U_WIN32 -U__MINGW32__ -UWIN32"
|
||||
NEWLIB="-I $SDK/sources/newlib/libc/include"
|
||||
: > "$HERE/fail_third.log"
|
||||
ok=0; fail=0
|
||||
|
||||
# pull "VAR += path" lists from Makelists
|
||||
srclist() { grep "^$1 " "$SRC/Makelists" | sed "s#^$1 += *##"; }
|
||||
|
||||
compile() { # tag, cflags, file(relative to SRC)
|
||||
local tag="$1" cf="$2" f="$SRC/$3"
|
||||
local base=$(basename "$3")
|
||||
if kos32-gcc $CFLAGS $cf -o "$OBJ/${tag}_${base%.c}.o" "$f" 2>>"$HERE/fail_third.log"; then
|
||||
ok=$((ok+1))
|
||||
else
|
||||
fail=$((fail+1)); echo "FAIL $tag/$base"
|
||||
fi
|
||||
}
|
||||
|
||||
FT="$NEWLIB -I $SRC/thirdparty/freetype/include -I $SRC/scripts/freetype \
|
||||
-DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H=\"slimftmodules.h\" -DFT_CONFIG_OPTIONS_H=\"slimftoptions.h\""
|
||||
ZL="$NEWLIB -I $SRC/thirdparty/zlib"
|
||||
JB="$NEWLIB -I $SRC/include -I $SRC/thirdparty/jbig2dec -DHAVE_STDINT_H -DJBIG_EXTERNAL_MEMENTO_H=\"mupdf/memento.h\""
|
||||
JP="$NEWLIB -I $SRC/thirdparty/libjpeg -I $SRC/scripts/libjpeg"
|
||||
RS="$NEWLIB -I $SRC/include"
|
||||
|
||||
echo "--- freetype ---"; for f in $(srclist FREETYPE_SRC); do compile freetype "$FT" "$f"; done
|
||||
echo "--- zlib ---"; for f in $(srclist ZLIB_SRC); do compile zlib "$ZL" "$f"; done
|
||||
echo "--- jbig2dec ---"; for f in $(srclist JBIG2DEC_SRC); do compile jbig2dec "$JB" "$f"; done
|
||||
echo "--- libjpeg ---"; for f in $(srclist LIBJPEG_SRC); do compile libjpeg "$JP" "$f"; done
|
||||
echo "--- resources (base14 fonts) ---"
|
||||
for f in $(cd "$SRC" && ls generated/resources/fonts/urw/*.cff.c); do compile res "$RS" "$f"; done
|
||||
|
||||
echo "=== thirdparty compiled OK: $ok, FAILED: $fail ==="
|
||||
@@ -0,0 +1,21 @@
|
||||
In file included from C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/source/fitz/directory.c:27:0:
|
||||
C:/Kolibri/git/contrib/sdk/sources/newlib/libc/include/sys/stat.h:136:0: warning: "S_ISDIR" redefined
|
||||
#define S_ISDIR(m) (((m)&_IFMT) == _IFDIR)
|
||||
^
|
||||
In file included from c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\include\mupdf\fitz.h:32:0,
|
||||
from C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/source/fitz/directory.c:23:
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\include\mupdf\fitz\system.h:182:0: note: this is the location of the previous definition
|
||||
#define S_ISDIR(mode) ((mode) & S_IFDIR)
|
||||
^
|
||||
C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/source/fitz/noto.c:66:0: warning: "TOFU_SYMBOL" redefined
|
||||
#define TOFU_SYMBOL
|
||||
^
|
||||
<command-line>:0:0: note: this is the location of the previous definition
|
||||
C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/source/fitz/noto.c:67:0: warning: "TOFU_EMOJI" redefined
|
||||
#define TOFU_EMOJI
|
||||
^
|
||||
<command-line>:0:0: note: this is the location of the previous definition
|
||||
C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/source/pdf/pdf-parse.c: In function 'pdf_to_date':
|
||||
C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/source/pdf/pdf-parse.c:188:8: warning: implicit declaration of function 'timegm' [-Wimplicit-function-declaration]
|
||||
utc = timegm(&tm);
|
||||
^
|
||||
@@ -0,0 +1,357 @@
|
||||
In file included from C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/thirdparty/freetype/src/base/ftbase.c:22:0:
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftcalc.c: In function 'FT_MulDiv_No_Round':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftcalc.c:502:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftcalc.c: In function 'FT_Matrix_Multiply_Scaled':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftcalc.c:744:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftcalc.c: In function 'FT_Matrix_Check':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftcalc.c:814:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftcalc.c: In function 'FT_Vector_Transform_Scaled':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftcalc.c:839:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftcalc.c: In function 'FT_Vector_NormLen':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftcalc.c:935:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftcalc.c: In function 'ft_corner_orientation':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftcalc.c:1040:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftcalc.c: In function 'ft_corner_is_flat':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftcalc.c:1085:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
In file included from C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/thirdparty/freetype/src/base/ftbase.c:27:0:
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftgloadr.c: In function 'FT_GlyphLoader_Rewind':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftgloadr.c:99:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftgloadr.c: In function 'FT_GlyphLoader_Reset':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftgloadr.c:123:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftgloadr.c: In function 'FT_GlyphLoader_Done':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftgloadr.c:138:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftgloadr.c: In function 'FT_GlyphLoader_Prepare':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftgloadr.c:335:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftgloadr.c: In function 'FT_GlyphLoader_Add':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftgloadr.c:373:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
In file included from C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/thirdparty/freetype/src/base/ftbase.c:29:0:
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftlcdfil.c: In function 'ft_lcd_padding':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftlcdfil.c:392:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
In file included from C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/thirdparty/freetype/src/base/ftbase.c:31:0:
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c: In function 'ft_service_list_lookup':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c:129:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c: In function 'ft_validator_init':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c:142:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c: In function 'ft_validator_run':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c:152:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c: In function 'ft_validator_error':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c:170:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c: In function 'FT_Stream_Free':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c:270:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c: In function 'ft_glyphslot_free_bitmap':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c:341:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c: In function 'ft_glyphslot_preset_bitmap':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c:498:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c: In function 'ft_glyphslot_set_bitmap':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c:510:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c: In function 'FT_Done_GlyphSlot':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c:683:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c: In function 'FT_Match_Size':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c:2991:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c: In function 'ft_synthesize_vertical_metrics':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c:3019:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c: In function 'FT_Select_Metrics':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c:3088:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c: In function 'FT_Request_Metrics':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c:3196:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c: In function 'FT_Lookup_Renderer':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c:4365:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c: In function 'FT_Get_Module_Interface':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c:5023:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c: In function 'ft_module_get_service':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c:5068:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c: In function 'ft_property_string_set':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c:5250:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
In file included from C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/thirdparty/freetype/src/base/ftbase.c:34:0:
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftrfork.c: In function 'FT_Raccess_Guess':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftrfork.c:477:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
In file included from C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/thirdparty/freetype/src/base/ftbase.c:36:0:
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c: In function 'FT_Stream_OpenMemory':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c:44:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c: In function 'FT_Stream_Close':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c:52:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c: In function 'FT_Stream_Seek':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c:87:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c: In function 'FT_Stream_Skip':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c:98:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c: In function 'FT_Stream_Pos':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c:105:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c: In function 'FT_Stream_ReadAt':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c:159:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c: In function 'FT_Stream_Read':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c:114:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c: In function 'FT_Stream_TryRead':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c:188:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c: In function 'FT_Stream_ReleaseFrame':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c:230:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c: In function 'FT_Stream_EnterFrame':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c:313:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c: In function 'FT_Stream_ExtractFrame':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c:210:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c: In function 'FT_Stream_ExitFrame':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c:347:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c: In function 'FT_Stream_GetChar':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c:363:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c: In function 'FT_Stream_GetUShort':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c:382:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c: In function 'FT_Stream_GetUShortLE':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c:401:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c: In function 'FT_Stream_GetUOffset':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c:419:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c: In function 'FT_Stream_GetULong':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c:437:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c: In function 'FT_Stream_GetULongLE':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c:455:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c: In function 'FT_Stream_ReadChar':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c:492:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c: In function 'FT_Stream_ReadUShort':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c:537:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
In file included from C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/thirdparty/freetype/src/base/ftbase.c:34:0:
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftrfork.c: In function 'FT_Raccess_Get_HeaderInfo':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftrfork.c:167:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
In file included from C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/thirdparty/freetype/src/base/ftbase.c:36:0:
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c: In function 'FT_Stream_ReadUShortLE':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c:582:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c: In function 'FT_Stream_ReadUOffset':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c:627:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c: In function 'FT_Stream_ReadULong':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c:672:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c: In function 'FT_Stream_ReadULongLE':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c:717:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c: In function 'FT_Stream_ReadFields':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftstream.c:864:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
In file included from C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/thirdparty/freetype/src/base/ftbase.c:22:0:
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftcalc.c: In function 'FT_Hypot':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftcalc.c:164:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
In file included from C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/thirdparty/freetype/src/base/ftbase.c:38:0:
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftutil.c: In function 'ft_mem_alloc':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftutil.c:61:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
In file included from C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/thirdparty/freetype/src/base/ftbase.c:27:0:
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftgloadr.c: In function 'FT_GlyphLoader_New':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftgloadr.c:82:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
In file included from C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/thirdparty/freetype/src/base/ftbase.c:31:0:
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c: In function 'FT_Stream_New':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c:253:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c: In function 'ft_glyphslot_alloc_bitmap':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c:528:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c: In function 'FT_New_GlyphSlot':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c:642:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c: In function 'FT_Render_Glyph_Internal':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c:4790:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
In file included from C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/thirdparty/freetype/src/base/ftbase.c:38:0:
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftutil.c: In function 'ft_mem_qalloc':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftutil.c:87:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftutil.c: In function 'ft_mem_qrealloc':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftutil.c:165:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftutil.c: In function 'ft_mem_realloc':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftutil.c:109:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
In file included from C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/thirdparty/freetype/src/base/ftbase.c:27:0:
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftgloadr.c: In function 'FT_GlyphLoader_CreateExtra':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftgloadr.c:185:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftgloadr.c: In function 'FT_GlyphLoader_CheckPoints':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftgloadr.c:285:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftgloadr.c: In function 'FT_GlyphLoader_CheckSubGlyphs':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftgloadr.c:319:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
In file included from C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/thirdparty/freetype/src/base/ftbase.c:31:0:
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c: In function 'FT_CMap_Done':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c:3673:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c: In function 'FT_CMap_New':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftobjs.c:3725:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
In file included from C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/thirdparty/freetype/src/base/ftbase.c:34:0:
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftrfork.c: In function 'FT_Raccess_Get_DataOffsets':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftrfork.c:328:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
In file included from C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/thirdparty/freetype/src/base/ftbase.c:38:0:
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftutil.c: In function 'ft_mem_free':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftutil.c:174:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftutil.c: In function 'ft_mem_dup':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftutil.c:192:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftutil.c: In function 'ft_mem_strdup':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftutil.c:205:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftutil.c: In function 'ft_mem_strcpyn':
|
||||
c:\kolibri\git\contrib\media\updfnew\mupdf-1.19.0-source\thirdparty\freetype\src\base\ftutil.c:222:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/thirdparty/freetype/src/base/ftdebug.c: In function 'ft_debug_init':
|
||||
C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/thirdparty/freetype/src/base/ftdebug.c:277:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
ft_debug_init( void )
|
||||
^
|
||||
C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/thirdparty/freetype/src/base/ftdebug.c: In function 'FT_Trace_Get_Count':
|
||||
C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/thirdparty/freetype/src/base/ftdebug.c:287:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/thirdparty/freetype/src/base/ftdebug.c: In function 'FT_Trace_Get_Name':
|
||||
C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/thirdparty/freetype/src/base/ftdebug.c:296:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/thirdparty/freetype/src/base/ftdebug.c: In function 'FT_Trace_Disable':
|
||||
C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/thirdparty/freetype/src/base/ftdebug.c:300:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
FT_Trace_Disable( void )
|
||||
^
|
||||
C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/thirdparty/freetype/src/base/ftdebug.c: In function 'FT_Trace_Enable':
|
||||
C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/thirdparty/freetype/src/base/ftdebug.c:312:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/thirdparty/freetype/src/base/ftsystem.c: In function 'FT_Stream_Open':
|
||||
C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/thirdparty/freetype/src/base/ftsystem.c:282:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/thirdparty/freetype/src/base/ftsystem.c: In function 'FT_New_Memory':
|
||||
C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/thirdparty/freetype/src/base/ftsystem.c:318:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/thirdparty/freetype/src/base/ftsystem.c: In function 'FT_Done_Memory':
|
||||
C:/Kolibri/git/contrib/media/uPDFnew/build/../mupdf-1.19.0-source/thirdparty/freetype/src/base/ftsystem.c:330:3: warning: visibility attribute not supported in this configuration; ignored [-Wattributes]
|
||||
}
|
||||
^
|
||||
@@ -0,0 +1,83 @@
|
||||
/*
|
||||
* KolibriOS libc gap-fillers for the MuPDF 1.19 port.
|
||||
* The dynamic libc.dll does not export these, and MuPDF 1.19 (unlike 0.9)
|
||||
* pulls them in. Implemented self-contained, no extra dependencies.
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <time.h>
|
||||
|
||||
/* ---- process control -------------------------------------------------- */
|
||||
|
||||
void abort(void)
|
||||
{
|
||||
exit(1);
|
||||
}
|
||||
|
||||
int atexit(void (*fn)(void))
|
||||
{
|
||||
(void)fn; /* KolibriOS app exits via exit(); no handler chain */
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* ---- string/number ---------------------------------------------------- */
|
||||
|
||||
long long atoll(const char *s)
|
||||
{
|
||||
long long v = 0;
|
||||
int neg = 0;
|
||||
while (*s == ' ' || *s == '\t') s++;
|
||||
if (*s == '-') { neg = 1; s++; }
|
||||
else if (*s == '+') s++;
|
||||
while (*s >= '0' && *s <= '9')
|
||||
v = v * 10 + (*s++ - '0');
|
||||
return neg ? -v : v;
|
||||
}
|
||||
|
||||
/* ---- filesystem ------------------------------------------------------- */
|
||||
|
||||
/* KolibriOS paths are already absolute (/hd0/1/...); just copy through. */
|
||||
char *realpath(const char *path, char *resolved)
|
||||
{
|
||||
if (!resolved)
|
||||
return NULL;
|
||||
strcpy(resolved, path);
|
||||
return resolved;
|
||||
}
|
||||
|
||||
/* ---- time ------------------------------------------------------------- */
|
||||
|
||||
/* Convert a broken-down UTC time to seconds since the Unix epoch.
|
||||
Used by MuPDF only to parse PDF /CreationDate style strings. */
|
||||
time_t timegm(struct tm *tm)
|
||||
{
|
||||
static const int mdays[12] =
|
||||
{ 0,31,59,90,120,151,181,212,243,273,304,334 };
|
||||
long year = tm->tm_year + 1900;
|
||||
long days;
|
||||
long leaps;
|
||||
|
||||
leaps = (year - 1969) / 4 - (year - 1901) / 100 + (year - 1601) / 400;
|
||||
days = (year - 1970) * 365 + leaps + mdays[tm->tm_mon % 12] + (tm->tm_mday - 1);
|
||||
if (tm->tm_mon >= 2 &&
|
||||
((year % 4 == 0 && year % 100 != 0) || year % 400 == 0))
|
||||
days += 1; /* this year's Feb 29 (leaps only counts through Jan 1) */
|
||||
|
||||
return (time_t)(((days * 24 + tm->tm_hour) * 60 + tm->tm_min) * 60 + tm->tm_sec);
|
||||
}
|
||||
|
||||
/* ---- thread-local storage (single-threaded stub) ---------------------- */
|
||||
/* Pulled in via newlib's gthread reentrancy layer. We never spawn threads
|
||||
in the viewer, so a fixed key with no real storage is sufficient. */
|
||||
|
||||
unsigned int tls_alloc(void)
|
||||
{
|
||||
return 0x80; /* any nonzero key */
|
||||
}
|
||||
|
||||
int tls_free(unsigned int key)
|
||||
{
|
||||
(void)key;
|
||||
return 0;
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
#!/bin/bash
|
||||
# Archive the compiled MuPDF 1.19 objects into static libs and link the
|
||||
# render pipeline test, proving the PDF-only engine links for KolibriOS.
|
||||
# Prereq: run build_kos.sh and build_third.sh first (populate obj/).
|
||||
set -e
|
||||
export PATH="/c/MinGW/msys/1.0/home/autobuild/tools/win32/bin:$PATH"
|
||||
HERE="$(cd "$(dirname "$0")" && pwd)"
|
||||
SRC="$HERE/../mupdf-1.19.0-source"
|
||||
SDK=/c/Kolibri/git/contrib/sdk
|
||||
TOOL=/c/MinGW/msys/1.0/home/autobuild/tools/win32
|
||||
OBJ="$HERE/obj"
|
||||
|
||||
NEWLIB="-I $SDK/sources/newlib/libc/include"
|
||||
|
||||
# KolibriOS libc gap-fillers (abort/atexit/atoll/timegm/realpath/tls_*)
|
||||
kos32-gcc -c -O2 -fno-ident -U__WIN32__ -U_WIN32 $NEWLIB -o "$OBJ/kosshim.o" "$HERE/kosshim.c"
|
||||
# link-test driver
|
||||
kos32-gcc -c -O2 -fno-ident -U__WIN32__ -U_WIN32 -I "$SRC/include" $NEWLIB -o "$OBJ/linktest.o" "$HERE/linktest.c"
|
||||
|
||||
# static libraries: the port's deliverable for the GUI wrapper
|
||||
rm -f "$OBJ/libmupdf.a" "$OBJ/libthird.a"
|
||||
kos32-ar rcs "$OBJ/libmupdf.a" "$OBJ"/fitz_*.o "$OBJ"/pdf_*.o "$OBJ"/gumbo_*.o "$OBJ"/res_*.o
|
||||
kos32-ar rcs "$OBJ/libthird.a" "$OBJ"/freetype_*.o "$OBJ"/zlib_*.o "$OBJ"/jbig2dec_*.o "$OBJ"/libjpeg_*.o
|
||||
|
||||
kos32-ld -static -nostdlib -T "$SDK/sources/newlib/app.lds" --image-base 0 \
|
||||
-L "$SDK/lib" -L "$TOOL/lib" \
|
||||
-o "$HERE/updfnew_test" \
|
||||
"$OBJ/linktest.o" "$OBJ/kosshim.o" "$OBJ/libmupdf.a" "$OBJ/libthird.a" \
|
||||
-lc.dll -lgcc
|
||||
# real KolibriOS apps then need: kos32-objcopy updfnew_test -O binary
|
||||
echo "linked OK -> build/updfnew_test ($(wc -c < "$HERE/updfnew_test") bytes)"
|
||||
echo "libs: $(wc -c < "$OBJ/libmupdf.a") libmupdf.a $(wc -c < "$OBJ/libthird.a") libthird.a"
|
||||
@@ -0,0 +1,46 @@
|
||||
/* Minimal MuPDF 1.19 link test for KolibriOS: exercises the whole
|
||||
render pipeline so the linker must resolve every core symbol.
|
||||
Not meant to run as-is; this validates that the port LINKS. */
|
||||
|
||||
#include <mupdf/fitz.h>
|
||||
#include <stdio.h>
|
||||
|
||||
int render_first_page(const char *path)
|
||||
{
|
||||
fz_context *ctx;
|
||||
fz_document *doc;
|
||||
fz_pixmap *pix;
|
||||
fz_matrix ctm;
|
||||
int pages;
|
||||
|
||||
ctx = fz_new_context(NULL, NULL, FZ_STORE_UNLIMITED);
|
||||
if (!ctx)
|
||||
return 1;
|
||||
|
||||
fz_try(ctx)
|
||||
{
|
||||
fz_register_document_handlers(ctx);
|
||||
doc = fz_open_document(ctx, path);
|
||||
pages = fz_count_pages(ctx, doc);
|
||||
ctm = fz_scale(1.0f, 1.0f);
|
||||
pix = fz_new_pixmap_from_page_number(ctx, doc, 0, ctm, fz_device_rgb(ctx), 0);
|
||||
fz_save_pixmap_as_png(ctx, pix, "out.png");
|
||||
fz_drop_pixmap(ctx, pix);
|
||||
fz_drop_document(ctx, doc);
|
||||
}
|
||||
fz_catch(ctx)
|
||||
{
|
||||
fprintf(stderr, "mupdf error: %s\n", fz_caught_message(ctx));
|
||||
fz_drop_context(ctx);
|
||||
return 2;
|
||||
}
|
||||
fz_drop_context(ctx);
|
||||
return pages;
|
||||
}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
if (argc < 2)
|
||||
return 1;
|
||||
return render_first_page(argv[1]);
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
/* stub: MuPDF PDF-only port needs no harfbuzz shaping */
|
||||
@@ -0,0 +1 @@
|
||||
/* stub: MuPDF PDF-only port needs no harfbuzz shaping */
|
||||
@@ -1,85 +0,0 @@
|
||||
@echo off
|
||||
rem Build uPDF for KolibriOS: third-party libs from the SDK, the MuPDF
|
||||
rem libraries (fitz, pdf, draw) and the application itself.
|
||||
rem Needs only the kos32-gcc toolchain, no make.
|
||||
rem
|
||||
rem Usage: build_libs.bat - build missing libraries, then the app
|
||||
rem build_libs.bat all - force-rebuild everything
|
||||
|
||||
setlocal
|
||||
cd /d "%~dp0"
|
||||
|
||||
rem kos32-gcc toolchain location (override with the KOS32_TOOL variable)
|
||||
if "%KOS32_TOOL%"=="" set KOS32_TOOL=C:\MinGW\msys\1.0\home\autobuild\tools\win32
|
||||
set PATH=%KOS32_TOOL%\bin;%PATH%
|
||||
where kos32-gcc >nul 2>nul
|
||||
if errorlevel 1 (
|
||||
echo error: kos32-gcc not found, set KOS32_TOOL
|
||||
exit /b 1
|
||||
)
|
||||
|
||||
set UPDF=%CD%
|
||||
for %%i in ("%CD%\..\..\sdk") do set SDK=%%~fi
|
||||
set CFLAGS=-c -fno-ident -O2 -fomit-frame-pointer -U__WIN32__ -U_Win32 -U_WIN32 -U__MINGW32__ -UWIN32
|
||||
set FORCE=%1
|
||||
|
||||
set INC=-DHAVE_CONFIG_H -I "%SDK%\sources\newlib\libc\include" -I "%SDK%\sources\freetype\include" -I "%SDK%\sources\libpng" -I "%SDK%\sources\zlib" -I .
|
||||
call :lib "%SDK%\sources\libjbig2dec" libjbig2dec.a "%SDK%\lib"
|
||||
if errorlevel 1 exit /b 1
|
||||
|
||||
set INC=-I "%SDK%\sources\newlib\libc\include" -I "%SDK%\sources\freetype\include" -I "%SDK%\sources\zlib" -I .
|
||||
call :lib "%SDK%\sources\libopenjpeg" libopenjpeg.a "%SDK%\lib"
|
||||
if errorlevel 1 exit /b 1
|
||||
|
||||
set INC=-I "%SDK%\sources\newlib\libc\include" -I "%SDK%\sources\freetype\include" -I "%SDK%\sources\libjpeg" -I "%SDK%\sources\zlib" -I "%SDK%\sources\libopenjpeg" -I "%SDK%\sources\libjbig2dec"
|
||||
call :lib "%UPDF%\fitz" libfitz.a "%UPDF%\lib"
|
||||
if errorlevel 1 exit /b 1
|
||||
|
||||
set INC=-I "%SDK%\sources\newlib\libc\include" -I "%UPDF%\fitz" -I "%SDK%\sources\freetype\include"
|
||||
call :lib "%UPDF%\pdf" libmupdf.a "%UPDF%\lib"
|
||||
if errorlevel 1 exit /b 1
|
||||
|
||||
set INC=-I "%SDK%\sources\newlib\libc\include" -I "%UPDF%\fitz"
|
||||
call :lib "%UPDF%\draw" libdraw.a "%UPDF%\lib"
|
||||
if errorlevel 1 exit /b 1
|
||||
|
||||
echo building updf...
|
||||
cd /d "%UPDF%\apps"
|
||||
del /q *.o updf 2>nul
|
||||
for %%f in (kolibri.c kos_main.c pdfapp.c) do (
|
||||
kos32-gcc %CFLAGS% -I "%SDK%\sources\newlib\libc\include" -I "%SDK%\sources\freetype\include" -I "%SDK%\sources\zlib" -I ..\fitz -I ..\pdf -o "%%~nf.o" "%%f"
|
||||
if errorlevel 1 exit /b 1
|
||||
)
|
||||
kos32-ld -static -nostdlib -T "%SDK%\sources\newlib\app.lds" --image-base 0 -L "%SDK%\lib" -L "%KOS32_TOOL%\lib" -L ..\lib --subsystem native -o updf kolibri.o pdfapp.o kos_main.o -lmupdf -lfitz -lgcc -lfitz -ldraw -ljpeg -ljbig2dec -lfreetype -lopenjpeg -lz.dll -lc.dll
|
||||
if errorlevel 1 exit /b 1
|
||||
kos32-objcopy updf -O binary
|
||||
del /q *.o
|
||||
echo done: apps\updf
|
||||
exit /b 0
|
||||
|
||||
:lib
|
||||
rem %1 = source dir, %2 = library name, %3 = destination dir; uses %INC%
|
||||
if not "%FORCE%"=="all" if exist "%~3\%~2" (
|
||||
echo skip %~2 ^(already in %~3^)
|
||||
exit /b 0
|
||||
)
|
||||
echo building %~2...
|
||||
pushd "%~1"
|
||||
del /q *.o 2>nul
|
||||
for %%f in (*.c) do (
|
||||
kos32-gcc %CFLAGS% %INC% -o "%%~nf.o" "%%f"
|
||||
if errorlevel 1 (
|
||||
popd
|
||||
exit /b 1
|
||||
)
|
||||
)
|
||||
kos32-ar rcs %~2 *.o
|
||||
if errorlevel 1 (
|
||||
popd
|
||||
exit /b 1
|
||||
)
|
||||
del /q *.o
|
||||
if not exist "%~3" mkdir "%~3"
|
||||
move /y "%~2" "%~3\" >nul
|
||||
popd
|
||||
exit /b 0
|
||||
@@ -1,81 +0,0 @@
|
||||
#!/bin/bash
|
||||
# Build uPDF for KolibriOS: third-party libs from the SDK, the MuPDF
|
||||
# libraries (fitz, pdf, draw) and the application itself.
|
||||
# Needs only the kos32-gcc toolchain, no make.
|
||||
#
|
||||
# Usage: ./build_libs.sh - build missing libraries, then the app
|
||||
# ./build_libs.sh all - force-rebuild everything
|
||||
|
||||
set -e
|
||||
cd "$(dirname "$0")"
|
||||
SDK=$(cd ../../sdk && pwd)
|
||||
|
||||
# locate the kos32 toolchain
|
||||
if ! command -v kos32-gcc >/dev/null 2>&1; then
|
||||
for p in /home/autobuild/tools/win32/bin \
|
||||
/c/MinGW/msys/1.0/home/autobuild/tools/win32/bin; do
|
||||
if [ -x "$p/kos32-gcc" ] || [ -x "$p/kos32-gcc.exe" ]; then
|
||||
export PATH="$p:$PATH"
|
||||
break
|
||||
fi
|
||||
done
|
||||
fi
|
||||
command -v kos32-gcc >/dev/null 2>&1 || { echo "error: kos32-gcc not found"; exit 1; }
|
||||
TOOLLIB="$(dirname "$(command -v kos32-gcc)")/../lib"
|
||||
|
||||
CFLAGS="-c -fno-ident -O2 -fomit-frame-pointer -U__WIN32__ -U_Win32 -U_WIN32 -U__MINGW32__ -UWIN32"
|
||||
NEWLIB_INC="-I $SDK/sources/newlib/libc/include"
|
||||
|
||||
FORCE=0
|
||||
[ "$1" = "all" ] && FORCE=1
|
||||
|
||||
build_lib() { # <src dir> <lib name> <dest dir> <cflags...>
|
||||
local dir="$1" lib="$2" dest="$3"
|
||||
shift 3
|
||||
if [ $FORCE = 0 ] && [ -f "$dest/$lib" ]; then
|
||||
echo "skip $lib (already in $dest)"
|
||||
return
|
||||
fi
|
||||
echo "building $lib..."
|
||||
( cd "$dir"
|
||||
rm -f *.o
|
||||
for f in *.c; do
|
||||
kos32-gcc $CFLAGS "$@" -o "${f%.c}.o" "$f"
|
||||
done
|
||||
kos32-ar rcs "$lib" *.o
|
||||
rm -f *.o
|
||||
mkdir -p "$dest"
|
||||
mv -f "$lib" "$dest/" )
|
||||
}
|
||||
|
||||
build_lib "$SDK/sources/libjbig2dec" libjbig2dec.a "$SDK/lib" \
|
||||
-DHAVE_CONFIG_H $NEWLIB_INC -I "$SDK/sources/freetype/include" \
|
||||
-I "$SDK/sources/libpng" -I "$SDK/sources/zlib" -I .
|
||||
|
||||
build_lib "$SDK/sources/libopenjpeg" libopenjpeg.a "$SDK/lib" \
|
||||
$NEWLIB_INC -I "$SDK/sources/freetype/include" -I "$SDK/sources/zlib" -I .
|
||||
|
||||
build_lib fitz libfitz.a "$PWD/lib" \
|
||||
$NEWLIB_INC -I "$SDK/sources/freetype/include" -I "$SDK/sources/libjpeg" \
|
||||
-I "$SDK/sources/zlib" -I "$SDK/sources/libopenjpeg" -I "$SDK/sources/libjbig2dec"
|
||||
|
||||
build_lib pdf libmupdf.a "$PWD/lib" \
|
||||
$NEWLIB_INC -I "$PWD/fitz" -I "$SDK/sources/freetype/include"
|
||||
|
||||
build_lib draw libdraw.a "$PWD/lib" \
|
||||
$NEWLIB_INC -I "$PWD/fitz"
|
||||
|
||||
echo "building updf..."
|
||||
cd apps
|
||||
rm -f *.o updf
|
||||
for f in kolibri.c kos_main.c pdfapp.c; do
|
||||
kos32-gcc $CFLAGS $NEWLIB_INC -I "$SDK/sources/freetype/include" \
|
||||
-I "$SDK/sources/zlib" -I ../fitz -I ../pdf -o "${f%.c}.o" "$f"
|
||||
done
|
||||
kos32-ld -static -nostdlib -T "$SDK/sources/newlib/app.lds" --image-base 0 \
|
||||
-L "$SDK/lib" -L "$TOOLLIB" -L ../lib --subsystem native \
|
||||
-o updf kolibri.o pdfapp.o kos_main.o \
|
||||
-lmupdf -lfitz -lgcc -lfitz -ldraw -ljpeg -ljbig2dec -lfreetype -lopenjpeg -lz.dll -lc.dll
|
||||
kos32-objcopy updf -O binary
|
||||
rm -f *.o
|
||||
echo "done: apps/updf"
|
||||
@@ -1,6 +0,0 @@
|
||||
These resources are from Adobe and are covered by their
|
||||
own copyright and license.
|
||||
|
||||
http://opensource.adobe.com/wiki/display/cmap/CMap+Resources
|
||||
http://opensource.adobe.com/wiki/display/pdfmapping/Mapping+Resources+for+PDF
|
||||
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||
12 dict begin
|
||||
|
||||
begincmap
|
||||
|
||||
/B5-H usecmap
|
||||
|
||||
/CIDSystemInfo 3 dict dup begin
|
||||
/Registry (Adobe) def
|
||||
/Ordering (CNS1) def
|
||||
/Supplement 0 def
|
||||
end def
|
||||
|
||||
/CMapName /B5-V def
|
||||
/CMapVersion 10.003 def
|
||||
/CMapType 1 def
|
||||
|
||||
/UIDOffset 910 def
|
||||
/XUID [1 10 25381] def
|
||||
|
||||
/WMode 1 def
|
||||
|
||||
12 begincidrange
|
||||
<a14b> <a14b> 13646
|
||||
<a15a> <a15a> 13743
|
||||
<a15c> <a15c> 13745
|
||||
<a15d> <a15e> 130
|
||||
<a161> <a162> 134
|
||||
<a165> <a166> 138
|
||||
<a169> <a16a> 142
|
||||
<a16d> <a16e> 146
|
||||
<a171> <a172> 150
|
||||
<a175> <a176> 154
|
||||
<a179> <a17a> 158
|
||||
<a1e3> <a1e3> 13647
|
||||
endcidrange
|
||||
endcmap
|
||||
CMapName currentdict /CMap defineresource pop
|
||||
end
|
||||
end
|
||||
|
||||
%%EndResource
|
||||
%%EOF
|
||||
@@ -1,90 +0,0 @@
|
||||
%!PS-Adobe-3.0 Resource-CMap
|
||||
%%DocumentNeededResources: ProcSet (CIDInit)
|
||||
%%DocumentNeededResources: CMap (B5-H)
|
||||
%%IncludeResource: ProcSet (CIDInit)
|
||||
%%IncludeResource: CMap (B5-H)
|
||||
%%BeginResource: CMap (B5-V)
|
||||
%%Title: (B5-V Adobe CNS1 0)
|
||||
%%Version: 10.003
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated.
|
||||
%%Copyright: All rights reserved.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistribution and use in source and binary forms, with or
|
||||
%%Copyright: without modification, are permitted provided that the
|
||||
%%Copyright: following conditions are met:
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions of source code must retain the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer.
|
||||
%%Copyright:
|
||||
%%Copyright: Redistributions in binary form must reproduce the above
|
||||
%%Copyright: copyright notice, this list of conditions and the following
|
||||
%%Copyright: disclaimer in the documentation and/or other materials
|
||||
%%Copyright: provided with the distribution.
|
||||
%%Copyright:
|
||||
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
||||
%%Copyright: of its contributors may be used to endorse or promote
|
||||
%%Copyright: products derived from this software without specific prior
|
||||
%%Copyright: written permission.
|
||||
%%Copyright:
|
||||
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
%%Copyright: -----------------------------------------------------------
|
||||
%%EndComments
|
||||
|
||||
/CIDInit /ProcSet findresource begin
|
||||
|
||||