Your IP : 216.73.216.86


Current Path : /home/emeraadmin/public_html/4d695/
Upload File :
Current File : /home/emeraadmin/public_html/4d695/qrcode-terminal.zip

PKDZ�\;�*��package.jsonnu�[���{
  "_id": "qrcode-terminal@0.12.0",
  "_inBundle": true,
  "_location": "/npm/qrcode-terminal",
  "_phantomChildren": {},
  "_requiredBy": [
    "/npm"
  ],
  "bin": {
    "qrcode-terminal": "bin/qrcode-terminal.js"
  },
  "bugs": {
    "url": "https://github.com/gtanner/qrcode-terminal/issues"
  },
  "contributors": [
    {
      "name": "Gord Tanner",
      "email": "gtanner@gmail.com",
      "url": "http://github.com/gtanner"
    },
    {
      "name": "Michael Brooks",
      "email": "mikeywbrooks@gmail.com",
      "url": "http://github.com/mwbrooks"
    }
  ],
  "description": "QRCodes, in the terminal",
  "devDependencies": {
    "expect.js": "*",
    "jshint": "*",
    "mocha": "*",
    "sinon": "*"
  },
  "homepage": "https://github.com/gtanner/qrcode-terminal",
  "keywords": [
    "ansi",
    "ascii",
    "qrcode",
    "console"
  ],
  "licenses": [
    {
      "type": "Apache 2.0"
    }
  ],
  "main": "./lib/main",
  "name": "qrcode-terminal",
  "preferGlobal": false,
  "repository": {
    "type": "git",
    "url": "git+https://github.com/gtanner/qrcode-terminal.git"
  },
  "scripts": {
    "test": "./node_modules/jshint/bin/jshint lib vendor && node example/basic.js && ./node_modules/mocha/bin/mocha -R nyan"
  },
  "version": "0.12.0"
}
PKDZ�\��p�11lib/main.jsnu�[���var QRCode = require('./../vendor/QRCode'),
    QRErrorCorrectLevel = require('./../vendor/QRCode/QRErrorCorrectLevel'),
    black = "\033[40m  \033[0m",
    white = "\033[47m  \033[0m",
    toCell = function (isBlack) {
        return isBlack ? black : white;
    },
    repeat = function (color) {
        return {
            times: function (count) {
                return new Array(count).join(color);
            }
        };
    },
    fill = function(length, value) {
        var arr = new Array(length);
        for (var i = 0; i < length; i++) {
            arr[i] = value;
        }
        return arr;
    };

module.exports = {

    error: QRErrorCorrectLevel.L,

    generate: function (input, opts, cb) {
        if (typeof opts === 'function') {
            cb = opts;
            opts = {};
        }

        var qrcode = new QRCode(-1, this.error);
        qrcode.addData(input);
        qrcode.make();

        var output = '';
        if (opts && opts.small) {
            var BLACK = true, WHITE = false;
            var moduleCount = qrcode.getModuleCount();
            var moduleData = qrcode.modules.slice();

            var oddRow = moduleCount % 2 === 1;
            if (oddRow) {
                moduleData.push(fill(moduleCount, WHITE));
            }

            var platte= {
                WHITE_ALL: '\u2588',
                WHITE_BLACK: '\u2580',
                BLACK_WHITE: '\u2584',
                BLACK_ALL: ' ',
            };

            var borderTop = repeat(platte.BLACK_WHITE).times(moduleCount + 3);
            var borderBottom = repeat(platte.WHITE_BLACK).times(moduleCount + 3);
            output += borderTop + '\n';

            for (var row = 0; row < moduleCount; row += 2) {
                output += platte.WHITE_ALL;

                for (var col = 0; col < moduleCount; col++) {
                    if (moduleData[row][col] === WHITE && moduleData[row + 1][col] === WHITE) {
                        output += platte.WHITE_ALL;
                    } else if (moduleData[row][col] === WHITE && moduleData[row + 1][col] === BLACK) {
                        output += platte.WHITE_BLACK;
                    } else if (moduleData[row][col] === BLACK && moduleData[row + 1][col] === WHITE) {
                        output += platte.BLACK_WHITE;
                    } else {
                        output += platte.BLACK_ALL;
                    }
                }

                output += platte.WHITE_ALL + '\n';
            }

            if (!oddRow) {
                output += borderBottom;
            }
        } else {
            var border = repeat(white).times(qrcode.getModuleCount() + 3);

            output += border + '\n';
            qrcode.modules.forEach(function (row) {
                output += white;
                output += row.map(toCell).join(''); 
                output += white + '\n';
            });
            output += border;
        }

        if (cb) cb(output);
        else console.log(output);
    },

    setErrorLevel: function (error) {
        this.error = QRErrorCorrectLevel[error] || this.error;
    }

};
PKDZ�\�&i�&&.travis.ymlnu�[���language: node_js
node_js:
  - "0.10"
PKDZ�\)�I��test/main.jsnu�[���var expect = require('expect.js'),
    qrcode = require('./../lib/main'),
    sinon = require('sinon');

describe('in the main module', function() {
    describe('the generate method', function () {
        describe('when not providing a callback', function () {
            beforeEach(function () {
                sinon.stub(console, 'log');
            });

            afterEach(function () {
                sinon.sandbox.restore();
                console.log.reset();
            });

            it('logs to the console', function () {
                qrcode.generate('test');
                expect(console.log.called).to.be(true);
            });
        });

        describe('when providing a callback', function () {
            it('will call the callback', function () {
                var cb = sinon.spy();
                qrcode.generate('test', cb);
                expect(cb.called).to.be(true);
            });

            it('will not call the console.log method', function () {
                qrcode.generate('test', sinon.spy());
                expect(console.log.called).to.be(false);
            });
        });

        describe('the QR Code', function () {
            it('should be a string', function (done) {
                qrcode.generate('test', function(result) {
                    expect(result).to.be.a('string');
                    done();
                });
            });

            it('should not end with a newline', function (done) {
                qrcode.generate('test', function(result) {
                    expect(result).not.to.match(/\n$/);
                    done();
                });
            });
        });

        describe('the error level', function () {
            it('should default to 1', function() {
                expect(qrcode.error).to.be(1);
            });

            it('should not allow other levels', function() {
                qrcode.setErrorLevel = 'something';
                expect(qrcode.error).to.be(1);
            }); 
        });
    });
});
PKDZ�\�k͸�.�.LICENSEnu�[���
                                 Apache License
                           Version 2.0, January 2004
                        http://www.apache.org/licenses/

   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

   1. Definitions.

      "License" shall mean the terms and conditions for use, reproduction,
      and distribution as defined by Sections 1 through 9 of this document.

      "Licensor" shall mean the copyright owner or entity authorized by
      the copyright owner that is granting the License.

      "Legal Entity" shall mean the union of the acting entity and all
      other entities that control, are controlled by, or are under common
      control with that entity. For the purposes of this definition,
      "control" means (i) the power, direct or indirect, to cause the
      direction or management of such entity, whether by contract or
      otherwise, or (ii) ownership of fifty percent (50%) or more of the
      outstanding shares, or (iii) beneficial ownership of such entity.

      "You" (or "Your") shall mean an individual or Legal Entity
      exercising permissions granted by this License.

      "Source" form shall mean the preferred form for making modifications,
      including but not limited to software source code, documentation
      source, and configuration files.

      "Object" form shall mean any form resulting from mechanical
      transformation or translation of a Source form, including but
      not limited to compiled object code, generated documentation,
      and conversions to other media types.

      "Work" shall mean the work of authorship, whether in Source or
      Object form, made available under the License, as indicated by a
      copyright notice that is included in or attached to the work
      (an example is provided in the Appendix below).

      "Derivative Works" shall mean any work, whether in Source or Object
      form, that is based on (or derived from) the Work and for which the
      editorial revisions, annotations, elaborations, or other modifications
      represent, as a whole, an original work of authorship. For the purposes
      of this License, Derivative Works shall not include works that remain
      separable from, or merely link (or bind by name) to the interfaces of,
      the Work and Derivative Works thereof.

      "Contribution" shall mean any work of authorship, including
      the original version of the Work and any modifications or additions
      to that Work or Derivative Works thereof, that is intentionally
      submitted to Licensor for inclusion in the Work by the copyright owner
      or by an individual or Legal Entity authorized to submit on behalf of
      the copyright owner. For the purposes of this definition, "submitted"
      means any form of electronic, verbal, or written communication sent
      to the Licensor or its representatives, including but not limited to
      communication on electronic mailing lists, source code control systems,
      and issue tracking systems that are managed by, or on behalf of, the
      Licensor for the purpose of discussing and improving the Work, but
      excluding communication that is conspicuously marked or otherwise
      designated in writing by the copyright owner as "Not a Contribution."

      "Contributor" shall mean Licensor and any individual or Legal Entity
      on behalf of whom a Contribution has been received by Licensor and
      subsequently incorporated within the Work.

   2. Grant of Copyright License. Subject to the terms and conditions of
      this License, each Contributor hereby grants to You a perpetual,
      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      copyright license to reproduce, prepare Derivative Works of,
      publicly display, publicly perform, sublicense, and distribute the
      Work and such Derivative Works in Source or Object form.

   3. Grant of Patent License. Subject to the terms and conditions of
      this License, each Contributor hereby grants to You a perpetual,
      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      (except as stated in this section) patent license to make, have made,
      use, offer to sell, sell, import, and otherwise transfer the Work,
      where such license applies only to those patent claims licensable
      by such Contributor that are necessarily infringed by their
      Contribution(s) alone or by combination of their Contribution(s)
      with the Work to which such Contribution(s) was submitted. If You
      institute patent litigation against any entity (including a
      cross-claim or counterclaim in a lawsuit) alleging that the Work
      or a Contribution incorporated within the Work constitutes direct
      or contributory patent infringement, then any patent licenses
      granted to You under this License for that Work shall terminate
      as of the date such litigation is filed.

   4. Redistribution. You may reproduce and distribute copies of the
      Work or Derivative Works thereof in any medium, with or without
      modifications, and in Source or Object form, provided that You
      meet the following conditions:

      (a) You must give any other recipients of the Work or
          Derivative Works a copy of this License; and

      (b) You must cause any modified files to carry prominent notices
          stating that You changed the files; and

      (c) You must retain, in the Source form of any Derivative Works
          that You distribute, all copyright, patent, trademark, and
          attribution notices from the Source form of the Work,
          excluding those notices that do not pertain to any part of
          the Derivative Works; and

      (d) If the Work includes a "NOTICE" text file as part of its
          distribution, then any Derivative Works that You distribute must
          include a readable copy of the attribution notices contained
          within such NOTICE file, excluding those notices that do not
          pertain to any part of the Derivative Works, in at least one
          of the following places: within a NOTICE text file distributed
          as part of the Derivative Works; within the Source form or
          documentation, if provided along with the Derivative Works; or,
          within a display generated by the Derivative Works, if and
          wherever such third-party notices normally appear. The contents
          of the NOTICE file are for informational purposes only and
          do not modify the License. You may add Your own attribution
          notices within Derivative Works that You distribute, alongside
          or as an addendum to the NOTICE text from the Work, provided
          that such additional attribution notices cannot be construed
          as modifying the License.

      You may add Your own copyright statement to Your modifications and
      may provide additional or different license terms and conditions
      for use, reproduction, or distribution of Your modifications, or
      for any such Derivative Works as a whole, provided Your use,
      reproduction, and distribution of the Work otherwise complies with
      the conditions stated in this License.

   5. Submission of Contributions. Unless You explicitly state otherwise,
      any Contribution intentionally submitted for inclusion in the Work
      by You to the Licensor shall be under the terms and conditions of
      this License, without any additional terms or conditions.
      Notwithstanding the above, nothing herein shall supersede or modify
      the terms of any separate license agreement you may have executed
      with Licensor regarding such Contributions.

   6. Trademarks. This License does not grant permission to use the trade
      names, trademarks, service marks, or product names of the Licensor,
      except as required for reasonable and customary use in describing the
      origin of the Work and reproducing the content of the NOTICE file.

   7. Disclaimer of Warranty. Unless required by applicable law or
      agreed to in writing, Licensor provides the Work (and each
      Contributor provides its Contributions) on an "AS IS" BASIS,
      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
      implied, including, without limitation, any warranties or conditions
      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
      PARTICULAR PURPOSE. You are solely responsible for determining the
      appropriateness of using or redistributing the Work and assume any
      risks associated with Your exercise of permissions under this License.

   8. Limitation of Liability. In no event and under no legal theory,
      whether in tort (including negligence), contract, or otherwise,
      unless required by applicable law (such as deliberate and grossly
      negligent acts) or agreed to in writing, shall any Contributor be
      liable to You for damages, including any direct, indirect, special,
      incidental, or consequential damages of any character arising as a
      result of this License or out of the use or inability to use the
      Work (including but not limited to damages for loss of goodwill,
      work stoppage, computer failure or malfunction, or any and all
      other commercial damages or losses), even if such Contributor
      has been advised of the possibility of such damages.

   9. Accepting Warranty or Additional Liability. While redistributing
      the Work or Derivative Works thereof, You may choose to offer,
      and charge a fee for, acceptance of support, warranty, indemnity,
      or other liability obligations and/or rights consistent with this
      License. However, in accepting such obligations, You may act only
      on Your own behalf and on Your sole responsibility, not on behalf
      of any other Contributor, and only if You agree to indemnify,
      defend, and hold each Contributor harmless for any liability
      incurred by, or claims asserted against, such Contributor by reason
      of your accepting any such warranty or additional liability.

   END OF TERMS AND CONDITIONS

   APPENDIX: How to apply the Apache License to your work.

      To apply the Apache License to your work, attach the following
      boilerplate notice, with the fields enclosed by brackets "[]"
      replaced with your own identifying information. (Don't include
      the brackets!)  The text should be enclosed in the appropriate
      comment syntax for the file format. We also recommend that a
      file or class name and description of purpose be included on the
      same "printed page" as the copyright notice for easier
      identification within third-party archives.

   Copyright [yyyy] [name of copyright owner]

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.

==============================================================
This product also include the following software:
==============================================================

 QRCode for JavaScript

 Copyright (c) 2009 Kazuhiko Arase

 URL: http://www.d-project.com/

 Licensed under the MIT license:
   http://www.opensource.org/licenses/mit-license.php

 The word "QR Code" is registered trademark of 
 DENSO WAVE INCORPORATED
   http://www.denso-wave.com/qrcode/faqpatent-e.html

Located in ./vendor/QRCode
- project has been modified to work in Node and some refactoring was done for code cleanup
PKDZ�\��O44vendor/QRCode/QRPolynomial.jsnu�[���var QRMath = require('./QRMath');

function QRPolynomial(num, shift) {
	if (num.length === undefined) {
		throw new Error(num.length + "/" + shift);
	}

	var offset = 0;

	while (offset < num.length && num[offset] === 0) {
		offset++;
	}

	this.num = new Array(num.length - offset + shift);
	for (var i = 0; i < num.length - offset; i++) {
		this.num[i] = num[i + offset];
	}
}

QRPolynomial.prototype = {

	get : function(index) {
		return this.num[index];
	},
	
	getLength : function() {
		return this.num.length;
	},
	
	multiply : function(e) {
	
		var num = new Array(this.getLength() + e.getLength() - 1);
	
		for (var i = 0; i < this.getLength(); i++) {
			for (var j = 0; j < e.getLength(); j++) {
				num[i + j] ^= QRMath.gexp(QRMath.glog(this.get(i) ) + QRMath.glog(e.get(j) ) );
			}
		}
	
		return new QRPolynomial(num, 0);
	},
	
	mod : function(e) {
	
		if (this.getLength() - e.getLength() < 0) {
			return this;
		}
	
		var ratio = QRMath.glog(this.get(0) ) - QRMath.glog(e.get(0) );
	
		var num = new Array(this.getLength() );
		
		for (var i = 0; i < this.getLength(); i++) {
			num[i] = this.get(i);
		}
		
		for (var x = 0; x < e.getLength(); x++) {
			num[x] ^= QRMath.gexp(QRMath.glog(e.get(x) ) + ratio);
		}
	
		// recursive call
		return new QRPolynomial(num, 0).mod(e);
	}
};

module.exports = QRPolynomial;
PKDZ�\! �   vendor/QRCode/QRUtil.jsnu�[���var QRMode = require('./QRMode');
var QRPolynomial = require('./QRPolynomial');
var QRMath = require('./QRMath');
var QRMaskPattern = require('./QRMaskPattern');

var QRUtil = {

    PATTERN_POSITION_TABLE : [
        [],
        [6, 18],
        [6, 22],
        [6, 26],
        [6, 30],
        [6, 34],
        [6, 22, 38],
        [6, 24, 42],
        [6, 26, 46],
        [6, 28, 50],
        [6, 30, 54],        
        [6, 32, 58],
        [6, 34, 62],
        [6, 26, 46, 66],
        [6, 26, 48, 70],
        [6, 26, 50, 74],
        [6, 30, 54, 78],
        [6, 30, 56, 82],
        [6, 30, 58, 86],
        [6, 34, 62, 90],
        [6, 28, 50, 72, 94],
        [6, 26, 50, 74, 98],
        [6, 30, 54, 78, 102],
        [6, 28, 54, 80, 106],
        [6, 32, 58, 84, 110],
        [6, 30, 58, 86, 114],
        [6, 34, 62, 90, 118],
        [6, 26, 50, 74, 98, 122],
        [6, 30, 54, 78, 102, 126],
        [6, 26, 52, 78, 104, 130],
        [6, 30, 56, 82, 108, 134],
        [6, 34, 60, 86, 112, 138],
        [6, 30, 58, 86, 114, 142],
        [6, 34, 62, 90, 118, 146],
        [6, 30, 54, 78, 102, 126, 150],
        [6, 24, 50, 76, 102, 128, 154],
        [6, 28, 54, 80, 106, 132, 158],
        [6, 32, 58, 84, 110, 136, 162],
        [6, 26, 54, 82, 110, 138, 166],
        [6, 30, 58, 86, 114, 142, 170]
    ],

    G15 : (1 << 10) | (1 << 8) | (1 << 5) | (1 << 4) | (1 << 2) | (1 << 1) | (1 << 0),
    G18 : (1 << 12) | (1 << 11) | (1 << 10) | (1 << 9) | (1 << 8) | (1 << 5) | (1 << 2) | (1 << 0),
    G15_MASK : (1 << 14) | (1 << 12) | (1 << 10)    | (1 << 4) | (1 << 1),

    getBCHTypeInfo : function(data) {
        var d = data << 10;
        while (QRUtil.getBCHDigit(d) - QRUtil.getBCHDigit(QRUtil.G15) >= 0) {
            d ^= (QRUtil.G15 << (QRUtil.getBCHDigit(d) - QRUtil.getBCHDigit(QRUtil.G15) ) );    
        }
        return ( (data << 10) | d) ^ QRUtil.G15_MASK;
    },

    getBCHTypeNumber : function(data) {
        var d = data << 12;
        while (QRUtil.getBCHDigit(d) - QRUtil.getBCHDigit(QRUtil.G18) >= 0) {
            d ^= (QRUtil.G18 << (QRUtil.getBCHDigit(d) - QRUtil.getBCHDigit(QRUtil.G18) ) );    
        }
        return (data << 12) | d;
    },

    getBCHDigit : function(data) {

        var digit = 0;

        while (data !== 0) {
            digit++;
            data >>>= 1;
        }

        return digit;
    },

    getPatternPosition : function(typeNumber) {
        return QRUtil.PATTERN_POSITION_TABLE[typeNumber - 1];
    },

    getMask : function(maskPattern, i, j) {
        
        switch (maskPattern) {
            
        case QRMaskPattern.PATTERN000 : return (i + j) % 2 === 0;
        case QRMaskPattern.PATTERN001 : return i % 2 === 0;
        case QRMaskPattern.PATTERN010 : return j % 3 === 0;
        case QRMaskPattern.PATTERN011 : return (i + j) % 3 === 0;
        case QRMaskPattern.PATTERN100 : return (Math.floor(i / 2) + Math.floor(j / 3) ) % 2 === 0;
        case QRMaskPattern.PATTERN101 : return (i * j) % 2 + (i * j) % 3 === 0;
        case QRMaskPattern.PATTERN110 : return ( (i * j) % 2 + (i * j) % 3) % 2 === 0;
        case QRMaskPattern.PATTERN111 : return ( (i * j) % 3 + (i + j) % 2) % 2 === 0;

        default :
            throw new Error("bad maskPattern:" + maskPattern);
        }
    },

    getErrorCorrectPolynomial : function(errorCorrectLength) {

        var a = new QRPolynomial([1], 0);

        for (var i = 0; i < errorCorrectLength; i++) {
            a = a.multiply(new QRPolynomial([1, QRMath.gexp(i)], 0) );
        }

        return a;
    },

    getLengthInBits : function(mode, type) {

        if (1 <= type && type < 10) {

            // 1 - 9

            switch(mode) {
            case QRMode.MODE_NUMBER     : return 10;
            case QRMode.MODE_ALPHA_NUM  : return 9;
            case QRMode.MODE_8BIT_BYTE  : return 8;
            case QRMode.MODE_KANJI      : return 8;
            default :
                throw new Error("mode:" + mode);
            }

        } else if (type < 27) {

            // 10 - 26

            switch(mode) {
            case QRMode.MODE_NUMBER     : return 12;
            case QRMode.MODE_ALPHA_NUM  : return 11;
            case QRMode.MODE_8BIT_BYTE  : return 16;
            case QRMode.MODE_KANJI      : return 10;
            default :
                throw new Error("mode:" + mode);
            }

        } else if (type < 41) {

            // 27 - 40

            switch(mode) {
            case QRMode.MODE_NUMBER     : return 14;
            case QRMode.MODE_ALPHA_NUM  : return 13;
            case QRMode.MODE_8BIT_BYTE  : return 16;
            case QRMode.MODE_KANJI      : return 12;
            default :
                throw new Error("mode:" + mode);
            }

        } else {
            throw new Error("type:" + type);
        }
    },

    getLostPoint : function(qrCode) {
        
        var moduleCount = qrCode.getModuleCount();
        var lostPoint = 0;
        var row = 0; 
        var col = 0;

        
        // LEVEL1
        
        for (row = 0; row < moduleCount; row++) {

            for (col = 0; col < moduleCount; col++) {

                var sameCount = 0;
                var dark = qrCode.isDark(row, col);

                for (var r = -1; r <= 1; r++) {

                    if (row + r < 0 || moduleCount <= row + r) {
                        continue;
                    }

                    for (var c = -1; c <= 1; c++) {

                        if (col + c < 0 || moduleCount <= col + c) {
                            continue;
                        }

                        if (r === 0 && c === 0) {
                            continue;
                        }

                        if (dark === qrCode.isDark(row + r, col + c) ) {
                            sameCount++;
                        }
                    }
                }

                if (sameCount > 5) {
                    lostPoint += (3 + sameCount - 5);
                }
            }
        }

        // LEVEL2

        for (row = 0; row < moduleCount - 1; row++) {
            for (col = 0; col < moduleCount - 1; col++) {
                var count = 0;
                if (qrCode.isDark(row,     col    ) ) count++;
                if (qrCode.isDark(row + 1, col    ) ) count++;
                if (qrCode.isDark(row,     col + 1) ) count++;
                if (qrCode.isDark(row + 1, col + 1) ) count++;
                if (count === 0 || count === 4) {
                    lostPoint += 3;
                }
            }
        }

        // LEVEL3

        for (row = 0; row < moduleCount; row++) {
            for (col = 0; col < moduleCount - 6; col++) {
                if (qrCode.isDark(row, col) && 
                        !qrCode.isDark(row, col + 1) && 
                         qrCode.isDark(row, col + 2) && 
                         qrCode.isDark(row, col + 3) && 
                         qrCode.isDark(row, col + 4) && 
                        !qrCode.isDark(row, col + 5) && 
                         qrCode.isDark(row, col + 6) ) {
                    lostPoint += 40;
                }
            }
        }

        for (col = 0; col < moduleCount; col++) {
            for (row = 0; row < moduleCount - 6; row++) {
                if (qrCode.isDark(row, col) &&
                        !qrCode.isDark(row + 1, col) &&
                         qrCode.isDark(row + 2, col) &&
                         qrCode.isDark(row + 3, col) &&
                         qrCode.isDark(row + 4, col) &&
                        !qrCode.isDark(row + 5, col) &&
                         qrCode.isDark(row + 6, col) ) {
                    lostPoint += 40;
                }
            }
        }

        // LEVEL4
        
        var darkCount = 0;

        for (col = 0; col < moduleCount; col++) {
            for (row = 0; row < moduleCount; row++) {
                if (qrCode.isDark(row, col) ) {
                    darkCount++;
                }
            }
        }
        
        var ratio = Math.abs(100 * darkCount / moduleCount / moduleCount - 50) / 5;
        lostPoint += ratio * 10;

        return lostPoint;       
    }

};

module.exports = QRUtil;
PKDZ�\>(���vendor/QRCode/QRMath.jsnu�[���var QRMath = {

	glog : function(n) {
	
		if (n < 1) {
			throw new Error("glog(" + n + ")");
		}
		
		return QRMath.LOG_TABLE[n];
	},
	
	gexp : function(n) {
	
		while (n < 0) {
			n += 255;
		}
	
		while (n >= 256) {
			n -= 255;
		}
	
		return QRMath.EXP_TABLE[n];
	},
	
	EXP_TABLE : new Array(256),
	
	LOG_TABLE : new Array(256)

};
	
for (var i = 0; i < 8; i++) {
	QRMath.EXP_TABLE[i] = 1 << i;
}
for (var i = 8; i < 256; i++) {
	QRMath.EXP_TABLE[i] = QRMath.EXP_TABLE[i - 4]
		^ QRMath.EXP_TABLE[i - 5]
		^ QRMath.EXP_TABLE[i - 6]
		^ QRMath.EXP_TABLE[i - 8];
}
for (var i = 0; i < 255; i++) {
	QRMath.LOG_TABLE[QRMath.EXP_TABLE[i] ] = i;
}

module.exports = QRMath;
PKDZ�\�"��~~vendor/QRCode/QR8bitByte.jsnu�[���var QRMode = require('./QRMode');

function QR8bitByte(data) {
	this.mode = QRMode.MODE_8BIT_BYTE;
	this.data = data;
}

QR8bitByte.prototype = {

	getLength : function() {
		return this.data.length;
	},
	
	write : function(buffer) {
		for (var i = 0; i < this.data.length; i++) {
			// not JIS ...
			buffer.put(this.data.charCodeAt(i), 8);
		}
	}
};

module.exports = QR8bitByte;
PKDZ�\&G��)�)vendor/QRCode/index.jsnu�[���//---------------------------------------------------------------------
// QRCode for JavaScript
//
// Copyright (c) 2009 Kazuhiko Arase
//
// URL: http://www.d-project.com/
//
// Licensed under the MIT license:
//   http://www.opensource.org/licenses/mit-license.php
//
// The word "QR Code" is registered trademark of 
// DENSO WAVE INCORPORATED
//   http://www.denso-wave.com/qrcode/faqpatent-e.html
//
//---------------------------------------------------------------------
// Modified to work in node for this project (and some refactoring)
//---------------------------------------------------------------------

var QR8bitByte = require('./QR8bitByte');
var QRUtil = require('./QRUtil');
var QRPolynomial = require('./QRPolynomial');
var QRRSBlock = require('./QRRSBlock');
var QRBitBuffer = require('./QRBitBuffer');

function QRCode(typeNumber, errorCorrectLevel) {
	this.typeNumber = typeNumber;
	this.errorCorrectLevel = errorCorrectLevel;
	this.modules = null;
	this.moduleCount = 0;
	this.dataCache = null;
	this.dataList = [];
}

QRCode.prototype = {
	
	addData : function(data) {
		var newData = new QR8bitByte(data);
		this.dataList.push(newData);
		this.dataCache = null;
	},
	
	isDark : function(row, col) {
		if (row < 0 || this.moduleCount <= row || col < 0 || this.moduleCount <= col) {
			throw new Error(row + "," + col);
		}
		return this.modules[row][col];
	},

	getModuleCount : function() {
		return this.moduleCount;
	},
	
	make : function() {
		// Calculate automatically typeNumber if provided is < 1
		if (this.typeNumber < 1 ){
			var typeNumber = 1;
			for (typeNumber = 1; typeNumber < 40; typeNumber++) {
				var rsBlocks = QRRSBlock.getRSBlocks(typeNumber, this.errorCorrectLevel);

				var buffer = new QRBitBuffer();
				var totalDataCount = 0;
				for (var i = 0; i < rsBlocks.length; i++) {
					totalDataCount += rsBlocks[i].dataCount;
				}

				for (var x = 0; x < this.dataList.length; x++) {
					var data = this.dataList[x];
					buffer.put(data.mode, 4);
					buffer.put(data.getLength(), QRUtil.getLengthInBits(data.mode, typeNumber) );
					data.write(buffer);
				}
				if (buffer.getLengthInBits() <= totalDataCount * 8)
					break;
			}
			this.typeNumber = typeNumber;
		}
		this.makeImpl(false, this.getBestMaskPattern() );
	},
	
	makeImpl : function(test, maskPattern) {
		
		this.moduleCount = this.typeNumber * 4 + 17;
		this.modules = new Array(this.moduleCount);
		
		for (var row = 0; row < this.moduleCount; row++) {
			
			this.modules[row] = new Array(this.moduleCount);
			
			for (var col = 0; col < this.moduleCount; col++) {
				this.modules[row][col] = null;//(col + row) % 3;
			}
		}
	
		this.setupPositionProbePattern(0, 0);
		this.setupPositionProbePattern(this.moduleCount - 7, 0);
		this.setupPositionProbePattern(0, this.moduleCount - 7);
		this.setupPositionAdjustPattern();
		this.setupTimingPattern();
		this.setupTypeInfo(test, maskPattern);
		
		if (this.typeNumber >= 7) {
			this.setupTypeNumber(test);
		}
	
		if (this.dataCache === null) {
			this.dataCache = QRCode.createData(this.typeNumber, this.errorCorrectLevel, this.dataList);
		}
	
		this.mapData(this.dataCache, maskPattern);
	},

	setupPositionProbePattern : function(row, col)  {
		
		for (var r = -1; r <= 7; r++) {
			
			if (row + r <= -1 || this.moduleCount <= row + r) continue;
			
			for (var c = -1; c <= 7; c++) {
				
				if (col + c <= -1 || this.moduleCount <= col + c) continue;
				
				if ( (0 <= r && r <= 6 && (c === 0 || c === 6) ) || 
                     (0 <= c && c <= 6 && (r === 0 || r === 6) ) || 
                     (2 <= r && r <= 4 && 2 <= c && c <= 4) ) {
					this.modules[row + r][col + c] = true;
				} else {
					this.modules[row + r][col + c] = false;
				}
			}		
		}		
	},
	
	getBestMaskPattern : function() {
	
		var minLostPoint = 0;
		var pattern = 0;
	
		for (var i = 0; i < 8; i++) {
			
			this.makeImpl(true, i);
	
			var lostPoint = QRUtil.getLostPoint(this);
	
			if (i === 0 || minLostPoint >  lostPoint) {
				minLostPoint = lostPoint;
				pattern = i;
			}
		}
	
		return pattern;
	},
	
	createMovieClip : function(target_mc, instance_name, depth) {
	
		var qr_mc = target_mc.createEmptyMovieClip(instance_name, depth);
		var cs = 1;
	
		this.make();

		for (var row = 0; row < this.modules.length; row++) {
			
			var y = row * cs;
			
			for (var col = 0; col < this.modules[row].length; col++) {
	
				var x = col * cs;
				var dark = this.modules[row][col];
			
				if (dark) {
					qr_mc.beginFill(0, 100);
					qr_mc.moveTo(x, y);
					qr_mc.lineTo(x + cs, y);
					qr_mc.lineTo(x + cs, y + cs);
					qr_mc.lineTo(x, y + cs);
					qr_mc.endFill();
				}
			}
		}
		
		return qr_mc;
	},

	setupTimingPattern : function() {
		
		for (var r = 8; r < this.moduleCount - 8; r++) {
			if (this.modules[r][6] !== null) {
				continue;
			}
			this.modules[r][6] = (r % 2 === 0);
		}
	
		for (var c = 8; c < this.moduleCount - 8; c++) {
			if (this.modules[6][c] !== null) {
				continue;
			}
			this.modules[6][c] = (c % 2 === 0);
		}
	},
	
	setupPositionAdjustPattern : function() {
	
		var pos = QRUtil.getPatternPosition(this.typeNumber);
		
		for (var i = 0; i < pos.length; i++) {
		
			for (var j = 0; j < pos.length; j++) {
			
				var row = pos[i];
				var col = pos[j];
				
				if (this.modules[row][col] !== null) {
					continue;
				}
				
				for (var r = -2; r <= 2; r++) {
				
					for (var c = -2; c <= 2; c++) {
					
						if (Math.abs(r) === 2 || 
                            Math.abs(c) === 2 ||
                            (r === 0 && c === 0) ) {
							this.modules[row + r][col + c] = true;
						} else {
							this.modules[row + r][col + c] = false;
						}
					}
				}
			}
		}
	},
	
	setupTypeNumber : function(test) {
	
		var bits = QRUtil.getBCHTypeNumber(this.typeNumber);
        var mod;
	
		for (var i = 0; i < 18; i++) {
			mod = (!test && ( (bits >> i) & 1) === 1);
			this.modules[Math.floor(i / 3)][i % 3 + this.moduleCount - 8 - 3] = mod;
		}
	
		for (var x = 0; x < 18; x++) {
			mod = (!test && ( (bits >> x) & 1) === 1);
			this.modules[x % 3 + this.moduleCount - 8 - 3][Math.floor(x / 3)] = mod;
		}
	},
	
	setupTypeInfo : function(test, maskPattern) {
	
		var data = (this.errorCorrectLevel << 3) | maskPattern;
		var bits = QRUtil.getBCHTypeInfo(data);
        var mod;
	
		// vertical		
		for (var v = 0; v < 15; v++) {
	
			mod = (!test && ( (bits >> v) & 1) === 1);
	
			if (v < 6) {
				this.modules[v][8] = mod;
			} else if (v < 8) {
				this.modules[v + 1][8] = mod;
			} else {
				this.modules[this.moduleCount - 15 + v][8] = mod;
			}
		}
	
		// horizontal
		for (var h = 0; h < 15; h++) {
	
			mod = (!test && ( (bits >> h) & 1) === 1);
			
			if (h < 8) {
				this.modules[8][this.moduleCount - h - 1] = mod;
			} else if (h < 9) {
				this.modules[8][15 - h - 1 + 1] = mod;
			} else {
				this.modules[8][15 - h - 1] = mod;
			}
		}
	
		// fixed module
		this.modules[this.moduleCount - 8][8] = (!test);
	
	},
	
	mapData : function(data, maskPattern) {
		
		var inc = -1;
		var row = this.moduleCount - 1;
		var bitIndex = 7;
		var byteIndex = 0;
		
		for (var col = this.moduleCount - 1; col > 0; col -= 2) {
	
			if (col === 6) col--;
	
			while (true) {
	
				for (var c = 0; c < 2; c++) {
					
					if (this.modules[row][col - c] === null) {
						
						var dark = false;
	
						if (byteIndex < data.length) {
							dark = ( ( (data[byteIndex] >>> bitIndex) & 1) === 1);
						}
	
						var mask = QRUtil.getMask(maskPattern, row, col - c);
	
						if (mask) {
							dark = !dark;
						}
						
						this.modules[row][col - c] = dark;
						bitIndex--;
	
						if (bitIndex === -1) {
							byteIndex++;
							bitIndex = 7;
						}
					}
				}
								
				row += inc;
	
				if (row < 0 || this.moduleCount <= row) {
					row -= inc;
					inc = -inc;
					break;
				}
			}
		}
		
	}

};

QRCode.PAD0 = 0xEC;
QRCode.PAD1 = 0x11;

QRCode.createData = function(typeNumber, errorCorrectLevel, dataList) {
	
	var rsBlocks = QRRSBlock.getRSBlocks(typeNumber, errorCorrectLevel);
	
	var buffer = new QRBitBuffer();
	
	for (var i = 0; i < dataList.length; i++) {
		var data = dataList[i];
		buffer.put(data.mode, 4);
		buffer.put(data.getLength(), QRUtil.getLengthInBits(data.mode, typeNumber) );
		data.write(buffer);
	}

	// calc num max data.
	var totalDataCount = 0;
	for (var x = 0; x < rsBlocks.length; x++) {
		totalDataCount += rsBlocks[x].dataCount;
	}

	if (buffer.getLengthInBits() > totalDataCount * 8) {
		throw new Error("code length overflow. (" + 
            buffer.getLengthInBits() + 
            ">" +  
            totalDataCount * 8 + 
            ")");
	}

	// end code
	if (buffer.getLengthInBits() + 4 <= totalDataCount * 8) {
		buffer.put(0, 4);
	}

	// padding
	while (buffer.getLengthInBits() % 8 !== 0) {
		buffer.putBit(false);
	}

	// padding
	while (true) {
		
		if (buffer.getLengthInBits() >= totalDataCount * 8) {
			break;
		}
		buffer.put(QRCode.PAD0, 8);
		
		if (buffer.getLengthInBits() >= totalDataCount * 8) {
			break;
		}
		buffer.put(QRCode.PAD1, 8);
	}

	return QRCode.createBytes(buffer, rsBlocks);
};

QRCode.createBytes = function(buffer, rsBlocks) {

	var offset = 0;
	
	var maxDcCount = 0;
	var maxEcCount = 0;
	
	var dcdata = new Array(rsBlocks.length);
	var ecdata = new Array(rsBlocks.length);
	
	for (var r = 0; r < rsBlocks.length; r++) {

		var dcCount = rsBlocks[r].dataCount;
		var ecCount = rsBlocks[r].totalCount - dcCount;

		maxDcCount = Math.max(maxDcCount, dcCount);
		maxEcCount = Math.max(maxEcCount, ecCount);
		
		dcdata[r] = new Array(dcCount);
		
		for (var i = 0; i < dcdata[r].length; i++) {
			dcdata[r][i] = 0xff & buffer.buffer[i + offset];
		}
		offset += dcCount;
		
		var rsPoly = QRUtil.getErrorCorrectPolynomial(ecCount);
		var rawPoly = new QRPolynomial(dcdata[r], rsPoly.getLength() - 1);

		var modPoly = rawPoly.mod(rsPoly);
		ecdata[r] = new Array(rsPoly.getLength() - 1);
		for (var x = 0; x < ecdata[r].length; x++) {
            var modIndex = x + modPoly.getLength() - ecdata[r].length;
			ecdata[r][x] = (modIndex >= 0)? modPoly.get(modIndex) : 0;
		}

	}
	
	var totalCodeCount = 0;
	for (var y = 0; y < rsBlocks.length; y++) {
		totalCodeCount += rsBlocks[y].totalCount;
	}

	var data = new Array(totalCodeCount);
	var index = 0;

	for (var z = 0; z < maxDcCount; z++) {
		for (var s = 0; s < rsBlocks.length; s++) {
			if (z < dcdata[s].length) {
				data[index++] = dcdata[s][z];
			}
		}
	}

	for (var xx = 0; xx < maxEcCount; xx++) {
		for (var t = 0; t < rsBlocks.length; t++) {
			if (xx < ecdata[t].length) {
				data[index++] = ecdata[t][xx];
			}
		}
	}

	return data;

};

module.exports = QRCode;
PKDZ�\�Un66$vendor/QRCode/QRErrorCorrectLevel.jsnu�[���module.exports = {
	L : 1,
	M : 0,
	Q : 3,
	H : 2
};

PKDZ�\gd|;��vendor/QRCode/QRRSBlock.jsnu�[���var QRErrorCorrectLevel = require('./QRErrorCorrectLevel');

function QRRSBlock(totalCount, dataCount) {
	this.totalCount = totalCount;
	this.dataCount  = dataCount;
}

QRRSBlock.RS_BLOCK_TABLE = [

	// L
	// M
	// Q
	// H

	// 1
	[1, 26, 19],
	[1, 26, 16],
	[1, 26, 13],
	[1, 26, 9],
	
	// 2
	[1, 44, 34],
	[1, 44, 28],
	[1, 44, 22],
	[1, 44, 16],

	// 3
	[1, 70, 55],
	[1, 70, 44],
	[2, 35, 17],
	[2, 35, 13],

	// 4		
	[1, 100, 80],
	[2, 50, 32],
	[2, 50, 24],
	[4, 25, 9],
	
	// 5
	[1, 134, 108],
	[2, 67, 43],
	[2, 33, 15, 2, 34, 16],
	[2, 33, 11, 2, 34, 12],
	
	// 6
	[2, 86, 68],
	[4, 43, 27],
	[4, 43, 19],
	[4, 43, 15],
	
	// 7		
	[2, 98, 78],
	[4, 49, 31],
	[2, 32, 14, 4, 33, 15],
	[4, 39, 13, 1, 40, 14],
	
	// 8
	[2, 121, 97],
	[2, 60, 38, 2, 61, 39],
	[4, 40, 18, 2, 41, 19],
	[4, 40, 14, 2, 41, 15],
	
	// 9
	[2, 146, 116],
	[3, 58, 36, 2, 59, 37],
	[4, 36, 16, 4, 37, 17],
	[4, 36, 12, 4, 37, 13],
	
	// 10		
	[2, 86, 68, 2, 87, 69],
	[4, 69, 43, 1, 70, 44],
	[6, 43, 19, 2, 44, 20],
	[6, 43, 15, 2, 44, 16],

	// 11
	[4, 101, 81],
	[1, 80, 50, 4, 81, 51],
	[4, 50, 22, 4, 51, 23],
	[3, 36, 12, 8, 37, 13],

	// 12
	[2, 116, 92, 2, 117, 93],
	[6, 58, 36, 2, 59, 37],
	[4, 46, 20, 6, 47, 21],
	[7, 42, 14, 4, 43, 15],

	// 13
	[4, 133, 107],
	[8, 59, 37, 1, 60, 38],
	[8, 44, 20, 4, 45, 21],
	[12, 33, 11, 4, 34, 12],

	// 14
	[3, 145, 115, 1, 146, 116],
	[4, 64, 40, 5, 65, 41],
	[11, 36, 16, 5, 37, 17],
	[11, 36, 12, 5, 37, 13],

	// 15
	[5, 109, 87, 1, 110, 88],
	[5, 65, 41, 5, 66, 42],
	[5, 54, 24, 7, 55, 25],
	[11, 36, 12],

	// 16
	[5, 122, 98, 1, 123, 99],
	[7, 73, 45, 3, 74, 46],
	[15, 43, 19, 2, 44, 20],
	[3, 45, 15, 13, 46, 16],

	// 17
	[1, 135, 107, 5, 136, 108],
	[10, 74, 46, 1, 75, 47],
	[1, 50, 22, 15, 51, 23],
	[2, 42, 14, 17, 43, 15],

	// 18
	[5, 150, 120, 1, 151, 121],
	[9, 69, 43, 4, 70, 44],
	[17, 50, 22, 1, 51, 23],
	[2, 42, 14, 19, 43, 15],

	// 19
	[3, 141, 113, 4, 142, 114],
	[3, 70, 44, 11, 71, 45],
	[17, 47, 21, 4, 48, 22],
	[9, 39, 13, 16, 40, 14],

	// 20
	[3, 135, 107, 5, 136, 108],
	[3, 67, 41, 13, 68, 42],
	[15, 54, 24, 5, 55, 25],
	[15, 43, 15, 10, 44, 16],

	// 21
	[4, 144, 116, 4, 145, 117],
	[17, 68, 42],
	[17, 50, 22, 6, 51, 23],
	[19, 46, 16, 6, 47, 17],

	// 22
	[2, 139, 111, 7, 140, 112],
	[17, 74, 46],
	[7, 54, 24, 16, 55, 25],
	[34, 37, 13],

	// 23
	[4, 151, 121, 5, 152, 122],
	[4, 75, 47, 14, 76, 48],
	[11, 54, 24, 14, 55, 25],
	[16, 45, 15, 14, 46, 16],

	// 24
	[6, 147, 117, 4, 148, 118],
	[6, 73, 45, 14, 74, 46],
	[11, 54, 24, 16, 55, 25],
	[30, 46, 16, 2, 47, 17],

	// 25
	[8, 132, 106, 4, 133, 107],
	[8, 75, 47, 13, 76, 48],
	[7, 54, 24, 22, 55, 25],
	[22, 45, 15, 13, 46, 16],

	// 26
	[10, 142, 114, 2, 143, 115],
	[19, 74, 46, 4, 75, 47],
	[28, 50, 22, 6, 51, 23],
	[33, 46, 16, 4, 47, 17],

	// 27
	[8, 152, 122, 4, 153, 123],
	[22, 73, 45, 3, 74, 46],
	[8, 53, 23, 26, 54, 24],
	[12, 45, 15, 28, 46, 16],

	// 28
	[3, 147, 117, 10, 148, 118],
	[3, 73, 45, 23, 74, 46],
	[4, 54, 24, 31, 55, 25],
	[11, 45, 15, 31, 46, 16],

	// 29
	[7, 146, 116, 7, 147, 117],
	[21, 73, 45, 7, 74, 46],
	[1, 53, 23, 37, 54, 24],
	[19, 45, 15, 26, 46, 16],

	// 30
	[5, 145, 115, 10, 146, 116],
	[19, 75, 47, 10, 76, 48],
	[15, 54, 24, 25, 55, 25],
	[23, 45, 15, 25, 46, 16],

	// 31
	[13, 145, 115, 3, 146, 116],
	[2, 74, 46, 29, 75, 47],
	[42, 54, 24, 1, 55, 25],
	[23, 45, 15, 28, 46, 16],

	// 32
	[17, 145, 115],
	[10, 74, 46, 23, 75, 47],
	[10, 54, 24, 35, 55, 25],
	[19, 45, 15, 35, 46, 16],

	// 33
	[17, 145, 115, 1, 146, 116],
	[14, 74, 46, 21, 75, 47],
	[29, 54, 24, 19, 55, 25],
	[11, 45, 15, 46, 46, 16],

	// 34
	[13, 145, 115, 6, 146, 116],
	[14, 74, 46, 23, 75, 47],
	[44, 54, 24, 7, 55, 25],
	[59, 46, 16, 1, 47, 17],

	// 35
	[12, 151, 121, 7, 152, 122],
	[12, 75, 47, 26, 76, 48],
	[39, 54, 24, 14, 55, 25],
	[22, 45, 15, 41, 46, 16],

	// 36
	[6, 151, 121, 14, 152, 122],
	[6, 75, 47, 34, 76, 48],
	[46, 54, 24, 10, 55, 25],
	[2, 45, 15, 64, 46, 16],

	// 37
	[17, 152, 122, 4, 153, 123],
	[29, 74, 46, 14, 75, 47],
	[49, 54, 24, 10, 55, 25],
	[24, 45, 15, 46, 46, 16],

	// 38
	[4, 152, 122, 18, 153, 123],
	[13, 74, 46, 32, 75, 47],
	[48, 54, 24, 14, 55, 25],
	[42, 45, 15, 32, 46, 16],

	// 39
	[20, 147, 117, 4, 148, 118],
	[40, 75, 47, 7, 76, 48],
	[43, 54, 24, 22, 55, 25],
	[10, 45, 15, 67, 46, 16],

	// 40
	[19, 148, 118, 6, 149, 119],
	[18, 75, 47, 31, 76, 48],
	[34, 54, 24, 34, 55, 25],
	[20, 45, 15, 61, 46, 16]
];

QRRSBlock.getRSBlocks = function(typeNumber, errorCorrectLevel) {
	
	var rsBlock = QRRSBlock.getRsBlockTable(typeNumber, errorCorrectLevel);
	
	if (rsBlock === undefined) {
		throw new Error("bad rs block @ typeNumber:" + typeNumber + "/errorCorrectLevel:" + errorCorrectLevel);
	}

	var length = rsBlock.length / 3;
	
	var list = [];
	
	for (var i = 0; i < length; i++) {

		var count = rsBlock[i * 3 + 0];
		var totalCount = rsBlock[i * 3 + 1];
		var dataCount  = rsBlock[i * 3 + 2];

		for (var j = 0; j < count; j++) {
			list.push(new QRRSBlock(totalCount, dataCount) );	
		}
	}
	
	return list;
};

QRRSBlock.getRsBlockTable = function(typeNumber, errorCorrectLevel) {

	switch(errorCorrectLevel) {
	case QRErrorCorrectLevel.L :
		return QRRSBlock.RS_BLOCK_TABLE[(typeNumber - 1) * 4 + 0];
	case QRErrorCorrectLevel.M :
		return QRRSBlock.RS_BLOCK_TABLE[(typeNumber - 1) * 4 + 1];
	case QRErrorCorrectLevel.Q :
		return QRRSBlock.RS_BLOCK_TABLE[(typeNumber - 1) * 4 + 2];
	case QRErrorCorrectLevel.H :
		return QRRSBlock.RS_BLOCK_TABLE[(typeNumber - 1) * 4 + 3];
	default :
		return undefined;
	}
};

module.exports = QRRSBlock;
PKDZ�\�<Z•�vendor/QRCode/QRMode.jsnu�[���module.exports = {
    MODE_NUMBER :       1 << 0,
    MODE_ALPHA_NUM :    1 << 1,
    MODE_8BIT_BYTE :    1 << 2,
    MODE_KANJI :        1 << 3
};
PKDZ�\�^�i��vendor/QRCode/QRMaskPattern.jsnu�[���module.exports = {
	PATTERN000 : 0,
	PATTERN001 : 1,
	PATTERN010 : 2,
	PATTERN011 : 3,
	PATTERN100 : 4,
	PATTERN101 : 5,
	PATTERN110 : 6,
	PATTERN111 : 7
};
PKDZ�\r�����vendor/QRCode/QRBitBuffer.jsnu�[���function QRBitBuffer() {
	this.buffer = [];
	this.length = 0;
}

QRBitBuffer.prototype = {

	get : function(index) {
		var bufIndex = Math.floor(index / 8);
		return ( (this.buffer[bufIndex] >>> (7 - index % 8) ) & 1) == 1;
	},
	
	put : function(num, length) {
		for (var i = 0; i < length; i++) {
			this.putBit( ( (num >>> (length - i - 1) ) & 1) == 1);
		}
	},
	
	getLengthInBits : function() {
		return this.length;
	},
	
	putBit : function(bit) {
	
		var bufIndex = Math.floor(this.length / 8);
		if (this.buffer.length <= bufIndex) {
			this.buffer.push(0);
		}
	
		if (bit) {
			this.buffer[bufIndex] |= (0x80 >>> (this.length % 8) );
		}
	
		this.length++;
	}
};

module.exports = QRBitBuffer;
PKDZ�\4a,,bin/qrcode-terminal.jsnu�[���#!/usr/bin/env node

/*!
 * Module dependencies.
 */

var qrcode = require('../lib/main'),
    path = require('path'),
    fs = require('fs');

/*!
 * Parse the process name
 */

var name = process.argv[1].replace(/^.*[\\\/]/, '').replace('.js', '');

/*!
 * Parse the input
 */

if (process.stdin.isTTY) {
    // called with input as argument, e.g.:
    // ./qrcode-terminal.js "INPUT"

    var input = process.argv[2];
    handleInput(input);
} else {
    // called with piped input, e.g.:
    // echo "INPUT" | ./qrcode-terminal.js

    var readline = require('readline');

    var interface = readline.createInterface({
        input: process.stdin,
        output: process.stdout,
        terminal: false
    });

    interface.on('line', function(line) {
        handleInput(line);
    });
}

/*!
 * Process the input
 */

function handleInput(input) {

    /*!
     * Display help
     */

    if (!input || input === '-h' || input === '--help') {
        help();
        process.exit();
    }

    /*!
     * Display version
     */

    if (input === '-v' || input === '--version') {
        version();
        process.exit();
    }

    /*!
     * Render the QR Code
     */

    qrcode.generate(input);
}

/*!
 * Helper functions
 */

function help() {
    console.log([
        '',
        'Usage: ' + name + ' <message>',
        '',
        'Options:',
        '  -h, --help           output usage information',
        '  -v, --version        output version number',
        '',
        'Examples:',
        '',
        '  $ ' + name + ' hello',
        '  $ ' + name + ' "hello world"',
        ''
    ].join('\n'));
}

function version() {
    var packagePath = path.join(__dirname, '..', 'package.json'),
        packageJSON = JSON.parse(fs.readFileSync(packagePath), 'utf8');

    console.log(packageJSON.version);
}
PKDZ�\�ҭ@wwexample/callback.jsnu�[���var qrcode = require('../lib/main');
qrcode.generate('someone sets it up', function (str) { 
    console.log(str);
});
PKDZ�\�����example/small-qrcode.jsnu�[���var qrcode = require('../lib/main'),
    url = 'https://google.com/';

qrcode.generate(url, { small: true }, function (qr) {
    console.log(qr);
});
PKDZ�\mX��Z�Z�example/basic.pngnu�[����PNG


IHDRL�$�iCCPICC ProfileX	�Yy<U����;p��Ef�<�2�s��5���Y�Q
�P�HD�$Q��A)MD�(�$��n=�<���{��s��u�{����Z�����;��X���1��ӋB`�@HS�c��l��y}�lx=QX����H�1� �_@�$ė@�������O��^LJ �C!�\���u���qq2����Tz0,3PN�����2����`1
��!��|!G>22j�@,�z����T���R������
���DGP�~���|DF�A{����9&��������f��@�he�[^k��[�k�1'�<
��t�����]� ����Q6�|h'���b��cL�����h$��������AGƃ���G��bb��F�^�7+�gS���Sa�ޮ(��E�:����CZ���`ƃ���u�J`̯����b	�Pg�=��΁}D�Bͭ ����!t�?r��_c�E]�qN�v�8(��n�uyv�tݶ�&h	0T@���@����~R��e� 
D��Na��7�{�{�{����#�%�@(�����UʝA2�k
1Z��a��:X[�4��*V��Ϸ�3Wg��ߺò
��6��}����	M���2~���:��qh��?�Z�i����c��o�7�ˠ��Khڎ�E[ѫ���D��^�m���O+T(Y�ʺ�c�
�b ���������R�ߌ�5�ʲ�'X���п[p��u�%2�`�a�k�?~녕��U�c�������X>���-n�5�>P������QA����/�`�#2601�%`�D
����2P�bE�W���*�����w���ӯ5��G�
��<�R��B�p�+�d�p��p7�?��W}���@�ihU��xC`��=p����	5N;A*��!p�RP΂�\��t���x^�0>�9��"B@X2‹#���h!��b�8!��/�А8d'��@� E�i���\Cڑ��c�2�L#���a�pb1�%��c�q�l�c�c�1�\L!�S�i´c�c�aF00�(@�PnTU@�P��B�P:��f�h9Z�����Ag�e,K�R�
Г�XW�?v;6��-ž�6a;�O���9�ON'���Y�<p��\&�W�����y���s��p�{���;�9����-�c�~�@ ��z{�K�$� �n�	�oL���^4�4��s7��1�2�3J0j3�30&1�1V2�0�1N0�ID)�хFL%�]���&&&Q�ML�L�L{�
�.0�aeZf�`�e6a��ǜ�\�|����$�!�K,K.K
�m�a�o�dVEV+��ݬŬM����l�llFl�l�ll���f��%�Mة�)������Id�
ɞI�!�#�%Mq8$9�8828*8ns��Q�ل�ON'W����xN)N+�0���9r�qqpm�r�J�*�j��F�%���#����W6n0��a���
��x�yyy�yx���Rx�x�y�^������9�%������������o�)��p�!P!�+�(($h!-xB�����P�P��
�ia���p�p��M�.�%�RH�̉�X�ĉ�y(�**%�*�&� :$F�����,�S�V�����D��q��%I)Iw�,ɫ�SR<RVR�R�R��Y�
��K�K?���hɄ˜�y$��U�
�-����iȅʝ�{,���$O�/�T`V0R�W�UU�V�ULS��8�$��tX�G駲�r�r��+k�4��Ϫ����ŪO�X���v�5��o��������d���Y��?445��Ӛ⚾�%��Z�ZZ9Zw6�6oڽ�uӲ��v�v��'�p�s:S�R�����cz�zT��z#�}_�2��A��[C1��*�wF2FaFuF����t�+�K&�&�Ln����٦�8�\͊̆�E̓�k��,�-vXܲ�Y�X���򷪱��ִ�e�i�l�lSd��V֖n۲��z��ͯ�$�hvW큽��Q�!)�����Ŏ�N*N;�z���>�眿��乼r�v�s�pcs��V��n�~�}�C�c��}O>�P�f/���W����-ǶLlUߚ�u`�Զ�mw���#��|�|�>�|q���|�S���E?+��9��������:4�|4x:� � d&�$�(t>�2�4l)�>�:|-�=�!�!�7���N��J�z-�=�]{���stzU�-�9�r{��ƍ����KpK��HJ�%�&�&�Oz�l�|fv�����";Sw��2�u:I�K��-�;c���=gS���Ҕӎ�}IwOo��ؓ1��bom&k&=s0K'�tv_辇����3; �������;�r���ZnP��<��S��h�>{�t$�����G��)��_���[����8�x��B����'��^R�ظ��D�d��ɀ���O՗
�(])-{~��tS�dyA�"�b�ҭ��֙�*��U?�i�#g��v�h�Ԝ8�W�������Z����z���
�
.�q�_�8�h��qI�R�e��%W�W��������!WG�=�_���Ѣ�r���V���6����7�n&�\�}k�=�}�ç��m��O;;v�t��6��c�s�ޝֻ�w��Ӻw����^��+�\y��O���ѦG-�u��7�ob��������=px>�up�y��/�_ƿ\}��5�u��P���p��7
##m����o�߾��03�}"c�e���)թ�i��G﷼���au&�#�cɬ���O��z�<�&���k�sx��l�ұ�8�5���R�7�og���{V�Wޭ&|'|/�!�����k�kk�T:��Y�OLP��a\�	�Dֿb�_x�E b7d?f;�O?�;�jBCc q�+�#����/)��F����&m��S�;ϯ+�%�BX��"�TLN<]bHJ[�P櫜��eE.�$�QU[�Fu�L�O�\�[uE����:]1�1M4{a�ey�j��Ŷv�=��1��s�ˤ�]����ۋ�%}�m�ާ}�|�R����+N
�L���
���d�\�MG=���~�^S�7.6�?�)�(I>y�d���]�)u���IM�L�H7�P�˗�˜�z�����err�����=�{��G���U{<���[�U�N��I�SL�VJ'���T^X����e�b5g��ٷ5��]�-�K;Q��`pA�"���ƩKO.7_)i�sտ��TC����3m�7��Լ�~k�����6�Ӥ��k��Qϥ;w��y�7�~��`����Gu����<	~��L{@l�ep����_���&jdۨ�[�1�8q��ċɛ�*�����o��8�<3��l6���nnp��sƂ��E��l_,�}�Z~��vu�䏏?������UBg��,�3A����c7��)�9�ŇՒM�]��D�IV�������Ay5�B�O	�	;RrEzň�{%�J3�X���=UVQ����ګ��8�����աͤ�[�7j ci�h�l�o�n�j��r��
ޖ�Y�N�^�A�Q�I�Y�E�Uߝ�x|��z��e��m{�������NS;��w�*�&�o��&�9��G"�F��NDѣm�K��e̥؃q��F	�	_&U'��زs�.�]�)7w�I�H�O�`Ș�4�%�l�����sxs����ɫ?t�p��-G
�)��77�������`K&N���)=PF;�P�V�U��ՙU��ig�j�ω֢�cu��W֧7\0�(ވm��u�̕����������fZ�]��Z�v�F���[�����;��X�1��zf�L��7p����އ}}�=y<���˧��
��}>�b��W�_��
/��:�����H��~�b������������>�.\_T���Mm������������|��D���k�x�~��̐�hI �1u2��������$�9�ɲ���̸�6����=�w��K`XpE���,b'%�+~^�OrA�G�@6X.G�� �es���u�4f��7Ik[����+ѯ7�5<e�g�bn�afh.i�h1e�eu�:��ܖ�vd�9;�����C�c���Ӣ��pW	�7nE�.�=��^�^[�o�6�}����m�&�m�[�o
�
T
�j��
�
�
��EE��ȴ��і�q�o�Sc�c��^�K�W��O�OO�JK.�#�{g��������{r�X�H�Oo����)��)���N�B��\��s�&�;w4��P�a�#lG^�ɏ?fR@*>^[�t¼��hNڞ�;5U�T�qڹ\�|�b��™쪀j���g���k�ͩ=oQ/ـm�p�bEc�����W����J5_�i�Nj%�q��)qK�ݴ��vLg^WCw��]ʽm�G���h���i�sٗ
�7�|�5�0
>,|"~6Z���=j������0'�ט����?zp`�e���
D��� p�&�M��%��LOq�y0����iE�a�h��#��B�2�?aX1
�͘(�a�e�s�T�B��B�I��"c,
[���]�Iø,׊���{�s���M�p��A�!��
�V2�������LbS �Ef<3���E�e'�V�62[
�Gvo�'$R7�e�ɶ�g�T�y�tn^��6|�)��]��`�L�Zn��1e}.V%� a-).�H�Hw�TÕ.Q>P�Y�LI[YEEVURMb����������&m	1]q=i}%mCk��Ʊ&y��f��+��Vn��6�?�L�8�9i9����{�ǚuK�6�_��&�)�'�0�Z�Qxo�V�\�~�d�ݸ�	‰O�swڧp�~�z!=k�_��~���ܨC�GHGǏ];�w"���$��Z�hyWe}U�ٽ����M.(5
_�h"6�Z�,7xo�u�tR�3�4�{����q�S���j��k�\��z����L�l���e�z)f���#����̀a�a#̘8ÜH"8*aa, �4b�lE�|���3��Q�x`v��f�A��H�ڍ.`Ű���Oè���m�/x|0��� H�J(!1Pj��S{�<�@�%&�Ʌ�����E��F��Kl�l����H��Y�$2�|�S��W�G�6��yn�������!�-�"$"4/�E)�uS��*1"�@�U�A�J�T�D�X�b�R�r��=�a�Eu6
yM-�Mq�y:����fH��F��&ݦ��4�Z��6������y�;�:˸�s�qw�h�ܒ�
��3K
���K���2���Ɗ�&�%�%?ݹ/�`�rjsz�^�,�����\4��p�Q�c���EA%
'K�NgU8���9{�܁:�zr��ŚK	W,��7Ϸ�o����V`�U�R7������=����La���CW��2�=7n91��6��>m��gvu.z~l��˭�rK�`%x����ſ�������4�ù	�A1h�`�^���,��E�0\]L� �3��PC8�O�O��.6{;���=׏�;��_�	A��
̢�3�3j0�g|CT'���̘*���w1f	c����)�(�U���&������%���T7^e>V�9�A��F�*�RJ��I�
�z�V����R�2��������>�+J�*��j�7��׌ֺ�M�	���7�o�`�g2`fo�kio5`�o�`G��p�qv�q�t���uh�Զv_*֯6�=|=4:\*b�V��R1�q7�w���NY��<�FFMf���l��\r޷��G{�5/;q�8�d|i��
�3>��5�Z��*
l>6�^>ה��ע���6r��=�^�yg�=����y>f���3d@s0�yً�W��p›������ƟM<��|�8U2���uxb�X=K�����ܵ��ϊ��J��/b/|ݶD\��m�2~����ʷՓ�
���H�)��c�w�1Aj0g	/������$a��?�����������knE����:s�%M��$c�������$՝ŭ@IDATx��eUu�;�~�@��ӆ��( ��H�`�V�
I���	z
W#ƃ��/_D�$DG�����>>�Q
E@D�y#4����g�׮���k?�vծ������c�9朿9��k��{�v/��B� @� @`k��V�� @�  `b@� @�C����� @���� @�� `�5 @� &� @� �:��A
@� @���.��,�� @���O �?V�!k˴]/q"�iaG`@� �&z)�zQLDMv6�� @��S@յS�#>�ׁ��. @�&�@G>�׭ATWLc$M�H�� @]L`L��n
������ i�������C� @�	�I��`^��O�d�4� ����
�
U� @�Z�
��َ���<m3�8Ic���l/!B� @�#F�4�H|��6���i��J�+��y�Gj�v�� @x1Q��@�jߪ݄N0�q��j�Ӫ]yӏ�]�e@� lKZ\J�n�]3�f�C�N��		�Z��)��~#?��ܞ� @�N�Q�Ҩ.�w3�v�'�iSG�%Ao�ԫ���"V�W�l�(m�F>�� @��xh��뿪]�.o_���^m�
���Ӧ�L-K��zu����
�OB+6�}�<>���� @�@+Z
:�8j�G٦\v#ի]�6�ٱ�M	�Z�UuU:���<vPhTg�F6��ܞ� @��F�H�:ϣ�M^��n��J_�s�Fu	��=`j#X�
J���|��۔˹m#y����� @�%�0�h�ܮ\.7���u�춭�d_ek?�4�k��$X�`T���
�r�\.۩\���~$>�l�A� @`�%��l���<��e�+��[�U�ܮ���f<��4n�8KX�d�,}��e�)۴R��6��ר
u� @-����_�v�����rU�t�q^�.����r[���IӸLc,���N��h��[yه���]O@� �m�@�`�U}n�˚c^��r]^n�Nm�Tn7T7O��<`E�Tx�u.;�\�˭��6y���rU��Qe�� @����F6��&�m��,;/�����u��m]�m������^�Y�
0��\�\C�e��t��s�J�}.�jk��>����zd@� lK�T���K���M>'ջ�m\���]���l��e�ُ�ʫty���c����ӥ2O2�H��e��6��u��ι�pٹ�n��e9���*_#��m�!@� 0Z� ��Y��s��s�9w���-�u��J�uj׬\eS�7�O��,`�`)F���e�%9/[�\�u�k��kY׬��E� @���F�YR���s��<?�U�7��ms9�#}�r�M�o���1	�:,偋d���֨.��e�������ӗ�S� @��x(^��s����m�<��.�-ۮ\��u�w}U��nL~9���a�D�E^��l/���<�[i�۔۪��u*ד�l�#� @��D(O��e�5��u���F:�*��zyn'Y�>,��RUo��v����rОX>��޲��޺<�����ۦ^��J�s��ʲ�N��uyެ>�E� @��h	� |?��[��r}=Yvj�z��9Y��w�sۨl?�s��m�\v��Jپ���H^���iB���z��^e�ʲ�l���ٹ�yޗuʭ��\��� @A����W.�eo]�[�Y��l_�N��U��חue}U}�k��Lm=a�,y�y�Ur=��y.9/����&�Y�3h���6��\�R�_�+2����s2 @�ƚ@��}���e�n�r������t�O��n�{`�7�'��-���8��z��*�b�v�����m
$T%[�\n%�l�\���u.�fZ:^�7�7}�CzE���T^�����#1���.�g�H6j�1�Fy�$�f6�ڻn,�x��|4~�F�R���*�_��維ȹ?��[i��4j����e��r���X����h���r%�-���r�f��m+r�ϲ�V��6���s6��mYnŦܦ�<~��5�n�\I~˩��ܦY}nۊ���켕��M�v���!o[�[�)��*����y�Ư�(W��r��+�iV�۶"�,;o�}nӨ]>gs�ۖ�Vl�m��c�j^���6ʕ䷜���m��維ȹ?��[i��4j����e��r�r9��cҤI_��?}�Yg���T�D:֥��i	��E�./��Pr���ۗeח��m,][����%`�L>�\�˲�˒�e�Xo�r9�+ו�sR�t�_��_�g�������6mR6��ͣM�6AQ'���s.[�F�y��<y�PһNv��}��m#��|l�e]����^�P�'��u�m��t�y;�l�v��}:/ש���y���Ϲۨ,Y��l�d%���<�~Ԟ���1�2��lƹ.g+�\�2�,Ļ��rv�}ض�ڼ�7��}�z�Q.�N��\������
E�R�S��s�s��qX���\'���.׹��ԵYy�r?j�_��(�����r���u*������ν�|[���\�=���r�d%���\�L���k�s��y__���?��g>�o���'nH�V�Co"~#�ܬ��Գu�r%��J�}U�ݯ�G��
U6F0%�[��Ľ�_^.�岚Jg�媲��6��\�b�;S���0^h5����M4���e�d�y�#�OD�۟�ۧ��u�o̶���$+�>j�-u��1����>=f�W?N�s�r^��z�+9O�tn�)�jc�}��m����J�����OYVY�)�N�ږ��{�S[݈�^���v.+�!?J����e��m�;�:�Ԙ�ms{��e�Q9�/;�-�e鬗�y�r���6�ٗ|�V~�_��O���r�,����7�c[��K�cw�ڲ��=�u+@
���Y�zM]�v�c���V6�ۯs�U��s?eYeֿ�@����ɬU��z�}H�us[���Ʋr�C^S�F��~����Fz�u�*��r�,�����W�>�^�N{I�{�u�;�|���S�t�.���Մ�tT~�bòmٹN�R���b��r��Ч�T������KJ״l4e�\��t�[�*�Nmtu�g�z�����a�ƍ/�B�^3�Ʒ�\'��*_�S�$?����eҫo��8T���<�Y/��S_��ҋ씔�'{�L/�:���Y�^~s_��ξ=W�v�>�6�=^�w�����G6���c����Iv�g�me�\�>U/9O��^>s�d�?��:��Xs9���>�ۯe�s���\�r�P��]9����}%]��T'����9'{�K֡�%۪�>�6��_s�/��O�h��5ff�b��*+��9�?�C�)ҋ�M�w�^������S���<�J�̴�S��~mY��l���\g�ڹ�����Az����8�S���=�����=r+�))����Y�MU�uʕr����:��:�[mG�F0����mY�sYI.��z��./W�n_/x��{�Y�\C+��y���ܲ/f�
]ހ�����e�۸�j�ŠS;��{��/۩ξ�0H/���c����4%�VY}*�N��w_.�N�*�l�r[��V�o��<ϼ�Ǡ�斷�lf�U�ncv.{,��T���z��e�ݯ�*��$�U��l܏�r���}��� �e;������"[�x<��~<��o�����>������ۜ����+N�^��/�;����m�{����y;ɾ�ɖ��A�Ć��}�xh�I:_�$��z�I�m�=��|�=�u��>ݏ����1y/���m���>�l\r�%�nݺ��՘=��>�<��!���{�O�=�p ��P�����۔�dZ�#o/%������:��e���Bߨ0V��Y\�-/�e��,W�����{�]w]�A�$+Y6��W��;�]��zK���b%v�g�X��o|c��E;�x�dq��ʟ~"���x�׷���]��d�}b�E��_���i�n[l8��R�N@'ɏ?�X����彷��y Um��^��x���׾��λ
]0����g���Q�ǡ\�:]\�d�(��·��}[���>�ۏںo��F����y{����v�˿m�}ً�ݾjL�.+wv���u��\�U�m�1�,_e*�\f�k{�<�+��u�Z�Uo�f+��r{��+�mr_Eez��m{i��=uOܱbz��U{��,�3�V}+����_=2-^u����_\/��oy���פ�S~���d���ʕ�6�/�a{���	����,�^<�~ݟ�s�^�<W���k��/��ҥKcڴi1u�~l���W�\o~�z����Mյ�d&�6��t��yٲ�<�'�Vy��z�V7��#`�])jݖe���J��kw��:���s{ɲSR�����l|Q�BkS<p�mq�e��÷�{͝{��#�GW�O>{|p��b�,6�nB���I����]��-߻<V�~c,�}�xٞ�f�=�"�de��5�ۿw|��Wm��d��ʗ}�|�����뮌��-�-�9���Ka��������*�vر�h�W��&���J�˿�:���>�f�yُ/.{�.+W��e��l���s�n���p4��&�Nv^��w�Ͼ�GvJ�)��Ncw��r�S�����ek�֙����cQ�ꤳo�Zoʽ.�U��e�,��mg��s;�%{�n'�d��E���z�%�`�k琘���Hw373�f��:��ĭ���k/�����=�i������8�<����������O�Yi�yn���ڗ�V�_��w�_��Ocvj#���dvf^��]��6�up�s�k�h/8y_���^2���~���M�C���"իN:�-�Zo����>ӏ��
7�3f�P���y�X�d�PYcMӑI����4)/[���!�~j��J�䋺�j�a}nS�5�w������jj^\ ��-�71��ܟe�����LJ�_*�|����i�>��c�/�{<wۭ�	v�1�
�+�o����w����;qS��9gN��}��7L_�L�R��~��G�g߿<&�uc�ũG���-��;%i�W^O����_?K#���ܘ=g��F@��'�Ǫ���o\�����;����ͯ82v�
?y��q�/�Ɨ/�f�p�q��b^�$��e�*��u�9H�7�IްaCa���N��$��E��[I��uH�$_y�m�wٹ�J֡d���D֘U�\���y*/���S^��]����,;��r��j�6ʕ�IV{�����z�׹��<�ϲ|ȟr%��۸ٻ�}�Vm%+����~BeN������S��q�[ţ�||�?��8g����+���������);���Hׄ̓��m�{?zOˏ}�;����1&��)�Ҟޘ���+>\��	��i��'�_�Nh�&b&������_����_l����s���ߓ���ι�?y���x���I�7����'}����"Y�r�a��M�o�� F:�-;2��\mt�R���ɲsY�S����׈���v�Vk ��</˶k�zn�E��e�L�EKl���ux�}�c�-���_�`Ϙtw�8ޝw#��79�x�^�Nj^�q��q��~�E���o����o�.&-�1��c�~��vϮ�
O�G�&����E��c��@|����_�*:��b<�e�>�4�[~����_��^�-�'��P��=��}S�-����M�����ۮ�7���N��Y���_�${�kÛ�9I��f%[�U�u�}Ҫ^��K�}�&���A�l�NI��Q(ҋ�����Ov��ܷr�)�p������v��^To��!�z�4�%;�AzN��1x���j�j+�*�V����R����ܯ�d���ȗ�t9_٪O��l%+���
bg���"���p�es��d�:������m���ԟm����^����Uv�R�����'~���M����?��w�����+�'F�k��+��_1��A�)��Lu/��<iR��/�_mJ���$��ؼy�ć�_k0v���{YLu>鰬}�}/���� ��s~~H�9m�ng{�e��|�Y/;'�Au�W��|)I��g�{a����o�����z��b��y�+�GJz�OI���[����t"(�������l�r�l�"_��W�+����%�i����r��u���e��U�E)�Ue�&날օ@������ҫfΈ��_�v;��fL/ƿy��ؔ���ۦ�q�����o���8��ȟ.n���~��1v�5=6�wWL�>��:�oú���E�l~�>b�ys-�):L/��i3�߯�#^��y1k�q��w���cj
2�ݰ>�]�\��af�[4/�����8T�
-?J�C�U�F7�B�^<�J/��%�������:���@{\���ٶ�sY����c�>��7�|�����[��_�����U�>����e�����AEQY��c���޹�՗�a;�e�s�K�$?J���ט�����ֿv�^��ImO��س�����5c��tS�&���=�9q��}8�^�\�ט�fo�_�����_�����N���1�<��k�s}-ZUTžo8)N=�?v(�����/�K\�k�/=&���cfj�F����Y����y_����oxw���~C���E�㓬1��#��ǫ\�u�|���N��Ef��<}]S���0���H�ѹ,����P�*��K�d�.{-��s�k4����u(X����ߏk��6֮]�EP-_)�RJ�+谜�-ʾ�S�e��I�k�8��Xo�J�[.%]U��Z��"`j�#O��Vu�!��u�s}YVYi+�.���b��7�����i��51��'#֮�H�Q�,�SW���)pz��i��8�..f��˿�ذ���}��1m�v�kb�M�FbC��b�m\�^X]���..jj�7e����W�~4v? }giƤX�ݺ��,b��Z��aӆB�]�k��v��?}�h���¨��B�~|��gk]g���^c�N�Nn�r�w�m�+y-ԯ�j��8H6�Q�Jn�r�p�����);�ё�Wz٩�d�#��#��r��Q���azQ�ܧکO垣}��\gY��^}ʧ��y�L�������2G3c�kv;��^C����/�?)v?�������vf�\{V{wh�*`z���┿�D�p����=��3/>~�+b��k��#����'��?�����׿:޸��X{�
q�>��x��k��u6��oH������ǿ��̬8������8�k���-�#�����`���ZO��˅0��uw.u��.���?�_��ާk�tJ��\�5D:�?�-٩���5���~��!s������O~s�WQ�ַ�4�cz��C됒�4i�tQ�!ٺ�b���d:��K6��Ro�Fv��5㐏(`J˃��U�t�^S�ue�^��ʁ��J_�N6CO��\'�NH�9��>���15m��53}�(K��!Mwrr��N�.vJ������S[��ɭa��Ӧ��9�G�N��OO��+}tNi���$jZ:�۩s�=_�r�|���Sc��g����)��>yj:�u�6���LI�Җ�i��X5���7%-��)J[/��_T/�����fY>To�<P_N�7�<�^��_�A~�����K�:�ɏ�J��ڇ���m�S�1j,Jj�1�,Y�=G��E���N���N��^}�ߘx��y������K����j�˪S[��?����۟�N_<=��6�#��z۫N��oQ1�Kz�1��C�t��_�A~�g�k�B<��U����C�&b�W?p]|2=ə��?�s޵W<����1�Ʈqn~!��hҡ���>�V?xO��O~�~�=���^���x�k�駞�]�?,v���X��4��Ǣt����gw�~G��2}d�5œ�I�����⿟��ѿ���b��"}�i]ڻ�sV���X��{Pe���{���?Ј��\.@�����6^��,�f�\Iv�9���yq�����k��)�����/9�?���!ݫ�;K�������?=��80�Й�ç�~��{ZoO�n�翖=z��M��$r�F�I��osYuj+?:,;�u���W��:%�*Wr���k̈��4�����]��އ��r��6y.�.{�T�^��Py͚5�E�o�:�u�Kó��'�y��q���0s�F�=����PO����t<�6͌=�%�Ѕ]�7-3�Ώ�7��=gn��:��*lbê�n���ӆx&�Ƭ��9t�-?�7%�!�.;��昑��Έ�̎Y�S`�ҪM�����&ݰ����lS�F�EK�|����~CR�J���,��1�No^j#�r'�T��g��R��Gme+���V�ڨ^��%=����ʪס$j��S��w�j_����~-˷ک�d�Ӽ4٪�7O��N�,۟r���ltx<�y=\��+��d�3�S��O��mU����I��Se�P�J�?믽�=�}�C�V{F:��|e|�?��~z����y�����i��t�{�x4]ҷ�nr�yЮ1��cj����=���ߎ��92}ΌX����V��[�8���?}���o}>vY��8�����f��51i��‾'�ѧҵg�31S�ؼ�h�9��y��s�����������k8���-�\�y���E��m�޼y�=ޘ�u�w��H���8n�����tMOO�|��_�9O��R�s��M�nbj'�p��qT�A�m��h'�Yv.�\vYy��^vc��*`���IW����KoY�`*�e���r늛?��+�͸6ŒW�2�����y;�7�"�H?��y����H�@e픩��3�Ŭ��|C���Ce%�*��e�x�bm�+��}�ݴ0MK���E�_VU���v��͇nT56�I�6�6肹��=O��7�Ŭ��N
����.��
�+�X�iM�{bM�����4G�ט|C��[6���Mrn+Y7yrY�S�%3И%�?岑�e��/�j,����/{��{lj#�����N:�Pn��إW�.�F>=�S���6o�q�O��r>f�U�m�O������z^ʕ�ò�j���Oֿ�J,Ć���B{JI�����d��T�H/.����}���?��x�v�?U�*���}(W��,_��.�'�?��|Rq.��_��ɘ����������7�U|����q�Y��k�vպXt��K�\�,�B��_�=���l�~<"Dk7�S�{U
��֦1�N�ơ�������_��
��z�ҋ�5Iuf�k�X*k��T���s_���[_U�=�uSه�c;�M>ԯ����zxߋ��X���^;ֿ7����җ�4�������c�̙����sϡ��,�%?Ǽ_����֡��6�6��y��C:ɲ���rY�J�W+�^��J��]k�׻�\7b����k�Sۖ����h�d��ɲ��+.����^�]yM<���qS����K
�^ۥjHW�tAIo��^��[��5?v=xqq��]�}QV�7�v��x������ғ���M���~�i͆M��{���#}�頡��|�R>�{���Ǔ�^��Պ��sR��n�4�mJغ(�vܴs��W
��.��)_>�w?�!���D����v��*Y����*{��XLd��vj�~�^�e�HWU����['��S?�݇߼՗�w���V�Ǧ������o�U�d�>m'����e���6���|J���.��\���t�nkβ3W��춞������W��d'��d��:۱����¤���pm�L�;������bڼ�w�ܘ:yC����6�&>���{�>�7���[wM\������=���YK�EtPzR�tLM�������o�1�^��x$�_���t^͍����ٯc�E/�Y��4����1}tY{?ғ�)}隦�q����ɩ�v��z��>/|�(�9�.;��żSY�:tΩ�d嶓���v.ۧۨ^v�C:����>�s�����(�7��}��}��LוV�u���uH��ҹ��*��^目Q.�����R�
�	hS�N��`�\N&C��e߿��d�Qn9�Cɺr>d�@p�&�U�L���jpJy.9/׫��s�iQ�V��ҹ��&k���7T�/ޠ�͚�qd<��b���Gr?oRZ��	�X�X<|�]�6}�i�׾.��H�FQ�L>un��M�o���eћ��{��O���%����'{4y�X�n��u�a1e��C�}�Q7�3����>n{��q�
�ǂ�.�]v٥�h�w�CDߦ��}_���z����W'�����z�Q�N�wg�иt��e�����d�QR��s���ȧ�\}��?�!���ι�U��6�Wr����Vv�ں�tn#��|\V}��W�l�{��ᄂS�}����u�i�]��6�z'�կ�U��i1b�k�ɘ���WCW�}�wǫ/���0}�����L�/�7kVņ�麛��i_���%bZ�=c�3>s]�Ş����c<���x���k���I�.�>2[�p\�����o���7���y��o�;}l���ݨ�����Nטu�lސ>ΜF�~^\�m~����9�q)9�����{F���������{̹t���Ve��s�t\�k�u͙��y�S��1������������k�e��\k�kdJz�}x�b*m-0R^��I�M��,��^v���OU.;���Z�8��O-�M�<���s��X���a{�S��n�/J�&/�Ǣ����|
]�t#������J]��_��$��_���so�z�15�Y�����_�(6�v�V�*.hF�7Zm:oTmS&m��W��=~W�y���ߌ��;�<v�5}�.}�I��������7��J��6����#~��}��3飂i��8�%���ƞ�~+�0��b|j�z�u2��7��U�����Fc�޶�){�Y���oF%ˇ��U���w}.�.o�z�x,n+{�E��m�S�Jj��j���v��G{�~��}�F��Q^ٺN�5�(y�Ea�E6��m�F��r�UR�d��j��W�Jj�CIu�UY6�������
�I�c�}v�/��s����ڸw�oҵ�/=iYl��=��Bگދ�<{��bN�Ȳ®
�G6��>Ϝ�&x���~r�}鞩��t՛3'������_b��Oē��ƂyS�sC�0iF��[���W�f��3v��6���X�k�ԝb���c�c��o�^�?x�~������#�Yh�x�(׹,^�^�ɺn���*���\o�<o��m<��/�E��m�S�Jj�����}���G?�Q̞={��=��q�G�;��^��Q���#���dz�P�C7:$��*k�䶹��d��Oۗs�I�T�Q���9�vHNs�k�_�+`rp��kw!���0���*w}�דO�v��g3/�&��j�(���&V7�:�f�'M�8��t�({��G�"Y:��-;%�|r+�>}z�S������o��t�v����c��G�O�S��h���)�z.�8��ڗ/���ԏ�U/��5.���d�q��e��ҩ��:\'{�?���m��^u�S}���5g%�:4.%���H'_������ˇ�]�1x��W�Sm�ι�%{n��_���|k.���<n���F�6J�_�4%��a_�KI}H�6������?��K��}�y_yo{*���%�3�1�>/7n�ӧ�cٔnbtΧ�Rk׭�����ҏ�Ɔ��Z��iS�y�9݄����ɓ��?�]����ݷ�r?��>��z��_�\�k�\���:_��L_?tM��kۋ����*�t��uA��}��Q�9��q��97��u�Q'�Km0�Xo�}���u�.���璫�Qr.%�Z��-䴦n#}��r��6�9l&灐�s]Yv@d�����eoٹty �h�ҥ��o���8h�+��\eMχn�}��H%9dT�6J�g��)9?��F6�����c��W[�A�}:�xT/Ym�k���Z�i���47�Nҩ��l=�:4.�/����u����(x�������w��:٩,?�C��*i��]�d�����T�^�%˿�mu�=O�S[��5�Ѭ��-_��80��*Yv�u(9�؇t�=�������Y�_{���rqΈ��:GT'�_f���vm�uQLt�ѵ���������>��>ҡ�.�y�����%���p��b-�.�u�ڧ'MJ���K�,yw2�&�j"�Aˏ*��wn���Y��'ӡ`I6J���i��MѨ�e��,U�#��p^���r�|���z��$��J�[�@'�t:�u#,�7���'�d�i#���U7��y��^�7�lt��sɺ�V[%��|J/�n�%K/�J��c�N6Jz㒝�:ԏ�$j+��$*�^�(W��I��d���M�8�^��!�N�K~��G�r˲���Μ<�<���O>��~�4������8ԧ�I'_U��ȇs�q[�Q{��1���z�[e��|%�����>='�����?�Ƨ}�=���=�s���d��_�t�ў��?�s?���{q�����|��뮻�{���ェ�_���{�G7P:tCT�QM�`���^�ҫ��S��*�Yl���R���XL�`4P�|����}��a�ʹ�rngYyq�����
�CAz�8+�ͷn8uӠ\'�۫�l�Fo"*kc�FDz�,��Dz߀�^z�|S+��:ɪw�O���Y���Imt8���χ��V�U��I����*k��ى����I�<�+�����^e�5�q?�?���6���m5�O�J�G�Tv;���۱�Á�ؘ���X������\�um����'x���k��<���\v�#�\V=��}�ʒ�o���ܮ�����mU�vˏ�i�J�	�eAR�wٖ���?bW�s�!��}��W]�ur��7��)�&_I7����7������|í��|ȟ�˯�z���y�4ԏ�V�Wu�e��J��8Hpp�z���M��9y<j+Y7@����)����O�Q�tf�:�R._�ݏ9h<j�'��m޿�5g�i>��I��(����Eu��c��֩�ǡ�J�$[�K�L/�Q���/oユ{���eֿ���lY�-������r��-����Y{���A��'��S;�C�^I��9��L#�,VJ�(��_�q���;�k�H��b}����~r�$ܡ�B:$�.�KV��e�6�����C>d���>��<�BN�1�k��|�ij^�@����\�\��n���κ��A���򤴐�od@� @`l��[�$+���ظ�\�e�y�<����d��y��y���<��n��I�veX��՗� ^��\֩�@� �=߇����ŝ�H'ه��p}~��T=ToY�h��M�"�U�:����$/[.�]�N��A�ۺ,۲�2	� @{��.����z�Z�O��s�T�U:�s�e��eۍ*M0����y>!딗e�r/��<��G�F� @�@C�w.c˾W��P;�X��\��hӈ�:�m�����uy^��e�'��z�!��P[ 0BK/a+�!@���}w�{s߿���ea�\��6��d�\7�&5Ƀw�>�d��v���eۻ�ő��N�m>��K��N���9�.<���U_�sNZ<Ҧ�����P}�UW���NC�{�j�9�~%�;��L�Iqa���_��>5���mun���wurr�}�XϏ�Ɏ�>�˲�K�︜���u�@���{�^<�Skߟ;/�\V�$;�r��r�vҍY�$�*�`���r����s��z������&�s�zY,��똎m�	g��:=&�������k��b]�|�Ѹ�gb��{���Ɣ[sg�b�}��]g47�=b��R�{��v�p�)�����+�c:�z�|<Ώ-{ؖJc����8dAēN�s�w|��o��=!A�@�//�{�\�]z%�[�ʥ+'��>�s�z�ܦ%��_ɫD��l[�I�e��7[�+����OY��3�1���!����1q6:'��=3�i�!q�%���AU����'�������U6����/�=V]�nj`4���֭zb4-ǤM��'�����J'Kθ8�>fQ���be,��l��uƱ���~���r~���G����.��pd̎'�K��fؼC�w\��Y�x�ϺB� �j�=w�'�}�\v��K�β<�e��^��N�V�A�¿�Y�R�R���y�&0��ľ�OU�6�܋d}^���:~Z\���b�9���=�߱6^�DZ'�W�/>��?���g�?��q�`v�K�����q^q�0N�ԙ���-���`]�/�,����b�<,>)���w���,�=q�u��?C�,y��V�ʾi���t���8�⿊���_�������p����S|`j�1�9\{mz틾�w�G�zr,�2�o4�e����cݦ�1g�s�����?���;.��O�K�~�q@�z
�tx��M�zV�s�U�o�x���hN�ᦕqݗ�>><hs�Ig�{�Iu��.F�����89.��B;+ͪA:朸��#�����mqQ�0��S��?����Ϳ��ϻ&�9��q����\'�wE������ߋ`e�׾?��vQ��z���^S��b�4���K�>��+�]̊e�����eiKN��|�1�ط)�Yy|�?>��d�%/��W��K��5���S��|�ig���4l�Pj��y~Ԇ�h���}�}1뮯��N�`a|���ő����S��l��t~,�����=ѷ��M�gu�?��?�16�ߍ�_k]{]p���t��qI�V��h�6�_��jv��C��g6֭��7���@���	LJ-u8��eݟ�˾gw��%�}���TUУ����^�	4L��4�F)�����TΏzzۨ�r9�3�%q�'NL�Ҧ�����o|&��~̙>�}Ŭ��c��C��O����K�^7��g����?'�(6=�Ӹ����;��G��Ŀ~��,Eܺ�ʸ���c޾��Ǿ��A���oy*3��q�WΉ#͉�߿<.�����E�޿�0�9��3��#n����e��d�2n��q}*_�-�pѼ��F���9-2��w����b�w�p{l��o�������nL���[��3g���_���n�G�O��_y]����8�����8����E�����_�/�5b�q�_��|�����f�̘�=fk<��#&O���:yZx�Qq�;�\x��n1y�CE��1��d�E�ꖫ��+�fϏc>����i�/E3M�G�S�����/�V�n��۟�K
H?x|̟�"������K�������4�Z���̃�s_�0N;���s�`�qK�6[�������C7�ϯ��ʛ�y矔v��g�Qf�/���"XR�F����1+��0;��P��mp���r�4f�l�Y�%o��N�����2�!��m<��
�W��?��s��V��o�Wt�
��	�^�|��ZX.�VO�y^��#����J����V6T��yQzەm�?��\/���W��O;.����y���S�eE��^� �ܝW�Q��>�w�>hN��iu�Y�u�Kt-������~8N��a=x�Uq�o�3R����]�c�u�{>zI�=K��ԗŹ'�����Ґ�����M����V����Pw˯� >|e��;��8tQĥ=k�F�l��2��x�\���O�/�6>�4N=��q��8��gy\p�Gk.��� �)�+��x�/*jy�U��M�ZX�<Nk�_x�1�ES�ޕ��E@R[��í�7]�q��?�ݞ�>έ-à������[���;/<4vWC)��+}Uj��_>��xh��q�Y�g��g^g�ph}
��Rů���h��;`��)qz�Wǧ�x��g���=��m���b����w�;+.ޞZ����-��sqw�Aq������C�ZJ
ַ��7<?[8?�����}�LF@@IDAT���+.��N�6LOj����t.{�5ޟz�[
���S9���v��AL�tw\qɖ�x�6��(����������ϛ�o:����� ����~Bd�Ԗ�+�l�Pf/��/��d_�W��^v��mW7׻�x�|U}�e�e�!?.[vn}U.�-Ҭ�����U��~�������\Q�wܾ���}�}c뺤��_w�0|���ɵ�fvaߴ�y����vة10pj���ay��x���"���<��p��='5kKuzZӂ��M���nӺX��ea�=�)ʃ/;N|ʓ+�-eZ�g�sHy�#i��&{͠f���LJ�?$=JG\�:�IȦ?԰��<.9��j���VD,�5�rB�v�w�C�w�7����9y���0�Q�o�dz!
>�-��Vͯ��Q����	����x���<���8�cƅ�#�G����X���K��^6�狦
^.��{�����ğ�|�Ήˎ��SU��mm�
�ϖ�o�A��~y|���c��ҹ�2�m��t6�_���|���R���fIy��Xy×?�;�GW�F�7���W���9<��*���Cc��[�@�7���N��r%�Tɹ��ۻ�z��)�-׵U�{�X$Ch�+�d[�-��e�U��T�S��|�T����MU�x]��UM�U�1l��~��pP4\#iZ�䷲�)��[��4�M������E��0��q�t�Yq�%r� UG�)*i��k����!��	��ۢ����S�4���kO�N��q�[��x�o(�*ק��3��W�$κ =r�S��_�;���^w��x�g_�[�:!�����=���b����Y���o���+�¬Y}�םW_��q�{�6N����Ƣ�K��c�Y�8Nzۻ��qD�+R��<dZ��\} f����e7�Eg������2�'|1��P��C�����Q�S絥��>��K֥cN���%�OCӣ������f���>� ����?��X��������o+�kk�&��)��o�E��1_}��@�@F@�ں�v`�r~�4/�弝"۸N>��:��岵�z6M�c0�#
���t���w]��e�eٺF��n��}�x�}��]�ĿǺW�I�k��woaV�p�y���G�޸�����o�s�}�n񕓏K�~�8~Q�8O�5����{w~s��Q��n->N�lՖ�G�y��n�嫏���~_�����O�IgG�_�y����U�Y�ۭ�ݧ3O�U�uop聱�⚱�_�o�ʃ�6m\��]�w�1�{��k��4�o8.�|'b�C���/�d(�]|ʇ�G�_�o�2�Q��ü�W��cG���?���X�&}����=q��Zk}$i�[N���b�;��C�_ͣ�X�l,k�4��tC���=�� ���+ғ�������G	�G����O�e_�/|���伯�>�_W��`+~��^_�}�!���C�M�^�������~��`�䪢�t��}~���O:��8dަXz���-o�"�8�q�)7���+M����VL}H5��%~9��x_���0d$!��w�W��LaXycT=T�b���|�����9x����mw|�G� �V	4�w�|IV���j���9j[UW��ҹ��c0��X�Ur^+
�˹���6e�e�5���p�ް?w���t3}�ٺ�^W|�+���"ب=n8,}���xrĉq�5�s�_o���_��>�ǟ1�<ww|�O��pn��X�ĺп���k������I���i�����L��6��/;��q��},:����2[Wޖ���7��Ð���ٰ�Q{>���R�v���l�ڀ6���[ߔ��sL|��$˕q��ǭ_V��,����c�a��9>{H�{.��!L��nz����x6�z8U�i������<�.�_��q�O�w���X�����9�i���7�����5����?y�P}c~M�G�=���'����[�E*%�_�zh�����O�?�ce���騥����s�W���%q�~'��g�w��1}����8��λ��R�׷���h���|<���y�w���]�W�+����8���V�g�5�e����g�x��n2~�OA��L������o���o��-�Z�l���5Æ�o�k+�#_�
�FN��=���Xv*;��vҗ�˃%��>��nL�~J����/GT
�t��Iɱd�Jʭ�^�c�.�V:��%�[e������:����1+N�����k㏧�W����[k'�fŪ���M�����m�eU�(뿢i���ŇǾ��U�j�[hk��4�4�4ϛ��y�[�8F�4�%i�w_�l�qo�C;�o�gF�n�~�
�}_��8��p$�������}|P{��k�������������fu
�ׁ��`�eS�O?���3_}_�xլX�oD�Ӡ�z�_rf���gŅ�o���ķL��۠ߚ���W4�~6=��~�����3�=�?�3<�1߰3$@�&�?��W��߯6���n㠭uynYA��&�\e�)�����.�^ɶy�VS��5	��+`R��CA��r�;w��<UUB�w����z��me��t|2M���0�����?�%�0�����1��/���W��ދa���C
�΍i�;���Lv̆�8.��g�G��7�8�?������Ή���⾻��_}h���sqiz�?�����1�!@����I��t(X��`�yY��&ٔ��>U��8`��z璕��އ�+9�Bn���|LdR��'�}T魳����*���+�/��P	�^#p��a��<=��ظ<�ѐ1����/�͋4�]�L����;����K��`iL�� ��@սw���r9���vyp#}^�ی�<�'L�S>1��r�$Iz��\���s�IvYA^^���'��0}"$@� @`l	�Mr�'LUO����u.�O�\��D��+@�.?��s�U�.�WYIe%籭=aR@�(9��mr]��뜻��έ��d@���@w�QB�w�~۹g�s�K�T�N���������ԎSIOb�I�l��ٴRg�$@� @`��ޖ�zm�}5jo��\�F��
�F�qj�ʄm�I:w�y}.�^y�M^�@� ��@�^;�'����W��J�]Yߑ�DL�`��\�箳�˹��ܦ����!@� ��h��;�S/���]�6#����ɓjgh��V�خ��3�B� @�#P�/w��������Q�:]���W
�<�ܾ���|$��*(l�'�� @�5��.߳7c�{���+�u�*}Y7��x�5�*�eݨA�� @3yL`ٹ:�}�h;�j���߭ڍG��N�&��zz�i��3�r>R��C� @�	��]vK��2��WO�v��0ip���r}���I�� @�
U�@�.�L9���ږ�;`je�U�&]e׊l @� �m�@���rPϮ�3�&O�H�*H�s��U��?9 @� 0�|?�ܽ���y�/�TW�s����R�4��dL띏�7m @� ��|��l]O_��f��0m�` @� ���
� @� 0N��	,n!@� ��'@��k� @� �q"@�4N`q@� t?�����̠��b:��1!0000&~F��3���ݮ���h��7��-7���I����D�ь�6�@o�	So�?�� @� `j�*@� @��	0���3{@� @��p�� @�z�So�?�� @� `j�*@� @��	0���3{@� @��p�� @�z�So�?�� @� `j�*@� @��	0���3{@� @��p�� @�z�So�?�� @� `j�*@� @��	0���3{@� @��p�� @�z�@_oO�f?000q��z����Y��D���o~�Ͽ���~�ׯ�������Ot�쿉^��:M�'L�&N� @�@� `ꚥb�� @�@�	0u�8�A� @]C���k���B� @�&@��i��@� t
��Y*
@� t�S��� @� �5��f�( @� �iL�&N� @�@� `ꚥb�� @�@�	0u�8�A� @]C���k���B� @�&@��i��@� t
��Y*
@� t�S��� @� �5��f�( @� �i}��Ɔ@��8� /���n_��������8&n���μ��n��� �mx��m+�x!@� �� `�j:� @���S��� @�:F���c��� @�6Lݶb�� @�����#@� @��0uۊ1^@� @�c�:��� @� �n#@��m+�x!@� �� `�j:� @���S��� @�:F���c��� @�6Lݶb�� @�����#@� @��0uۊ1^@� @�c�:��� @� �n#��mf�x1���okm����<��&����� �Cx��C��T!@� �� `/�!@� �"@��C��T!@� �� `/�!@� �"@��C��T!@� �� `/�!@� �"@��C��T!@� �� `/�!@� �"@��C��T!@� �� `/�!@� �"@��C��T!@� �� `/�!@� �"@��C��T!@� �� `/�!@� �"@��C��T!@� �� `/�!@� �"��Cse���6B�������վ������� �.#��.[0�@� t�S�X� @� �e��l�. @� �9L�cMO� @�@� `�c�� @�@�0u�5=A� @]F������B� @�#@��9��@� t�.[0�@� t�S�X� @� �e��l�. @� �9L�cMO� @�@� `�c�� @�@�0u�5=A� @]F������B� @�#@��9��@� t��./�$000�&������'z��?�o[x�O����= ��#���[r&@� �J���UR�A� @=G���疜	C� @� `j�v� @�@� `�%g�� @�@��Z%� @� �s�znə0 @� �*�VIa@� ���[r&@� �J���UR�A� @=G���疜	C� @� `j�v� @�@� `�%g�� @�@��Z%� @� �s�znə0 @� �*�VIa@� ������62��md$c"���D�v������v��u�����v��= t�0u�z1Z@� @���:�� @� ��"@��]��h!@� � `� l�� @���Sw��� @�:H������
� @�.Lݵ^�� @� �¦+@� @��0u�z1Z@� @���:�� @� ��"@��]��h!@� � `� l�� @���Sw��� @�:H������
� @�.Lݵ^�� @� �¦+@� @���u�p���l;�a$'��������-���ۚ�6и]��Na��ow��� ��"���Z/F@� t�Sa� @� �]��k�- @� �AL�MW� @�@w `�b�� @�@	0u6]A� @�E����֋�B� @$@��A�t@� t��Z/F@� t�Sa� @� �]��k�- @� �AL�MW� @�@w `�b�� @�@	0u6]A� @�E����֋�B� @$@��A�t@� t���.�5���~���F�n��;��~FG`����F=�j�������~�?��zSj�oRc��@7�	S7�c� @�ƕӸ��9 @� ����y�; @� 0���/�!@� �n&@��ͫ��!@� �q%@�4�xq@� t3�n^=�@� �+�qŋs@� @��	0u��1v@� @`\	0�+^�C� @�L����W��C� @�J��i\��� @�fLݼz�� @WL��� @�@7 `���c�� @��� `W�8� @���@_7~"����?�������?ѝ�;��^���7�w;�v��D��'z�&z��;�v��n����? �y<a�<sz� @���S�,Ä @�:O������� @�L]�P� @�<��3�G@� @�K0u�B1L@� @���:Ϝ!@� �.!@��%�0!@� �� `�<sz� @���S�,Ä @�:O������� @�L]�P� @�<��3�G@� @�K0u�B1L@� @���:Ϝ!@� �.!@��%�0!@� ����|��(m����o�}�����`��ο����ί�Ot�vϟ���N4?�� �mx��m+�x!@� �� `�j:� @���S��� @�:F���c��� @�6Lݶb�� @�����#@� @��0uۊ1^@� @�c�:��� @� �n#@��m+�x!@� �� `�j:� @���S��� @�:F���c��� @�6Lݶb�� @�����#@� @��0uۊ1^@� @�c�:��� @� �n#��mf�5m����o��D7���~�o����m�_��w;�v�?���]�n_�v�?��G��FJ�'L#%�= @� �3�zf��( @� 0RL#%�= @� �3�zf��( @� 0RL#%�= @� �3�zf��( @� 0RL#%�= @� �3�zf��( @� 0RL#%�= @� �3�zf��( @� 0RL#%�= @� �3�zf��( @� 0RL#%�= @� �3�zf��( @� 0RL#%�= @� �3�zf��( @� 0R}#m������o���@[��m<�w;�v���Mt���?�ο���;�v��;�n��&�}���]���?�C�G�'L����� @h�S��0� @�z�S�93� @�Z$@��"(� @� ��#@��{kΌ!@� �	0�
3@� @��0�ޚ3c@� @�EL-��� @�=L����� @h�S��0� @�z�S�93� �����츲lkݛ�^�g�A����6��,4i@��D�q��ӵ�Zs��t���te��3~sdq�Z�@�,�0-�2� @���	H����=1 @�$L�L#@� @�x��sOL� @��B	�B(� @�8����=��x��ҋ�=�t:��K�}��������������=������	��}^f @� p 	Ӂ^�G%@� @�>	�}^f @� p 	Ӂ^�G%@� @�>	�}^f @� p 	Ӂ^�G%@� @�>	�}^f @� p 	Ӂ^�G%@� @�>	�}^f @� p 	Ӂ^�G%@� @�>	�}^f @� p 	Ӂ^�G%@� @�>	�}^f @� p 	Ӂ^�G%@� @�>	�}^f @� p 	Ӂ^�G%@� @�>��M7;��9�]֧��^��k�_����k�_���~k�j���_{�Z���_{���_�~�'@��m��i[o� @� �#	ӎ^�� @� ����i[o� @� �#	ӎ^�� @� ����i[o� @� �#	ӎ^�� @� ����i[o� @� �#	ӎ^�� @� ����i[o� @� �#	ӎ^�� @� ����i[o� @� �#	ӎ^�� @� ����i[o� @� �#	ӎ^�� @� ����i[o� @� �#	ӎ^�� @� ����m��>��N�Us>�W������*���_{��ߟ���}�Z�W����{���k�������'@�����ioo�}	 @��L@´�� @�؛��ioo�}	 @��L@´�� @�؛��ioo�}	 @��L@´�� @�؛��ioo�}	 @��L@´�� @�؛��ioo�}	 @��L@´�� @�؛��ioo�}	 @��L@´�� @�؛��ioo�}	 @��L@´�� @�؛��ioo�}	 @��L@´�� @�؛���]���|>����tZ�~���k������
��_��������~G���� p<a:�;�� @�,�0-�2� @���	H����=1 @�$L�L#@� @�x��sOL� @��B	�B(� @�8����x�� @� �P@´�4 @��' a:�;�� @�,�0-�2� @���	H����=1 @�$L�L#@� @�x��sOL� @��B	�B(� @�8����x�� @� �P@´�4 @��'��x��5��|>����tZ��Ջ���~������k���=���7p���9���'@���tķ�	 @�X$ aZ�d @�G�0�{f @�	H�1�D� @��$LG|랙 @��E�EL& @� pD	�ߺg&@� @`���i�I @�Q@�tķ�	 @�X$ aZ�d @�G�0�{f @�	H�1�D� @��$LG|랙 @��E�EL& @� pD	�ߺg&@� @`���i�I @�Q����|:����a�8�ϫ�}����W]�,^��k�������_��k��{�����������O�_����ܘ @���$LA;� @���	H����ܘ @���$LA;� @���	H����ܘ @���$LA;� @���	H����ܘ @���$LA;� @���	H����ܘ @���$LA;� @���	H����ܘ @���$LA;� @���	H����ܘ @���$LA;� @���	H����ܘ @���$LA;� @���	��ߕ�ƍ���׸ȃ�8�N�|[�������.���=���_����k��տ?�>��~���{���~��'@�x��t�w�	 @�X( aZe @���0�{b @�
H�B�F� @���$L�{瞘 @�����P� @� p<	��޹'&@� @`���i!�i @�O@�t�w�	 @�X( aZe @���0�{b @�
H�B�F� @���$L�{瞘 @�����P� @� p<	��޹'&@� @`���i!�i @�O����9O|:���у����W�-[���Ͽ����o-�����_��������}�����߿��?�O����´��	 @�؉��i'/�5	 @��^@´��	 @�؉��i'/�5	 @��^@´��	 @�؉��i'/�5	 @��^@´��	 @�؉��i'/�5	 @��^@´��	 @�؉��i'/�5	 @��^@´��	 @�؉��i'/�5	 @��^@´��	 @�؉��i'/�5	 @��^@´��	 @�؉��i'/�5	 @��^��G~����x�����:��{[�w���_�
�	��>��+��[�~�_��k��>���_�o=����ŝG� @��n$L�yU.J� @�����ŝG� @��n$L�yU.J� @�����ŝG� @��n$L�yU.J� @�����ŝG� @��n$L�yU.J� @�����ŝG� @��n$L�yU.J� @�����ŝG� @��n$L�yU.J� @�����ŝG� @��n$L�yU.J� @�����ŝG� @��n$L�yU.J� @���?�>�w:��ˣ�9���K���?{�_��^��k�_��k�����>��[O����}�/�%@� @`C	ӆ؎"@� @`_�}�/�%@� @`C	ӆ؎"@� @`_�}�/�%@� @`C	ӆ؎"@� @`_�}�/�%@� @`C	ӆ؎"@� @`_�}�/�%@� @`C	ӆ؎"@� @`_�}�/�%@� @`C	ӆ؎"@� @`_�}�/�%@� @`C	ӆ؎"@� @`_�}�/�%@� @`C	ӆ؎"@� @`_?�u��s��}�Or:�^p��9��Ϻw�j�W�����uo�?^��������������
�ӽb� @� p	�a^�%@� @�^	ӽb� @� p	�a^�%@� @�^	ӽb� @� p	�a^�%@� @�^	ӽb� @� p	�a^�%@� @�^	ӽb� @� p	�a^�%@� @�^	ӽb� @� p	�a^�%@� @�^	ӽb� @� p	�a^�%@� @�^	ӽb� @� p	�a^�%@� @�^��.0�k�N��q�oq>�\�5���������_���>�տ�{�����_{�����W�����YO������x�� @� �P@´�4 @��' a:�;�� @�,�0-�2� @���	H����=1 @�$L�L#@� @�x��sOL� @��B	�B(� @�8����x�� @� �P@´�4 @��' a:�;�� @�,�0-�2� @���	H����=1 @�$L�L#@� @�x��sOL� @��B	�B(� @�8����=�'&�����!���k�_u����מ����篽������ߟ��� �7a��s_ @�6�0mF�  @��& a��s_ @�6�0mF�  @��& a��s_ @�6�0mF�  @��& a��s_ @�6�0mF�  @��& a��s_ @�6�0mF�  @��& a��s_ @�6�0mF�  @��& a��s_ @�6�0mF�  @��& a��s_ @�6�0mF�  @��&�cov__A�t:}�k<|���?������k�;�r��?��߿W��=������>��O�_����=1 @�$L�L#@� @�x��sOL� @��B	�B(� @�8����x�� @� �P@´�4 @��' a:�;�� @�,�0-�2� @���	H����=1 @�$L�L#@� @�x��sOL� @��B	�B(� @�8����x�� @� �P@´�4 @��' a:�;�� @�,�0-�2� @���	�8�#�'>����Av�G�?�N/}s{�_��_}�Ky���k���Gx��k�o=����ŝG� @��n$L�yU.J� @�����ŝG� @��n$L�yU.J� @�����ŝG� @��n$L�yU.J� @�����ŝG� @��n$L�yU.J� @�����ŝG� @��n$L�yU.J� @�����ŝG� @��n$L�yU.J� @�����ŝG� @��n$L�yU.J� @�����ŝG� @��n$L�yU.J� @���?�>�yo��	Ł־��Jo��z���W?���z���֞�w������X��� @�^a�W�| @�# a:̫�� @��+ a�W�| @�# a:̫�� @��+ a�W�| @�# a:̫�� @��+ a�W�| @�# a:̫�� @��+ a�W�| @�# a:̫�� @��+ a�W�| @�# a:̫�� @��+ a�W�| @�# a:̫�� @��+ a�W�| @�# a:̫�� @��+��_�us͟��&�=�I�*�?��U=����cU��m�ڙ3ֵw����//���|���C�|}����/��%�.���.��]>�������mN�㚬�z�S�Kƪ�O��N}	]�V]�*c��%J�m��
� @�&$L(B @�(	�� @��H�f`�	 @�  a�;@� @��	��0 @�$L~ @� 0# a��&@� @����� @�f$L30� @��0� @� @�����iF� @�&� @���0� @� @@��w� @�3�a @��8*��t:�{n @�
��B(� @�8����x�� @� �P@´�4 @��' a:�;�� @�,�0-�2� @���	H����=1 @�$L�L#@� @�x��sOL� @��B	�B(� @�8����x�� @� �P`�	�_���XO=�� @� �^ ߷S�;���y_������p楮5��z�G� @������9��UR��~}�O?�8/��믐0���045os0 @� �J`�{����[u���?;a��o
`*��h @� �}��X��O+��0�]|.��C���=���nn @���{���|r�w�b.��<���)h��>D�g��uNo���K�ߌA} @�V	�w�=U���S�j�)S�k��m��g_<�}S���=���IDAT���\����'�	 @� p�@}��ߗO}��߽��������{���ᕿ/���{��^�ja��=3o�������O�/�q����G!@� @�>���o/��u���˧�k�2~/O�ϙj�󪿶<c�?��0�y��TBs�2���O���T�_/������_.����?���]�:�bU�X�W{�s	_�T]�)���� @����w���!�����eNb5�>�O<��+�����K�;뫞+㜏��>Y3��&�W&L��TdN�5��^�xo�s�E�K��O����ΩO�K�=���Xל�UI]�:C!@� ���Ȥ�;s��w��κ$DKb4W'y������W�5s�}n�g�8��	S]�'K.�[�n����Y�u�U�J�jל�[��/H%=Y{i�Uj�B� @���մ{]�Oݫ��.����&���Xꊏ�ѱ�sk}�Lյ��6a���콉R�6c�s��{�$(�ޮ=��d)u�V @��j��5%�^W{�d)�ԜĦ��X�>'��{I?��X�{��?�sW�M��I<n]"�R�͝z�X����u�鱱}kmͭ�d)���� @���@���v��=�Y�,ͭM<��z��cY��&u�j/����G��6Y�/]�|���%IK��*�����8���u�ˏ�ʹ��	 @�|%�|/�;����;o�K���uK�q]��d�[��gbU�2��ا�?+a����d��՟�U�J��c�=����=���+cծR����$,sod�� @��Z��j�W{��V�tk��>��W�J�7տNj�����۵��˽	S]bM0�~*���듒~b��xڷ�z�y�q^�����'Vk{;{U]��i* @�6��)i�:�$>57��g*���?����]��>��X����elI}�{�%�ԅ����}^�Q��ү�J�z;���ZS/:IO�'��v��b�sԺ�K�.
 @�����)i�:�y��w��Ss�b㺩~�+���X�K�g������ܧ��L��c1��s�p�f\W�*�kg|���<&J5�dzw���5)�R��W?ϓ�Ǫ� @��,��N��v���T;��n��Xύ���c���v�)���X�T��OŦ�~{V�T���5o���8�~�T]�N�+V/sn��R�De~��$��韚���y5��T��k @�X+P�9{�~�U���&>Wלq^bc��qk���s�x��dﴯ��?�X�O�k���i�"u�1����N��T�uog,s��z�u��v���O�2�>'	�Tb����/��'s�� @��,��N��v}���ﻩ{��$��x��v_7�sV����ﱷo��j'����cOi?#a��$a�X��Լ��:�Gb���S��z�U��T?	�ؾNl�g��$՚�+��Rs�LY�~��=�� @���|����t���ܧ��>5'����V��e�X_�z�+�{ɚ�U{�d��x�|4�y���	�_������u�[�xک�[��g.�9u^�c]/n.Y��Q{՚*ծO���W�έRc)���&@� ��{go�Y՟��XOr���s񌧮����2�X��v��R�-.��|4�Ä�6x i���\���j'�H|���ԧ^X���ޟjW�J%AS��+c���R��������xJ֤�&@� ��;h�O�����p�U���v�e���K�׹�T=�j��ʒd�[�0�ܪ.<&=vO;_uo�����T/&��ci�x���J����q<�T��~U*���Sg��^2�Ǵ	 @�<[ �Y����qꚓv�W���c�μԉ��ڱ��*c��U�xb�~�]k�䜷�?�$L�1u����{{n}�T]��=կX���C�I��?�]B�㙗X��~��~ig���ܪ{�9
 @�����asVbU�Sci�u}�Nb�vͩv���1�~Ƨ�˖�H{���Xj���N��x����̄�X�E�%��y��K}+��kN��$0iW<c�_��KB3�j�*�s�DZ��%���6 @��g����;�|/����]uo��O;�T�J�W�*��z��_u�����ڙ_�O+��0��ˏ�Cb��u5/���v��d~ڗ�5^u�ϋ�~ƪ=&J���������3纠���8�9j @����ڳ�ӯX>=���5V��I��c{�?�W���v��~ڽ�N��#�{���G��أ�@֦�J��c��s�zQu���?�v�+��h�_�ޟ%�Tu��x♓�8��U��[�O @�����)i��x���$=K��}o=�OΞ�k]���uo׼G��kI�n]�.Г��O{�k�1V�*UO}���O?�J��T<���S���������3W�|� @�������T]�|jN�ޮ�ėԙ��v���?�3UO�j}JoWl�g�C�ڄ�.����aj���g�����z1�����W?%wʜ��_�j^�L��=��}~�/���vJ榯&@� ����N��|j<�[u}��zj,�Z�u=V�*U��ׅ���-_�0�кD�����\���=k��������ɞ�2��Ӟ�k�Z[�S�O<�b
 @����w�:���v����WWI�s��X��ϼ����vJŪ�X��zlW�����������<x�56�1�wJ5��c��T�97g$�J?u��Z���x}��[��X�W @��,�$�o��X�c�������z<������Jƪ��5ծX���*^%{��6��Y	S=L��<X��u�y��קJ�^�KŪ�ۗ�?��v���T,�ܫ�k�$H������[��=R�x����� @����w�^��خ�ܧ�?�X��c�W=��kӮyU��?����W��Uz�v�_'=��3��lO.��8���jW�z��:�򣒞��=z�R�>V�$AJ;�e�},{��*}���X����}�W @�x�@}�Kb�k���v�O'�~�K=�{��d^�O,gL՗-���Ħ�M�Z[%�[o���	�_���<�.0���yc=5/�ڷ�קJ_�x�W�?�K<kj<��yiW��y},sj,��#����)�W��θ� @����=������zl'6�c��~�Y��{{�#gMͩ}�c��cɞc=Ϋ~�֮�fj�Tlq�4��F�.0&��]���X���
:�V����T��~�U<�ZS�U�v�T��U�j'~i^ۉU]%��{]��O_M� @�3�}��X��v�����:�ڻ��:�W?���s�gߌW=�x��f���u�"Oh=;a�K&I��fNս]{$Vk5�NūT,�ү�J�֜*�W�Z�$���ĩ�f~�UK��T]���O_M� @�3����T]�|jMڽNb��K]��v�{l��3�99'u�K�gs��ܥ�g7��0���•8�C�μ��:���S�Ix�]eL�*V{V��̿4���$q��ԧ�$��T]��읾� @��g����?���Ǫ=��}����}��Ӯ��Μ�ٿ�������&a�/M2w�����̼�M���O�k]�>��~��O��[gW��jWI,�^��~� @���w���i�zlW?�ڣ�o'6��X�=U�X���޽�X�KŪ$6�o��f��Y�k��]] IE���ӯyYS��K�ۙS����SU��9#���wŪ�_�U2/�^W�J������ @��3�5{�������>]%s��X��gm�gnb����vO;u͛*s�_]��0����Ƥ���k<��S�ܴ3�bil�$Fկx��R�د�ԧ��]���Ү�J���������� @���朕~ꊧ]��Nli��'�{��c?��:��xک{,��f��3�~���ݕ0
���ul](	�T;Μ���b5�u���[���(����ZW���O��T������.65�ySu�U[!@� �j�|7�{�=U�X��O�xO�j���]��1�=z�bU2�v���2�&�넟s��I�ZtW��~��z�JB�J2V�
0�Q�U��خ}jMœ�$v	�cfl��y���3�b�>V��K_M� @�3���uF��=U'Vߣ��_��O�ֺq�����*^�Ǫ=Wn�ͭ�;����.�Ġ�s�K��*�.�k�珹x
d��j���g���>U��K���X�_�R�XŪ������&@� ��@���O��|2��Ħ�W=���x��q����d��v�������d������i�z�$y��'>���t���~�:g$���~�T�2�:'cUW���"o?3�9���� @����:o���2��ɜ��̭y���[2'sSO�a��_����	��Ǵ�RQ%IF���\n�Hrԓ�$Q٧��{�_u����~�U[!@� �U�}���zj�b�d�>��I�2�ig�[u�W]%s�z+��/�qw'L�X��dl����UI��o#�&q�Yi�?��$(c�׺��Xūd���27s2��>�ǵ	 @�<S��CO�O;uͯ����yi�z\�ǖ��G���R�T�~o��glu����.ݓ��?u�̩�J�O{�_���}ƿ.�~�S�$��2�x�?Ʋv<;�[s�1} @���ߣ��=�ۙ�Xս]�b�X�}��e����8��Ӯ�V�ٙ3������g��d򟗒��V��U{��=�v�~ڵ����95���+V%�ԉ]�x�9�.��S @��*��c]w�X����8>�{?s����8��d��K��*}N�ׁ�ci�cw�ωg�g��)��C=L�c��c5�J�Ӟ�W�J��	^Ω�q����K���S�)�~ک3����6 @����w霙X�v�'^u>5^%�>g���̟��Ѽ���J�+��ϱ�DZ����_�꤉�2]��cB���Y�x�>o��'�׍���5g,��qL� @���IH����Gu��Jo��O��qN�87cUWɞo��~�O?{���_�j�g���B�Q���HL��k]ڵe�8��?wH�}ӯ�>���ګJ���=��c�V @�|���wќ����̭���v�T����ک��Y:���g���=Ɵ����.��.�S�Ī���elg�uR��x�L?��{g^�q���s��j��s���X��M� @`�@��N�d,s�:�U���]��X�e^�o��ڪ��uo�_�>>5�تz�?ɫ����\�'S���~bc�z�a|�U���ڷ�_?�Y����X楯&@� �J�$��\���z�v�/�^�v��j�?5���S���#�/e��W'L�M��1����	E利���=UWl*>�˜1��=5��W��>���h<�� @���dj����jߊ�c�ߪk��x�>Ωxb㜹���v)�~�?���@=a���X��#�Sj��3����x�C�I<u_W���n���}<��x�i @��J`�h�͵s���u��X�c<���:�̩�J�{�:�͙�'���̄i�r��=���9S�5��N�S��������ϩv�%��'V�\���&@� ���ל7���q}��s�uڙ7���},�3>��cOo?��խf�[���ĭ��b��cS�1�~����JK��8oI���&@� ��ID�&u=So��ciW�v�z����S���S�9^m�������t�C���~���ޯ�X��~�īN,u��yc��ǖ�1�N� @��=c�1��h��9i��%�:c�W�v뱩v�պ��Ss��z�n���S��s�_��[��[o�Ĥ�3g*��^W�J���o�o?{�����6 @���$0&�[��vƫ����c����O�x�gl��ҟ����,�-�:s*�X˜�S{e,��3�l�xo��Μ^O��ǵ	 @�|%�1q��[��ۙ�ci����k^�R�k��s?�]ǟ�ץ���	�u��w�eL@�s�l��{��{��DZ�H���&@� �U��$�Z��z�����z�Z�˸�}���Rm�)	�u��$M׭�G+ItRgh�W��z;k�9K�}��y��#@� �l"�㺏�ٮ����eN�y}n��&�����?-a�n��L��\b���[�[c�֋���ڷ���Y��{�u� @���M$&6��;�}��3^�T<��K�ys{_�|�_�r��&Lu�I�uJ.3�S��G��Ƈ#��q�؟Z3{t��^b @��
L%(K�׍�q�����]��Ss�ϧ�e)|z�T�H���s�V�%'=��m�yk,so͹5��j @�_M�V�qk,�qkN��z*>˚[c��,�%6I���o�r+�[��������K�ypk� @�|(p3�p�ۄ%{�s�~��7^���d�M��:l���zز��:�~̔��d.�m�Ƨb��~tݭ=� @��l���L�����s�s�Z{k�}��o�����4a����^M�()Y;�~�4&�ΘX"D� @`w��[c�A?��v|��*��zI�TX�4�%.�/�'��z��:} @�_Y�$f��K�}4���������\�ɉ��i,�%D�L#@�8������K��J�
�<a�e�L�j�=I�=ss����{͝!N� @�'+.p�^��}y��g�2	S.T�''O���%A�P @��%pW��k�{���gw﷝h|Ʉ����)�?;	���j @���+yy����IR�/�0�v�K��+���g�,%@� �;�����)�z��ﻫ�鷋?/y��N�%WS*b @��E�)I�G{J����6a������-� @���kr4���*a�z��Pu
m @��	|���#�C%La��l��1F� �7�#%=kލ�i��� @�|k���� @� @`���i�� @�|o	�~��� @���x� @� �$L��z: @�VH�V�YJ� @����0}��� @�X!�~��r�̇IEND�B`�PKDZ�\�ϮJJexample/basic.jsnu�[���var qrcode = require('../lib/main');
qrcode.generate('this is the bomb');
PKDZ�\4��NN	README.mdnu�[���# QRCode Terminal Edition [![Build Status][travis-ci-img]][travis-ci-url]

> Going where no QRCode has gone before.

![Basic Example][basic-example-img]

# Node Library

## Install

Can be installed with:

    $ npm install qrcode-terminal

and used:

    var qrcode = require('qrcode-terminal');

## Usage

To display some data to the terminal just call:

    qrcode.generate('This will be a QRCode, eh!');

You can even specify the error level (default is 'L'):
    
    qrcode.setErrorLevel('Q');
    qrcode.generate('This will be a QRCode with error level Q!');

If you don't want to display to the terminal but just want to string you can provide a callback:

    qrcode.generate('http://github.com', function (qrcode) {
        console.log(qrcode);
    });

If you want to display small output, provide `opts` with `small`:

    qrcode.generate('This will be a small QRCode, eh!', {small: true});

    qrcode.generate('This will be a small QRCode, eh!', {small: true}, function (qrcode) {
        console.log(qrcode)
    });

# Command-Line

## Install

    $ npm install -g qrcode-terminal

## Usage

    $ qrcode-terminal --help
    $ qrcode-terminal 'http://github.com'
    $ echo 'http://github.com' | qrcode-terminal

# Support

- OS X
- Linux
- Windows

# Server-side

[node-qrcode][node-qrcode-url] is a popular server-side QRCode generator that
renders to a `canvas` object.

# Developing

To setup the development envrionment run `npm install`

To run tests run `npm test`

# Contributers

    Gord Tanner <gtanner@gmail.com>
    Micheal Brooks <michael@michaelbrooks.ca>

[travis-ci-img]: https://travis-ci.org/gtanner/qrcode-terminal.png
[travis-ci-url]: https://travis-ci.org/gtanner/qrcode-terminal
[basic-example-img]: https://raw.github.com/gtanner/qrcode-terminal/master/example/basic.png
[node-qrcode-url]: https://github.com/soldair/node-qrcode

PKDZ�\;�*��package.jsonnu�[���PKDZ�\��p�111lib/main.jsnu�[���PKDZ�\�&i�&&�.travis.ymlnu�[���PKDZ�\)�I���test/main.jsnu�[���PKDZ�\�k͸�.�.6LICENSEnu�[���PKDZ�\��O44'Ivendor/QRCode/QRPolynomial.jsnu�[���PKDZ�\! �   �Nvendor/QRCode/QRUtil.jsnu�[���PKDZ�\>(���
ovendor/QRCode/QRMath.jsnu�[���PKDZ�\�"��~~�qvendor/QRCode/QR8bitByte.jsnu�[���PKDZ�\&G��)�)�svendor/QRCode/index.jsnu�[���PKDZ�\�Un66$��vendor/QRCode/QRErrorCorrectLevel.jsnu�[���PKDZ�\gd|;��8�vendor/QRCode/QRRSBlock.jsnu�[���PKDZ�\�<Z•�6�vendor/QRCode/QRMode.jsnu�[���PKDZ�\�^�i���vendor/QRCode/QRMaskPattern.jsnu�[���PKDZ�\r�������vendor/QRCode/QRBitBuffer.jsnu�[���PKDZ�\4a,,�bin/qrcode-terminal.jsnu�[���PKDZ�\�ҭ@wwy�example/callback.jsnu�[���PKDZ�\�����3�example/small-qrcode.jsnu�[���PKDZ�\mX��Z�Z��example/basic.pngnu�[���PKDZ�\�ϮJJ�wexample/basic.jsnu�[���PKDZ�\4��NN	5xREADME.mdnu�[���PK��